Merge pull request 'fixes bug #AL-4348' (!208) from AL-4348 into master
Reviewed-on: adm/ModelWeb#208 Reviewed-by: Valdir Cordeiro <valdir.cordeiro@totvs.com.br>master
commit
db2e641bf3
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.71.0</version>
|
||||
<version>1.72.0</version>
|
||||
|
||||
<distributionManagement>
|
||||
<repository>
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
/*
|
||||
|
||||
* To change this template, choose Tools | Templates
|
||||
* and open the template in the editor.
|
||||
*/
|
||||
|
@ -459,6 +460,9 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
|
|||
|
||||
@Column(name = "INDBILHETEDEVPIXDINHEIRO")
|
||||
private Boolean indBilheteDevPixDinheiro;
|
||||
|
||||
@Column(name = "INDCALCGRATUISOBREDESCTOTAIS")
|
||||
private Boolean indCalcGratuiSobreDescTotais;
|
||||
|
||||
|
||||
public Empresa() {
|
||||
|
@ -1676,6 +1680,15 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
|
|||
public void setIndBilheteDevPixDinheiro(Boolean indBilheteDevPixDinheiro) {
|
||||
this.indBilheteDevPixDinheiro = indBilheteDevPixDinheiro;
|
||||
}
|
||||
|
||||
public Boolean getIndCalcGratuiSobreDescTotais() {
|
||||
return indCalcGratuiSobreDescTotais;
|
||||
}
|
||||
|
||||
public void setIndCalcGratuiSobreDescTotais(Boolean indCalcGratuiSobreDescTotais) {
|
||||
this.indCalcGratuiSobreDescTotais = indCalcGratuiSobreDescTotais;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue