123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SPLPR01800" position="absolute 0 0 1108 560" titletext="CF조회" class="frm_POP" onload="SPLPR01800_onload">
- <Layouts>
- <Layout>
- <Static id="caption1" text="CF 목록" class="tit_2" position="absolute 12 46 228 66"/>
- <Static id="stt_titleText" text="CF조회" class="sta_POP_title" position="absolute 12 8 192 28"/>
- <Button id="Button00" taborder="2" class="btn_POP_cls" position="absolute 1082 11 1096 25" style="color:#333333ff;" onlbuttonup="Button00_onlbuttonup"/>
- <Grid id="grd_cflist" class="datagrid2" taborder="3" useinputpanel="false" position="absolute 12 66 1096 548" cellmovingtype="col" cellsizingtype="col">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="0"/>
- <Column size="80"/>
- <Column size="0"/>
- <Column size="80"/>
- <Column size="236"/>
- <Column size="250"/>
- <Column size="250"/>
- <Column size="90"/>
- <Column size="80"/>
- </Columns>
- <Rows>
- <Row size="22" band="head"/>
- <Row size="20"/>
- </Rows>
- <Band id="head">
- <Cell text="기관코드"/>
- <Cell col="1" text="등록번호"/>
- <Cell col="2" text="caption1"/>
- <Cell col="3" text="병리번호"/>
- <Cell col="4" text="T"/>
- <Cell col="5" text="P"/>
- <Cell col="6" text="M"/>
- <Cell col="7" text="접수일자"/>
- <Cell col="8" text="판독의"/>
- </Band>
- <Band id="body">
- <Cell/>
- <Cell col="1" text="bind:pid"/>
- <Cell col="2"/>
- <Cell col="3" text="bind:ptno"/>
- <Cell col="4" style="align:left middle;padding:0 0 0 5;" text="bind:extrpartcd"/>
- <Cell col="5" style="align:left middle;padding:0 0 0 5;" text="bind:extrmthdcd"/>
- <Cell col="6" style="align:left middle;padding:0 0 0 5;" text="bind:diagcd"/>
- <Cell col="7" text="bind:acptdd"/>
- <Cell col="8" text="bind:readdrnm"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- </Layout>
- </Layouts>
- <Objects/>
- <Style url="CSS::lis.css"/>
- <Script type="xscript4.0"><![CDATA[/***************************************************************************************
- * System Name : KU2.0
- * Job Name :
- * File Name : SMLPR00400_세포결과일괄등록.xfdl
- * Creator :
- * Make Date : 2015-12-10
- *
- * Description :
- *---------------------------------------------------------------------------------------
- * Modify Date Modifier Modify Description
- *---------------------------------------------------------------------------------------
- *
- *--------------------------------------------------------------------------------------*/
- // ==========================================================================================================================================================
- // [ xjs include ] [ xjs include ] [ xjs include ] [ xjs include ]
- // ==========================================================================================================================================================
- include "com_commonxp::comm_main.xjs";
- include "lis_commonxp::LPZ001.xjs";
- include "lis_commonxp::LLZ001.xjs";
- function SPLPR01800_onload(obj:Form, e:LoadEventInfo)
- {
- frmf_initForm(obj);
- lf_ExeInitialize();
-
- // 그리드 헤더 클릭시 Sorting 기능 구현
- grdf_setGridSort(grd_cflist);
- //lf_search();
- }
- function lf_ExeInitialize(){
-
- dsf_createDsRow("ds_send"
- , [{col: "instcd", val: opener.frmf_getParameter("SPLPR00400_instcd") }
- , {col: "pid", val: opener.frmf_getParameter("SPLPR00400_pid")}
- ]);
- ]);
-
- dsf_createDs("ds_cflist");
-
- var oParam = {};
- oParam.id = "TRLPZ00108";
- oParam.service = "plgycomnusemngtapp.BaseInfoCode";
- oParam.method = "reqGetBfPtNoList";
- oParam.inds = "refdata=ds_send";
- oParam.outds = "ds_cflist=rsltlist";
- oParam.async = false;
- oParam.callback = "cf_TRLPZ00108";
- tranf_submit(oParam);
-
- }
- function cf_TRLPZ00108(strSvcID, nErrorCode, strErrorMag)
- {
- if(nErrorCode != 0){
- sysf_messageBox("ID: " + strSvcID + " Error: " + strErrorMag, "E009", "");
- } else {
- grd_cflist.binddataset = ds_cflist;
- }
- }
- function Button00_onlbuttonup(obj:Button, e:MouseEventInfo)
- {
- this.close();
- }
- ]]></Script>
- </Form>
- </FDL>
|