123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SPRSO20400" position="absolute 0 0 486 215" titletext="재고조회(출고내역)" oninit="SPRSO20400_oninit" onload="SPRSO20400_onload">
- <Layouts>
- <Layout>
- <Shape position="absolute 0 16 480 22" linetype="horizontal" id="line8" class="line_10"/>
- <Static text="출고내역" position="absolute 0 0 184 21" id="caption20" class="tit_2"/>
- <Button position="absolute 424 190 480 212" id="btn_close" class="btn4" text="닫기" onclick="btn_close_onclick"/>
- <Grid position="absolute 0 21 480 189" id="grd_good" visible="true" binddataset="ds_main_delivelist" autoenter="select" autofittype="col" cellsizingtype="col">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="83"/>
- <Column size="302"/>
- <Column size="76"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell text="출고유형"/>
- <Cell col="1" text="불출처"/>
- <Cell col="2" text="출고량"/>
- </Band>
- <Band id="body">
- <Cell text="bind:deliveflagnm"/>
- <Cell col="1" text="bind:delivedeptnm"/>
- <Cell col="2" displaytype="number" text="bind:deliveqty"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- </Layout>
- </Layouts>
- <Objects>
- <Dataset id="ds_main_delivelist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="deliveflagnm" type="STRING"/>
- <Column id="delivedeptnm" type="STRING"/>
- <Column id="deliveqty" type="STRING"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_popdata" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="instcd" type="STRING" size="256" sumtext="기관코드"/>
- <Column id="wareflag" type="STRING" size="256" sumtext="창고코드"/>
- <Column id="dd" type="STRING" size="256" sumtext="현재고일자"/>
- <Column id="goodcd" type="STRING" size="256" sumtext="물품코드 "/>
- <Column id="dutunitcd" type="STRING" size="256" sumtext="부서코드 "/>
- </ColumnInfo>
- </Dataset>
- </Objects>
- <Script type="xscript4.0"><![CDATA[/***************************************************************************************
- * System Name :
- * Job Name :
- * Creator :
- * Make Date : 2017-06-19
- * Description :
- *---------------------------------------------------------------------------------------
- * Modify Date Modifier Modify Description
- *---------------------------------------------------------------------------------------
- * 2017-06-19 Live Converter TF->XP
- *
- *---------------------------------------------------------------------------------------
- ****************************************************************************************/
- include "com_commonxp::comm_main.xjs";
- include "mis_miscommonxp::MIS.xjs";
- function SPRSO20400_oninit(obj:Form, e:InitEventInfo)
- {
- frmf_initForm(obj);
- }
- function SPRSO20400_onload(obj:Form, e:LoadEventInfo)
- {
- grdf_initGrid(grd_good);
-
- try
- {
- ds_popdata.copyData(arg_ds_popdata);
- }
- catch(e)
- {
- }
-
- var oParam = {};
- oParam.id = "TRRSO20403";
- oParam.service = "deliveapp.DeliveMngt";
- oParam.method = "reqGetDeliveDayList";
- oParam.inds = "req=ds_";
- oParam.outds = "ds_main_delivelist=delivelist";
- oParam.async = false;
- //oParam.callback = "cf_TRRSO20403";
- tranf_submit(oParam);
- }
- function btn_close_onclick(obj:Button, e:ClickEventInfo)
- {
- this.close();
- }
- ]]></Script>
- </Form>
- </FDL>
|