From 5e25d978aadff558566e3a90d4056e6bb639ec8f Mon Sep 17 00:00:00 2001 From: leonardo Date: Wed, 7 Feb 2018 18:34:24 +0000 Subject: [PATCH] =?UTF-8?q?fixes=20bug=2010595=20-=20Pricing=20dando=20ref?= =?UTF-8?q?resh=20nos=20dados,=20quando=20=C3=A9=20uma=20c=C3=B3pia=20(Con?= =?UTF-8?q?tinua=C3=A7=C3=A3o)?= 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@78849 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/com/rjconsultores/ventaboletos/entidad/Pricing.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/rjconsultores/ventaboletos/entidad/Pricing.java b/src/com/rjconsultores/ventaboletos/entidad/Pricing.java index 720374a0e..22fbb1ab3 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/Pricing.java +++ b/src/com/rjconsultores/ventaboletos/entidad/Pricing.java @@ -233,7 +233,7 @@ public class Pricing implements Serializable { public List getPricingOcupaAntecipaList() { List poaList = new ArrayList(); for (PricingOcupaAntecipa poa : this.pricingOcupaAntecipaList) { - if (poa.getActivo() != EXCLUIDO.intValue()) { + if (poa.getActivo() != EXCLUIDO.intValue() && poa.getActivo() != INATIVO.intValue()) { poaList.add(poa); } }