From 54aad728d85dfd803696f371e6dede771bf75619 Mon Sep 17 00:00:00 2001 From: "wallace.henrique" Date: Fri, 5 Jul 2024 15:45:47 -0300 Subject: [PATCH] fixes bug#AL-4607 --- pom.xml | 2 +- .../rjconsultores/ventaboletos/enums/TipoIdentificacionDoc.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index eb2bef0a1..231190c88 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 br.com.rjconsultores ModelWeb - 1.76.1 + 1.76.2 diff --git a/src/com/rjconsultores/ventaboletos/enums/TipoIdentificacionDoc.java b/src/com/rjconsultores/ventaboletos/enums/TipoIdentificacionDoc.java index 42ec8a8af..f1b32ac9b 100644 --- a/src/com/rjconsultores/ventaboletos/enums/TipoIdentificacionDoc.java +++ b/src/com/rjconsultores/ventaboletos/enums/TipoIdentificacionDoc.java @@ -197,7 +197,7 @@ public enum TipoIdentificacionDoc { return TipoIdentificacionDoc.DNI; }else if(descTipoDoc.equals("RE_PM")) { return TipoIdentificacionDoc.RE_PM; - }else if(descTipoDoc.equals("NIC")) { + }else if(descTipoDoc.equals("NIS")) { return TipoIdentificacionDoc.NIS; }else if(descTipoDoc.equals("PASSE_LIVRE")) { return TipoIdentificacionDoc.PASSE_LIVRE;