SPRSO20500_재고조회(입고내역).xfdl 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FDL version="1.5">
  3. <TypeDefinition url="..\..\..\default_typedef.xml"/>
  4. <Form id="SPRSO20500" position="absolute 0 0 485 217" titletext="재고조회(입고내역)" oninit="SPRSO20500_oninit" onload="SPRSO20500_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 22" 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_win" visible="true" binddataset="ds_main_winlist" autoenter="select" autofittype="col" cellsizingtype="col">
  11. <Formats>
  12. <Format id="default">
  13. <Columns>
  14. <Column size="104"/>
  15. <Column size="111"/>
  16. <Column size="128"/>
  17. <Column size="117"/>
  18. </Columns>
  19. <Rows>
  20. <Row size="24" band="head"/>
  21. <Row size="24"/>
  22. </Rows>
  23. <Band id="head">
  24. <Cell text="입고유형"/>
  25. <Cell col="1" text="입고량"/>
  26. <Cell col="2" text="입고금액"/>
  27. <Cell col="3" text="창고구분"/>
  28. </Band>
  29. <Band id="body">
  30. <Cell text="bind:winkindnm"/>
  31. <Cell col="1" text="bind:winqty" mask="(-)#,###"/>
  32. <Cell col="2" text="bind:winamt" mask="(-)#,###"/>
  33. <Cell col="3" text="bind:wareflagnm"/>
  34. </Band>
  35. </Format>
  36. </Formats>
  37. </Grid>
  38. </Layout>
  39. </Layouts>
  40. <Objects>
  41. <Dataset id="ds_main_winlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
  42. <ColumnInfo>
  43. <Column id="winkindnm" type="STRING"/>
  44. <Column id="winqty" type="STRING"/>
  45. <Column id="winamt" type="STRING"/>
  46. <Column id="wareflagnm" type="STRING"/>
  47. </ColumnInfo>
  48. </Dataset>
  49. <Dataset id="ds_popdata" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  50. </Objects>
  51. <Script type="xscript4.0"><![CDATA[/***************************************************************************************
  52. * System Name :
  53. * Job Name :
  54. * Creator :
  55. * Make Date : 2017-06-19
  56. * Description :
  57. *---------------------------------------------------------------------------------------
  58. * Modify Date Modifier Modify Description
  59. *---------------------------------------------------------------------------------------
  60. * 2017-06-19 Live Converter TF->XP
  61. *
  62. *---------------------------------------------------------------------------------------
  63. ****************************************************************************************/
  64. include "com_commonxp::comm_main.xjs";
  65. include "mis_miscommonxp::MIS.xjs";
  66. function SPRSO20500_oninit(obj:Form, e:InitEventInfo)
  67. {
  68. frmf_initForm(obj);
  69. }
  70. function SPRSO20500_onload(obj:Form, e:LoadEventInfo)
  71. {
  72. grdf_initGrid(grd_win);
  73. try
  74. {
  75. ds_popdata.copyData(arg_ds_popdata);
  76. }
  77. catch(e)
  78. {
  79. }
  80. var oParam = {};
  81. oParam.id = "TRRSO20501";
  82. oParam.service = "deliveapp.DeliveMngt";
  83. oParam.method = "reqGetWinDayList";
  84. oParam.inds = "req=ds_popdata";
  85. oParam.outds = "ds_main_winlist=winlist";
  86. oParam.async = false;
  87. oParam.callback = "cf_TRRSO20501";
  88. tranf_submit(oParam);
  89. }
  90. function btn_close_onclick(obj:Button, e:ClickEventInfo)
  91. {
  92. this.close();
  93. }
  94. ]]></Script>
  95. </Form>
  96. </FDL>