123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- <?xml version="1.0" encoding="utf-8" standalone="no"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SPARC02200" position="absolute 0 0 876 900" titletext="의뢰환자조희" oninit="SPARC02200_oninit" onload="SPARC02200_onload">
- <Layouts>
- <Layout>
- <Button id="btn_search" taborder="0" text="조회" class="btn1" position="absolute 400 5 456 27" onclick="btn_search_onclick"/>
- <Static id="caption3" text="의뢰등록일 :" class="search_name" position="absolute 10 6 109 23"/>
- <Calendar id="input2" taborder="1" class="input_search" position="absolute 115 5 215 24" mask="yyyy-mm-dd" autoselect="true" autoskip="true"/>
- <Shape id="line1" class="line_10" position="absolute 0 26 860 37"/>
- <Grid id="grd_list" taborder="3" binddataset="ds_main_reqlist" useinputpanel="false" position="absolute 0 33 860 885" autoenter="select" cellsizingtype="col">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="342"/>
- <Column size="181"/>
- <Column size="90"/>
- </Columns>
- <Rows>
- <Row size="25" band="head"/>
- <Row size="25"/>
- <Row size="24" band="summ"/>
- </Rows>
- <Band id="head">
- <Cell text="의뢰병원"/>
- <Cell col="1" text="전화번호"/>
- <Cell col="2" text="건수"/>
- </Band>
- <Band id="body">
- <Cell style="align:left middle;padding:2 2 2 2;" text="bind:coophospnm"/>
- <Cell col="1" style="align:left middle;padding:2 2 2 2;" text="bind:telno"/>
- <Cell col="2" displaytype="number" style="align:center middle;" text="bind:cnt"/>
- </Band>
- <Band id="summary">
- <Cell style="align:left middle;padding:2 2 2 2;" text="합계"/>
- <Cell col="1"/>
- <Cell col="2" displaytype="number" style="align:center middle;" text="expr:getSum('cnt')"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Calendar id="input1" taborder="2" class="input_search" position="absolute 240 5 340 24" mask="yyyy-mm-dd" autoselect="true"/>
- <Static id="caption1" text="~" position="absolute 220 5 237 27"/>
- </Layout>
- </Layouts>
- <Objects>
- <Dataset id="ds_send_search" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="rgstdd" type="STRING" size="256"/>
- <Column id="todd" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_reqlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="coophospnm" type="STRING" size="256" sumtext=""/>
- <Column id="telno" type="STRING" size="256" sumtext=""/>
- <Column id="cnt" type="STRING" size="256" sumtext=""/>
- </ColumnInfo>
- </Dataset>
- </Objects>
- <Bind>
- <BindItem id="item0" compid="input2" propid="value" datasetid="ds_send_search" columnid="rgstdd"/>
- <BindItem id="item1" compid="input1" propid="value" datasetid="ds_send_search" columnid="todd"/>
- </Bind>
- <Script type="xscript4.0"><![CDATA[/***************************************************************************************
- * System Name :
- * Job Name : KUN2.0 Project
- * Creator :
- * Make Date :
- * Description :
- *---------------------------------------------------------------------------------------
- * Modify Date Modifier Modify Description
- *---------------------------------------------------------------------------------------
- * 2015-11-13 Live Converter TF->XP
- *---------------------------------------------------------------------------------------
- ****************************************************************************************/
- include "com_commonxp::comm_main.xjs";
- function SPARC02200_oninit(obj:Form, e:InitEventInfo)
- {
- frmf_initForm(obj);
- }
- function SPARC02200_onload(obj:Form, e:LoadEventInfo)
- {
- grdf_initGrid(grd_list);
-
- fInit();
- }
- function fInit()
- {
- var rgstdd = opener.frmf_getParameter("SPARC02200_param_rgstdd");
- var todd = opener.frmf_getParameter("SPARC02200_param_todd");
-
- ds_send_search.setColumn(0, "rgstdd",rgstdd);
- ds_send_search.setColumn(0, "todd",todd);
-
- if (!utlf_isNull(ds_send_search.getColumn(0, "rgstdd")))
- {
- fSearch();
- }
- }
- function fSearch()
- {
- var oParam = {};
- oParam.id = "TRARC02201";
- oParam.service = "healcarecoopapp.ReqMngt";
- oParam.method = "reqGetReqList";
- oParam.inds = "req=ds_send_search";
- oParam.outds = "ds_main_reqlist=reqlist";
- oParam.async = false;
- oParam.callback = "cf_TRARC02201";
- tranf_submit(oParam);
- }
- function cf_TRARC02201(sSvcId, nErrorCode, sErrorMsg)
- {
- if(nErrorCode < 0)
- {
- sysf_messageBox("조회를", "E009");
- return;
- }
- }
- function btn_search_onclick(obj:Button, e:ClickEventInfo)
- {
- fSearch();
- }
- ]]></Script>
- </Form>
- </FDL>
|