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


Java InpatientEpisodeForPendingDischargesVo.getIsConfirmedDischarge方法代码示例

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


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

示例1: populateGrid

import ims.core.vo.InpatientEpisodeForPendingDischargesVo; //导入方法依赖的package包/类
private void populateGrid(InpatientEpisodeForPendingDischargesVoCollection discharges, InpatientEpisodeForPendingDischargesVo voToFind) 
{

	for (InpatientEpisodeForPendingDischargesVo item : discharges) 
	{
		grdDischargesRow row = form.grdDischarges().getRows().newRow();
		row.setValue(item);
		if(item.getPasEventIsNotNull())
			if (item.getPasEvent().getPatientIsNotNull())
			{
				item.getPasEvent().getPatient().calculateAge();

				row.setColHOSNUM(item.getPasEvent().getPatient().getHospnum().getValue());
				if (item.getPasEvent().getPatient().getAgeIsNotNull())
					row.setcolAge(item.getPasEvent().getPatient().getAge().toString());
				if (item.getPasEvent().getPatient().getSexIsNotNull())
					row.setColPatSex(item.getPasEvent().getPatient().getSex().getText());
				if (item.getPasEvent().getPatient().getNameIsNotNull())
					if (item.getPasEvent().getPatient().getName().getSurnameIsNotNull())
						row.setColSurname(item.getPasEvent().getPatient().getName().getSurname());
					if (item.getPasEvent().getPatient().getName().getForenameIsNotNull())
						row.setColForename(item.getPasEvent().getPatient().getName().getForename());


			}
		if (item.getPasEvent().getConsultantIsNotNull())
			if (item.getPasEvent().getConsultant().getMosIsNotNull())
				if (item.getPasEvent().getConsultant().getMos().getNameIsNotNull())
					row.setColConsultant(item.getPasEvent().getConsultant().getMos().getName().toString());
		if (item.getPasEvent().getLocationIsNotNull())
			if (item.getPasEvent().getLocation().getNameIsNotNull())
				row.setColWard(item.getPasEvent().getLocation().getName());
		if (item.getBedIsNotNull())
			if (item.getBed().getBedSpaceIsNotNull())
				if (item.getBed().getBedSpace().getBedSpaceTypeIsNotNull())
					row.setColLocation(item.getBed().getBedSpace().getBedSpaceType().getText());
		if (item.getEstDischargeDateIsNotNull())
			row.setColDateTime(item.getEstDischargeDate().toString());
		
		if(item.isDischargeDueWithin24Hrs())
		{
			if(item.getIsConfirmedDischarge() == null || item.getIsConfirmedDischarge().equals(false))
				row.setBackColor(Color.Orange);
			else if(item.getIsConfirmedDischargeIsNotNull() && item.getIsConfirmedDischarge().equals(true))
				row.setBackColor(Color.Red);
		}	
		
		if (voToFind != null 
			&& voToFind.equals(item))
			form.grdDischarges().setValue(voToFind);

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


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