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); } }