123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638 |
- <?xml version="1.0" encoding="EUC-KR"?>
- <?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 xmlns="">
- <main>
- <mntbase>
- <mntinfo>
- <stdyno/>
- <subjno/>
- <examperchgr/>
- <stdysubjnm/>
- <mntrperchgr/>
- <cranm/>
- <mntrtodd/>
- <mntrfromtm/>
- <mntrtotm/>
- <clincprogrs/>
- <plansubtesteephos/>
- <prcssubtesteephos/>
- <subtesteephosid/>
- <drugendflag/>
- <stocmntmatchflag/>
- <relreckeepstatflag/>
- <recmthdfitnflag/>
- <rctpdisbursempsflag/>
- <keepsaveflag/>
- <recupdtstatflag/>
- <valitermmngtfithflag/>
- <medimthdflag/>
- <mngtpharmstcvflag/>
- <srcdocucopyflag/>
- <drugendcmt/>
- <stocmntmatchcmt/>
- <relreckeepstatcmt/>
- <recmthdfitncmt/>
- <rctpdisbursempscmt/>
- <keepsavecmt/>
- <recupdtstatcmt/>
- <valitermmngtfithcmt/>
- <medimthdcmt/>
- <mngtpharmstcvcmt/>
- <srcdocucopycmt/>
- <mntrspcffacmt/>
- <cdnm/>
- <status/>
- <seq/>
- <subjid/>
- </mntinfo>
- </mntbase>
- </main>
- <init>
- </init>
- <hidden>
- <paminfo>
- <recinfo>
- <cdid/>
- </recinfo>
- </paminfo>
- <message/>
- </hidden>
- <send>
- <req>
- <instcd/>
- <subjno/>
- <seq/>
- <subjectno/>
- </req>
- </send>
- <temp>
- <cdnm/>
- </temp>
- </root>
- </instance>
- <script type="javascript">
- <![CDATA[
- //저장이력
- function fChgRecHistInfo() {
- //----------------------------------------------------------------------------------
- //저장이력구성 : 기과코드|과제id|과제번호|seq(CDID) --> display : lastupdtdt(CDNM)
- //----------------------------------------------------------------------------------
- //화면열릴때
- //alert(instance1.selectSingleNode("/root/hidden/paminfo/recinfo/cdid").xml);
- if( isNull(model.getValue("/root/temp/cdnm")) ) {
- //alert(model.getValue("/root/main/crbaseinfo/subjinfo/empnm"));
- //model.setValue("/root/send/req/subjno",model.getValue("/root/main/mntbase/mntinfo/subjno"));
- model.setValue("/root/send/req/instcd","");
- model.setValue("/root/send/req/seq","");
- model.setValue("/root/send/req/subjno", model.getValue("/root/main/mntbase/mntinfo/subjid"));
- model.setValue("/root/send/req/subjectno",model.getValue("/root/main/mntbase/mntinfo/subjno"));
- } else {
- //alert( "콤포값:" + cmb_history.value ) ;
- //var i = model.getValue("/root/hidden/paminfo/recinfo[" + i + "]/cdid"); //이 안에 instcd, subjno, seq 가 있다.
- var i = cmb_history.value; //이 안에 instcd, subjno, seq 가 있다.
- model.setValue("/root/temp/cdnm", i); //cdnm 에 담는다.
-
- var cdid = (model.getValue("/root/temp/cdnm")).split("|");
- var sinstcd = cdid[0]; //instcd 를 꺼내온다.
- var ssubjno = cdid[1]; //subjno를 꺼내온다. (과제id)
- var ssubjectno = cdid[2]; //subjectno 를 꺼내온다.(과제번호)
- var sseq = cdid[3]; //seq 를 꺼내온다.
- model.setValue("/root/send/req/instcd", sinstcd);
- model.setValue("/root/send/req/subjno", ssubjno);
- model.setValue("/root/send/req/seq", sseq);
- model.setValue("/root/send/req/subjectno", ssubjectno);
- }
- // alert(instance1.selectSingleNode("/root/send/mntdata").xml); // 안에 값을 찍을 수 있다.
- //model.("/root/send/mntdata", "/root/send/req", "after");
- // textarea1.value = instance1.selectSingleNode("/root/send/mntdata").xml; //textarea1에 값을 찍을 수 있다.
- // textarea1.refresh();
- // copyNodeType("/root/send/mntdata", "/root/send/req", "after");
- submit("TRATR00801");
- model.refresh();
- }
- //저장 이력조회
- function fGetInitRecInfo() {
-
- //model.setValue("/root/send/req/subjno", model.getValue("/root/main/mntbase/mntinfo/subjno")); // 부모로 부터 받은 subjno값을 상세정보를 조회할 조건값으로 set 한다.
- model.setValue("/root/send/req/subjectno", model.getValue("/root/main/mntbase/mntinfo/subjno")); // 부모로 부터 받은 subjno값을 상세정보를 조회할 조건값으로 set 한다.
- if(submit("TRATR00802", "false")){
- //이전 기록이 있을 경우 가장 최근의 정보 자동 셋팅
- //alert(instance1.selectSingleNode("/root/hidden/paminfo/recinfo/cdid").xml);
- //alert("값 :" + model.getValue("/root/hidden/paminfo/recinfo/cdid"));
- if(model.getValue("/root/hidden/paminfo/recinfo/cdid") != ""){
- model.setValue("/root/temp/cdnm", model.getValue("/root/hidden/paminfo/recinfo/cdid"));
- }
- fChgRecHistInfo();
- }
- model.refresh();
- }
- ]]>
- </script>
- <submission id="TRATR00801" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/req" replace="instance" resultref="/root/main/mntbase"/>
- <script type="javascript" src="../../../com/commonweb/js/common.js"/>
- <script type="javascript" src="../../../com/commonweb/js/tfHelper.js"/>
- <script type="javascript" src="../../../com/commonweb/js/stringHelper.js"/>
- <script type="javascript" src="../../../com/commonweb/js/dateHelper.js"/>
- <script type="javascript" src="../../../com/commonweb/js/dateHelper.js"/>
- <script type="javascript" ev:event="xforms-ready">
- <![CDATA[
- //opener 화면에서 파라메터값을 넘겨주면, 해당 조건으로 검색
- if( !isNull(getOpenerUID()) ){ //Opener의 UID가 존재하면,
- model.setValue("/root/main/mntbase/mntinfo/subjno", opener.javascript.getParameter("param_subjno")); //과제번호
- model.setValue("/root/main/mntbase/mntinfo/subjid", opener.javascript.getParameter("param_subjid")); //과제ID
- fGetInitRecInfo();//이력조회
- }
- model.refresh();
- ]]>
- </script>
- <submission id="TRATR00802" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/req" resultref="/root/hidden/paminfo"/>
- <submission id="TXATR00801" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/main/mntbase/mntinfo" resultref="/root/hidden/message"/>
- </model>
- <script type="javascript" src="../../../com/commonweb/js/common.js"/>
- <script type="javascript" src="../../../com/commonweb/js/numericHelper.js"/>
- <script type="javascript" src="../../../com/commonweb/js/tfHelper.js"/>
- <script type="javascript" src="../../../com/commonweb/js/dateHelper.js"/>
- <script type="javascript" src="../../../com/basiccodeweb/js/ZBC001.js"/>
- <script type="javascript" src="../../../com/commonweb/js/stringHelper.js"/>
- <script type="javascript" src="../../../ast/examcureweb/js/AEZ0001.js"/>
- <script type="javascript" src="../../../ast/pharmacyconsultweb/js/SPADC62200.js"/>
- <script type="javascript" src="../../../com/commonweb/js/common.js"/>
- <script type="javascript" src="../../../com/signweb/js/ZES001.js"/>
- </xhtml:head>
- <xhtml:body guideline="1195;" style="margin-left:8; margin-top:0; margin-right:8; margin-bottom:0; ">
- <group id="group1" style="left:0px; top:0px; width:1194px; height:13px; ">
- <caption id="caption6" class="tit_1" style="left:0px; top:0px; width:129px; height:14px; ">임상시험 모니터링</caption>
- </group>
- <group id="group3" scroll="auto" style="left:0px; top:13px; width:1195px; height:744px; ">
- <switch id="switch1" style="left:0px; top:211px; width:1194px; height:530px; border-color:#c7a3cf; border-style:solid; "/>
- <caption id="caption2" class="cell_1" visibility="visible" style="left:0px; top:105px; width:98px; height:23px; vertical-align:middle; ">모니터 담당자</caption>
- <input id="input60" ref="/root/main/mntbase/mntinfo/subjno" class="input_essential" disabled="true" navindex="8" visibility="visible" editable="false" maxlength="13" style="left:359px; top:58px; width:179px; height:19px; "/>
- <input id="input66" ref="/root/main/mntbase/mntinfo/stdyno" class="input_essential" disabled="true" navindex="9" visibility="visible" editable="false" style="left:102px; top:58px; width:156px; height:19px; "/>
- <caption id="caption3" class="cell_1" visibility="visible" style="left:0px; top:81px; width:98px; height:23px; vertical-align:middle; ">과제제목</caption>
- <input id="input70" ref="/root/main/mntbase/mntinfo/stdysubjnm" class="input_default" disabled="true" navindex="11" visibility="visible" editable="false" maxlength="330" style="left:102px; top:83px; width:978px; height:19px; "/>
- <caption id="caption4" class="cell_1" visibility="visible" style="left:0px; top:57px; width:98px; height:23px; vertical-align:middle; ">연구코드</caption>
- <caption id="caption5" class="cell_1" visibility="visible" style="left:262px; top:57px; width:93px; height:23px; vertical-align:middle; ">과제번호</caption>
- <line id="line19" class="line_1" style="x1:0px; y1:52px; x2:1194px; y2:52px; "/>
- <caption id="caption7" class="tit_2" style="left:0px; top:37px; width:126px; height:13px; ">과제 기본정보</caption>
- <input id="inp_examperchgr" ref="/root/main/mntbase/mntinfo/examperchgr" class="input_essential" disabled="false" navindex="8" visibility="visible" editable="true" maxlength="13" style="left:639px; top:58px; width:179px; height:19px; "/>
- <caption id="caption8" class="cell_1" visibility="visible" style="left:542px; top:57px; width:93px; height:23px; vertical-align:middle; ">시험책임자</caption>
- <input id="input13" ref="/root/main/mntbase/mntinfo/cranm" class="input_default" disabled="true" navindex="12" visibility="visible" editable="true" style="left:924px; top:58px; width:156px; height:19px; "/>
- <caption id="caption9" class="cell_1" visibility="visible" style="left:822px; top:57px; width:98px; height:23px; vertical-align:middle; ">의뢰자</caption>
- <input id="inp_mntrperchgr" ref="/root/main/mntbase/mntinfo/mntrperchgr" disabled="false" navindex="9" visibility="visible" editable="true" style="left:102px; top:107px; width:156px; height:19px; "/>
- <input id="inp_mntrtodd" ref="/root/main/mntbase/mntinfo/mntrtodd" class="input_essential" disabled="false" navindex="8" visibility="visible" editable="true" inputtype="date" maxlength="13" style="left:359px; top:107px; width:111px; height:19px; "/>
- <caption id="caption1" class="cell_1" visibility="visible" style="left:262px; top:105px; width:93px; height:23px; vertical-align:middle; ">모니터링 일시</caption>
- <input id="inp_mntrfromtm" ref="/root/main/mntbase/mntinfo/mntrfromtm" disabled="false" navindex="8" visibility="visible" editable="true" maxlength="13" format="hh:nn:ss" style="left:482px; top:107px; width:70px; height:19px; "/>
- <caption id="caption42" style="left:555px; top:106px; width:20px; height:20px; ">~</caption>
- <input id="inp_mntrtotm" ref="/root/main/mntbase/mntinfo/mntrtotm" disabled="false" navindex="8" visibility="visible" editable="true" maxlength="13" format="hh:nn:ss" style="left:570px; top:107px; width:70px; height:19px; "/>
- <caption id="caption38" class="cell_1" visibility="visible" style="left:265px; top:25px; width:93px; height:23px; vertical-align:middle; ">과제ID</caption>
- </group>
- <group id="group4" scroll="auto" style="left:0px; top:757px; width:1195px; height:27px; ">
- <button id="btn_prt" class="btn6_letter2" style="left:7px; top:5px; width:56px; height:22px; ">
- <caption>출력</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- model.makeValue("/root/main/mntbase/mntinfo/cstdcondnm", btn_prt.label);
- exeReportPreview("RPATR00800", "XMLSTR", "", "", "true","","","","","false");
- ]]>
- </script>
- </button>
- <button id="btn_save" class="btn4_letter2" style="left:1129px; top:5px; width:56px; height:22px; ">
- <caption>저장</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- //저장체크(20091201)-----------------------------------------------------
- // 저장을 할 때 임상시험진행현황 필수 체크
- if ( model.getValue("/root/main/mntbase/mntinfo/clincprogrs") == "") {
- messageBox("임상시험진행현황 항목은 필수 입력 사항 입니다..","I9999");
- model.setFocus("rdo_ClincRes");
- return;
- }
- if ( model.getValue("/root/main/mntbase/mntinfo/examperchgr") == "") {
- messageBox("시험책임자 항목은 필수 입력 사항 입니다..","I9999");
- model.setFocus("inp_examperchgr");
- return;
- }
- if ( model.getValue("/root/main/mntbase/mntinfo/mntrperchgr") == "") {
- messageBox("모니터 담당자는 필수 입력 사항 입니다..","I9999");
- model.setFocus("inp_mntrperchgr");
- return;
- }
- if ( model.getValue("/root/main/mntbase/mntinfo/mntrtodd") == "") {
- messageBox("모니터링일시는 필수 입력 사항 입니다..","I9999");
- model.setFocus("inp_mntrtodd");
- return;
- }
- if ( model.getValue("/root/main/mntbase/mntinfo/mntrfromtm") == "") {
- messageBox("모니터링일시from시간 항목은 필수 입력 사항 입니다..","I9999");
- model.setFocus("inp_mntrfromtm");
- return;
- }
- if ( model.getValue("/root/main/mntbase/mntinfo/mntrtotm") == "") {
- messageBox("모니터링일시to시간 항목은 필수 입력 사항 입니다..","I9999");
- model.setFocus("inp_mntrtotm");
- return;
- }
- //-----------------------------------------------------------------------
- var seq = model.getValue("/root/main/mntbase/mntinfo/seq");
- if(isNull(seq)){
- model.setValue("/root/main/mntbase/mntinfo/status", "i");
- }else{
- model.setValue("/root/main/mntbase/mntinfo/status", "u");
- }
- //저장을 한다.
- if(submit("TXATR00801")){
- //if(model.getValue("/root/hidden/paminfo/recinfo/cdid") != ""){
- //model.setValue("/root/temp/cdnm", model.getValue("/root/hidden/paminfo/recinfo/cdid"));
- //}
- if(submit("TRATR00802")){
- cmb_history.select(0);
- fChgRecHistInfo();
- }
- }
- model.refresh();
-
- ]]>
- </script>
- </button>
- <button id="button1" class="btn4_letter3" style="left:1050px; top:5px; width:68px; height:22px; ">
- <caption>초기화</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- model.setValue("/root/temp/cdnm", "");
- if( isNull(model.getValue("/root/temp/cdnm")) ){
-
- //alert(model.getValue("/root/main/crbaseinfo/subjinfo/empnm"));
- model.setValue("/root/send/req/instcd","");
- //model.setValue("/root/send/req/subjectno", "" );
- model.setValue("/root/send/req/seq", "");
- model.setValue("/root/send/req/subjno",model.getValue("/root/main/mntbase/mntinfo/subjno"));
- submit("TRATR00801");
- }
- model.refresh();
- ]]>
- </script>
- </button>
- </group>
- <group id="group2" scroll="auto" style="left:0px; top:145px; width:1195px; height:613px; ">
- <caption id="caption751" class="cell_1" visibility="visible" style="left:544px; top:71px; width:346px; height:23px; text-align:center; vertical-align:middle; ">구분</caption>
- <caption id="caption740" class="cell_1" visibility="visible" style="left:465px; top:21px; width:76px; height:23px; vertical-align:middle; ">피험자 현황</caption>
- <caption id="caption752" class="cell_2" style="left:0px; top:96px; width:234px; height:23px; vertical-align:middle; ">임상시험용 의약품 관리 기록</caption>
- <caption id="caption50" class="cell_1" visibility="visible" style="left:0px; top:427px; width:347px; height:28px; vertical-align:middle; ">
- <![CDATA[1. 계획서에 따른 투약방법 준수 여부 :
- - 1회 투여량, tear off 라벨 처리 등]]>
- </caption>
- <caption id="caption753" class="cell_1" visibility="visible" style="left:388px; top:71px; width:77px; height:23px; text-align:center; vertical-align:middle; ">아니오</caption>
- <caption id="caption742" class="tit_2" style="left:0px; top:29px; width:126px; height:13px; ">과제 기본정보</caption>
- <caption id="caption51" class="cell_2" style="left:0px; top:402px; width:347px; height:23px; vertical-align:middle; ">임상시험용 의약품 투약관련</caption>
- <caption id="caption40" class="cell_1" visibility="visible" style="left:0px; top:312px; width:347px; height:28px; vertical-align:middle; ">
- <![CDATA[1. 계획서에 규정된 내용에 따른 보관 / 저장여부
- - 온도조건, 시건여부, 접근의 제한성]]>
- </caption>
- <caption id="caption754" class="cell_1" visibility="visible" style="left:458px; top:71px; width:85px; height:23px; text-align:center; vertical-align:middle; ">해당없음</caption>
- <caption id="caption743" style="left:691px; top:23px; width:18px; height:20px; ">명</caption>
- <caption id="caption20" class="cell_1" visibility="visible" style="left:0px; top:256px; width:347px; height:28px; vertical-align:middle; ">5. 임상시험용의약품 처방전 : 수불 기록과 처방전 일치 여부</caption>
- <caption id="caption10" class="cell_1" visibility="visible" style="left:0px; top:151px; width:347px; height:28px; vertical-align:middle; ">2. 재고 관리 정확성 : 기록과 실물 재고의 일치 여부</caption>
- <caption id="caption757" class="cell_1" visibility="visible" style="left:891px; top:71px; width:304px; height:23px; text-align:center; vertical-align:middle; ">수정 요청사항 및 comment</caption>
- <line id="line282" class="line_1" style="x1:0px; y1:66px; x2:1194px; y2:66px; "/>
- <caption id="caption746" class="cell_1" visibility="visible" style="left:0px; top:21px; width:112px; height:23px; vertical-align:middle; ">임상시험진행현황</caption>
- <caption id="caption11" class="cell_1" visibility="visible" style="left:0px; top:181px; width:347px; height:28px; vertical-align:middle; ">
- <![CDATA[3. 관련 기록의 보존 상태
- - 누락이나 분실없이 완전하게 관리되고 있는지 여부]]>
- </caption>
- <caption id="caption758" class="cell_1" visibility="visible" style="left:0px; top:121px; width:347px; height:28px; vertical-align:middle; ">
- <![CDATA[1. Drug accoungtability Log 지 기재사항의 완결여부
- - 입출고 일시, 수량 등 기재요청 사항]]>
- </caption>
- <caption id="caption747" class="cell_1" visibility="visible" style="left:0px; top:71px; width:347px; height:23px; text-align:center; vertical-align:middle; ">구분</caption>
- <line id="line283" class="line_1" style="x1:0px; y1:16px; x2:1194px; y2:16px; "/>
- <caption id="caption748" class="tit_2" style="left:0px; top:1px; width:126px; height:13px; ">모니터링 내용</caption>
- <input id="input443" ref="/root/main/mntbase/mntinfo/plansubtesteephos" disabled="false" navindex="8" visibility="visible" editable="true" format="#,###" style="left:642px; top:23px; width:46px; height:19px; "/>
- <caption id="caption13" class="cell_2" style="left:0px; top:96px; width:347px; height:23px; vertical-align:middle; ">임상시험용 의약품 관리 기록</caption>
- <caption id="caption749" class="tit_2" style="left:0px; top:51px; width:126px; height:13px; ">모니터링 항목</caption>
- <caption id="caption58" class="cell_1" visibility="visible" style="left:0px; top:482px; width:347px; height:28px; vertical-align:middle; ">1. 관리약사 CV</caption>
- <caption id="caption25" class="cell_2" style="left:0px; top:287px; width:347px; height:23px; vertical-align:middle; ">임상시험용 의약품 보관</caption>
- <caption id="caption59" class="cell_2" style="left:0px; top:457px; width:347px; height:23px; vertical-align:middle; ">임상험약국 관련 서류 요청</caption>
- <caption id="caption28" class="cell_1" visibility="visible" style="left:0px; top:342px; width:347px; height:28px; vertical-align:middle; ">2. 온도기록지의 정기적인 관리여부 : 기록상태 및 update 상태</caption>
- <caption id="caption29" class="cell_1" visibility="visible" style="left:0px; top:371px; width:347px; height:28px; vertical-align:middle; ">3. 유효기간 관리 적절성</caption>
- <caption id="caption19" class="cell_1" visibility="visible" style="left:0px; top:211px; width:347px; height:42px; vertical-align:middle; ">
- <![CDATA[4. 기록방법의 적합성
- - 오기, 불명확한 부분에 대한 수정 방법
- - 서명의 적합성]]>
- </caption>
- <caption id="caption750" class="cell_1" visibility="visible" style="left:348px; top:71px; width:48px; height:23px; text-align:center; vertical-align:middle; ">예</caption>
- <caption id="caption12" class="cell_1" visibility="visible" style="left:0px; top:512px; width:347px; height:28px; vertical-align:middle; ">2. Source documents의 사본</caption>
- <caption id="caption14" class="cell_1" visibility="visible" style="left:544px; top:256px; width:347px; height:28px; vertical-align:middle; ">5. 임상시험용의약품 처방전 : 수불 기록과 처방전 일치 여부</caption>
- <caption id="caption15" class="cell_1" visibility="visible" style="left:544px; top:151px; width:347px; height:28px; vertical-align:middle; ">2. 재고 관리 정확성 : 기록과 실물 재고의 일치 여부</caption>
- <caption id="caption16" class="cell_1" visibility="visible" style="left:544px; top:181px; width:347px; height:28px; vertical-align:middle; ">
- <![CDATA[3. 관련 기록의 보존 상태
- - 누락이나 분실없이 완전하게 관리되고 있는지 여부]]>
- </caption>
- <caption id="caption17" class="cell_1" visibility="visible" style="left:544px; top:121px; width:347px; height:28px; vertical-align:middle; ">
- <![CDATA[1. Drug accoungtability Log 지 기재사항의 완결여부
- - 입출고 일시, 수량 등 기재요청 사항]]>
- </caption>
- <caption id="caption18" class="cell_2" style="left:544px; top:96px; width:347px; height:23px; vertical-align:middle; ">임상시험용 의약품 관리 기록</caption>
- <caption id="caption21" class="cell_1" visibility="visible" style="left:544px; top:211px; width:347px; height:43px; vertical-align:middle; ">
- <![CDATA[4. 기록방법의 적합성
- - 오기, 불명확한 부분에 대한 수정 방법
- - 서명의 적합성]]>
- </caption>
- <caption id="caption22" class="cell_1" visibility="visible" style="left:544px; top:312px; width:347px; height:28px; vertical-align:middle; ">
- <![CDATA[1. 계획서에 규정된 내용에 따른 보관 / 저장여부
- - 온도조건, 시건여부, 접근의 제한성]]>
- </caption>
- <caption id="caption23" class="cell_2" style="left:544px; top:287px; width:346px; height:23px; vertical-align:middle; ">임상시험용 의약품 보관</caption>
- <caption id="caption24" class="cell_1" visibility="visible" style="left:544px; top:342px; width:347px; height:28px; vertical-align:middle; ">2. 온도기록지의 정기적인 관리여부 : 기록상태 및 update 상태</caption>
- <caption id="caption26" class="cell_1" visibility="visible" style="left:544px; top:371px; width:347px; height:29px; vertical-align:middle; ">3. 유효기간 관리 적절성</caption>
- <caption id="caption27" class="cell_1" visibility="visible" style="left:544px; top:427px; width:347px; height:28px; vertical-align:middle; ">
- <![CDATA[1. 계획서에 따른 투약방법 준수 여부 :
- - 1회 투여량, tear off 라벨 처리 등]]>
- </caption>
- <caption id="caption30" class="cell_2" style="left:544px; top:402px; width:347px; height:23px; vertical-align:middle; ">임상시험용 의약품 투약관련</caption>
- <caption id="caption31" class="cell_1" visibility="visible" style="left:544px; top:511px; width:347px; height:28px; vertical-align:middle; ">2. Source documents의 사본</caption>
- <caption id="caption32" class="cell_1" visibility="visible" style="left:544px; top:481px; width:347px; height:28px; vertical-align:middle; ">1. 관리약사 CV</caption>
- <caption id="caption33" class="cell_2" style="left:544px; top:457px; width:347px; height:23px; vertical-align:middle; ">임상험약국 관련 서류 요청</caption>
- <caption id="caption35" style="left:545px; top:23px; width:90px; height:20px; ">계획 피험자 수 :</caption>
- <caption id="caption34" style="left:866px; top:22px; width:18px; height:20px; ">명</caption>
- <caption id="caption36" class="cell_1" visibility="visible" style="left:712px; top:21px; width:102px; height:23px; vertical-align:middle; ">진행 중인 피험자</caption>
- <input id="input14" ref="/root/main/mntbase/mntinfo/prcssubtesteephos" class="input_default" disabled="false" navindex="11" visibility="visible" editable="true" format="#,###" style="left:817px; top:23px; width:46px; height:19px; "/>
- <caption id="caption37" class="cell_1" visibility="visible" style="left:886px; top:21px; width:216px; height:23px; vertical-align:middle; ">지난 모니터링 이후 참여 중단 피험자</caption>
- <input id="input15" ref="/root/main/mntbase/mntinfo/subtesteephosid" class="input_default" disabled="false" navindex="11" visibility="visible" editable="true" style="left:1108px; top:23px; width:77px; height:19px; "/>
- <line id="line1" class="line_1" style="x1:1px; y1:561px; x2:1195px; y2:561px; "/>
- <caption id="caption39" class="tit_2" style="left:1px; top:546px; width:170px; height:14px; ">모니터링 항목별 특이사항</caption>
- <textarea id="textarea1" ref="/root/main/mntbase/mntinfo/mntrspcffacmt" style="left:5px; top:566px; width:1190px; height:45px; "/>
- <textarea id="textarea2" ref="/root/main/mntbase/mntinfo/drugendcmt" style="left:890px; top:120px; width:305px; height:30px; "/>
- <textarea id="textarea3" ref="/root/main/mntbase/mntinfo/stocmntmatchcmt" style="left:890px; top:150px; width:305px; height:30px; "/>
- <textarea id="textarea4" ref="/root/main/mntbase/mntinfo/relreckeepstatcmt" style="left:890px; top:180px; width:305px; height:30px; "/>
- <textarea id="textarea5" ref="/root/main/mntbase/mntinfo/recmthdfitncmt" style="left:890px; top:210px; width:305px; height:45px; "/>
- <textarea id="textarea6" ref="/root/main/mntbase/mntinfo/rctpdisbursempscmt" style="left:890px; top:255px; width:305px; height:30px; "/>
- <textarea id="textarea7" ref="/root/main/mntbase/mntinfo/keepsavecmt" style="left:890px; top:311px; width:305px; height:30px; "/>
- <textarea id="textarea8" ref="/root/main/mntbase/mntinfo/recupdtstatcmt" style="left:890px; top:341px; width:305px; height:30px; "/>
- <textarea id="textarea9" ref="/root/main/mntbase/mntinfo/valitermmngtfithcmt" style="left:890px; top:370px; width:305px; height:30px; "/>
- <textarea id="textarea10" ref="/root/main/mntbase/mntinfo/medimthdcmt" style="left:890px; top:426px; width:305px; height:30px; "/>
- <textarea id="textarea11" ref="/root/main/mntbase/mntinfo/mngtpharmstcvcmt" style="left:890px; top:480px; width:305px; height:30px; "/>
- <textarea id="textarea12" ref="/root/main/mntbase/mntinfo/srcdocucopycmt" style="left:890px; top:510px; width:305px; height:30px; "/>
- <select1 id="rdo_ClincRes" ref="/root/main/mntbase/mntinfo/clincprogrs" appearance="full" cellspacing="15" cols="5" vcellspacing="0" overflow="visible" style="left:115px; top:25px; width:345px; height:15px; border-style:none; ">
- <choices>
- <item>
- <label>시작</label>
- <value>1</value>
- </item>
- <item>
- <label>진행중</label>
- <value>2</value>
- </item>
- <item>
- <label>지연</label>
- <value>3</value>
- </item>
- <item>
- <label>취소/종결</label>
- <value>4</value>
- </item>
- <item>
- <label>투약종료</label>
- <value>5</value>
- </item>
- </choices>
- </select1>
- <select1 id="radio2" appearance="full" cellspacing="15" cols="3" overflow="visible" style="left:353px; top:124px; width:185px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>예</label>
- <value>1</value>
- </item>
- <item>
- <label>아니오</label>
- <value>2</value>
- </item>
- <item>
- <label>해당없음</label>
- <value>3</value>
- </item>
- </choices>
- </select1>
- <select1 id="radio3" ref="/root/main/mntbase/mntinfo/drugendflag" appearance="full" cellspacing="15" cols="3" overflow="visible" style="left:353px; top:124px; width:185px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>예</label>
- <value>1</value>
- </item>
- <item>
- <label>아니오</label>
- <value>2</value>
- </item>
- <item>
- <label>해당없음</label>
- <value>3</value>
- </item>
- </choices>
- </select1>
- <select1 id="radio4" ref="/root/main/mntbase/mntinfo/stocmntmatchflag" appearance="full" cellspacing="15" cols="3" overflow="visible" style="left:353px; top:154px; width:185px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>예</label>
- <value>1</value>
- </item>
- <item>
- <label>아니오</label>
- <value>2</value>
- </item>
- <item>
- <label>해당없음</label>
- <value>3</value>
- </item>
- </choices>
- </select1>
- <select1 id="radio5" ref="/root/main/mntbase/mntinfo/relreckeepstatflag" appearance="full" cellspacing="15" cols="3" overflow="visible" style="left:353px; top:184px; width:185px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>예</label>
- <value>1</value>
- </item>
- <item>
- <label>아니오</label>
- <value>2</value>
- </item>
- <item>
- <label>해당없음</label>
- <value>3</value>
- </item>
- </choices>
- </select1>
- <select1 id="radio6" ref="/root/main/mntbase/mntinfo/recmthdfitnflag" appearance="full" cellspacing="15" cols="3" overflow="visible" style="left:353px; top:221px; width:185px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>예</label>
- <value>1</value>
- </item>
- <item>
- <label>아니오</label>
- <value>2</value>
- </item>
- <item>
- <label>해당없음</label>
- <value>3</value>
- </item>
- </choices>
- </select1>
- <select1 id="radio7" ref="/root/main/mntbase/mntinfo/keepsaveflag" appearance="full" cellspacing="15" cols="3" overflow="visible" style="left:353px; top:315px; width:185px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>예</label>
- <value>1</value>
- </item>
- <item>
- <label>아니오</label>
- <value>2</value>
- </item>
- <item>
- <label>해당없음</label>
- <value>3</value>
- </item>
- </choices>
- </select1>
- <select1 id="radio8" ref="/root/main/mntbase/mntinfo/recupdtstatflag" appearance="full" cellspacing="15" cols="3" overflow="visible" style="left:353px; top:345px; width:185px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>예</label>
- <value>1</value>
- </item>
- <item>
- <label>아니오</label>
- <value>2</value>
- </item>
- <item>
- <label>해당없음</label>
- <value>3</value>
- </item>
- </choices>
- </select1>
- <select1 id="radio9" ref="/root/main/mntbase/mntinfo/valitermmngtfithflag" appearance="full" cellspacing="15" cols="3" overflow="visible" style="left:353px; top:375px; width:185px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>예</label>
- <value>1</value>
- </item>
- <item>
- <label>아니오</label>
- <value>2</value>
- </item>
- <item>
- <label>해당없음</label>
- <value>3</value>
- </item>
- </choices>
- </select1>
- <select1 id="radio10" ref="/root/main/mntbase/mntinfo/rctpdisbursempsflag" appearance="full" cellspacing="15" cols="3" overflow="visible" style="left:353px; top:258px; width:185px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>예</label>
- <value>1</value>
- </item>
- <item>
- <label>아니오</label>
- <value>2</value>
- </item>
- <item>
- <label>해당없음</label>
- <value>3</value>
- </item>
- </choices>
- </select1>
- <select1 id="radio11" ref="/root/main/mntbase/mntinfo/medimthdflag" appearance="full" cellspacing="15" cols="3" overflow="visible" style="left:353px; top:431px; width:185px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>예</label>
- <value>1</value>
- </item>
- <item>
- <label>아니오</label>
- <value>2</value>
- </item>
- <item>
- <label>해당없음</label>
- <value>3</value>
- </item>
- </choices>
- </select1>
- <select1 id="radio12" ref="/root/main/mntbase/mntinfo/mngtpharmstcvflag" appearance="full" cellspacing="15" cols="3" overflow="visible" style="left:353px; top:486px; width:185px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>예</label>
- <value>1</value>
- </item>
- <item>
- <label>아니오</label>
- <value>2</value>
- </item>
- <item>
- <label>해당없음</label>
- <value>3</value>
- </item>
- </choices>
- </select1>
- <select1 id="radio13" ref="/root/main/mntbase/mntinfo/srcdocucopyflag" appearance="full" cellspacing="15" cols="3" overflow="visible" style="left:353px; top:516px; width:185px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>예</label>
- <value>1</value>
- </item>
- <item>
- <label>아니오</label>
- <value>2</value>
- </item>
- <item>
- <label>해당없음</label>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </group>
- <line id="line6" class="line_2" style="x1:1px; y1:93px; x2:1195px; y2:93px; "/>
- <line id="line2" class="line_2" style="x1:1px; y1:117px; x2:1195px; y2:117px; "/>
- <line id="line3" class="line_2" style="x1:1px; y1:141px; x2:1195px; y2:141px; "/>
- <line id="line4" class="line_2" style="x1:1px; y1:189px; x2:1195px; y2:189px; "/>
- <line id="line5" class="line_2" style="x1:1px; y1:238px; x2:1195px; y2:238px; "/>
- <line id="line7" class="line_2" style="x1:1px; y1:264px; x2:1195px; y2:264px; "/>
- <line id="line8" class="line_2" style="x1:1px; y1:294px; x2:1195px; y2:294px; "/>
- <line id="line9" class="line_2" style="x1:1px; y1:324px; x2:1195px; y2:324px; "/>
- <line id="line10" class="line_2" style="x1:1px; y1:354px; x2:1195px; y2:354px; "/>
- <line id="line11" class="line_2" style="x1:1px; y1:399px; x2:1195px; y2:399px; "/>
- <line id="line12" class="line_2" style="x1:1px; y1:429px; x2:1195px; y2:429px; "/>
- <line id="line13" class="line_2" style="x1:1px; y1:455px; x2:1195px; y2:455px; "/>
- <line id="line14" class="line_2" style="x1:1px; y1:485px; x2:1195px; y2:485px; "/>
- <line id="line15" class="line_2" style="x1:1px; y1:514px; x2:1195px; y2:514px; "/>
- <line id="line16" class="line_2" style="x1:1px; y1:545px; x2:1195px; y2:545px; "/>
- <line id="line17" class="line_2" style="x1:1px; y1:570px; x2:1195px; y2:570px; "/>
- <line id="line18" class="line_2" style="x1:1px; y1:600px; x2:1195px; y2:600px; "/>
- <line id="line20" class="line_2" style="x1:1px; y1:625px; x2:1195px; y2:625px; "/>
- <line id="line21" class="line_2" style="x1:1px; y1:655px; x2:1195px; y2:655px; "/>
- <line id="line22" class="line_2" style="x1:1px; y1:685px; x2:1195px; y2:685px; "/>
- <caption id="caption41" class="cell_2" visibility="visible" style="left:947px; top:41px; width:85px; height:23px; vertical-align:middle; ">저장 이력</caption>
- <select1 id="cmb_history" ref="/root/temp/cdnm" visibility="visible" appearance="minimal" style="left:1035px; top:43px; width:160px; height:19px; ">
- <choices>
- <itemset nodeset="/root/hidden/paminfo/recinfo">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- fChgRecHistInfo();
- ]]>
- </script>
- </select1>
- <input id="input4" ref="/root/main/mntbase/mntinfo/subjid" class="input_essential" disabled="true" navindex="8" visibility="visible" editable="false" maxlength="11" style="left:362px; top:40px; width:173px; height:19px; "/>
- </xhtml:body>
- </xhtml:html>
|