Merge pull request 'Bolivariano - Impressão do bilhete na confirmação em aberto. feat' (!298) from AL-5111 into master

Reviewed-on: adm/ModelWeb#298
Reviewed-by: Wilian Domingues <wilian@rjconsultores.com.br>
master
Valdir Cordeiro 2024-10-18 13:44:15 +00:00
commit e6cad92355
2 changed files with 13 additions and 2 deletions

View File

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

View File

@ -470,6 +470,9 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
@Column(name = "INDIMPRIMETAXAEMBARQUENOCUPOM") @Column(name = "INDIMPRIMETAXAEMBARQUENOCUPOM")
private Boolean indImprimeTaxaEmbarqueNoCupom; private Boolean indImprimeTaxaEmbarqueNoCupom;
@Column(name = "INDIMPRIMECONFABERTONBPE")
private Boolean indImprimeConfAbertoNBPe;
public Empresa() { public Empresa() {
super(); super();
} }
@ -1708,5 +1711,13 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
public void setIndImprimeTaxaEmbarqueNoCupom(Boolean indImprimeTaxaEmbarqueNoCupom) { public void setIndImprimeTaxaEmbarqueNoCupom(Boolean indImprimeTaxaEmbarqueNoCupom) {
this.indImprimeTaxaEmbarqueNoCupom = indImprimeTaxaEmbarqueNoCupom; this.indImprimeTaxaEmbarqueNoCupom = indImprimeTaxaEmbarqueNoCupom;
} }
public Boolean getIndImprimeConfAbertoNBPe() {
return indImprimeConfAbertoNBPe == null ? false : indImprimeConfAbertoNBPe;
}
public void setIndImprimeConfAbertoNBPe(Boolean indImprimeConfAbertoNBPe) {
this.indImprimeConfAbertoNBPe = indImprimeConfAbertoNBPe;
}
} }