parent
157224aa21
commit
482ac0d018
2
pom.xml
2
pom.xml
|
@ -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>
|
||||||
|
|
|
@ -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();
|
||||||
}
|
}
|
||||||
|
@ -1709,4 +1712,12 @@ 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;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue