SMRPE01100_원서접수대장출력.xrw 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416
  1. <?xml version="1.0" encoding="EUC-KR"?>
  2. <?xml-stylesheet type="text/css" href="../../../com/commonweb/css/common.css" ?>
  3. <xhtml:html xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.w3.org/2002/01/xforms" xmlns:ev="http://www.w3.org/2001/xml-events">
  4. <xhtml:head>
  5. <xhtml:title>SMRPE01100_원서접수대장출력</xhtml:title>
  6. <model id="model1">
  7. <instance id="instance1">
  8. <root xmlns="">
  9. <main>
  10. <apntinfo>
  11. <apntinfolist/>
  12. </apntinfo>
  13. <apntvoint>
  14. <apntvointlist/>
  15. <licnslist/>
  16. </apntvoint>
  17. <entcosupp>
  18. <entcosupplist/>
  19. </entcosupp>
  20. </main>
  21. <send>
  22. <apntinfo>
  23. <apntyy/>
  24. <supinfqurtyyflag/>
  25. <instcd/>
  26. <prfshipflag/>
  27. <deptcd/>
  28. <deptnm/>
  29. <jobkindcd/>
  30. <jobkindnm/>
  31. <recufildcd/>
  32. <recufildnm/>
  33. <apntfromdd/>
  34. <apnttodd/>
  35. </apntinfo>
  36. <apntvoint>
  37. <apntinfono/>
  38. </apntvoint>
  39. <save>
  40. <info>
  41. <prtlist/>
  42. </info>
  43. <emplist/>
  44. </save>
  45. <entco>
  46. <examno/>
  47. <apntinfono/>
  48. </entco>
  49. </send>
  50. <temp>
  51. <examno>-</examno>
  52. </temp>
  53. </root>
  54. </instance>
  55. <script type="javascript" ev:event="xforms-ready">
  56. <![CDATA[
  57. fInitialize() ;
  58. ]]>
  59. </script>
  60. <script type="javascript" src="../../../com/commonweb/js/common.js"/>
  61. <script type="javascript" src="../../../com/commonweb/js/tfHelper.js"/>
  62. <script type="javascript" src="../../../com/commonweb/js/dateHelper.js"/>
  63. <script type="javascript" src="../../../mis/miscommonweb/js/MIS.js"/>
  64. <script type="javascript" src="../../../mis/humtrafactmngtweb/js/RPB001.js"/>
  65. <submission id="TRRPE00301" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/apntinfo" resultref="/root/main/apntinfo"/>
  66. <submission id="TRRPE00302" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/apntvoint/apntinfono" resultref="/root/main/apntvoint"/>
  67. <submission id="TRRPE01103" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/save/info/prtlist" resultref="/root/send/save"/>
  68. <submission id="TRRPE01104" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/entco" resultref="/root/main/entcosupp"/>
  69. </model>
  70. <script type="javascript">
  71. <![CDATA[
  72. function fInitialize()
  73. {
  74. grd_apntinfolist.rowHeight(0) = "50";
  75. //그리드 초기화 작업
  76. model.removenode("/root/main");
  77. model.makeNode("/root/main/apntinfo");
  78. model.makeNode("/root/main/apntvoint");
  79. misfComboInstCdListMulti("cmb_instcd",getCurrentDate(),"","Y");
  80. misfComboComCdListMulti("R0237,R0058","cmb_supinfqurtyyflag,cmb_prfshipflag");
  81. addGridComboItem("cmb_supinfqurtyyflag", "- 전체 -", "","above"); // 상하반기구분 콤보박스에 '전체'를 추가
  82. addGridComboItem("cmb_instcd", "- 전체 -", "","above"); // 기관 콤보박스에 '전체'를 추가
  83. addGridComboItem("cmb_prfshipflag", "- 전체 -", "","above"); // 교직구분 콤보박스에 '전체'를 추가
  84. var nowyy = new Date();
  85. ipt_apntyy.value = nowyy.getYear(); // 년도설정
  86. grd_apntvointlist.fixedcellcheckbox(2,1)=true; // 그리드에 있는 전체선택 체크박스
  87. model.refresh();
  88. //fSetDate(); // 기간설정
  89. }
  90. function fSetDate()
  91. {
  92. var nowyy = new Date();
  93. var cur_yy = nowyy.getYear();
  94. model.setValue(ipt_apntfromdd.attribute("ref"), cur_yy+'0101');
  95. model.setValue(ipt_apnttodd.attribute("ref"), cur_yy+'1231');
  96. model.refresh();
  97. }
  98. ]]>
  99. </script>
  100. </xhtml:head>
  101. <xhtml:body style="text-align:center; margin-left:8; margin-right:8; ">
  102. <group id="group1" style="left:0px; top:0px; width:1195px; height:13px; ">
  103. <caption id="caption6" class="tit_1" style="left:0px; top:0px; width:800px; height:14px; ">원서접수대장출력</caption>
  104. </group>
  105. <group id="group2" scroll="auto" style="left:0px; top:38px; width:1195px; height:744px; ">
  106. <shape id="roundrect1" appearance="roundrect" ellipsewidth="10" ellipseheight="10" style="left:0px; top:10px; width:1195px; height:61px; background-color:#fffbf2; border-color:#ffd799; "/>
  107. <caption id="caption2" class="search_name" style="left:567px; top:19px; width:85px; height:17px; ">기 관 :</caption>
  108. <select1 id="cmb_instcd" ref="/root/send/apntinfo/instcd" class="combo_search" appearance="minimal" style="left:655px; top:19px; width:155px; height:19px; ">
  109. <choices>
  110. <itemset>
  111. <label/>
  112. <value/>
  113. </itemset>
  114. </choices>
  115. </select1>
  116. <caption id="caption1" class="search_name" style="left:817px; top:44px; width:85px; height:17px; ">기 간 :</caption>
  117. <line id="line207" class="line_1" style="x1:0px; y1:315px; x2:1195px; y2:315px; "/>
  118. <caption id="caption9" class="search_name" style="left:308px; top:19px; width:112px; height:17px; ">상하반기구분:</caption>
  119. <select1 id="cmb_supinfqurtyyflag" ref="/root/send/apntinfo/supinfqurtyyflag" class="combo_search" appearance="minimal" style="left:420px; top:19px; width:100px; height:19px; ">
  120. <choices>
  121. <itemset>
  122. <label/>
  123. <value/>
  124. </itemset>
  125. </choices>
  126. </select1>
  127. <caption id="caption3" class="search_name" style="left:817px; top:19px; width:86px; height:17px; ">교직구분 :</caption>
  128. <select1 id="cmb_prfshipflag" ref="/root/send/apntinfo/prfshipflag" class="combo_search" appearance="minimal" style="left:905px; top:19px; width:90px; height:19px; ">
  129. <choices>
  130. <itemset>
  131. <label/>
  132. <value/>
  133. </itemset>
  134. </choices>
  135. </select1>
  136. <input id="ipt_apntfromdd" ref="/root/send/apntinfo/apntfromdd" class="input_s_essential" inputtype="date" style="left:905px; top:44px; width:90px; height:19px; "/>
  137. <caption id="caption8" class="search_n_b" style="left:997px; top:44px; width:22px; height:17px; font-weight:bolder; ">~</caption>
  138. <input id="ipt_apnttodd" ref="/root/send/apntinfo/apnttodd" class="input_s_essential" inputtype="date" style="left:1011px; top:44px; width:90px; height:19px; "/>
  139. <datagrid id="grd_apntvointlist" nodeset="/root/main/apntvoint/apntvointlist" autoresize="true" caption="전체선택^합격여부^합격여부^합격여부^합격여부^수험번호^성명^성별^나이^주민등록번호^대학^대학^대학^대학^대학^대학^대학^대학교^대학교^대학교^대학교^대학교^대학교^대학교^대학원^대학원^대학원^대학원^대학원^대학원^경력&#xA;구분^경력1^경력1^경력1^경력1^경력1^경력1^경력2^경력2^경력2^경력2^경력2^경력2^경력3^경력3^경력3^경력3^경력3^경력3^자격면허^외국어^외국어^외국어^외국어^외국어^외국어^외국어^외국어^외국어^외국어^외국어^외국어^외국어^외국어^외국어^외국어^외국어^외국어^외국어^외국어^종교^결혼여부^보훈대상^이메일^주소^핸드폰^병역여부^과거&#xA;지원&#xA;횟수^경쟁율^비밀번호|전체선택^1차^2차^3차^4차^수험번호^성명^성별^나이^주민등록번호^대학명^학과(전공)^졸업년도^수업년한^학점^소재지^이수구분^대학교명^학과(전공)^졸업년도^수업년한^학점^소재지^이수구분^대학원명^학과(전공)^졸업년도^학점^소재지^이수구분^경력&#xA;구분^근무처^근무시작일^근무종료일^근무기간^부서명^주요업무^근무처^근무시작일^근무종료일^근무기간^부서명^주요업무^근무처^근무시작일^근무종료일^근무기간^부서명^주요업무^자격면허^영어^영어^영어^영어^영어^영어^영어^일본어^일본어^중국어^독일어^불란서어^서반아어^러시아어^에스페란토어^스페인어^이태리어^아랍어^포루투칼어^기타^종교^결혼여부^보훈대상^이메일^주소^핸드폰^병역여부^과거&#xA;지원&#xA;횟수^경쟁율^비밀번호|^1차^2차^3차^4차^수험번호^성명^성별^나이^주민등록번호^대학명^학과(전공)^졸업년도^수업년한^학점^소재지^이수구분^대학교명^학과(전공)^졸업년도^수업년한^학점^소재지^이수구분^대학원명^학과(전공)^졸업년도^학점^소재지^이수구분^경력&#xA;구분^근무처^근무시작일^근무종료일^근무기간^부서명^주요업무^근무처^근무시작일^근무종료일^근무기간^부서명^주요업무^근무처^근무시작일^근무종료일^근무기간^부서명^주요업무^자격면허^TOEIC^TOEFL^TEPS^TOEFL_PBT^TOEFL_CBT^TOEFL_IBT^기타^JPT^기타^중국어^독일어^불란서어^서반아어^러시아어^에스페란토어^스페인어^이태리어^아랍어^포루투칼어^기타^종교^결혼여부^보훈대상^이메일^주소^핸드폰^병역여부^과거&#xA;지원&#xA;횟수^경쟁율^비밀번호" colsep="^" colwidth="35, 40, 40, 40, 40, 60, 50, 30, 30, 100, 100, 100, 65, 35, 35, 70, 60, 100, 100, 65, 35, 35, 70, 60, 100, 100, 65, 35, 70, 60, 47, 80, 80, 80, 80, 65, 65, 80, 80, 80, 80, 65, 65, 80, 80, 80, 80, 65, 65, 300, 60, 60, 60, 80, 80, 80, 60, 60, 60, 60, 60, 65, 65, 65, 90, 65, 65, 60, 70, 50, 80, 40, 35, 200, 300, 110, 60, 40, 60, 80" dataheight="25" explorerbar="sortshow" frozencols="10" mergecellsfixedrows="bycolrec" rowheader="seq" rowsep="|" style="left:0px; top:320px; width:1195px; height:410px; ">
  140. <col checkvalue="Y,N" ref="chk" type="checkbox" style="text-align:right; "/>
  141. <col checkvalue="Y,N" disabled="true" ref="passyn_1" type="checkbox" style="text-align:center; "/>
  142. <col checkvalue="Y,N" disabled="true" ref="passyn_2" type="checkbox" style="text-align:center; "/>
  143. <col checkvalue="Y,N" disabled="true" ref="passyn_3" type="checkbox" style="text-align:center; "/>
  144. <col checkvalue="Y,N" disabled="true" ref="passyn_4" type="checkbox" style="text-align:center; "/>
  145. <col ref="examno" style="text-align:center; "/>
  146. <col ref="name" style="text-align:center; "/>
  147. <col ref="gndr" style="text-align:center; "/>
  148. <col ref="age" style="text-align:center; "/>
  149. <col ref="rregno" format="999999-9999999" style="text-align:center; "/>
  150. <col ref="colgnm" style="text-align:center; "/>
  151. <col ref="colgfrmrmertnm" style="text-align:center; "/>
  152. <col ref="colggradutndd" format="yyyy" style="text-align:center; "/>
  153. <col ref="colgyearpd" style="text-align:center; "/>
  154. <col ref="colgavgscor" style="text-align:center; "/>
  155. <col ref="colgloctn" style="text-align:center; "/>
  156. <col ref="colgcmpltcursstdy" style="text-align:center; "/>
  157. <col ref="univnm" style="text-align:center; "/>
  158. <col ref="univfrmrmertnm" style="text-align:center; "/>
  159. <col ref="univgradutndd" format="yyyy" style="text-align:center; "/>
  160. <col ref="univyearpd" style="text-align:center; "/>
  161. <col ref="univavgscor" style="text-align:center; "/>
  162. <col ref="univloctn" style="text-align:center; "/>
  163. <col ref="univcmpltcursstdy" style="text-align:center; "/>
  164. <col ref="grdtschnm" style="text-align:center; "/>
  165. <col ref="grdtfrmrmertnm" style="text-align:center; "/>
  166. <col ref="grdtgradutndd" format="yyyy" style="text-align:center; "/>
  167. <col ref="grdtavgscor" style="text-align:right; "/>
  168. <col ref="grdtloctn" style="text-align:left; "/>
  169. <col ref="grdtcmpltcursstdy" style="text-align:left; "/>
  170. <col ref="careryn" style="text-align:center; "/>
  171. <col ref="dutplce1" style="text-align:center; "/>
  172. <col ref="duttermfromdd1" format="yyyy-mm-dd" style="text-align:center; "/>
  173. <col ref="duttermtodd1" format="yyyy-mm-dd" style="text-align:center; "/>
  174. <col ref="duttermdd1" format="yy-mm-dd" style="text-align:center; "/>
  175. <col ref="deptnm1" style="text-align:center; "/>
  176. <col ref="mainbiz1" style="text-align:center; "/>
  177. <col ref="dutplce2" style="text-align:center; "/>
  178. <col ref="duttermfromdd2" format="yyyy-mm-dd" style="text-align:center; "/>
  179. <col ref="duttermtodd2" format="yyyy-mm-dd" style="text-align:center; "/>
  180. <col ref="duttermdd2" format="yy-mm-dd" style="text-align:center; "/>
  181. <col ref="deptnm2" style="text-align:center; "/>
  182. <col ref="mainbiz2" style="text-align:center; "/>
  183. <col ref="dutplce3" style="text-align:center; "/>
  184. <col ref="duttermfromdd3" format="yyyy-mm-dd" style="text-align:center; "/>
  185. <col ref="duttermtodd3" format="yyyy-mm-dd" style="text-align:center; "/>
  186. <col ref="duttermdd3" format="yy-mm-dd" style="text-align:center; "/>
  187. <col ref="deptnm3" style="text-align:center; "/>
  188. <col ref="mainbiz3" style="text-align:center; "/>
  189. <col ref="licnsyn" style="text-align:left; "/>
  190. <col ref="toeic" style="text-align:right; "/>
  191. <col ref="toefl" style="text-align:right; "/>
  192. <col ref="teps" style="text-align:right; "/>
  193. <col ref="toefl_pbt" style="text-align:right; "/>
  194. <col ref="toefl_cbt" style="text-align:right; "/>
  195. <col ref="toefl_ibt" style="text-align:right; "/>
  196. <col ref="english" style="text-align:center; "/>
  197. <col ref="jpt" style="text-align:right; "/>
  198. <col ref="japanese" style="text-align:center; "/>
  199. <col ref="chinese" style="text-align:right; "/>
  200. <col ref="german" style="text-align:right; "/>
  201. <col ref="french" style="text-align:right; "/>
  202. <col ref="espana" style="text-align:right; "/>
  203. <col ref="russian" style="text-align:right; "/>
  204. <col ref="esperanto" style="text-align:right; "/>
  205. <col ref="spanish" style="text-align:right; "/>
  206. <col ref="Italian" style="text-align:right; "/>
  207. <col ref="arabic" style="text-align:right; "/>
  208. <col ref="portuguese" style="text-align:right; "/>
  209. <col ref="etc" style="text-align:right; "/>
  210. <col ref="religncd" style="text-align:center; "/>
  211. <col ref="marryyn" style="text-align:center; "/>
  212. <col checkvalue="Y,N" disabled="true" ref="bhtrgtpsnyn" type="checkbox"/>
  213. <col ref="email" style="text-align:left; "/>
  214. <col ref="resdnrgstareaaddr" style="text-align:left; "/>
  215. <col ref="supppsnmpphonno" style="text-align:left; "/>
  216. <col ref="mltr" style="text-align:left; "/>
  217. <col ref="pastsupptims" style="text-align:right; "/>
  218. <col ref="competrate" style="text-align:right; "/>
  219. <col ref="apntinfono" visibility="hidden" style="text-align:center; "/>
  220. </datagrid>
  221. <button id="btn_search" class="btn1_letter2" navindex="8" style="left:1125px; top:31px; width:56px; height:22px; text-align:left; ">
  222. <caption>조회</caption>
  223. <script type="javascript" ev:event="DOMActivate">
  224. <![CDATA[
  225. if(ipt_apntyy.value == "") {
  226. messageBox("채용년도는","I003");
  227. model.setFocus("ipt_apntyy");
  228. }
  229. else {
  230. submit("TRRPE00301");
  231. }
  232. ]]>
  233. </script>
  234. <script type="javascript" ev:event="onaftersort">
  235. <![CDATA[
  236. grd_apntvointlist.gridToInstance();
  237. ]]>
  238. </script>
  239. </button>
  240. <line id="line3" class="line_4" style="x1:1110px; y1:13px; x2:1110px; y2:68px; border-color:#ffe4bb; border-left-style:solid; "/>
  241. <caption id="caption5" class="search_name" style="left:8px; top:19px; width:86px; height:17px; ">채용년도 :</caption>
  242. <input id="ipt_apntyy" ref="/root/send/apntinfo/apntyy" class="input_s_essential" style="left:95px; top:19px; width:70; height:19px; text-align:center; "/>
  243. <caption id="caption7" class="search_name" style="left:8px; top:44px; width:115px; height:17px; ">부 서 :</caption>
  244. <input id="ipt_deptcd" ref="/root/send/apntinfo/deptcd" visibility="visible" style="left:95px; top:44px; width:70px; height:19px; ">
  245. <script type="javascript" ev:event="xforms-value-changed">
  246. <![CDATA[
  247. if (model.getValue("/root/send/apntinfo/deptcd") == ""){
  248. model.setValue("/root/send/apntinfo/deptnm", "");
  249. }
  250. model.refresh();
  251. ]]>
  252. </script>
  253. </input>
  254. <button id="btn_hopedeptcdhelp" class="icon_search" style="left:170px; top:44px; width:16px; height:16px; ">
  255. <caption/>
  256. <script type="javascript" ev:event="DOMActivate">
  257. <![CDATA[
  258. var recv_list = "deptcd,deptnm";
  259. rpbfOpenDeptCdHelp(ipt_deptcd,recv_list);
  260. model.refresh();
  261. ]]>
  262. </script>
  263. </button>
  264. <input id="deptnm" ref="/root/send/apntinfo/deptnm" class="output_search" appearance="input" style="left:190px; top:44px; width:110px; height:19px; "/>
  265. <caption id="caption4" class="search_name" style="left:308px; top:44px; width:110px; height:17px; ">직 종 :</caption>
  266. <input id="ipt_jobkindcd" ref="/root/send/apntinfo/jobkindcd" style="left:420px; top:44px; width:40px; height:19px; ">
  267. <script type="javascript" ev:event="xforms-value-changed">
  268. <![CDATA[
  269. if (model.getValue("/root/send/apntinfo/jobkindcd") == ""){
  270. model.setValue("/root/send/apntinfo/jobkindnm", "");
  271. }
  272. model.refresh();
  273. ]]>
  274. </script>
  275. </input>
  276. <input id="ipt_jobkindnm" ref="/root/send/apntinfo/jobkindnm" class="output_search" appearance="input" style="left:480px; top:44px; width:79px; height:19px; "/>
  277. <datagrid id="grd_apntinfolist" nodeset="/root/main/apntinfo/apntinfolist" autoresize="true" caption="상하반기&#xA;구분^기관^교직구분^부서^직종^모집분야^인원^제목^채용시작일^채용종료일^차수^간호직&#xA;추가사항^완료^채용번호^채용년도" colsep="^" colwidth="77, 124, 89, 104, 95, 105, 38, 217, 86, 87, 38, 62, 39, 73, 55" dataheight="25" explorerbar="sortshow" mergecellsfixedrows="never" rowheader="select" rowsep="|" style="left:0px; top:95px; width:1195px; height:195px; ">
  278. <col ref="supinfqurtyy" style="text-align:center; "/>
  279. <col ref="instnm" style="text-align:left; "/>
  280. <col ref="prfshipnm" style="text-align:left; "/>
  281. <col ref="deptnm" style="text-align:left; "/>
  282. <col ref="jobkindnm" style="text-align:left; "/>
  283. <col ref="recufildnm" style="text-align:left; "/>
  284. <col ref="recupsnno" style="text-align:right; "/>
  285. <col ref="titl" style="text-align:left; "/>
  286. <col ref="apntfromdd" format="yyyy/mm/dd" style="text-align:center; "/>
  287. <col ref="apnttodd" format="yyyy/mm/dd" style="text-align:center; "/>
  288. <col ref="scrngdg" style="text-align:right; "/>
  289. <col checkvalue="Y,N" ref="nursdept" type="checkbox"/>
  290. <col checkvalue="Y,N" ref="endyn" type="checkbox" visibility="hidden"/>
  291. <col ref="apntinfono" visibility="hidden"/>
  292. <col ref="apntyy" visibility="hidden"/>
  293. <script type="javascript" ev:event="onclick">
  294. <![CDATA[
  295. model.removeNodeset("/root/main/apntvoint");
  296. model.makeNode("/root/main/apntvoint/apntvointlist");
  297. model.removeNodeset("/root/main/apntvoint/licnslist");
  298. model.setValue("/root/send/apntvoint/apntinfono", model.getValue("/root/main/apntinfo/apntinfolist[" + (grd_apntinfolist.row-grd_apntinfolist.fixedRows+1) + "]/apntinfono"));
  299. model.refresh();
  300. submit("TRRPE00302");
  301. // 자격면허를 넣어주는 부분.
  302. var licnsnm = "";
  303. for (var idx = grd_apntvointlist.fixedRows, licns = grd_hidden.fixedRows ; licns <= grd_hidden.rows; licns++ ) {
  304. if( grd_hidden.valueMatrix(licns,grd_hidden.colRef("examno")) == grd_apntvointlist.valueMatrix(idx,grd_apntvointlist.colRef("examno")) ) {
  305. if( licnsnm == "" ) { // liensnm이 빈값이면 현재row의 licnsyn을 그냥 넣는다.
  306. licnsnm = grd_hidden.valueMatrix(licns,grd_hidden.colRef("licnsyn"));
  307. }
  308. else {
  309. licnsnm = licnsnm + ", " + grd_hidden.valueMatrix(licns,grd_hidden.colRef("licnsyn"));
  310. }
  311. }
  312. else if (grd_hidden.valueMatrix(licns,grd_hidden.colRef("examno")) != grd_apntvointlist.valueMatrix(idx,grd_apntvointlist.colRef("examno")) ) {
  313. // 두 examno가 다르면 grd_apntvointlist 의 idx에 넣어준다.
  314. if( licnsnm == "" ) {
  315. idx++;
  316. licns--;
  317. }
  318. else {
  319. grd_apntvointlist.valueMatrix(idx,grd_apntvointlist.colRef("licnsyn")) = licnsnm;
  320. licnsnm = "";
  321. idx++;
  322. licns--;
  323. }
  324. }
  325. }
  326. model.refresh();
  327. ]]>
  328. </script>
  329. <script type="javascript" ev:event="onaftersort">
  330. <![CDATA[
  331. grd_apntinfolist.gridToInstance();
  332. ]]>
  333. </script>
  334. </datagrid>
  335. <caption id="caption278" class="tit_2" style="left:5px; top:77px; width:157px; height:13px; ">채용(기본)정보</caption>
  336. <line id="line1" class="line_1" style="x1:0px; y1:90px; x2:1195px; y2:90px; "/>
  337. <button id="btn_excel" class="btn6_letter2" style="left:5px; top:293px; width:56px; height:22px; ">
  338. <caption>출력</caption>
  339. <script type="javascript" ev:event="DOMActivate">
  340. <![CDATA[
  341. model.setValue("/root/send/entco/apntinfono",grd_apntinfolist.valueMatrix(grd_apntinfolist.row,grd_apntinfolist.colRef("apntinfono")));
  342. var tempexamno = '';
  343. for(idx = grd_apntvointlist.fixedRows; idx <= grd_apntvointlist.row; idx++) {
  344. if( grd_apntvointlist.valueMatrix(idx, grd_apntvointlist.colRef("chk")) == 'Y' ) {
  345. if( tempexamno != '' ) {
  346. tempexamno = tempexamno+ "','"+ grd_apntvointlist.valueMatrix(idx, grd_apntvointlist.colRef("examno"));
  347. }
  348. else {
  349. tempexamno = grd_apntvointlist.valueMatrix(idx, grd_apntvointlist.colRef("examno"));
  350. }
  351. }
  352. }
  353. model.setValue("/root/send/entco/examno",tempexamno);
  354. model.makeNode("/root/main/entcosupp/entcosupplist");
  355. submit("TRRPE01104");
  356. exeReportPreview("RPRPE01100", "XMLSTR","/root/main/entcosupp");
  357. ]]>
  358. </script>
  359. </button>
  360. <caption id="caption11" class="search_name" style="left:567px; top:44px; width:86px; height:17px; ">모집분야 :</caption>
  361. <input id="ipt_recufildnm" ref="/root/send/apntinfo/recufildnm" class="output_search" appearance="input" style="left:715px; top:44px; width:95px; height:19px; "/>
  362. <button id="button1" class="icon_search" style="left:697px; top:44px; width:16px; height:16px; ">
  363. <caption/>
  364. <script type="javascript" ev:event="DOMActivate">
  365. <![CDATA[
  366. var recv_list = "recufildcd,recufildnm";
  367. rpbfOpenComCdHelp(ipt_recufildnm,"R0061", recv_list);
  368. model.refresh();
  369. ]]>
  370. </script>
  371. </button>
  372. <input id="ipt_recufildcd" ref="/root/send/apntinfo/recufildcd" visibility="visible" style="left:655px; top:44px; width:40px; height:19px; ">
  373. <script type="javascript" ev:event="xforms-value-changed">
  374. <![CDATA[
  375. if (model.getValue("/root/send/apntinfo/recufildcd") == ""){
  376. model.setValue("/root/send/apntinfo/recufildnm", "");
  377. }
  378. model.refresh();
  379. ]]>
  380. </script>
  381. </input>
  382. <button id="btn_jobkindhelp" class="icon_search" style="left:462px; top:44px; width:16px; height:16px; ">
  383. <caption/>
  384. <script type="javascript" ev:event="DOMActivate">
  385. <![CDATA[
  386. var recv_list = "jobkindcd,jobkindnm";
  387. rpbfOpenComCdHelp(ipt_jobkindcd,"R0061", recv_list);
  388. model.refresh();
  389. ]]>
  390. </script>
  391. </button>
  392. <datagrid id="grd_hidden" nodeset="/root/main/apntvoint/licnslist" visibility="hidden" autoresize="true" caption="수험번호^자격면허" colsep="^" colwidth="60, 300" dataheight="25" explorerbar="sortshow" frozencols="10" mergecellsfixedrows="bycolrec" rowheader="seq" rowsep="|" style="left:715px; top:540px; width:430px; height:190px; ">
  393. <col ref="examno" style="text-align:center; "/>
  394. <col ref="licnsyn" style="text-align:center; "/>
  395. </datagrid>
  396. </group>
  397. <group id="grp_btn" scroll="auto" style="left:0px; top:12px; width:1195px; height:27px; ">
  398. <line id="line2" class="line_6" style="x1:0px; y1:25; x2:1195px; y2:25; "/>
  399. </group>
  400. </xhtml:body>
  401. </xhtml:html>