当前位置: 首页>>代码示例>>Java>>正文


Java NewResultsCriteriaVo.setReviewingHCP方法代码示例

本文整理汇总了Java中ims.ocrr.vo.NewResultsCriteriaVo.setReviewingHCP方法的典型用法代码示例。如果您正苦于以下问题:Java NewResultsCriteriaVo.setReviewingHCP方法的具体用法?Java NewResultsCriteriaVo.setReviewingHCP怎么用?Java NewResultsCriteriaVo.setReviewingHCP使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ims.ocrr.vo.NewResultsCriteriaVo的用法示例。


在下文中一共展示了NewResultsCriteriaVo.setReviewingHCP方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getValue

import ims.ocrr.vo.NewResultsCriteriaVo; //导入方法依赖的package包/类
public NewResultsCriteriaVo getValue() 
{
	NewResultsCriteriaVo newResultsSearchCriteria = new NewResultsCriteriaVo();
	
	newResultsSearchCriteria.setOutpatientOrders(true);
	
	newResultsSearchCriteria.setSelectedTab(OUTPATIENT);
	
	newResultsSearchCriteria.setHospital(form.cmbHospital().getValue());
	newResultsSearchCriteria.setOutpatientDepartment(form.qmbOrderingLocation().getValue());
	
	newResultsSearchCriteria.setOrder(true);
	newResultsSearchCriteria.setHCP(form.ccResponsibleHCP().getValue());
	
	newResultsSearchCriteria.setReviewingHCP(form.qmbReviewingHCP().getValue());
	newResultsSearchCriteria.setOrderingHCP(form.ccOrderingHCP().getValue());
	
	newResultsSearchCriteria.setNewUpdated(form.chkNew().getValue());
	newResultsSearchCriteria.setSeenChecked(form.chkSeenChecked().getValue());
	newResultsSearchCriteria.setChecked(form.chkChecked().getValue());
	newResultsSearchCriteria.setForReview(form.chkReview().getValue());
	newResultsSearchCriteria.setCompleted(form.chkCompleted().getValue());

	newResultsSearchCriteria.setFromDate(form.dteFrom().getValue());
	newResultsSearchCriteria.setToDate(form.dteTo().getValue());	
	newResultsSearchCriteria.setDays(form.cmbDays().getValue());
	newResultsSearchCriteria.setNewestFirst(ListResultsByEnumeration.rdoNewestFirst.equals(form.ListResultsBy().getValue()) ? true : false);
	
	newResultsSearchCriteria.setDiscipline(getDisciplines());
	newResultsSearchCriteria.setAbnormalPathologyResultsOnly(form.chkAbnormalPathologyResultsOnly().getValue());
	
	return newResultsSearchCriteria;
}
 
开发者ID:oopcell,项目名称:AvoinApotti,代码行数:34,代码来源:Logic.java

示例2: getValue

import ims.ocrr.vo.NewResultsCriteriaVo; //导入方法依赖的package包/类
public NewResultsCriteriaVo getValue() 
{
	NewResultsCriteriaVo newResultsSearchCriteria = new NewResultsCriteriaVo();
	
	newResultsSearchCriteria.setEDOrders(true);
	
	newResultsSearchCriteria.setSelectedTab(ED);
	
	newResultsSearchCriteria.setHospital(form.cmbHospital().getValue());
	
	newResultsSearchCriteria.setOrderingLocation(form.getLocalContext().getEmergencyDepartment());
	
	newResultsSearchCriteria.setExcludeCurrentInpatients(form.chkExcludeCurrentInpatients().getValue());
	
	newResultsSearchCriteria.setOrder(true);
	newResultsSearchCriteria.setHCP(form.ccResponsibleHCP().getValue());
	
	newResultsSearchCriteria.setReviewingHCP(form.qmbReviewingHCP().getValue());
	newResultsSearchCriteria.setOrderingHCP(form.ccOrderingHCP().getValue());
	
	newResultsSearchCriteria.setNewUpdated(form.chkNew().getValue());
	newResultsSearchCriteria.setSeenChecked(form.chkSeenChecked().getValue());
	newResultsSearchCriteria.setChecked(form.chkChecked().getValue());
	newResultsSearchCriteria.setForReview(form.chkReview().getValue());
	newResultsSearchCriteria.setCompleted(form.chkCompleted().getValue());

	newResultsSearchCriteria.setFromDate(form.dteFrom().getValue());
	newResultsSearchCriteria.setToDate(form.dteTo().getValue());	
	newResultsSearchCriteria.setDays(form.cmbDays().getValue());
	newResultsSearchCriteria.setNewestFirst(ListResultsByEnumeration.rdoNewestFirst.equals(form.ListResultsBy().getValue()) ? true : false);
	
	newResultsSearchCriteria.setDiscipline(getDisciplines());
	newResultsSearchCriteria.setAbnormalPathologyResultsOnly(form.chkAbnormalPathologyResultsOnly().getValue());
	
	return newResultsSearchCriteria;
}
 
