From 482ac0d0189895f310b3b419843165b9469d38f1 Mon Sep 17 00:00:00 2001 From: "valdir.cordeiro" Date: Fri, 18 Oct 2024 10:24:36 -0300 Subject: [PATCH] =?UTF-8?q?Bolivariano=20-=20Impress=C3=A3o=20do=20bilhete?= =?UTF-8?q?=20na=20confirma=C3=A7=C3=A3o=20em=20aberto.=20feat=20bug#AL-51?= =?UTF-8?q?11?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pom.xml | 2 +- .../rjconsultores/ventaboletos/entidad/Empresa.java | 13 ++++++++++++- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 3a40cba9c..cfe69d57a 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 br.com.rjconsultores ModelWeb - 1.119.0 + 1.120.0 diff --git a/src/com/rjconsultores/ventaboletos/entidad/Empresa.java b/src/com/rjconsultores/ventaboletos/entidad/Empresa.java index 6adab1148..5738cbe0c 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/Empresa.java +++ b/src/com/rjconsultores/ventaboletos/entidad/Empresa.java @@ -470,6 +470,9 @@ public class Empresa implements Serializable, Auditavel { @Column(name = "INDIMPRIMETAXAEMBARQUENOCUPOM") private Boolean indImprimeTaxaEmbarqueNoCupom; + @Column(name = "INDIMPRIMECONFABERTONBPE") + private Boolean indImprimeConfAbertoNBPe; + public Empresa() { super(); } @@ -1708,5 +1711,13 @@ public class Empresa implements Serializable, Auditavel { public void setIndImprimeTaxaEmbarqueNoCupom(Boolean indImprimeTaxaEmbarqueNoCupom) { this.indImprimeTaxaEmbarqueNoCupom = indImprimeTaxaEmbarqueNoCupom; - } + } + + public Boolean getIndImprimeConfAbertoNBPe() { + return indImprimeConfAbertoNBPe == null ? false : indImprimeConfAbertoNBPe; + } + + public void setIndImprimeConfAbertoNBPe(Boolean indImprimeConfAbertoNBPe) { + this.indImprimeConfAbertoNBPe = indImprimeConfAbertoNBPe; + } }