SMMNG03401_린넨실사재고관리.xrw 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463
  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. <main>
  10. <lnsfinfo>
  11. <lnsflist>
  12. </lnsflist>
  13. <csrdeptlist/>
  14. </lnsfinfo>
  15. <cond>
  16. <deptcd/>
  17. <srchflag/>
  18. <workdd/>
  19. </cond>
  20. <csrdeptlist/>
  21. </main>
  22. <send>
  23. <deptcd/>
  24. <instcdnm/>
  25. <gubuncd>01</gubuncd>
  26. <srchflag/>
  27. <workdd/>
  28. <safestocflag>3</safestocflag>
  29. </send>
  30. <init>
  31. <csrdeptinfo/>
  32. </init>
  33. </root>
  34. </instance>
  35. <script type="javascript" src="../../../com/commonweb/js/common.js"/>
  36. <script type="javascript" src="../../../com/commonweb/js/dateHelper.js"/>
  37. <script type="javascript" src="../../../com/commonweb/js/tfHelper.js"/>
  38. <script type="javascript" src="../../../emr/carecomweb/js/CareCom.js"/>
  39. <script type="javascript" src="../../../mis/miscommonweb/js/RSZ001.js"/>
  40. <script type="javascript" src="../../../mis/miscommonweb/js/MIS.js"/>
  41. <script type="javascript" ev:event="xforms-ready">
  42. <![CDATA[
  43. rdo_srch.value = "D";
  44. fInitialize();
  45. ]]>
  46. </script>
  47. <submission id="TRMNG02102" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" resultref="/root/main/lnsfinfo"/>
  48. <submission id="TXMNG02102" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/savedata" resultref="/root/temp"/>
  49. <submission id="TRMNG00402" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/reqdata" resultref="/root/main/csrdeptlist"/>
  50. <submission id="TRMNV00001" mediatype="application/x-www-form-urlencoded" method="post"/>
  51. </model>
  52. <script type="javascript">
  53. <![CDATA[
  54. // 화면 open시와 초기화 버튼 클릭시 화면 초기화 기능을 수행한다.
  55. var predept = "";
  56. function fInitialize()
  57. {
  58. var dutplcecd = getUserInfo("dutplcecd");
  59. if (dutplcecd == "3360000000" ) {
  60. btn_magam.attribute("visibility") = "visible" ;
  61. }
  62. fGetHardCodeInfo("/root/send/grupid", "/root/init/csrdeptinfo", "018"); // 안전재고관리구분
  63. model.setValue(opt_instcdnm.attribute("ref"), getUserInfo("dutplceinstnm")); //기관코드
  64. model.setValue(ipt_workdd.attribute("ref"), getCurrentDate());
  65. model.makeValue("/root/send/reqdata/instcd", getUserInfo("dutplceinstcd"));
  66. model.makeValue("/root/send/reqdata/useyn", "Y");
  67. var csrdept = model.getValue("/root/init/csrdeptinfo/codelist[cdgrupid='018' and cdid='" + getUserInfo("dutplcecd") + "']/cdid");
  68. var csryn = "N";
  69. if(csrdept == null || csrdept == "") {
  70. rdo_srch.value = "D";
  71. rdo_srch.disabled = true;
  72. //cmb_deptcd.disabled = true;
  73. cmb_deptcd.value = getUserInfo("dutplcecd");
  74. } else {
  75. csryn = "Y";
  76. }
  77. model.makeValue("/root/send/reqdata/csryn", csryn);
  78. submit("TRMNG00402");
  79. fSearch();
  80. }
  81. function fSearch() {
  82. var deptcd = cmb_deptcd.value;
  83. model.setValue("/root/send/deptcd" , model.getValue(cmb_deptcd.attribute("ref")));
  84. model.setValue("/root/send/srchflag" , model.getValue(rdo_srch.attribute("ref"))); //마스터코드구분 01:물품마스터02:창고마스터
  85. model.setValue("/root/send/workdd" , model.getValue(ipt_workdd.attribute("ref")));
  86. model.setValue("/root/send/safestocflag", model.getValue(rdo_safestocflag.attribute("ref")));
  87. submit("TRMNG02102");
  88. if(deptcd == "01" || deptcd == "02" || deptcd == "03") {
  89. grd_lnsflist.colDisabled(grd_lnsflist.colRef("deptlnsfcnt")) = false;
  90. grd_lnsflist.colDisabled(grd_lnsflist.colRef("lnsfcnt")) = false;
  91. grd_lnsflist.colDisabled(grd_lnsflist.colRef("lnrlcnt")) = false;
  92. //btn_sav.visible =true;
  93. //button1.visible = true;
  94. //button2.visible = true;
  95. } else {
  96. grd_lnsflist.colDisabled(grd_lnsflist.colRef("deptlnsfcnt")) = true;
  97. grd_lnsflist.colDisabled(grd_lnsflist.colRef("lnsfcnt")) = true;
  98. grd_lnsflist.colDisabled(grd_lnsflist.colRef("lnrlcnt")) = true;
  99. //btn_sav.visible =false;
  100. //button1.visible = false;
  101. //button2.visible = false;
  102. }
  103. }
  104. function fSettingGoodList(pnode) {
  105. var codynode = instance1.selectNodes(pnode + "/*");
  106. var addRow = grd_lnsflist.rows - grd_lnsflist.fixedRows;
  107. for (var j = 1; j <= codynode.length; j++) {
  108. for (var i = grd_lnsflist.fixedRows; i < grd_lnsflist.rows; i++) {
  109. var goodnew = model.getValue(pnode +"/" + "grd_lnsflist" + "[" + j + "]/goodcd");
  110. var goodseqnew = model.getValue(pnode +"/" + "grd_lnsflist" + "[" + j + "]/goodcdseq");
  111. var goodold = grd_lnsflist.valueMatrix(i, grd_lnsflist.colRef("goodcd"));
  112. var goodseqold = grd_lnsflist.valueMatrix(i, grd_lnsflist.colRef("goodcdseq"));
  113. var goodoldnm = grd_lnsflist.valueMatrix(i, grd_lnsflist.colRef("goodnm"));
  114. if (goodnew == goodold && goodseqnew == goodseqold) {
  115. alert("<"+ goodoldnm + ">" + "은 이미 등록된 물품입니다.");
  116. return;
  117. }
  118. }
  119. if(addRow > grd_lnsflist.rows - grd_lnsflist.fixedRows)
  120. {
  121. misfGridIUD(grd_lnsflist,"A");
  122. addRow = grd_lnsflist.rows - grd_lnsflist.fixedRows;
  123. }
  124. model.setValue(grd_lnsflist.nodeset + "[" + addRow + "]/goodcd" , model.getValue(pnode +"/" + "grd_lnsflist" + "[" + j + "]/goodcd"));
  125. model.setValue(grd_lnsflist.nodeset + "[" + addRow + "]/goodcdseq" , model.getValue(pnode +"/" + "grd_lnsflist" + "[" + j + "]/goodcdseq"));
  126. model.setValue(grd_lnsflist.nodeset + "[" + addRow + "]/lngoodnm" , model.getValue(pnode +"/" + "grd_lnsflist" + "[" + j + "]/lngoodnm"));
  127. model.setValue(grd_lnsflist.nodeset + "[" + addRow + "]/goodmodel" , model.getValue(pnode +"/" + "grd_lnsflist" + "[" + j + "]/goodmodel"));
  128. model.setValue(grd_lnsflist.nodeset + "[" + addRow + "]/goodunit" , model.getValue(pnode +"/" + "grd_lnsflist" + "[" + j + "]/goodunit"));
  129. model.setValue(grd_lnsflist.nodeset + "[" + addRow + "]/deptcd" , model.getValue("/root/main/cond/deptcd"));
  130. model.setValue(grd_lnsflist.nodeset + "[" + addRow + "]/fromdd" , getCurrentDate());
  131. addRow = addRow + 1;
  132. }
  133. model.recalculate();
  134. model.refresh();
  135. }
  136. ]]>
  137. </script>
  138. </xhtml:head>
  139. <xhtml:body pagewidth="1220" pageheight="786" guideline="1,1196;2,786;" style="margin-left:8; margin-top:0; margin-right:8; margin-bottom:0; ">
  140. <group id="grp_tle" style="left:0px; top:0px; width:1195px; height:13px; font-family:돋움체; ">
  141. <caption id="caption6" class="tit_1" style="left:0px; top:0px; width:186px; height:15px; ">실사재고 관리</caption>
  142. </group>
  143. <group id="grp_biz" scroll="auto" style="left:0px; top:60px; width:1195px; height:705px; font-family:돋움체; ">
  144. <caption id="caption12" class="tit_2" style="left:5px; top:9px; width:121px; height:14px; font-family:돋움체; ">실사재고관리</caption>
  145. <button id="btn_sav" class="btn5_letter4" style="left:1126px; top:3px; width:64px; height:19px; font-family:돋움체; ">
  146. <caption>확정저장</caption>
  147. <script type="javascript" ev:event="DOMActivate">
  148. <![CDATA[
  149. model.makeValue("/root/send/savedata/lnsflist", getGridUpdateData(grd_lnsflist) );
  150. //alert(instance1.selectNodesXml("/root/send"));
  151. submit("TXMNG02102");
  152. fSearch();
  153. ]]>
  154. </script>
  155. </button>
  156. <datagrid id="grd_lnsflist" nodeset="/root/main/lnsfinfo/lnsflist" caption="구분^물품코드^상세코드^물품명^상세규격^단위^운용&#xA;안전재고^^물품보관실^^실재고수량^편차^실재고율(%)^부서코드^관리자^비고|구분^물품코드^상세코드^물품명^상세규격^단위^운용&#xA;안전재고^변경전수량^최종요청수량^안전재고수량^실재고수량^편차^실재고율(%)^부서코드^관리자^비고" colsep="^" colwidth="75, 86, 65, 130, 100, 70, 73, 10, 0, 12, 80, 54, 76, 100, 100, 130, 100, 100, 100, 100, 100" explorerbar="sort" mergecellsfixedrows="bycolrec" rowheader="update" rowheight="26" rowsep="|" style="left:2px; top:29px; width:1190px; height:670px; font-family:돋움체; ">
  157. <col ref="safestocflag" type="combo">
  158. <choices>
  159. <item>
  160. <label>기구</label>
  161. <value>1</value>
  162. </item>
  163. <item>
  164. <label>진료재료</label>
  165. <value>2</value>
  166. </item>
  167. <item>
  168. <label>멸균방포</label>
  169. <value>4</value>
  170. </item>
  171. <item>
  172. <label>기타</label>
  173. <value>9</value>
  174. </item>
  175. <item>
  176. <label>린넨</label>
  177. <value>3</value>
  178. </item>
  179. </choices>
  180. </col>
  181. <col ref="goodcd" type="inputbutton"/>
  182. <col ref="goodcdseq"/>
  183. <col ref="lngoodnm"/>
  184. <col ref="goodmodel"/>
  185. <col ref="goodunit"/>
  186. <col ref="deptlnsfcnt" type="input" style="text-align:center; "/>
  187. <col ref="bflnsfcnt" visibility="hidden"/>
  188. <col ref="bfreqcnt"/>
  189. <col ref="lnsfcnt" type="input" visibility="hidden"/>
  190. <col ref="usrlnrlcnt" type="input" style="text-align:center; "/>
  191. <col disabled="true" ref="gap" style="text-align:center; "/>
  192. <col disabled="true" ref="gappercent" style="text-align:center; "/>
  193. <col disabled="true" ref="deptcd" type="combo">
  194. <choices>
  195. <itemset nodeset="/root/main/csrdeptlist">
  196. <label ref="deptnm"/>
  197. <value ref="deptcd"/>
  198. </itemset>
  199. </choices>
  200. </col>
  201. <col ref="lastupdtrnm" visibility="visible" ype="output"/>
  202. <col ref="remark" type="input" visibility="visible"/>
  203. <col ref="lastupdtrid" type="output" visibility="hidden"/>
  204. <col ref="oldlnsfcnt" visibility="hidden"/>
  205. <col ref="nextfromdd" visibility="hidden"/>
  206. <col ref="fromdd" visibility="hidden"/>
  207. <col ref="todd" visibility="hidden"/>
  208. <script type="javascript" ev:event="onbuttonclick">
  209. <![CDATA[
  210. model.removeNodeset(gvParamPath +"/SPMNG02801_/SPMNG02801_value");
  211. model.property("flag") = "req";
  212. if (grd_lnsflist.col == grd_lnsflist.colRef("goodcd")) {//물품코드 버튼을 눌렀을 때
  213. model.removeNodeset("/root/copynode");
  214. model.makeNode("/root/copynode");
  215. model.refresh();
  216. rszfOpenPopUpListByWndName(grd_lnsflist,"","goodcd,goodcdseq,lngoodnm,goodmodel,goodunit","SPMNG02801","","", "Y");
  217. var CSV = model.getValue(gvParamPath +"/SPMNG02801_/SPMNG02801_value");
  218. setCSVToNode("/root/copynode", CSV, "grd_lnsflist");
  219. fSettingGoodList("/root/copynode");
  220. }
  221. ]]>
  222. </script>
  223. <script type="javascript" ev:event="xforms-value-changed">
  224. <![CDATA[
  225. if ( grd_lnsflist.col == grd_lnsflist.colRef("lnsfcnt") ) {
  226. var oldlnsfcnt = grd_lnsflist.valueMatrix(grd_lnsflist.row, grd_lnsflist.colRef("oldlnsfcnt"));
  227. var deptlnsfcnt = grd_lnsflist.valueMatrix(grd_lnsflist.row, grd_lnsflist.colRef("deptlnsfcnt"));
  228. var cnt = parseInt(grd_lnsflist.valueMatrix(grd_lnsflist.row, grd_lnsflist.colRef("lnsfcnt")), 10) - parseInt(grd_lnsflist.valueMatrix(grd_lnsflist.row, grd_lnsflist.colRef("oldlnsfcnt")), 10);
  229. grd_lnsflist.valueMatrix(grd_lnsflist.row, grd_lnsflist.colRef("deptlnsfcnt")) = parseInt(deptlnsfcnt, 10) + parseInt(cnt, 10);
  230. var date = getCurrentDate().toDate("YYYYMMDD");
  231. var nextday = (date.getAddDate(1, "D")).getDateFormat("YYYYMMDD");
  232. grd_lnsflist.valueMatrix(grd_lnsflist.row, grd_lnsflist.colRef("nextfromdd")) = nextday;
  233. grd_lnsflist.valueMatrix(grd_lnsflist.row, grd_lnsflist.colRef("todd")) = getCurrentDate();
  234. }
  235. ]]>
  236. </script>
  237. <script type="javascript" ev:event="onaftersort">
  238. <![CDATA[
  239. grd_lnsflist.gridToInstance();
  240. ]]>
  241. </script>
  242. </datagrid>
  243. <line id="line5" class="line_1" style="x1:1px; y1:26px; x2:1194px; y2:25px; font-family:돋움체; "/>
  244. <select1 id="rdo_gubuncd" ref="/root/send/gubuncd" disabled="true" visibility="hidden" appearance="full" cols="2" overflow="visible" style="left:770px; top:5px; width:170px; height:15px; font-family:돋움체; border-style:none; ">
  245. <choices>
  246. <item>
  247. <label>물품마스터</label>
  248. <value>01</value>
  249. </item>
  250. <item>
  251. <label>창고마스터</label>
  252. <value>02</value>
  253. </item>
  254. </choices>
  255. </select1>
  256. <button id="button1" class="btn2_letter2" visibility="hidden" style="left:950px; top:3px; width:42px; height:19px; font-family:돋움체; ">
  257. <caption>추가</caption>
  258. <script type="javascript" ev:event="DOMActivate">
  259. <![CDATA[
  260. if ( cmb_deptcd.value == null || cmb_deptcd.value == "") {
  261. alert("부서를 선택하세요!");
  262. return;
  263. } else {
  264. grd_lnsflist.addRow();
  265. }
  266. ]]>
  267. </script>
  268. </button>
  269. <button id="button2" class="btn2_letter2" visibility="hidden" style="left:995px; top:3px; width:42px; height:19px; font-family:돋움체; ">
  270. <caption>삭제</caption>
  271. <script type="javascript" ev:event="DOMActivate">
  272. <![CDATA[
  273. if(grd_lnsflist.row > -1 && grd_lnsflist.row >= grd_lnsflist.fixedrows){
  274. var firstRow = grd_lnsflist.selectedRow(0);
  275. var lastRow = grd_lnsflist.selectedRow(grd_lnsflist.selectedRows-1);
  276. for(var i = firstRow; i <= lastRow; i++) {
  277. grd_lnsflist.rowStatus(i) = "4";
  278. grd_lnsflist.valueMatrix(i, grd_lnsflist.colRef("todd")) = getCurrentDate();
  279. }
  280. }
  281. ]]>
  282. </script>
  283. </button>
  284. <select1 id="rdo_safestocflag" ref="/root/send/safestocflag" appearance="full" cellspacing="5" cols="6" overflow="visible" style="left:115px; top:8px; width:375px; height:13px; border-style:none; ">
  285. <choices>
  286. <item>
  287. <label>전체</label>
  288. <value/>
  289. </item>
  290. <item>
  291. <label>기구</label>
  292. <value>1</value>
  293. </item>
  294. <item>
  295. <label>진료재료</label>
  296. <value>2</value>
  297. </item>
  298. <item>
  299. <label>멸균방포</label>
  300. <value>4</value>
  301. </item>
  302. <item>
  303. <label>기타</label>
  304. <value>9</value>
  305. </item>
  306. <item>
  307. <label>린넨</label>
  308. <value>3</value>
  309. </item>
  310. </choices>
  311. <script type="javascript" ev:event="xforms-value-changed">
  312. <![CDATA[
  313. fSearch();
  314. ]]>
  315. </script>
  316. </select1>
  317. <button id="btn_magam" class="btn5_letter2" visibility="hidden" style="left:1082px; top:3px; width:42px; height:19px; font-family:돋움체; ">
  318. <caption>마감</caption>
  319. <script type="javascript" ev:event="DOMActivate">
  320. <![CDATA[
  321. messageBox("준비중입니다...! 별도의 창이 떠서 해당월에 마감데이터를 생성할 수 있습니다","I");
  322. ]]>
  323. </script>
  324. </button>
  325. </group>
  326. <shape id="roundrect1" class="roundrect_search" appearance="roundrect" ellipsewidth="10" ellipseheight="10" style="left:0px; top:20px; width:1195px; height:35px; font-family:돋움체; background-color:#fffbf2; border-color:#ffd799; ">.,m</shape>
  327. <caption id="caption2" class="search_name" style="left:485px; top:30px; width:88px; height:17px; font-family:돋움체; ">부 서 명:</caption>
  328. <button id="btn_search" class="btn1_letter2" navindex="2" style="left:1059px; top:27px; width:56px; height:22px; font-family:돋움체; ">
  329. <caption>조회</caption>
  330. <script type="javascript" ev:event="DOMActivate">
  331. <![CDATA[
  332. fSearch();
  333. ]]>
  334. </script>
  335. </button>
  336. <select1 id="cmb_deptcd" ref="/root/main/cond/deptcd" appearance="minimal" style="left:570px; top:28px; width:100px; height:19px; font-family:돋움체; ">
  337. <choices>
  338. <itemset nodeset="/root/main/csrdeptlist">
  339. <label ref="deptnm"/>
  340. <value ref="deptcd"/>
  341. </itemset>
  342. </choices>
  343. <script type="javascript" ev:event="xforms-value-changed">
  344. <![CDATA[
  345. fSearch();
  346. ]]>
  347. </script>
  348. </select1>
  349. <line id="line2" class="line_4" style="x1:985px; y1:25px; x2:985px; y2:50px; font-family:돋움체; "/>
  350. <caption id="cap_instcd" class="search_name" style="left:10px; top:30px; width:86px; height:17px; font-family:돋움체; ">기관코드:</caption>
  351. <output id="opt_instcdnm" ref="/root/send/instcdnm" class="output_fix" style="left:100px; top:29px; width:160px; height:19px; font-family:돋움체; text-align:center; "/>
  352. <caption id="caption1" class="search_name" style="left:275px; top:30px; width:88px; height:17px; font-family:돋움체; ">부서구분:</caption>
  353. <select1 id="rdo_srch" ref="/root/main/cond/srchflag" appearance="full" cols="2" overflow="visible" style="left:370px; top:30px; width:105px; height:15px; font-family:돋움체; border-style:none; ">
  354. <choices>
  355. <item>
  356. <label>부서별</label>
  357. <value>D</value>
  358. </item>
  359. <item>
  360. <label>전체</label>
  361. <value>A</value>
  362. </item>
  363. </choices>
  364. <script type="javascript" ev:event="xforms-value-changed">
  365. <![CDATA[
  366. if ( rdo_srch.value == "A") {
  367. caption2.visible = false;
  368. cmb_deptcd.visible = false;
  369. predept = cmb_deptcd.value;
  370. cmb_deptcd.value = "";
  371. grd_lnsflist.colHidden(grd_lnsflist.colRef("deptcd")) = true;
  372. grd_lnsflist.colHidden(grd_lnsflist.colRef("remark")) = true;
  373. grd_lnsflist.colHidden(grd_lnsflist.colRef("lastupdtrnm")) = true;
  374. grd_lnsflist.colHidden(grd_lnsflist.colRef("bfreqcnt")) = true;
  375. grd_lnsflist.colHidden(grd_lnsflist.colRef("bflnsfcnt")) = true;
  376. //btn_sav.visible = false;
  377. //button1.visible = false;
  378. //button2.visible = false;
  379. fSearch();
  380. } else {
  381. caption2.visible = true;
  382. cmb_deptcd.visible = true;
  383. cmb_deptcd.value = predept;
  384. grd_lnsflist.colHidden(grd_lnsflist.colRef("deptcd")) = false;
  385. grd_lnsflist.colHidden(grd_lnsflist.colRef("remark")) = false;
  386. grd_lnsflist.colHidden(grd_lnsflist.colRef("lastupdtrnm")) = false;
  387. grd_lnsflist.colHidden(grd_lnsflist.colRef("bfreqcnt")) = false;
  388. grd_lnsflist.colHidden(grd_lnsflist.colRef("bflnsfcnt")) = false;
  389. // btn_sav.visible = true;
  390. // button1.visible = true;
  391. // button2.visible = true;
  392. fSearch();
  393. }
  394. ]]>
  395. </script>
  396. </select1>
  397. <button id="button3" class="btn1_letter2" navindex="2" visibility="hidden" style="left:1000px; top:27px; width:56px; height:22px; font-family:돋움체; ">
  398. <caption>출력</caption>
  399. <script type="javascript" ev:event="DOMActivate">
  400. <![CDATA[
  401. exeReportPreview("RPMNG02100", "XMLSTR");
  402. ]]>
  403. </script>
  404. </button>
  405. <caption id="caption3" class="search_name" style="left:685px; top:30px; width:88px; height:17px; font-family:돋움체; ">업무일자:</caption>
  406. <input id="ipt_workdd" ref="/root/main/cond/workdd" inputtype="date" style="left:770px; top:28px; width:90px; height:19px; font-family:돋움체; ">
  407. <script type="javascript" ev:event="xforms-value-changed">
  408. <![CDATA[
  409. fSearch();
  410. ]]>
  411. </script>
  412. </input>
  413. <button id="button4" class="btn1_letter2" navindex="2" style="left:1115px; top:27px; width:56px; height:22px; font-family:돋움체; ">
  414. <caption>엑셀</caption>
  415. <script type="javascript" ev:event="DOMActivate">
  416. <![CDATA[
  417. var fileName = window.fileDialog("save", ",", false, "세탁물 안전재고관리", "xls", "All Files (*.*)|*.*|Excel Files(*.xls)|*.xls");
  418. if (fileName != "")
  419. {
  420. grd_lnsflist.saveExcel(fileName, "SheetName", false, false, "", "", "false");
  421. }
  422. ]]>
  423. </script>
  424. </button>
  425. </xhtml:body>
  426. </xhtml:html>