diff --git a/pom.xml b/pom.xml
index 5a1b1dca8..4a3d59809 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
4.0.0
br.com.rjconsultores
ModelWeb
- 1.71.0
+ 1.72.0
diff --git a/src/com/rjconsultores/ventaboletos/entidad/Empresa.java b/src/com/rjconsultores/ventaboletos/entidad/Empresa.java
index ce8d090c5..6ed42e6d4 100644
--- a/src/com/rjconsultores/ventaboletos/entidad/Empresa.java
+++ b/src/com/rjconsultores/ventaboletos/entidad/Empresa.java
@@ -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 {
@Column(name = "INDBILHETEDEVPIXDINHEIRO")
private Boolean indBilheteDevPixDinheiro;
+
+ @Column(name = "INDCALCGRATUISOBREDESCTOTAIS")
+ private Boolean indCalcGratuiSobreDescTotais;
public Empresa() {
@@ -1676,6 +1680,15 @@ public class Empresa implements Serializable, Auditavel {
public void setIndBilheteDevPixDinheiro(Boolean indBilheteDevPixDinheiro) {
this.indBilheteDevPixDinheiro = indBilheteDevPixDinheiro;
}
+
+ public Boolean getIndCalcGratuiSobreDescTotais() {
+ return indCalcGratuiSobreDescTotais;
+ }
+
+ public void setIndCalcGratuiSobreDescTotais(Boolean indCalcGratuiSobreDescTotais) {
+ this.indCalcGratuiSobreDescTotais = indCalcGratuiSobreDescTotais;
+ }
+