• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java PlannedUnplannedEnumeration类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中ims.clinical.forms.intraoperativecarerecord.GenForm.lyr1Layer.tabCareRecordContainer.PlannedUnplannedEnumeration的典型用法代码示例。如果您正苦于以下问题:Java PlannedUnplannedEnumeration类的具体用法?Java PlannedUnplannedEnumeration怎么用?Java PlannedUnplannedEnumeration使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



PlannedUnplannedEnumeration类属于ims.clinical.forms.intraoperativecarerecord.GenForm.lyr1Layer.tabCareRecordContainer包,在下文中一共展示了PlannedUnplannedEnumeration类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: validateUIRules

import ims.clinical.forms.intraoperativecarerecord.GenForm.lyr1Layer.tabCareRecordContainer.PlannedUnplannedEnumeration; //导入依赖的package包/类
private String[] validateUIRules()
{
	List<String> uiErrors = new ArrayList<String>();

	/*if (form.lyr1().tabCareRecord().dtimInTheatreTime().getValue() != null && form.lyr1().tabCareRecord().dtimOutTheatreTime().getValue() != null && form.lyr1().tabCareRecord().dtimInTheatreTime().getValue().isGreaterThan(form.lyr1().tabCareRecord().dtimOutTheatreTime().getValue()))
	{
		uiErrors.add("In Theatre Time can not be set after Out Theatre Time.");
	}*/

	if (form.lyr1().tabCareRecord().dtimSurgeryStart().getValue() != null && form.lyr1().tabCareRecord().dtimSurgeryFinish().getValue() != null && form.lyr1().tabCareRecord().dtimSurgeryStart().getValue().isGreaterThan(form.lyr1().tabCareRecord().dtimSurgeryFinish().getValue()))
	{
		uiErrors.add("Surgery start can not be set after Surgery finish.");
	}

	if (!(form.lyr1().tabCareRecord().PlannedUnplanned().getValue().equals(PlannedUnplannedEnumeration.rdoPlanned) || form.lyr1().tabCareRecord().PlannedUnplanned().getValue().equals(PlannedUnplannedEnumeration.rdoUnplanned)))
	{
		uiErrors.add("Please specify if  the actual procedure is planned or unplanned.");
	}

	if (form.lyr1().tabDetails().ctn1().dtimTimeOn().getValue() != null && form.lyr1().tabDetails().ctn1().dtimTimeOff().getValue() != null && form.lyr1().tabDetails().ctn1().dtimTimeOn().getValue().isGreaterThan(form.lyr1().tabDetails().ctn1().dtimTimeOff().getValue()))
	{
		uiErrors.add("Time On cannot be set after Time Off.");
	}
	//wdev-11676
	if (form.lyr1().tabDetails().ctn1().dtimCatheterInTime().getValue() != null && form.lyr1().tabDetails().ctn1().dtimCatheterOutTime().getValue() != null && form.lyr1().tabDetails().ctn1().dtimCatheterInTime().getValue().isGreaterThan(form.lyr1().tabDetails().ctn1().dtimCatheterOutTime().getValue()))
	{
		uiErrors.add("Catheter In Time can not be set after Catheter Out Time.");
	}
	//----------

	if (checkOtherSkinPreparation())
	{
		uiErrors.add("Please set Other Skin Preparation Used.");
	}

	if (checkOtherTable())
	{
		uiErrors.add("Please set Other Table Device.");
	}

/*	if (checkOtherDiathermyPlate())
	{
		uiErrors.add("Please set Other Other Diathermy Plate.");
	}
	//wdev-11676 */
	/*if (checkOtherDiathermyPlateSite2())
	{
		uiErrors.add("Please set Other Other Diathermy Plate.");
	}
	*/
	//------------

	if (form.lyr1().tabDetails().ctn1().chkCatheter().getValue() == true && form.lyr1().tabDetails().ctn1().ccCatherterInsertedBy().getValue() == null)
	{
		uiErrors.add("Catheter Inserted by is mandatory");
	}

	String[] result = new String[uiErrors.size()];
	uiErrors.toArray(result);
	return result;
}
 
开发者ID:oopcell,项目名称:AvoinApotti,代码行数:62,代码来源:Logic.java


示例2: populateIntraOperativeCareRecords

