Bolivariano - Impressão do bilhete na confirmação em aberto. feat

bug#AL-5111
master
valdir.cordeiro 2024-10-18 10:24:36 -03:00
parent 157224aa21
commit 482ac0d018
2 changed files with 13 additions and 2 deletions

View File

@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>br.com.rjconsultores</groupId>
<artifactId>ModelWeb</artifactId>
<version>1.119.0</version>
<version>1.120.0</version>
<distributionManagement>
<repository>

View File

@ -470,6 +470,9 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
@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<Empresa> {
public void setIndImprimeTaxaEmbarqueNoCupom(Boolean indImprimeTaxaEmbarqueNoCupom) {
this.indImprimeTaxaEmbarqueNoCupom = indImprimeTaxaEmbarqueNoCupom;
}
}
public Boolean getIndImprimeConfAbertoNBPe() {
return indImprimeConfAbertoNBPe == null ? false : indImprimeConfAbertoNBPe;
}
public void setIndImprimeConfAbertoNBPe(Boolean indImprimeConfAbertoNBPe) {
this.indImprimeConfAbertoNBPe = indImprimeConfAbertoNBPe;
}
}