fixes bug#AL-4204
parent
f2c47d49cc
commit
4fc5262433
2
pom.xml
2
pom.xml
|
@ -3,7 +3,7 @@
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>br.com.rjconsultores</groupId>
|
<groupId>br.com.rjconsultores</groupId>
|
||||||
<artifactId>ModelWeb</artifactId>
|
<artifactId>ModelWeb</artifactId>
|
||||||
<version>1.77.0</version>
|
<version>1.77.1</version>
|
||||||
|
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
<repository>
|
<repository>
|
||||||
|
|
|
@ -75,6 +75,15 @@ public enum TipoIdentificacionDoc {
|
||||||
case 26:
|
case 26:
|
||||||
tmp = TipoIdentificacionDoc.DNI;
|
tmp = TipoIdentificacionDoc.DNI;
|
||||||
break;
|
break;
|
||||||
|
case 27:
|
||||||
|
tmp = TipoIdentificacionDoc.RE_PM;
|
||||||
|
break;
|
||||||
|
case 28:
|
||||||
|
tmp = TipoIdentificacionDoc.D_FISICO;
|
||||||
|
break;
|
||||||
|
case 29:
|
||||||
|
tmp = TipoIdentificacionDoc.J_CARENTE;
|
||||||
|
break;
|
||||||
case 31:
|
case 31:
|
||||||
tmp = TipoIdentificacionDoc.NIS;
|
tmp = TipoIdentificacionDoc.NIS;
|
||||||
break;
|
break;
|
||||||
|
@ -142,6 +151,12 @@ public enum TipoIdentificacionDoc {
|
||||||
return "DOC_IDOSO";
|
return "DOC_IDOSO";
|
||||||
case 26:
|
case 26:
|
||||||
return "DNI";
|
return "DNI";
|
||||||
|
case 27:
|
||||||
|
return "RE_PM";
|
||||||
|
case 28:
|
||||||
|
return "D_FISICO";
|
||||||
|
case 29:
|
||||||
|
return "J_CARENTE";
|
||||||
case 31:
|
case 31:
|
||||||
return "NIS";
|
return "NIS";
|
||||||
case 32:
|
case 32:
|
||||||
|
@ -167,7 +182,9 @@ public enum TipoIdentificacionDoc {
|
||||||
TipoIdentificacionDoc.RE_PM,
|
TipoIdentificacionDoc.RE_PM,
|
||||||
TipoIdentificacionDoc.NIS,
|
TipoIdentificacionDoc.NIS,
|
||||||
TipoIdentificacionDoc.PASSE_LIVRE,
|
TipoIdentificacionDoc.PASSE_LIVRE,
|
||||||
TipoIdentificacionDoc.ID_JOVEM
|
TipoIdentificacionDoc.ID_JOVEM,
|
||||||
|
TipoIdentificacionDoc.D_FISICO,
|
||||||
|
TipoIdentificacionDoc.J_CARENTE
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -203,6 +220,10 @@ public enum TipoIdentificacionDoc {
|
||||||
return TipoIdentificacionDoc.PASSE_LIVRE;
|
return TipoIdentificacionDoc.PASSE_LIVRE;
|
||||||
}else if(descTipoDoc.equals("ID_JOVEM")) {
|
}else if(descTipoDoc.equals("ID_JOVEM")) {
|
||||||
return TipoIdentificacionDoc.ID_JOVEM;
|
return TipoIdentificacionDoc.ID_JOVEM;
|
||||||
|
}else if(descTipoDoc.equals("D_FISICO")) {
|
||||||
|
return TipoIdentificacionDoc.D_FISICO;
|
||||||
|
}else if(descTipoDoc.equals("J_CARENTE")) {
|
||||||
|
return TipoIdentificacionDoc.J_CARENTE;
|
||||||
}else {
|
}else {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue