123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SMLLR90400" position="absolute 0 0 531 327" titletext="연관검사조회" oninit="SMLLR90400_oninit" onload="SMLLR90400_onload">
- <Layouts>
- <Layout>
- <Shape id="line1" class="line_10" position="absolute 0 16 525 22"/>
- <Grid id="datagrid3" taborder="1" binddataset="ds_main_testlist" useinputpanel="false" position="absolute 0 21 525 299" autofittype="col" cellsizingtype="col">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="21"/>
- <Column size="163"/>
- <Column size="50"/>
- <Column size="110"/>
- <Column size="20"/>
- <Column size="20"/>
- <Column size="20"/>
- <Column size="20"/>
- <Column size="20"/>
- <Column size="20"/>
- <Column size="20"/>
- <Column size="20"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="검사항목명"/>
- <Cell col="2" text="결과"/>
- <Cell col="3" text="결과일시"/>
- <Cell col="4" text="N"/>
- <Cell col="5" text="P"/>
- <Cell col="6" text="D"/>
- <Cell col="7" text="C"/>
- <Cell col="8" text="A"/>
- <Cell col="9" text="M"/>
- <Cell col="10" text="R"/>
- <Cell col="11" text="S"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="currow+1"/>
- <Cell col="1" style="align:left middle;" text="bind:tclsscrnnm"/>
- <Cell col="2" style="align:left middle;" text="bind:reptrslt"/>
- <Cell col="3" displaytype="date" text="bind:lastreptdt" mask="yyyy-MM-dd hh:mm"/>
- <Cell col="4" style="background:EXPR(judgmark == 'H' ? '#f7a08b' : judgmark == 'L' ? '#b9e5fb' :'#ffffff');background2:EXPR(judgmark == 'H' ? '#f7a08b' : judgmark == 'L' ? '#b9e5fb' :'#ffffff');" text="bind:judgmark"/>
- <Cell col="5" style="background:EXPR( panicmark == 'P' ? '#7BE6B7' :'#ffffff' );background2:EXPR( panicmark == 'P' ? '#7BE6B7' :'#ffffff' );" text="bind:panicmark"/>
- <Cell col="6" style="background:EXPR(deltamark == 'D' ? '#dec6a4' : 'ffffff');background2:EXPR(deltamark == 'D' ? '#dec6a4' : 'ffffff');" text="bind:deltamark"/>
- <Cell col="7" style="background:EXPR(criticalmark == 'C' ? '#ffe79d' : 'ffffff');background2:EXPR(criticalmark == 'C' ? '#ffe79d' : 'ffffff');" text="bind:criticalmark"/>
- <Cell col="8" style="background:EXPR(alertmark == 'A' ? '#fec34d' : 'ffffff');background2:EXPR(alertmark == 'A' ? '#fec34d' : 'ffffff');" text="bind:alertmark"/>
- <Cell col="9"/>
- <Cell col="10"/>
- <Cell col="11" style="color:#339966ff;color2:#339966ff;" text="bind:rsltmark"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Static id="caption3" text="연관검사 조회" class="tit_2" position="absolute 0 0 113 22"/>
- <Button id="button2" taborder="2" text="닫기" class="btn4" position="absolute 469 301 525 323" onclick="button2_onclick"/>
- </Layout>
- </Layouts>
- <Objects>
- <Dataset id="ds_main_testlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="tclsscrnnm" type="STRING"/>
- <Column id="reptrslt" type="STRING"/>
- <Column id="lastreptdt" type="STRING"/>
- <Column id="judgmark" type="STRING"/>
- <Column id="panicmark" type="STRING"/>
- <Column id="deltamark" type="STRING"/>
- <Column id="criticalmark" type="STRING"/>
- <Column id="alertmark" type="STRING"/>
- <Column id="rsltmark" type="STRING"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_send_data1" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- </Objects>
- <Script type="xscript4.0"><![CDATA[/***************************************************************************************
- * System Name :
- * Job Name :
- * Creator :
- * Make Date : 2015-05-01
- * Description :
- *---------------------------------------------------------------------------------------
- * Modify Date Modifier Modify Description
- *---------------------------------------------------------------------------------------
- * 2015-05-01 Live Converter TF->XP
- *
- *---------------------------------------------------------------------------------------
- ****************************************************************************************/
- include "com_commonxp::comm_main.xjs";
- function SMLLR90400_oninit(obj:Form, e:InitEventInfo)
- {
- frmf_initForm(obj);
- }
- function SMLLR90400_onload(obj:Form, e:LoadEventInfo)
- {
- grdf_initGrid(datagrid3);
-
- fInit();
- }
- function fInit()
- {
- ds_send_data1.copyData(arg_ds_hidden_RelationParm);
-
- var oParam = {};
- oParam.id = "TRLLR90401";
- oParam.service = "rsltmngtapp.RsltMngt";
- oParam.method = "reqGetRelationTestList";
- oParam.inds = "cond=ds_send_data1";
- oParam.outds = "ds_main_testlist=testlist";
- oParam.async = false;
- //oParam.callback = "cf_TRLLR90401";
- tranf_submit(oParam);
- ds_main_testlist.rowposition = -1;
- }
- function button2_onclick(obj:Button, e:ClickEventInfo)
- {
- this.close();
- }
- ]]></Script>
- </Form>
- </FDL>
|