SMPID23400_외래추가청구생성.xrw 21 KB

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