import ims.clinical.forms.intraoperativecarerecord.GenForm.lyr1Layer.tabCareRecordContainer.PlannedUnplannedEnumeration; //导入依赖的package包/类
private void populateIntraOperativeCareRecords(IntraOperativeCareRecordVo currentRecord)
{
	if (currentRecord == null)
		return;

	form.lyr1().tabCareRecord().ccAuth().setValue(currentRecord.getAuthoringInformationIsNotNull() ? currentRecord.getAuthoringInformation() : null);

	form.lyr1().tabCareRecord().ccPlannedProcedure().setValue(form.getGlobalContext().Clinical.getPatientProcedureForIntraOperativeDialog());

	form.lyr1().tabCareRecord().ccActualProcedurePerformed().setValue(currentRecord.getActualProcedureIsNotNull() ? currentRecord.getActualProcedure() : null);

	form.lyr1().tabCareRecord().dteDate().setValue(currentRecord.getProcedureDateIsNotNull() ? currentRecord.getProcedureDate() : null);
	if (currentRecord.getTheatreIsNotNull())
	{
		form.lyr1().tabCareRecord().cmbTheatre().newRow(currentRecord.getTheatre(), currentRecord.getTheatre().getName());
		form.lyr1().tabCareRecord().cmbTheatre().setValue(currentRecord.getTheatre());
	}
	form.lyr1().tabCareRecord().dtimInTheatreTime().setValue(currentRecord.getInTheatreTimeIsNotNull() ? currentRecord.getInTheatreTime() : null);
	
	//wdev-12096
	//form.lyr1().tabCareRecord().txtAnaestheticUsed().setValue(currentRecord.getAnaestheticUsedIsNotNull() ? currentRecord.getAnaestheticUsed():null);
	form.lyr1().tabCareRecord().cmbAnaestheticUsed().setValue(currentRecord.getAnaestheticUsedIsNotNull() ? currentRecord.getAnaestheticUsed():null); //wdev-13774
	form.lyr1().tabCareRecord().dtimTimeIntoPACU().setValue(currentRecord.getIntoPacuTimeIsNotNull() ? currentRecord.getIntoPacuTime():null);
	form.lyr1().tabCareRecord().dtimStageOneRecovery().setValue(currentRecord.getTimeIntoRecoveryIsNotNull() ? currentRecord.getTimeIntoRecovery():null);
	form.lyr1().tabCareRecord().dtimTimeOutOfRecovery().setValue(currentRecord.getTimeOutOfRecoveryIsNotNull() ? currentRecord.getTimeOutOfRecovery():null);
	
	//WDEV-12173
	Booking_AppointmentShortVo voAppt = domain.getTheatreApptForIntraOperativeCareRecord(currentRecord);
	if(voAppt != null && voAppt.getAppointmentDateIsNotNull())
		form.lyr1().tabCareRecord().cmbTheatreBooking().newRow(voAppt, voAppt.getAppointmentDate().toString()+(voAppt.getApptStartTime()!=null?" "+
				voAppt.getApptStartTime().toString():(voAppt.getTheatreBookingIsNotNull()&&voAppt.getTheatreBooking().getTCITimeIsNotNull()?" "+voAppt.getTheatreBooking().getTCITime().getText():"")));
	
	form.lyr1().tabCareRecord().cmbTheatreBooking().setValue(voAppt);
	
	//-------------
	form.lyr1().tabCareRecord().dtimSurgeryStart().setValue(currentRecord.getSurgeryStartTimeIsNotNull() ? currentRecord.getSurgeryStartTime() : null);
	form.lyr1().tabCareRecord().dtimSurgeryFinish().setValue(currentRecord.getSurgeryEndTimeIsNotNull() ? currentRecord.getSurgeryEndTime() : null);

	form.lyr1().tabCareRecord().dtimAnaesthetistS().setValue(currentRecord.getAnaesthetistStartTimeIsNotNull() ? currentRecord.getAnaesthetistStartTime() : null);
	form.lyr1().tabCareRecord().ccSurgeon().setValue(currentRecord.getSurgeonIsNotNull() ? currentRecord.getSurgeon() : null);
	form.lyr1().tabCareRecord().ccSurgeonAssistant().setValue(currentRecord.getSurgeonAssistantIsNotNull() ? currentRecord.getSurgeonAssistant() : null);
	form.lyr1().tabCareRecord().ccAnaesthetist().setValue(currentRecord.getAnaesthetistIsNotNull() ? currentRecord.getAnaesthetist() : null);
	form.lyr1().tabCareRecord().ccODAODP().setValue(currentRecord.getODAIsNotNull() ? currentRecord.getODA() : null);
	form.lyr1().tabCareRecord().ccScrubNurse().setValue(currentRecord.getScrubNurseIsNotNull() ? currentRecord.getScrubNurse() : null);
	form.lyr1().tabCareRecord().ccCirculatingNurse().setValue(currentRecord.getCirculatingNurseIsNotNull() ? currentRecord.getCirculatingNurse() : null);

	form.lyr1().tabCareRecord().txtOther().setValue(currentRecord.getOtherIsNotNull() ? currentRecord.getOther() : null);

	form.lyr1().tabCareRecord().PlannedUnplanned().setValue(currentRecord.getWasPlannedProcedureIsNotNull() && currentRecord.getWasPlannedProcedure() ? PlannedUnplannedEnumeration.rdoPlanned : PlannedUnplannedEnumeration.rdoUnplanned);
}
 
