123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- <?xml version="1.0" encoding="EUC-KR"?>
- <!--
- * 제 목 : 채혈접수취소등록.xrw
- * 설 명 : 채혈접수취소등록
- * 설 계 자 : (주)에이씨케이 -
- * 작 성 자 : (주)에이씨케이 -
- * 작 성 일 : 2006.11.11
- * 수정이력 : 2007.04.25 조철형 수정
- * 기 타 :
- -->
- <?xml-stylesheet href="../../../com/commonweb/css/common.css" type="text/css" ?>
- <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">
- <xhtml:head>
- <xhtml:title>희석배수입력</xhtml:title>
- <model id="model1">
- <instance id="instance1">
- <root>
- <main>
- </main>
- <send>
- <nmeddilute/>
- <bcno/>
- <tclscd/>
- </send>
- <init>
- </init>
- <hidden>
- <nmeddilute/>
- <ref>
- <bcno/>
- <tclscd/>
- </ref>
- </hidden>
- </root>
- </instance>
- <script type="javascript" src="../../../com/commonweb/js/common.js"/>
- <script type="javascript" src="../../../com/commonweb/js/dateHelper.js"/>
- <script type="javascript" src="../../../com/commonweb/js/tfHelper.js"/>
- <script type="javascript" src="../../../lis/commonweb/js/LLZ001.js"/>
- <script type="javascript" src="../../../lis/commonweb/js/LZZ001.js"/>
- <script type="javascript" ev:event="xforms-ready">
- <![CDATA[
-
- ]]>
- </script>
- <submission id="TXLNR90501" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" replace="instance"/>
- </model>
- <script type="javascript">
- <![CDATA[
- function fsetdilute(){
- var dilute = model.getValue("/root/hidden/nmeddilute");
-
- //if(dilute == ""){
- // alert("희석배수의 값이 입력되지 않았습니다.");
- // return;
- //}else{
- model.setValue("/root/send/nmeddilute", dilute);
- model.setValue("/root/send/bcno", model.getValue("/root/hidden/ref/bcno"));
- model.setValue("/root/send/tclscd", model.getValue(" /root/hidden/ref/tclscd"));
- submit("TXLNR90501");
- window.opener.model.setValue("root/hidden/ddilutetf", "true"); //희석여부
- window.close();
- //}
-
- }
-
- ]]>
- </script>
- </xhtml:head>
- <xhtml:body pagewidth="280" pageheight="120" style="margin-left:8; margin-top:8; margin-right:8; margin-bottom:8; ">
- <group id="group1" style="left:0px; top:0px; width:260px; height:90px; ">
- <caption id="caption1" class="tit_2" style="left:0px; top:10px; width:108px; height:14px; ">희석배수 입력</caption>
- <line id="line1" class="line_1" style="x1:0px; y1:25px; x2:250px; y2:25px; "/>
- <button id="btn_cfm" class="btn4_letter2" style="left:195px; top:58px; width:56px; height:22px; ">
- <caption>닫기</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- window.opener.model.setValue("root/hidden/ddilutetf", "false");
- window.close();
- ]]>
- </script>
- </button>
- <caption id="caption3" class="cell_1" style="left:0px; top:30px; width:100px; height:23px; ">희석배수</caption>
- <input id="dilute" ref="/root/hidden/nmeddilute" style="left:103px; top:32px; width:147px; height:19px; "/>
- <line id="line4" class="line_2" style="x1:0px; y1:54px; x2:250px; y2:54px; "/>
- <button id="button1" class="btn4_letter2" style="left:83px; top:58px; width:56px; height:22px; ">
- <caption>저장</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- fsetdilute();
- ]]>
- </script>
- </button>
- <button id="btn_cncl" class="btn4_letter2" style="left:139px; top:58px; width:56px; height:22px; ">
- <caption>취소</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- window.opener.model.setValue("root/hidden/ddilutetf", "false"); ////희석여부 취소
- window.close();
- ]]>
- </script>
- </button>
- <script type="javascript" ev:event="onkeydown">
- <![CDATA[
- if(event.keyCode == "13"){
- fsetdilute();
- }
- ]]>
- </script>
- </group>
- </xhtml:body>
- </xhtml:html>
|