fixes bug #AL-4348
parent
00f6d9ad91
commit
a42f05a5ed
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.71.0</version>
|
<version>1.72.0</version>
|
||||||
|
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
<repository>
|
<repository>
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
/*
|
/*
|
||||||
|
|
||||||
* To change this template, choose Tools | Templates
|
* To change this template, choose Tools | Templates
|
||||||
* and open the template in the editor.
|
* and open the template in the editor.
|
||||||
*/
|
*/
|
||||||
|
@ -459,6 +460,9 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
|
||||||
|
|
||||||
@Column(name = "INDBILHETEDEVPIXDINHEIRO")
|
@Column(name = "INDBILHETEDEVPIXDINHEIRO")
|
||||||
private Boolean indBilheteDevPixDinheiro;
|
private Boolean indBilheteDevPixDinheiro;
|
||||||
|
|
||||||
|
@Column(name = "INDCALCGRATUISOBREDESCTOTAIS")
|
||||||
|
private Boolean indCalcGratuiSobreDescTotais;
|
||||||
|
|
||||||
|
|
||||||
public Empresa() {
|
public Empresa() {
|
||||||
|
@ -1676,6 +1680,15 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
|
||||||
public void setIndBilheteDevPixDinheiro(Boolean indBilheteDevPixDinheiro) {
|
public void setIndBilheteDevPixDinheiro(Boolean indBilheteDevPixDinheiro) {
|
||||||
this.indBilheteDevPixDinheiro = indBilheteDevPixDinheiro;
|
this.indBilheteDevPixDinheiro = indBilheteDevPixDinheiro;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Boolean getIndCalcGratuiSobreDescTotais() {
|
||||||
|
return indCalcGratuiSobreDescTotais;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setIndCalcGratuiSobreDescTotais(Boolean indCalcGratuiSobreDescTotais) {
|
||||||
|
this.indCalcGratuiSobreDescTotais = indCalcGratuiSobreDescTotais;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue