From 591d3ae1ca8e343227a3a5ac6b9a416a14bcf0f9 Mon Sep 17 00:00:00 2001 From: valdir Date: Thu, 15 Apr 2021 20:25:29 +0000 Subject: [PATCH] =?UTF-8?q?0022109:=20Projeto=20Venda=20em=20Aberto=20Agui?= =?UTF-8?q?a=20-=20Habilitar=20pricing=20espec=C3=ADfico=20na=20venda=20em?= =?UTF-8?q?=20aberto=20bug#22109=20dev:wilian=20qua:?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@106261 d1611594-4594-4d17-8e1d-87c2c4800839 --- .../rjconsultores/ventaboletos/entidad/Empresa.java | 13 +++++++++++++ 1 file changed, 13 insertions(+) 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; + } + + }