76691 - Solicitação de fixação da taxa de embarque feat bug#AL-4672

master
valdir.cordeiro 2024-09-17 09:37:44 -03:00
parent 832c43fc07
commit e6100886c2
2 changed files with 11 additions and 4 deletions

View File

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

View File

@ -467,7 +467,8 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
@Column(name = "INDQRCODEFORMMARCOREG")
private Boolean indQRCodeFormMarcoReg;
@Column(name = "INDIMPRIMETAXAEMBARQUENOCUPOM")
private Boolean indImprimeTaxaEmbarqueNoCupom;
public Empresa() {
super();
@ -1699,7 +1700,13 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
public void setIndQRCodeFormMarcoReg(Boolean indQRCodeFormMarcoReg) {
this.indQRCodeFormMarcoReg = indQRCodeFormMarcoReg;
}
public Boolean getIndImprimeTaxaEmbarqueNoCupom() {
return indImprimeTaxaEmbarqueNoCupom == null ? false : indImprimeTaxaEmbarqueNoCupom;
}
public void setIndImprimeTaxaEmbarqueNoCupom(Boolean indImprimeTaxaEmbarqueNoCupom) {
this.indImprimeTaxaEmbarqueNoCupom = indImprimeTaxaEmbarqueNoCupom;
}
}