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
commit
654b463d55
2
pom.xml
2
pom.xml
|
@ -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>
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue