Merge pull request 'fixes bug#AL-4607' (!217) from AL-4607 into master
Reviewed-on: adm/ModelWeb#217 Reviewed-by: Julio Heredia <julio@rjconsultores.com.br>master
commit
f1a5814dfa
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.76.0</version>
|
<version>1.76.1</version>
|
||||||
|
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
<repository>
|
<repository>
|
||||||
|
|
|
@ -21,7 +21,7 @@ public enum TipoIdentificacionDoc {
|
||||||
D_FISICO(28),
|
D_FISICO(28),
|
||||||
J_CARENTE(29),
|
J_CARENTE(29),
|
||||||
GRATUIDADE(30),
|
GRATUIDADE(30),
|
||||||
NIC(31),
|
NIS(31),
|
||||||
PASSE_LIVRE(32),
|
PASSE_LIVRE(32),
|
||||||
ID_JOVEM(33),
|
ID_JOVEM(33),
|
||||||
TODOS(0);
|
TODOS(0);
|
||||||
|
@ -76,7 +76,7 @@ public enum TipoIdentificacionDoc {
|
||||||
tmp = TipoIdentificacionDoc.DNI;
|
tmp = TipoIdentificacionDoc.DNI;
|
||||||
break;
|
break;
|
||||||
case 31:
|
case 31:
|
||||||
tmp = TipoIdentificacionDoc.NIC;
|
tmp = TipoIdentificacionDoc.NIS;
|
||||||
break;
|
break;
|
||||||
case 32:
|
case 32:
|
||||||
tmp = TipoIdentificacionDoc.PASSE_LIVRE;
|
tmp = TipoIdentificacionDoc.PASSE_LIVRE;
|
||||||
|
@ -107,7 +107,7 @@ public enum TipoIdentificacionDoc {
|
||||||
TipoIdentificacionDoc.D_FISICO,
|
TipoIdentificacionDoc.D_FISICO,
|
||||||
TipoIdentificacionDoc.J_CARENTE,
|
TipoIdentificacionDoc.J_CARENTE,
|
||||||
TipoIdentificacionDoc.GRATUIDADE,
|
TipoIdentificacionDoc.GRATUIDADE,
|
||||||
TipoIdentificacionDoc.NIC,
|
TipoIdentificacionDoc.NIS,
|
||||||
TipoIdentificacionDoc.PASSE_LIVRE,
|
TipoIdentificacionDoc.PASSE_LIVRE,
|
||||||
TipoIdentificacionDoc.ID_JOVEM
|
TipoIdentificacionDoc.ID_JOVEM
|
||||||
};
|
};
|
||||||
|
@ -143,7 +143,7 @@ public enum TipoIdentificacionDoc {
|
||||||
case 26:
|
case 26:
|
||||||
return "DNI";
|
return "DNI";
|
||||||
case 31:
|
case 31:
|
||||||
return "NIC";
|
return "NIS";
|
||||||
case 32:
|
case 32:
|
||||||
return "PASSE_LIVRE";
|
return "PASSE_LIVRE";
|
||||||
case 33:
|
case 33:
|
||||||
|
@ -165,7 +165,7 @@ public enum TipoIdentificacionDoc {
|
||||||
TipoIdentificacionDoc.DOC_IDOSO,
|
TipoIdentificacionDoc.DOC_IDOSO,
|
||||||
TipoIdentificacionDoc.DNI,
|
TipoIdentificacionDoc.DNI,
|
||||||
TipoIdentificacionDoc.RE_PM,
|
TipoIdentificacionDoc.RE_PM,
|
||||||
TipoIdentificacionDoc.NIC,
|
TipoIdentificacionDoc.NIS,
|
||||||
TipoIdentificacionDoc.PASSE_LIVRE,
|
TipoIdentificacionDoc.PASSE_LIVRE,
|
||||||
TipoIdentificacionDoc.ID_JOVEM
|
TipoIdentificacionDoc.ID_JOVEM
|
||||||
};
|
};
|
||||||
|
@ -198,7 +198,7 @@ public enum TipoIdentificacionDoc {
|
||||||
}else if(descTipoDoc.equals("RE_PM")) {
|
}else if(descTipoDoc.equals("RE_PM")) {
|
||||||
return TipoIdentificacionDoc.RE_PM;
|
return TipoIdentificacionDoc.RE_PM;
|
||||||
}else if(descTipoDoc.equals("NIC")) {
|
}else if(descTipoDoc.equals("NIC")) {
|
||||||
return TipoIdentificacionDoc.NIC;
|
return TipoIdentificacionDoc.NIS;
|
||||||
}else if(descTipoDoc.equals("PASSE_LIVRE")) {
|
}else if(descTipoDoc.equals("PASSE_LIVRE")) {
|
||||||
return TipoIdentificacionDoc.PASSE_LIVRE;
|
return TipoIdentificacionDoc.PASSE_LIVRE;
|
||||||
}else if(descTipoDoc.equals("ID_JOVEM")) {
|
}else if(descTipoDoc.equals("ID_JOVEM")) {
|
||||||
|
|
Loading…
Reference in New Issue