parent
157224aa21
commit
482ac0d018
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.119.0</version>
|
||||
<version>1.120.0</version>
|
||||
|
||||
<distributionManagement>
|
||||
<repository>
|
||||
|
|
|
@ -470,6 +470,9 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
|
|||
@Column(name = "INDIMPRIMETAXAEMBARQUENOCUPOM")
|
||||
private Boolean indImprimeTaxaEmbarqueNoCupom;
|
||||
|
||||
@Column(name = "INDIMPRIMECONFABERTONBPE")
|
||||
private Boolean indImprimeConfAbertoNBPe;
|
||||
|
||||
public Empresa() {
|
||||
super();
|
||||
}
|
||||
|
@ -1709,4 +1712,12 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
|
|||
public void setIndImprimeTaxaEmbarqueNoCupom(Boolean 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