开发者ID:oopcell,项目名称:AvoinApotti,代码行数:37,代码来源:Logic.java

示例3: getValue

import ims.ocrr.vo.NewResultsCriteriaVo; //导入方法依赖的package包/类
public ims.ocrr.vo.NewResultsCriteriaVo getValue()
{
	NewResultsCriteriaVo newResultsSearchCriteria = new NewResultsCriteriaVo();

	newResultsSearchCriteria.setSelectedTab(PATIENT);
	newResultsSearchCriteria.setPatientId(form.getGlobalContext().Core.getPatientShort() != null ? form.getGlobalContext().Core.getPatientShort().getID_Patient() : null);

	newResultsSearchCriteria.setOrder(true);
	newResultsSearchCriteria.setHCP(form.ccResponsibleHCP().getValue());

	newResultsSearchCriteria.setReviewingHCP(form.qmbReviewingHCP().getValue());
	newResultsSearchCriteria.setOrderingHCP(form.ccOrderingHCP().getValue());

	newResultsSearchCriteria.setNewUpdated(form.chkNew().getValue());
	newResultsSearchCriteria.setSeenChecked(form.chkSeenChecked().getValue());
	newResultsSearchCriteria.setChecked(form.chkChecked().getValue());
	newResultsSearchCriteria.setForReview(form.chkReview().getValue());
	newResultsSearchCriteria.setCompleted(form.chkCompleted().getValue());

	newResultsSearchCriteria.setFromDate(form.dteFrom().getValue());
	newResultsSearchCriteria.setToDate(form.dteTo().getValue());
	newResultsSearchCriteria.setDays(form.cmbDays().getValue());
	newResultsSearchCriteria.setNewestFirst(ListResultsByEnumeration.rdoNewestFirst.equals(form.ListResultsBy().getValue()) ? true : false);

	newResultsSearchCriteria.setDiscipline(getDisciplines());
	newResultsSearchCriteria.setAbnormalPathologyResultsOnly(form.chkAbnormalPathologyResultsOnly().getValue());

	return newResultsSearchCriteria;
}
 
开发者ID:oopcell,项目名称:AvoinApotti,代码行数:30,代码来源:Logic.java

示例4: getValue

import ims.ocrr.vo.NewResultsCriteriaVo; //导入方法依赖的package包/类
public NewResultsCriteriaVo getValue() 
{
	NewResultsCriteriaVo newResultsSearchCriteria = new NewResultsCriteriaVo();
	
	//newResultsSearchCriteria.setInpatientOrders(true);
	
	newResultsSearchCriteria.setSelectedTab(INPATIENT);
	
	newResultsSearchCriteria.setHospital(form.cmbHospital().getValue());
	newResultsSearchCriteria.setInpatientHospital(form.cmbHospital().getValue());
	
	newResultsSearchCriteria.setInpatientWard(form.qmbOrderingLocation().getValue());
	
	newResultsSearchCriteria.setCurrentInpatientsOnly(form.chkCurrentInpatientsOnly().getValue());
	newResultsSearchCriteria.setInpatientOrdersPatientDischarged(form.chkInpatientOrdersPatientDischarged().getValue());
	
	newResultsSearchCriteria.setOrder(form.chkOrder().getValue());
	newResultsSearchCriteria.setCurrenIP(form.chkCurrentIP().getValue());
	newResultsSearchCriteria.setHCP(form.ccResponsibleHCP().getValue());
	
	newResultsSearchCriteria.setReviewingHCP(form.qmbReviewingHCP().getValue());
	
	newResultsSearchCriteria.setNewUpdated(form.chkNew().getValue());
	newResultsSearchCriteria.setSeenChecked(form.chkSeenChecked().getValue());
	newResultsSearchCriteria.setChecked(form.chkChecked().getValue());
	newResultsSearchCriteria.setForReview(form.chkReview().getValue());
	newResultsSearchCriteria.setCompleted(form.chkCompleted().getValue());

	newResultsSearchCriteria.setFromDate(form.dteFrom().getValue());
	newResultsSearchCriteria.setToDate(form.dteTo().getValue());	
	newResultsSearchCriteria.setDays(form.cmbDays().getValue());
	newResultsSearchCriteria.setNewestFirst(ListResultsByEnumeration.rdoNewestFirst.equals(form.ListResultsBy().getValue()) ? true : false);
	
	newResultsSearchCriteria.setDiscipline(getDisciplines());
	newResultsSearchCriteria.setAbnormalPathologyResultsOnly(form.chkAbnormalPathologyResultsOnly().getValue());
	
	return newResultsSearchCriteria;
}
 
