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

项目:AvoinApotti    文件:Logic.java   
protected void onBtnConfirmClick() throws ims.framework.exceptions.PresentationLogicException
{
    CarePlanReviewVo careplan = new CarePlanReviewVo();
    careplan.setCareContextVo(form.cmbPatient().getValue());
    careplan.setHospital(form.cmbHospital().getValue());
    careplan.setWard(form.cmbWard().getValue());

    form.getGlobalContext().COE.CarePlanReview.setSearchCriteria(careplan);
    form.getGlobalContext().COE.setCarePlanID(form.grdCarePlans().getValue().getID_CarePlan());
    engine.open(form.getForms().Nursing.CarePlanDetails);
}
项目:openMAXIMS    文件:Logic.java   
private CarePlanReviewVo getSearchCriteria()
{
    CarePlanReviewVo careplan = new CarePlanReviewVo();
    careplan.setCareContextVo(form.cmbPatient().getValue());
    careplan.setHospital(form.cmbHospital().getValue());
    careplan.setWard(form.cmbWard().getValue());

    return careplan;
}
项目:openMAXIMS    文件:Logic.java   
protected void onBtnConfirmClick() throws ims.framework.exceptions.PresentationLogicException
{
    CarePlanReviewVo careplan = new CarePlanReviewVo();
    careplan.setCareContextVo(form.cmbPatient().getValue());
    careplan.setHospital(form.cmbHospital().getValue());
    careplan.setWard(form.cmbWard().getValue());

    form.getGlobalContext().COE.CarePlanReview.setSearchCriteria(careplan);
    form.getGlobalContext().COE.setCarePlanID(form.grdCarePlans().getValue().getID_CarePlan());
    engine.open(form.getForms().Nursing.CarePlanDetails);
}
项目:openmaxims-linux    文件:Logic.java   
protected void onBtnConfirmClick() throws ims.framework.exceptions.PresentationLogicException
{
    CarePlanReviewVo careplan = new CarePlanReviewVo();
    careplan.setCareContextVo(form.cmbPatient().getValue());
    careplan.setHospital(form.cmbHospital().getValue());
    careplan.setWard(form.cmbWard().getValue());

    form.getGlobalContext().COE.CarePlanReview.setSearchCriteria(careplan);
    form.getGlobalContext().COE.setCarePlanID(form.grdCarePlans().getValue().getID_CarePlan());
    engine.open(form.getForms().Nursing.CarePlanDetails);
}