diff --git a/src/com/rjconsultores/ventaboletos/entidad/Empresa.java b/src/com/rjconsultores/ventaboletos/entidad/Empresa.java index 701fb07ae..014c0af41 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/Empresa.java +++ b/src/com/rjconsultores/ventaboletos/entidad/Empresa.java @@ -374,6 +374,9 @@ public class Empresa implements Serializable, Auditavel { @Column(name = "INDCOMTRANSFGERACAJA") private Boolean indComTransfGeraCaja; + @Column(name = "INDPRICINGVENDAABERTO") + private Boolean indPricingVendaAberto; + @Transient @NaoAuditar private Empresa empresaClone; @@ -1391,5 +1394,15 @@ public class Empresa implements Serializable, Auditavel { public void setIndComTransfGeraCaja(Boolean indComTransfGeraCaja) { this.indComTransfGeraCaja = indComTransfGeraCaja; } + + public Boolean getIndPricingVendaAberto() { + return indPricingVendaAberto != null ? indPricingVendaAberto : false; + } + + public void setIndPricingVendaAberto(Boolean indPricingVendaAberto) { + this.indPricingVendaAberto = indPricingVendaAberto; + } + + }