SPPID10103_입원원무심사금액점검.xrw 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448
  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. <CountNode/>
  10. <main>
  11. <list1>
  12. <cretlist/>
  13. </list1>
  14. <patinfo>
  15. <patinfolist/>
  16. </patinfo>
  17. <popupendflag/>
  18. </main>
  19. <send>
  20. <clamfromdd/>
  21. <clamtodd/>
  22. <insutype/>
  23. <pid/>
  24. <name/>
  25. <orddeptcd/>
  26. </send>
  27. <init>
  28. <P0008list>
  29. <cdid/>
  30. <cdnm/>
  31. </P0008list>
  32. </init>
  33. <hidden>
  34. <list1>
  35. <dept>
  36. <depthngnm/>
  37. <deptcd/>
  38. <deptengabbr/>
  39. <reqfild/>
  40. <reqdeptno/>
  41. </dept>
  42. </list1>
  43. <sppmc02500>
  44. <cond>
  45. <srchcond/>
  46. <pid/>
  47. <hngnm/>
  48. <rrgstno1/>
  49. <rrgstno2/>
  50. </cond>
  51. </sppmc02500>
  52. <send2>
  53. <instcd/>
  54. <basedd/>
  55. </send2>
  56. <screen1>
  57. <checkyn1/>
  58. </screen1>
  59. <temp>
  60. <memo/>
  61. </temp>
  62. </hidden>
  63. </root>
  64. </instance>
  65. <script type="javascript" ev:event="xforms-ready">
  66. <![CDATA[
  67. fInitialize();
  68. ]]>
  69. </script>
  70. <submission id="TRZBC00101" mediatype="application/x-www-form-urlencoded" method="post" replace="instance"/>
  71. <submission id="TXPID10101" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/main/list1" replace="instance" resultref="/root/hidden/item1/result"/>
  72. <submission id="TRPID10102" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/hidden/send2" replace="instance" resultref="/root/hidden/list1"/>
  73. <submission id="TXPID10102" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" replace="instance" resultref="/root/hidden/item1/result"/>
  74. <submission id="TXPID10103" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/temp" replace="instance" resultref="/root/hidden/item1/result"/>
  75. <submission id="TRPID10103" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" replace="instance" resultref="/root/main/list1"/>
  76. </model>
  77. <script type="javascript" src="../../../com/commonweb/js/common.js"/>
  78. <script type="javascript" src="../../../com/commonweb/js/numericHelper.js"/>
  79. <script type="javascript" src="../../../com/commonweb/js/dateHelper.js"/>
  80. <script type="javascript" src="../../../com/commonweb/js/stringHelper.js"/>
  81. <script type="javascript" src="../../../com/commonweb/js/tfHelper.js"/>
  82. <script type="javascript" src="../../../com/basiccodeweb/js/ZBC001.js"/>
  83. <script type="javascript" src="../../../com/batchinfoweb/js/ZSB001.js"/>
  84. <script type="javascript">
  85. <![CDATA[
  86. // 화면 open시와 초기화 버튼 클릭시 화면을 초기화 기능을 수행.
  87. function fInitialize() {
  88. // 초기값
  89. cmb_insutype.select(0); // 보험유형 : -.전체
  90. // 날짜 계산을 위하여 yyyymmdd형태로 오늘 날짜를 구한다.
  91. var tmp_date = new Date();
  92. var tmp_year = tmp_date.getYear();
  93. // 월의 경우 0부터 시작이므로 +1을 해준다.
  94. var tmp_month = tmp_date.getMonth() + 1;
  95. var tmp_day = tmp_date.getDate();
  96. // 10보다 작은경우는 앞에 '0'을 붙여서 자릿수를 맞춘다.
  97. if (tmp_month<10) tmp_month = "0" + tmp_month;
  98. if (tmp_day<10) tmp_day = "0" + tmp_day;
  99. // +"" 을 안해주면 숫자로 인식해서 더해버리므로 꼭 넣어준다.
  100. ipt_clamtodd.value = tmp_year + "" + tmp_month + "" + tmp_day;
  101. ipt_clamfromdd.value = tmp_year + "" + tmp_month + "" + tmp_day;
  102. // 기준일자
  103. model.setValue("/root/hidden/send2/basedd", ipt_clamfromdd.value);
  104. // 생성된 자료 선택 제외 여부 2008-10-08
  105. model.setValue("/root/hidden/screen1/checkyn1", "Y");
  106. // 진료과목
  107. submit("TRPID10102");
  108. model.refresh();
  109. }
  110. ]]>
  111. </script>
  112. </xhtml:head>
  113. <xhtml:body pagewidth="1250" pageheight="840" style="margin-left:8; margin-top:0; margin-right:8; margin-bottom:0; ">
  114. <group id="group1" style="left:0px; top:0px; width:1195px; height:13px; ">
  115. <caption id="caption6" class="tit_1" style="left:0px; top:0px; width:231px; height:15px; ">입원 원무/심사 금액 점검</caption>
  116. </group>
  117. <group id="group3" scroll="auto" style="left:0px; top:13px; width:1230px; height:817px; ">
  118. <group id="group2" style="left:0px; top:10px; width:1225px; height:40px; vertical-align:top; background-color:#fffbf2; border-color:#ffd799; ">
  119. <shape id="roundrect1" class="roundrect_search" appearance="roundrect" ellipsewidth="10" ellipseheight="10" style="left:0px; top:0px; width:1225px; height:40px; "/>
  120. <line id="line13" style="x1:1148px; y1:11px; x2:1148px; y2:33px; border-color:#ffe4bb; border-left-style:solid; "/>
  121. <select1 id="cmb_insutype" ref="/root/send/insutype" class="combo_search" appearance="minimal" style="left:390px; top:11px; width:90px; height:19px; ">
  122. <choices>
  123. <item>
  124. <label>0.전체</label>
  125. <value>0</value>
  126. </item>
  127. <item>
  128. <label>1.보험+급여</label>
  129. <value>1</value>
  130. </item>
  131. <item>
  132. <label>2.보험</label>
  133. <value>2</value>
  134. </item>
  135. <item>
  136. <label>3.급여</label>
  137. <value>3</value>
  138. </item>
  139. <item>
  140. <label>4.급여1종</label>
  141. <value>4</value>
  142. </item>
  143. <item>
  144. <label>5.급여2종</label>
  145. <value>5</value>
  146. </item>
  147. <item>
  148. <label>6.산재</label>
  149. <value>6</value>
  150. </item>
  151. <item>
  152. <label>7.자보</label>
  153. <value>7</value>
  154. </item>
  155. </choices>
  156. <!--choices>
  157. <itemset nodeset="/root/init/P0008list/P0008">
  158. <label ref="cdnm"/>
  159. <value ref="cdid"/>
  160. </itemset>
  161. </choices-->
  162. </select1>
  163. <caption id="caption3" class="search_name" style="left:15px; top:9px; width:86px; height:17px; ">정산일자 :</caption>
  164. <caption id="caption4" class="search_name" style="left:301px; top:9px; width:86px; height:17px; ">보험유형 :</caption>
  165. <input id="ipt_clamfromdd" ref="/root/send/clamfromdd" class="input_search" inputtype="date" format="yyyy-mm-dd" style="left:104px; top:11px; width:85px; height:19px; ">
  166. <script type="javascript" ev:event="xforms-value-changed">
  167. <![CDATA[
  168. if (ipt_clamfromdd.value > ipt_clamtodd.value) {
  169. ipt_clamtodd.value = ipt_clamfromdd.value;
  170. }
  171. if (ipt_clamfromdd.value.substr(0,6) != ipt_clamtodd.value.substr(0,6)) {
  172. ipt_clamtodd.value = ipt_clamfromdd.value;
  173. }
  174. model.setValue("/root/hidden/send2/basedd", ipt_clamfromdd.value);
  175. ]]>
  176. </script>
  177. </input>
  178. <input id="ipt_clamtodd" ref="/root/send/clamtodd" class="input_search" inputtype="date" format="yyyy-mm-dd" style="left:192px; top:11px; width:85px; height:19px; ">
  179. <script type="javascript" ev:event="xforms-value-changed">
  180. <![CDATA[
  181. if (ipt_clamtodd.value < ipt_clamfromdd.value) {
  182. ipt_clamfromdd.value = ipt_clamtodd.value;
  183. if (ipt_clamfromdd.value.substr(0,6) != ipt_clamym.value) {
  184. ipt_clamym.value = ipt_clamfromdd.value.substr(0,6);
  185. }
  186. }
  187. ]]>
  188. </script>
  189. </input>
  190. <button id="btn_search" class="btn1_letter2" style="left:1158px; top:11px; width:56px; height:22px; ">
  191. <caption>조회</caption>
  192. <script type="javascript" ev:event="DOMActivate">
  193. <![CDATA[
  194. model.removeNodeset("/root/main/list1");
  195. grd_cretlist.rebuildStyle();
  196. // 정산일자 조회 시 동일 월만 조회되도록 하여, 정산월이 다르면서 청구월/차수가 동일한 사후 자료의 발생을 제어한다. (2015.05.28 LEJ)
  197. var fromdd = model.getValue("/root/send/clamfromdd");
  198. var todd = model.getValue("/root/send/clamtodd");
  199. var fromyear = fromdd.substr(0,4);
  200. var frommonth = fromdd.substr(4,2);
  201. var fromym = fromyear+frommonth // 조회 시작 월
  202. var toyear = todd.substr(0,4);
  203. var tomonth = todd.substr(4,2);
  204. var toym = toyear+tomonth // 조회 종료 월
  205. if (fromym != toym ) {
  206. alert("정산월이 동일한 경우만 동시 조회 가능합니다. 조회할 정산일자를 변경하세요");
  207. model.setFocus("ipt_clamtodd");
  208. return false;
  209. }
  210. submit("TRPID10103");
  211. var rowcnt = grd_cretlist.rows;
  212. for (var i = 0; i < rowcnt; i++) {
  213. var checkyn = model.getValue("/root/main/list1/cretlist["+ i +"]/checkyn");
  214. var memo = model.getValue("/root/main/list1/cretlist["+ i +"]/memo");
  215. if (checkyn == "Y" && memo =="") {
  216. grd_cretlist.rowStyle(i+1, "data", "background-color") = "#ffcc00";
  217. }
  218. if (memo !="") {
  219. grd_cretlist.cellStyle("background-color", i+1, grd_cretlist.colRef("memo")) = "#ffff00";
  220. }
  221. }
  222. model.refresh();
  223. ]]>
  224. </script>
  225. </button>
  226. <button id="button27" class="icon_search" style="left:1045px; top:12px; width:16px; height:16px; ">
  227. <caption/>
  228. <script type="javascript" ev:event="onclick">
  229. <![CDATA[
  230. var ipt_pid = model.getValue("/root/send/pid");
  231. if (ipt_pid) {
  232. model.setValue("/root/hidden/sppmc02500/cond/srchcond", "1"); // 검색조건 : 등록번호로 설정
  233. model.setValue("/root/hidden/sppmc02500/cond/pid", ipt_pid);
  234. }
  235. else {
  236. model.resetInstanceNode("/root/hidden/sppmc02500/cond");
  237. }
  238. modal("SPPMC02500", 1,150, 150, "SPPMC02500", "/root/hidden/sppmc02500/cond", "/root/send");
  239. var srch_pid = model.getValue("/root/main/patinfo/patinfolist/pid");
  240. var srch_hngnm = model.getValue("/root/main/patinfo/patinfolist/hngnm");
  241. if (srch_pid) { // SPPMC02500_환자조회 화면에서 조회한 경우임
  242. model.removeNodeset("/root/main/patinfo/patinfolist"); // patinfolist가 제거됨 (resetInstanceNode의 경우 값은 지우고 노드는 남아있음)
  243. model.makeNode("/root/main/patinfo/patinfolist"); // SPPMC02500_환자조회 팝업을 다시 조회할 경우를 위해 다시 노드를 추가함
  244. model.setValue("/root/send/pid", srch_pid);
  245. model.setValue("/root/send/name", srch_hngnm);
  246. }
  247. model.refresh();
  248. ]]>
  249. </script>
  250. </button>
  251. <caption id="caption1" class="search_name" style="left:781px; top:9px; width:86px; height:17px; ">환자번호 :</caption>
  252. <input id="ipt_pid" ref="/root/send/pid" class="input_default" style="left:870px; top:11px; width:85px; height:19px; ">
  253. <script type="javascript" ev:event="onkeypress">
  254. <![CDATA[
  255. // Enter 입력 시에
  256. if (event.keyCode == '13') {
  257. // model.setValue("/root/send/pid", ipt_pid.currentText());
  258. setInputNodeCurText();
  259. var ipt_pid = model.getValue("/root/send/pid");
  260. if (ipt_pid) {
  261. model.setValue("/root/hidden/sppmc02500/cond/srchcond", "1"); // 검색조건 : 등록번호로 설정
  262. model.setValue("/root/hidden/sppmc02500/cond/pid", ipt_pid);
  263. }
  264. else {
  265. model.resetInstanceNode("/root/hidden/sppmc02500/cond");
  266. }
  267. modal("SPPMC02500", 1,150, 150, "SPPMC02500", "/root/hidden/sppmc02500/cond", "/root/send");
  268. var srch_pid = model.getValue("/root/main/patinfo/patinfolist/pid");
  269. var srch_hngnm = model.getValue("/root/main/patinfo/patinfolist/hngnm");
  270. if (srch_pid) { // SPPMC02500_환자조회 화면에서 조회한 경우임
  271. model.removeNodeset("/root/main/patinfo/patinfolist"); // patinfolist가 제거됨 (resetInstanceNode의 경우 값은 지우고 노드는 남아있음)
  272. model.makeNode("/root/main/patinfo/patinfolist"); // SPPMC02500_환자조회 팝업을 다시 조회할 경우를 위해 다시 노드를 추가함
  273. model.setValue("/root/send/pid", srch_pid);
  274. model.setValue("/root/send/name", srch_hngnm);
  275. }
  276. model.refresh();
  277. }
  278. ]]>
  279. </script>
  280. </input>
  281. <input id="ipt_name" ref="/root/send/name" class="input_default" style="left:958px; top:11px; width:85px; height:19px; "/>
  282. <select1 id="cmb_orddeptcd" ref="/root/send/orddeptcd" class="combo_default" appearance="minimal" style="left:599px; top:11px; width:140px; height:19px; ">
  283. <choices>
  284. <itemset nodeset="/root/hidden/list1/dept">
  285. <label ref="depthngnm"/>
  286. <value ref="deptcd"/>
  287. </itemset>
  288. </choices>
  289. </select1>
  290. <caption id="caption2" class="search_name" style="left:510px; top:9px; width:86px; height:17px; ">진료과목 :</caption>
  291. </group>
  292. <line id="line12" class="line_1" style="x1:0px; y1:74px; x2:1225px; y2:75px; "/>
  293. <caption id="caption32" class="tit_2" style="left:5px; top:59px; width:150px; height:13px; ">퇴원수납 대상자</caption>
  294. <datagrid id="grd_cretlist" nodeset="/root/main/list1/cretlist" class="datagrid2" caption="등록번호^환자성명^입원일자^CNo^상&#xA;태^메모^진료과^유형^보조^수납일자^정산기간^정산기간^원무^원무^원무^원무^원무^원무^원무^자료수집^자료수집^자료수집^자료수집^자료수집^자료수집^자료수집^사후^사후^사후^사후^사후^사후^사후^최종청구월^최초개시일^최종종료일^명세&#xA;건수^chk^주&#xA;/&#xA;부|등록번호^환자성명^입원일자^CNo^상&#xA;태^메모^진료과^유형^보조^수납일자^시작일^종료일^급여 총액^본인부담액^청구액^장애인^상한액^지원금^대불금^급여 총액^본인부담액^청구액^장애인^상한액^지원금^대불금^급여 총액^본인부담액^청구액^장애인^상한액^지원금^대불금^최종청구월^최초개시일^최종종료일^명세&#xA;건수^chk^주&#xA;/&#xA;부" colsep="^" colwidth="59, 65, 70, 30, 25, 40, 45, 30, 30, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 33, 27, 25" ellipsis="true" explorerbar="sortshow" extendlastcol="scroll" frozencols="6" mergecellsfixedrows="bycolrec" rowheader="seq" rowsep="|" style="left:0px; top:79px; width:1225px; height:706px; ">
  295. <col ref="pid" style="text-align:center; "/>
  296. <col ref="hngnm"/>
  297. <col ref="indd" format="yyyy-mm-dd" style="text-align:center; "/>
  298. <col ref="cretno" visibility="hidden" style="text-align:center; "/>
  299. <col ref="acptstat" style="text-align:center; "/>
  300. <col ref="memo" type="inputbutton"/>
  301. <col ref="deptnm" style="text-align:center; "/>
  302. <col ref="insukind" style="text-align:center; "/>
  303. <col ref="suppkind" style="text-align:center; "/>
  304. <col ref="rcptexecdd" format="yyyy-mm-dd" style="text-align:center; "/>
  305. <col ref="incalcfromdd" format="yyyy-mm-dd" style="text-align:center; "/>
  306. <col ref="incalcenddd" format="yyyy-mm-dd" style="text-align:center; "/>
  307. <col ref="payamt" format="#,###" style="text-align:right; "/>
  308. <col ref="ownbamt" format="#,###" style="text-align:right; "/>
  309. <col ref="insubamt" format="#,###" style="text-align:right; "/>
  310. <col ref="handcapfund" format="#,###" style="text-align:right; "/>
  311. <col ref="payownblimamt" format="#,###" style="text-align:right; "/>
  312. <col ref="suppamt" format="#,###" style="text-align:right; "/>
  313. <col ref="procsubtamt" format="#,###" style="text-align:right; "/>
  314. <col ref="tot00" format="#,###" style="text-align:right; "/>
  315. <col ref="ownb00" format="#,###" style="text-align:right; "/>
  316. <col ref="clam00" format="#,###" style="text-align:right; "/>
  317. <col ref="handcap00" format="#,###" style="text-align:right; "/>
  318. <col ref="max00" format="#,###" style="text-align:right; "/>
  319. <col ref="supp00" format="#,###" style="text-align:right; "/>
  320. <col ref="subt00" format="#,###" style="text-align:right; "/>
  321. <col ref="tot12" format="#,###" style="text-align:right; "/>
  322. <col ref="ownb12" format="#,###" style="text-align:right; "/>
  323. <col ref="clam12" format="#,###" style="text-align:right; "/>
  324. <col ref="handcap12" format="#,###" style="text-align:right; "/>
  325. <col ref="max12" format="#,###" style="text-align:right; "/>
  326. <col ref="supp12" format="#,###" style="text-align:right; "/>
  327. <col ref="subt12" format="#,###" style="text-align:right; "/>
  328. <col ref="clamym_max" style="text-align:center; "/>
  329. <col ref="ordfromdd" format="yyyy-mm-dd" style="text-align:center; "/>
  330. <col ref="ordtodd" format="yyyy-mm-dd" style="text-align:center; "/>
  331. <col ref="clbscnt" style="text-align:center; "/>
  332. <col ref="checkyn"/>
  333. <col ref="mskind"/>
  334. <script type="javascript" ev:event="onbuttonclick">
  335. <![CDATA[
  336. if(grd_cretlist.col == grd_cretlist.colRef("memo")) {
  337. var afjudgrow = grd_cretlist.row;
  338. model.removenode("/root/hidden/temp/memo");
  339. model.makeNode("/root/hidden/temp/memo");
  340. model.setValue("/root/hidden/temp/memo", grd_cretlist.valueMatrix(afjudgrow, grd_cretlist.colRef("memo")));
  341. grp_memo.visible = true;
  342. grp_memo.refresh();
  343. }
  344. ]]>
  345. </script>
  346. </datagrid>
  347. <button id="btn_excelsave" class="btn2_letter4" style="left:1160px; top:54px; width:64px; height:19px; ">
  348. <caption>엑셀저장</caption>
  349. <script type="javascript" ev:event="DOMActivate">
  350. <![CDATA[
  351. if (grd_cretlist.rows > 1) {
  352. var fileName = window.fileDialog("save", "", false, "excel", "xls", "Excel Files(*.xls)|*.xls|All Files (*.*)|*.*");
  353. if (fileName != "") {
  354. grd_cretlist.saveExcel(fileName, "sheetname:;colhiddenextend:false;rowhiddenextend:false;", true, true, "", "", true);
  355. }
  356. } else {
  357. messageBox("엑셀저장할 대상자가", "I004"); ///엑셀저장할 대상자가 없습니다.
  358. }
  359. ]]>
  360. </script>
  361. </button>
  362. <group id="grp_memo" visibility="hidden" style="left:315px; top:160px; width:370px; height:210px; border-color:#c7a3cf; border-style:solid; ">
  363. <caption id="caption7" class="tit_2" style="left:5px; top:5px; width:179px; height:13px; ">입원 사후 자료수집 메모</caption>
  364. <line id="line1" class="line_1" style="x1:0px; y1:22px; x2:365px; y2:22px; "/>
  365. <textarea id="textarea1" ref="/root/hidden/temp/memo" style="left:4px; top:29px; width:360px; height:150px; "/>
  366. <button id="button4" class="btn4_letter2" style="left:252px; top:184px; width:56px; height:22px; ">
  367. <caption>저장</caption>
  368. <script type="javascript" ev:event="DOMActivate">
  369. <![CDATA[
  370. var aftjudgcmt = textarea1.currentText;
  371. var TotLength = getStringLength(aftjudgcmt);
  372. if (TotLength > 4000){
  373. messageBox("메모 내용이 너무길어 저장을 ","E001");
  374. return false;
  375. }
  376. for (var k=0; k < grd_cretlist.selectedRows; k++ ) {
  377. var row = grd_cretlist.selectedRow(k);
  378. var col = grd_cretlist.colRef("memo");
  379. grd_cretlist.valueMatrix(row, col) = aftjudgcmt;
  380. model.resetInstanceNode("/root/send/temp");
  381. model.makeValue("/root/send/temp/spclspec", aftjudgcmt);
  382. model.makeValue("/root/send/temp/spclmemoflag", 'B');
  383. model.makeValue("/root/send/temp/m", "i");
  384. model.makeValue("/root/send/temp/unitflag", "M");
  385. model.makeValue("/root/send/temp/spclcd", "MX998");
  386. model.makeValue("/root/send/temp/seqno", "1");
  387. model.makeValue("/root/send/temp/pid", grd_cretlist.valueMatrix(row, grd_cretlist.colRef("pid")));
  388. model.makeValue("/root/send/temp/indd", grd_cretlist.valueMatrix(row, grd_cretlist.colRef("indd")));
  389. model.makeValue("/root/send/temp/mskind", grd_cretlist.valueMatrix(row, grd_cretlist.colRef("mskind")));
  390. model.makeValue("/root/send/temp/cretno", grd_cretlist.valueMatrix(row, grd_cretlist.colRef("cretno")));
  391. model.makeValue("/root/send/temp/fromdd", grd_cretlist.valueMatrix(row, grd_cretlist.colRef("indd")));
  392. model.makeValue("/root/send/temp/instcd", "");
  393. model.makeValue("/root/send/temp/lastupdtrid", "");
  394. submit("TXPID10103",false);
  395. }
  396. grp_memo.visible = false;
  397. ]]>
  398. </script>
  399. </button>
  400. <button id="button5" class="btn4_letter2" style="left:309px; top:184px; width:56px; height:22px; ">
  401. <caption>닫기</caption>
  402. <script type="javascript" ev:event="DOMActivate">
  403. <![CDATA[
  404. grp_memo.visible = false;
  405. ]]>
  406. </script>
  407. </button>
  408. </group>
  409. <caption id="caption5" style="left:10px; top:790px; width:1165px; height:20px; font-size:9pt; font-weight:bold; color:#ff0000; ">*** 원무 및 자료수집 각 금액항목의 차가 1,000원 이상인 환자 중 심사 메모가 없는 경우 주황색으로 표기함. 자료수집 및 사후의 급여총액/본인부담/청구액에는 선별급여 품목이 포함됨. </caption>
  410. </group>
  411. </xhtml:body>
  412. </xhtml:html>