SPSTP00700_종합수익일보(건진제외).xrw 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510
  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>종합수익일보(건진제외)</xhtml:title>
  6. <model id="model1">
  7. <instance id="instance1">
  8. <root xmlns="">
  9. <cond>
  10. <fromdd/>
  11. <todd/>
  12. <srchflag/>
  13. </cond>
  14. <grdlist>
  15. </grdlist>
  16. </root>
  17. </instance>
  18. <script type="javascript" ev:event="xforms-ready">
  19. <![CDATA[
  20. fInitialize();
  21. ]]>
  22. </script>
  23. <submission id="TRSTP01601" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/cond" resultref="/root/grdlist"/>
  24. </model>
  25. <script type="javascript" src="../../../com/commonweb/js/common.js"/>
  26. <script type="javascript" src="../../../com/commonweb/js/tfHelper.js"/>
  27. <script type="javascript" src="../../../com/commonweb/js/dateHelper.js"/>
  28. <!-- <script type="javascript" src="../../../sts/stspamweb/js/SPSTP00700.js"/> -->
  29. <script type="javascript">
  30. <![CDATA[
  31. function fInitialize() {
  32. model.setValue("/root/cond/fromdd", getCurrentDate()-1);
  33. model.setValue("/root/cond/todd", getCurrentDate()-1);
  34. model.refresh();
  35. //model.resetInstanceNode("/root/grdlist");
  36. }
  37. function fDispAprvCnclChng(grdObj){
  38. var nodePath = grdObj.attribute("nodeset");
  39. var chagValue = "";
  40. var mdlcd = "";
  41. var smlcd = "";
  42. grdObj.rebuildStyle();
  43. if (grdObj.attribute("id") == "grd_ordearn") {
  44. for(var i = 1; i < grdObj.rows; i++){
  45. chagValue = model.getValue(nodePath + "[" + i + "]/dpt");
  46. if(chagValue == "1"){
  47. grdObj.rowStyle(i, "data", "background-color") = "#ffff99";
  48. grdObj.rowStyle(i, "data", "font-weight") = "bold";
  49. }
  50. //진료수익(본인,청구)만 펼쳐지도록(선택진료는 제외)
  51. mdlcd= model.getValue(nodePath + "[" + i + "]/mdlcd");
  52. smlcd= model.getValue(nodePath + "[" + i + "]/smlcd");
  53. if (smlcd == "12" || mdlcd == "03" || mdlcd == "04") {
  54. grdObj.iscollapsed(i) = true;
  55. } else {
  56. grdObj.iscollapsed(i) = false;
  57. }
  58. }
  59. } else if (grdObj.attribute("id") == "grd_unco") {
  60. for(var i = 1; i < grdObj.rows; i++){
  61. chagValue = model.getValue(nodePath + "[" + i + "]/dpt");
  62. if(chagValue == "1"){
  63. grdObj.rowStyle(i+1, "data", "background-color") = "#ffff99";
  64. grdObj.rowStyle(i+1, "data", "font-weight") = "bold";
  65. }
  66. //본인부담미수,재원미수(본인,청구),퇴원미수는 펼쳐지게
  67. mdlcd = model.getValue(nodePath + "[" + i + "]/mdlcd");
  68. if (mdlcd == "01" || mdlcd == "06" || mdlcd == "07" || mdlcd == "08") {
  69. grdObj.iscollapsed(i) = false;
  70. } else {
  71. grdObj.iscollapsed(i) = true;
  72. }
  73. }
  74. } else if (grdObj.attribute("id") == "grd_incm") {
  75. grdObj.rowStyle(1, "data", "background-color") = "#ffff99";
  76. grdObj.rowStyle(1, "data", "font-weight") = "bold";
  77. } else if (grdObj.attribute("id") == "grd_incm2") {
  78. grdObj.rowStyle(1, "data", "background-color") = "#ffff99";
  79. grdObj.rowStyle(1, "data", "font-weight") = "bold";
  80. }
  81. }
  82. function fInitDisp(){
  83. group1.attribute("height") = "355px";
  84. grd_ordearn.attribute("height") = "334px";
  85. //
  86. // group2.attribute("left") = "0px";
  87. // group2.attribute("top") = "220px";
  88. group2.attribute("height") = "424px";
  89. grd_unco.attribute("height") = "403px";
  90. group1.attribute("visibility") = "visible";
  91. group2.attribute("visibility") = "visible";
  92. group3.attribute("visibility") = "visible";
  93. group4.attribute("visibility") = "visible";
  94. group5.attribute("visibility") = "visible";
  95. setTree(grd_ordearn, grd_ordearn.colRef("dpt"), grd_ordearn.colRef("lrgnm"), true);
  96. setTree(grd_unco, grd_unco.colRef("dpt"), grd_unco.colRef("lrgnm"), true);
  97. }
  98. function fChangeDspl(groupObj){
  99. var grpNm = groupObj.attribute("id");
  100. if(grpNm == "group1"){
  101. if(groupObj.attribute("height") == "712px"){
  102. groupObj.attribute("height") = "355px";
  103. grd_ordearn.attribute("height") = "334px";
  104. // group2.attribute("visibility") = "visible";
  105. // group3.attribute("visibility") = "visible";
  106. // group4.attribute("visibility") = "visible";
  107. // group5.attribute("visibility") = "visible";
  108. //
  109. setTree(grd_ordearn, grd_ordearn.colRef("dpt"), grd_ordearn.colRef("lrgnm"), true);
  110. }else{
  111. groupObj.attribute("visibility") = "visible";
  112. groupObj.attribute("height") = "712px";
  113. grd_ordearn.attribute("height") = "688px";
  114. // group2.attribute("visibility") = "hidden";
  115. // group3.attribute("visibility") = "hidden";
  116. // group4.attribute("visibility") = "hidden";
  117. // group5.attribute("visibility") = "hidden";
  118. setTree(grd_ordearn, grd_ordearn.colRef("dpt"), grd_ordearn.colRef("lrgnm"), false);
  119. }
  120. }else if(grpNm == "group2"){
  121. if(groupObj.attribute("height") == "712px" ){
  122. groupObj.attribute("height") = "424px";
  123. grd_unco.attribute("height") = "403px";
  124. // group1.attribute("visibility") = "visible";
  125. // group3.attribute("visibility") = "visible";
  126. // group4.attribute("visibility") = "visible";
  127. // group5.attribute("visibility") = "visible";
  128. setTree(grd_unco, grd_unco.colRef("dpt"), grd_unco.colRef("lrgnm"), true);
  129. }else{
  130. groupObj.attribute("height") = "712px";
  131. grd_unco.attribute("height") = "688px";
  132. // group1.attribute("visibility") = "hidden";
  133. // group3.attribute("visibility") = "hidden";
  134. // group4.attribute("visibility") = "hidden";
  135. // group5.attribute("visibility") = "hidden";
  136. setTree(grd_unco, grd_unco.colRef("dpt"), grd_unco.colRef("lrgnm"), false);
  137. }
  138. }
  139. }
  140. ]]>
  141. </script>
  142. </xhtml:head>
  143. <xhtml:body guideline="2,780;1,1198;" style="background-color:transparent; border-color:transparent; margin-left:8; margin-top:0; margin-right:0; margin-bottom:0; ">
  144. <group id="group6" visibility="visible" style="left:0px; top:639px; width:520px; height:137px; ">
  145. <caption id="caption8" class="tit_2" style="left:0px; top:0px; width:65px; height:14px; ">가수금</caption>
  146. <line id="line6" class="line_1" style="x1:0px; y1:15px; x2:520px; y2:15px; "/>
  147. <datagrid id="grd_incm2" nodeset="/root/grdlist/list06" caption="계정^입원^외래^합계" colsep="^" colwidth="150, 120, 120, 120" extendlastcol="scroll" mergecellsfixedrows="bycolrec" rowsep="|" style="left:0px; top:20px; width:520px; height:117px; ">
  148. <col ref="earnclsnm"/>
  149. <col ref="inamt" format="(-)#,###" style="text-align:right; "/>
  150. <col ref="outamt" format="(-)#,###" style="text-align:right; "/>
  151. <col ref="totamt" format="(-)#,###" style="text-align:right; "/>
  152. </datagrid>
  153. </group>
  154. <group id="group4" visibility="visible" style="left:522px; top:616px; width:678px; height:168px; ">
  155. <caption id="caption4" class="tit_2" style="left:0px; top:0px; width:55px; height:13px; ">기타</caption>
  156. <line id="line4" class="line_1" style="x1:0px; y1:15px; x2:678px; y2:15px; "/>
  157. <datagrid id="grd_etc" nodeset="/root/grdlist/list04" caption="계정^입원^외래^합계^계정^입원^외래^합계" colsep="^" colwidth="91, 82, 82, 82,91, 82, 82, 82" extendlastcol="scroll" mergecellsfixedrows="bycolrec" rowsep="|" style="left:0px; top:20px; width:678px; height:140px; ">
  158. <col ref="smlnm1"/>
  159. <col ref="inamt1" format="(-)#,###" style="text-align:right; "/>
  160. <col ref="outamt1" format="(-)#,###" style="text-align:right; "/>
  161. <col ref="totamt1" format="(-)#,###" style="text-align:right; "/>
  162. <col ref="smlnm2"/>
  163. <col ref="inamt2" format="(-)#,###" style="text-align:right; "/>
  164. <col ref="outamt2" format="(-)#,###" style="text-align:right; "/>
  165. <col ref="totamt2" format="(-)#,###" style="text-align:right; "/>
  166. </datagrid>
  167. </group>
  168. <group id="group3" visibility="visible" style="left:522px; top:497px; width:678px; height:116px; ">
  169. <caption id="caption3" class="tit_2" style="left:0px; top:0px; width:55px; height:13px; ">선수</caption>
  170. <line id="line3" class="line_1" style="x1:0px; y1:15px; x2:678px; y2:15px; "/>
  171. <datagrid id="grd_upco" nodeset="/root/grdlist/list03" caption="계정^발생^대체^합계^계정^발생^대체^합계" colsep="^" colwidth="91, 82, 82, 82, 91,82, 82, 82" extendlastcol="scroll" mergecellsfixedrows="bycolrec" rowsep="|" style="left:0px; top:20px; width:678px; height:94px; ">
  172. <col ref="smlnm1"/>
  173. <col ref="addamt1" format="(-)#,###" style="text-align:right; "/>
  174. <col ref="downamt1" format="(-)#,###" style="text-align:right; "/>
  175. <col ref="totamt1" format="(-)#,###" style="left:426px; top:23px; width:150px; height:23px; text-align:right; "/>
  176. <col ref="smlnm2"/>
  177. <col ref="addamt2" format="(-)#,###" style="text-align:right; "/>
  178. <col ref="downamt2" format="(-)#,###" style="text-align:right; "/>
  179. <col ref="totamt2" format="(-)#,###" style="text-align:right; "/>
  180. </datagrid>
  181. </group>
  182. <group id="group5" visibility="visible" style="left:0px; top:428px; width:520px; height:209px; ">
  183. <caption id="caption5" class="tit_2" style="left:0px; top:0px; width:65px; height:13px; ">수입</caption>
  184. <line id="line5" class="line_1" style="x1:0px; y1:15px; x2:520px; y2:15px; "/>
  185. <datagrid id="grd_incm" nodeset="/root/grdlist/list05" caption="계정^입원^외래^합계" colsep="^" colwidth="150, 120, 120, 120" extendlastcol="scroll" mergecellsfixedrows="bycolrec" rowsep="|" style="left:0px; top:20px; width:520px; height:186px; ">
  186. <col ref="earnclsnm"/>
  187. <col ref="inamt" format="(-)#,###" style="text-align:right; "/>
  188. <col ref="outamt" format="(-)#,###" style="text-align:right; "/>
  189. <col ref="totamt" format="(-)#,###" style="text-align:right; "/>
  190. <script type="javascript" ev:event="ondblclick">
  191. <![CDATA[
  192. if (getNodesetCount("/root/grdlist/list05") < 1) {
  193. messageBox("대상자료가 존재하지 않습니다.", "C000");
  194. return;
  195. }
  196. // 수입구분
  197. var earnclsnm = model.getValue("/root/grdlist/list05[" + grd_incm.row + "]/earnclsnm");
  198. var worktype = "all"; // 수납계정(PK021)
  199. var rcpttype = "all"; // 수납방법(cash, card, online)
  200. var ioflag = "A"; // 외래:O, 입원:I, 전체:A
  201. // 수입구분별, 외래/입원 구분별 파라미터 세팅
  202. if (isDataCell()) {
  203. // 열에 따른 구분
  204. if (grd_incm.col == grd_incm.colRef("outamt")){
  205. ioflag = "O";
  206. // 외래수납장표
  207. worktype = "A01";
  208. } else if (grd_incm.col == grd_incm.colRef("inamt")){
  209. ioflag = "I"
  210. // 입원수납장표
  211. worktype = "A02";
  212. }
  213. // 행에 따른 구분
  214. if (earnclsnm == "현금입금액") {
  215. rcpttype = "cashamt";
  216. } else if (earnclsnm == "온라인입금액") {
  217. rcpttype = "onlineamt";
  218. } else if (earnclsnm == "신용카드미수입금액") {
  219. worktype = "B03";
  220. rcpttype = "onlineamt";
  221. } else if (earnclsnm == "산전지원미수입금액") {
  222. worktype = "B04";
  223. rcpttype = "onlineamt";
  224. } else if (earnclsnm == "건유비미수입금액") {
  225. worktype = "B04";
  226. rcpttype = "onlineamt";
  227. } else if (earnclsnm == "혈액미수입금액") {
  228. worktype = "B02";
  229. rcpttype = "onlineamt";
  230. } else if (earnclsnm == "의사소견서미수입금") {
  231. worktype = "B05";
  232. rcpttype = "onlineamt";
  233. } else {
  234. rcpttype = "all";
  235. }
  236. setParameter("SMPAE00102_WORKTYPE", worktype);
  237. setParameter("SMPAE00102_RCPTTYPE", rcpttype);
  238. setParameter("SMPAE00102_IOFLAG", ioflag);
  239. setParameter("SMPAE00102_FROMDD", model.getValue("/root/cond/fromdd"));
  240. setParameter("SMPAE00102_TODD", model.getValue("/root/cond/todd"));
  241. // SMPAE00102_KU일일마감공통장표
  242. open("SMPAE00102");
  243. }
  244. ]]>
  245. </script>
  246. </datagrid>
  247. </group>
  248. <shape id="roundrect1" class="roundrect_search" appearance="roundrect" ellipsewidth="10" ellipseheight="10" style="left:0px; top:20px; width:1200px; height:43px; background-color:#fffbf2; border-color:#ffd799; "/>
  249. <line id="line13" class="line_4" style="x1:1001px; y1:28px; x2:1001px; y2:55px; border-color:#ffe4bb; border-left-style:solid; "/>
  250. <caption id="caption21" class="search_name" style="left:15px; top:32px; width:86px; height:17px; ">조회기간</caption>
  251. <button id="btn_search" class="btn1_letter2" navindex="3" style="left:1015px; top:30px; width:56px; height:22px; background-image:../../../com/commonweb/images/btn1_letter2.gif; ">
  252. <caption>조회</caption>
  253. <script type="javascript" ev:event="DOMActivate">
  254. <![CDATA[
  255. if(model.getValue("/root/cond/fromdd") == ""){
  256. return;
  257. }
  258. fInitDisp();
  259. model.removeNodeset("/root/grdlist");
  260. model.refresh();
  261. if(submit("TRSTP01601")){
  262. //model.refresh();
  263. setTree(grd_ordearn, grd_ordearn.colRef("dpt"), grd_ordearn.colRef("lrgnm"), true);
  264. setTree(grd_unco, grd_unco.colRef("dpt"), grd_unco.colRef("lrgnm"), true);
  265. fDispAprvCnclChng(grd_ordearn);
  266. fDispAprvCnclChng(grd_unco);
  267. fDispAprvCnclChng(grd_incm);
  268. fDispAprvCnclChng(grd_incm2);
  269. }
  270. ]]>
  271. </script>
  272. </button>
  273. <button id="button1" class="btn1_letter2" navindex="26" disable.background-image="../../../com/commonweb/images/dis_btn2_letter3.gif" style="left:1133px; top:30px; width:56px; height:22px; background-image:../../../com/commonweb/images/btn2_letter3.gif; ">
  274. <caption>출력</caption>
  275. <script type="javascript" ev:event="DOMActivate">
  276. <![CDATA[
  277. exeReportPreview("RPSTP00903", "XMLSTR");
  278. ]]>
  279. </script>
  280. </button>
  281. <button id="btn_clear" class="btn1_letter2" navindex="30" disable.background-image="../../../com/commonweb/images/dis_btn2_letter3.gif" style="left:1074px; top:30px; width:56px; height:22px; background-image:../../../com/commonweb/images/btn2_letter3.gif; ">
  282. <caption>엑셀</caption>
  283. <script type="javascript" ev:event="DOMActivate">
  284. <![CDATA[
  285. var today = model.getValue("/root/cond/fromdd");
  286. var filename = window.fileDialog("save", ",", false, "종합수익일보(건진제외)_"+today, "xls", "Excel Files(*.xls)|*.xls|All Files (*.*)|*.*");
  287. if(filename != "" )
  288. {
  289. // ***** SaveExcel 수행 *****//
  290. // 1. 각각 엑셀 파일로 저장
  291. grd_ordearn.saveExcel("c:\\test1.xls");
  292. grd_unco.saveExcel("c:\\test2.xls");
  293. grd_upco.saveExcel("c:\\test3.xls");
  294. grd_etc.saveExcel("c:\\test4.xls");
  295. grd_incm.saveExcel("c:\\test5.xls");
  296. // ***** TFExcel Application 실행 *****//
  297. // 2. TFExcel App 실행
  298. tfexcel.launchnewinstance(0);
  299. // 3. 실행된 excel app 에서 새로운 workbook 생성
  300. tfexcel.createworkbook();
  301. // ***** TFExcel Application 실행 *****//
  302. // 4. 저장한 두개의 엑셀을 하나의 엑셀에서 로드
  303. // ----- 첫번째 엑셀 파일 수행
  304. tfexcel.addsheet(1,"text001");
  305. tfexcel.activatesheet(1);
  306. // CSV 포맷된 file 을 excel 에 Load
  307. var nResult1 = tfexcel.loadCSV("c:\\test1.xls");
  308. if(nResult1 < 0) {
  309. alert("Excel Load Error.");
  310. return;
  311. }
  312. // ----- 두번째 엑셀 파일 수행
  313. tfexcel.addsheet(2,"text002");
  314. tfexcel.activatesheet(2);
  315. // CSV 포맷된 file 을 excel 에 Load
  316. var nResult2 = tfexcel.loadCSV("c:\\test2.xls");
  317. if(nResult2 < 0) {
  318. alert("Excel Load Error.");
  319. return;
  320. }
  321. // 03
  322. tfexcel.addsheet(3,"text003");
  323. tfexcel.activatesheet(3);
  324. // CSV 포맷된 file 을 excel 에 Load
  325. var nResult3 = tfexcel.loadCSV("c:\\test3.xls");
  326. if(nResult3 < 0) {
  327. alert("Excel Load Error.");
  328. return;
  329. }
  330. //04
  331. tfexcel.addsheet(4,"text004");
  332. tfexcel.activatesheet(4);
  333. // CSV 포맷된 file 을 excel 에 Load
  334. var nResult4 = tfexcel.loadCSV("c:\\test4.xls");
  335. if(nResult4 < 0) {
  336. alert("Excel Load Error.");
  337. return;
  338. }
  339. //05
  340. tfexcel.addsheet(5,"text005");
  341. tfexcel.activatesheet(5);
  342. // CSV 포맷된 file 을 excel 에 Load
  343. var nResult5 = tfexcel.loadCSV("c:\\test5.xls");
  344. if(nResult5 < 0) {
  345. alert("Excel Load Error.");
  346. return;
  347. }
  348. // ***** TFExcel Sheet 설정 *****//
  349. // var sResult1 = tfexcel.sheetname(1) = "test001";
  350. // var sResult2 = tfexcel.sheetname(2) = "test002";
  351. // var sResult3 = tfexcel.sheetname(3) = "test003";
  352. // var sResult4 = tfexcel.sheetname(4) = "test004";
  353. // var sResult5 = tfexcel.sheetname(5) = "test005";
  354. // ***** 하나의 Excel 파일로 저장 *****//
  355. // 5. workbook 저장
  356. tfexcel.save(filename);
  357. // 6. TFExcel App 종료. - Excel App 생성 후 반드시 Close 필요
  358. tfexcel.close();
  359. //7. 생성된 test1,test2.xls 삭제
  360. var fso = new ActiveXObject("Scripting.FileSystemObject");
  361. fso.DeleteFile("c:\\test1.xls");
  362. fso.DeleteFile("c:\\test2.xls");
  363. fso.DeleteFile("c:\\test3.xls");
  364. fso.DeleteFile("c:\\test4.xls");
  365. fso.DeleteFile("c:\\test5.xls");
  366. // window.exec("excel.exe", filename);
  367. }
  368. ]]>
  369. </script>
  370. </button>
  371. <object id="tfexcel" clsid="{fe8d1001-6a9d-424d-ae2a-301493bb12da}" visibility="hidden" style="left:235px; top:165px; width:220px; height:50px; "/>
  372. <group id="group1" visibility="visible" scroll="auto" style="left:0px; top:68px; width:520px; height:355px; border-style:none; ">
  373. <caption id="caption1" class="tit_2" style="left:0px; top:0px; width:80px; height:13px; ">
  374. <![CDATA[진료수익]]>
  375. <script type="javascript" ev:event="onclick">
  376. <![CDATA[
  377. fChangeDspl(group1);
  378. ]]>
  379. </script>
  380. </caption>
  381. <line id="line1" class="line_1" style="x1:0px; y1:15px; x2:520px; y2:15px; "/>
  382. <datagrid id="grd_ordearn" nodeset="/root/grdlist/list01" class="datagrid2" caption="±^계정^^^입원^입원^외래^외래^합계" colsep="^" colwidth="0, 150, 0, 0, 0, 120, 0, 120, 130" defaultrows="2" extendlastcol="scroll" mergecellsfixedrows="bycolrec" rowsep="|" style="left:0px; top:20px; width:520px; height:334px; ">
  383. <col ref="dpt"/>
  384. <col ref="lrgnm"/>
  385. <col ref="mdlnm"/>
  386. <col ref="smlnm"/>
  387. <col ref="inaccntcd"/>
  388. <col ref="inamt" format="(-)#,###" style="text-align:right; "/>
  389. <col ref="outaccntcd"/>
  390. <col ref="outamt" format="(-)#,###" style="text-align:right; "/>
  391. <col ref="totamt" format="(-)#,###" style="text-align:right; "/>
  392. </datagrid>
  393. </group>
  394. <group id="group2" visibility="visible" style="left:522px; top:68px; width:678px; height:424px; border-style:none; ">
  395. <caption id="caption2" class="tit_2" style="left:0px; top:0px; width:85px; height:13px; ">
  396. <![CDATA[미수]]>
  397. <script type="javascript" ev:event="onclick">
  398. <![CDATA[
  399. fChangeDspl(group2);
  400. ]]>
  401. </script>
  402. </caption>
  403. <line id="line2" class="line_1" style="x1:0px; y1:15px; x2:678px; y2:15px; "/>
  404. <datagrid id="grd_unco" nodeset="/root/grdlist/list02" caption="±^계정^^입원^입원^외래^외래^합계|±^계정^^발생^입금(대체)^발생^입금(대체)^합계" colsep="^" colwidth="0, 140, 0, 105, 105, 105, 105, 115" extendlastcol="scroll" mergecellsfixedrows="bycolrec" rowsep="|" style="left:0px; top:20px; width:678px; height:403px; ">
  405. <col ref="dpt"/>
  406. <col ref="lrgnm"/>
  407. <col ref="smlnm"/>
  408. <col ref="inuncoamt" format="(-)#,###" style="text-align:right; "/>
  409. <col ref="inrcptamt" format="(-)#,###" style="text-align:right; "/>
  410. <col ref="outuncoamt" format="(-)#,###" style="text-align:right; "/>
  411. <col ref="outrcptamt" format="(-)#,###" style="text-align:right; "/>
  412. <col ref="totamt" format="(-)#,###" style="text-align:right; "/>
  413. </datagrid>
  414. </group>
  415. <caption id="caption60" class="tit_1" style="left:0px; top:0px; width:183px; height:14px; font-family:돋움; vertical-align:middle; ">종합수익일보(건진제외)</caption>
  416. <caption id="caption6" style="left:199px; top:34px; width:25px; height:15px; ">~</caption>
  417. <input id="ipt_fromdd" ref="/root/cond/fromdd" class="input_search" navindex="1" inputtype="date" style="left:100px; top:31px; width:95px; height:19px; text-align:center; vertical-align:middle; "/>
  418. <input id="ipt_todd" ref="/root/cond/todd" class="input_search" navindex="1" inputtype="date" style="left:212px; top:31px; width:95px; height:19px; text-align:center; vertical-align:middle; "/>
  419. <caption id="caption7" style="left:533px; top:34px; width:375px; height:14px; font-weight:bold; color:#ff0000; ">※ 입원/외래수익일보의 [순수입원,순수외래] 기준입니다.</caption>
  420. <select id="checkbox1" ref="/root/cond/srchflag" overflow="visible" appearance="full" style="left:330px; top:34px; width:195px; height:15px; border-style:none; ">
  421. <choices>
  422. <item>
  423. <label>중간청구 및 삭감환수 포함</label>
  424. <value>Y</value>
  425. </item>
  426. </choices>
  427. </select>
  428. </xhtml:body>
  429. </xhtml:html>