123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SPLMP90200" position="absolute 0 0 881 645" titletext="미생물결과상세조회" onload="SPLMP90200_onload">
- <Layouts>
- <Layout>
- <Shape id="line1" class="line_1" position="absolute 0 15 874 15" anchor="default" positiontype="position" linetype="horizontal"/>
- <Static id="caption3" class="tit_2" position="absolute 3 2 166 22" anchor="default" positiontype="position" text="미생물결과상세보기"/>
- <Grid id="grd_datagrid1" class="datagrid_noborder" position="absolute 3 22 879 621" anchor="default" positiontype="position" binddataset="ds_grid_grd_datagrid1" style="align:center middle;font:돋움체,9,bold;" autofittype="col">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="500"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="22" band="head"/>
- <Row size="30"/>
- </Rows>
- <Band id="head">
- <Cell text="결 과 내 역"/>
- <Cell col="1"/>
- </Band>
- <Band id="body">
- <Cell style="align:left middle;font:돋움체,9;" text="bind:reptrslt"/>
- <Cell col="1" text="bind:judgmark2"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Button id="btn_cfm" taborder="2" text="확인" onclick="btn_cfm_onclick" class="btn5" position="absolute 835 623 879 643"/>
- </Layout>
- </Layouts>
- <Objects>
- <Dataset id="ds_grid_grd_datagrid1" firefirstcount="0" firenextcount="0" useclientlayout="true" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" onrowposchanged="ds_grid_grd_rslt_onrowposchanged">
- <ColumnInfo>
- <column id="reptrslt" type="STRING" size="256"/>
- <column id="testcd" type="STRING" size="256"/>
- <column id="bcno" type="STRING" size="256"/>
- <column id="judgmark" type="STRING" size="256"/>
- <column id="flag" type="STRING" size="256"/>
- <column id="prcpcd" type="STRING" size="256"/>
- <column id="prcpnm" type="STRING" size="256"/>
- <column id="judgmark2" type="STRING" size="256"/>
- <column id="formcd" type="STRING" size="256"/>
- <column id="signno" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- </Objects>
- <Bind/>
- <Script type="xscript4.0"><![CDATA[/***************************************************************************************
- * System Name : KU2.0
- * Job Name :
- * File Name : SPLMP90200_미생물누적결과조회(상세).xfdl
- * Creator :
- * Make Date : 2015-03-11
- *
- * Description :
- *---------------------------------------------------------------------------------------
- * Modify Date Modifier Modify Description
- *---------------------------------------------------------------------------------------
- * 2015-03-11 Converting Program(TF->XP)
- *
- *---------------------------------------------------------------------------------------
- ****************************************************************************************/
- //=======================================================================================
- // Lib Include
- //---------------------------------------------------------------------------------------
- include "com_commonxp::comm_main.xjs";
- include "lis_commonxp::LZZ001.xjs";
- //=======================================================================================
- // Function
- //---------------------------------------------------------------------------------------
- function lf_clickResultList() {
-
- var bcno = opener.ds_MicroRsltList.getColumn(opener.ds_MicroRsltList.rowposition, "bcno");
- var testmdlcd = testmdlcd;
- var pid = opener.ds_MicroRsltList.getColumn(opener.ds_MicroRsltList.rowposition, "pid");
- var level = "3";
- var lastreptdd= opener.ds_MicroRsltList.getColumn(opener.ds_MicroRsltList.rowposition, "reptdt");
- var notmdlcd = "not";
- // var refddflag = refflag;
- var sInDsName = dsf_createDsRow("ds_temp_search"
- , [{col: "bcno", val:bcno }
- , {col: "testmdlcd", val:testmdlcd }
- , {col: "pid", val:pid }
- , {col: "level", val:level }
- , {col: "lastreptdd", val:lastreptdd }
- , {col: "notmdlcd", val:notmdlcd }
- // , {col: "refddflag", val:refddflag }
- ]);
-
- // 서브밋호출
- tranf_submit({
- id: "TRLLP00902"
- , service: "refprintmngtapp.GeneralRefPrintMngt"
- , method: "reqGetResultDetailList"
- , inds : "refparam="+sInDsName
- , outds: "ds_grid_grd_datagrid1=getResultDetail"
- , callback: "cbf_SPLMP90200"
- , async: false
- });
- }
- // callback 함수
- function cbf_SPLMP90200(strSvcID, nErrorCode, strErrorMag) {
-
- if(nErrorCode != 0) {
- sysf_messageBox("ID: "+ strSvcID + " Error: " + strErrorMag, "E009", "");
- }else{
- switch(strSvcID){
- case "TRLLP00902":
- break;
- default:
- break;
- }
- }
- }
- //=======================================================================================
- // Event
- //---------------------------------------------------------------------------------------
- /****************************************************************************************
- * Components :
- * Components ID : SPLMP90200
- * Event : onload
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description :
- ***************************************************************************************/
- function SPLMP90200_onload(obj:Form, e:LoadEventInfo)
- {
- //폼 초기화 함수
- frmf_initForm(obj);
-
- lf_clickResultList();
-
- }
- function btn_cfm_onclick(obj:Button, e:ClickEventInfo)
- {
- this.close();
- }
- function Button00_onclick(obj:Button, e:ClickEventInfo)
- {
- this.close();
- }
- ]]></Script>
- </Form>
- </FDL>
|