开发者ID:oopcell,项目名称:AvoinApotti,代码行数:39,代码来源:Logic.java

示例5: getValue

import ims.ocrr.vo.NewResultsCriteriaVo; //导入方法依赖的package包/类
public NewResultsCriteriaVo getValue() 
{
	NewResultsCriteriaVo newResultsSearchCriteria = new NewResultsCriteriaVo();
	
	newResultsSearchCriteria.setSelectedTab(MYRESULTS);
	
	newResultsSearchCriteria.setHospital(form.cmbHospital().getValue());
	
	if(form.OrdLocGrp().getValue().equals(OrdLocGrpEnumeration.rdoWard))
		newResultsSearchCriteria.setOrderingLocationType(ORDERING_LOCATION_TYPE_WARD);
	else if(form.OrdLocGrp().getValue().equals(OrdLocGrpEnumeration.rdoED))
		newResultsSearchCriteria.setOrderingLocationType(ORDERING_LOCATION_TYPE_ED);
	else if(form.OrdLocGrp().getValue().equals(OrdLocGrpEnumeration.rdoClinic))
		newResultsSearchCriteria.setOrderingLocationType(ORDERING_LOCATION_TYPE_CLINIC);
	else if(form.OrdLocGrp().getValue().equals(OrdLocGrpEnumeration.rdoOther))
		newResultsSearchCriteria.setOrderingLocationType(ORDERING_LOCATION_TYPE_OTHER);
	
	newResultsSearchCriteria.setOrderingLocation(form.qmbOrderingLocation().getValue());
	
	if(getIsOutpatientDepartment() && form.qmbOrderingLocation().getValue() instanceof LocationLiteVo)
	{
		newResultsSearchCriteria.setOutpatientDepartment((LocationLiteVo) form.qmbOrderingLocation().getValue());
	}
	
	if(form.chkCurrentInpatientsOnly().getValue() || form.chkInpatientOrdersPatientDischarged().getValue())
	{
		newResultsSearchCriteria.setInpatientHospital(form.cmbHospital().getValue());
		
		if(form.OrdLocGrp().getValue().equals(OrdLocGrpEnumeration.rdoWard) && form.qmbOrderingLocation().getValue() instanceof LocationLiteVo)
		{
			newResultsSearchCriteria.setInpatientWard((LocationLiteVo) form.qmbOrderingLocation().getValue());
		}
	}
	
	if(form.getLocalContext().getCurrentHCP() != null && Boolean.TRUE.equals(form.getLocalContext().getCurrentHCP().getIsHCPaResponsibleHCP()))
	{
		newResultsSearchCriteria.setResponsibleHCPForOrder(true);
		newResultsSearchCriteria.setOrder(true);
		newResultsSearchCriteria.setResponsibleHCPForCurrentIP(true);
		newResultsSearchCriteria.setCurrenIP(true);
		newResultsSearchCriteria.setHCP(form.getLocalContext().getCurrentHCP());
		
		if(HcpDisType.MEDICAL.equals(form.getLocalContext().getCurrentHCP().getHcpType()))
		{
			newResultsSearchCriteria.setForReviewByMe(true);
			newResultsSearchCriteria.setReviewingHCP(form.getLocalContext().getCurrentHCP());
		}
	}
	
	newResultsSearchCriteria.setOrderByMe(true);
	newResultsSearchCriteria.setOrderingHCP(form.getLocalContext().getCurrentHCP());
	
	newResultsSearchCriteria.setInpatientOrders(form.chkInpatientOrders().getValue());
	newResultsSearchCriteria.setOutpatientOrders(form.chkOutpatientOrders().getValue());
	newResultsSearchCriteria.setCurrentInpatientsOnly(form.chkCurrentInpatientsOnly().getValue());
	newResultsSearchCriteria.setInpatientOrdersPatientDischarged(form.chkInpatientOrdersPatientDischarged().getValue());
	
	newResultsSearchCriteria.setNewUpdated(form.chkNew().getValue());
	newResultsSearchCriteria.setSeenChecked(form.chkSeenChecked().getValue());
	newResultsSearchCriteria.setChecked(form.chkChecked().getValue());
	newResultsSearchCriteria.setForReview(form.chkReview().getValue());
	newResultsSearchCriteria.setCompleted(form.chkCompleted().getValue());

	newResultsSearchCriteria.setFromDate(form.dteFrom().getValue());
	newResultsSearchCriteria.setToDate(form.dteTo().getValue());	
	newResultsSearchCriteria.setDays(form.cmbDays().getValue());
	newResultsSearchCriteria.setNewestFirst(ListResultsByEnumeration.rdoNewestFirst.equals(form.ListResultsBy().getValue()) ? true : false);
	
	newResultsSearchCriteria.setDiscipline(getDisciplines());
	newResultsSearchCriteria.setAbnormalPathologyResultsOnly(form.chkAbnormalPathologyResultsOnly().getValue());
	
	return newResultsSearchCriteria;
}
 