开发者ID:oopcell,项目名称:AvoinApotti,代码行数:51,代码来源:Logic.java


示例3: validateUIRules

import ims.clinical.forms.intraoperativecarerecord.GenForm.lyr1Layer.tabCareRecordContainer.PlannedUnplannedEnumeration; //导入依赖的package包/类
private String[] validateUIRules()
{
	List<String> uiErrors = new ArrayList<String>();

	/*if (form.lyr1().tabCareRecord().dtimInTheatreTime().getValue() != null && form.lyr1().tabCareRecord().dtimOutTheatreTime().getValue() != null && form.lyr1().tabCareRecord().dtimInTheatreTime().getValue().isGreaterThan(form.lyr1().tabCareRecord().dtimOutTheatreTime().getValue()))
	{
		uiErrors.add("In Theatre Time can not be set after Out Theatre Time.");
	}*/

	if (form.lyr1().tabCareRecord().dtimSurgeryStart().getValue() != null && form.lyr1().tabCareRecord().dtimSurgeryFinish().getValue() != null && form.lyr1().tabCareRecord().dtimSurgeryStart().getValue().isGreaterThan(form.lyr1().tabCareRecord().dtimSurgeryFinish().getValue()))
	{
		uiErrors.add("'Surgery Start' date/time cannot be later than 'Surgery Finish' date/time."); //WDEV-18762
	}

	if (!(form.lyr1().tabCareRecord().PlannedUnplanned().getValue().equals(PlannedUnplannedEnumeration.rdoPlanned) || form.lyr1().tabCareRecord().PlannedUnplanned().getValue().equals(PlannedUnplannedEnumeration.rdoUnplanned)))
	{
		uiErrors.add("Please specify if  the actual procedure is planned or unplanned.");
	}

	if (form.lyr1().tabDetails().ctn1().dtimTimeOn().getValue() != null && form.lyr1().tabDetails().ctn1().dtimTimeOff().getValue() != null && form.lyr1().tabDetails().ctn1().dtimTimeOn().getValue().isGreaterThan(form.lyr1().tabDetails().ctn1().dtimTimeOff().getValue()))
	{
		uiErrors.add("Time On cannot be set after Time Off.");
	}
	//wdev-11676
	if (form.lyr1().tabDetails().ctn1().dtimCatheterInTime().getValue() != null && form.lyr1().tabDetails().ctn1().dtimCatheterOutTime().getValue() != null && form.lyr1().tabDetails().ctn1().dtimCatheterInTime().getValue().isGreaterThan(form.lyr1().tabDetails().ctn1().dtimCatheterOutTime().getValue()))
	{
		uiErrors.add("'Catheter In Time' cannot be later than 'Catheter Out Time'."); //WDEV-18762
	}
	//----------

	if (checkOtherSkinPreparation())
	{
		uiErrors.add("Please set Other Skin Preparation Used.");
	}

	if (checkOtherTable())
	{
		uiErrors.add("Please set Other Table Device.");
	}

/*	if (checkOtherDiathermyPlate())
	{
		uiErrors.add("Please set Other Other Diathermy Plate.");
	}
	//wdev-11676 */
	/*if (checkOtherDiathermyPlateSite2())
	{
		uiErrors.add("Please set Other Other Diathermy Plate.");
	}
	*/
	//------------

	if (form.lyr1().tabDetails().ctn1().chkCatheter().getValue() == true && form.lyr1().tabDetails().ctn1().ccCatherterInsertedBy().getValue() == null)
	{
		uiErrors.add("Catheter Inserted by is mandatory");
	}

	String[] result = new String[uiErrors.size()];
	uiErrors.toArray(result);
	return result;
}
 
开发者ID:IMS-MAXIMS,项目名称:openMAXIMS,代码行数:62,代码来源:Logic.java



注:本文中的ims.clinical.forms.intraoperativecarerecord.GenForm.lyr1Layer.tabCareRecordContainer.PlannedUnplannedEnumeration类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java ForgeTask类代码示例发布时间:2022-05-15
下一篇:
Java EthereumListener类代码示例发布时间:2022-05-15
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap