fixes bug 10595 - Pricing dando refresh nos dados, quando é uma cópia (Continuação)

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@78849 d1611594-4594-4d17-8e1d-87c2c4800839
master
leonardo 2018-02-07 18:34:24 +00:00
parent 2afc607d59
commit 5e25d978aa
1 changed files with 1 additions and 1 deletions

View File

@ -233,7 +233,7 @@ public class Pricing implements Serializable {
public List<PricingOcupaAntecipa> getPricingOcupaAntecipaList() { public List<PricingOcupaAntecipa> getPricingOcupaAntecipaList() {
List<PricingOcupaAntecipa> poaList = new ArrayList<PricingOcupaAntecipa>(); List<PricingOcupaAntecipa> poaList = new ArrayList<PricingOcupaAntecipa>();
for (PricingOcupaAntecipa poa : this.pricingOcupaAntecipaList) { for (PricingOcupaAntecipa poa : this.pricingOcupaAntecipaList) {
if (poa.getActivo() != EXCLUIDO.intValue()) { if (poa.getActivo() != EXCLUIDO.intValue() && poa.getActivo() != INATIVO.intValue()) {
poaList.add(poa); poaList.add(poa);
} }
} }