private String getConsultantsToDisplay(ElectiveListConsultationConfigurationVoCollection consultants) { if (consultants==null || consultants.size()==0) return null; StringBuffer txtColCons=new StringBuffer(); for (int i=0;i<consultants.size();i++) { txtColCons.append(consultants.get(i).getHCP().getName()); if (i < consultants.size()-1) { txtColCons.append(", "); } } return txtColCons.toString(); }
private ElectiveListConsultationConfigurationVoCollection getConsultantsFromGrid() { if (form.ctnDetails().grdConsultants().getRows().size()==0) return null; ElectiveListConsultationConfigurationVoCollection collCons = new ElectiveListConsultationConfigurationVoCollection(); for (int i=0;i<form.ctnDetails().grdConsultants().getRows().size();i++) { if (form.ctnDetails().grdConsultants().getRows().get(i).getColConsultants().getValue()==null) continue; ElectiveListConsultationConfigurationVo cons = new ElectiveListConsultationConfigurationVo(); cons.setHCP((HcpLiteVo) form.ctnDetails().grdConsultants().getRows().get(i).getColConsultants().getValue()); cons.setDefaultForHCP(form.ctnDetails().grdConsultants().getRows().get(i).getColDefault()); collCons.add(cons); } return collCons; }
private String getHCPToDisplay(ElectiveListConsultationConfigurationVoCollection consultants) { if (consultants==null || consultants.size()==0) return null; StringBuffer txtColCons=new StringBuffer(); for (int i=0;i<consultants.size();i++) { txtColCons.append(consultants.get(i).getHCP().getName()); if (i < consultants.size()-1) { txtColCons.append(", "); } } return txtColCons.toString(); }
private void populateConsultantsGrid(ElectiveListConsultationConfigurationVoCollection consultants) { if (consultants==null) return; for (int i=0;i<consultants.size();i++) { grdConsultantsRow row = form.ctnDetails().grdConsultants().getRows().newRow(); row.getColConsultants().newRow(consultants.get(i).getHCP(), consultants.get(i).getHCP().getIHcpName()); row.getColConsultants().setValue(consultants.get(i).getHCP()); row.setColDefault(consultants.get(i).getDefaultForHCP()); } }