123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SMMMB08100" position="absolute 0 0 1256 805" titletext="empty" oninit="SMMMB08100_oninit" onload="SMMMB08100_onload">
- <Layouts>
- <Layout/>
- </Layouts>
- <Objects/>
- <Script type="xscript4.0"><![CDATA[/***************************************************************************************
- * System Name :
- * Job Name :
- * Creator :
- * Make Date : 2014-08-29
- * Description :
- *---------------------------------------------------------------------------------------
- * Modify Date Modifier Modify Description
- *---------------------------------------------------------------------------------------
- * 2014-08-29 Live Converter TF->XP
- *
- *---------------------------------------------------------------------------------------
- ****************************************************************************************/
-
- include "com_commonxp::comm_main.xjs";
- include "emr_prcpmngtxp::MMO001.xjs";
- function SMMMB08100_oninit(obj:Form, e:InitEventInfo)
- {
- frmf_initForm(obj);
- }
- function SMMMB08100_onload(obj:Form, e:LoadEventInfo)
- {
- fActivatePatList();
- }
- function fInitRecPamInfo(){
- var scrnwnd = frmf_findPopup("SPMMB08400");
- if(!utlf_isNull(scrnwnd)){
- scrnwnd.fCloseOpenEmrWnd();
- }
- }
- function fRecMainReady(){
- var scrnwnd = frmf_findPopup("SPMMB08400");
- if(!utlf_isNull(scrnwnd)){
- scrnwnd.fCloseOpenEmrWnd();
- }
- }
- //진료대상자리스트를 활성화시킴 (2009.10.21 by JJE)
- function fActivatePatList(){
- var mainObj = frmf_getMainViewer();
- var patListObj = mainObj.frmf_findPopup("SMMMO04100"); //진료대상자 화면
- if(!utlf_isNull(patListObj)){
- if(patListObj.frmf_getParameter("SMMMO04100_activateYN") == "Y"){
- frmf_setFocus(patListObj);
- }
-
- patListObj.frmf_clearParameter("SMMMO04100_activateYN"); //초기화
- }
- }]]></Script>
- </Form>
- </FDL>
|