SMMRI08001_열람목적조회.xfdl 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FDL version="1.5">
  3. <TypeDefinition url="..\..\..\default_typedef.xml"/>
  4. <Form id="SMMRI08000" position="absolute 0 0 829 837" titletext="열람목적 조회" oninit="SMMRI08001_oninit" onload="SMMRI08001_onload">
  5. <Layouts>
  6. <Layout>
  7. <Static text="열람목적 조회" position="absolute 0 0 118 25" id="caption6" class="tit_1"/>
  8. <Shape position="absolute 0 26 1195 32" linetype="horizontal" id="line17" class="line_1" visible="false"/>
  9. <Shape position="absolute 0 123 580 129" linetype="horizontal" id="line1" class="line_1"/>
  10. <Grid id="grd_data" class="datagrid2" taborder="1" binddataset="ds_grd_data" useinputpanel="false" cellsizingtype="col" oncellclick="grd_readapplist_oncellclick" position="absolute 10 33 800 824">
  11. <Formats>
  12. <Format id="default">
  13. <Columns>
  14. <Column size="69"/>
  15. <Column size="239"/>
  16. <Column size="117"/>
  17. <Column size="158"/>
  18. <Column size="83"/>
  19. <Column size="67"/>
  20. <Column size="0"/>
  21. </Columns>
  22. <Rows>
  23. <Row size="26" band="head"/>
  24. <Row size="24"/>
  25. </Rows>
  26. <Band id="head">
  27. <Cell text="코드"/>
  28. <Cell col="1" text="명칭"/>
  29. <Cell col="2" text="직종"/>
  30. <Cell col="3" text="부서"/>
  31. <Cell col="4" text="기간"/>
  32. <Cell col="5" text="사용여부"/>
  33. <Cell col="6" text="appid"/>
  34. </Band>
  35. <Band id="body">
  36. <Cell text="bind:rsncd"/>
  37. <Cell col="1" style="align:left;" text="bind:rsnnm"/>
  38. <Cell col="2" displaytype="normal" edittype="none" text="bind:jobkind"/>
  39. <Cell col="3" text="bind:deptnm" mask="expr:utlf_isNull(appdd) ? '' : '####-##-##'"/>
  40. <Cell col="4" text="bind:readterm"/>
  41. <Cell col="5" text="bind:useyn"/>
  42. <Cell col="6" displaytype="combo" edittype="none" style="align:center middle;" text="bind:appid" combodataset="ds_init_cmb_appid" combocodecol="userid" combodatacol="usernm"/>
  43. </Band>
  44. </Format>
  45. </Formats>
  46. </Grid>
  47. <Combo id="Combo00" taborder="2" text="Combo00" position="absolute 228 8 328 28" onitemchanged="Combo00_onitemchanged" codecolumn="codecolumn" datacolumn="datacolumn">
  48. <Dataset id="innerdataset">
  49. <ColumnInfo>
  50. <Column id="codecolumn" size="256"/>
  51. <Column id="datacolumn" size="256"/>
  52. </ColumnInfo>
  53. <Rows>
  54. <Row>
  55. <Col id="codecolumn">Y</Col>
  56. <Col id="datacolumn">Y</Col>
  57. </Row>
  58. <Row>
  59. <Col id="codecolumn">N</Col>
  60. <Col id="datacolumn">N</Col>
  61. </Row>
  62. </Rows>
  63. </Dataset>
  64. </Combo>
  65. <Static id="Static00" text="사용유무" position="absolute 160 12 220 24" onclick="Static00_onclick"/>
  66. <Button id="btn_search" taborder="3" text="조회" class="btn4" position="absolute 744 4 800 26" onclick="btn_search_onclick"/>
  67. </Layout>
  68. </Layouts>
  69. <Objects>
  70. <Dataset id="ds_grd_data" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  71. <ColumnInfo>
  72. <Column id="rsncd" type="STRING" size="256"/>
  73. <Column id="rsnnm" type="STRING" size="256"/>
  74. <Column id="jobkind" type="STRING" size="256"/>
  75. <Column id="deptnm" type="STRING" size="256"/>
  76. <Column id="readterm" type="STRING" size="256"/>
  77. <Column id="useyn" type="STRING" size="256"/>
  78. </ColumnInfo>
  79. </Dataset>
  80. <Dataset id="ds_send" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  81. <ColumnInfo>
  82. <Column id="useyn" type="STRING" size="256"/>
  83. </ColumnInfo>
  84. <Rows>
  85. <Row/>
  86. </Rows>
  87. </Dataset>
  88. </Objects>
  89. <Bind/>
  90. <Script type="xscript4.0"><![CDATA[/***************************************************************************************
  91. * System Name :
  92. * Job Name :
  93. * Creator :
  94. * Make Date : 2014-10-30
  95. * Description :
  96. *---------------------------------------------------------------------------------------
  97. * Modify Date Modifier Modify Description
  98. *---------------------------------------------------------------------------------------
  99. * 2014-10-30 Live Converter TF->XP
  100. *
  101. *---------------------------------------------------------------------------------------
  102. ****************************************************************************************/
  103. //=======================================================================================
  104. // Lib Include
  105. //---------------------------------------------------------------------------------------
  106. include "com_commonxp::comm_main.xjs"
  107. function SMMRI08001_oninit(obj:Form, e:InitEventInfo)
  108. {
  109. frmf_initForm(obj);
  110. }
  111. function SMMRI08001_onload(obj:Form, e:LoadEventInfo)
  112. {
  113. Combo00.value = "Y";
  114. fSearch();
  115. }
  116. function btn_search_onclick(obj:Button, e:ClickEventInfo)
  117. {
  118. fSearch();
  119. }
  120. function fSearch() {
  121. ds_send.setColumn(0, "useyn",Combo00.value);
  122. var oParam = {};
  123. oParam.id = "S_SMMRI08001";
  124. oParam.service = "recmngtapp.IntegrityRec";
  125. oParam.method = "reqGetArsnList";
  126. oParam.inds = "req=ds_send";
  127. oParam.outds = "ds_grd_data=arsnlist";
  128. oParam.async = false;
  129. oParam.callback = "cf_S_SMMRI08001";
  130. tranf_submit(oParam);
  131. }
  132. function cf_S_SMMRI08001(sSvcId, nErrorCode, sErrorMsg) {
  133. if(nErrorCode < 0) return;
  134. }
  135. ]]></Script>
  136. </Form>
  137. </FDL>