开发者ID:oopcell,项目名称:AvoinApotti,代码行数:74,代码来源:Logic.java

示例6: getValue

import ims.ocrr.vo.NewResultsCriteriaVo; //导入方法依赖的package包/类
public NewResultsCriteriaVo getValue() 
{
	NewResultsCriteriaVo newResultsSearchCriteria = new NewResultsCriteriaVo();
	
	newResultsSearchCriteria.setSelectedTab(ALL);
	
	newResultsSearchCriteria.setHospital(form.cmbHospital().getValue());
	
	if(form.OrdLocGrp().getValue().equals(OrdLocGrpEnumeration.rdoWard))
		newResultsSearchCriteria.setOrderingLocationType(ORDERING_LOCATION_TYPE_WARD);
	else if(form.OrdLocGrp().getValue().equals(OrdLocGrpEnumeration.rdoED))
		newResultsSearchCriteria.setOrderingLocationType(ORDERING_LOCATION_TYPE_ED);
	else if(form.OrdLocGrp().getValue().equals(OrdLocGrpEnumeration.rdoClinic))
		newResultsSearchCriteria.setOrderingLocationType(ORDERING_LOCATION_TYPE_CLINIC);
	else if(form.OrdLocGrp().getValue().equals(OrdLocGrpEnumeration.rdoOther))
		newResultsSearchCriteria.setOrderingLocationType(ORDERING_LOCATION_TYPE_OTHER);
	
	newResultsSearchCriteria.setOrderingLocation(form.qmbOrderingLocation().getValue());
	
	if(getIsOutpatientDepartment() && form.qmbOrderingLocation().getValue() instanceof LocationLiteVo)
	{
		newResultsSearchCriteria.setOutpatientDepartment((LocationLiteVo) form.qmbOrderingLocation().getValue());
	}
	
	newResultsSearchCriteria.setOrder(form.chkOrder().getValue());
	newResultsSearchCriteria.setCurrenIP(form.chkCurrentIP().getValue());
	newResultsSearchCriteria.setHCP(form.ccResponsibleHCP().getValue());
	
	newResultsSearchCriteria.setReviewingHCP(form.qmbReviewingHCP().getValue());
	newResultsSearchCriteria.setOrderingHCP(form.ccOrderingHCP().getValue());
	
	newResultsSearchCriteria.setNewUpdated(form.chkNew().getValue());
	newResultsSearchCriteria.setSeenChecked(form.chkSeenChecked().getValue());
	newResultsSearchCriteria.setChecked(form.chkChecked().getValue());
	newResultsSearchCriteria.setForReview(form.chkReview().getValue());
	newResultsSearchCriteria.setCompleted(form.chkCompleted().getValue());

	newResultsSearchCriteria.setFromDate(form.dteFrom().getValue());
	newResultsSearchCriteria.setToDate(form.dteTo().getValue());	
	newResultsSearchCriteria.setDays(form.cmbDays().getValue());
	newResultsSearchCriteria.setNewestFirst(ListResultsByEnumeration.rdoNewestFirst.equals(form.ListResultsBy().getValue()) ? true : false);
	
	newResultsSearchCriteria.setDiscipline(getDisciplines());
	newResultsSearchCriteria.setAbnormalPathologyResultsOnly(form.chkAbnormalPathologyResultsOnly().getValue());
	
	return newResultsSearchCriteria;
}
 
开发者ID:oopcell,项目名称:AvoinApotti,代码行数:48,代码来源:Logic.java


注:本文中的ims.ocrr.vo.NewResultsCriteriaVo.setReviewingHCP方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。