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; + } }