Java 类ims.core.vo.CurrentInpatientListFilterVo 实例源码

项目:AvoinApotti    文件:Logic.java   
private void storeSearchCriteria() 
{
    CurrentInpatientListFilterVo voCriteria = new CurrentInpatientListFilterVo();
    voCriteria.setConsultant(form.qmbConsultants().getValue());
    voCriteria.setHospital(form.cmbHospital().getValue());
    voCriteria.setWard(form.cmbWard().getValue());
    voCriteria.setSpecialty(form.cmbSpecialty().getValue());

    //WDEV-15526
    voCriteria.setIDType(form.cmbType().getValue());
    voCriteria.setHospNum(form.txtIdentifier().getValue());
    voCriteria.setSurname(form.txtSurname().getValue());
    voCriteria.setForename(form.txtForename().getValue());

    form.getGlobalContext().STHK.setCurrentInpatientListFilter(voCriteria);
}
项目:openMAXIMS    文件:Logic.java   
private void storeSearchCriteria() 
{
    CurrentInpatientListFilterVo voCriteria = new CurrentInpatientListFilterVo();
    voCriteria.setConsultant(form.qmbConsultants().getValue());
    voCriteria.setHospital(form.cmbHospital().getValue());
    voCriteria.setWard(form.cmbWard().getValue());
    voCriteria.setSpecialty(form.cmbSpecialty().getValue());

    //WDEV-15526
    voCriteria.setIDType(form.cmbType().getValue());
    voCriteria.setHospNum(form.txtIdentifier().getValue());
    voCriteria.setSurname(form.txtSurname().getValue());
    voCriteria.setForename(form.txtForename().getValue());

    form.getGlobalContext().STHK.setCurrentInpatientListFilter(voCriteria);
}
项目:openmaxims-linux    文件:Logic.java   
private void storeSearchCriteria() 
{
    CurrentInpatientListFilterVo voCriteria = new CurrentInpatientListFilterVo();
    voCriteria.setConsultant(form.qmbConsultants().getValue());
    voCriteria.setHospital(form.cmbHospital().getValue());
    voCriteria.setWard(form.cmbWard().getValue());
    voCriteria.setSpecialty(form.cmbSpecialty().getValue());

    //WDEV-15526
    voCriteria.setIDType(form.cmbType().getValue());
    voCriteria.setHospNum(form.txtIdentifier().getValue());
    voCriteria.setSurname(form.txtSurname().getValue());
    voCriteria.setForename(form.txtForename().getValue());

    form.getGlobalContext().STHK.setCurrentInpatientListFilter(voCriteria);
}