123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SPADT60100" position="absolute 0 0 507 334" titletext="검수보류 이력" oninit="SPADT60100_oninit" onload="SPADT60100_onload">
- <Layouts>
- <Layout>
- <Div position="absolute 0 0 506 306" id="grp_biz" scrollbars="autoboth">
- <Layouts>
- <Layout>
- <Static text="검수보류 이력" position="absolute 0 9 121 26" id="caption1" class="tit_2" anchor="default"/>
- <Shape position="absolute 0 24 505 30" linetype="horizontal" id="line1" class="line_1" anchor="default"/>
- <Grid position="absolute 0 30 505 297" id="grd_reflist" binddataset="ds_main_list" anchor="default">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="25"/>
- <Column size="125"/>
- <Column size="345"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="보류일시"/>
- <Cell col="2" text="보류사유"/>
- </Band>
- <Band id="body">
- <Cell text="expr:currow+1"/>
- <Cell col="1" text="bind:drugchkdt"/>
- <Cell col="2" text="bind:reteresn"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Shape id="line00" class="line_1" position="absolute 0 25 505 31" anchor="default"/>
- <Shape id="line02" class="line_1" position="absolute 0 26 505 32" anchor="default"/>
- </Layout>
- </Layouts>
- </Div>
- <Div position="absolute 0 301 507 328" id="grp_btn" scrollbars="autoboth">
- <Layouts>
- <Layout>
- <Button position="absolute 449 3 505 25" id="btn_cls" class="btn4" text="닫기" anchor="default" onclick="grp_btn_btn_cls_onclick"/>
- </Layout>
- </Layouts>
- </Div>
- </Layout>
- </Layouts>
- <Objects>
- <Dataset id="ds_main_list" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="drugchkdt" type="STRING" size="256"/>
- <Column id="reteresn" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_send" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="drugno" type="STRING" size="256"/>
- <Column id="drugdd" type="STRING" size="256"/>
- <Column id="prcpno" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_init" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_hidden_refcnts" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="drugno" type="STRING" size="256"/>
- <Column id="drugdd" type="STRING" size="256"/>
- <Column id="prcpno" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- </Objects>
- <Script type="xscript4.0"><![CDATA[/***************************************************************************************
- * System Name :
- * Job Name :
- * Creator :
- * Make Date : 2015-11-13
- * Description :
- *---------------------------------------------------------------------------------------
- * Modify Date Modifier Modify Description
- *---------------------------------------------------------------------------------------
- * 2015-11-13 Live Converter TF->XP
- *
- *---------------------------------------------------------------------------------------
- ****************************************************************************************/
- //=======================================================================================
- // Lib Include
- //---------------------------------------------------------------------------------------
- include "com_commonxp::comm_main.xjs"
- //=======================================================================================
- // Global Form Variable
- //---------------------------------------------------------------------------------------
- //=======================================================================================
- // Function
- //---------------------------------------------------------------------------------------
- /****************************************************************************************
- * Argument : N/A
- * Description :
- ****************************************************************************************/
- //=======================================================================================
- // Event
- //---------------------------------------------------------------------------------------
- /****************************************************************************************
- * Components : Form
- * Components ID : SPADT60100
- * Event : oninit
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 화면 처음 초기화시 폼초기화
- ****************************************************************************************/
- function SPADT60100_oninit(obj:Form, e:InitEventInfo)
- {
- frmf_initForm(obj); // 폼 초기화
- }
- /****************************************************************************************
- * Components : Form
- * Components ID : SPADT60100
- * Event : onload
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 화면 처음 초기화시 폼초기화
- ****************************************************************************************/
- function SPADT60100_onload(obj:Form, e:LoadEventInfo)
- {
- try{
- ds_hidden_refcnts.copyData(arg_ds_hidden_refcnts);
- }catch(e){}
-
- var drugdd = ds_hidden_refcnts.getColumn(0,"drugdd");
- var drugno = ds_hidden_refcnts.getColumn(0,"drugno");
- var prcpno = ds_hidden_refcnts.getColumn(0,"prcpno");
-
- ds_send.setColumn(0,"drugdd",drugdd);
- ds_send.setColumn(0,"drugno",drugno);
- ds_send.setColumn(0,"prcpno",prcpno);
-
- var oParam = {};
- oParam.id = "TRADT60101";
- oParam.service = "pharmacyprescriptionapp.MpsCheck";
- oParam.method = "reqGetChkHistIn";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_list=list";
- oParam.async = false;
- //oParam.callback = "cf_TRADT60101";
- tranf_submit(oParam);
- }
- /****************************************************************************************
- * Components : Button
- * Components ID : grp_btn.btn_cls
- * Event : onclick
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 닫기
- ****************************************************************************************/
- function grp_btn_btn_cls_onclick(obj:Button, e:ClickEventInfo)
- {
- this.close();
- }
- ]]></Script>
- </Form>
- </FDL>
|