Merge pull request '76691 - Solicitação de fixação da taxa de embarque feat bug#AL-4672' (!277) from AL-4672 into master

Reviewed-on: adm/ModelWeb#277
Reviewed-by: pinheiro <valdevir@rjconsultores.com.br>
master
Valdir Cordeiro 2024-09-17 13:09:13 +00:00
commit 654b463d55
2 changed files with 11 additions and 4 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.107.0</version> <version>1.108.0</version>
<distributionManagement> <distributionManagement>
<repository> <repository>

View File

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