diff --git a/pom.xml b/pom.xml
index 0f8d594e5..eb2bef0a1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
4.0.0
br.com.rjconsultores
ModelWeb
- 1.76.0
+ 1.76.1
diff --git a/src/com/rjconsultores/ventaboletos/enums/TipoIdentificacionDoc.java b/src/com/rjconsultores/ventaboletos/enums/TipoIdentificacionDoc.java
index 43a12b97f..42ec8a8af 100644
--- a/src/com/rjconsultores/ventaboletos/enums/TipoIdentificacionDoc.java
+++ b/src/com/rjconsultores/ventaboletos/enums/TipoIdentificacionDoc.java
@@ -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")) {