SPRSO20400_재고조회(출고내역).xfdl 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FDL version="1.5">
  3. <TypeDefinition url="..\..\..\default_typedef.xml"/>
  4. <Form id="SPRSO20400" position="absolute 0 0 486 215" titletext="재고조회(출고내역)" oninit="SPRSO20400_oninit" onload="SPRSO20400_onload">
  5. <Layouts>
  6. <Layout>
  7. <Shape position="absolute 0 16 480 22" linetype="horizontal" id="line8" class="line_10"/>
  8. <Static text="출고내역" position="absolute 0 0 184 21" id="caption20" class="tit_2"/>
  9. <Button position="absolute 424 190 480 212" id="btn_close" class="btn4" text="닫기" onclick="btn_close_onclick"/>
  10. <Grid position="absolute 0 21 480 189" id="grd_good" visible="true" binddataset="ds_main_delivelist" autoenter="select" autofittype="col" cellsizingtype="col">
  11. <Formats>
  12. <Format id="default">
  13. <Columns>
  14. <Column size="83"/>
  15. <Column size="302"/>
  16. <Column size="76"/>
  17. </Columns>
  18. <Rows>
  19. <Row size="24" band="head"/>
  20. <Row size="24"/>
  21. </Rows>
  22. <Band id="head">
  23. <Cell text="출고유형"/>
  24. <Cell col="1" text="불출처"/>
  25. <Cell col="2" text="출고량"/>
  26. </Band>
  27. <Band id="body">
  28. <Cell text="bind:deliveflagnm"/>
  29. <Cell col="1" text="bind:delivedeptnm"/>
  30. <Cell col="2" displaytype="number" text="bind:deliveqty"/>
  31. </Band>
  32. </Format>
  33. </Formats>
  34. </Grid>
  35. </Layout>
  36. </Layouts>
  37. <Objects>
  38. <Dataset id="ds_main_delivelist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
  39. <ColumnInfo>
  40. <Column id="deliveflagnm" type="STRING"/>
  41. <Column id="delivedeptnm" type="STRING"/>
  42. <Column id="deliveqty" type="STRING"/>
  43. </ColumnInfo>
  44. </Dataset>
  45. <Dataset id="ds_popdata" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  46. <ColumnInfo>
  47. <Column id="instcd" type="STRING" size="256" sumtext="기관코드"/>
  48. <Column id="wareflag" type="STRING" size="256" sumtext="창고코드"/>
  49. <Column id="dd" type="STRING" size="256" sumtext="현재고일자"/>
  50. <Column id="goodcd" type="STRING" size="256" sumtext="물품코드 "/>
  51. <Column id="dutunitcd" type="STRING" size="256" sumtext="부서코드 "/>
  52. </ColumnInfo>
  53. </Dataset>
  54. </Objects>
  55. <Script type="xscript4.0"><![CDATA[/***************************************************************************************
  56. * System Name :
  57. * Job Name :
  58. * Creator :
  59. * Make Date : 2017-06-19
  60. * Description :
  61. *---------------------------------------------------------------------------------------
  62. * Modify Date Modifier Modify Description
  63. *---------------------------------------------------------------------------------------
  64. * 2017-06-19 Live Converter TF->XP
  65. *
  66. *---------------------------------------------------------------------------------------
  67. ****************************************************************************************/
  68. include "com_commonxp::comm_main.xjs";
  69. include "mis_miscommonxp::MIS.xjs";
  70. function SPRSO20400_oninit(obj:Form, e:InitEventInfo)
  71. {
  72. frmf_initForm(obj);
  73. }
  74. function SPRSO20400_onload(obj:Form, e:LoadEventInfo)
  75. {
  76. grdf_initGrid(grd_good);
  77. try
  78. {
  79. ds_popdata.copyData(arg_ds_popdata);
  80. }
  81. catch(e)
  82. {
  83. }
  84. var oParam = {};
  85. oParam.id = "TRRSO20403";
  86. oParam.service = "deliveapp.DeliveMngt";
  87. oParam.method = "reqGetDeliveDayList";
  88. oParam.inds = "req=ds_";
  89. oParam.outds = "ds_main_delivelist=delivelist";
  90. oParam.async = false;
  91. //oParam.callback = "cf_TRRSO20403";
  92. tranf_submit(oParam);
  93. }
  94. function btn_close_onclick(obj:Button, e:ClickEventInfo)
  95. {
  96. this.close();
  97. }
  98. ]]></Script>
  99. </Form>
  100. </FDL>