123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SPRSO20500" position="absolute 0 0 485 217" titletext="재고조회(입고내역)" oninit="SPRSO20500_oninit" onload="SPRSO20500_onload">
- <Layouts>
- <Layout>
- <Shape position="absolute 0 16 480 22" linetype="horizontal" id="line8" class="line_10"/>
- <Static text="입고내역" position="absolute 0 0 184 22" 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_win" visible="true" binddataset="ds_main_winlist" autoenter="select" autofittype="col" cellsizingtype="col">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="104"/>
- <Column size="111"/>
- <Column size="128"/>
- <Column size="117"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell text="입고유형"/>
- <Cell col="1" text="입고량"/>
- <Cell col="2" text="입고금액"/>
- <Cell col="3" text="창고구분"/>
- </Band>
- <Band id="body">
- <Cell text="bind:winkindnm"/>
- <Cell col="1" text="bind:winqty" mask="(-)#,###"/>
- <Cell col="2" text="bind:winamt" mask="(-)#,###"/>
- <Cell col="3" text="bind:wareflagnm"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- </Layout>
- </Layouts>
- <Objects>
- <Dataset id="ds_main_winlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="winkindnm" type="STRING"/>
- <Column id="winqty" type="STRING"/>
- <Column id="winamt" type="STRING"/>
- <Column id="wareflagnm" type="STRING"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_popdata" 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 : 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 SPRSO20500_oninit(obj:Form, e:InitEventInfo)
- {
- frmf_initForm(obj);
- }
- function SPRSO20500_onload(obj:Form, e:LoadEventInfo)
- {
- grdf_initGrid(grd_win);
-
- try
- {
- ds_popdata.copyData(arg_ds_popdata);
- }
- catch(e)
- {
- }
-
- var oParam = {};
- oParam.id = "TRRSO20501";
- oParam.service = "deliveapp.DeliveMngt";
- oParam.method = "reqGetWinDayList";
- oParam.inds = "req=ds_popdata";
- oParam.outds = "ds_main_winlist=winlist";
- oParam.async = false;
- oParam.callback = "cf_TRRSO20501";
- tranf_submit(oParam);
- }
- function btn_close_onclick(obj:Button, e:ClickEventInfo)
- {
- this.close();
- }
- ]]></Script>
- </Form>
- </FDL>
|