From 012daeb120090dff5bd4707af74df5b389ebaf31 Mon Sep 17 00:00:00 2001 From: valdir Date: Fri, 14 May 2021 14:25:11 +0000 Subject: [PATCH] 0022053: Espec Aguia - Passagem em Aberto bug#22053 dev:wilian qua: git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@106711 d1611594-4594-4d17-8e1d-87c2c4800839 --- .../rjconsultores/ventaboletos/entidad/Empresa.java | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/com/rjconsultores/ventaboletos/entidad/Empresa.java b/src/com/rjconsultores/ventaboletos/entidad/Empresa.java index dff067148..1e1404e6e 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/Empresa.java +++ b/src/com/rjconsultores/ventaboletos/entidad/Empresa.java @@ -378,10 +378,12 @@ public class Empresa implements Serializable, Auditavel { @Column(name = "INDPRICINGVENDAABERTO") private Boolean indPricingVendaAberto; + @Column(name = "INDVENDAABERTOMOVIMENTOCAIXA") + private Boolean indVendaAbertoMovimentaCaixa; + @Column(name = "INDICEIRK") private BigDecimal indiceIRK; - @Transient @NaoAuditar private Empresa empresaClone; @@ -1407,6 +1409,14 @@ public class Empresa implements Serializable, Auditavel { public void setIndPricingVendaAberto(Boolean indPricingVendaAberto) { this.indPricingVendaAberto = indPricingVendaAberto; } + + public Boolean getIndVendaAbertoMovimentaCaixa() { + return indVendaAbertoMovimentaCaixa == null ? false : indVendaAbertoMovimentaCaixa; + } + + public void setIndVendaAbertoMovimentaCaixa(Boolean indVendaAbertoMovimentaCaixa) { + this.indVendaAbertoMovimentaCaixa = indVendaAbertoMovimentaCaixa; + } public BigDecimal getIndiceIRK() { return indiceIRK;