fixes bug#AL-4607
parent
976243b602
commit
6f0974d183
2
pom.xml
2
pom.xml
|
@ -3,7 +3,7 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>br.com.rjconsultores</groupId>
|
||||
<artifactId>ModelWeb</artifactId>
|
||||
<version>1.76.0</version>
|
||||
<version>1.76.1</version>
|
||||
|
||||
<distributionManagement>
|
||||
<repository>
|
||||
|
|
|
@ -21,7 +21,7 @@ public enum TipoIdentificacionDoc {
|
|||
D_FISICO(28),
|
||||
J_CARENTE(29),
|
||||
GRATUIDADE(30),
|
||||
NIC(31),
|
||||
NIS(31),
|
||||
PASSE_LIVRE(32),
|
||||
ID_JOVEM(33),
|
||||
TODOS(0);
|
||||
|
@ -76,7 +76,7 @@ public enum TipoIdentificacionDoc {
|
|||
tmp = TipoIdentificacionDoc.DNI;
|
||||
break;
|
||||
case 31:
|
||||
tmp = TipoIdentificacionDoc.NIC;
|
||||
tmp = TipoIdentificacionDoc.NIS;
|
||||
break;
|
||||
case 32:
|
||||
tmp = TipoIdentificacionDoc.PASSE_LIVRE;
|
||||
|
@ -107,7 +107,7 @@ public enum TipoIdentificacionDoc {
|
|||
TipoIdentificacionDoc.D_FISICO,
|
||||
TipoIdentificacionDoc.J_CARENTE,
|
||||
TipoIdentificacionDoc.GRATUIDADE,
|
||||
TipoIdentificacionDoc.NIC,
|
||||
TipoIdentificacionDoc.NIS,
|
||||
TipoIdentificacionDoc.PASSE_LIVRE,
|
||||
TipoIdentificacionDoc.ID_JOVEM
|
||||
};
|
||||
|
@ -143,7 +143,7 @@ public enum TipoIdentificacionDoc {
|
|||
case 26:
|
||||
return "DNI";
|
||||
case 31:
|
||||
return "NIC";
|
||||
return "NIS";
|
||||
case 32:
|
||||
return "PASSE_LIVRE";
|
||||
case 33:
|
||||
|
@ -165,7 +165,7 @@ public enum TipoIdentificacionDoc {
|
|||
TipoIdentificacionDoc.DOC_IDOSO,
|
||||
TipoIdentificacionDoc.DNI,
|
||||
TipoIdentificacionDoc.RE_PM,
|
||||
TipoIdentificacionDoc.NIC,
|
||||
TipoIdentificacionDoc.NIS,
|
||||
TipoIdentificacionDoc.PASSE_LIVRE,
|
||||
TipoIdentificacionDoc.ID_JOVEM
|
||||
};
|
||||
|
@ -198,7 +198,7 @@ public enum TipoIdentificacionDoc {
|
|||
}else if(descTipoDoc.equals("RE_PM")) {
|
||||
return TipoIdentificacionDoc.RE_PM;
|
||||
}else if(descTipoDoc.equals("NIC")) {
|
||||
return TipoIdentificacionDoc.NIC;
|
||||
return TipoIdentificacionDoc.NIS;
|
||||
}else if(descTipoDoc.equals("PASSE_LIVRE")) {
|
||||
return TipoIdentificacionDoc.PASSE_LIVRE;
|
||||
}else if(descTipoDoc.equals("ID_JOVEM")) {
|
||||
|
|
Loading…
Reference in New Issue