From de938d7d0b8ee740f2c33f2d433293f921f247f4 Mon Sep 17 00:00:00 2001 From: "valdir.cordeiro" Date: Fri, 15 Mar 2024 17:17:14 -0300 Subject: [PATCH] =?UTF-8?q?bug#al-3852=20ESP01-2024=5FMR=5FDevolu=C3=A7?= =?UTF-8?q?=C3=A3o=20N=C3=A3o=20Presencial=20v3=20dev:=20qua:?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pom.xml | 2 +- .../entidad/OrgaoCancelacion.java | 24 ++++++++++++++++++- .../ventaboletos/entidad/PuntoVenta.java | 11 ++++++++- 3 files changed, 34 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index ea96f62ab..10b3099a9 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 br.com.rjconsultores ModelWeb - 1.41.3 + 1.42.0 diff --git a/src/com/rjconsultores/ventaboletos/entidad/OrgaoCancelacion.java b/src/com/rjconsultores/ventaboletos/entidad/OrgaoCancelacion.java index 40a587fcb..a6da47c41 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/OrgaoCancelacion.java +++ b/src/com/rjconsultores/ventaboletos/entidad/OrgaoCancelacion.java @@ -124,6 +124,12 @@ public class OrgaoCancelacion implements Serializable, Auditavel { @Column(name = "INDTAXACONVORGAOCONCEDENTE") private Boolean indTaxaConvenienciaOrgaoConcedente; + @Column(name = "INDPONTOVENDANAOPRESENCIAL") + private Boolean indPontoVendaNaoPresencial; + public List getCobrancaAdicionalList() { return cobrancaAdicionalList; } @@ -1389,5 +1392,11 @@ public class PuntoVenta implements Serializable, Auditavel { this.indTaxaConvenienciaOrgaoConcedente = indTaxaConvenienciaOrgaoConcedente; } - + public Boolean getIndPontoVendaNaoPresencial() { + return indPontoVendaNaoPresencial == null ? false : indPontoVendaNaoPresencial; + } + + public void setIndPontoVendaNaoPresencial(Boolean indPontoVendaNaoPresencial) { + this.indPontoVendaNaoPresencial = indPontoVendaNaoPresencial; + } } \ No newline at end of file