SPRBC00600_예산편성계정추가HELP.xrw 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556
  1. <?xml version="1.0" encoding="EUC-KR"?>
  2. <?xml-stylesheet href="../../../com/commonweb/css/common.css" type="text/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>예산 편성 과목 추가 HELP</xhtml:title>
  6. <model id="model1">
  7. <instance id="instance1">
  8. <root xmlns="">
  9. <main>
  10. <orgbgdtlist>
  11. <orgbugtdetaillist/>
  12. </orgbgdtlist>
  13. <exist>
  14. <rbemorgn/>
  15. <rbehupdt/>
  16. <rbphexec/>
  17. <radhunsl/>
  18. <radhapsl/>
  19. </exist>
  20. </main>
  21. <send>
  22. <sendlist>
  23. <orgbugtdetaillist>
  24. </orgbugtdetaillist>
  25. <param>
  26. <instcd/>
  27. <assgym/>
  28. <appflag>orgapp</appflag>
  29. <bugtflag/>
  30. <supacntcd3/>
  31. <supacntnm3/>
  32. <supacntcd4/>
  33. <supacntnm4/>
  34. <deptcd/>
  35. <deptnm/>
  36. <acntcd/>
  37. <acntnm/>
  38. <projectid/>
  39. <projectnm/>
  40. <date/>
  41. <bugtcd>01</bugtcd>
  42. <acntyy/>
  43. </param>
  44. </sendlist>
  45. </send>
  46. <init>
  47. <assgymset/>
  48. </init>
  49. <temp>
  50. </temp>
  51. <target>
  52. <acntyy/>
  53. </target>
  54. </root>
  55. </instance>
  56. <script type="javascript" ev:event="xforms-ready">
  57. <![CDATA[
  58. rdo_bugtflag.select(0);
  59. finit();
  60. ]]>
  61. </script>
  62. <script type="javascript">
  63. <![CDATA[
  64. function finit()
  65. {
  66. model.setValue("/root/send/sendlist/param/instcd", getUserInfo("dutplceinstcd"));
  67. fSetAssgym();
  68. //cmb_assgym.disabled = true;
  69. model.setValue("/root/send/sendlist/param/acntyy", model.getValue("/root/target/acntyy"));
  70. grd_orgbugtdetaillist.focusColor = "#ccffff";
  71. grd_orgbugtdetaillist.selectionmode = "free";
  72. model.removenode("/root/main/orgbgdtlist/orgbugtdetaillist");
  73. if(getUserInfo("dutplceinstcd") != '103')
  74. {
  75. ipt_projectid.disabled = true;
  76. btn_projectid.disabled = true;
  77. ipt_projectnm.disabled = true;
  78. }
  79. model.refresh();
  80. }
  81. //==============================================================
  82. // 배정년월 setting
  83. //==============================================================
  84. function fSetAssgym()
  85. {
  86. model.makeNode("/root/init/assgymset[1]/label");
  87. model.setValue("/root/init/assgymset[1]/label", "년중");
  88. model.makeNode("/root/init/assgymset[1]/value");
  89. model.setValue("/root/init/assgymset[1]/value", "-");
  90. for(i = 2 ; i <= 13 ; i++)
  91. {
  92. model.makeNode("/root/init/assgymset[" + i + "]/label");
  93. model.setValue("/root/init/assgymset[" + i + "]/label", i -1+ "월" );
  94. model.makeNode("/root/init/assgymset[" + i + "]/value");
  95. model.setValue("/root/init/assgymset[" + i + "]/value", i -1 );
  96. }
  97. cmb_assgym.refresh();
  98. cmb_assgym.select(0);
  99. }
  100. //==============================================================
  101. // 읽기전용 컬럼 세팅
  102. //==============================================================
  103. function fSetReadOnly()
  104. {
  105. for( i = grd_orgbugtdetaillist.fixedRows ; i <= grd_orgbugtdetaillist.rows ; i++ )
  106. {
  107. grd_orgbugtdetaillist.isReadOnly(i, grd_orgbugtdetaillist.colRef("appamt")) = true;
  108. }
  109. }
  110. //==============================================================
  111. // 저장 체크
  112. //==============================================================
  113. function fSaveCheck()
  114. {
  115. if(model.getValue("/root/send/sendlist/param/deptcd") == "") { messageBox("부서코드",""); return false; }
  116. if(model.getValue("/root/send/sendlist/param/acntcd") == "") { messageBox("계정코드",""); return false; }
  117. if(grd_orgbugtdetaillist.rows == grd_orgbugtdetaillist.fixedRows) { messageBox("산출내역",""); return false; }
  118. else
  119. {
  120. for(var i = grd_orgbugtdetaillist.fixedRows ; i < grd_orgbugtdetaillist.rows ; i++)
  121. {
  122. if(grd_orgbugtdetaillist.valueMatrix(i, grd_orgbugtdetaillist.colRef("appresn")) == "") { messageBox("적요",""); return false; }
  123. }
  124. }
  125. return true;
  126. }
  127. //==============================================================
  128. // 신규 입력
  129. //==============================================================
  130. function fNewInsertion()
  131. {
  132. model.removenode("/root/send/sendlist/param/deptcd");
  133. model.removenode("/root/send/sendlist/param/deptnm");
  134. model.removenode("/root/send/sendlist/param/acntcd");
  135. model.removenode("/root/send/sendlist/param/acntnm");
  136. model.removenode("/root/send/sendlist/param/projectid");
  137. model.removenode("/root/send/sendlist/param/projectnm");
  138. model.removenode("/root/send/sendlist/orgbugtdetaillist");
  139. model.makeNode("/root/send/sendlist/param/deptcd");
  140. model.makeNode("/root/send/sendlist/param/deptnm");
  141. model.makeNode("/root/send/sendlist/param/acntcd");
  142. model.makeNode("/root/send/sendlist/param/acntnm");
  143. model.makeNode("/root/send/sendlist/param/projectid");
  144. model.makeNode("/root/send/sendlist/param/projectnm");
  145. model.makeNode("/root/send/sendlist/orgbugtdetaillist");
  146. cmb_assgym.select(0);
  147. model.refresh();
  148. }
  149. //==============================================================
  150. // 그리드 중복 체크
  151. //==============================================================
  152. function fCheckDetailListDupData()
  153. {
  154. var iInsCnt = 0;
  155. var iDupCnt = 0;
  156. var bDel = false;
  157. for(var i=0; i<grd_orgbugtdetaillist.rows; i++)
  158. {
  159. if(i == grd_orgbugtdetaillist.row) continue;
  160. if(grd_orgbugtdetaillist.valueMatrix(i, grd_orgbugtdetaillist.colRef("appresn")) == grd_orgbugtdetaillist.valueMatrix(grd_orgbugtdetaillist.row, grd_orgbugtdetaillist.colRef("appresn")))
  161. {
  162. messageBox("신청 내역이 있습니다. 신청 내역을 수정하세요.", "I999");
  163. grd_orgbugtdetaillist.valueMatrix(grd_orgbugtdetaillist.row, grd_orgbugtdetaillist.colRef("appresn")) = "";
  164. return;
  165. }
  166. }
  167. }
  168. //========================================================================================
  169. //각종 코드 Help Open
  170. //========================================================================================
  171. function fOpenPopupHelp(pHelper, pControl, pInstance, pCdgrupid, pValueControl, pNodeName)
  172. {
  173. misfOpenPopUpList(pHelper, pControl, pCdgrupid, pInstance, pValueControl, pNodeName);
  174. model.refresh();
  175. }
  176. //========================================================================================
  177. //코드 Validation Check
  178. //========================================================================================
  179. function fValidationCheck(vgbn, recvlist, pcdgrupid, pNextIndex, pValueControl, pNodeName, pRetrKind)
  180. {
  181. if(event.keyCode == 13 || event.name == "xforms-value-changed")
  182. {
  183. document.controls(event.currentTarget).value = document.controls(event.currentTarget).currentText;
  184. misfValidationCheck(vgbn, pcdgrupid, recvlist, pValueControl, pNodeName, pRetrKind);
  185. model.refresh();
  186. if (pNextIndex != "") {
  187. model.setFocus(pNextIndex);
  188. }
  189. }
  190. }
  191. function fSave()
  192. {
  193. submit("TRRBC01100");
  194. if(model.getValue("/root/main/exist/rbemorgn") > 0)
  195. {
  196. messageBox("이미 존재하는 계정입니다. 확인하세요","I000"); return;
  197. }
  198. submit("TXRBC01100");
  199. }
  200. //========================================================================================
  201. //산출내역 중복체크
  202. //========================================================================================
  203. function fCheckDetailListDupData()
  204. {
  205. var iInsCnt = 0;
  206. var iDupCnt = 0;
  207. var bDel = false;
  208. for(var i=0; i<grd_orgbugtdetaillist.rows; i++)
  209. {
  210. if(i == grd_orgbugtdetaillist.row) continue;
  211. if(grd_orgbugtdetaillist.valueMatrix(i, grd_orgbugtdetaillist.colRef("appresn")) == grd_orgbugtdetaillist.valueMatrix(grd_orgbugtdetaillist.row, grd_orgbugtdetaillist.colRef("appresn")))
  212. {
  213. messageBox("신청 내역이 있습니다. 신청 내역을 수정하세요.", "I999");
  214. grd_orgbugtdetaillist.valueMatrix(grd_orgbugtdetaillist.row, grd_orgbugtdetaillist.colRef("appresn")) = "";
  215. return;
  216. }
  217. }
  218. }
  219. ]]>
  220. </script>
  221. <submission id="TXRBC01100" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/sendlist" resultref="/root/temp"/>
  222. <submission id="TRRBC01100" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" resultref="/root/main"/>
  223. </model>
  224. <script type="javascript" src="../../../com/commonweb/js/common.js"/>
  225. <script type="javascript" src="../../../com/commonweb/js/tfHelper.js"/>
  226. <script type="javascript" src="../../../mis/miscommonweb/js/MIS.js"/>
  227. <script type="javascript" src="../../../mis/miscommonweb/js/RAC001.js"/>
  228. <script type="javascript" src="../../../mis/miscommonweb/js/RBC001.js"/>
  229. <script type="javascript" src="../../../com/commonweb/js/dateHelper.js"/>
  230. </xhtml:head>
  231. <xhtml:body pagewidth="600" pageheight="500" guideline="2,-5;" style="margin-left:8; margin-top:0; margin-right:8; margin-bottom:0; ">
  232. <group id="group3" scroll="auto" style="left:0px; top:0px; width:550px; height:445px; ">
  233. <group id="group2" style="left:0px; top:0px; width:550px; height:5px; "/>
  234. <line id="line13" class="line_4" style="x1:515px; y1:0px; x2:515px; y2:29px; border-color:#ffe4bb; border-left-style:solid; "/>
  235. <group id="group4" style="left:0px; top:0px; width:550px; height:60px; ">
  236. <shape id="roundrect1" class="roundrect_search" appearance="roundrect" style="left:0px; top:0px; width:550px; height:60px; "/>
  237. <caption id="caption2" class="search_name" style="left:11px; top:6px; width:86px; height:17px; ">예산년도 :</caption>
  238. <input id="ipt_acntyy" ref="/root/send/sendlist/param/acntyy" class="input_s_essential" navindex="1" editable="false" maxlength="4" format="yyyy" style="left:100px; top:5px; width:110px; height:19px; text-align:center; "/>
  239. </group>
  240. <button id="btn_save" class="btn4_letter2" style="left:489px; top:3px; width:56px; height:22px; ">
  241. <caption>저장</caption>
  242. <script type="javascript" ev:event="DOMActivate">
  243. <![CDATA[
  244. model.removenode("/root/send/sendlist/orgbugtdetaillist");
  245. model.makeNode("/root/send/sendlist/orgbugtdetaillist");
  246. model.setValue("/root/send/sendlist/orgbugtdetaillist",grd_orgbugtdetaillist.getUpdateData());
  247. if(fSaveCheck() == true)
  248. {
  249. fSave();
  250. }
  251. ]]>
  252. </script>
  253. </button>
  254. <button id="btn_acptacnthelp" class="icon_search" style="left:183px; top:100px; width:16px; height:16px; ">
  255. <caption/>
  256. <script type="javascript" ev:event="DOMActivate">
  257. <![CDATA[
  258. misfOpenPopUpList("10", ipt_acntcd, "", "supacntcd3,supacntnm3,supacntcd4,supacntnm4,acntcd,acntnm", rdo_bugtflag.value, "bugtflag");
  259. model.refresh();
  260. ]]>
  261. </script>
  262. </button>
  263. <caption id="caption21" class="cell_1" visibility="hidden" style="left:205px; top:123px; width:90px; height:23px; vertical-align:middle; ">프로젝트ID</caption>
  264. <button id="btn_acptdepthelp" class="icon_search" style="left:184px; top:75px; width:16px; height:16px; ">
  265. <caption/>
  266. <script type="javascript" ev:event="DOMActivate">
  267. <![CDATA[
  268. fOpenPopupHelp("47", ipt_deptcd, "deptcd,deptnm", "", "ipt_acntyy", "acntyy");
  269. model.refresh();
  270. ]]>
  271. </script>
  272. </button>
  273. <input id="ipt_deptnm" ref="/root/send/sendlist/param/deptnm" class="input_default" visibility="13" style="left:202px; top:74px; width:184px; height:19px; ">
  274. <script type="javascript" ev:event="onkeypress">
  275. <![CDATA[
  276. if(event.keyCode == 13)
  277. {
  278. fValidationCheck("47", "deptcd,deptnm", "", "", "ipt_acntyy", "acntyy");
  279. }
  280. ]]>
  281. </script>
  282. <script type="javascript" ev:event="xforms-value-changed">
  283. <![CDATA[
  284. fValidationCheck("47", "deptcd,deptnm", "", "", "ipt_acntyy", "acntyy");
  285. ]]>
  286. </script>
  287. </input>
  288. <input id="ipt_projectid" ref="/root/send/sendlist/param/projectid" class="input_default" navindex="14" visibility="hidden" editable="true" style="left:297px; top:125px; width:23px; height:19px; ">
  289. <script type="javascript" ev:event="onkeypress">
  290. <![CDATA[
  291. if(event.keyCode == 13)
  292. {
  293. fValidationCheck("23", "projectid,projectnm", "", "", "", "", "code");
  294. model.setFocus("ipt_acptacntnm");
  295. }
  296. ]]>
  297. </script>
  298. <script type="javascript" ev:event="xforms-value-changed">
  299. <![CDATA[
  300. fValidationCheck("23", "projectid,projectnm", "", "", "", "", "code");
  301. ]]>
  302. </script>
  303. </input>
  304. <input id="ipt_deptcd" ref="/root/send/sendlist/param/deptcd" class="input_default" navindex="12" visibility="visible" style="left:102px; top:74px; width:78px; height:19px; ">
  305. <script type="javascript" ev:event="onkeypress">
  306. <![CDATA[
  307. if(event.keyCode == 13)
  308. {
  309. fValidationCheck("47", "deptcd,deptnm", "", "", "ipt_acntyy", "acntyy");
  310. model.setFocus("ipt_deptnm");
  311. }
  312. ]]>
  313. </script>
  314. <script type="javascript" ev:event="xforms-value-changed">
  315. <![CDATA[
  316. fValidationCheck("47", "deptcd,deptnm", "", "", "ipt_acntyy", "acntyy");
  317. ]]>
  318. </script>
  319. </input>
  320. <caption id="caption15" class="cell_1" style="left:10px; top:73px; width:90px; height:23px; vertical-align:middle; ">부서</caption>
  321. <input id="ipt_acntnm" ref="/root/send/sendlist/param/acntnm" class="input_default" navindex="15" style="left:202px; top:99px; width:184px; height:19px; ">
  322. <script type="javascript" ev:event="onkeypress">
  323. <![CDATA[
  324. if(event.keyCode == 13)
  325. {
  326. fValidationCheck("10", "supacntcd3,supacntnm3,supacntcd4,supacntnm4,acntcd,acntnm", "", "", "ipt_bugtflag", "bugtflag");
  327. }
  328. ]]>
  329. </script>
  330. <script type="javascript" ev:event="xforms-value-changed">
  331. <![CDATA[
  332. fValidationCheck("10", "supacntcd3,supacntnm3,supacntcd4,supacntnm4,acntcd,acntnm", "", "", "ipt_bugtflag", "bugtflag");
  333. ]]>
  334. </script>
  335. </input>
  336. <input id="ipt_acntcd" ref="/root/send/sendlist/param/acntcd" class="input_default" navindex="14" visibility="visible" style="left:102px; top:100px; width:78px; height:19px; ">
  337. <script type="javascript" ev:event="onkeypress">
  338. <![CDATA[
  339. if(event.keyCode == 13)
  340. {
  341. fValidationCheck("10", "supacntcd3,supacntnm3,supacntcd4,supacntnm4,acntcd,acntnm", "", "", "ipt_bugtflag", "bugtflag");
  342. model.setFocus("ipt_acptacntnm");
  343. }
  344. ]]>
  345. </script>
  346. <script type="javascript" ev:event="xforms-value-changed">
  347. <![CDATA[
  348. fValidationCheck("10", "supacntcd3,supacntnm3,supacntcd4,supacntnm4,acntcd,acntnm", "", "", "ipt_bugtflag", "bugtflag");
  349. ]]>
  350. </script>
  351. </input>
  352. <caption id="caption19" class="cell_1" style="left:10px; top:98px; width:90px; height:23px; vertical-align:middle; ">계정과목</caption>
  353. <datagrid id="grd_orgbugtdetaillist" nodeset="/root/main/orgbgdtlist/orgbugtdetaillist" autoresize="true" caption="적요^산출근거^신청액" colsep="^" colwidth="144, 259, 114" ellipsis="true" mergecellsfixedrows="bycolrec" rowheader="update" rowheight="23" rowsep="|" tooltip="true" style="left:11px; top:170px; width:539px; height:273px; ">
  354. <col ref="appresn" type="input"/>
  355. <col ref="appbase" type="input" style="text-align:left; "/>
  356. <col ref="appamt" type="input" format="(-)#,###" style="text-align:right; "/>
  357. <script type="javascript" ev:event="onendedit">
  358. <![CDATA[
  359. if(grd_orgbugtdetaillist.col == grd_orgbugtdetaillist.colRef("appresn"))
  360. {
  361. fCheckDetailListDupData();
  362. }
  363. ]]>
  364. </script>
  365. </datagrid>
  366. <button id="btn_detaildelrow" class="btn2_letter3" style="left:490px; top:149px; width:53px; height:19px; ">
  367. <caption>행삭제</caption>
  368. <script type="javascript" ev:event="DOMActivate">
  369. <![CDATA[
  370. misfGridIUD(grd_orgbugtdetaillist, "D");
  371. model.refresh();
  372. ]]>
  373. </script>
  374. </button>
  375. <caption id="caption10" class="tit_2" style="left:13px; top:154px; width:119px; height:13px; ">본예산 산출내역</caption>
  376. <button id="btn_detailaddrow" class="btn2_letter3" style="left:435px; top:149px; width:53px; height:19px; ">
  377. <caption>행추가</caption>
  378. <script type="javascript" ev:event="DOMActivate">
  379. <![CDATA[
  380. misfGridIUD(grd_orgbugtdetaillist, "A");
  381. fSetReadOnly();
  382. grd_orgbugtdetaillist.valueMatrix(grd_orgbugtdetaillist.row, grd_orgbugtdetaillist.colRef("appamt")) = 0;
  383. ]]>
  384. </script>
  385. </button>
  386. <select1 id="rdo_bugtflag" ref="/root/send/sendlist/param/bugtflag" navindex="27" overflow="visible" appearance="full" cellspacing="20" cols="4" style="left:100px; top:34px; width:250px; height:20px; border-style:none; ">
  387. <choices>
  388. <item>
  389. <label>수입</label>
  390. <value>1</value>
  391. </item>
  392. <item>
  393. <label>비용</label>
  394. <value>2</value>
  395. </item>
  396. <item>
  397. <label>구매</label>
  398. <value>3</value>
  399. </item>
  400. <item>
  401. <label>자본</label>
  402. <value>4</value>
  403. </item>
  404. </choices>
  405. </select1>
  406. <caption id="caption5" class="search_name" style="left:11px; top:34px; width:87px; height:17px; ">예산구분 :</caption>
  407. <button id="btn_projectid" class="icon_search" visibility="hidden" style="left:325px; top:125px; width:16px; height:16px; ">
  408. <caption/>
  409. <script type="javascript" ev:event="DOMActivate">
  410. <![CDATA[
  411. misfOpenPopUpList("23", ipt_projectid, "", "projectid,projectnm", "", "", "", "");
  412. model.refresh();
  413. ]]>
  414. </script>
  415. </button>
  416. <input id="ipt_projectnm" ref="/root/send/sendlist/param/projectnm" class="input_default" navindex="15" visibility="hidden" style="left:345px; top:125px; width:25px; height:19px; ">
  417. <script type="javascript" ev:event="onkeypress">
  418. <![CDATA[
  419. if(event.keyCode == 13)
  420. {
  421. fValidationCheck("23", "projectid,projectnm", "", "", "", "", "name");
  422. model.refresh();
  423. }
  424. ]]>
  425. </script>
  426. <script type="javascript" ev:event="xforms-value-changed">
  427. <![CDATA[
  428. fValidationCheck("23", "projectid,projectnm", "", "", "", "", "name");
  429. ]]>
  430. </script>
  431. </input>
  432. <select1 id="cmb_assgym" ref="/root/send/sendlist/param/assgym" class="combo_essential" navindex="4" appearance="minimal" style="left:102px; top:125px; width:78px; height:19px; text-align:center; ">
  433. <choices>
  434. <itemset nodeset="/root/init/assgymset">
  435. <label ref="/label"/>
  436. <value ref="/value"/>
  437. </itemset>
  438. </choices>
  439. </select1>
  440. <button id="btn_del" class="btn2_letter2" visibility="hidden" style="left:450px; top:74px; width:42px; height:19px; ">
  441. <caption>삭제</caption>
  442. <script type="javascript" ev:event="DOMActivate">
  443. <![CDATA[
  444. ]]>
  445. </script>
  446. </button>
  447. <button id="btn_new" class="btn2_letter2" style="left:497px; top:74px; width:42px; height:19px; ">
  448. <caption>신규</caption>
  449. <script type="javascript" ev:event="DOMActivate">
  450. <![CDATA[
  451. fNewInsertion();
  452. ]]>
  453. </script>
  454. </button>
  455. <select1 id="rdo_appflag" ref="/root/send/sendlist/param/appflag" navindex="27" visibility="hidden" overflow="visible" appearance="full" cellspacing="20" cols="2" style="left:310px; top:6px; width:155px; height:20px; border-style:none; ">
  456. <choices>
  457. <item>
  458. <label>본예산</label>
  459. <value>orgapp</value>
  460. </item>
  461. <item>
  462. <label>추경예산</label>
  463. <value>revapp</value>
  464. </item>
  465. </choices>
  466. </select1>
  467. <caption id="cap_appflag" class="search_name" visibility="hidden" style="left:221px; top:6px; width:87px; height:17px; ">신청구분 :</caption>
  468. <button id="btn_check" class="btn2_letter2" visibility="hidden" style="left:450px; top:99px; width:42px; height:19px; ">
  469. <caption>확인</caption>
  470. <script type="javascript" ev:event="DOMActivate">
  471. <![CDATA[
  472. ]]>
  473. </script>
  474. </button>
  475. <input id="ipt_bugtflag" ref="/root/send/bugtflag" class="input_default" visibility="hidden" style="left:495px; top:35px; width:25px; height:19px; "/>
  476. <caption id="caption3" class="cell_1" style="left:10px; top:123px; width:90px; height:23px; vertical-align:middle; ">배정월</caption>
  477. </group>
  478. <group id="group1" scroll="auto" style="left:0px; top:445px; width:550px; height:27px; ">
  479. <button id="btn_close" class="btn4_letter2" style="left:490px; top:3px; width:56px; height:22px; ">
  480. <caption>닫기</caption>
  481. <script type="javascript" ev:event="DOMActivate">
  482. <![CDATA[
  483. window.close();
  484. ]]>
  485. </script>
  486. </button>
  487. <line id="line32" class="line_6" style="x1:0px; y1:5px; x2:518px; y2:5px; "/>
  488. </group>
  489. </xhtml:body>
  490. </xhtml:html>