SMPMC01300_특이환자관리.xrw 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429
  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. <spcfpat>
  11. <spcfpatlist/>
  12. </spcfpat>
  13. <result/>
  14. </main>
  15. <send>
  16. <pid/>
  17. <updatedata>
  18. <datalist/>
  19. </updatedata>
  20. </send>
  21. <init>
  22. <P0314list>
  23. <P0314>
  24. <cdnm/>
  25. <cdid/>
  26. </P0314>
  27. </P0314list>
  28. </init>
  29. <hidden/>
  30. </root>
  31. </instance>
  32. <script type="javascript" ev:event="xforms-ready">
  33. <![CDATA[
  34. zbcfGetCodeList(new Array("P0314"),
  35. new Array("/root/init/P0314list"));
  36. //초기화 및 날자 입력 항목에 오늘 날자 세팅
  37. fInitialize();
  38. //2008-09-04 LEEDS
  39. //원목팀에서 화면을 호출할경우 조회만 가능하도록 저장/삭제 버튼 비활성화
  40. var parm = getScreenMenuParameter();
  41. if( parm == '4050400000' ){
  42. button8.visible = false;
  43. button14.visible = false;
  44. button4.visible = false;
  45. }
  46. // //다른곳에서 화면 호출 조회
  47. // var pid = model.getValue("/root/source/pid");
  48. // if( pid != ""){
  49. // ipt_pid.currentText = pid;
  50. // fSearchPatInfo();
  51. // }
  52. ]]>
  53. </script>
  54. <submission id="TRZBC00101" mediatype="application/x-www-form-urlencoded" method="post" replace="instance"/>
  55. <submission id="TRPMC01300" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" resultref="/root/main/spcfpat"/>
  56. <submission id="TXPMC01300" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/updatedata" resultref="/root/main/spcfpat"/>
  57. </model>
  58. <script type="javascript" src="../../../com/commonweb/js/common.js"/>
  59. <script type="javascript" src="../../../com/basiccodeweb/js/ZBC001.js"/>
  60. <script type="javascript" src="../../../com/commonweb/js/dateHelper.js"/>
  61. <script type="javascript">
  62. <![CDATA[
  63. //특이내역 내역 검색
  64. function fSearch(){
  65. if( model.getValue("/root/main/popupendflag") == "ok" ){
  66. var pid = model.getValue("/root/main/patinfo/patinfolist/pid");
  67. if( pid.length < 1 ){
  68. messageBox("환자번호가 정확히 입력되지", "E007");
  69. return false;
  70. }
  71. model.setValue("/root/send/pid", pid);
  72. submit("TRPMC01300");
  73. datagrid2.rebuildStyle();
  74. // 메르스 환자 배경표시
  75. for(var i = 0 ; i < datagrid2.rows ; i++) {
  76. if(datagrid2.valueMatrix(i, datagrid2.colRef("workflag")) == "2") {
  77. datagrid2.rowStyle(i,"data","background-color") = "#ff00ff"; //빨강
  78. }
  79. }
  80. var rowCnt = datagrid2.rows - datagrid2.fixedRows + 1;
  81. if(rowCnt < 2){
  82. fAddRow();
  83. }
  84. }else model.refresh();
  85. }
  86. //특이내역 테이블에 한 행을 추가하고 숨긴 컬럼 값을 세팅한다.
  87. function fAddRow(){
  88. var pid = model.getValue("/root/main/patinfo/patinfolist/pid");
  89. if( pid.length >= 1 ){
  90. datagrid2.addRow();
  91. var bottom = datagrid2.bottomRow;
  92. model.setValue("/root/main/spcfpat/spcfpatlist[" + bottom + "]/pid" , pid);
  93. var curDate = getCurrentDate();
  94. model.setValue("/root/main/spcfpat/spcfpatlist[" + bottom + "]/fromdd", curDate);
  95. model.setValue("/root/main/spcfpat/spcfpatlist[" + bottom + "]/todd", "99991231");
  96. return true;
  97. }else{
  98. messageBox("환자번호가 정확이 입력되지", "E007");
  99. return false;
  100. }
  101. }
  102. function fInitialize() {
  103. //model.removeNodeset("/root/main/insukindcdspec/insukindcdspeclist");
  104. model.resetInstanceNode("/root/send");
  105. model.removeNodeset("/root/main/spcfpat/spcfpatlist");
  106. //날자 입력 항목에 오늘 날자 세팅
  107. //var curDate = getCurrentDate();
  108. //model.setValue("/root/send/fromdd", curDate);
  109. //model.setValue("/root/send/todd", curDate);
  110. //odel.setFocus("cmb_insukind");
  111. model.refresh();
  112. }
  113. ]]>
  114. </script>
  115. </xhtml:head>
  116. <xhtml:body guideline="1,1195;" style="margin-left:8; margin-top:0; margin-right:8; margin-bottom:0; ">
  117. <group id="group1" style="left:0px; top:0px; width:1195px; height:13px; ">
  118. <caption id="caption6" class="tit_1" style="left:0px; top:0px; width:189px; height:13px; ">특이환자관리</caption>
  119. <caption id="caption4" class="patient_text_black" style="left:922px; top:0px; width:272px; "/>
  120. </group>
  121. <group id="group3" scroll="auto" style="left:0px; top:13px; width:1195px; height:744px; ">
  122. <line id="line5" class="line_2" style="x1:0px; y1:200px; x2:1194px; y2:200px; "/>
  123. <line id="line4" class="line_2" style="x1:0px; y1:176px; x2:1194px; y2:176px; "/>
  124. <line id="line3" class="line_2" style="x1:0px; y1:152px; x2:1194px; y2:152px; "/>
  125. <line id="line2" class="line_2" style="x1:0px; y1:128px; x2:1194px; y2:128px; "/>
  126. <line id="line6" class="line_2" style="x1:0px; y1:104px; x2:1194px; y2:104px; "/>
  127. <caption id="caption1" class="tit_2" style="left:5px; top:56px; width:95px; height:13px; ">전표등록</caption>
  128. <line id="line1" class="line_1" style="x1:0px; y1:71px; x2:1194px; y2:71px; "/>
  129. <caption id="caption7" class="cell_1" style="left:0px; top:76px; width:100px; height:23px; vertical-align:middle; ">약품코드</caption>
  130. <caption id="caption8" class="cell_1" style="left:428px; top:76px; width:100px; height:23px; vertical-align:middle; ">전표종류</caption>
  131. <button id="button12" class="btn2_letter4" style="left:1085px; top:50px; width:64px; height:19px; ">
  132. <caption>임시저장</caption>
  133. </button>
  134. <button id="button13" class="btn2_letter2" style="left:1152px; top:50px; width:42px; height:19px; ">
  135. <caption>삭제</caption>
  136. </button>
  137. <select1 id="radio1" appearance="full" overflow="visible" style="left:103px; top:79px; width:44px; height:16px; border-style:none; ">
  138. <choices>
  139. <item>
  140. <label>대체</label>
  141. <value>radio1</value>
  142. </item>
  143. </choices>
  144. </select1>
  145. <select1 id="radio2" appearance="full" overflow="visible" style="left:203px; top:79px; width:44px; height:16px; border-style:none; ">
  146. <choices>
  147. <item>
  148. <label>입금</label>
  149. <value>radio1</value>
  150. </item>
  151. </choices>
  152. </select1>
  153. <select1 id="radio3" appearance="full" overflow="visible" style="left:303px; top:79px; width:44px; height:16px; border-style:none; ">
  154. <choices>
  155. <item>
  156. <label>출금</label>
  157. <value>radio1</value>
  158. </item>
  159. </choices>
  160. </select1>
  161. <select1 id="combo1" class="combo_default" appearance="minimal" style="left:531px; top:77px; width:322px; height:19px; ">
  162. <choices>
  163. <item>
  164. <label>combo1</label>
  165. <value>combo1</value>
  166. </item>
  167. </choices>
  168. </select1>
  169. <caption id="caption3" class="cell_1" style="left:0px; top:100px; width:100px; height:23px; vertical-align:middle; ">사용부서</caption>
  170. <caption id="caption5" class="cell_1" style="left:428px; top:100px; width:100px; height:23px; vertical-align:middle; ">작성자</caption>
  171. <input id="input1" class="input_essential" style="left:103px; top:101px; width:100px; height:19px; "/>
  172. <button id="button2" class="icon_search" style="left:206px; top:102px; width:16px; height:16px; ">
  173. <caption/>
  174. </button>
  175. <input id="input2" class="input_default" appearance="input" style="left:225px; top:101px; width:200px; height:19px; "/>
  176. <button id="button3" class="icon_search" style="left:634px; top:102px; width:16px; height:16px; ">
  177. <caption/>
  178. </button>
  179. <input id="input3" class="input_essential" style="left:531px; top:101px; width:100px; height:19px; "/>
  180. <input id="input4" class="input_default" appearance="input" style="left:653px; top:101px; width:200px; height:19px; "/>
  181. <select1 id="radio4" appearance="full" overflow="visible" style="left:103px; top:127px; width:44px; height:16px; border-style:none; ">
  182. <choices>
  183. <item>
  184. <label>차변</label>
  185. <value>radio1</value>
  186. </item>
  187. </choices>
  188. </select1>
  189. <select1 id="radio5" appearance="full" overflow="visible" style="left:203px; top:127px; width:44px; height:16px; border-style:none; ">
  190. <choices>
  191. <item>
  192. <label>대변</label>
  193. <value>radio1</value>
  194. </item>
  195. </choices>
  196. </select1>
  197. <caption id="caption9" class="cell_1" style="left:0px; top:124px; width:100px; height:23px; vertical-align:middle; ">차대구분</caption>
  198. <caption id="caption10" class="cell_1" style="left:428px; top:124px; width:100px; height:23px; vertical-align:middle; ">계정코드</caption>
  199. <button id="button6" class="icon_search" style="left:634px; top:126px; width:16px; height:16px; ">
  200. <caption/>
  201. </button>
  202. <input id="input5" class="input_essential" style="left:531px; top:125px; width:100px; height:19px; "/>
  203. <input id="input6" class="input_default" appearance="input" style="left:653px; top:125px; width:200px; height:19px; "/>
  204. <button id="button7" class="icon_search" style="left:408px; top:150px; width:16px; height:16px; ">
  205. <caption/>
  206. </button>
  207. <caption id="caption11" class="cell_1" style="left:0px; top:148px; width:100px; height:23px; vertical-align:middle; ">상대처구분</caption>
  208. <input id="input7" class="input_essential" style="left:256px; top:149px; width:149px; height:19px; "/>
  209. <input id="input8" class="input_default" appearance="input" style="left:427px; top:149px; width:426px; height:19px; "/>
  210. <caption id="caption12" class="cell_1" style="left:856px; top:124px; width:100px; height:23px; vertical-align:middle; "/>
  211. <caption id="caption13" class="cell_1" style="left:856px; top:100px; width:100px; height:23px; vertical-align:middle; "/>
  212. <caption id="caption14" class="cell_1" style="left:856px; top:76px; width:100px; height:23px; vertical-align:middle; ">금액</caption>
  213. <input id="input9" class="input_default" appearance="input" style="left:959px; top:101px; width:235px; height:19px; "/>
  214. <input id="input10" class="input_default" appearance="input" style="left:959px; top:77px; width:235px; height:19px; "/>
  215. <input id="input11" class="input_default" appearance="input" style="left:959px; top:125px; width:235px; height:19px; "/>
  216. <select1 id="combo2" class="combo_essential" appearance="minimal" style="left:103px; top:149px; width:150px; height:19px; ">
  217. <choices>
  218. <item>
  219. <label>combo1</label>
  220. <value>combo1</value>
  221. </item>
  222. </choices>
  223. </select1>
  224. <caption id="caption15" class="cell_1" style="left:856px; top:148px; width:100px; height:23px; vertical-align:middle; "/>
  225. <input id="input12" class="input_default" appearance="input" style="left:103px; top:173px; width:321px; height:19px; "/>
  226. <caption id="caption16" class="cell_1" style="left:0px; top:172px; width:100px; height:23px; vertical-align:middle; ">적요</caption>
  227. <caption id="caption17" class="cell_1" style="left:856px; top:172px; width:100px; height:23px; vertical-align:middle; ">증빙구분</caption>
  228. <input id="input13" class="input_default" appearance="input" style="left:959px; top:149px; width:235px; height:19px; "/>
  229. <button id="button15" class="icon_search" style="left:634px; top:174px; width:16px; height:16px; ">
  230. <caption/>
  231. </button>
  232. <caption id="caption18" class="cell_1" style="left:428px; top:172px; width:100px; height:23px; vertical-align:middle; ">계좌번호</caption>
  233. <input id="input15" class="input_default" style="left:531px; top:173px; width:100px; height:19px; "/>
  234. <input id="input16" class="input_default" appearance="input" style="left:653px; top:173px; width:200px; height:19px; "/>
  235. <caption id="caption19" class="cell_1" style="left:0px; top:196px; width:100px; height:47px; vertical-align:middle; ">기재사항</caption>
  236. <textarea id="textarea1" style="left:103px; top:197px; width:750px; height:43px; "/>
  237. <caption id="caption20" class="tit_2" style="left:5px; top:254px; width:100px; height:13px; ">전표 등록내역</caption>
  238. <line id="line8" class="line_1" style="x1:0px; y1:269px; x2:1194px; y2:269px; "/>
  239. <input id="output3" class="input_default" inputtype="date" appearance="input" style="left:959px; top:221px; width:235px; height:19px; "/>
  240. <datagrid id="datagrid1" caption="연번^계정명^상대처^기재사항1^기재사항2^기재사항3^기재사항4^적요^증빙^차변금액^대변금액" colsep="^" colwidth="48, 100, 100, 100, 100, 100, 100, 100, 100, 100, 154" dataheight="25" defaultrows="17" extendlastcol="scroll" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="25" rowsep="|" style="left:0px; top:274px; width:1194px; height:425px; ">
  241. <col/>
  242. <col/>
  243. <col/>
  244. <col/>
  245. <col/>
  246. <col/>
  247. <col/>
  248. <col/>
  249. <col/>
  250. <col/>
  251. <col/>
  252. </datagrid>
  253. <select1 id="combo3" class="combo_default" appearance="minimal" style="left:959px; top:173px; width:235px; height:19px; ">
  254. <choices>
  255. <item>
  256. <label>combo1</label>
  257. <value>combo1</value>
  258. </item>
  259. </choices>
  260. </select1>
  261. <input id="input14" class="input_default" appearance="input" style="left:958px; top:705px; width:116px; height:19px; "/>
  262. <caption id="caption24" class="cell_1" style="left:855px; top:704px; width:100px; height:23px; vertical-align:middle; ">금액합계</caption>
  263. <line id="line9" class="line_3" style="x1:855px; y1:726px; x2:1194px; y2:726px; "/>
  264. <line id="line10" class="line_3" style="x1:855px; y1:702px; x2:1194px; y2:702px; "/>
  265. <output id="input17" class="output_fix" appearance="output" style="left:1077px; top:705px; width:117px; height:19px; "/>
  266. <shape id="roundrect2" appearance="roundrect" ellipsewidth="10" ellipseheight="10" style="left:0px; top:702px; width:305px; height:30px; background-color:transparent; border-color:#7cbbdd; border-style:solid; "/>
  267. <caption id="caption25" class="cell_2" style="left:5px; top:707px; width:70px; height:20px; vertical-align:middle; ">범 례</caption>
  268. <caption id="caption26" class="color_1" style="left:95px; top:709px; width:15px; height:15px; vertical-align:middle; "/>
  269. <caption id="caption27" style="left:113px; top:710px; width:50px; height:14px; vertical-align:middle; ">차대구분</caption>
  270. <caption id="caption30" class="color_3" style="left:180px; top:708px; width:15px; height:15px; vertical-align:middle; "/>
  271. <caption id="caption31" style="left:198px; top:709px; width:26px; height:14px; vertical-align:middle; ">차변</caption>
  272. <caption id="caption32" class="color_4" style="left:245px; top:708px; width:15px; height:15px; vertical-align:middle; "/>
  273. <caption id="caption33" style="left:263px; top:709px; width:26px; height:14px; vertical-align:middle; ">대변</caption>
  274. <line id="line11" class="line_2" style="x1:856px; y1:224px; x2:1194px; y2:224px; "/>
  275. <caption id="caption29" class="cell_1" style="left:856px; top:220px; width:100px; height:23px; vertical-align:middle; ">전표승인일자</caption>
  276. <line id="line7" class="line_3" style="x1:0px; y1:242px; x2:1194px; y2:242px; "/>
  277. <caption id="caption28" class="cell_1" style="left:856px; top:196px; width:100px; height:23px; vertical-align:middle; ">승인정보</caption>
  278. <output id="output4" class="output_fix" style="left:959px; top:197px; width:235px; height:19px; "/>
  279. </group>
  280. <group id="group2" scroll="auto" style="left:0px; top:13px; width:1195px; height:744px; ">
  281. <group id="group6" style="left:0px; top:197px; width:1195px; height:544px; ">
  282. <!-- 수정이력 20100325 JHP 홍옥현 선생님 요청 특이내역 크게 보여주세요. 뒤에 날짜는 작게해주세요 -->
  283. <datagrid id="datagrid2" nodeset="/root/main/spcfpat/spcfpatlist" autoresize="true" caption="구분^공개구분^시작일자^종료[완료]일자^종결(완료)사유^특이내역^진료(Y/N)^최초등록자^최초등록일자^최종수정자^최종수정일시^seqno^환자번호" colsep="^" colwidth="60, 70, 86, 90, 119, 708, 64, 80, 105, 80, 103, 43, 30" dataheight="25" defaultrows="2" extendlastcol="scroll" mergecellsfixedrows="bycolrec" rowheader="update" rowheight="25" rowsep="|" style="left:0px; top:33px; width:1194px; height:508px; ">
  284. <col ref="workflag" type="combo" style="text-align:center; ">
  285. <choices>
  286. <item>
  287. <label>특이사항</label>
  288. <value>1</value>
  289. </item>
  290. <item>
  291. <label>메르스</label>
  292. <value>2</value>
  293. </item>
  294. </choices>
  295. </col>
  296. <col ref="opengrde" type="combo" maxlength="1" style="text-align:center; ">
  297. <choices>
  298. <itemset nodeset="/root/init/P0314list/P0314">
  299. <label ref="cdnm"/>
  300. <value ref="cdid"/>
  301. </itemset>
  302. </choices>
  303. </col>
  304. <col ref="fromdd" type="inputdate" style="text-align:center; "/>
  305. <col ref="todd" type="inputdate" style="text-align:center; "/>
  306. <col imemode="hangul" ref="endresn" type="input"/>
  307. <col imemode="hangul" ref="acptresn" type="input"/>
  308. <col imemode="disabled" ref="ordpossyn" type="combo" maxlength="1" _chartype="upper" style="text-align:center; ">
  309. <choices>
  310. <item>
  311. <label>진료가능</label>
  312. <value>Y</value>
  313. </item>
  314. <item>
  315. <label>진료불가</label>
  316. <value>N</value>
  317. </item>
  318. </choices>
  319. </col>
  320. <col ref="fstrgstrid" style="text-align:center; "/>
  321. <col ref="fstrgstdt" format="yyyy-mm-dd hh:nn" style="text-align:center; "/>
  322. <col ref="lastupdtrid" style="text-align:center; "/>
  323. <col ref="lastupdtdt" format="yyyy-mm-dd hh:nn"/>
  324. <col ref="seqno" visibility="hidden"/>
  325. <col ref="pid" visibility="hidden"/>
  326. </datagrid>
  327. <caption id="caption46" class="tit_2" style="left:5px; top:12px; width:139px; height:13px; ">환자특이내역 리스트</caption>
  328. <shape id="rectangle1" appearance="rectangle" style="left:169px; top:9px; width:17px; height:17px; background-color:#ff00ff; border-color:#ffffff; "/>
  329. <caption id="caption2" style="left:187px; top:9px; width:326px; height:20px; ">※ 메르스 접촉자입니다.</caption>
  330. <line id="line18" class="line_1" style="x1:0px; y1:28px; x2:1194px; y2:28px; "/>
  331. <button id="button8" class="btn2_letter3" style="left:1029px; top:8px; width:53px; height:19px; ">
  332. <caption>행추가</caption>
  333. <script type="javascript" ev:event="DOMActivate">
  334. <![CDATA[
  335. fAddRow();
  336. ]]>
  337. </script>
  338. </button>
  339. <button id="button14" class="btn2_letter3" style="left:1085px; top:8px; width:53px; height:19px; ">
  340. <caption>행삭제</caption>
  341. <script type="javascript" ev:event="DOMActivate">
  342. <![CDATA[
  343. if(messageBox("선택된 행의 특이환자 내역를", "Q001") != 6) return;
  344. var cur_row = datagrid2.row;
  345. if( cur_row > 0 ){
  346. //디비에 저장되지 않은 데이타는 그냥 삭제한다.
  347. if (datagrid2.rowStatus(cur_row) == "1" || datagrid2.rowStatus(cur_row) == "3" ){
  348. datagrid2.deleteItem(cur_row);
  349. model.refresh();
  350. return;
  351. }
  352. datagrid2.addStatus( cur_row, "delete");
  353. model.setValue("/root/send/updatedata/datalist", datagrid2.getUpdateData("delete"));
  354. if ( submit("TXPMC01300") ) {
  355. //grd_serDiag.deleteItem( cur_row );
  356. }else datagrid2.removeStatus( cur_row, "delete");
  357. model.refresh();
  358. }
  359. ]]>
  360. </script>
  361. </button>
  362. <button id="button4" class="btn5_letter3" style="left:1141px; top:8px; width:53px; height:19px; ">
  363. <caption>저장</caption>
  364. <script type="javascript" ev:event="DOMActivate">
  365. <![CDATA[
  366. model.setValue("/root/send/updatedata/datalist",datagrid2.getUpdateData());
  367. if(model.getValue("/root/main/patinfo/patinfolist/pid") == ''){
  368. messageBox("환자번호를 ", "C001");
  369. return ;
  370. }else if(model.getValue("/root/main/spcfpat/spcfpatlist/opengrde") == ''){
  371. messageBox("특이구분을 ", "C001");
  372. return;
  373. }
  374. if ( submit("TXPMC01300") ) {
  375. datagrid2.clearStatus(); // submit() 성공하면 그리드의 i,u,d 상태 제거
  376. model.refresh();
  377. }
  378. ]]>
  379. </script>
  380. </button>
  381. </group>
  382. <import id="import1" src="../../../pam/patinfomngtweb/xrw/SSPMC00100_인적사항.xrw" style="left:0px; top:0px; width:1195px; height:197px; "/>
  383. </group>
  384. <group id="group4" scroll="auto" style="left:0px; top:757px; width:1195px; height:27px; ">
  385. <button id="button10" class="btn4_letter3" style="left:1126px; top:5px; width:68px; height:22px; ">
  386. <caption>초기화</caption>
  387. <script type="javascript" ev:event="DOMActivate">
  388. <![CDATA[
  389. // 화면 open시와 초기화 버튼 클릭시 화면 초기화 기능을 수행한다.
  390. //function fInitialize() {
  391. //model.removeNodeset("/root/main/insukindcdspec/insukindcdspeclist");
  392. model.resetInstanceNode("/root/send");
  393. model.resetInstanceNode("/root/main/desc");
  394. model.resetInstanceNode("/root/main/patinfo");
  395. model.resetInstanceNode("/root/main/spcfpat/spcfpatlist");
  396. // model.setFocus("ipt_pid");
  397. model.refresh();
  398. //}
  399. ]]>
  400. </script>
  401. </button>
  402. <line id="line32" class="line_6" style="x1:0px; y1:0px; x2:1194px; y2:0px; "/>
  403. </group>
  404. </xhtml:body>
  405. </xhtml:html>