SMPID23400_추가청구생성.xrw 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488
  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>추가청구생성</xhtml:title>
  6. <model id="model1">
  7. <instance id="instance1">
  8. <root xmlns="">
  9. <main>
  10. <list>
  11. <createlist/>
  12. </list>
  13. </main>
  14. <send>
  15. <search>
  16. <reference/>
  17. <fromdd/>
  18. <todd/>
  19. <pid/>
  20. <clammode/>
  21. <instcd/>
  22. <clamym/>
  23. </search>
  24. <insertdata>
  25. <addCreate/>
  26. </insertdata>
  27. <search2>
  28. <clamym/>
  29. <instcd/>
  30. <fstrgstrid/>
  31. </search2>
  32. </send>
  33. <init>
  34. <P0008list>
  35. <P0008>
  36. <cdnm/>
  37. <cdid/>
  38. </P0008>
  39. </P0008list>
  40. <P0010list>
  41. <P0010>
  42. <cdnm/>
  43. <cdid/>
  44. </P0010>
  45. </P0010list>
  46. </init>
  47. <hidden>
  48. <insertchk/>
  49. </hidden>
  50. <temp>
  51. <reference>1</reference>
  52. <fromdd/>
  53. <todd/>
  54. <pid/>
  55. <clammode/>
  56. <instcd/>
  57. <clamym/>
  58. </temp>
  59. <init_pam>
  60. <init>
  61. <orddeptcd>
  62. <cd/>
  63. <nm/>
  64. <deptengabbr/>
  65. <reqdeptno/>
  66. </orddeptcd>
  67. <orddrid>
  68. <cd/>
  69. <nm/>
  70. <dp/>
  71. <sp/>
  72. </orddrid>
  73. </init>
  74. </init_pam>
  75. </root>
  76. </instance>
  77. <script type="javascript" ev:event="xforms-ready">
  78. <![CDATA[
  79. zbcfGetCodeList(new Array("P0008", "P0010"),
  80. new Array("/root/init/P0008list", "/root/init/P0010list"));
  81. fInitialize();
  82. ]]>
  83. </script>
  84. <submission id="TRPID23401" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/search" resultref="/root/main/list"/>
  85. <submission id="TRPID23402" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/search2" resultref="/root/main/list"/>
  86. <submission id="TXPID23401" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/main/list/createlist"/>
  87. </model>
  88. <script type="javascript" src="../../../com/commonweb/js/common.js"/>
  89. <script type="javascript" src="../../../com/commonweb/js/numericHelper.js"/>
  90. <script type="javascript" src="../../../com/commonweb/js/dateHelper.js"/>
  91. <script type="javascript" src="../../../com/commonweb/js/stringHelper.js"/>
  92. <script type="javascript" src="../../../com/commonweb/js/tfHelper.js"/>
  93. <script type="javascript" src="../../../pam/pamcomnweb/js/PAM.js"/>
  94. <script type="javascript" src="../../../com/commonweb/js/utilHelper.js"/>
  95. <script type="javascript" src="../../../com/basiccodeweb/js/ZBC001.js"/>
  96. <script type="javascript" src="../../../pam/calcscormngtweb/js/PIC001.js"/>
  97. <script type="javascript">
  98. <![CDATA[
  99. function fInitialize(){
  100. model.removeNodeset("/root/main/list/cretlist"); //그리드 초기화
  101. model.setValue("/root/temp/todd", "");
  102. model.setValue("/root/temp/pid", "");
  103. // 날짜 초기화 (시작일은 오늘 날짜, 종료일은 30일 뒤)
  104. var now = new Date();
  105. var year= now.getFullYear();
  106. var mon = (now.getMonth()+1)>9 ? ''+(now.getMonth()+1) : '0'+(now.getMonth()+1);
  107. var day = now.getDate()>9 ? ''+now.getDate() : '0'+now.getDate();
  108. var fromdd = year+mon+day;
  109. var todd = new Date(Date.parse(fromdd) + 30 * 1000 * 60 * 60 * 24);
  110. model.setValue("/root/temp/fromdd", fromdd);
  111. //model.setValue("/root/temp/todd", todd);
  112. model.setValue("/root/temp/todd", "");
  113. model.setFocus("ipt_todd");
  114. model.removeNode("/root/main/list");
  115. model.refresh();
  116. }
  117. function fSearchchk(refNo)
  118. {
  119. var sFromdd = model.getValue("/root/temp/fromdd");
  120. var sTodd = model.getValue("/root/temp/todd");
  121. //var sDd = sTodd - sFromdd;
  122. var sFromym = model.getValue("/root/temp/fromdd").substr(0,6);
  123. var sToym = model.getValue("/root/temp/todd").substr(0,6);
  124. var sFy = sFromdd.substr(0, 4);
  125. var sFm = sFromdd.substr(4, 2);
  126. var sFd = sFromdd.substr(6, 2);
  127. var sTy = sTodd.substr(0, 4);
  128. var sTm = sTodd.substr(4, 2);
  129. var sTd = sTodd.substr(6, 2);
  130. var sSd = new Date(sFy, sFm-1, sFd);
  131. var sEd = new Date(sTy,sTm-1,sTd);
  132. var rstFrom = sSd.getTime();
  133. var rstEnd = sEd.getTime();
  134. var sDd = Math.ceil((rstEnd - rstFrom) / (24 * 60 * 60 * 1000));
  135. if (refNo == '1' || refNo == '2'){
  136. if (sFromdd == null || sFromdd == "" || sFromdd == " "){
  137. messageBox("시작일자가 없습니다!","E999","");
  138. model.setValue("/root/temp/fromdd","");
  139. model.refresh();
  140. model.setFocus("ipt_fromdd");
  141. return false;
  142. }
  143. if (sTodd == null || sTodd == "" || sTodd == " " || sTodd == "-"){
  144. messageBox("종료일자가 없습니다!","E999","");
  145. model.setValue("/root/temp/todd","");
  146. model.refresh();
  147. model.setFocus("ipt_todd");
  148. return false;
  149. }else if (sFromym != sToym){
  150. messageBox("시작연월과 종료년월은 같아야 합니다!","E999","");
  151. //model.setValue("/root/temp/todd","");
  152. model.refresh();
  153. model.setFocus("ipt_todd");
  154. }
  155. if (sDd > '31'){
  156. messageBox("조회기간은 31일을 넘길수 없습니다!","E999","");
  157. model.setValue("/root/temp/todd","");
  158. model.refresh();
  159. model.setFocus("ipt_todd");
  160. return false;
  161. }else if (sDd < '0'){
  162. messageBox("시작일자가 종료일자보다 클수는 없습니다!","E999","");
  163. model.setValue("/root/temp/todd","");
  164. model.refresh();
  165. model.setFocus("ipt_todd");
  166. return false;
  167. }
  168. }else{
  169. messageBox("조회조건이 없습니다!","E999","");
  170. model.setValue("/root/temp/reference", "");
  171. model.setFocus("cmb_reference");
  172. return false;
  173. }
  174. return true;
  175. }
  176. ]]>
  177. </script>
  178. </xhtml:head>
  179. <xhtml:body pagewidth="1210" pageheight="752" style="margin-left:8; margin-top:8; margin-right:8; margin-bottom:8; ">
  180. <group id="group3" scroll="auto" style="left:0px; top:0px; width:1160px; height:700px; ">
  181. <caption id="caption10" class="tit_2" style="left:5px; top:5px; width:170px; height:13px; ">외래추가청구생성</caption>
  182. <group id="group2" style="left:5px; top:23px; width:1150px; height:40px; vertical-align:top; ">
  183. <shape id="roundrect1" class="roundrerct_search" appearance="roundrect" style="left:5px; top:2px; width:1145px; height:35px; "/>
  184. <button id="btn_srch" class="btn1_letter2" navindex="4" style="left:1005px; top:7px; width:56px; height:22px; ">
  185. <caption>조회</caption>
  186. <script type="javascript" ev:event="onclick">
  187. <![CDATA[
  188. //@@@
  189. var refNo = model.getValue("/root/temp/reference");
  190. if (fSearchchk(refNo) == true){
  191. model.setValue("/root/send/search/reference", model.getValue("/root/temp/reference"));
  192. model.setValue("/root/send/search/fromdd", model.getValue("/root/temp/fromdd"));
  193. model.setValue("/root/send/search/todd", model.getValue("/root/temp/todd"));
  194. model.setValue("/root/send/search/pid", model.getValue("/root/temp/pid"));
  195. model.setValue("/root/send/search/clammode", model.getValue("/root/temp/clammode"));
  196. submit("TRPID23401"); //추가, 누락 청구 대상자 조회
  197. model.setValue("/root/hidden/insertchk", "0"); //생성 후 다시 생성을 막기위해 조회를 하면 플레그 값 바꿔줌
  198. }
  199. ]]>
  200. </script>
  201. <script type="javascript" ev:event="onkeyup">
  202. <![CDATA[
  203. if (event.keyCode == '13') {
  204. setInputNodeCurText();
  205. btn_srch.dispatch("onclick");
  206. }
  207. ]]>
  208. </script>
  209. </button>
  210. <caption id="caption6" style="left:300px; top:11px; width:11px; height:18px; ">~</caption>
  211. <!-- rdo_mchrgcode : 세부계산내역 조회용이 아닌 "코드조회" 에 사용될 수가코드 검색용 Radio 구분임 -->
  212. <line id="line1" class="line_4" style="x1:990px; y1:4px; x2:990px; y2:31px; "/>
  213. <select1 id="cmb_reference" ref="/root/temp/reference" navindex="1" appearance="minimal" style="left:110px; top:11px; width:85px; height:19px; ">
  214. <choices>
  215. <item>
  216. <label>실시일자</label>
  217. <value>1</value>
  218. </item>
  219. <item>
  220. <label>정산일자</label>
  221. <value>2</value>
  222. </item>
  223. </choices>
  224. </select1>
  225. <input id="ipt_todd" ref="/root/temp/todd" class="input_search" navindex="3" inputtype="date" style="left:320px; top:11px; width:85px; height:19px; ">
  226. <script type="javascript" ev:event="onkeyup">
  227. <![CDATA[
  228. if (event.keyCode == '13') {
  229. var sLenchk = model.getValue("/root/temp/todd");
  230. if (sLenchk.length == 8){
  231. btn_srch.dispatch("onclick");
  232. }
  233. }
  234. ]]>
  235. </script>
  236. </input>
  237. <caption id="caption5" class="search_name" style="left:15px; top:11px; width:80px; height:17px; ">조회조건 :</caption>
  238. <input id="ipt_fromdd" ref="/root/temp/fromdd" class="input_search" navindex="2" inputtype="date" style="left:208px; top:11px; width:85px; height:19px; ">
  239. <script type="javascript" ev:event="xforms-value-changed">
  240. <![CDATA[
  241. var sLenchk = model.getValue("/root/temp/fromdd");
  242. if (sLenchk.length == 8){
  243. var lastdate=new Array(31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31); //각 달의 마지막 날짜
  244. var sFromyy = model.getValue("/root/temp/fromdd").substr(0, 4);
  245. var sFrommm = model.getValue("/root/temp/fromdd").substr(4, 2);
  246. if((0==sFromyy%4 && 0!=sFromyy%100) || 0==sFromyy%400){ //year를 가지고 윤년인지 검사.
  247. lastdate[1]=29; /*윤년인 경우 2월의 마지막 날짜를 29로 입력*/
  248. }
  249. var sFromdd = lastdate[sFrommm-1];
  250. var sTodd = sFromyy+sFrommm+sFromdd;
  251. model.setValue("/root/temp/todd", sTodd);
  252. ipt_todd.refresh();
  253. }
  254. ]]>
  255. </script>
  256. </input>
  257. <input id="ipt_pid" ref="/root/temp/pid" class="input_s_essential" _chartype="upper" style="left:535px; top:8px; width:155px; height:19px; ">
  258. <script type="javascript" ev:event="onkeyup">
  259. <![CDATA[
  260. if (event.keyCode == '13') {
  261. setInputNodeCurText();
  262. btn_srch.dispatch("onclick");
  263. }
  264. ]]>
  265. </script>
  266. </input>
  267. <caption id="caption2" class="search_name" style="left:435px; top:10px; width:86px; height:17px; ">등록번호 :</caption>
  268. <select1 id="opt_clammode" ref="/root/temp/clammode" visibility="hidden" appearance="full" cols="5" rows="1" overflow="visible" style="left:825px; top:9px; width:100px; height:15px; font-weight:bold; border-style:none; ">
  269. <choices>
  270. <item>
  271. <label>추가</label>
  272. <value>A</value>
  273. </item>
  274. <item>
  275. <label>누락</label>
  276. <value>B</value>
  277. </item>
  278. </choices>
  279. </select1>
  280. <caption id="caption9" class="search_name" visibility="hidden" style="left:725px; top:9px; width:95px; height:17px; ">추가/누락 :</caption>
  281. <button id="btn_create" class="btn4_letter2" style="left:1075px; top:7px; width:56px; height:22px; ">
  282. <caption>생성</caption>
  283. <script type="javascript" ev:event="onclick">
  284. <![CDATA[
  285. //model.copyNode("/root/send/insertdata/addCreate", "/root/main/list/createlist");
  286. var sInsertchk = model.getValue("/root/hidden/insertchk");
  287. if (sInsertchk == 0){ // 생성 후 조회를 안하고 다시 생성하는 것을 막기 위해서 추가
  288. submit("TXPID23401");
  289. model.setValue("/root/send/search2/clamym", model.getValue("/root/temp/fromdd").substr(0,6));
  290. submit("TRPID23402");
  291. model.setValue("/root/hidden/insertchk", "1"); // 생성 후 플리그 값 넣어줌 ( 생성 후 같은 데이터 생성 막기 위해)
  292. }else if (sInsertchk == 1){
  293. messageBox("조회를 하시고 생성을 눌러주세요!","E999","");
  294. }
  295. ]]>
  296. </script>
  297. </button>
  298. </group>
  299. <switch id="swt_add" style="left:10px; top:75px; width:1150px; height:580px; border-color:#c7a3cf; border-style:solid; ">
  300. <case id="case_summary" selected="true" style="left:0px; top:0px; width:1148px; height:600px; ">
  301. <line id="line17" class="line_1" style="x1:7px; y1:25px; x2:1142px; y2:25px; "/>
  302. <button id="btn_cnclexcel" class="btn2_letter4" style="left:1065px; top:5px; width:64px; height:19px; ">
  303. <caption>엑셀저장</caption>
  304. <script type="javascript" ev:event="DOMActivate">
  305. <![CDATA[
  306. if (grd_summary.rows > 1) {
  307. var fileName = window.fileDialog("save", "", false, "excel", "xls", "Excel Files(*.xls)|*.xls|All Files (*.*)|*.*");
  308. if (fileName != "") {
  309. grd_summary.saveExcel(fileName, "sheetname:;colhiddenextend:false;rowhiddenextend:false;", true, true, "", "", true);
  310. }
  311. } else {
  312. messageBox("엑셀저장할 대상자가", "I004"); ///엑셀저장할 대상자가 없습니다.
  313. }
  314. ]]>
  315. </script>
  316. </button>
  317. <datagrid id="grd_cretlist" nodeset="/root/main/list/createlist" caption="선택^IO^청구구분^청구년월^청구차수^환자번호^외래등록일자^외래생성번호^영수증처리일자^영수증번호^수가코드^시행일^이력상태^입원외래구분^진료과코드^진료의ID^보험유형^보조유형^전급비구분^후보험유형^후보조유형^후급비구분^정산일^수집일^등록번호순번^청구세부과^심사자^청구삭제여부^최초접수일시^최초접수자^최종접수일시^최종접수자^데이터발생구분^청구키^진료분야" colsep="^" colwidth="40, 0, 66, 65, 70, 90, 100, 80, 100, 105, 80, 100, 105, 100, 78, 90, 90, 110, 70, 100, 100, 100, 83, 81, 72, 70, 80, 80, 60, 80, 80, 100, 120, 140, 100" explorerbar="sortshowmove" mergecellsfixedrows="bycolrec" rowheader="seq" rowsep="|" style="left:9px; top:30px; width:1130px; height:525px; ">
  318. <col ref="chk" type="checkbox"/>
  319. <col style="text-align:center; "/>
  320. <col disabled="true" ref="clammode" type="combo" style="text-align:center; ">
  321. <choices>
  322. <item>
  323. <label>추가</label>
  324. <value>A</value>
  325. </item>
  326. <item>
  327. <label>누락</label>
  328. <value>B</value>
  329. </item>
  330. <item>
  331. <label>-</label>
  332. <value/>
  333. </item>
  334. </choices>
  335. </col>
  336. <col disabled="true" ref="clamym" visibility="hidden" style="text-align:center; "/>
  337. <col disabled="true" ref="clamdg" visibility="hidden" style="text-align:center; "/>
  338. <col disabled="true" ref="pid" style="text-align:center; "/>
  339. <col disabled="true" ref="orddd" format="yyyy-mm-dd" style="text-align:center; "/>
  340. <col disabled="true" ref="cretno" visibility="hidden" style="text-align:center; "/>
  341. <col disabled="true" ref="prcpdd" format="yyyy-mm-dd" style="text-align:center; "/>
  342. <col disabled="true" ref="prcpno" style="text-align:center; "/>
  343. <col disabled="true" ref="snglcalcscorcd" style="text-align:center; "/>
  344. <col disabled="true" ref="execdd" format="yyyy-mm-dd" style="text-align:center; "/>
  345. <col disabled="true" ref="histstat" type="combo" visibility="hidden" style="text-align:center; ">
  346. <choices>
  347. <item>
  348. <label>Trigger</label>
  349. <value>T</value>
  350. </item>
  351. <item>
  352. <label>자료수집대상</label>
  353. <value>N</value>
  354. </item>
  355. <item>
  356. <label>자료수집대상제외</label>
  357. <value>C</value>
  358. </item>
  359. <item>
  360. <label>자료수집완료</label>
  361. <value>Y</value>
  362. </item>
  363. </choices>
  364. </col>
  365. <col ref="ioflag" type="combo" visibility="hidden" style="text-align:center; ">
  366. <choices>
  367. <item>
  368. <label>입원</label>
  369. <value>I</value>
  370. </item>
  371. <item>
  372. <label>외래</label>
  373. <value>O</value>
  374. </item>
  375. </choices>
  376. </col>
  377. <col disabled="true" ref="orddeptcd" style="text-align:center; "/>
  378. <col disabled="true" ref="orddrid" style="text-align:center; "/>
  379. <col disabled="true" ref="preinsukind" type="combo" style="text-align:center; ">
  380. <choices>
  381. <itemset nodeset="/root/init/P0008list/P0008">
  382. <label ref="cdnm"/>
  383. <value ref="cdid"/>
  384. </itemset>
  385. </choices>
  386. </col>
  387. <col disabled="true" ref="presuppkind" type="combo" style="text-align:center; ">
  388. <choices>
  389. <itemset nodeset="/root/init/P0010list/P0010">
  390. <label ref="cdnm"/>
  391. <value ref="cdid"/>
  392. </itemset>
  393. </choices>
  394. </col>
  395. <col ref="prcppayflag" visibility="hidden" style="text-align:center; "/>
  396. <col ref="aftinsukind" visibility="hidden" style="text-align:center; "/>
  397. <col ref="aftsuppkind" visibility="hidden" style="text-align:center; "/>
  398. <col ref="aftprcppayflag" visibility="hidden" style="text-align:center; "/>
  399. <col disabled="true" ref="acntdd" visibility="hidden" format="yyyy-mm-dd" style="text-align:center; "/>
  400. <col ref="clamdd" visibility="hidden" format="yyyy-mm-dd" style="text-align:center; "/>
  401. <col ref="pidsn" visibility="hidden" style="text-align:center; "/>
  402. <col ref="clamdeptcd" visibility="hidden" style="text-align:center; "/>
  403. <col ref="judgrid" visibility="hidden" style="text-align:center; "/>
  404. <col ref="delyn" visibility="hidden" style="text-align:center; "/>
  405. <col ref="fstrgstdt" visibility="hidden" style="text-align:center; "/>
  406. <col ref="fstrgstrid" visibility="hidden" style="text-align:center; "/>
  407. <col ref="lastupdtdt" visibility="hidden" style="text-align:center; "/>
  408. <col ref="lastupdtrid" visibility="hidden" style="text-align:center; "/>
  409. <col ref="dataflag" visibility="hidden" style="text-align:center; "/>
  410. <col ref="clamkey" visibility="hidden" style="text-align:center; "/>
  411. <col ref="ordfildcd" visibility="hidden" style="text-align:center; "/>
  412. <script type="javascript" ev:event="ondblclick">
  413. <![CDATA[
  414. //var row = grd_summary.row;
  415. //if( isDataCell() && row > 0 ){
  416. // model.setValue("/root/send/fromdd",model.getValue("/root/temp/fromdd").removeMask('\n'));
  417. // model.setValue("/root/send/todd",model.getValue("/root/temp/todd").removeMask('\n'));
  418. // model.setValue("/root/send/pid",model.getValue("/root/temp/pid"));
  419. // model.setValue("/root/send/aftacntyn",model.getValue("/root/temp/aftacntyn"));
  420. // model.setValue("/root/send/preinsukind",model.getValue("/root/temp/preinsukind"));
  421. // model.setValue("/root/send/presuppkind",model.getValue("/root/temp/presuppkind"));
  422. // model.setValue("/root/send/aftinsukind",model.getValue("/root/temp/aftinsukind"));
  423. // model.setValue("/root/send/aftsuppkind",model.getValue("/root/temp/aftsuppkind"));
  424. // model.setValue("/root/send/orddeptcd",model.getValue("/root/temp/orddeptcd"));
  425. // model.setValue("/root/send/orddrid",model.getValue("/root/temp/orddrid"));
  426. // model.setValue("/root/send/histstat",model.getValue("/root/temp/histstat"));
  427. // model.setValue("/root/send/clamym",model.getValue("/root/main/list2/summary[" + row + "]/clamym_1"));//
  428. // model.setValue("/root/send/clamdg",model.getValue("/root/main/list2/summary[" + row + "]/clamdg_1"));//
  429. // model.setValue("/root/send/reqfild",model.getValue("/root/main/list2/summary[" + row + "]/reqfild_1"));//
  430. // model.setValue("/root/send/clammode",model.getValue("/root/main/list2/summary[" + row + "]/clammode_1")); //
  431. // model.setValue("/root/send/judgrid",model.getValue("/root/temp/judgrid"));
  432. // model.setValue("/root/send/acting",model.getValue("/root/temp/acting"));
  433. // submit("TRPID23100");
  434. // swt_add.selectedIndex = 1;
  435. // btn_summary.selected = false;
  436. // btn_pat.selected = true;
  437. // btn_code.selected = false;
  438. // button3.visible = true;
  439. // button4.visible = true;
  440. // btn_choi.disabled = false;
  441. // btn_del.disabled = false;
  442. // btn_srch.disabled = true;
  443. //}
  444. ]]>
  445. </script>
  446. </datagrid>
  447. </case>
  448. </switch>
  449. </group>
  450. <group id="group1" scroll="auto" style="left:10px; top:680px; width:1150px; height:35px; ">
  451. <line id="line32" class="line_6" style="x1:0px; y1:0px; x2:1099px; y2:0px; "/>
  452. <button id="btn_close" class="btn4_letter2" style="left:1085px; top:5px; width:56px; height:22px; ">
  453. <caption>닫기</caption>
  454. <script type="javascript" ev:event="DOMActivate">
  455. <![CDATA[
  456. window.close(); // F5 실행시 IE를 종료시킨다.
  457. ]]>
  458. </script>
  459. </button>
  460. <button id="btn_reset" class="btn4_letter3" style="left:1010px; top:5px; width:100px; height:22px; ">
  461. <caption>초기화</caption>
  462. <script type="javascript" ev:event="DOMActivate">
  463. <![CDATA[
  464. fInitialize();
  465. ]]>
  466. </script>
  467. </button>
  468. <button id="btn_chuga" class="btn3_letter12" style="left:15px; top:5px; width:104px; height:22px; ">
  469. <caption>외래추가청구대상자조회</caption>
  470. <script type="javascript" ev:event="DOMActivate">
  471. <![CDATA[
  472. modal("SMPID23100", "3", "", "", "", "", "", "");
  473. ]]>
  474. </script>
  475. </button>
  476. </group>
  477. </xhtml:body>
  478. </xhtml:html>