123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064 |
- <?xml version="1.0" encoding="EUC-KR"?>
- <?xml-stylesheet type="text/css" href="../../../com/commonweb/css/common.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>
- <script type="javascript" src="../../../com/commonweb/js/tfHelper.js"/>
- <script type="javascript" src="../../../com/commonweb/js/common.js"/>
- <script type="javascript">
- <![CDATA[
- function getSubjInfo() {
- submit("TRIRS00126");
- var judgkind = model.getValue("/root/main/view/irsmsubjinfo/judgkind");
- model.setValue("/root/temp/subjattfile", model.getValue("/root/main/view/irsdsubjhosp/subjattfile"));
- if(judgkind == "S") {
- model.toggle("case6");
- // model.setValue("/root/main/view/irsmsubjinfo/reqinstchrgid", model.getValue("/root/main/view/imcmreqinst/cmpynm"));
- } else {
- model.toggle("case7");
- // model.setValue("/root/main/view/irsmsubjinfo/reqinstchrgid", model.getValue("/root/main/view/imcmreqinst/cmpynm"));
- }
- model.refresh();
- }
- function getSubjInfoNInternet() {
- submit("TRIRI00104");
-
- if ( model.getValue("/root/main/grid/subjproginfo["+grd_prcssubjlist.row+"]/consorflag") == 'N') {
- submit("TRIRI00105");
- } else {
- submit("TRIRI00107");
- }
-
- if(grd_judghist.rows - grd_judghist.fixedRows > 0) {
- model.setValue("/root/iinit/subjid", model.getValue("/root/main/iview/iismjudg[1]/subjid"));
- model.setValue("/root/iinit/instcd", model.getValue("/root/main/iview/iismjudg[1]/instcd"));
- model.setValue("/root/iinit/judgkind", model.getValue("/root/main/iview/iismjudg[1]/judgkind"));
- model.setValue("/root/iinit/judgappdg", model.getValue("/root/main/iview/iismjudg[1]/judgappdg"));
- model.setValue("/root/iinit/reptkind", model.getValue("/root/main/iview/iismjudg[1]/reptkind"));
- model.setValue("/root/iinit/reptseqno", model.getValue("/root/main/iview/iismjudg[1]/reptseqno"));
- submit("TRIRI00106");
- }
- model.refresh();
- }
- function getIrsdSubjHospInfo() {
- submit("TRIRS00127");
- model.refresh();
- }
- function getChkGroupInfo() {
- if(submit("TRIRS00128")) {
- datagrid1.colDisabled(2) = true;
- }
- model.refresh();
- }
-
- function getValue() {
- var subjid = model.getValue("/root/init/subjid");
- var instcd = model.getValue("/root/init/instcd");
- if(subjid != "" && instcd != "") return true;
- else return false;
- }
- function getTestInfo() {
- submit("TRIRI00103")
- model.refresh();
- }
-
- ]]>
- </script>
- <model id="model1">
- <script type="javascript" ev:event="xforms-ready">
- <![CDATA[
- model.removenode("/root/main/grid/subjproginfo");
- model.removenode("/root/main/iview/iismjudg");
-
- model.setValue("/root/send/screenmenu", getScreenMenuParameter());
- //model.setValue("/root/send/screenmenu", "C");
-
- var screenmenu = model.getValue("/root/send/screenmenu");
-
- if ( screenmenu == 'C' ) {
- grd_subjprcsinetrecuinfo.caption = "과제번호^병원명^연구자확인^CRCC확인^심사비^IRB심사^계약서^계약^시험약입고^인터넷모집^접수지원마감일^중간보고서^결과보고서^연구비정산";
- } else {
- grd_subjprcsinetrecuinfo.caption = "과제번호^병원명^의뢰자확인^CRCC확인^심사비^IRB심사^계약서^계약^시험약입고^인터넷모집^접수지원마감일^중간보고서^결과보고서^연구비정산"
- }
-
- model.toggle("case1");
- submit("TRIRZ00000");
-
- submit("TRIRI00101");
- model.refresh();
- ]]>
- </script>
- <instance id="instance1">
- <root xmlns="">
- <main>
- <grid>
- <subjproginfo>
- <subjno/>
- <subjnm/>
- <itemnm/>
- <pusernm/>
- <userid/>
- <rusernm/>
- <mpphonno/>
- <instcd/>
- <subjid/>
- <judgkind/>
- <cmpynm/>
- <crocmpynm/>
- <consorflag/>
- </subjproginfo>
- </grid>
- <default>
- <subjhospi>
- <subjno/>
- <totstdycost/>
- <reqdt/>
- <usernm/>
- <stdystartdd/>
- <stdyenddd/>
- <itemnm/>
- <subjnm/>
- </subjhospi>
- </default>
- <view>
- <irsmsubjinfo>
- <subjid/>
- <perchgrid/>
- <judgkind/>
- <subjnm/>
- <subjpwd/>
- <acptyn/>
- <clinictrgtflag/>
- <reqinstflag/>
- <stdycostsuppinst/>
- <stdycostsuppinstnm/>
- <comnm/>
- <itemnm/>
- <stdystartdd/>
- <allidxcase/>
- <stdyenddd/>
- <appdd/>
- <testeeaprvflag/>
- <relprstdata1/>
- <relprstdata2/>
- <relprstdata3/>
- <relprstdata4/>
- <relprstdata5/>
- <prstdataetc5/>
- <resercd/>
- <reqinstchrgid/>
- <concernrela/>
- <verplan/>
- <veraprv/>
- <vercrf/>
- <verib/>
- <consorflag/>
- <deptcd/>
- <reqcnfmyn/>
- <inptdd/>
- <inptuserid/>
- <updtuserid/>
- <updtdd/>
- <stdykind1/>
- <etctrgt1/>
- <stdykind2/>
- <etctrgt2/>
- <stdykind3/>
- <stdykind4/>
- <etctrgt4/>
- <manynation/>
- <manyinst/>
- <cmcinstcnt/>
- <stdytrgt/>
- <etctrgt/>
- <agenestdyflag/>
- <cellcurestdyyn/>
- <testeestat/>
- <fratesteeflag/>
- <stdyspcl1>
- </stdyspcl1>
- <stdyspcl2/>
- <stdyspcl3/>
- <stdyspcl4/>
- <stdyspcl5/>
- <stdyspcl6/>
- <stdyspcl7/>
- <examadjthosp/>
- <examadjtprf/>
- <allexamrespnm/>
- <allexamresppos/>
- <foodscrtgovpassyn/>
- <prmisnnatiyn/>
- <intermarketyn/>
- <inqrgoal/>
- <trgtsick/>
- <inqrmthd/>
- <croinstcd/>
- <croinstnm/>
- <testrecruit/>
- <testrecruityn/>
- </irsmsubjinfo>
- <imcmreqinst>
- <reqinstcd/>
- <cmpynm/>
- <bizcondkind/>
- <prsdnm/>
- <jobposnm/>
- <location/>
- </imcmreqinst>
- <imcmreqchrg>
- <nm/>
- <posnm/>
- <jobposnm/>
- <cntctelno/>
- <email/>
- <mpphonno/>
- <faxno/>
- </imcmreqchrg>
- <irsdsubjhosp>
- <m/>
- <subjid/>
- <instcd/>
- <reqyn/>
- <stdystartdd/>
- <stdyenddd/>
- <roothosp/>
- <direccost/>
- <depomthd/>
- <respstdyempno/>
- <respstdyempnm/>
- <posnm/>
- <jobposnm/>
- <subjattfile/>
- </irsdsubjhosp>
- <irsdcollareser>
- <subjid/>
- <instcd/>
- <userid/>
- <bankcd/>
- <acntno/>
- <depor/>
- <cmt/>
- <usernm/>
- <posnm/>
- <jobposnm/>
- </irsdcollareser>
- <irsdpharmst>
- <subjid/>
- <instcd/>
- <userid/>
- <bankcd/>
- <acntno/>
- <cmt/>
- <depor/>
- <usernm/>
- <posnm/>
- </irsdpharmst>
- <irsdcodi>
- <subjid/>
- <instcd/>
- <userid/>
- <bankcd/>
- <acntno/>
- <depor/>
- <cmt/>
- <usernm/>
- <posnm/>
- </irsdcodi>
- <icumbugta>
- <subjid/>
- <instcd/>
- <updtdg/>
- <itemexpendcd/>
- <detlitemexpendcd/>
- <detlitemexpendnm/>
- <bugt/>
- <calcbase/>
- </icumbugta>
- <icumbugtb>
- <subjid/>
- <instcd/>
- <updtdg/>
- <itemexpendcd/>
- <detlitemexpendcd/>
- <detlitemexpendnm/>
- <bugt/>
- <calcbase/>
- </icumbugtb>
- <icumbugtc>
- <subjid/>
- <instcd/>
- <updtdg/>
- <itemexpendcd/>
- <detlitemexpendcd/>
- <detlitemexpendnm/>
- <bugt/>
- <calcbase/>
- </icumbugtc>
- <icumbugtfilelst>
- <attfilenm1/>
- <attfilenm2/>
- <attfilenm3/>
- <attfilenm4/>
- <attfilenm5/>
- </icumbugtfilelst>
- <chkgrouplst>
- <subjid/>
- <instcd/>
- <itemgrupcd/>
- <supitemseq/>
- <itemgrupnm/>
- <prtitem/>
- <possesyn/>
- <cmt/>
- <judgkindcode/>
- <judgkind/>
- <stdykind1/>
- <stdykind2/>
- <stdykind3/>
- <stdykind4/>
- </chkgrouplst>
- <imcmtestee>
- <testeenm/>
- <age/>
- <ht/>
- <bdwt/>
- <brthdd/>
- <fstrgstdt/>
- <telno/>
- <email/>
- </imcmtestee>
- <subjhospninternet>
- <subjno/>
- <instcd/>
- <respstdycnfmyn/>
- <conacptyn/>
- <crccaprvyn/>
- <judgamt/>
- <judgstat/>
- <conacptyn/>
- <conyn/>
- <examdrugwinyn/>
- <orderyn2/>
- <orderyn7/>
- </subjhospninternet>
- </view>
- <iview>
- <iismjudg>
- <judgkindnm/>
- <judgkind/>
- <judgappdg/>
- <judgenddd/>
- <judgdd/>
- <judgrslt/>
- <subjid/>
- <instcd/>
- <reptkind/>
- <reptseqno/>
- </iismjudg>
- <detail>
- <iisdjudgconf>
- <subjid/>
- <judgitem1/>
- <judgitem2/>
- <judgitem3/>
- <judgitem4/>
- <judgitem5/>
- <judgitem6/>
- <judgitem7/>
- <judgitem8/>
- </iisdjudgconf>
- </detail>
- </iview>
- </main>
- <init>
- <subjid/>
- <instcd/>
- <judgkind/>
- <perchgrid/>
- <baseinfo>
- <instinfo>
- <instcd/>
- <hospnm/>
- </instinfo>
- </baseinfo>
- </init>
- <iinit>
- <subjid/>
- <instcd/>
- <judgkind/>
- <judgappdg/>
- <reptkind/>
- <reptseqno/>
- </iinit>
- <send>
- <srchcrccaprvyn/>
- <srchcmpynm/>
- <srchitemnm/>
- <srchconfrdd/>
- <srchcontodd/>
- <srchstdytermfrom/>
- <srchstdytermto/>
- <srchsubjno/>
- <screenmenu/>
- <searchitem2>
- <instcd/>
- <subjid/>
- <reptseqno/>
- <reptkind/>
- <judgappdg/>
- <roothospidxcasecnt/>
- <subjno/>
- <subjnm/>
- <totstdycost/>
- <direccost/>
- <autosrchyn/>
- <actionyn/>
- </searchitem2>
- <data2>
- <subjid/>
- <instcd/>
- <confyn/>
- <reserrtnresn/>
- <reptkind/>
- </data2>
- </send>
- <temp>
- <totalamt/>
- <hospamt/>
- <crccamt/>
- <sumamt/>
- <tempnm/>
- <tempperchgrid/>
- <tempreqinstcd/>
- <subjattfile/>
- </temp>
- </root>
- </instance>
- <submission id="TRIRZ00000" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/init" replace="instance" resultref="/root/init/baseinfo"/>
- <submission id="TRIRI00101" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" replace="instance" resultref="/root/main/grid"/>
- <submission id="TRIRI00102" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/init" replace="instance" resultref="/root/main/default"/>
- <submission id="TRIRI00103" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/init" replace="instance" resultref="/root/main/view"/>
- <submission id="TRIRI00104" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/init" replace="instance" resultref="/root/main/view"/>
- <submission id="TRIRI00105" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/init" replace="instance" resultref="/root/main/iview"/>
- <submission id="TRIRI00106" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/iinit" replace="instance" resultref="/root/main/iview/detail"/>
- <submission id="TRIRI00107" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/init" replace="instance" resultref="/root/main/iview"/>
- <submission id="TRIRS00126" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/init" replace="instance" resultref="/root/main/view"/>
- <submission id="TRIRS00127" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/init" replace="instance" resultref="/root/main/view"/>
- <submission id="TRIRS00128" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/init" replace="instance" resultref="/root/main/view"/>
- <bind id="bind1" ref="/root/temp/totalamt" calculate="(sum(/root/main/view/icumbugta/bugt) +
sum(/root/main/view/icumbugtb/bugt) + 
sum(/root/main/view/icumbugtc/bugt)) * 1.15"/>
- <bind id="bind2" ref="/root/temp/hospamt" calculate="(sum(/root/main/view/icumbugta/bugt) +
sum(/root/main/view/icumbugtb/bugt) + 
sum(/root/main/view/icumbugtc/bugt)) * 0.10"/>
- <bind id="bind3" ref="/root/temp/crccamt" calculate="(sum(/root/main/view/icumbugta/bugt) +
sum(/root/main/view/icumbugtb/bugt) + 
sum(/root/main/view/icumbugtc/bugt)) * 0.05"/>
- <bind id="bind4" ref="/root/temp/sumamt" calculate="sum(/root/main/view/icumbugta/bugt) +
sum(/root/main/view/icumbugtb/bugt) + 
sum(/root/main/view/icumbugtc/bugt)"/>
- <submission id="TRIRS00105" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" resultref="/root/main"/>
- </model>
- </xhtml:head>
- <xhtml:body>
- <group id="grp_tle" style="left:0px; top:0px; width:1195px; height:14px; ">
- <caption id="caption120" class="tit_1" style="left:0px; top:0px; width:158px; height:14px; ">연구진행 상황 모니터링</caption>
- </group>
- <group id="group2" style="left:0px; top:15px; width:1195px; height:50px; vertical-align:top; ">
- <shape id="roundrect1" appearance="roundrect" ellipsewidth="10" ellipseheight="10" style="left:0px; top:0px; width:1195px; height:50px; background-color:#fffbf2; border-color:#ffd799; "/>
- <line id="line1" class="line_4" style="x1:1124px; y1:4px; x2:1124px; y2:47px; border-color:#ffe4bb; border-left-style:solid; "/>
- <caption id="caption1" class="search_name" style="left:10px; top:5px; width:65px; height:17px; text-align:left; ">분류 :</caption>
- <select1 id="combo3" ref="/root/send/srchcrccaprvyn" class="combo_search" navindex="1" appearance="minimal" style="left:105px; top:5px; width:100px; height:19px; ">
- <choices>
- <item>
- <label>- 전체 -</label>
- <value/>
- </item>
- <item>
- <label>승인</label>
- <value>1</value>
- </item>
- <item>
- <label>미승인</label>
- <value>2</value>
- </item>
- </choices>
- </select1>
- <input id="input2" ref="/root/send/srchsubjno" class="input_search" navindex="8" style="left:900px; top:27px; width:100px; height:19px; ">
- <script type="javascript" ev:event="onkeyup">
- <![CDATA[
- inputEnterKey("btn_sea","DOMActivate");
- ]]>
- </script>
- </input>
- <caption id="caption8" class="search_name" style="left:800px; top:27px; width:112px; height:17px; text-align:left; ">과제번호 :</caption>
- <caption id="caption9" class="search_name" style="left:10px; top:27px; width:112px; height:17px; text-align:left; ">계약일자 :</caption>
- <button id="btn_sea" class="btn1_letter2" _auth="R" style="left:1130px; top:15px; width:56px; height:22px; ">
- <caption>조회</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- submit("TRIRI00101");
- ]]>
- </script>
- </button>
- <input id="input1" ref="/root/send/srchcmpynm" class="input_search" navindex="2" style="left:495px; top:5px; width:100px; height:19px; ">
- <script type="javascript" ev:event="onkeyup">
- <![CDATA[
- inputEnterKey("btn_sea","DOMActivate");
- ]]>
- </script>
- </input>
- <caption id="caption2" class="search_name" style="left:400px; top:5px; width:77px; height:17px; text-align:left; ">의뢰자 :</caption>
- <caption id="caption3" class="search_name" style="left:800px; top:5px; width:112px; height:17px; text-align:left; ">품목명 :</caption>
- <input id="input3" ref="/root/send/srchitemnm" class="input_search" navindex="3" style="left:900px; top:5px; width:100px; height:19px; ">
- <script type="javascript" ev:event="onkeyup">
- <![CDATA[
- inputEnterKey("btn_sea","DOMActivate");
- ]]>
- </script>
- </input>
- <input id="input4" ref="/root/send/srchconfrdd" class="input_default" navindex="4" inputtype="date" style="left:105px; top:27px; width:100px; height:19px; "/>
- <input id="input5" ref="/root/send/srchcontodd" class="input_default" navindex="5" inputtype="date" style="left:215px; top:27px; width:100px; height:19px; "/>
- <input id="input6" ref="/root/send/srchstdytermfrom" class="input_default" navindex="6" inputtype="date" style="left:495px; top:27px; width:100px; height:19px; "/>
- <caption id="caption4" class="search_name" style="left:400px; top:27px; width:112px; height:17px; text-align:left; ">연구기간 :</caption>
- <input id="input7" ref="/root/send/srchstdytermto" class="input_default" navindex="7" inputtype="date" style="left:610px; top:27px; width:100px; height:19px; "/>
- </group>
- <line id="line2" class="line_1" style="x1:5px; y1:89px; x2:1195px; y2:89px; "/>
- <datagrid id="grd_prcssubjlist" nodeset="/root/main/grid/subjproginfo" caption="과제번호^과제명^품목명^의뢰자^CRO^의뢰담당자^email^연구자^연락처^병원코드^caption1^과제ID" colsep="^" colwidth="117, 278, 181, 122, 111, 81, 100, 64, 100, 100, 100" extendlastcol="scroll" mergecellsfixedrows="bycolrec" rowheader="seq" rowsep="|" tooltip="true" style="left:5px; top:94px; width:1190px; height:143px; ">
- <col ref="subjno"/>
- <col ref="subjnm"/>
- <col ref="itemnm"/>
- <col ref="cmpynm"/>
- <col ref="crocmpynm"/>
- <col ref="pusernm"/>
- <col ref="puseremail"/>
- <col ref="rusernm"/>
- <col ref="mpphonno"/>
- <col ref="instcd" visibility="hidden"/>
- <col ref="consorflag" visibility="hidden"/>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- if( isDataCell() ){
- if(grd_prcssubjlist.rows- grd_prcssubjlist.fixedRows == 0) {
- model.resetInstanceNode("/root/main/calc");
- return;
- }
- model.setValue("/root/init/subjid", model.getValue("/root/main/grid/subjproginfo["+grd_prcssubjlist.row+"]/subjid"));
- model.setValue("/root/init/instcd", model.getValue("/root/main/grid/subjproginfo["+grd_prcssubjlist.row+"]/instcd"));
- model.setValue("/root/init/judgkind", model.getValue("/root/main/grid/subjproginfo["+grd_prcssubjlist.row+"]/judgkind"));
- // model.setValue("/root/init/perchgrid", model.getValue("/root/main/grid/subjproginfo["+grd_prcssubjlist.row+"]/userid"));
- submit("TRIRI00102");
-
- if(button71.selected) {
- getSubjInfoNInternet();
- } else if(button1.selected) {
- getSubjInfo();
- } else if(button2.selected) {
- getIrsdSubjHospInfo();
- } else if(button3.selected) {
- getChkGroupInfo();
- } else if(button4.selected) {
- getTestInfo();
- getSubjInfo();
- }
- }
- ]]>
- </script>
- </datagrid>
- <line id="line9" class="line_3" style="x1:5px; y1:238px; x2:1195px; y2:238px; "/>
- <caption id="caption13" class="tit_2" style="left:5px; top:75px; width:140px; height:13px; ">진행중인 과제목록</caption>
- <switch id="switch1" style="left:2px; top:265px; width:1193px; height:515px; ">
- <case id="case1" selected="true">
- <caption id="caption5" class="tit_2" style="left:5px; top:5px; width:240px; height:13px; ">과제진행상황정보 및 인터넷 모집정보</caption>
- <line id="line3" class="line_1" style="x1:4px; y1:20px; x2:1170px; y2:20px; "/>
- <datagrid id="grd_subjprcsinetrecuinfo" nodeset="/root/main/view/subjhospninternet" caption="과제번호^병원명^연구자확인^CRCC확인^심사비^IRB심사^계약서^계약^시험약입고^인터넷모집^접수지원마감일^중간보고서^결과보고서^연구비정산" colsep="^" colwidth="100, 113, 67, 70, 57, 57, 56, 58, 81, 100, 100, 80, 80, 100, 100" extendlastcol="scroll" mergecellsfixedrows="bycolrec" rowsep="|" tooltip="true" style="left:4px; top:25px; width:1166px; height:60px; ">
- <col ref="subjno"/>
- <col disabled="true" ref="instcd" type="combo">
- <choices>
- <itemset nodeset="/root/init/baseinfo/instinfo">
- <label ref="hospnm"/>
- <value ref="instcd"/>
- </itemset>
- </choices>
- </col>
- <col disabled="true" ref="respstdycnfmyn" type="combo">
- <choices>
- <item>
- <label>확인</label>
- <value>Y</value>
- </item>
- <item>
- <label>미확인</label>
- <value>N</value>
- </item>
- <item>
- <label>반려</label>
- <value>R</value>
- </item>
- </choices>
- </col>
- <col disabled="true" ref="crccaprvyn" type="combo">
- <choices>
- <item>
- <label>확인</label>
- <value>1</value>
- </item>
- <item>
- <label>미확인</label>
- <value>2</value>
- </item>
- <item>
- <label>반려</label>
- <value>3</value>
- </item>
- </choices>
- </col>
- <col disabled="true" ref="judgamt" type="combo">
- <choices>
- <item>
- <label>입금</label>
- <value>Y</value>
- </item>
- <item>
- <label>미입금</label>
- <value>N</value>
- </item>
- </choices>
- </col>
- <col disabled="true" ref="judgstat" type="combo">
- <choices>
- <item>
- <label>승인</label>
- <value>Y</value>
- </item>
- <item>
- <label>시정승인</label>
- <value>A</value>
- </item>
- <item>
- <label>반려</label>
- <value>R</value>
- </item>
- <item>
- <label>보완후재심</label>
- <value>V</value>
- </item>
- <item>
- <label>저장</label>
- <value>S</value>
- </item>
- <item>
- <label>부결</label>
- <value>B</value>
- </item>
- <item>
- <label>승인된시험중지</label>
- <value>N</value>
- </item>
- </choices>
- </col>
- <col disabled="true" ref="conyn" type="combo">
- <choices>
- <item>
- <label>접수</label>
- <value>Y</value>
- </item>
- <item>
- <label/>
- <value>N</value>
- </item>
- </choices>
- </col>
- <col disabled="true" ref="conacptyn" type="combo">
- <choices>
- <item>
- <label>완료</label>
- <value>Y</value>
- </item>
- <item>
- <label/>
- <value>N</value>
- </item>
- </choices>
- </col>
- <col ref="examdrugwinyn"/>
- <col type="combo">
- <choices>
- <item>
- <label>공고</label>
- <value>Y</value>
- </item>
- <item>
- <label>미공고</label>
- <value>N</value>
- </item>
- </choices>
- </col>
- <col type="inputdate"/>
- <col ref="orderyn2"/>
- <col ref="orderyn7"/>
- <col/>
- <col visibility="hidden"/>
- </datagrid>
- <line id="line4" class="line_3" style="x1:5px; y1:90px; x2:1170px; y2:90px; "/>
- <input id="input8" ref="/root/main/default/subjhospi/subjno" class="input_default" editable="false" style="left:573px; top:116px; width:100px; height:19px; "/>
- <caption id="caption21" class="cell_1" style="left:471px; top:113px; width:100px; height:23px; text-align:center; vertical-align:middle; ">과제번호</caption>
- <caption id="caption6" class="tit_2" style="left:472px; top:93px; width:240px; height:13px; ">연구관련정보</caption>
- <input id="input9" ref="/root/main/default/subjhospi/totstdycost" class="input_default" editable="false" format="#,###" style="left:777px; top:116px; width:188px; height:19px; "/>
- <caption id="caption7" class="cell_1" style="left:675px; top:113px; width:100px; height:23px; text-align:center; vertical-align:middle; ">총연구비</caption>
- <input id="input10" ref="/root/main/default/subjhospi/usernm" class="input_default" editable="false" style="left:573px; top:138px; width:100px; height:19px; "/>
- <caption id="caption10" class="cell_1" style="left:471px; top:137px; width:100px; height:23px; text-align:center; vertical-align:middle; ">시험책임자</caption>
- <caption id="caption11" class="cell_1" style="left:675px; top:137px; width:100px; height:23px; text-align:center; vertical-align:middle; ">연구기간</caption>
- <input id="input11" ref="/root/main/default/subjhospi/stdystartdd" class="input_default" editable="false" inputtype="date" style="left:777px; top:138px; width:90px; height:19px; "/>
- <input id="input12" ref="/root/main/default/subjhospi/stdyenddd" class="input_default" editable="false" inputtype="date" style="left:876px; top:138px; width:90px; height:19px; "/>
- <input id="input13" ref="/root/main/default/subjhospi/reqdt" class="input_default" editable="false" inputtype="date" style="left:1071px; top:116px; width:100px; height:19px; "/>
- <caption id="caption12" class="cell_1" style="left:969px; top:113px; width:100px; height:23px; text-align:center; vertical-align:middle; ">접수일자</caption>
- <input id="input14" ref="/root/main/default/subjhospi/itemnm" class="input_default" editable="false" style="left:1071px; top:138px; width:100px; height:19px; "/>
- <caption id="caption14" class="cell_1" style="left:969px; top:137px; width:100px; height:23px; text-align:center; vertical-align:middle; ">품목명</caption>
- <caption id="caption15" class="cell_1" style="left:471px; top:161px; width:100px; height:56px; text-align:center; vertical-align:middle; ">과제명</caption>
- <textarea id="textarea1" ref="/root/main/default/subjhospi/subjnm" editable="false" style="left:573px; top:162px; width:597px; height:55px; "/>
- <caption id="caption16" class="tit_2" style="left:5px; top:93px; width:240px; height:13px; ">심사이력</caption>
- <datagrid id="grd_judghist" nodeset="/root/main/iview/iismjudg" caption="심사구분^심사차수^마감일자^심사일자^접수종류^심사결과" colsep="^" colwidth="60, 60, 90, 90, 70, 70" extendlastcol="scroll" mergecellsfixedrows="bycolrec" rowsep="|" tooltip="true" style="left:4px; top:113px; width:460px; height:102px; ">
- <col ref="judgkindnm"/>
- <col ref="judgappdg"/>
- <col ref="judgenddd" format="yyyy-mm-dd"/>
- <col ref="judgdd" format="yyyy-mm-dd"/>
- <col disabled="true" ref="reptkind" type="combo">
- <choices>
- <item>
- <label>보완답변서</label>
- <value>1</value>
- </item>
- <item>
- <label>중간보고서</label>
- <value>2</value>
- </item>
- <item>
- <label>SAE(원내)</label>
- <value>3</value>
- </item>
- <item>
- <label>SAE(원외)</label>
- <value>4</value>
- </item>
- <item>
- <label>변경계획서</label>
- <value>5</value>
- </item>
- <item>
- <label>종료보고서</label>
- <value>6</value>
- </item>
- <item>
- <label>결과보고서</label>
- <value>7</value>
- </item>
- <item>
- <label>지속심의서</label>
- <value>8</value>
- </item>
- <item>
- <label>계획서접수</label>
- <value>9</value>
- </item>
- <item>
- <label>면제신청</label>
- <value>E</value>
- </item>
- <item>
- <label>신속심의신청</label>
- <value>N</value>
- </item>
- <item>
- <label>정규심의신청</label>
- <value>S</value>
- </item>
- <item>
- <label>PMS과제</label>
- <value>0</value>
- </item>
- </choices>
- </col>
- <col disabled="true" ref="judgrslt" type="combo">
- <choices>
- <item>
- <label>승인</label>
- <value>Y</value>
- </item>
- <item>
- <label>시정승인</label>
- <value>A</value>
- </item>
- <item>
- <label>반려</label>
- <value>R</value>
- </item>
- <item>
- <label>보완후재심</label>
- <value>V</value>
- </item>
- <item>
- <label>저장</label>
- <value>S</value>
- </item>
- <item>
- <label>부결</label>
- <value>B</value>
- </item>
- <item>
- <label>승인된시험중지</label>
- <value>N</value>
- </item>
- </choices>
- </col>
- <col ref="subjid" visibility="hidden"/>
- <col ref="instcd" visibility="hidden"/>
- <col ref="judgkind" visibility="hidden"/>
- <col ref="reptseqno" visibility="hidden"/>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- if( isDataCell() ){
- var reptkind = model.getValue("/root/main/iview/iismjudg["+grd_judghist.row+"]/reptkind");
-
- model.setValue("/root/iinit/subjid", model.getValue("/root/main/iview/iismjudg["+grd_judghist.row+"]/subjid"));
- model.setValue("/root/iinit/instcd", model.getValue("/root/main/iview/iismjudg["+grd_judghist.row+"]/instcd"));
- model.setValue("/root/iinit/judgkind", model.getValue("/root/main/iview/iismjudg["+grd_judghist.row+"]/judgkind"));
- model.setValue("/root/iinit/judgappdg", model.getValue("/root/main/iview/iismjudg["+grd_judghist.row+"]/judgappdg"));
- model.setValue("/root/iinit/reptkind", model.getValue("/root/main/iview/iismjudg["+grd_judghist.row+"]/reptkind"));
- model.setValue("/root/iinit/reptseqno", model.getValue("/root/main/iview/iismjudg["+grd_judghist.row+"]/reptseqno"));
-
- submit("TRIRI00106");
-
- if ( reptkind == '9' || reptkind == '0' ) {
- iviewer1.visible = false;
- } else {
-
- model.setValue("/root/send/data2/subjid",model.getValue("/root/main/iview/iismjudg["+grd_judghist.row+"]/subjid"));
- model.setValue("/root/send/data2/instcd",model.getValue("/root/main/iview/iismjudg["+grd_judghist.row+"]/instcd"));
- model.setValue("/root/send/data2/reptkind",model.getValue("/root/main/iview/iismjudg["+grd_judghist.row+"]/reptkind"));
-
- iviewer1.visible = true;
- model.setValue("/root/send/searchitem2/subjid", model.getValue("/root/main/iview/iismjudg["+grd_judghist.row+"]/subjid"));
- model.setValue("/root/send/searchitem2/instcd", model.getValue("/root/main/iview/iismjudg["+grd_judghist.row+"]/instcd"));
- model.setValue("/root/send/searchitem2/reptseqno", model.getValue("/root/main/iview/iismjudg["+grd_judghist.row+"]/reptseqno"));
- model.setValue("/root/send/searchitem2/reptkind", model.getValue("/root/main/iview/iismjudg["+grd_judghist.row+"]/reptkind"));
-
-
- model.setValue("/root/send/searchitem2/judgappdg", model.getValue("/root/main/iview/iismjudg["+grd_judghist.row+"]/judgappdg"));
- // model.setValue("/root/send/searchitem2/roothospidxcasecnt", model.getValue("/root/main/iview/iismjudg["+grd_judghist.row+"]/roothospidxcasecnt"));
- model.setValue("/root/send/searchitem2/subjno", model.getValue("/root/main/iview/iismjudg["+grd_judghist.row+"]/subjno"));
- model.setValue("/root/send/searchitem2/subjnm", model.getValue("/root/main/iview/iismjudg["+grd_judghist.row+"]/subjnm"));
- model.setValue("/root/send/searchitem2/autosrchyn", "Y");
- setParameter("actionyn", "N");
- // submit("TRIRI00106");
-
- //해당 보고서별 iviewer 호출
- if ( model.getValue("/root/main/iview/iismjudg["+grd_judghist.row+"]/reptkind") == 1 ) {
- iviewer1.src = "../../reqsubjcmpyweb/xrw/SSIRB00200_보완답변서.xrw";
- }
- else if ( model.getValue("/root/main/iview/iismjudg["+grd_judghist.row+"]/reptkind") == 2 ) {
- iviewer1.src = "../../reqsubjcmpyweb/xrw/SSIRB00300_중간보고서.xrw";
- }
- else if ( model.getValue("/root/main/iview/iismjudg["+grd_judghist.row+"]/reptkind") == 3 ) {
- iviewer1.src = "../../reqsubjcmpyweb/xrw/SSIRB00500_SAE(원내).xrw";
- }
- else if ( model.getValue("/root/main/iview/iismjudg["+grd_judghist.row+"]/reptkind") == 4 ) {
- iviewer1.src = "../../reqsubjcmpyweb/xrw/SSIRB00600_SAE(원외).xrw";
- }
- else if ( model.getValue("/root/main/iview/iismjudg["+grd_judghist.row+"]/reptkind") == 5 ) {
- //iviewer1.src = "../../reqsubjcmpyweb/xrw/SSIRB00700_변경계획서.xrw";
- setParameter("instcd", model.getValue("/root/send/searchitem2/instcd"));
- setParameter("subjid", model.getValue("/root/send/searchitem2/subjid"));
- setParameter("reptseqno", model.getValue("/root/send/searchitem2/reptseqno"));
- setParameter("reptkind", model.getValue("/root/send/searchitem2/reptkind"));
- setParameter("totstdycost", model.getValue("/root/send/searchitem2/totstdycost"));
- setParameter("direccost", model.getValue("/root/send/searchitem2/direccost"));
- setParameter("reqinstcd", model.getValue("/root/send/searchitem2/reqinstcd"));
- setParameter("actionyn", "N");
-
- // window.load("../../../crc/reqsubjcmpyweb/xrw/SPIRB00100_과제변경항목.xrw","modal","code", "left:200px; top:50px; width:1500px; height:540px;min:hidden;max:hidden;resize:false;" ,"", "");
- iviewer1.src = "../../reqsubjcmpyweb/xrw/SPIRB00100_과제변경항목.xrw";
- }
- else if (model.getValue("/root/main/iview/iismjudg["+grd_judghist.row+"]/reptkind") == 6 ) {
- iviewer1.src = "../../reqsubjcmpyweb/xrw/SSIRB00800_종료보고서.xrw";
- }
- else if ( model.getValue("/root/main/iview/iismjudg["+grd_judghist.row+"]/reptkind") == 7 ) {
- iviewer1.src = "../../reqsubjcmpyweb/xrw/SSIRB00900_결과보고서.xrw";
- }
- else if ( model.getValue("/root/main/iview/iismjudg["+grd_judghist.row+"]/reptkind") == 8 ) {
- iviewer1.src = "../../reqsubjcmpyweb/xrw/SSIRB00400_지속심의.xrw";
- }
-
- }
- }
- ]]>
- </script>
- </datagrid>
- <line id="line5" class="line_1" style="x1:4px; y1:108px; x2:464px; y2:108px; "/>
- <line id="line6" class="line_3" style="x1:470px; y1:219px; x2:1170px; y2:219px; "/>
- <line id="line7" class="line_3" style="x1:4px; y1:219px; x2:464px; y2:219px; "/>
- <caption id="caption17" class="tit_2" style="left:660px; top:223px; width:80px; height:13px; ">심사내용</caption>
- <caption id="caption18" class="cell_1" style="left:659px; top:242px; width:100px; height:53px; text-align:center; vertical-align:middle; ">기본사항</caption>
- <caption id="caption19" class="cell_1" style="left:659px; top:296px; width:100px; height:53px; text-align:center; vertical-align:middle; ">
- <![CDATA[임상시험
- 대상관련]]>
- </caption>
- <caption id="caption20" class="cell_1" style="left:659px; top:350px; width:100px; height:53px; text-align:center; vertical-align:middle; ">임상시험 방법</caption>
- <caption id="caption22" class="cell_1" style="left:659px; top:404px; width:100px; height:53px; text-align:center; vertical-align:middle; ">
- <![CDATA[피험자 동의
- 및 안전대책]]>
- </caption>
- <textarea id="textarea2" ref="/root/main/iview/detail/iisdjudgconf/judgitem1" editable="false" style="left:761px; top:242px; width:409px; height:53px; "/>
- <textarea id="textarea3" ref="/root/main/iview/detail/iisdjudgconf/judgitem2" editable="false" style="left:761px; top:458px; width:409px; height:53px; "/>
- <caption id="caption23" class="cell_1" style="left:659px; top:458px; width:100px; height:53px; text-align:center; vertical-align:middle; ">
- <![CDATA[연구목적
- 및 배경]]>
- </caption>
- <caption id="caption24" class="cell_1" style="left:659px; top:512px; width:100px; height:53px; text-align:center; vertical-align:middle; ">피험자관련</caption>
- <textarea id="textarea4" ref="/root/main/iview/detail/iisdjudgconf/judgitem3" editable="false" style="left:761px; top:296px; width:409px; height:53px; "/>
- <textarea id="textarea5" ref="/root/main/iview/detail/iisdjudgconf/judgitem4" editable="false" style="left:761px; top:512px; width:409px; height:53px; "/>
- <caption id="caption25" class="cell_1" style="left:659px; top:566px; width:100px; height:53px; text-align:center; vertical-align:middle; ">통계 관련</caption>
- <textarea id="textarea6" ref="/root/main/iview/detail/iisdjudgconf/judgitem5" editable="false" style="left:761px; top:350px; width:409px; height:53px; "/>
- <textarea id="textarea7" ref="/root/main/iview/detail/iisdjudgconf/judgitem6" editable="false" style="left:761px; top:566px; width:409px; height:53px; "/>
- <textarea id="textarea8" ref="/root/main/iview/detail/iisdjudgconf/judgitem7" editable="false" style="left:761px; top:404px; width:409px; height:53px; "/>
- <textarea id="textarea9" ref="/root/main/iview/detail/iisdjudgconf/judgitem8" editable="false" style="left:761px; top:620px; width:409px; height:53px; "/>
- <caption id="caption26" class="cell_1" style="left:659px; top:620px; width:100px; height:53px; text-align:center; vertical-align:middle; ">기타</caption>
- <line id="line13" class="line_1" style="x1:471px; y1:108px; x2:1170px; y2:108px; "/>
- <line id="line62" class="line_1" style="x1:659px; y1:237px; x2:1171px; y2:237px; "/>
- <caption id="caption148" class="tit_2" style="left:5px; top:223px; width:87px; height:14px; ">보고서 내용</caption>
- <line id="line29" class="line_1" style="x1:5px; y1:237px; x2:650px; y2:237px; "/>
- <iviewer id="iviewer1" visibility="hidden" style="left:5px; top:242px; width:645px; height:433px; "/>
- </case>
- <case id="case2">
- <select1 id="combo39" ref="/root/main/view/irsdsubjhosp/reqyn" class="combo_search" disabled="true" appearance="minimal" style="left:331px; top:447px; width:134px; height:19px; ">
- <choices>
- <item>
- <label>예</label>
- <value>Y</value>
- </item>
- <item>
- <label>아니오</label>
- <value>N</value>
- </item>
- </choices>
- </select1>
- <caption id="caption60" class="cell_1" style="left:4px; top:445px; width:91px; height:23px; text-align:center; vertical-align:middle; ">해당병원</caption>
- <caption id="caption83" class="cell_1" style="left:4px; top:493px; width:91px; height:23px; text-align:center; vertical-align:middle; ">시험책임자</caption>
- <caption id="caption61" class="cell_1" style="left:469px; top:445px; width:76px; height:23px; text-align:center; vertical-align:middle; ">연구기간</caption>
- <caption id="caption84" class="cell_1" style="left:469px; top:493px; width:76px; height:23px; text-align:center; vertical-align:middle; ">직위</caption>
- <caption id="caption62" class="cell_1" style="left:239px; top:469px; width:91px; height:23px; text-align:center; vertical-align:middle; ">직접연구비</caption>
- <line id="line44" class="line_3" style="x1:2px; y1:515px; x2:805px; y2:515px; "/>
- <caption id="caption63" class="cell_1" style="left:4px; top:469px; width:91px; height:23px; text-align:center; vertical-align:middle; ">본원증례수</caption>
- <caption id="caption65" class="cell_1" style="left:469px; top:469px; width:76px; height:23px; text-align:center; vertical-align:middle; ">임금방법</caption>
- <caption id="caption66" class="cell_1" style="left:239px; top:493px; width:91px; height:23px; text-align:center; vertical-align:middle; ">소속</caption>
- <input id="input15" ref="/root/main/view/irsdsubjhosp/stdystartdd" class="input_search" disabled="true" inputtype="date" style="left:546px; top:448px; width:120px; height:19px; "/>
- <input id="input57" ref="/root/main/view/irsdsubjhosp/respstdyempnm" class="input_default" editable="false" style="left:96px; top:494px; width:139px; height:19px; "/>
- <select1 id="combo40" ref="/root/main/view/irsdsubjhosp/depomthd" class="combo_search" disabled="true" appearance="minimal" style="left:546px; top:470px; width:259px; height:19px; ">
- <choices>
- <item>
- <label>일시납입</label>
- <value>1</value>
- </item>
- <item>
- <label>분할납입</label>
- <value>2</value>
- </item>
- </choices>
- </select1>
- <input id="input16" ref="/root/main/view/irsdsubjhosp/stdyenddd" class="input_search" disabled="true" inputtype="date" style="left:685px; top:448px; width:120px; height:19px; "/>
- <input id="input58" ref="/root/main/view/irsdsubjhosp/posnm" class="input_default" editable="false" style="left:331px; top:494px; width:134px; height:19px; "/>
- <input id="input17" ref="/root/main/view/irsdsubjhosp/roothosp" class="input_default" editable="false" style="left:96px; top:470px; width:139px; height:19px; "/>
- <input id="input59" ref="/root/main/view/irsdsubjhosp/jobposnm" class="input_default" editable="false" style="left:546px; top:495px; width:259px; height:19px; "/>
- <input id="input18" ref="/root/main/view/irsdsubjhosp/direccost" class="input_default" editable="false" format="#,###" style="left:331px; top:470px; width:134px; height:19px; "/>
- <caption id="caption59" class="cell_1" style="left:239px; top:445px; width:91px; height:23px; text-align:center; vertical-align:middle; ">과제의뢰</caption>
- <select1 id="combo8" ref="/root/main/view/irsdsubjhosp/instcd" class="combo_search" disabled="true" appearance="minimal" style="left:96px; top:447px; width:139px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/baseinfo/instinfo">
- <label ref="hospnm"/>
- <value ref="instcd"/>
- </itemset>
- </choices>
- </select1>
- <line id="line8" class="line_3" style="x1:0px; y1:444px; x2:805px; y2:444px; "/>
- <datagrid id="datagrid3" nodeset="/root/main/view/irsdcollareser" caption="성명^소속^직위" colsep="^" extendlastcol="scroll" mergecellsfixedrows="bycolrec" rowheader="seq" rowsep="|" tooltip="true" style="left:815px; top:20px; width:355px; height:135px; ">
- <col ref="usernm"/>
- <col ref="posnm"/>
- <col ref="jobposnm"/>
- </datagrid>
- <datagrid id="datagrid6" nodeset="/root/main/view/irsdpharmst" caption="성명^연락처^직위" colsep="^" extendlastcol="scroll" mergecellsfixedrows="bycolrec" rowheader="seq" rowsep="|" tooltip="true" style="left:815px; top:176px; width:355px; height:134px; ">
- <col ref="usernm"/>
- <col ref="posnm"/>
- <col ref="jobposnm"/>
- </datagrid>
- <datagrid id="datagrid8" nodeset="/root/main/view/irsdcodi" caption="성명^소속^직위" colsep="^" extendlastcol="scroll" mergecellsfixedrows="bycolrec" rowheader="seq" rowsep="|" tooltip="true" style="left:815px; top:336px; width:355px; height:139px; ">
- <col ref="usernm"/>
- <col ref="posnm"/>
- <col ref="jobposnm"/>
- </datagrid>
- <caption id="caption55" class="tit_2" style="left:822px; top:321px; width:140px; height:13px; ">코디네이터등록</caption>
- <caption id="caption27" class="tit_2" style="left:822px; top:6px; width:140px; height:13px; ">공동연구자등록</caption>
- <caption id="caption28" class="tit_2" style="left:822px; top:161px; width:140px; height:13px; ">관리약사등록</caption>
- <switch id="switch2" style="left:1px; top:1px; width:804px; height:439px; ">
- <case id="case6" selected="true" style="left:0px; top:0px; width:802px; height:437px; ">
- <select1 id="combo16" ref="/root/main/view/irsmsubjinfo/stdycostsuppinst" class="combo_search" disabled="true" appearance="minimal" style="left:550px; top:370px; width:150px; height:19px; ">
- <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>
- <caption id="caption102" class="cell_1" style="left:3px; top:513px; width:91px; height:123px; text-align:center; vertical-align:middle; ">
- <![CDATA[의뢰기관
- (CRO)
- 담당자]]>
- </caption>
- <caption id="caption113" class="cell_1" style="left:370px; top:118px; width:49px; height:23px; text-align:left; vertical-align:middle; ">개 기관</caption>
- <caption id="caption103" style="left:460px; top:302px; width:264px; height:20px; ">침습적 시술</caption>
- <input id="input72" ref="/root/main/view/imcmreqchrg/cntctelno" class="input_default" disabled="false" editable="false" style="left:190px; top:540px; width:205px; height:19px; "/>
- <caption id="caption50" class="cell_1" style="left:200px; top:488px; width:200px; height:23px; text-align:center; vertical-align:middle; ">경제적이해 관계명시</caption>
- <input id="input73" ref="/root/main/view/irsmsubjinfo/etctrgt1" class="input_default" disabled="false" editable="false" style="left:253px; top:96px; width:198px; height:19px; "/>
- <caption id="caption115" class="cell_1" style="left:95px; top:538px; width:91px; height:23px; text-align:center; vertical-align:middle; ">전화번호</caption>
- <caption id="caption51" class="cell_1" style="left:95px; top:613px; width:91px; height:23px; text-align:center; vertical-align:middle; ">E-mail</caption>
- <caption id="caption40" style="left:95px; top:283px; width:130px; height:20px; ">연구수행시 피험자 접촉</caption>
- <caption id="caption105" class="cell_1" style="left:3px; top:118px; width:90px; height:23px; text-align:center; vertical-align:middle; ">연구종류3</caption>
- <input id="input74" ref="/root/main/view/irsmsubjinfo/stdystartdd" class="input_default" disabled="true" editable="false" inputtype="date" style="left:95px; top:466px; width:100px; height:19px; "/>
- <caption id="caption30" class="cell_1" style="left:3px; top:488px; width:90px; height:23px; text-align:center; vertical-align:middle; ">전체증례수</caption>
- <input id="input20" ref="/root/main/view/irsmsubjinfo/prstdataetc5" class="input_default" disabled="false" editable="false" style="left:600px; top:347px; width:180px; height:19px; "/>
- <select id="checkbox1" ref="/root/main/view/irsmsubjinfo/relprstdata1" disabled="true" navindex="27" overflow="visible" appearance="full" style="left:95px; top:347px; width:110px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>피험자 모집문건</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <input id="input75" ref="/root/main/view/irsmsubjinfo/allidxcase" class="input_default" disabled="false" editable="false" style="left:95px; top:490px; width:100px; height:19px; "/>
- <input id="input21" ref="/root/main/view/irsmsubjinfo/manyinst" class="input_default" disabled="false" editable="false" style="left:333px; top:120px; width:35px; height:19px; "/>
- <input id="input54" ref="/root/main/view/irsmsubjinfo/stdycostsuppinstnm" class="input_default" disabled="false" editable="false" style="left:702px; top:370px; width:78px; height:19px; "/>
- <caption id="caption31" style="left:197px; top:467px; width:15px; height:20px; ">~</caption>
- <line id="line12" class="line_3" style="x1:455px; y1:285px; x2:455px; y2:343px; "/>
- <input id="input22" ref="/root/main/view/irsmsubjinfo/stdyenddd" class="input_default" disabled="true" editable="false" inputtype="date" style="left:210px; top:466px; width:100px; height:19px; "/>
- <caption id="caption32" class="cell_1" style="left:95px; top:513px; width:91px; height:23px; text-align:center; vertical-align:middle; ">이름</caption>
- <select id="checkbox3" ref="/root/main/view/irsmsubjinfo/relprstdata2" disabled="true" navindex="28" overflow="visible" appearance="full" style="left:207px; top:347px; width:105px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>피험자 환자일지</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <input id="input55" ref="/root/main/view/imcmreqchrg/faxno" class="input_default" disabled="false" editable="false" style="left:190px; top:590px; width:205px; height:19px; "/>
- <caption id="caption43" class="cell_1" style="left:253px; top:166px; width:105px; height:23px; text-align:center; vertical-align:middle; ">피험자정보</caption>
- <caption id="caption108" style="left:460px; top:321px; width:264px; height:20px; ">경제적 이해관계 있음 (주식 등)</caption>
- <input id="input23" ref="/root/main/view/irsmsubjinfo/reqinstchrgid" class="input_default" disabled="false" editable="false" style="left:153px; top:370px; width:115px; height:19px; "/>
- <caption id="caption33" style="left:460px; top:283px; width:200px; height:20px; ">시료의 수집 및 보관</caption>
- <select id="checkbox4" ref="/root/main/view/irsmsubjinfo/relprstdata3" disabled="true" navindex="29" overflow="visible" appearance="full" style="left:314px; top:347px; width:100px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>피험자 설문지</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <caption id="caption44" class="cell_1" style="left:395px; top:464px; width:90px; height:23px; text-align:center; vertical-align:middle; ">신청일자</caption>
- <select1 id="combo1" ref="/root/main/view/irsmsubjinfo/stdykind1" class="combo_search" disabled="true" appearance="minimal" style="left:95px; top:96px; width:153px; height:19px; ">
- <choices>
- <item>
- <label>의약품</label>
- <value>M</value>
- </item>
- <item>
- <label>의료기기</label>
- <value>D</value>
- </item>
- <item>
- <label>생물학적제제</label>
- <value>B</value>
- </item>
- <item>
- <label>세포치료제</label>
- <value>C</value>
- </item>
- <item>
- <label>건강식품</label>
- <value>H</value>
- </item>
- <item>
- <label>의무기록 이용연구</label>
- <value>R</value>
- </item>
- <item>
- <label>관찰연구</label>
- <value>O</value>
- </item>
- <item>
- <label>보관검체 이용연구</label>
- <value>S</value>
- </item>
- <item>
- <label>시료연구(조직 및 혈액 등)</label>
- <value>T</value>
- </item>
- <item>
- <label>생동성연구</label>
- <value>P</value>
- </item>
- <item>
- <label>기타</label>
- <value>E</value>
- </item>
- </choices>
- </select1>
- <input id="input56" ref="/root/main/view/irsmsubjinfo/etctrgt4" class="input_default" disabled="false" editable="false" style="left:693px; top:120px; width:92px; height:19px; "/>
- <input id="input67" ref="/root/main/view/irsmsubjinfo/etctrgt2" class="input_default" disabled="false" editable="false" style="left:693px; top:96px; width:92px; height:19px; "/>
- <caption id="caption109" style="left:95px; top:321px; width:264px; height:20px; ">피험자의 사적 정보의 기록(성별,연령,직업 제외)</caption>
- <input id="input24" ref="/root/main/view/imcmreqchrg/nm" class="input_default" disabled="false" editable="false" style="left:190px; top:515px; width:205px; height:19px; "/>
- <caption id="caption34" class="cell_1" style="left:3px; top:166px; width:90px; height:23px; text-align:center; vertical-align:middle; ">피험자동의</caption>
- <select id="checkbox5" ref="/root/main/view/irsmsubjinfo/relprstdata4" disabled="true" navindex="30" overflow="visible" appearance="full" style="left:416px; top:347px; width:132px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>경제적 이해관계 자료</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <caption id="caption45" class="cell_1" style="left:455px; top:118px; width:90px; height:23px; text-align:center; vertical-align:middle; ">연구종류4</caption>
- <select1 id="combo2" ref="/root/main/view/irsmsubjinfo/agenestdyflag" class="combo_search" disabled="true" appearance="minimal" style="left:548px; top:144; width:140px; height:19px; ">
- <choices>
- <item>
- <label>아니오</label>
- <value>0</value>
- </item>
- <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>
- </choices>
- </select1>
- <caption id="caption56" class="cell_1" style="left:95px; top:588px; width:91px; height:23px; text-align:center; vertical-align:middle; ">Fax</caption>
- <input id="input25" ref="/root/main/view/irsmsubjinfo/appdd" class="input_default" disabled="true" editable="false" inputtype="date" style="left:487px; top:466px; width:100px; height:19px; "/>
- <select id="checkbox6" ref="/root/main/view/irsmsubjinfo/relprstdata5" disabled="true" navindex="31" overflow="visible" appearance="full" style="left:549px; top:347px; width:51px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>기타</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var relprstdata5 = model.getValue("/root/main/view/irsmsubjinfo/relprstdata5");
- input61.disabled = true;
- if(relprstdata5 == "Y") input61.disabled = false;
- else {
- model.setValue("/root/main/view/irsmsubjinfo/prstdataetc5", "");
- model.refresh();
- }
- ]]>
- </script>
- </select>
- <caption id="caption46" class="cell_1" style="left:3px; top:1px; width:90px; height:44px; text-align:center; vertical-align:middle; ">연구과제명</caption>
- <caption id="caption57" class="cell_1" style="left:3px; top:464px; width:90px; height:23px; text-align:center; vertical-align:middle; ">연구예정기간</caption>
- <input id="input69" ref="/root/main/view/irsmsubjinfo/etctrgt" class="input_default" disabled="false" editable="false" style="left:253px; top:144; width:200px; height:19px; "/>
- <caption id="caption47" class="cell_1" style="left:456px; top:368px; width:91px; height:23px; text-align:center; vertical-align:middle; ">연구비지원기관</caption>
- <select1 id="radio1" ref="/root/main/view/irsmsubjinfo/stdyspcl1" disabled="true" appearance="full" cols="2" overflow="visible" style="left:360px; top:283px; width:90px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>예</label>
- <value>Y</value>
- </item>
- <item>
- <label>아니오</label>
- <value>N</value>
- </item>
- </choices>
- </select1>
- <select1 id="combo4" ref="/root/main/view/irsmsubjinfo/stdykind2" class="combo_search" disabled="true" appearance="minimal" style="left:548px; top:96; width:140px; height:19px; ">
- <choices>
- <item>
- <label>연구용(연구자주도)</label>
- <value>I</value>
- </item>
- <item>
- <label>연구용(의뢰자주도)</label>
- <value>S</value>
- </item>
- <item>
- <label>연구용(학회주도)</label>
- <value>C</value>
- </item>
- <item>
- <label>연구용(국책과제)</label>
- <value>N</value>
- </item>
- <item>
- <label>연구용(학위논문)</label>
- <value>A</value>
- </item>
- <item>
- <label>허가용(국내)</label>
- <value>D</value>
- </item>
- <item>
- <label>허가용(국외)</label>
- <value>G</value>
- </item>
- <item>
- <label>기타</label>
- <value>E</value>
- </item>
- </choices>
- </select1>
- <caption id="caption48" class="cell_1" style="left:3px; top:142px; width:90px; height:23px; text-align:center; vertical-align:middle; ">연구대상</caption>
- <select1 id="radio2" ref="/root/main/view/irsmsubjinfo/stdyspcl3" disabled="true" appearance="full" cols="2" overflow="visible" style="left:360px; top:321px; width:90px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>예</label>
- <value>Y</value>
- </item>
- <item>
- <label>아니오</label>
- <value>N</value>
- </item>
- </choices>
- </select1>
- <select1 id="combo5" ref="/root/main/view/irsmsubjinfo/testeestat" class="combo_search" disabled="true" appearance="minimal" style="left:361px; top:168px; width:182px; height:19px; ">
- <choices>
- <item>
- <label>건강인</label>
- <value>1</value>
- </item>
- <item>
- <label>환자</label>
- <value>2</value>
- </item>
- <item>
- <label>취약한피험자</label>
- <value>3</value>
- </item>
- </choices>
- </select1>
- <caption id="caption38" class="cell_1" style="left:455px; top:94px; width:90px; height:23px; text-align:center; vertical-align:middle; ">연구종류2</caption>
- <input id="input28" ref="/root/main/view/imcmreqchrg/email" class="input_default" disabled="false" editable="false" style="left:190px; top:615px; width:205px; height:19px; "/>
- <caption id="caption49" class="cell_1" style="left:3px; top:94px; width:90px; height:23px; text-align:center; vertical-align:middle; ">연구종류1</caption>
- <select1 id="radio3" ref="/root/main/view/irsmsubjinfo/stdyspcl4" disabled="true" appearance="full" cols="2" overflow="visible" style="left:695px; top:280px; width:90px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>예</label>
- <value>Y</value>
- </item>
- <item>
- <label>아니오</label>
- <value>N</value>
- </item>
- </choices>
- </select1>
- <select1 id="combo6" ref="/root/main/view/irsmsubjinfo/testeeaprvflag" class="combo_search" disabled="true" appearance="minimal" style="left:95px; top:168px; width:153px; height:19px; ">
- <choices>
- <item>
- <label>서면</label>
- <value>1</value>
- </item>
- <item>
- <label>구두(사유서첨부)</label>
- <value>2</value>
- </item>
- <item>
- <label>불필요(사유서첨부)</label>
- <value>3</value>
- </item>
- </choices>
- </select1>
- <caption id="caption39" class="cell_1" style="left:95px; top:563px; width:91px; height:23px; text-align:center; vertical-align:middle; ">핸드폰번호</caption>
- <select1 id="combo12" ref="/root/main/view/irsmsubjinfo/stdykind4" class="combo_search" disabled="true" appearance="minimal" style="left:548px; top:120; width:140px; height:19px; ">
- <choices>
- <item>
- <label>1상</label>
- <value>F</value>
- </item>
- <item>
- <label>2상</label>
- <value>S</value>
- </item>
- <item>
- <label>3상</label>
- <value>T</value>
- </item>
- <item>
- <label>4상</label>
- <value>V</value>
- </item>
- <item>
- <label>학술연구</label>
- <value>I</value>
- </item>
- <item>
- <label>PK연구</label>
- <value>P</value>
- </item>
- <item>
- <label>기타</label>
- <value>E</value>
- </item>
- </choices>
- </select1>
- <caption id="caption29" class="cell_1" style="left:3px; top:344px; width:90px; height:23px; text-align:center; vertical-align:middle; ">관련제출자료</caption>
- <input id="input19" ref="/root/main/view/irsmsubjinfo/manynation" class="input_default" disabled="false" editable="false" style="left:253px; top:120px; width:37px; height:19px; "/>
- <textarea id="textarea10" ref="/root/main/view/irsmsubjinfo/subjnm" scroll="vertical" editable="false" style="left:95px; top:1px; width:690px; height:44px; "/>
- <select1 id="radio5" ref="/root/main/view/irsmsubjinfo/stdyspcl6" disabled="true" appearance="full" cols="2" overflow="visible" style="left:695px; top:302px; width:90px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>예</label>
- <value>Y</value>
- </item>
- <item>
- <label>아니오</label>
- <value>N</value>
- </item>
- </choices>
- </select1>
- <caption id="caption110" class="cell_1" style="left:3px; top:280px; width:90px; height:63px; text-align:center; vertical-align:middle; ">연구특성</caption>
- <select1 id="combo13" ref="/root/main/view/irsmsubjinfo/stdytrgt" class="combo_search" disabled="true" appearance="minimal" style="left:95px; top:144; width:153px; height:19px; ">
- <choices>
- <item>
- <label>상품명</label>
- <value>1</value>
- </item>
- <item>
- <label>일반명</label>
- <value>2</value>
- </item>
- <item>
- <label>기타</label>
- <value>X</value>
- </item>
- </choices>
- </select1>
- <caption id="caption100" style="left:95px; top:302px; width:138px; height:20px; ">시술/투약/검사등의 중재</caption>
- <caption id="caption111" class="cell_1" style="left:292px; top:118px; width:38px; height:23px; text-align:left; vertical-align:middle; ">개국</caption>
- <select1 id="radio6" ref="/root/main/view/irsmsubjinfo/stdyspcl7" disabled="true" appearance="full" cols="2" overflow="visible" style="left:695px; top:321px; width:90px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>예</label>
- <value>Y</value>
- </item>
- <item>
- <label>아니오</label>
- <value>N</value>
- </item>
- </choices>
- </select1>
- <select1 id="combo14" ref="/root/main/view/irsmsubjinfo/fratesteeflag" class="combo_search" disabled="true" appearance="minimal" style="left:548px; top:168px; width:140px; height:19px; ">
- <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>
- <item>
- <label>군인</label>
- <value>6</value>
- </item>
- <item>
- <label>시설수용자</label>
- <value>7</value>
- </item>
- <item>
- <label>수감자</label>
- <value>8</value>
- </item>
- <item>
- <label>외국인</label>
- <value>9</value>
- </item>
- <item>
- <label>말기환자</label>
- <value>10</value>
- </item>
- <item>
- <label>기타(에이즈,한센병 환자 등)</label>
- <value>11</value>
- </item>
- <item>
- <label>학교의 학생</label>
- <value>12</value>
- </item>
- </choices>
- </select1>
- <select1 id="combo9" ref="/root/main/view/irsmsubjinfo/stdykind3" class="combo_search" disabled="true" appearance="minimal" style="left:95px; top:120; width:153px; height:19px; ">
- <choices>
- <item>
- <label>단독</label>
- <value>S</value>
- </item>
- <item>
- <label>다기관(국내)</label>
- <value>M</value>
- </item>
- <item>
- <label>다기관(다국가)</label>
- <value>G</value>
- </item>
- </choices>
- </select1>
- <caption id="caption101" class="cell_1" style="left:455px; top:142px; width:90px; height:23px; text-align:center; vertical-align:middle; ">유전자연구</caption>
- <input id="input70" ref="/root/main/view/imcmreqchrg/mpphonno" class="input_default" disabled="false" editable="false" style="left:190px; top:565px; width:205px; height:19px; "/>
- <caption id="caption112" class="cell_1" style="left:3px; top:368px; width:90px; height:23px; text-align:center; vertical-align:middle; ">의뢰기관</caption>
- <select1 id="radio7" ref="/root/main/view/irsmsubjinfo/stdyspcl2" disabled="true" appearance="full" cols="2" overflow="visible" style="left:360px; top:302px; width:90px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>예</label>
- <value>Y</value>
- </item>
- <item>
- <label>아니오</label>
- <value>N</value>
- </item>
- </choices>
- </select1>
- <caption id="caption107" class="cell_1" style="left:3; top:46px; width:90px; height:23px; text-align:center; vertical-align:middle; ">품목명</caption>
- <caption id="caption114" class="cell_1" style="left:3; top:70px; width:90px; height:23px; text-align:center; vertical-align:middle; ">성분명</caption>
- <input id="input71" ref="/root/main/view/irsmsubjinfo/itemnm" class="input_default" disabled="false" editable="false" style="left:95px; top:48px; width:690px; height:19px; "/>
- <input id="input76" ref="/root/main/view/irsmsubjinfo/comnm" class="input_default" disabled="false" editable="false" style="left:95px; top:72px; width:690px; height:19px; "/>
- <input id="input77" ref="/root/main/view/irsmsubjinfo/cmcinstcnt" class="input_default" disabled="false" editable="false" style="left:420px; top:120px; width:32px; height:19px; "/>
- <caption id="caption117" class="cell_1" style="left:3px; top:392px; width:90px; height:23px; text-align:center; vertical-align:middle; ">시험조정자</caption>
- <caption id="caption118" class="cell_1" style="left:395px; top:392px; width:103px; height:23px; text-align:center; vertical-align:middle; ">총외부시험책임자</caption>
- <caption id="caption119" class="cell_1" style="left:95px; top:392px; width:31px; height:23px; text-align:center; vertical-align:middle; ">병원</caption>
- <caption id="caption123" class="cell_1" style="left:500px; top:392px; width:31px; height:23px; text-align:center; vertical-align:middle; ">소속</caption>
- <caption id="caption124" class="cell_1" style="left:250px; top:392px; width:31px; height:23px; text-align:center; vertical-align:middle; ">교수</caption>
- <caption id="caption127" class="cell_1" style="left:655px; top:392px; width:31px; height:23px; text-align:center; vertical-align:middle; ">교수</caption>
- <input id="input78" ref="/root/main/view/irsmsubjinfo/examadjthosp" class="input_default" disabled="false" editable="false" style="left:128px; top:394px; width:120px; height:19px; "/>
- <input id="input79" ref="/root/main/view/irsmsubjinfo/examadjtprf" class="input_default" disabled="false" editable="false" style="left:283px; top:394px; width:105px; height:19px; "/>
- <input id="input80" ref="/root/main/view/irsmsubjinfo/allexamrespnm" class="input_default" disabled="false" editable="false" style="left:533px; top:394px; width:120px; height:19px; "/>
- <input id="input84" ref="/root/main/view/irsmsubjinfo/allexamresppos" class="input_default" disabled="false" editable="false" style="left:688px; top:394px; width:92px; height:19px; "/>
- <caption id="caption129" class="cell_1" style="left:3px; top:416px; width:90px; height:47px; text-align:center; vertical-align:middle; ">
- <![CDATA[식품의약품
- 안정청
- 통과필요여부]]>
- </caption>
- <input id="input86" ref="/root/main/view/irsmsubjinfo/concernrela" class="input_default" disabled="false" editable="false" style="left:402px; top:490px; width:378px; height:19px; "/>
- <caption id="caption133" class="cell_1" style="left:250px; top:416px; width:90px; height:47px; text-align:center; vertical-align:middle; ">허가국가유무</caption>
- <caption id="caption134" class="cell_1" style="left:500px; top:416px; width:103px; height:47px; text-align:center; vertical-align:middle; ">
- <![CDATA[임상시험약
- (의료기기)의
- 국내시판허가유무]]>
- </caption>
- <select1 id="combo10" ref="/root/main/view/irsmsubjinfo/foodscrtgovpassyn" class="combo_search" disabled="true" appearance="minimal" style="left:95px; top:430px; width:100px; height:19px; ">
- <choices>
- <item>
- <label>예</label>
- <value>Y</value>
- </item>
- <item>
- <label>아니오</label>
- <value>N</value>
- </item>
- </choices>
- </select1>
- <select1 id="combo17" ref="/root/main/view/irsmsubjinfo/prmisnnatiyn" class="combo_search" disabled="true" appearance="minimal" style="left:342px; top:430px; width:100px; height:19px; ">
- <choices>
- <item>
- <label>예</label>
- <value>Y</value>
- </item>
- <item>
- <label>아니오</label>
- <value>N</value>
- </item>
- </choices>
- </select1>
- <select1 id="combo20" ref="/root/main/view/irsmsubjinfo/intermarketyn" class="combo_search" disabled="true" appearance="minimal" style="left:605px; top:430px; width:85px; height:19px; ">
- <choices>
- <item>
- <label>예</label>
- <value>Y</value>
- </item>
- <item>
- <label>아니오</label>
- <value>N</value>
- </item>
- </choices>
- </select1>
- <caption id="caption143" class="cell_1" style="left:398px; top:513px; width:91px; height:97px; text-align:center; vertical-align:middle; ">Version</caption>
- <input id="input91" ref="/root/main/view/irsmsubjinfo/veraprv" class="input_default" disabled="false" editable="false" style="left:585px; top:540px; width:195px; height:19px; "/>
- <caption id="caption147" class="cell_1" style="left:490px; top:538px; width:91px; height:23px; text-align:center; vertical-align:middle; ">동의서</caption>
- <input id="input98" ref="/root/main/view/irsmsubjinfo/verib" class="input_default" disabled="false" editable="false" style="left:585px; top:590px; width:195px; height:19px; "/>
- <caption id="caption149" class="cell_1" style="left:490px; top:513px; width:91px; height:23px; text-align:center; vertical-align:middle; ">계획서</caption>
- <caption id="caption150" class="cell_1" style="left:490px; top:588px; width:91px; height:23px; text-align:center; vertical-align:middle; ">IB</caption>
- <input id="input99" ref="/root/main/view/irsmsubjinfo/verplan" class="input_default" disabled="false" editable="false" style="left:585px; top:515px; width:195px; height:19px; "/>
- <caption id="caption151" class="cell_1" style="left:490px; top:563px; width:91px; height:23px; text-align:center; vertical-align:middle; ">CRF</caption>
- <input id="input103" ref="/root/main/view/irsmsubjinfo/vercrf" class="input_default" disabled="false" editable="false" style="left:585px; top:565px; width:195px; height:19px; "/>
- <caption id="caption131" class="cell_1" style="left:95px; top:368px; width:56px; height:23px; text-align:center; vertical-align:middle; ">제약회사</caption>
- <input id="input101" ref="/root/main/view/irsmsubjinfo/croinstnm" class="input_default" disabled="false" editable="false" style="left:330px; top:370px; width:115px; height:19px; "/>
- <caption id="caption152" class="cell_1" style="left:272px; top:368px; width:56px; height:23px; text-align:center; vertical-align:middle; ">CRO</caption>
- <caption id="caption37" class="cell_1" style="left:3px; top:190px; width:90px; height:30px; text-align:center; vertical-align:middle; ">
- <![CDATA[피험자모집
- 방법]]>
- </caption>
- <input id="input106" ref="/root/main/view/irsmsubjinfo/testrecruit" class="input_default" disabled="false" editable="false" style="left:95px; top:195px; width:690px; height:19px; "/>
- <caption id="caption155" class="cell_1" style="left:3px; top:221px; width:90px; height:58px; text-align:center; vertical-align:middle; ">
- <![CDATA[피험자 모집 문건
- (원내(외)광고,전단,
- 인터넷,이메일 등)의
- 사용]]>
- </caption>
- <select1 id="radio4" ref="/root/main/view/irsmsubjinfo/testrecruityn" appearance="full" rows="2" vcellspacing="5" overflow="visible" style="left:95px; top:225px; width:80px; height:45px; border-style:none; ">
- <choices>
- <item>
- <label>예</label>
- <value>Y</value>
- </item>
- <item>
- <label>아니오</label>
- <value>N</value>
- </item>
- </choices>
- </select1>
- <caption id="caption156" style="left:180px; top:227px; width:275px; height:20px; ">(사용전 반드시 IRB 심의를 받고 승인을 득해야 함)</caption>
- </case>
- <case id="case7">
- <caption id="caption53" style="left:230px; top:265px; width:15px; height:20px; ">~</caption>
- <select id="checkbox10" ref="/root/main/view/irsmsubjinfo/relprstdata5" navindex="11" overflow="visible" appearance="full" style="left:597px; top:196px; width:45px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>기타</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var relprstdata5 = model.getValue("/root/main/view/irsmsubjinfo/relprstdata5");
- input28.disabled = true;
- if(relprstdata5 == "Y") input28.disabled = false;
- else {
- model.setValue("/root/main/view/irsmsubjinfo/prstdataetc5", "");
- model.refresh();
- }
- ]]>
- </script>
- </select>
- <caption id="caption116" class="cell_1" style="left:492px; top:217px; width:91px; height:23px; text-align:center; vertical-align:middle; ">연구비지원기관</caption>
- <select1 id="combo18" ref="/root/main/view/irsmsubjinfo/stdycostsuppinst" class="combo_search" disabled="false" navindex="15" appearance="minimal" style="left:586px; top:218px; width:80px; height:19px; ">
- <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>
- <caption id="caption121" class="cell_1" style="left:240px; top:241px; width:100px; height:23px; text-align:center; vertical-align:middle; ">피험자동의서</caption>
- <input id="input81" ref="/root/main/view/irsmsubjinfo/reqinstchrgid" class="input_default" disabled="false" navindex="14" editable="true" style="left:190px; top:218px; width:115px; height:19px; "/>
- <caption id="caption122" class="cell_1" style="left:3px; top:99px; width:122px; height:23px; text-align:center; vertical-align:middle; ">조사목적</caption>
- <caption id="caption125" class="cell_1" style="left:344px; top:263px; width:122px; height:23px; text-align:center; vertical-align:middle; ">신청일자</caption>
- <input id="input82" ref="/root/main/view/irsmsubjinfo/inqrgoal" class="input_default" navindex="4" editable="false" style="left:130px; top:101px; width:655px; height:19px; "/>
- <caption id="caption126" class="cell_1" style="left:3px; top:217px; width:122px; height:23px; text-align:center; vertical-align:middle; ">의뢰기관</caption>
- <input id="input83" ref="/root/main/view/irsmsubjinfo/allidxcase" class="input_default" disabled="false" navindex="17" editable="true" style="left:130px; top:242px; width:100px; height:19px; "/>
- <input id="input85" ref="/root/main/view/irsmsubjinfo/itemnm" class="input_default" navindex="2" editable="false" style="left:130px; top:54px; width:655px; height:19px; "/>
- <select id="checkbox2" ref="/root/main/view/irsmsubjinfo/relprstdata1" navindex="7" overflow="visible" appearance="full" style="left:130px; top:196px; width:110px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>피험자 모집문건</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <caption id="caption128" class="cell_1" style="left:3px; top:193px; width:122px; height:23px; text-align:center; vertical-align:middle; ">관련제출자료</caption>
- <caption id="caption130" class="cell_1" style="left:3px; top:169px; width:122px; height:23px; text-align:center; vertical-align:middle; ">조사방법</caption>
- <input id="input87" ref="/root/main/view/irsmsubjinfo/comnm" class="input_default" navindex="3" editable="false" style="left:130px; top:77px; width:655px; height:19px; "/>
- <input id="input88" ref="/root/main/view/irsmsubjinfo/stdycostsuppinstnm" class="input_default" disabled="false" navindex="16" editable="true" style="left:670px; top:218px; width:116px; height:19px; "/>
- <input id="input89" ref="/root/main/view/irsmsubjinfo/stdyenddd" class="input_default" disabled="false" navindex="20" editable="false" inputtype="date" style="left:240px; top:265px; width:100px; height:19px; "/>
- <input id="input92" ref="/root/main/view/irsmsubjinfo/inqrmthd" class="input_default" navindex="6" editable="true" style="left:130px; top:170px; width:655px; height:19px; "/>
- <input id="input93" ref="/root/main/view/irsmsubjinfo/prstdataetc5" class="input_default" disabled="true" navindex="12" editable="true" style="left:640px; top:194px; width:146px; height:19px; "/>
- <caption id="caption132" class="cell_1" style="left:3px; top:241px; width:122px; height:23px; text-align:center; vertical-align:middle; ">전체증례수</caption>
- <input id="input96" ref="/root/main/view/irsmsubjinfo/appdd" class="input_default" disabled="false" navindex="21" editable="false" inputtype="date" style="left:471px; top:264px; width:100px; height:19px; "/>
- <caption id="caption135" class="cell_1" style="left:3px; top:265px; width:122px; height:23px; text-align:center; vertical-align:middle; ">연구예정기간</caption>
- <caption id="caption136" class="cell_1" style="left:3px; top:51px; width:122px; height:23px; text-align:center; vertical-align:middle; ">조사대상 품목명</caption>
- <select1 id="combo7" ref="/root/main/view/irsmsubjinfo/testeeaprvflag" class="combo_search" disabled="false" navindex="18" appearance="minimal" style="left:344px; top:242px; width:153px; height:19px; ">
- <choices>
- <item>
- <label>서면</label>
- <value>1</value>
- </item>
- <item>
- <label>구두(사유서첨부)</label>
- <value>2</value>
- </item>
- <item>
- <label>불필요(사유서첨부)</label>
- <value>3</value>
- </item>
- </choices>
- </select1>
- <caption id="caption137" class="cell_1" style="left:3px; top:3px; width:122px; height:47px; text-align:center; vertical-align:middle; ">연구과제명</caption>
- <select id="checkbox7" ref="/root/main/view/irsmsubjinfo/relprstdata2" navindex="8" overflow="visible" appearance="full" style="left:243px; top:196px; width:110px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>피험자 환자일지</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <caption id="caption138" class="cell_1" style="left:3px; top:75px; width:122px; height:23px; text-align:center; vertical-align:middle; ">성분명 및 규격단위</caption>
- <input id="input100" ref="/root/main/view/irsmsubjinfo/stdystartdd" class="input_default" disabled="false" navindex="19" editable="false" inputtype="date" style="left:130px; top:266px; width:100px; height:19px; "/>
- <select id="checkbox8" ref="/root/main/view/irsmsubjinfo/relprstdata3" navindex="9" overflow="visible" appearance="full" style="left:356px; top:196px; width:100px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>피험자 설문지</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <select id="checkbox9" ref="/root/main/view/irsmsubjinfo/relprstdata4" navindex="10" overflow="visible" appearance="full" style="left:459px; top:196px; width:135px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>경제적 이해관계 자료</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <input id="input102" ref="/root/main/view/irsmsubjinfo/concernrela" class="input_default" navindex="22" editable="true" style="left:130px; top:292px; width:655px; height:19px; "/>
- <caption id="caption139" class="cell_1" style="left:3px; top:289px; width:122px; height:23px; text-align:center; vertical-align:middle; ">
- <![CDATA[경제적이해관계명시]]>
- </caption>
- <textarea id="textarea14" ref="/root/main/view/irsmsubjinfo/subjnm" navindex="1" scroll="vertical" editable="true" style="left:130px; top:3px; width:655px; height:47px; "/>
- <caption id="caption140" class="cell_1" style="left:3px; top:123px; width:122px; height:45px; text-align:center; vertical-align:middle; ">대상질환</caption>
- <textarea id="textarea15" ref="/root/main/view/irsmsubjinfo/trgtsick" navindex="5" scroll="vertical" editable="true" style="left:130px; top:123px; width:655px; height:44px; "/>
- <caption id="caption35" class="cell_1" style="left:3px; top:313px; width:122px; height:123px; text-align:center; vertical-align:middle; ">
- <![CDATA[의뢰기관(CRO)
- 담당자]]>
- </caption>
- <input id="input26" ref="/root/main/view/imcmreqchrg/cntctelno" class="input_default" disabled="false" editable="false" style="left:225px; top:340px; width:205px; height:19px; "/>
- <caption id="caption36" class="cell_1" style="left:130px; top:338px; width:91px; height:23px; text-align:center; vertical-align:middle; ">전화번호</caption>
- <caption id="caption41" class="cell_1" style="left:130px; top:413px; width:91px; height:23px; text-align:center; vertical-align:middle; ">E-mail</caption>
- <input id="input27" ref="/root/main/view/imcmreqchrg/faxno" class="input_default" disabled="false" editable="false" style="left:225px; top:390px; width:205px; height:19px; "/>
- <caption id="caption42" class="cell_1" style="left:130px; top:313px; width:91px; height:23px; text-align:center; vertical-align:middle; ">이름</caption>
- <caption id="caption52" class="cell_1" style="left:130px; top:388px; width:91px; height:23px; text-align:center; vertical-align:middle; ">Fax</caption>
- <input id="input53" ref="/root/main/view/imcmreqchrg/nm" class="input_default" disabled="false" editable="false" style="left:225px; top:315px; width:205px; height:19px; "/>
- <input id="input66" ref="/root/main/view/imcmreqchrg/email" class="input_default" disabled="false" editable="false" style="left:225px; top:415px; width:205px; height:19px; "/>
- <caption id="caption106" class="cell_1" style="left:130px; top:363px; width:91px; height:23px; text-align:center; vertical-align:middle; ">핸드폰번호</caption>
- <input id="input68" ref="/root/main/view/imcmreqchrg/mpphonno" class="input_default" disabled="false" editable="false" style="left:225px; top:365px; width:205px; height:19px; "/>
- <caption id="caption141" class="cell_1" style="left:130px; top:488px; width:91px; height:23px; text-align:center; vertical-align:middle; ">CRF</caption>
- <input id="input90" ref="/root/main/view/irsmsubjinfo/verplan" class="input_default" disabled="false" editable="false" style="left:225px; top:440px; width:205px; height:19px; "/>
- <caption id="caption142" class="cell_1" style="left:130px; top:513px; width:91px; height:23px; text-align:center; vertical-align:middle; ">IB</caption>
- <caption id="caption144" class="cell_1" style="left:130px; top:438px; width:91px; height:23px; text-align:center; vertical-align:middle; ">계획서</caption>
- <input id="input94" ref="/root/main/view/irsmsubjinfo/vercrf" class="input_default" disabled="false" editable="false" style="left:225px; top:490px; width:205px; height:19px; "/>
- <caption id="caption145" class="cell_1" style="left:3px; top:438px; width:122px; height:97px; text-align:center; vertical-align:middle; ">Version</caption>
- <caption id="caption146" class="cell_1" style="left:130px; top:463px; width:91px; height:23px; text-align:center; vertical-align:middle; ">동의서</caption>
- <input id="input95" ref="/root/main/view/irsmsubjinfo/veraprv" class="input_default" disabled="false" editable="false" style="left:225px; top:465px; width:205px; height:19px; "/>
- <input id="input97" ref="/root/main/view/irsmsubjinfo/verib" class="input_default" disabled="false" editable="false" style="left:225px; top:515px; width:205px; height:19px; "/>
- <caption id="caption153" class="cell_1" style="left:130px; top:217px; width:56px; height:23px; text-align:center; vertical-align:middle; ">제약회사</caption>
- <caption id="caption154" class="cell_1" style="left:310px; top:217px; width:56px; height:23px; text-align:center; vertical-align:middle; ">CRO</caption>
- <input id="input104" ref="/root/main/view/irsmsubjinfo/croinstcd" class="input_default" disabled="false" navindex="14" editable="true" style="left:370px; top:220px; width:115px; height:19px; "/>
- </case>
- </switch>
- </case>
- <case id="case3">
- <input id="input38" ref="/root/main/default/subjhospi/subjno" class="input_default" editable="false" style="left:107px; top:28px; width:100px; height:19px; "/>
- <input id="input39" ref="/root/main/default/subjhospi/totstdycost" class="input_default" editable="false" format="(-)#,###" style="left:311px; top:28px; width:210px; height:19px; "/>
- <input id="input40" ref="/root/main/default/subjhospi/usernm" class="input_default" editable="false" style="left:107px; top:52px; width:100px; height:19px; "/>
- <input id="input41" ref="/root/main/default/subjhospi/stdystartdd" class="input_default" editable="false" inputtype="date" style="left:311px; top:52px; width:100px; height:19px; "/>
- <caption id="caption58" class="cell_1" style="left:5px; top:50px; width:100px; height:23px; text-align:center; vertical-align:middle; ">시험책임자</caption>
- <caption id="caption72" class="cell_1" style="left:5px; top:26px; width:100px; height:23px; text-align:center; vertical-align:middle; ">과제번호</caption>
- <input id="input42" ref="/root/main/default/subjhospi/stdyenddd" class="input_default" editable="false" inputtype="date" style="left:421px; top:52px; width:100px; height:19px; "/>
- <caption id="caption76" class="cell_1" style="left:209px; top:50px; width:100px; height:23px; text-align:center; vertical-align:middle; ">연구기간</caption>
- <caption id="caption77" class="cell_1" style="left:523px; top:26px; width:100px; height:23px; text-align:center; vertical-align:middle; ">접수일자</caption>
- <input id="input43" ref="/root/main/default/subjhospi/reqdt" class="input_default" editable="false" inputtype="date" style="left:625px; top:29px; width:121px; height:19px; "/>
- <input id="input44" ref="/root/main/default/subjhospi/itemnm" class="input_default" editable="false" style="left:625px; top:52px; width:121px; height:19px; "/>
- <caption id="caption78" class="cell_1" style="left:523px; top:50px; width:100px; height:23px; text-align:center; vertical-align:middle; ">품목명</caption>
- <caption id="caption79" class="cell_1" style="left:5px; top:74px; width:100px; height:56px; text-align:center; vertical-align:middle; ">과제명</caption>
- <caption id="caption80" class="tit_2" style="left:6px; top:6px; width:240px; height:13px; ">연구관련정보</caption>
- <textarea id="textarea11" ref="/root/main/default/subjhospi/subjnm" editable="false" style="left:107px; top:75px; width:639px; height:55px; "/>
- <caption id="caption81" class="cell_1" style="left:209px; top:26px; width:100px; height:23px; text-align:center; vertical-align:middle; ">총연구비</caption>
- <line id="line21" class="line_3" style="x1:5px; y1:132px; x2:747px; y2:132px; "/>
- <line id="line20" class="line_1" style="x1:5px; y1:22px; x2:747px; y2:22px; "/>
- <button id="button15" class="btn2_letter4" style="left:1090px; top:412px; width:64px; height:19px; ">
- <caption>내려받기</caption>
- </button>
- <datagrid id="datagrid2" nodeset="/root/main/view/icumbugtc" caption="지출항목^실행예산^산출근거" colsep="^" colwidth="100, 200, 200" dataheight="25" extendlastcol="scroll" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="25" rowsep="|" tooltip="true" style="left:5px; top:322px; width:570px; height:140px; ">
- <col disabled="true" ref="detlitemexpendcd" type="combo">
- <choices>
- <item>
- <label>유인물비</label>
- <value>30001</value>
- </item>
- <item>
- <label>문헌조사비</label>
- <value>30002</value>
- </item>
- <item>
- <label>설문조사비</label>
- <value>30003</value>
- </item>
- <item>
- <label>공공요금,잡비</label>
- <value>30004</value>
- </item>
- <item>
- <label>자문료</label>
- <value>30005</value>
- </item>
- <item>
- <label>기타</label>
- <value>30099</value>
- </item>
- </choices>
- </col>
- <col ref="bugt" format="(-)#,###" mask="exclude" maxlength="12"/>
- <col ref="calcbase"/>
- </datagrid>
- <caption id="caption70" class="tit_2" style="left:6px; top:468px; width:120px; height:13px; ">마.간접비(15%)</caption>
- <caption id="caption71" class="cell_1" style="left:6px; top:488px; width:110px; height:23px; text-align:center; vertical-align:middle; ">병원간접비(10%)</caption>
- <line id="line31" class="line_3" style="x1:5px; y1:298px; x2:575px; y2:298px; "/>
- <line id="line10" class="line_3" style="x1:6px; y1:512px; x2:575px; y2:512px; "/>
- <button id="button18" class="btn2_letter4" style="left:1090px; top:390px; width:64px; height:19px; ">
- <caption>내려받기</caption>
- </button>
- <input id="input30" ref="/root/main/view/icumbugtfilelst/attfilenm4" class="input_default" editable="false" style="left:610px; top:390px; width:470px; height:19px; "/>
- <caption id="caption73" class="cell_1" style="left:275px; top:488px; width:110px; height:23px; text-align:center; vertical-align:middle; ">CRCC간접비(5%)</caption>
- <line id="line11" class="line_3" style="x1:845px; y1:512px; x2:1179px; y2:512px; "/>
- <input id="input31" ref="/root/main/view/icumbugtfilelst/attfilenm5" class="input_default" editable="false" style="left:610px; top:412px; width:470px; height:19px; "/>
- <caption id="caption74" class="tit_2" style="left:846px; top:468px; width:329px; height:13px; ">바.총연구비(115%) (가+나+다+마)</caption>
- <line id="line45" class="line_1" style="x1:610px; y1:153px; x2:1180px; y2:153px; "/>
- <caption id="caption64" class="tit_2" style="left:611px; top:468px; width:155px; height:13px; vertical-align:middle; ">* 소계 (가+나+다)</caption>
- <input id="input32" ref="/root/temp/hospamt" class="input_default" editable="false" format="(-)#,###" style="left:120px; top:490px; width:150px; height:19px; "/>
- <caption id="caption75" class="cell_1" style="left:846px; top:488px; width:129px; height:23px; text-align:center; vertical-align:middle; ">총연구비(115%)</caption>
- <line id="line46" class="line_3" style="x1:610px; y1:298px; x2:1180px; y2:298px; "/>
- <caption id="caption87" class="tit_2" style="left:611px; top:138px; width:161px; height:13px; ">나.직접연구경비</caption>
- <input id="input33" ref="/root/temp/totalamt" class="input_default" editable="false" format="(-)#,###" style="left:980px; top:490px; width:200px; height:19px; "/>
- <line id="line14" class="line_1" style="x1:845px; y1:483px; x2:1179px; y2:483px; "/>
- <datagrid id="datagrid9" nodeset="/root/main/view/icumbugtb" caption="지출항목^실행예산^산출근거" colsep="^" colwidth="100, 200, 200" dataheight="25" extendlastcol="scroll" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="25" rowsep="|" tooltip="true" style="left:610px; top:157px; width:570px; height:140px; ">
- <col disabled="true" ref="detlitemexpendcd" type="combo">
- <choices>
- <item>
- <label>임상검사비</label>
- <value>20001</value>
- </item>
- <item>
- <label>장비사용(임대)</label>
- <value>20002</value>
- </item>
- <item>
- <label>기기 구입비</label>
- <value>20003</value>
- </item>
- <item>
- <label>시약,재료대</label>
- <value>20004</value>
- </item>
- <item>
- <label>Volunteer Fee</label>
- <value>20005</value>
- </item>
- <item>
- <label>약품관리비</label>
- <value>20006</value>
- </item>
- </choices>
- </col>
- <col ref="bugt" format="(-)#,###" mask="exclude" maxlength="12"/>
- <col ref="calcbase"/>
- </datagrid>
- <datagrid id="datagrid11" nodeset="/root/main/view/icumbugta" caption="지출항목^실행예산^산출근거" colsep="^" colwidth="100, 200, 200" dataheight="25" extendlastcol="scroll" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="25" rowsep="|" tooltip="true" style="left:5px; top:157px; width:570px; height:140px; ">
- <col disabled="true" ref="detlitemexpendcd" type="combo">
- <choices>
- <item>
- <label>연구교수인건비</label>
- <value>10001</value>
- </item>
- <item>
- <label>인건보조비</label>
- <value>10002</value>
- </item>
- <item>
- <label>회의비</label>
- <value>10003</value>
- </item>
- <item>
- <label>여비</label>
- <value>10004</value>
- </item>
- </choices>
- </col>
- <col ref="bugt" format="(-)#,###" mask="exclude" maxlength="12"/>
- <col ref="calcbase"/>
- </datagrid>
- <input id="input34" ref="/root/temp/sumamt" class="input_default" editable="false" format="(-)#,###" style="left:610px; top:490px; width:229px; height:19px; vertical-align:middle; "/>
- <caption id="caption67" class="tit_2" style="left:6px; top:138px; width:161px; height:13px; ">가.연구활동비(단위: 원)</caption>
- <input id="input35" ref="/root/main/view/icumbugtfilelst/attfilenm1" class="input_default" editable="false" style="left:610px; top:324px; width:470px; height:19px; "/>
- <caption id="caption68" class="tit_2" style="left:6px; top:303px; width:161px; height:13px; ">다.연구운영비</caption>
- <line id="line16" class="line_1" style="x1:6px; y1:483px; x2:575px; y2:483px; "/>
- <input id="input36" ref="/root/main/view/icumbugtfilelst/attfilenm2" class="input_default" editable="false" style="left:610px; top:346px; width:470px; height:19px; "/>
- <line id="line17" class="line_1" style="x1:610px; y1:318px; x2:1180px; y2:318px; "/>
- <caption id="caption69" class="tit_2" style="left:611px; top:303px; width:300px; height:13px; ">라.기타 산출근거(임상검사비등) 파일첨부</caption>
- <line id="line18" class="line_1" style="x1:5px; y1:318px; x2:575px; y2:318px; "/>
- <input id="input37" ref="/root/temp/crccamt" class="input_default" editable="false" format="(-)#,###" style="left:388px; top:490px; width:187px; height:19px; "/>
- <line id="line19" class="line_1" style="x1:5px; y1:153px; x2:575px; y2:153px; "/>
- <button id="button10" class="btn2_letter4" style="left:1090px; top:346px; width:64px; height:19px; ">
- <caption>내려받기</caption>
- </button>
- <line id="line32" class="line_3" style="x1:5px; y1:463px; x2:575px; y2:463px; "/>
- <input id="input29" ref="/root/main/view/icumbugtfilelst/attfilenm3" class="input_default" editable="false" style="left:610px; top:368px; width:470px; height:19px; "/>
- <button id="button12" class="btn2_letter4" style="left:1090px; top:368px; width:64px; height:19px; ">
- <caption>내려받기</caption>
- </button>
- <button id="button14" class="btn2_letter4" style="left:1090px; top:324px; width:64px; height:19px; ">
- <caption>내려받기</caption>
- </button>
- <line id="line30" class="line_3" style="x1:610px; y1:512px; x2:839px; y2:512px; "/>
- <line id="line33" class="line_1" style="x1:610px; y1:483px; x2:839px; y2:483px; "/>
- </case>
- <case id="case4">
- <caption id="caption104" class="tit_2" style="left:10px; top:150px; width:135px; height:13px; ">구비서류 자가체크</caption>
- <datagrid id="datagrid1" nodeset="/root/main/view/chkgrouplst" caption="구비서류항목^구비여부^비고" colsep="^" colwidth="468, 100, 200" extendlastcol="scroll" mergecellsfixedrows="bycolrec" rowheader="seq" rowsep="|" style="left:5px; top:170px; width:810px; height:340px; ">
- <col ref="prtitem"/>
- <col class="combo_search" ref="possesyn" type="combo">
- <choices>
- <item>
- <label>예</label>
- <value>Y</value>
- </item>
- <item>
- <label>아니오</label>
- <value>N</value>
- </item>
- <item>
- <label>해당사항없음</label>
- <value>R</value>
- </item>
- </choices>
- </col>
- <col ref="cmt"/>
- </datagrid>
- <line id="line55" class="line_1" style="x1:5px; y1:165px; x2:815px; y2:165px; "/>
- <caption id="caption54" class="cell_1" style="left:209px; top:26px; width:100px; height:23px; text-align:center; vertical-align:middle; ">총연구비</caption>
- <line id="line26" class="line_1" style="x1:5px; y1:22px; x2:746px; y2:22px; "/>
- <caption id="caption93" class="cell_1" style="left:5px; top:26px; width:100px; height:23px; text-align:center; vertical-align:middle; ">과제번호</caption>
- <input id="input52" ref="/root/main/default/subjhospi/usernm" class="input_default" editable="false" style="left:107px; top:52px; width:100px; height:19px; "/>
- <line id="line27" class="line_3" style="x1:5px; y1:132px; x2:746px; y2:132px; "/>
- <input id="input60" ref="/root/main/default/subjhospi/stdystartdd" class="input_default" editable="false" inputtype="date" style="left:311px; top:52px; width:100px; height:19px; "/>
- <input id="input61" ref="/root/main/default/subjhospi/stdyenddd" class="input_default" editable="false" inputtype="date" style="left:421px; top:52px; width:100px; height:19px; "/>
- <input id="input62" ref="/root/main/default/subjhospi/reqdt" class="input_default" editable="false" inputtype="date" style="left:625px; top:29px; width:121px; height:19px; "/>
- <input id="input63" ref="/root/main/default/subjhospi/itemnm" class="input_default" editable="false" style="left:625px; top:52px; width:121px; height:19px; "/>
- <caption id="caption94" class="cell_1" style="left:209px; top:50px; width:100px; height:23px; text-align:center; vertical-align:middle; ">연구기간</caption>
- <caption id="caption95" class="cell_1" style="left:523px; top:26px; width:100px; height:23px; text-align:center; vertical-align:middle; ">접수일자</caption>
- <caption id="caption96" class="cell_1" style="left:523px; top:50px; width:100px; height:23px; text-align:center; vertical-align:middle; ">품목명</caption>
- <caption id="caption97" class="cell_1" style="left:5px; top:74px; width:100px; height:56px; text-align:center; vertical-align:middle; ">과제명</caption>
- <caption id="caption98" class="cell_1" style="left:5px; top:50px; width:100px; height:23px; text-align:center; vertical-align:middle; ">시험책임자</caption>
- <input id="input64" ref="/root/main/default/subjhospi/subjno" class="input_default" editable="false" style="left:107px; top:28px; width:100px; height:19px; "/>
- <input id="input65" ref="/root/main/default/subjhospi/totstdycost" class="input_default" editable="false" format="#,###" style="left:311px; top:28px; width:210px; height:19px; "/>
- <textarea id="textarea13" ref="/root/main/default/subjhospi/subjnm" editable="false" style="left:107px; top:75px; width:639px; height:55px; "/>
- <caption id="caption99" class="tit_2" style="left:6px; top:6px; width:240px; height:13px; ">연구관련정보</caption>
- <line id="line28" class="line_3" style="x1:4px; y1:512px; x2:815px; y2:512px; "/>
- <input id="input105" ref="/root/main/view/irsdsubjhosp/subjattfile" class="input_default" editable="false" style="left:185px; top:145px; width:176px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if ( model.getValue("/root/main/view/chkgrouphead/subjattfile") ==""){
- button5.disabled= true;
- } else {
- var reqyn = model.getValue("/root/main/grid/irsdsubjhosp["+ datagrid0.row +"]/reqyn");
- if(reqyn == "Y") {
- button5.disabled= true;
- } else {
- button5.disabled= false;
- }
- }
- ]]>
- </script>
- </input>
- <button id="button5" class="btn5_letter4" style="left:365px; top:145px; width:64px; height:19px; ">
- <caption>내려받기</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var s = model.getValue("/root/main/view/irsdsubjhosp/subjattfile");
- var ss = s.split("/");
- var filepath = "";
- var filenm = "";
- for ( var i = 0; i < ss.length; i ++){
- if ( i < ss.length -2 ) {
- filepath = filepath+ss[i] +"/";
- } else if ( i < ss.length -1 ) {
- filepath = filepath+ss[i] ;
- } else {
- filenm = ss[i];
- }
-
- }
-
-
- var localfile = window.fileDialog("save","|",false,filenm,"","All Files(*.*)|*.*");
- if (localfile != "") {
- model.download(getActionURL("TRIRS00105")+"&filepath="+filepath,localfile);
- var rtn = messageBox("파일을", "Q004");
- if( rtn == 6 ) {
- window.exec(localfile);
- }
- }
- ]]>
- </script>
- </button>
- <upload id="upload1" ext="zip" filecount="5" filesize="10485760" validate="true" style="left:445px; top:140px; width:100px; height:20px; "/>
- </case>
- <case id="case5">
- <line id="line24" class="line_1" style="x1:4px; y1:150px; x2:745px; y2:150px; "/>
- <datagrid id="datagrid10" nodeset="/root/main/view/imcmtestee" caption="이름^나이^키^몸무게^생년월일^접수일^연락처^이메일" colsep="^" colwidth="80, 50, 50, 50, 100, 100, 100, 140" extendlastcol="scroll" mergecellsfixedrows="bycolrec" rowheader="seq" rowsep="|" tooltip="true" style="left:4px; top:155px; width:741px; height:355px; ">
- <col ref="testeenm"/>
- <col ref="age"/>
- <col ref="ht"/>
- <col ref="bdwt"/>
- <col ref="brthdd" format="yyyy-mm-dd"/>
- <col ref="fstrgstdt" format="yyyy-mm-dd"/>
- <col ref="telno"/>
- <col ref="email"/>
- </datagrid>
- <line id="line25" class="line_3" style="x1:4px; y1:512px; x2:745px; y2:512px; "/>
- <button id="button6" class="btn2_letter7" style="left:650px; top:2px; width:97px; height:19px; ">
- <caption>지원자명단출력</caption>
- </button>
- <textarea id="textarea12" ref="/root/main/default/subjhospi/subjnm" editable="false" style="left:107px; top:75px; width:639px; height:55px; "/>
- <input id="input45" ref="/root/main/default/subjhospi/stdystartdd" class="input_default" editable="false" inputtype="date" style="left:311px; top:52px; width:100px; height:19px; "/>
- <input id="input46" ref="/root/main/default/subjhospi/stdyenddd" class="input_default" editable="false" inputtype="date" style="left:421px; top:52px; width:100px; height:19px; "/>
- <caption id="caption82" class="cell_1" style="left:5px; top:26px; width:100px; height:23px; text-align:center; vertical-align:middle; ">과제번호</caption>
- <caption id="caption85" class="cell_1" style="left:209px; top:50px; width:100px; height:23px; text-align:center; vertical-align:middle; ">연구기간</caption>
- <input id="input47" ref="/root/main/default/subjhospi/reqdt" class="input_default" editable="false" inputtype="date" style="left:625px; top:29px; width:121px; height:19px; "/>
- <caption id="caption86" class="cell_1" style="left:523px; top:26px; width:100px; height:23px; text-align:center; vertical-align:middle; ">접수일자</caption>
- <input id="input48" ref="/root/main/default/subjhospi/itemnm" class="input_default" editable="false" style="left:625px; top:52px; width:121px; height:19px; "/>
- <input id="input49" ref="/root/main/default/subjhospi/usernm" class="input_default" editable="false" style="left:107px; top:52px; width:100px; height:19px; "/>
- <input id="input50" ref="/root/main/default/subjhospi/subjno" class="input_default" editable="false" style="left:107px; top:28px; width:100px; height:19px; "/>
- <caption id="caption88" class="cell_1" style="left:523px; top:50px; width:100px; height:23px; text-align:center; vertical-align:middle; ">품목명</caption>
- <input id="input51" ref="/root/main/default/subjhospi/totstdycost" class="input_default" editable="false" style="left:311px; top:28px; width:210px; height:19px; "/>
- <caption id="caption89" class="cell_1" style="left:5px; top:74px; width:100px; height:56px; text-align:center; vertical-align:middle; ">과제명</caption>
- <caption id="caption90" class="cell_1" style="left:5px; top:50px; width:100px; height:23px; text-align:center; vertical-align:middle; ">시험책임자</caption>
- <caption id="caption91" class="cell_1" style="left:209px; top:26px; width:100px; height:23px; text-align:center; vertical-align:middle; ">총연구비</caption>
- <caption id="caption92" class="tit_2" style="left:6px; top:6px; width:240px; height:13px; ">연구관련정보</caption>
- <line id="line22" class="line_1" style="x1:5px; y1:22px; x2:747px; y2:22px; "/>
- <line id="line23" class="line_3" style="x1:5px; y1:132px; x2:746px; y2:132px; "/>
- </case>
- </switch>
- <button id="button71" class="btn_sw" group="tab" selected="true" style="left:2px; top:244px; width:123px; height:22px; ">
- <caption>과제정보/심사이력</caption>
- <toggle case="case1" ev:event="onclick"/>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- getSubjInfoNInternet();
- ]]>
- </script>
- </button>
- <button id="button1" class="btn_sw" group="tab" style="left:126px; top:244px; width:120px; height:22px; ">
- <caption>과제상세정보</caption>
- <toggle case="case2" ev:event="onclick"/>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- getSubjInfo();
- ]]>
- </script>
- </button>
- <button id="button2" class="btn_sw" group="tab" style="left:245px; top:244px; width:120px; height:22px; ">
- <caption>과제실행예산</caption>
- <toggle case="case3" ev:event="onclick"/>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- getIrsdSubjHospInfo();
- ]]>
- </script>
- </button>
- <button id="button3" class="btn_sw" group="tab" style="left:364px; top:244px; width:120px; height:22px; ">
- <caption>자가체크리스트</caption>
- <toggle case="case4" ev:event="onclick"/>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- if(getValue()) getChkGroupInfo();
- model.makeValue("/root/main/view/irsdsubjhosp/subjattfile", model.getValue("/root/temp/subjattfile"));
- model.refresh();
- if ( model.getValue("/root/temp/subjattfile") == ""){
- button5.disabled=true;
- } else {
- button5.disabled=false;
- }
- ]]>
- </script>
- </button>
- <button id="button4" class="btn_sw" visibility="hidden" group="tab" style="left:483px; top:244px; width:120px; height:22px; ">
- <caption>지원자정보</caption>
- <toggle case="case5" ev:event="onclick"/>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- getTestInfo();
- ]]>
- </script>
- </button>
- <button id="btn_excel" class="btn2_letter3" style="left:1140px; top:70px; width:53px; height:19px; ">
- <caption>Excel</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
-
- var fileName = window.fileDialog("save",",",false,"과제진행목록","xls","All Files(*.*)|*.*|Excel Files(*.xls)|*.xls");
-
- if(fileName !=""){
- grd_prcssubjlist.saveExcel(fileName);
- }
- ]]>
- </script>
- </button>
- </xhtml:body>
- </xhtml:html>
|