From 2477ccf760e8f93b3dd5621fc540b89f75c0cc20 Mon Sep 17 00:00:00 2001 From: "wallace.henrique" Date: Fri, 10 Nov 2023 15:01:04 -0300 Subject: [PATCH] fixes bug#AL-3351 dev: qua: --- pom.xml | 2 +- .../ventaboletos/entidad/PuntoVenta.java | 14 ++++++++++++-- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 6b92e468a..10da69d61 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 br.com.rjconsultores ModelWeb - 1.20.0 + 1.21.0 diff --git a/src/com/rjconsultores/ventaboletos/entidad/PuntoVenta.java b/src/com/rjconsultores/ventaboletos/entidad/PuntoVenta.java index 061e1ae88..7e9007657 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/PuntoVenta.java +++ b/src/com/rjconsultores/ventaboletos/entidad/PuntoVenta.java @@ -346,6 +346,9 @@ public class PuntoVenta implements Serializable, Auditavel { @Column(name = "INDBLOQUEARDESCONTOWEB") private Boolean indBloquearDescontoWEB; + @Column(name = "INDTAXACONVENIENCIAORGAOCONCEDENTE") + private Boolean indTaxaConvenienciaOrgaoConcedente; + public List getCobrancaAdicionalList() { return cobrancaAdicionalList; } @@ -1377,6 +1380,13 @@ public class PuntoVenta implements Serializable, Auditavel { public void setTempoMaxServicoEmVenda(Integer tempoMaxServicoEmVenda) { this.tempoMaxServicoEmVenda = tempoMaxServicoEmVenda; } - - + + public Boolean getIndTaxaConvenienciaOrgaoConcedente() { + return indTaxaConvenienciaOrgaoConcedente; + } + + public void setIndTaxaConvenienciaOrgaoConcedente(Boolean indTaxaConvenienciaOrgaoConcedente) { + this.indTaxaConvenienciaOrgaoConcedente = indTaxaConvenienciaOrgaoConcedente; + } + } \ No newline at end of file