123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157 |
- <?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>
- <model id="model1">
- <instance id="instance1">
- <root xmlns="">
- <main>
- <cond>
- <pid/>
- <orddd/>
- <cretno/>
- <hngnm/>
- <sa/>
- <rrgstno1/>
- <rrgstno2/>
- <fromdd/>
- <todd/>
- <ioflag/>
- <copyseqno/>
- <prcpsrcflag/>
- <orddeptnm/>
- <orddeptcd/>
- <roomcd/>
- <dschdd/>
- <emrordflag/>
- <age/>
- <wardhospnm/>
- <recepinfochk>Y</recepinfochk>
- </cond>
- <apphist>
- <applist/>
- </apphist>
- <result/>
- <scrnstatus/>
- <appinfo>
- <copyinfo>
- <addstatus/>
- <status/>
- <copyseqno/>
- <pid/>
- <appdd/>
- <apptm/>
- <appdeptcd/>
- <appdeptnm/>
- <appdrid/>
- <appdrnm/>
- <appmannm/>
- <appmanflag>1</appmanflag>
- <issgoalcd/>
- <issgoalnm/>
- <issgoaletc/>
- <issgoaletccd/>
- <issgoaletcnm/>
- <issdd/>
- <issseqno/>
- <emrordflag/>
- <emrorddeptcd/>
- <emrappcopies/>
- <delivefact/>
- <memo/>
- <orddd/>
- <cretno/>
- <cncldt/>
- <prntdt/>
- <shtno/>
- <trustyn>N</trustyn>
- <appmanetc/>
- <delivefact/>
- </copyinfo>
- </appinfo>
- <outpathistlist>
- <outpathistlist>
- <checkflag/>
- <pid/>
- <cretno/>
- <orddd/>
- <orddeptcd/>
- <orddrid/>
- <orddeptnm/>
- <orddrnm/>
- <ordtype/>
- <emrflag/>
- </outpathistlist>
- </outpathistlist>
- <out>
- <pid/>
- <chrtflag/>
- <fromdd/>
- <todd/>
- </out>
- <in>
- <pid/>
- <chrtflag/>
- <fromdd/>
- <todd/>
- </in>
- <inpathistlist>
- <inpathistlist/>
- </inpathistlist>
- <issinfo>
- <emrapplist/>
- <copyinfo/>
- </issinfo>
- <emrinfo>
- <emrlist/>
- </emrinfo>
- <patprcpinfo>
- <patprcplist/>
- </patprcpinfo>
- <otherinfo>
- <prcpinfo/>
- <testinfo/>
- <testinfo1/>
- <testinfo2/>
- <testinfo3/>
- <testinfo4/>
- <testinfo5/>
- <testinfo6/>
- <testinfo7/>
- <testinfo8/>
- <outchrtflag/>
- <anoinfo/>
- <lang>K</lang>
- <onlytest/>
- <bmtappyn/>
- <addimageyn/>
- </otherinfo>
- <isshist>
- <isslist>
- <issno/>
- <ioflagnm/>
- <pid/>
- <hngnm/>
- <rrgstno1/>
- <rrgstno2/>
- <orddeptnm/>
- <atdoctnm/>
- <appdrnm/>
- <appmannm/>
- <issgoalcd/>
- <trustyn/>
- <rcptyn/>
- <totalcopies/>
- <issnm/>
- <issdt/>
- <appdt/>
- <prntlim/>
- <unprepyn/>
- <orddd/>
- <cretno/>
- <ioflag/>
- <orddeptcd/>
- <orddrid/>
- <copyseqno/>
- </isslist>
- </isshist>
- <rcptlist>
- <rcptlist/>
- </rcptlist>
- <patinfo>
- <patinfolist/>
- </patinfo>
- <paper>
- <paperyn/>
- <deathyn/>
- </paper>
- <paminfo/>
- <midissinfo>
- <emrapplist/>
- <totemrapplist/>
- </midissinfo>
- <cnfmlist>
- <cnfmlist/>
- </cnfmlist>
- <clamyn>
- <clamyn/>
- </clamyn>
- <recsrch>
- <reclist/>
- </recsrch>
- <rcptpossynmsg/>
- <delivefactcnt/>
- <msg>
- <msg/>
- </msg>
- </main>
- <send>
- <reqdata/>
- <savedata/>
- <search/>
- <iemr>
- <treatno/>
- <pid/>
- <orddeptcd/>
- <indd/>
- <docucd/>
- <ioflag/>
- <cmc_cretno/>
- <cmc_spcid/>
- <cmc_orddate/>
- <cmc_orderseqno/>
- </iemr>
- <aftcert/>
- <msg>
- <userid/>
- <deptcd/>
- </msg>
- <chngissinfo>
- <orddoctid/>
- <issvaliinfoflag/>
- </chngissinfo>
- <xhiststat>
- <pid/>
- <orddd/>
- <cretno/>
- </xhiststat>
- <docinfo/>
- <reqtrns/>
- </send>
- <hidden>
- <insocrtag/>
- <calcscorcd/>
- <tmpcalcscorcd/>
- <defcalcscorcd/>
- <defcalcscornm/>
- <addcalcscorcd/>
- <addcalcscornm/>
- <inputbox/>
- <freesugauseyn/>
- <freecalcscorcd/>
- <freecalcscornm/>
- <aftcert/>
- <docinfo/>
- </hidden>
- <init>
- <orddept/>
- <userlist/>
- <paminfo>
- <list/>
- </paminfo>
- <issgoalcd/>
- <ioflaglist/>
- <deptlist>
- <dept/>
- </deptlist>
- <userinfo>
- <userlist/>
- </userinfo>
- <prcpstatcd/>
- <PAM>
- <P0029list>
- <P0029/>
- </P0029list>
- </PAM>
- <copy_menu>
- <menu>
- <label>기본수가추가</label>
- <func>fAddCalcScor</func>
- </menu>
- <menu>
- <label>컬러수가추가</label>
- <func>fAddColorCalcScor</func>
- </menu>
- <menu>
- <label>수가삭제</label>
- <func>fDelCalcScor</func>
- </menu>
- </copy_menu>
- </init>
- <temp>
- <issinfo>
- <emrlist>
- <chrtflag/>
- <ioflag/>
- <orddd/>
- <dschdd/>
- <orddeptnm/>
- <atdoctnm/>
- <formrecdt/>
- <formnm/>
- <shtno/>
- <formcd/>
- <reckeyno/>
- <orddeptcd/>
- <atdoctid/>
- <testflag/>
- <pid/>
- <cretno/>
- <midindxseq/>
- </emrlist>
- <copyinfo/>
- </issinfo>
- <patprcpinfo>
- <patprcplist/>
- </patprcpinfo>
- <hardcd/>
- <hardcd2/>
- <hardcd3/>
- <hardcd4/>
- <hardcd5/>
- <hardcd6/>
- <hardcd7/>
- </temp>
- <tmpinicert/>
- <tmpinicert2/>
- <imgrec>
- <iemr>
- <treatno/>
- <pid/>
- <orddeptcd/>
- <indd/>
- <docucd/>
- <ioflag/>
- <cmc_cretno/>
- <cmc_spcid/>
- <cmc_orddate/>
- <cmc_orderseqno/>
- </iemr>
- </imgrec>
- <copysend/>
- <tmpcopyinfo/>
- <inisend/>
- <prthist>
- <pid/>
- <signno/>
- <reckind/>
- <readprtflag/>
- <formcd/>
- <signflag/>
- <orddd/>
- <chosflag/>
- <refusge/>
- <refremark/>
- </prthist>
- <return/>
- <temp2>
- <appinfo>
- <copyinfo>
- <totalcopies/>
- <totalshrtno/>
- </copyinfo>
- </appinfo>
- <rcptlist>
- <rcptlist/>
- </rcptlist>
- </temp2>
- <midtemp/>
- <isstemp/>
- <totisstemp/>
- <tmphdcd/>
- <popupmenu>
- <menu>
- <item>
- <name>사본발행 내역삭제</name>
- <func>fdeletecopy</func>
- </item>
- </menu>
- </popupmenu>
- <msg>
- <msg/>
- </msg>
- <temp3>
- <recepinfo>
- <recepinfo/>
- </recepinfo>
- </temp3>
- <temp4>
- <xhiststat>
- <orddd/>
- <histstat/>
- </xhiststat>
- </temp4>
- <temp5/>
- </root>
- </instance>
- <submission id="TRMMR05501" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/reqdata" resultref="/root/main/result/pathistlist"/>
- <script type="javascript" ev:event="xforms-ready">
- <![CDATA[
- fInitialize();
- ]]>
- </script>
- <submission id="TRMRC03003" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/reqdata" resultref="/root/main/apphist"/>
- <submission id="TRMRC03004" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/reqdata" resultref="/root/main/outpathistlist"/>
- <submission id="TRMRC03005" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/reqdata" resultref="/root/main/inpathistlist"/>
- <submission id="TRMRC03006" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/search" resultref="/root/main/issinfo"/>
- <submission id="TRMRC03007" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/search" resultref="/root/main/emrinfo"/>
- <submission id="TRMRC03024" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/search" resultref="/root/main/emrinfo"/>
- <submission id="TRMRC03021" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/search" resultref="/root/main/midissinfo"/>
- <submission id="TRMRC03017" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/search" resultref="/root/temp/issinfo"/>
- <submission id="TRMRC03008" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/search" resultref="/root/temp/issinfo"/>
- <submission id="TRMMB04101" mediatype="application/x-www-form-urlencoded" method="post"/>
- <submission id="TRMMBTRMRC0302104102" mediatype="application/x-www-form-urlencoded" method="post"/>
- <submission id="TRZSU10117" mediatype="application/x-www-form-urlencoded" method="post" replace="instance"/>
- <submission id="TRZSD00109" mediatype="application/x-www-form-urlencoded" method="post" replace="instance"/>
- <submission id="TRZBC00101" mediatype="application/x-www-form-urlencoded" method="post" replace="instance"/>
- <submission id="TRMRC01202" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/search" resultref="/root/main/appinfo"/>
- <submission id="TRMRC03010" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/search" replace="instance" resultref="/root/main/appinfo"/>
- <submission id="TRMRC03011" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/search" resultref="/root/main/outpathistlist"/>
- <submission id="TRMRC03012" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/search" resultref="/root/main/inpathistlist"/>
- <submission id="TRMRC03013" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/search" resultref="/root/main/issinfo"/>
- <submission id="TRMRC03014" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/search" resultref="/root/main/rcptlist"/>
- <submission id="TRMRC03015" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/search" resultref="/root/main/issinfo"/>
- <submission id="TRMRC03022" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/search" resultref="/root/midtemp/midissinfo"/>
- <submission id="TRMRC03023" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/search" resultref="/root/main/rcptlist"/>
- <submission id="TRMRC01203" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/search" resultref="/root/main/emrinfo"/>
- <submission id="TRMRI00415" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/reqdata" resultref="/root/tmpinicert"/>
- <submission id="TRMRI00407" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/copysend" resultref="/root/tmpcopyinfo"/>
- <submission id="TXMRC01201" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/savedata" replace="instance"/>
- <submission id="TRMRC01101" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/cond" resultref="/root/main/isshist"/>
- <submission id="TXMRC03004" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/reqdata"/>
- <submission id="TRMRC03016" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/reqdata" resultref="/root/tmpinicert"/>
- <submission id="TRMRC03026" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/reqdata" resultref="/root/tmpinicert"/>
- <submission id="TRMRC03025" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/reqdata" resultref="/root/tmpinicert"/>
- <submission id="TRMRC03029" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/reqdata" resultref="/root/tmpinicert"/>
- <submission id="TRMRI02401" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/inisend" resultref="/root/tmpinicert"/>
- <submission id="TRMRC03020" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/inisend" resultref="/root/tmpinicert"/>
- <submission id="TRMRC03019" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/reqdata" resultref="/root/main/paper"/>
- <submission id="TXMRC03005" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/savedata" replace="instance" resultref="/root/return"/>
- <submission id="TXMRC03006" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/savedata" replace="instance" resultref="/root/return"/>
- <submission id="TRMRC03027" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/reqdata" resultref="/root/main/cnfmlist"/>
- <submission id="TRMRC03030" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/reqdata" resultref="/root/main/clamyn"/>
- <submission id="TRMRC03101" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/_send" replace="instance" resultref="/root/main/charts"/>
- <submission id="TRMRC03031" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/search" replace="instance" resultref="/root/tmpinicert"/>
- <submission id="TRMMB04103" mediatype="application/x-www-form-urlencoded" method="post"/>
- <submission id="TRMMB04105" mediatype="application/x-www-form-urlencoded" method="post"/>
- <submission id="TRMRI03004" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" resultref="/root/tmpinicert"/>
- <submission id="TRMRF03104" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/reqdata" resultref="/root/main/hardcdlist"/>
- <submission id="TRMRC03103" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/cond" resultref="/root/tmppatinfo"/>
- <submission id="TRPAM00105" mediatype="application/x-www-form-urlencoded" method="post"/>
- <submission id="TXPAO99906" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/PAM" resultref="/root/main/rsv"/>
- <submission id="TRMMO02705" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/aftcert" resultref="/root/hidden/aftcert"/>
- <submission id="TXMRC01310" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/reqdata"/>
- <submission id="TRMMR00001" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/msg" resultref="/root/main/msg"/>
- <submission id="TXMRF03805" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/reqdata" resultref="/root/hidden/insocrtag"/>
- <submission id="TXMRF02901" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/reqdata"/>
- <submission id="TRMRC03032" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/xhiststat" resultref="/root/temp4/xhiststat"/>
- <submission id="TRMRC03033" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/savedata" resultref="/root/temp5/trns"/>
- <submission id="TRMRF01205" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/docinfo/userid" resultref="/root/hidden/docinfo/signimge"/>
- </model>
- <script type="javascript" src="../../../com/commonweb/js/common.js"/>
- <script type="javascript" src="../../../com/commonweb/js/utilHelper.js"/>
- <script type="javascript" src="../../../com/commonweb/js/stringHelper.js"/>
- <script type="javascript" src="../../../com/commonweb/js/dateHelper.js"/>
- <script type="javascript" src="../../../com/commonweb/js/tfHelper.js"/>
- <script type="javascript" src="../../../com/departmentcodeweb/js/common.js"/>
- <script type="javascript" src="../../../com/departmentcodeweb/js/ZSD001.js"/>
- <script type="javascript" src="../../../com/basiccodeweb/js/ZBC001.js"/>
- <script type="javascript" src="../../../com/userdeptinfoweb/js/ZSU001.js"/>
- <script type="javascript" src="../../../emr/commonweb/js/EMRCommon.js"/>
- <script type="javascript" src="../../../emr/chrtmngtweb/js/SMMRC03100.js"/>
- <script type="javascript" src="../../../emr/formmngtweb/js/MRF03800.js"/>
- <script type="javascript" src="../../../emr/imgemrweb/js/js/SSMRC03100.js"/>
- <script type="javascript" src="../../../pam/pamcomnweb/js/PAM001.js"/>
- <script type="javascript" src="../../../emr/prcpmngtweb/js/SMMMO04100.js"/>
- <script type="javascript" src="../../../pam/pamcomnweb/js/PAM.js"/>
- <script type="javascript" ev:event="xforms-model-construct-done">
- <![CDATA[
- //20100322 BMT사본신청여부 추가
- // if(getUserInfo("dutplceinstcd") == "012"){
- // grp_bmt.visible = true;
- // }else{
- grp_bmt.visible = false;
- // }
- ]]>
- </script>
- </xhtml:head>
- <xhtml:body guideline="1,425;2,783;1,1194;2,559;1,456;" style="margin-left:8; margin-right:8; ">
- <select id="chk_addimageyn" ref="/root/main/otherinfo/addimageyn" visibility="hidden" overflow="visible" appearance="full" checkvalue="Y,N" style="left:15px; top:505px; width:47px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>OCR포함</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
-
- ]]>
- </script>
- </select>
- <!-- 2013/02/15 소스머지 시작(수정)-->
- <!--<iviewer id="iviewerIemr" src="../../../emr/imgemrweb/xrw/SSMRC03100.xrw" style="left:427px; top:70px; width:768px; height:687px; border-style:none; "/>-->
- <iviewer id="iviewerIemr" src="../../../emr/imgemrweb/xrw/SSMRC03130.xrw" style="left:427px; top:70px; width:768px; height:687px; border-style:none; "/>
- <!-- 2013/02/15 소스머지 끝-->
- <select1 id="rdo_lang" ref="/root/main/otherinfo/lang" appearance="full" cellspacing="2" cols="2" overflow="visible" style="left:1044px; top:662px; width:94px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>한글</label>
- <value>K</value>
- </item>
- <item>
- <label>영문</label>
- <value>E</value>
- </item>
- </choices>
- </select1>
- <group id="group1" style="left:0px; top:600px; width:420px; height:95px; ">
- <group id="grp_bmt" style="left:195px; top:0px; width:124px; height:22px; ">
- <button id="button13" class="btn2_letter7" style="left:3px; top:2px; width:97px; height:19px; ">
- <caption>BMT 사본신청</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
-
- ]]>
- </script>
- </button>
- <select id="chk_bmt" ref="/root/main/otherinfo/bmtappyn" overflow="visible" appearance="full" checkvalue="Y,N" style="left:0px; top:2px; width:120px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>BMT 사본신청유무</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- </group>
- <shape id="roundrect9" class="roundrect_btnset" appearance="roundrect" ellipsewidth="20" ellipseheight="20" style="left:0px; top:39px; width:410px; height:52px; background-color:#f2fafe; border-color:#7cbbdd; "/>
- <shape id="roundrect8" class="roundrect_btnset" appearance="roundrect" ellipsewidth="20" ellipseheight="20" style="left:0px; top:0px; width:120px; height:33px; background-color:#f2fafe; border-color:#7cbbdd; "/>
- <select id="chk_prcpinfo" ref="/root/main/otherinfo/prcpinfo" overflow="visible" appearance="full" checkvalue="Y,N" style="left:5px; top:16px; width:100px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>처방기록포함</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- /*
- if(chk_prcpinfo.value == "Y") {
- fAddTestList("0800000636");
- } else {
- fDelTestList("0800000636");
- }
- */
- ]]>
- </script>
- </select>
- <select id="chk_testinfo2" ref="/root/main/otherinfo/testinfo2" overflow="visible" appearance="full" checkvalue="Y,N" style="left:105px; top:54px; width:100px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>진단검사</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- /*if(chk_testinfo2.value == "Y") {
- fAddTestList("0800004018");
- } else {
- fDelTestList("0800004018");
- }*/
- ]]>
- </script>
- </select>
- <select id="chk_testinfo3" ref="/root/main/otherinfo/testinfo3" overflow="visible" appearance="full" checkvalue="Y,N" style="left:205px; top:54px; width:100px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>병리조직</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
-
- /*if(chk_prcpinfo.value == "Y") {
- fAddTestList("E");
- } else {
- fDelTestList("E");
- }*/
- ]]>
- </script>
- </select>
- <select id="chk_testinfo4" ref="/root/main/otherinfo/testinfo4" overflow="visible" appearance="full" checkvalue="Y,N" style="left:305px; top:54px; width:100px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>기능검사</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
-
- /*if(chk_prcpinfo.value == "Y") {
- fAddTestList("F");
- } else {
- fDelTestList("F");
- }*/
- ]]>
- </script>
- </select>
- <select id="chk_testinfo6" ref="/root/main/otherinfo/testinfo6" overflow="visible" appearance="full" checkvalue="Y,N" style="left:105px; top:72px; width:100px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>핵의학</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- /*var label = chk_testinfo6.label;
- fSendChkLabelText(label);*/
-
- /*if(chk_testinfo6.value == "Y") {
- fAddTestList("0800004020");
- } else {
- fDelTestList("0800004020");
- }*/
- ]]>
- </script>
- </select>
- <select id="chk_testinfo5" ref="/root/main/otherinfo/testinfo5" overflow="visible" appearance="full" checkvalue="Y,N" style="left:5px; top:72px; width:100px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>영상의학</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
-
- /*if(chk_testinfo5.value == "Y") {
- fAddTestList("0800004021");
- } else {
- fDelTestList("0800004021");
- }*/
- ]]>
- </script>
- </select>
- <select id="chk_testinfo7" ref="/root/main/otherinfo/testinfo7" overflow="visible" appearance="full" checkvalue="Y,N" style="left:205px; top:72px; width:100px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>내시경</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
-
- /*if(chk_prcpinfo.value == "Y") {
- fAddTestList("I");
- } else {
- fDelTestList("I");
- }*/
- ]]>
- </script>
- </select>
- <select id="chk_testinfo8" ref="/root/main/otherinfo/testinfo8" overflow="visible" appearance="full" checkvalue="Y,N" style="left:305px; top:72px; width:100px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>미생물</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
-
- /*if(chk_testinfo8.value == "Y") {
- fAddTestList("0800004019");
- } else {
- fDelTestList("0800004019");
- }*/
- ]]>
- </script>
- </select>
- <caption id="caption25" class="tit_2" style="left:4px; top:41px; width:152px; height:13px; ">검사결과 상세신청내역</caption>
- <caption id="caption26" class="tit_2" style="left:4px; top:2px; width:152px; height:13px; ">처방/검사 신청</caption>
- <select id="chk_testinfo_bak" ref="/root/main/otherinfo/testinfo" visibility="hidden" overflow="visible" appearance="full" checkvalue="Y,N" style="left:120px; top:0px; width:70px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>검사결과 포함</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(chk_testinfo.value == "Y") {
- for( var i = 2; i < 9 ; i++) {
- model.setValue("/root/main/otherinfo/testinfo" + i +"", "Y");
- }
- } else{
- for( var i = 2; i < 9 ; i++) {
- model.setValue("/root/main/otherinfo/testinfo" + i +"", "");
- }
- }
- group1.refresh();
-
- /*if(chk_testinfo.value == "Y") {
- fAddTestList("0000000000");
- } else {
- fDelTestList("0000000000");
- }
-
- btn_save.disabled = false;
- btn_update.disabled = true;
- btn_reappinfo.disabled = true;*/
- ]]>
- </script>
- </select>
- <button id="button9_bak" class="btn2_letter4" visibility="hidden" style="left:335px; top:0px; width:64px; height:19px; ">
- <caption>기록조회</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fGetEMROutTestList(); //검사결과
- fEmrImgRec(); // html
- ]]>
- </script>
- </button>
- <select id="chk_onlytest" ref="/root/main/otherinfo/onlytest" overflow="visible" appearance="full" checkvalue="Y,N" style="left:175px; top:16px; width:115px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>검사결과만 신청</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
-
- ]]>
- </script>
- </select>
- <select id="chk_testinfo" ref="/root/main/otherinfo/testinfo" overflow="visible" appearance="full" checkvalue="Y,N" style="left:5px; top:54px; width:100px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>전체</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(chk_testinfo.value == "Y") {
- for( var i = 2; i < 9 ; i++) {
- model.setValue("/root/main/otherinfo/testinfo" + i +"", "Y");
- }
- } else{
- for( var i = 2; i < 9 ; i++) {
- model.setValue("/root/main/otherinfo/testinfo" + i +"", "");
- }
- }
- group1.refresh();
- ]]>
- </script>
- </select>
- <select id="chk_testinfo1" ref="/root/main/otherinfo/testinfo1" overflow="visible" appearance="full" checkvalue="Y,N" style="left:120px; top:16px; width:55px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>초진</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var label = chk_testinfo1.label;
- fSendChkLabelText(label);
-
- if(chk_prcpinfo.value == "Y") {
- fAddTestList("C");
- } else {
- fDelTestList("C");
- }
- ]]>
- </script>
- </select>
- </group>
- <shape id="roundrect6" visibility="hidden" appearance="roundrect" ellipsewidth="10" ellipseheight="10" style="left:731px; top:30px; width:463px; height:32px; background-color:#fffbf2; border-color:#ffd799; "/>
- <shape id="roundrect1" class="roundrect_btnset" appearance="roundrect" ellipsewidth="20" ellipseheight="20" style="left:0px; top:212px; width:425px; height:95px; background-color:#f2fafe; border-color:#7cbbdd; "/>
- <shape id="roundrect2" appearance="roundrect" ellipsewidth="10" ellipseheight="10" style="left:0px; top:15px; width:725px; height:32px; background-color:#fffbf2; border-color:#ffd799; "/>
- <input id="ipt_pid" ref="/root/main/cond/pid" class="input_search" style="left:99px; top:22px; width:90px; height:19px; ">
- <script type="javascript" ev:event="onkeypress">
- <![CDATA[
- if(event.keyCode == 13){
-
- var newPid = ipt_pid.currentText;
-
- // 의료정보팀인지 타 부서인지 체크
- if(fIsEmrDept() == false)
- {
- var globalPid = getPatientInfo("pid");
-
- if(globalPid != newPid) {
- messageBox("사본신청은 진료중인 환자에 대해서만 신청이 가능합니다.\n등록번호를 상단 환자등록번호와 일치시켜서","C003");
- return;
- }
- }
- model.removeNodeset("/root/temp/issinfo/emrlist");
- // 2009.05.26 이경희
- // 의료정보팀인 경우 신청내역저장 버튼이 계속 비활성화되는것을 방지
- btn_save.disabled = false;
-
- ipt_pid.currentText = newPid;
-
- //환자기본 및 원무정보 조회
- fReqGetComnPatOrdInfo(ipt_pid.currentText);
-
- model.setValue("/root/main/cond/copyseqno", "");
- //환자 이전사본발행내역 조회
- fReqGetBfCopyIssHistList(ipt_pid.currentText);
-
- /*var userinfo = getUserInfo("dutplcecd");
- if(userinfo == "3230000000"){
- fHistDetilSearch();
- }*/
- fReqGetOutPatHistList(); // 외래진료내역
- fReqGetInPatHistList(); // 입원진료내역
- fReqGetPaperYN();
-
- // 입원내역이 존재하면 가장 최근 회차의 중분류가 조회되도록
- var inList = model.instance1.selectNodes("/root/main/inpathistlist/inpathistlist");
- if(inList.length > 0) {
- grd_inapplist.row = 1;
- //fEMRChrtList("F"); // 회차별 입원 차트 조회 /root/main/issinfo/emrapplist
- //fGetINChrtList(); // 중분류서식
- }
- // (e)
- var addimageyn = model.getValue("/root/main/otherinfo/addimageyn");
- model.resetInstanceNode("/root/main/appinfo/copyinfo");
- model.resetInstanceNode("/root/main/otherinfo");
-
- model.setValue("/root/main/otherinfo/addimageyn", addimageyn );
-
- model.removeNodeset("/root/temp/issinfo/emrapplist");
- model.removeNodeset("/root/main/rcptlist/rcptlist");
- if(inList.length < 1) {
- model.removeNodeset("/root/main/midissinfo/emrapplist");
- }
- var deathyn = model.getValue("/root/main/paper/deathyn");
- if(deathyn == "Y") {
- model.setValue("/root/main/appinfo/copyinfo/appmanflag", "");
- } else if(deathyn == "N") {
- var age = model.getValue("/root/main/cond/age");
- if(age < parseInt(14)) {
- model.setValue("/root/main/appinfo/copyinfo/appmanflag", "2");
- model.setValue("/root/main/appinfo/copyinfo/trustyn", "Y");
- } else {
- model.makeValue("/root/main/appinfo/copyinfo/appmanflag", "1");
- }
- }
-
- if(model.getValue("/root/main/paper/limrem") != "") {
- var limrem = model.getValue("/root/main/paper/limrem");
- var pid = model.getValue("/root/main/cond/pid");
- var name = model.getValue("/root/main/cond/hngnm");
- messageBox(" " + pid + "(" + name + ") : " + limrem +" " + "\n 유의환자", "I009");
- }
-
- //model.setValue("/root/main/appinfo/copyinfo/appmanflag", "1");
- model.setValue("root/main/appinfo/copyinfo/trustyn", "N");
- //model.setValue("/root/main/appinfo/copyinfo/appdeptcd",getUserInfo("dutplcecd")); // 신청과
- cmb_emrorddeptcd.refresh();
- //model.setValue("/root/main/appinfo/copyinfo/appdrid", getUserId()); //신청의
- model.setValue("/root/main/otherinfo/lang", "K");
- model.refresh();
-
- // iviewer refresh, height reset
- /* iviewerIemr.window.javaScript.cleanViewer();
- var strWidth = parseInt(document.controls("iviewerIemr").attribute("width"));
- var strHeight = parseInt(document.controls("iviewerIemr").attribute("height"));
- //alert(strWidth);
- //alert(strHeight);
- iviewerIemr.window.javaScript.setChartViewerSize(strWidth, strHeight);
- */ //yw iviewerIemr.window.javaScript.setChartViewerSize(strWidth, 687);
-
- //iviewerIemr.window.parent.document.controls("iviewerIemr").attribute("height") = "500px";
-
- //fCheckAppList(); // 전체 진료내역 중 사본신청된 내역만 check 되도록
-
- //2013/01/14 Start
- totprntcnt=0;
- model.setValue("/root/main/delivefactcnt", "");
- model.refresh();
- //2013/01/14 End
- }
- ]]>
- </script>
- </input>
- <button id="btn_hngnm" class="icon_search" style="left:355px; top:24px; width:16px; height:16px; ">
- <caption/>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fPatPopUp("2");
- ]]>
- </script>
- </button>
- <input id="ipt_hngnm" ref="/root/main/cond/hngnm" class="input_search" style="left:264px; top:22px; width:86px; height:19px; ">
- <script type="javascript" ev:event="onkeypress">
- <![CDATA[
- if (event.keyCode == 13)
- {
- inputEnterKey("btn_hngnm", "DOMActivate");
-
- }
- ]]>
- </script>
- </input>
- <caption id="caption17" class="search_name" style="left:204px; top:23px; width:79px; height:17px; vertical-align:middle; ">성명 :</caption>
- <caption id="lbl_PID" class="search_name" style="left:11px; top:23px; width:86px; height:17px; vertical-align:middle; ">등록번호 :</caption>
- <input id="input3" ref="/root/main/cond/rrgstno1" class="input_search" navindex="3" maxlength="6" style="left:559px; top:21px; width:72px; height:19px; ">
- <script type="javascript" ev:event="onmaxlength">
- <![CDATA[
- ]]>
- </script>
- </input>
- <caption id="caption8" class="search_name" style="left:447px; top:23px; width:112px; height:17px; vertical-align:middle; ">주민등록번호 :</caption>
- <secret id="input4" ref="/root/main/cond/rrgstno2" navindex="4" secretstartposition="1" appearance="secret" style="left:633px; top:21px; width:79px; height:19px; ">
- <script type="javascript" ev:event="onkeypress">
- <![CDATA[
- ]]>
- </script>
- </secret>
- <caption id="caption6" class="tit_1" visibility="hidden" style="left:0px; top:0px; width:106px; height:14px; ">사본신청/발급</caption>
- <caption id="caption1" class="search_name" visibility="hidden" style="left:750px; top:37px; width:112px; height:17px; vertical-align:middle; ">조회기간 :</caption>
- <caption id="caption2" visibility="hidden" style="left:944px; top:35px; width:15px; height:20px; ">~</caption>
- <input id="ipt_fromdd" ref="/root/main/cond/fromdd" visibility="hidden" inputtype="date" style="left:839px; top:35px; width:100px; height:19px; "/>
- <input id="ipt_todd" ref="/root/main/cond/todd" visibility="hidden" inputtype="date" style="left:961px; top:35px; width:100px; height:19px; "/>
- <button id="btn_profhist" class="btn1_letter2" visibility="hidden" style="left:1125px; top:36px; width:56px; height:22px; ">
- <caption>조회</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- //fGetEMRTestList("PRCP"); //검사결과
- fGetEMRPrcpList(); //검사결과
- fEmrImgRec();
- ]]>
- </script>
- </button>
- <line id="line4" visibility="hidden" style="x1:1112px; y1:33px; x2:1112px; y2:58px; border-color:#ffe4bb; border-left-style:solid; "/>
- <caption id="caption38" class="tit_2" style="left:0px; top:55px; width:121px; height:13px; ">이전사본발행내역</caption>
- <line id="line1" class="line_1" style="x1:0px; y1:70px; x2:425px; y2:70px; "/>
- <caption id="caption3" class="tit_2" style="left:0px; top:193px; width:126px; height:13px; ">사본발행 기본정보</caption>
- <caption id="caption9" class="cell_1" style="left:5px; top:213px; width:64px; height:47px; vertical-align:middle; ">
- <![CDATA[사본발행
- 신청인]]>
- </caption>
- <caption id="caption4" class="cell_1" style="left:314px; top:213px; width:67px; height:47px; vertical-align:middle; ">
- <![CDATA[위임장/
- 동의서]]>
- </caption>
- <line id="line2" class="line_1" style="x1:0px; y1:207px; x2:425px; y2:207px; "/>
- <select1 id="rdo_trustyn" ref="/root/main/appinfo/copyinfo/trustyn" appearance="full" cellspacing="10" cols="1" vcellspacing="6" overflow="visible" style="left:382px; top:213px; width:39px; height:47px; text-align:center; border-style:none; ">
- <choices>
- <item>
- <label>유</label>
- <value>Y</value>
- </item>
- <item>
- <label>무</label>
- <value>N</value>
- </item>
- </choices>
- </select1>
- <caption id="caption5" class="cell_1" style="left:25px; top:165px; width:105px; height:21px; vertical-align:middle; ">사본발행목적</caption>
- <caption id="caption7" class="tit_2" style="left:0px; top:314px; width:126px; height:13px; ">사본발행 신청내역</caption>
- <button id="btn_in" class="btn_sw" group="tab" style="left:357px; top:308px; width:67px; height:22px; ">
- <caption>입원</caption>
- <toggle case="case2" ev:event="onclick"/>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fClikInTab();
- ]]>
- </script>
- </button>
- <switch id="swc_prof" style="left:0px; top:329px; width:425px; height:267px; ">
- <case id="out">
- <datagrid id="grd_outpat" nodeset="/root/main/outpathistlist/outpathistlist" caption="V^pid^cretno^진료일^orddeptcd^진료과^orddrid^진료의^내원구분" colsep="^" colwidth="35, 0, 0, 85, 0, 117, 0, 104, 61" mergecellsfixedrows="bycolrec" rowsep="|" style="left:1px; top:28px; width:420px; height:239px; ">
- <col checkvalue="Y,N" ref="chk" type="checkbox"/>
- <col ref="pid"/>
- <col ref="cretno"/>
- <col ref="orddd" format="yyyy-mm-dd"/>
- <col ref="orddeptcd"/>
- <col ref="orddeptnm" type="output"/>
- <col ref="orddrid"/>
- <col ref="orddrnm"/>
- <col disabled="true" ref="ordtype" type="combo">
- <choices>
- <item>
- <label>외래</label>
- <value>O</value>
- </item>
- <item>
- <label>건진</label>
- <value>S</value>
- </item>
- <item>
- <label>DSC</label>
- <value>D</value>
- </item>
- </choices>
- </col>
- </datagrid>
- <shape id="roundrect5" class="roundrect_btnset" appearance="roundrect" ellipsewidth="20" ellipseheight="20" style="left:0px; top:2px; width:315px; height:25px; background-color:#f2fafe; border-color:#7cbbdd; "/>
- <caption id="caption15" class="cell_1" style="left:4px; top:4px; width:105px; height:21px; vertical-align:middle; ">종이차트 신청</caption>
- <select1 id="rdo_outchrtflag" ref="/root/main/otherinfo/outchrtflag" appearance="full" cellspacing="20" cols="2" overflow="visible" style="left:166px; top:5px; width:144px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>접은부분</label>
- <value>02</value>
- </item>
- <item>
- <label>전체</label>
- <value>01</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-select">
- <![CDATA[
- /*var outchrtflag = model.getValue("/root/main/otherinfo/outchrtflag");
- if(outchrtflag == null || outchrtflag == "") {
- group1.disabled = true;
- } else if(outchrtflag == "01" || outchrtflag == "02") {
- group1.disabled = false;
- }
- model.refresh();*/
- //fPaperList();
- ]]>
- </script>
- </select1>
- <shape id="roundrect7" class="roundrect_btnset" appearance="roundrect" ellipsewidth="20" ellipseheight="20" style="left:113px; top:3px; width:47px; height:23px; background-color:#f2fafe; border-color:#7cbbdd; "/>
- <output id="out_paperyn" ref="/root/main/paper/paperyn" style="left:130px; top:5px; width:25px; height:19px; "/>
- <button id="button9" class="btn1_letter4" style="left:339px; top:4px; width:80px; height:22px; ">
- <caption>기록조회</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fGetEMROutTestList(); //검사결과
- fEmrImgRec(); // html
- ]]>
- </script>
- </button>
- </case>
- <case id="in" selected="true">
- <caption id="caption21" class="tit_2" style="left:2px; top:1px; width:75px; height:13px; ">입원회차</caption>
- <datagrid id="grd_inapplist" nodeset="/root/main/inpathistlist/inpathistlist" caption="^입원일^퇴원일^진료과^전문의^내원구분^cretno^orddeptcd^atdoctid^indg" colsep="^" colwidth="30, 76, 76, 100, 60, 58, 0, 0, 0, 0" ellipsis="true" mergecellsfixedrows="bycolrec" rowsep="|" style="left:1px; top:20px; width:420px; height:111px; ">
- <col checkvalue="Y,N" ref="chk" type="checkbox"/>
- <col ref="indd" format="yyyy-mm-dd" style="left:235px; top:23px; width:72px; height:23px; text-align:center; "/>
- <col ref="dschdd" format="yyyy-mm-dd" style="text-align:center; ">
- <![CDATA[/>]]>
- </col>
- <col ref="orddeptnm"/>
- <col ref="atdoctnm"/>
- <col disabled="true" ref="ioflag" type="combo">
- <choices>
- <itemset nodeset="/root/init/ioflaglist/P0001">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </col>
- <col ref="cretno"/>
- <col ref="orddeptcd" visibility="hidden"/>
- <col ref="atdoctid" visibility="hidden"/>
- <col ref="indg" visibility="hidden"/>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- // 체크박스 선택시 오른쪽에 서식 조회되도록 함
- ]]>
- </script>
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
-
- //2009-11-19 강지훈 수정 : 스크롤 더블클릭했을때 미친듯이 날뜀 방지.
- if(grd_inapplist.isCell(event.target)) {
- fGetINChrtList(); // 중분류서식
- }
-
- // 더블클릭시 오른쪽 이미지 조회와 해당 서식이 같이 조회됨.
- //fEMRChrtList(); // 회차별 입원 차트 조회 /root/main/issinfo/emrapplist
-
-
-
-
-
-
- //fGetEMRTestList(); // 검사결과 : 기록과 함께 조회
- //fEmrImgRec(); // html
-
- // 구영상인경우
- /*var indd = model.getValue("/root/main/inpathistlist/inpathistlist["+ grd_inapplist.row +"]/indd");
- if(indd < parseInt("20081003")) {
- model.resetInstanceNode("/root/imgrec/iemr");
- iviewerIemr.window.javascript.resetInstance_EMR();
- model.setValue("/root/imgrec/iemr/pid", model.getValue("/root/main/inpathistlist/inpathistlist["+ grd_inapplist.row +"]/pid"));
- //model.setValue("/root/imgrec/iemr/orddeptcd", model.getValue("/root/main/inpathistlist/inpathistlist["+ grd_inapplist.row +"]/orddeptcd"));
- model.setValue("/root/imgrec/iemr/indd", model.getValue("/root/main/inpathistlist/inpathistlist["+ grd_inapplist.row +"]/indd"));
- model.setValue("/root/imgrec/iemr/ioflag", model.getValue("/root/main/inpathistlist/inpathistlist["+ grd_inapplist.row +"]/ioflag"));
-
- var iemrNode = instance1.selectSingleNode("/root/imgrec/iemr");
- iviewerIemr.window.javascript.searchChart(iemrNode);
- if (iviewerIemr.window.javascript.downloadChart() == true)
- {
- // 뷰어 모드 유지 기능 추가 - 20080417
- var ViewMode;
- ViewMode = iviewerIemr.model.getValue("/root/hidden/currentViewMode");
- if (ViewMode == null || ViewMode == "")
- {
- iviewerIemr.window.javascript.setupChart("ChartView");
- }
- else
- {
- iviewerIemr.window.javascript.setupChart(ViewMode);
- }
- }
- }*/
- ]]>
- </script>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var chk = grd_inapplist.valueMatrix(grd_inapplist.row, grd_inapplist.colRef("chk"));
- if(chk == "Y") {
- fMidIndxSet("Y");
- }
- else
- {
- fMidIndxSet("N");
- }
- ]]>
- </script>
- </datagrid>
- <line id="line6" class="line_1" style="x1:0px; y1:15px; x2:421px; y2:15px; "/>
- <caption id="caption10" class="tit_2" style="left:2px; top:133px; width:75px; height:13px; ">서식분류</caption>
- <datagrid id="grd_inpat" nodeset="/root/main/midissinfo/emrapplist" caption="V^회차^서식명^주치의" colsep="^" colwidth="30, 62, 206, 100" ellipsis="true" mergecellsfixedrows="bycolrec" rowsep="|" style="left:1px; top:147px; width:420px; height:115px; ">
- <col checkvalue="Y,N" ref="chk" type="checkbox"/>
- <col ref="indg" style="text-align:center; "/>
- <col ref="formnm"/>
- <col ref="atdoctnm"/>
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- //2009-11-19 강지훈 수정 : 스크롤 더블클릭했을때 미친듯이 날뜀 방지.
- if(grd_inpat.isCell(event.target)) {
- fDispMidForm(grd_inpat.row);
- }
- ]]>
- </script>
- </datagrid>
- </case>
- </switch>
- <!--<textarea id="txt_delivefact" ref="/root/main/appinfo/copyinfo/delivefact" style="left:0px; top:713px; width:424px; height:43px; "/>-->
- <textarea id="txt_delivefact" ref="/root/main/appinfo/copyinfo/delivefact" style="left:0px; top:715px; width:424px; height:43px; font-size:8pt; "/>
- <button id="btn_reappinfo" class="btn4_letter3" style="left:1px; top:759px; width:68px; height:22px; ">
- <caption>재신청</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fReCopyAppInfoSave();
- ]]>
- </script>
- </button>
- <button id="button3" class="btn4_letter3" style="left:145px; top:759px; width:68px; height:22px; ">
- <caption>초기화</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fAppCopyInfoClear();
- ]]>
- </script>
- </button>
- <button id="btn_update" class="btn4_letter6" style="left:216px; top:759px; width:104px; height:22px; ">
- <caption>신청내역수정</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
-
- rdo_appmanflag.disabled = false;
- rdo_trustyn.disabled = false;
- btn_issgoal.disabled = false;
- //btn_save.disabled = false;
- //btn_update.disabled = true;
- model.makeValue("/root/main/appinfo/copyinfo/status","u");
- fBefCopySave("UDT");
- //fCopySave("UPT");
- //model.refresh();
- ]]>
- </script>
- </button>
- <button id="btn_save" class="btn4_letter6" style="left:321px; top:759px; width:104px; height:22px; ">
- <caption>신청내역저장</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
-
- /*if(getNodesetCnt(model,"/root/main/issinfo/emrapplist") < 1 && getNodesetCnt(model,"/root/temp/issinfo/emrapplist") < 1){
- fSaveExcp();
- }else{
- fCopySave();
- }*/
-
- //fCopySave();
- fBefCopySave();
- ]]>
- </script>
- </button>
- <textarea id="textarea2" ref="/root/main/appinfo/copyinfo/memo" style="left:428px; top:681px; width:209px; height:75px; "/>
- <button id="button6" class="btn4_letter4" style="left:430px; top:759px; width:80px; height:22px; ">
- <caption>사유저장</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- if(grd_apphist.rows <= 1) return;
- if(grd_apphist.row < 1) return;
-
- var lrow = grd_apphist.row;
- model.makeValue("/root/send/reqdata/pid", model.getValue("/root/main/apphist/applist[" + lrow + "]/pid"));
- model.makeValue("/root/send/reqdata/copyseqno", model.getValue("/root/main/apphist/applist[" + lrow + "]/copyseqno"));
- model.makeValue("/root/send/reqdata/memo", model.getValue("/root/main/appinfo/copyinfo/memo"));
- if(submit("TXMRC03004")) {
- messageBox("비고저장", "I002");
- }
- ]]>
- </script>
- </button>
- <button id="button7" class="btn4_letter4" style="left:640px; top:759px; width:80px; height:22px; ">
- <caption>사본출력</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var pageCurrent = iviewerIemr.model.getValue("/root/main/chartinfo/pagecurrent");
- var pageCnt = iviewerIemr.model.getValue("/root/main/chartinfo/pagetotal");
- var prnShtno ="";
- if(pageCurrent == 0) prnShtno = pageCnt;
- else if(pageCurrent > 0) prnShtno = pageCurrent;
-
- mmbfGetHardCodeInfo("/root/send/reqdata","/root/hidden/inputbox", 1111); //의무기록사본발행수가코드
-
- var inputbox = model.getValue("/root/hidden/inputbox/hardcd/hardcd");//의무기록 사본발행 수가코드
-
- var ret = "";
-
- var totalcopies = parseInt(model.getValue("/root/temp2/appinfo/copyinfo/totalcopies"));
- for(var idx= 0; idx < totalcopies; idx++)
- {
- //출력메세지 미정의로 임시 막음(2009-06-30 박종훈)
- //ret = iviewerIemr.window.javaScript.printChart("SMMRC03000");
-
- //사본발급 출력서식의 하단에 사본발급용도(목적) 출력요청(2010-04-05 박종훈)
- //[요청번호 : 11336, TaskNo : 43930, 우선순위 : SY]
- var tmpissgoaletc = "";
- var issgoaletc = model.getValue("/root/main/appinfo/copyinfo/issgoaletc");
- var issgoaletcnm = model.getValue("/root/main/appinfo/copyinfo/issgoaletcnm");
-
- if (issgoaletc != "")
- {
- var issgoaletcnm = model.getValue("/root/main/appinfo/copyinfo/issgoaletcnm");
-
- if (issgoaletcnm == "")
- {
- tmpissgoaletc = "용도 : " + issgoaletc;
- }
- else
- {
- tmpissgoaletc = "용도 : " + issgoaletc + "(" + issgoaletcnm + ")";
- }
- }
- ret = iviewerIemr.window.javaScript.printChart("SMMRC03000", tmpissgoaletc);
- }
- //2013/02/21 Start
- for(var i=iviewerIemr.f_View.PageTotal; i>=1; i--){
- if(iviewerIemr.f_View.ThumbnailSelect(i) == true){
- printcount+=1;
- }
- }
- //2013/02/21 End
- if(ret == true)
- {
- if(inputbox == "Y")
- {
- //2013/01/14 Start 출력버튼 누를때마다 실시간으로 신청부수가 변경될 수 있도록 수정
- //2013/02/25 Start
- totprntcnt=parseInt(printcount);
- //totprntcnt+=parseInt(prnShtno);
- //2013/02/25 End
- if(totprntcnt==0){
- model.setValue("/root/temp2/appinfo/copyinfo/totalshrtno", prnShtno);
- }else{
- model.setValue("/root/temp2/appinfo/copyinfo/totalshrtno", totprntcnt);
- }
- model.refresh();
- button11.dispatch("DOMActivate");
- /*
- model.setValue("/root/temp2/appinfo/copyinfo/totalshrtno", prnShtno);
- model.refresh();
- button11.dispatch("DOMActivate");
- */
- //2013/01/14 End
- }
- else
- {
- if(grd_rcptlist.rows > 1) {
- if(prnShtno != "") {
- model.setValue("/root/main/rcptlist/rcptlist/shtno", prnShtno);
- model.setValue("/root/main/rcptlist/rcptlist/prcpqty", prnShtno);
- grd_rcptlist.refresh();
- }
- }
- }
- messageBox("출력", "I001");
- }
- else
- {
- messageBox("출력에", "E009");
- }
- /*
- //if(iviewerIemr.window.javaScript.printChart("1"))
- if(true)
- {
- messageBox("출력", "I001");
- if(grd_rcptlist.rows == 2) {
-
- fAddCalcorcdColumn(prnShtno);
- }
- else if(grd_rcptlist.rows > 2) {
- if(prnShtno != "") {
- //model.setValue("/root/main/rcptlist/rcptlist[" + lrow + "]/shtno", "1");
- var iRow = grd_rcptlist.rows - grd_rcptlist.fixedrows;
-
- var oldShtno = model.getValue("/root/main/rcptlist/rcptlist[" + iRow + "]/prcpqty");
-
- model.setValue("/root/main/rcptlist/rcptlist[" + iRow + "]/shtno", eval(prnShtno) + eval(oldShtno));
- model.setValue("/root/main/rcptlist/rcptlist[" + iRow + "]/prcpqty", eval(prnShtno) + eval(oldShtno));
- grd_rcptlist.refresh();
- }
- }
- }
- else
- {
- messageBox("출력에", "E009");
- }
- */
- ]]>
- </script>
- </button>
- <button id="button8" class="btn4_letter4" style="left:1111px; top:759px; width:80px; height:22px; ">
- <caption>수가입력</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
-
- mmbfGetHardCodeInfo("/root/send/reqdata","/root/hidden/inputbox", 1111); //의무기록사본발행수가코드
-
- var inputbox = model.getValue("/root/hidden/inputbox/hardcd/hardcd");//의무기록 사본발행 수가코드
-
- if(inputbox == "O")
- {
- if(model.getValue("/root/temp2/appinfo/copyinfo/totalshrtno") == "")
- {
- alert("매수를 입력하세요");
- return;
- }
-
- if(model.getValue("/root/temp2/appinfo/copyinfo/totalcopies") == "")
- {
- alert("부수를 입력하세요");
- return;
- }
- }
-
- fSave();
- ]]>
- </script>
- </button>
- <button id="btn_out" class="btn_sw" group="tab" selected="true" style="left:290px; top:308px; width:67px; height:22px; ">
- <caption>외래</caption>
- <toggle case="case2" ev:event="onclick"/>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fClikOutTab();
- ]]>
- </script>
- </button>
- <output id="ipt_sa" ref="/root/main/cond/sa" class="output_search" style="left:375px; top:22px; width:60px; height:19px; "/>
- <caption id="caption12" class="cell_1" style="left:5px; top:283px; width:86px; height:21px; vertical-align:middle; ">신청과</caption>
- <caption id="caption13" class="cell_1" style="left:225px; top:283px; width:77px; height:21px; vertical-align:middle; ">신청의사</caption>
- <datagrid id="grd_apphist" nodeset="/root/main/apphist/applist" caption="발행번호^status^pid^신청일자^apptm^appdeptcd^신청과^appdrid^신청의^신청인^appmanflag^발행목적^발행일자^emrordflag^emrorddeptcd^emrappcopies^delivefact^memo^cncldt^prntdt^orddd^cretno^총매수^부수^위임장^copyseqno^bmtappyn" colsep="^" colwidth="100, 0, 0, 81, 0, 0, 88, 0, 68, 80, 0, 96, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 55, 55, 48, 100, 0" ellipsis="true" mergecellsfixedrows="bycolrec" rowsep="|" style="left:0px; top:75px; width:425px; height:111px; ">
- <col ref="issno"/>
- <col ref="status"/>
- <col ref="pid"/>
- <col ref="appdd" format="yyyy-mm-dd"/>
- <col ref="apptm"/>
- <col ref="appdeptcd"/>
- <col ref="appdeptnm"/>
- <col ref="appdrid"/>
- <col ref="appdrnm"/>
- <col ref="appmannm"/>
- <col ref="appmanflag"/>
- <col disabled="true" ref="issgoalcd" type="combo" style="left:417px; top:23px; width:96px; height:23px; ">
- <choices>
- <itemset nodeset="/root/init/issgoalcd/M0332">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </col>
- <col ref="issdd" format="yyyy-mm-dd"/>
- <col ref="emrordflag"/>
- <col ref="emrorddeptcd"/>
- <col ref="emrappcopies"/>
- <col ref="delivefact"/>
- <col ref="memo"/>
- <col ref="cncldt"/>
- <col ref="prntdt"/>
- <col ref="orddd" visibility="hidden"/>
- <col ref="cretno" visibility="hidden"/>
- <col ref="totalcopies"/>
- <col ref="emrappcopies"/>
- <col ref="trustyn"/>
- <col ref="copyseqno" visibility="hidden"/>
- <col ref="bmtappyn" visibility="hidden"/>
- <col ref="issseqno" visibility="hidden"/>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
-
- if(grd_apphist.rows <= 1) return;
- if(grd_apphist.row < 1) return;
-
- var chk=false;
-
- for(var i=1; i<=getNodesetCnt(model,"/root/temp/hardcd"); i++){
- if(model.getValue("/root/temp/hardcd/hardcd["+i+"]/hardcd")==getUserInfo("dutplcecd")){
- chk=true;
- break;
- }
- }
-
- if(chk==true){
- btn_update.disabled=false;
- btn_save.disabled=true;
- }else if(model.getValue("/root/main/apphist/applist["+ grd_apphist.row +"]/issno")!="" && chk==false){
- btn_update.disabled=true;
- btn_save.disabled=true;
- }else if(model.getValue("/root/main/apphist/applist["+ grd_apphist.row +"]/issno")=="" && chk==false){
- btn_update.disabled=false;
- btn_save.disabled=true;
- }
-
- iviewerIemr.window.javaScript.cleanViewer();
- model.removeNodeset("/root/tmpinicert2/iniinfo");
-
- if(grd_apphist.isCell(event.target)){
-
- var idx = grd_apphist.row;
-
- //진료취소체크로직 추가.
- model.makeValue("/root/send/xhiststat/pid", model.getValue("/root/main/apphist/applist["+ idx +"]/pid"));
- model.makeValue("/root/send/xhiststat/orddd", model.getValue("/root/main/apphist/applist["+ idx +"]/orddd"));
- model.makeValue("/root/send/xhiststat/cretno", model.getValue("/root/main/apphist/applist["+ idx +"]/cretno"));
-
- submit("TRMRC03032");
-
- if( model.getValue("/root/temp4/xhiststat/orddd") != "" ){
- messageBox("선택하신 내역은 신청일에 원무접수 취소되었습니다. \n삭제 후 재신청하시기 바랍니다.","E");
- return;
- }
-
- if(model.getValue("/root/main/apphist/applist[" + idx + "]/issno") != "")
- {
- model.setValue("/root/temp2/appinfo/copyinfo/totalshrtno", model.getValue("/root/main/apphist/applist[" + idx + "]/totalcopies"));
- model.setValue("/root/temp2/appinfo/copyinfo/totalcopies", model.getValue("/root/main/apphist/applist[" + idx + "]/emrappcopies"));
- }
- else
- {
- model.setValue("/root/temp2/appinfo/copyinfo/totalshrtno", "10");
- model.setValue("/root/temp2/appinfo/copyinfo/totalcopies", "1");
- }
-
- model.setValue("/root/main/cond/copyseqno", model.getValue("/root/main/apphist/applist["+ grd_apphist.row +"]/copyseqno"));
- fAppInfoSearch(); // 사본발행 기본정보에만 붙고 저장된 서식 /root/main/appinfo/applist
- fOutAppInfoSearch(); // 외래진료
-
- fInAppInfoSearch(); // 입원진료
- fReqGetPaperYN("HIST"); // 종이차트
- fIssSearch(); // 수가
-
- fGetOutEmrFormList(); // 외래 사본list /root/temp/issinfo/emrapplist
- var outList = model.instance1.selectNodes("/root/main/outpathistlist/outpathistlist[chk = 'Y']");
- var inList = model.instance1.selectNodes("/root/main/inpathistlist/inpathistlist[chk = 'Y']");
-
- if(outList.length < 1 && model.getValue("/root/main/otherinfo/outchrtflag") == "") {
-
- // KNUH_20101124_박성호_start_의무기록 부서코드 가져오기
- var dutplcecd = getUserInfo("dutplcecd");
- //if(getUserInfo("dutplcecd") == "3230000000"){
- if(model.getValue("/root/temp/hardcd/hardcd[hardcd='" + dutplcecd + "']/hardcd") != "")
- {
- // KNUH_20101124_박성호_end
-
- if(inList.length > 0) {
- // switch
- btn_in.selected = true;
- model.toggle ("in" );
- group1.visible = false;
- swc_prof.attribute("height") = "450px";
- grd_inapplist.attribute("height") = "200px";
- caption10.attribute("top") = "225px";
- grd_inpat.attribute("top") = "240px";
- grd_inpat.attribute("height") = "200px";
- }
- }
- }
- fGetMidFormList(); // 중분류 사본list
-
- var outrsrvinfo = model.instance1.selectNodes("/root/main/outpathistlist/outpathistlist");
- if (outrsrvinfo.length > 0)
- {
- fGetEMROutTestList(); //검사결과
- }
-
- fDispAllForm();
-
- //fGetInEmrFormList(); // 입원 사본list /root/main/issinfo/emrapplist
-
- //fViewer(); // EMR 기록조회
-
- if(grd_rcptlist.rows == 2)
- grd_rcptlist.row = 1;
-
- var jobkindcd = getUserInfo("jobkindcd");
- if (jobkindcd == "1140" || jobkindcd == "1110")
- {
- fSetDisabled();
- }
- else
- {
- //2012/02/29 Start
- //btn_update.disabled = false;
- btn_reappinfo.disabled = false;
- //2012/02/29 End
- }
- model.setValue("/root/main/otherinfo/bmtappyn", model.getValue("/root/main/apphist/applist[" + idx + "]/bmtappyn"));
-
- //2012/03/13 Start
- before_delivefact = model.getValue("/root/main/appinfo/copyinfo/delivefact");
- //2012/03/13 End
- //2013/01/15 Start
- var delivefactcnt=model.getValue("/root/main/appinfo/copyinfo/delivefact").split("\n");
- model.setValue("/root/main/delivefactcnt", delivefactcnt.length-1);
- //2013/01/15 End
- model.makeValue("/root/main/otherinfo/addimageyn", "Y");
-
- model.refresh();
- //fGetEMRDrawList();
- //fEmrImgRec(); // html
-
- }
- ]]>
- </script>
- <script type="javascript" ev:event="onmousedown">
- <![CDATA[
- setPopupMenu("grd_apphist", false, "/root/popupmenu/menu/item", "name", "func");
- ]]>
- </script>
- <script type="javascript" ev:event="DOMFocusOut">
- <![CDATA[
- initPopupMenu();
- ]]>
- </script>
- </datagrid>
- <select1 id="cmb_emrorddeptcd" ref="/root/main/appinfo/copyinfo/appdeptcd" appearance="minimal" style="left:92px; top:284px; width:130px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/deptlist/dept">
- <label ref="depthngnm"/>
- <value ref="deptcd"/>
- </itemset>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- zsufGetOrdDeptDoctorList("none", getUserInfo("dutplceinstcd"), cmb_emrorddeptcd.value, "/root/init/userinfo/userlist", "usernm", "asc")//해당 주치의
- //20111031
- /*
- for(var i=1; i<=getNodesetCount("/root/init/userinfo/userlist/user"); i++){
- if(model.getValue("/root/init/userinfo/userlist/user["+i+"]/userid")=="EMR"){
- model.setValue("/root/init/userinfo/userlist/user["+i+"]/usernm", "EMR(사본신청)");
- }
- }
- */
- //20111031
- cmb_orddrid.refresh();
- //mmbfGetUserComboList("/root/send/reqdata", "/root/init/userlist" , cmb_orddeptcd.value, "0330");
-
- if(chk_anoinfo.value == "Y") param = "T";
- else param = "Y";
-
- fReqGetOutPatHistList(param);
- fReqGetInPatHistList(param);
-
- /*탭구분없이 외래 입원 전체조회때문에 막음
- if(btn_out.selected) {
-
- if(chk_anoinfo.value == "Y") param = "T";
- else param = "Y";
-
- fReqGetOutPatHistList(param);
-
- } else if(btn_in.selected) {
-
- if(chk_anoinfo.value == "Y") param = "T";
- else param = "Y";
- fReqGetInPatHistList(param);
- }*/
- ]]>
- </script>
- </select1>
- <select1 id="rdo_appmanflag" ref="/root/main/appinfo/copyinfo/appmanflag" appearance="full" cellspacing="8" cols="3" vcellspacing="5" overflow="visible" style="left:70px; top:214px; width:242px; height:45px; border-style:none; ">
- <choices>
- <item>
- <label>환자본인</label>
- <value>1</value>
- </item>
- <item>
- <label>직계가족</label>
- <value>2</value>
- </item>
- <item>
- <label>보험회사직원</label>
- <value>3</value>
- </item>
- <item>
- <label>대리인</label>
- <value>4</value>
- </item>
- <item>
- <label>기타</label>
- <value>9</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var sa = model.getValue("/root/main/cond/sa");
- var age = sa.substring(2, sa.length);
-
- var appmanflag = model.getValue("/root/main/appinfo/copyinfo/appmanflag");
- if(age < parseInt(14)) {
- if(appmanflag == "1") {
- messageBox("만 14세 미만 환자는 본인 항목을 체크", "E001");
- model.setValue("/root/main/appinfo/copyinfo/appmanflag", "");
- model.refresh();
- }
- }
-
- var deathyn = model.getValue("/root/main/paper/deathyn");
- if(deathyn == "Y") {
- if(appmanflag == "1") {
- messageBox("사망 환자는 본인 항목을 체크", "E001");
- model.setValue("/root/main/appinfo/copyinfo/appmanflag", "");
- model.refresh();
- }
- }
- fAppManNmSetting();
- ]]>
- </script>
- </select1>
- <select1 id="cmb_orddrid" ref="/root/main/appinfo/copyinfo/appdrid" appearance="minimal" style="left:303px; top:284px; width:117px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/userinfo/userlist/user[userid!=11111]">
- <label ref="usernm"/>
- <value ref="userid"/>
- </itemset>
- </choices>
- </select1>
- <input id="ipt_appmannm" ref="/root/main/appinfo/copyinfo/appmanetc" disabled="true" style="left:193px; top:238px; width:114px; height:19px; "/>
- <caption id="caption14" class="tit_2" style="left:430px; top:666px; width:131px; height:14px; ">비용 미수납사유</caption>
- <input id="ipt_issgoalnm" ref="/root/main/appinfo/copyinfo/issgoaletc" editable="false" style="left:92px; top:262px; width:153px; height:19px; ">
- <script type="javascript" ev:event="onmouseup">
- <![CDATA[
- var issgoaletccd = model.getValue("/root/main/appinfo/copyinfo/issgoaletccd");
-
- if(issgoaletccd == "")
- {
- messageBox("사본발행목적을 입력하실려면 왼쪽 사본발행목적 버튼을 클릭", "I008");
- return;
- }
- ]]>
- </script>
- </input>
- <input id="ipt_issgoaletc" ref="/root/main/appinfo/copyinfo/issgoaletcnm" disabled="true" style="left:247px; top:262px; width:174px; height:19px; "/>
- <caption id="caption24" class="tit_2" style="left:0px; top:699px; width:152px; height:13px; ">기타 상세신청내역</caption>
- <button id="button5" class="btn4_letter4" style="left:1030px; top:759px; width:80px; height:22px; ">
- <caption>처방이력</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fPopUpPrcpHist();
- ]]>
- </script>
- </button>
- <caption id="caption20" class="tit_2" style="left:640px; top:666px; width:132px; height:13px; ">사본발행 수가입력</caption>
- <button id="btn_issgoal" class="btn2_letter6" style="left:5px; top:262px; width:86px; height:19px; ">
- <caption>사본발행목적</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fIssGoalPopUp();
- ]]>
- </script>
- </button>
- <button id="btn_help" class="btn2_letter7" style="left:128px; top:187px; width:97px; height:19px; ">
- <caption>구비서류 도움말</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- setParameter("SPMRC02600_param","A");
- modal("SPMRC02600");
- ]]>
- </script>
- </button>
- <datagrid id="grd_tmprcptlist" nodeset="/root/temp2/rcptlist/rcptlist" visibility="hidden" caption="상태^수가코드^수가명칭^매수^단가^수납상태^prcpdd^prcpno^prcphistno^pid^orddd^cretno^prcpqty^oldshtno^prcpcd^issseqno^copyseqno^issno^부수^oldprcptims^prcpflag^defyn" colsep="^" colwidth="84, 146, 176, 50, 100, 100, 62, 66, 71, 68, 65, 100, 100, 100, 100, 100, 100, 100, 50, 100, 100, 100" dataheight="25" mergecellsfixedrows="bycolrec" rowheader="update" rowsep="|" style="left:440px; top:350px; width:554px; height:75px; ">
- <col disabled="true" ref="prcpstatcd" type="combo" style="text-align:center; ">
- <choices>
- <itemset nodeset="/root/init/prcpstatcd/M0011">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </col>
- <col ref="calcscorcd"/>
- <col ref="calcscornm"/>
- <col ref="shtno" type="input" format="#,###" style="text-align:right; "/>
- <col ref="unitcost" visibility="hidden"/>
- <col ref="rcptyn" visibility="hidden"/>
- <col ref="prcpdd" visibility="hidden"/>
- <col ref="prcpno" visibility="hidden"/>
- <col ref="prcphistno" visibility="hidden"/>
- <col ref="pid" visibility="hidden"/>
- <col ref="orddd" visibility="hidden"/>
- <col ref="cretno" visibility="hidden"/>
- <col ref="prcpqty" visibility="hidden"/>
- <col ref="oldshtno" visibility="hidden"/>
- <col ref="prcpcd" visibility="hidden"/>
- <col ref="issseqno" visibility="hidden"/>
- <col ref="copyseqno" visibility="hidden"/>
- <col ref="issno" visibility="hidden"/>
- <col ref="prcptims" type="input" style="text-align:right; "/>
- <col ref="oldprcptims" visibility="hidden"/>
- <col ref="prcpflag" visibility="hidden"/>
- <col ref="defyn" visibility="hidden"/>
- </datagrid>
- <datagrid id="grd_rcptlist" nodeset="/root/main/rcptlist/rcptlist" caption="상태^수가코드^수가명칭^매수^단가^수납상태^prcpdd^prcpno^prcphistno^pid^orddd^cretno^prcpqty^oldshtno^prcpcd^issseqno^copyseqno^issno^부수^oldprcptims^prcpflag^defyn" colsep="^" colwidth="84, 146, 176, 50, 100, 100, 62, 66, 71, 68, 65, 100, 100, 100, 100, 100, 100, 100, 50, 100, 100, 100" dataheight="25" mergecellsfixedrows="bycolrec" rowheader="update" rowsep="|" style="left:640px; top:681px; width:554px; height:75px; ">
- <col disabled="true" ref="prcpstatcd" type="combo" style="text-align:center; ">
- <choices>
- <itemset nodeset="/root/init/prcpstatcd/M0011">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </col>
- <col ref="calcscorcd"/>
- <col ref="calcscornm"/>
- <col ref="shtno" type="input" format="#,###" style="text-align:right; "/>
- <col ref="unitcost" visibility="hidden"/>
- <col ref="rcptyn" visibility="hidden"/>
- <col ref="prcpdd" visibility="hidden"/>
- <col ref="prcpno" visibility="hidden"/>
- <col ref="prcphistno" visibility="hidden"/>
- <col ref="pid" visibility="hidden"/>
- <col ref="orddd" visibility="hidden"/>
- <col ref="cretno" visibility="hidden"/>
- <col ref="prcpqty" visibility="hidden"/>
- <col ref="oldshtno" visibility="hidden"/>
- <col ref="prcpcd" visibility="hidden"/>
- <col ref="issseqno" visibility="hidden"/>
- <col ref="copyseqno" visibility="hidden"/>
- <col ref="issno" visibility="hidden"/>
- <col ref="prcptims" type="input" style="text-align:right; "/>
- <col ref="oldprcptims" visibility="hidden"/>
- <col ref="prcpflag" visibility="hidden"/>
- <col ref="defyn" visibility="hidden"/>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- fChangedGridRow();
- fChangedAppCopies();
- ]]>
- </script>
- <script type="javascript" ev:event="onmousedown">
- <![CDATA[
- // 2010.04.26. 이은영 -> 컬러복사 수가 적용
- var colorcalcscoryn = model.getValue("/root/hidden/colorcalcscoryn/hardcd/hardcd");
- if (colorcalcscoryn == "Y") {
- fMouseRghtBtnPopup(grd_rcptlist); // 우클릭 메뉴 보기..
- }
- ]]>
- </script>
- </datagrid>
- <input id="ipt_emrappcopies" ref="/root/temp2/appinfo/copyinfo/totalcopies" class="input_default" format="#,###" style="left:950px; top:759px; width:40px; height:19px; text-align:right; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- //inputEnterKey("button11", "DOMActivate");
- if(fChangedAppCopies2() == true)
- {
- fSugaCalc();
- fChangedSugaGridRow();
- //fChangedGridRow2();
- //fChangedAppCopies();
- //fChangeStatus();
- model.refresh();
- }
- ]]>
- </script>
- <script type="javascript" ev:event="onkeyup">
- <![CDATA[
- inputEnterKey("button11", "DOMActivate");
- ]]>
- </script>
- </input>
- <caption id="caption28" class="cell_1" style="left:808px; top:759px; width:57px; height:19px; vertical-align:middle; ">신청부수</caption>
- <caption id="caption29" class="cell_1" style="left:993px; top:759px; width:25px; height:19px; vertical-align:middle; ">부</caption>
- <button id="btn_crtfct" class="btn2_letter3" style="left:1141px; top:661px; width:53px; height:19px; ">
- <caption>증명서</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- //2012/03/14 Start
- for(var i=1; i<=getNodesetCnt(model,"/root/temp/hardcd2"); i++){
- if(model.getValue("/root/temp/hardcd2/hardcd["+i+"]/hardcd")!=getUserInfo("dutplceinstcd")){
- issnoYN = "";
- break;
- }
- }
- //2012/03/14 End
- fPrnt("crtfct");
- ]]>
- </script>
- </button>
- <button id="btn_colorcalcscoryn" class="btn2_letter6" visibility="hidden" style="left:770px; top:661px; width:86px; height:19px; ">
- <caption>컬러수가추가</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fAddColorCalcScor()
- ]]>
- </script>
- </button>
- <button id="btn_cnfm" class="btn2_letter3" style="left:985px; top:661px; width:53px; height:19px; ">
- <caption>승낙서</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fPrnt("cnfm");
- ]]>
- </script>
- </button>
- <button id="btn_smaer00800" class="btn2_letter4" style="left:956px; top:10px; width:64px; height:19px; ">
- <caption>검사결과</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fExamRultListCall();
- ]]>
- </script>
- </button>
- <button id="btn_smmri00400" class="btn2_letter4" style="left:1021px; top:10px; width:64px; height:19px; ">
- <caption>통합기록</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fMedirecListCall();
- ]]>
- </script>
- </button>
- <button id="button1" class="btn2_letter5" style="left:793px; top:10px; width:75px; height:19px; ">
- <caption>현위치조회</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fChrtRultListCall();
- ]]>
- </script>
- </button>
- <button id="button2" class="btn2_letter6" style="left:869px; top:10px; width:86px; height:19px; ">
- <caption>차트대출이력</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fChrtHistRultListCall();
- ]]>
- </script>
- </button>
- <object id="obj_cvrt" clsid="{341619d2-2ef9-4cac-a40e-b330c4c5f004}" style="left:740px; top:50px; width:10px; height:10px; "/>
- <datagrid id="grd_outapplist" nodeset="/root/temp/issinfo/emrlist" caption="챠트구분^진료구분^진료일자^퇴원일자^진료과^주치의^기록일자^서식명^매수^서식코드^기록번호^진료과코드^진료의id^testflag^pid^cretno^midindxseq" colsep="^" colwidth="65, 70, 80, 72, 80, 87, 86, 40, 100, 87, 100, 100, 93, 100, 100, 100, 100" dataheight="24" mergecellsfixedrows="bycolrec" rowheader="update" rowsep="|" style="left:465px; top:85px; width:334px; height:85px; ">
- <col disabled="true" ref="chrtflag" type="combo" style="text-align:center; ">
- <choices>
- <item>
- <label>종이</label>
- <value>P</value>
- </item>
- <item>
- <label>영상</label>
- <value>I</value>
- </item>
- <item>
- <label>EMR</label>
- <value>E</value>
- </item>
- </choices>
- </col>
- <col disabled="true" ref="ioflag" type="combo">
- <choices>
- <itemset nodeset="/root/init/ioflaglist/P0001">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </col>
- <col ref="orddd" format="yyyy-mm-dd" style="left:155px; top:23px; width:80px; height:23px; text-align:center; "/>
- <col ref="dschdd" format="yyyy-mm-dd" style="left:235px; top:23px; width:72px; height:23px; text-align:center; "/>
- <col ref="orddeptnm" format="yyyy-mm-dd" style="text-align:center; ">
- <![CDATA[/>]]>
- </col>
- <col ref="atdoctnm"/>
- <col ref="formrecdt"/>
- <col ref="formnm" visibility="hidden" format="yyyy-mm-dd hh:nn:ss" style="text-align:center; "/>
- <col ref="shtno"/>
- <col ref="formcd" style="text-align:center; "/>
- <col ref="reckeyno" visibility="hidden"/>
- <col ref="orddeptcd" visibility="hidden"/>
- <col ref="atdoctid" visibility="hidden"/>
- <col ref="testflag" visibility="hidden"/>
- <col ref="pid" visibility="hidden"/>
- <col ref="cretno" visibility="hidden"/>
- <col ref="midindxseq" visibility="hidden"/>
- <script type="javascript" ev:event="onmousedown">
- <![CDATA[
- if(grd_emrapplist.isCell(event.target) && (grd_emrapplist.mouserow >= grd_emrapplist.fixedrows))
- {
- setPopupMenu("grd_emrapplist", false, "/root/init/emrapplistclik/mouserght", "label", "func");
- }
- ]]>
- </script>
- <script type="javascript" ev:event="DOMFocusOut">
- <![CDATA[
- window.setPopupMenu(false);
- ]]>
- </script>
- </datagrid>
- <button id="button4" class="btn2_letter5" visibility="hidden" style="left:630px; top:50px; width:75px; height:19px; ">
- <caption>병동위임장</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- //exeReportPreview("RPMRC03000", "XMLSTR", "", "", "true", "", "", "", "", "true");
- //if(model.getValue("/root/main/cond/dschdd") == "99991231")
- exeReportPreview("RPMRC03000", "XMLSTR", "", "", "true", "", "", "", "", "true");
- ]]>
- </script>
- </button>
- <select id="chk_anoinfo" ref="/root/main/otherinfo/anoinfo" overflow="visible" appearance="full" checkvalue="Y,N" style="left:220px; top:310px; width:70px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>타과기록</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- /* 20111121 클릭시 외래 및 입원을 모두 불러 올 수 있도록 수정
- if(btn_out.selected) {
-
- if(chk_anoinfo.value == "Y") param = "T";
- else param = "Y";
-
- fReqGetOutPatHistList(param);
-
- } else if(btn_in.selected) {
-
- if(chk_anoinfo.value == "Y") param = "T";
- else param = "Y";
- fReqGetInPatHistList(param);
- }
- */
-
- if(chk_anoinfo.value == "Y"){
- param = "T";
- }else{
- param = "Y";
- }
- fReqGetOutPatHistList(param);
- fReqGetInPatHistList(param);
-
- ]]>
- </script>
- </select>
- <datagrid id="datagrid1" nodeset="/root/prthist" visibility="hidden" caption="caption1^caption2^caption3^caption4^caption5^caption6^caption7^caption8^caption9^caption10" colsep="^" colwidth="10, 10, 10, 10, 10, 10, 10, 10, 10, 10" mergecellsfixedrows="bycolrec" rowheader="update" rowsep="|" style="left:440px; top:260px; width:125px; height:65px; ">
- <col ref="pid"/>
- <col ref="signno"/>
- <col ref="reckind"/>
- <col ref="readprtflag"/>
- <col ref="formcd"/>
- <col ref="signflag"/>
- <col ref="orddd"/>
- <col ref="chosflag"/>
- <col ref="refusge"/>
- <col ref="refremark"/>
- </datagrid>
- <datagrid id="grd_emrapplist" nodeset="/root/main/issinfo/emrapplist" caption="V^회차^서식명^주치의^chrtflag^ioflag^orddd^indd^dschdd^orddeptnm^formrecdt^shtno^formcd^reckeyno^orddeptcd^atdoctid" colsep="^" colwidth="30, 80, 190, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" mergecellsfixedrows="bycolrec" rowsep="|" style="left:440px; top:180px; width:410px; height:70px; ">
- <col checkvalue="Y,N" ref="chk" type="checkbox"/>
- <col ref="indg"/>
- <col ref="formnm"/>
- <col ref="atdoctnm"/>
- <col disabled="true" ref="chrtflag" type="combo" visibility="hidden" style="text-align:center; ">
- <choices>
- <item>
- <label>종이</label>
- <value>P</value>
- </item>
- <item>
- <label>영상</label>
- <value>I</value>
- </item>
- <item>
- <label>EMR</label>
- <value>E</value>
- </item>
- </choices>
- </col>
- <col disabled="true" ref="ioflag" type="combo" visibility="hidden">
- <choices>
- <itemset nodeset="/root/init/common/ioflaglist/P0001">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </col>
- <col ref="orddd" format="yyyy-mm-dd" style="text-align:center; "/>
- <col ref="indd" format="yyyy-mm-dd" style="left:235px; top:23px; width:72px; height:23px; text-align:center; "/>
- <col ref="dschdd" format="yyyy-mm-dd" style="text-align:center; ">
- <![CDATA[/>]]>
- </col>
- <col ref="orddeptnm"/>
- <col ref="formrecdt" visibility="hidden" format="yyyy-mm-dd hh:nn:ss" style="text-align:center; "/>
- <col ref="shtno" style="text-align:center; "/>
- <col ref="formcd" visibility="hidden"/>
- <col ref="reckeyno" visibility="hidden"/>
- <col ref="orddeptcd" visibility="hidden"/>
- <col ref="atdoctid" visibility="hidden"/>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- var chk = grd_emrapplist.valueMatrix(grd_emrapplist.row, grd_emrapplist.colRef("chk"));
- if(chk == "Y") {
- //fInEMRChrtListSelect();
- model.setValue("/root/main/issinfo/emrapplist["+ grd_emrapplist.row +"]/chk", "Y");
- }
- model.refresh();
- ]]>
- </script>
- </datagrid>
- <caption id="caption22" class="tit_1" style="left:190px; top:10px; width:106px; height:13px; ">사본발행신청</caption>
- <button id="btn_pathist" class="btn2_letter4" visibility="visible" style="left:728px; top:10px; width:64px; height:19px; ">
- <caption>수진이력</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fGetPatHist();
- ]]>
- </script>
- </button>
- <button id="button10" class="btn2_letter3" style="left:858px; top:661px; width:53px; height:19px; ">
- <caption>초기화</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- grd_apphist.dispatch("onclick");
- ]]>
- </script>
- </button>
- <input id="input1" ref="/root/temp2/appinfo/copyinfo/totalshrtno" class="input_default" format="#,###" style="left:870px; top:759px; width:40px; height:19px; text-align:right; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(fChangedAppCopies2() == true)
- {
- fSugaCalc();
- fChangedSugaGridRow()
- //fChangedGridRow2();
- //fChangedAppCopies();
- //fChangeStatus();
- //2013/01/15 Start
- totprntcnt=parseInt(model.getValue("/root/temp2/appinfo/copyinfo/totalshrtno"));
- //2013/01/15 End
- model.refresh();
- }
- ]]>
- </script>
- <script type="javascript" ev:event="onkeyup">
- <![CDATA[
- inputEnterKey("button11", "DOMActivate");
- //2013/01/15 Start
- totprntcnt=parseInt(model.getValue("/root/temp2/appinfo/copyinfo/totalshrtno"));
- //2013/01/15 End
- ]]>
- </script>
- </input>
- <caption id="caption11" style="left:940px; top:756px; width:10px; height:25px; ">/</caption>
- <button id="button11" class="btn4_letter2" visibility="hidden" style="left:720px; top:759px; width:56px; height:22px; ">
- <caption>계산</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- if(fChangedAppCopies2() == true)
- {
- fSugaCalc();
- fChangedSugaGridRow();
- //fChangedGridRow2();
- //fChangedAppCopies();
- //fChangeStatus();
- model.refresh();
- }
-
- ]]>
- </script>
- </button>
- <caption id="caption16" class="cell_1" style="left:913px; top:759px; width:25px; height:19px; vertical-align:middle; ">매</caption>
- <button id="button12" class="btn4_letter6" style="left:321px; top:692px; width:104px; height:22px; ">
- <caption>상세내역추가</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fAddDetailContents();
- ]]>
- </script>
- </button>
- <textarea id="txt_rcptpossynmsg" ref="/root/main/rcptpossynmsg" overflow="hidden" editable="false" style="left:170px; top:48px; width:255px; height:21px; font-size:11pt; font-weight:bold; color:#ff0000; text-align:right; background-color:#ffff00; border-color:#ff0000; border-width:2px; "/>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
-
- ]]>
- </script>
- <caption id="caption18" visibility="hidden" style="left:190px; top:698px; width:85px; height:15px; ">신청내역건수:</caption>
- <output id="output1" ref="/root/main/delivefactcnt" visibility="hidden" style="left:270px; top:693px; width:30px; height:19px; "/>
- <object id="f_View" clsid="{26a5a05a-2193-4ee2-a064-f04d3c37705a}" style="left:0px; top:0px; width:0px; height:0px; "/>
- <button id="btn_recepinfo" class="btn2_letter3" style="left:929px; top:661px; width:53px; height:19px; ">
- <caption>안내장</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- if(grd_apphist.row < 1){
- messageBox("환자를 먼저", "C002");
- return;
- }
-
- var sIssuno = model.getValue("/root/main/apphist/applist["+ grd_apphist.row +"]/issno");
-
- if(sIssuno == "" || sIssuno == null){
- messageBox("수가입력이 되지 않았습니다. 수가입력 버튼을", "C002");
- } else{
- fPrnt("recepinfo");
- }
-
- ]]>
- </script>
- </button>
- <bool id="chk_recepinfo" checkvalue="Y,N" ref="/root/main/cond/recepinfochk" style="left:906px; top:661px; width:30px; height:20px; "/>
- <button id="button15" class="btn2_letter3" visibility="hidden" style="left:1086px; top:10px; width:53px; height:19px; ">
- <caption>위임장</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- exeReportPreview("RFM0000001", "XMLSTR", "", "", "true", "", "", "", "", "true");
- ]]>
- </script>
- </button>
- <button id="button14" class="btn2_letter3" visibility="hidden" style="left:1140px; top:10px; width:53px; height:19px; ">
- <caption>동의서</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- exeReportPreview("RFM0000002", "XMLSTR", "", "", "true", "", "", "", "", "true");
- ]]>
- </script>
- </button>
- </xhtml:body>
- </xhtml:html>
|