private void loadMachineUsedCombo() { TreatmentEquipmentConfigVoCollection voCollTreatmentEquipment = domain.listTreatmentEquipmentConfigs(TreatmentEquipmentTypeConfig.ULTRASOUND); if (voCollTreatmentEquipment != null) { for (int i = 0; i < voCollTreatmentEquipment.size(); i++) form.ctnUltra().lyrUltra().tabDetails().cmbMachine().newRow(voCollTreatmentEquipment.get(i), voCollTreatmentEquipment.get(i).getDescription()); } }
private void loadMachineUsedCombo() { TreatmentEquipmentConfigVoCollection voCollTreatmentEquipment = domain.listTreatmentEquipmentConfigs(TreatmentEquipmentTypeConfig.PNEUMATIC); if(voCollTreatmentEquipment!=null) { for (int i = 0; i < voCollTreatmentEquipment.size(); i++) { form.ctnPneumatic().lyrPneumatic().tabDetails().cmbMachineUsed().newRow(voCollTreatmentEquipment.get(i), voCollTreatmentEquipment.get(i).getDescription()); } } }
public TreatmentEquipmentConfigVoCollection list(TreatmentEquipmentTypeConfig lkpTreatmentEquipmentTypeConfig) { DomainFactory factory = getDomainFactory(); TreatmentEquipmentConfigVoCollection voTreatEquipConfigVoColl = new TreatmentEquipmentConfigVoCollection(); java.util.List tecList = null; if (lkpTreatmentEquipmentTypeConfig == null) { tecList = factory.listDomainObjects(TreatmentEquipmentConfig.class); } else { ArrayList markers = new ArrayList(); ArrayList values = new ArrayList(); StringBuffer condStr = new StringBuffer(); String hql = "from TreatmentEquipmentConfig t where "; condStr.append(" t.type = :equipmentType"); markers.add("equipmentType"); values.add(getDomLookup(lkpTreatmentEquipmentTypeConfig)); hql += condStr.toString(); tecList = factory.find(hql, markers, values); } voTreatEquipConfigVoColl = TreatmentEquipmentConfigVoAssembler.createTreatmentEquipmentConfigVoCollectionFromTreatmentEquipmentConfig(tecList); if(voTreatEquipConfigVoColl.size()>0) return voTreatEquipConfigVoColl; else return null; }
public TreatmentEquipmentConfigVoCollection listTreatmentEquipmentConfigs(TreatmentEquipmentTypeConfig lkpTreatmentEquipmentConfig) { TreatmentEquipmentConfig impl = (TreatmentEquipmentConfig) getDomainImpl(TreatmentEquipmentConfigImpl.class); return impl.list(lkpTreatmentEquipmentConfig); }