SMMNP00400_마취메인.xfdl 172 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FDL version="1.5">
  3. <TypeDefinition url="..\..\..\default_typedef.xml"/>
  4. <Form id="SMMNP00400" position="absolute 0 0 1195 805" titletext="마취간호 메인" oninit="SMMNP00400_oninit" onload="SMMNP00400_onload">
  5. <Layouts>
  6. <Layout>
  7. <Div position="absolute 0 13 1195 759" id="group3" scrollbars="autoboth" anchor="all">
  8. <Layouts>
  9. <Layout>
  10. <Grid position="absolute 1 110 1194 720" id="grd_excel" class="datagrid2" visible="false" binddataset="ds_main_oppatinfoexcel" anchor="default">
  11. <Formats>
  12. <Format id="default">
  13. <Columns>
  14. <Column size="100"/>
  15. <Column size="100"/>
  16. <Column size="100"/>
  17. <Column size="100"/>
  18. <Column size="100"/>
  19. <Column size="100"/>
  20. <Column size="100"/>
  21. <Column size="100"/>
  22. <Column size="100"/>
  23. <Column size="100"/>
  24. <Column size="100"/>
  25. <Column size="100"/>
  26. <Column size="100"/>
  27. <Column size="100"/>
  28. <Column size="100"/>
  29. <Column size="100"/>
  30. <Column size="100"/>
  31. <Column size="100"/>
  32. <Column size="100"/>
  33. <Column size="100"/>
  34. <Column size="100"/>
  35. <Column size="100"/>
  36. <Column size="100"/>
  37. <Column size="100"/>
  38. <Column size="100"/>
  39. <Column size="100"/>
  40. <Column size="100"/>
  41. <Column size="100"/>
  42. <Column size="100"/>
  43. <Column size="100"/>
  44. <Column size="100"/>
  45. <Column size="100"/>
  46. <Column size="50"/>
  47. <Column size="100"/>
  48. <Column size="100"/>
  49. <Column size="100"/>
  50. <Column size="100"/>
  51. <Column size="100"/>
  52. <Column size="100"/>
  53. <Column size="100"/>
  54. <Column size="100"/>
  55. <Column size="100"/>
  56. <Column size="100"/>
  57. <Column size="100"/>
  58. <Column size="100"/>
  59. <Column size="100"/>
  60. <Column size="100"/>
  61. <Column size="100"/>
  62. <Column size="100"/>
  63. </Columns>
  64. <Rows>
  65. <Row size="24" band="head"/>
  66. <Row size="24"/>
  67. </Rows>
  68. <Band id="head">
  69. <Cell text="상태"/>
  70. <Cell col="1" text="구분"/>
  71. <Cell col="2" text="재수술"/>
  72. <Cell col="3" text="수술방"/>
  73. <Cell col="4" text="수술일자"/>
  74. <Cell col="5" text="소요시간"/>
  75. <Cell col="6" text="집도과"/>
  76. <Cell col="7" text="병실"/>
  77. <Cell col="8" text="환자명"/>
  78. <Cell col="9" text="등록번호"/>
  79. <Cell col="10" text="S/A"/>
  80. <Cell col="11" text="체중(kg)"/>
  81. <Cell col="12" text="키(cm)"/>
  82. <Cell col="13" text="진단명(한글)"/>
  83. <Cell col="14" text="진단명(영문)"/>
  84. <Cell col="15" text="수술후진단명"/>
  85. <Cell col="16" text="수술명(한글)"/>
  86. <Cell col="17" text="수술명(영문)"/>
  87. <Cell col="18" text="수술후수술명"/>
  88. <Cell col="19" text="집도의"/>
  89. <Cell col="20" text="마취의"/>
  90. <Cell col="21" text="마취&#10;종류"/>
  91. <Cell col="22" text="병동출발일시"/>
  92. <Cell col="23" text="대기실도착일시"/>
  93. <Cell col="24" text="환자미팅시간"/>
  94. <Cell col="25" text="입실시간"/>
  95. <Cell col="26" text="퇴실시간"/>
  96. <Cell col="27" text="총수술시간"/>
  97. <Cell col="28" text="총수술(분)"/>
  98. <Cell col="29" text="집도의입실시간"/>
  99. <Cell col="30" text="집도의퇴실시간"/>
  100. <Cell col="31" text="집도의총재실시간"/>
  101. <Cell col="32" text="총재실(분)"/>
  102. <Cell col="33" text="수술시작시간"/>
  103. <Cell col="34" text="수술종료시간"/>
  104. <Cell col="35" text="마취시작시간"/>
  105. <Cell col="36" text="마취종료시간"/>
  106. <Cell col="37" text="취소사유"/>
  107. <Cell col="38" text="협진"/>
  108. <Cell col="39" text="대기실기록간호사"/>
  109. <Cell col="40" text="수술실기록간호사"/>
  110. <Cell col="41" text="입원일자"/>
  111. <Cell col="42" text="퇴원일자"/>
  112. <Cell col="43" text="수술스케일"/>
  113. <Cell col="44" text="내시경"/>
  114. <Cell col="45" text="수술료"/>
  115. <Cell col="46" text="마취료"/>
  116. <Cell col="47" text="SCRUB"/>
  117. <Cell col="48" text="CIR"/>
  118. </Band>
  119. <Band id="body">
  120. <Cell text="bind:opstatcdnm"/>
  121. <Cell col="1" text="bind:opflagcdnm"/>
  122. <Cell col="2" text="bind:reopflag"/>
  123. <Cell col="3" text="bind:oproomcdnm"/>
  124. <Cell col="4" text="bind:fstrgstdt"/>
  125. <Cell col="5" text="bind:opusetm" mask="hh:nn"/>
  126. <Cell col="6" text="bind:depthngnm"/>
  127. <Cell col="7" text="bind:oppatflagnm"/>
  128. <Cell col="8" text="bind:hngnm"/>
  129. <Cell col="9" text="bind:pid"/>
  130. <Cell col="10" text="bind:sa"/>
  131. <Cell col="11" text="bind:bdwt"/>
  132. <Cell col="12" text="bind:bdht"/>
  133. <Cell col="13" text="bind:diagcdnm"/>
  134. <Cell col="14" text="bind:diagengnm"/>
  135. <Cell col="15" text="bind:afdiagcdnm"/>
  136. <Cell col="16" text="bind:opcdknm"/>
  137. <Cell col="17" text="bind:opcdenm"/>
  138. <Cell col="18" text="bind:afopnm"/>
  139. <Cell col="19" text="bind:perfdridnm1"/>
  140. <Cell col="20" text="bind:perfdridnm2"/>
  141. <Cell col="21" text="bind:anstmthdcdnm"/>
  142. <Cell col="22" text="bind:wardstarttm" mask="yyyy-mm-dd hh:nn"/>
  143. <Cell col="23" text="bind:waitarrivetm" mask="yyyy-mm-dd hh:nn"/>
  144. <Cell col="24" text="bind:anstmeettime" mask="yyyy-mm-dd hh:nn"/>
  145. <Cell col="25" text="bind:intm" mask="yyyy-mm-dd hh:nn"/>
  146. <Cell col="26" text="bind:dschtm" mask="yyyy-mm-dd hh:nn"/>
  147. <Cell col="27" text="bind:totoptm"/>
  148. <Cell col="28" text="bind:totopmin"/>
  149. <Cell col="29" text="bind:perfintm" mask="yyyy-mm-dd hh:nn"/>
  150. <Cell col="30" text="bind:perfdschtm" mask="yyyy-mm-dd hh:nn"/>
  151. <Cell col="31" text="bind:totperftom"/>
  152. <Cell col="32" text="bind:totperfmin"/>
  153. <Cell col="33" text="bind:opstarttm" mask="yyyy-mm-dd hh:nn"/>
  154. <Cell col="34" text="bind:opendtm" mask="yyyy-mm-dd hh:nn"/>
  155. <Cell col="35" text="bind:anststarttm" mask="yyyy-mm-dd hh:nn"/>
  156. <Cell col="36" text="bind:anstendtm" mask="yyyy-mm-dd hh:nn"/>
  157. <Cell col="37" text="bind:cnclresn"/>
  158. <Cell col="38" text="bind:cnstopflag"/>
  159. <Cell col="39" text="bind:prestaynursenm"/>
  160. <Cell col="40" text="bind:preopnursenm"/>
  161. <Cell col="41" text="bind:indd" mask="yyyy-mm-dd"/>
  162. <Cell col="42" text="bind:dschdd" mask="yyyy-mm-dd"/>
  163. <Cell col="43" text="bind:opscale"/>
  164. <Cell col="44" text="bind:escopeeqmtuseyn"/>
  165. <Cell col="45" text="bind:opcost"/>
  166. <Cell col="46" text="bind:anstcost"/>
  167. <Cell col="47" text="bind:scrub"/>
  168. <Cell col="48" text="bind:cir"/>
  169. </Band>
  170. </Format>
  171. </Formats>
  172. </Grid>
  173. <Tab position="absolute 0 83 1195 738" id="switch1" anchor="all" onchanged="group3_switch1_onchanged" onlbuttondown="group3_switch1_onlbuttondown" style="buttonpadding:4 16 4 16;">
  174. <Tabpages>
  175. <Tabpage text="수술스케쥴" id="opmain">
  176. <Layouts>
  177. <Layout>
  178. <Grid position="absolute 0 0 1195 628" id="grd_oppatlist" class="datagrid2" binddataset="ds_main_opPatlist_opPatInfo" anchor="all" oncelldblclick="group3_switch1_opmain_grd_oppatlist_oncelldblclick" onrbuttondown="group3_switch1_opmain_grd_oppatlist_onrbuttondown" oncellclick="group3_switch1_opmain_grd_oppatlist_oncellclick" cellsizingtype="both" cellsizebandtype="allband" selecttype="multirow" tooltiptype="hover" extendsizetype="row">
  179. <Formats>
  180. <Format id="default">
  181. <Columns>
  182. <Column size="20" band="left"/>
  183. <Column size="0"/>
  184. <Column size="0"/>
  185. <Column size="0"/>
  186. <Column size="23"/>
  187. <Column size="23"/>
  188. <Column size="23"/>
  189. <Column size="23"/>
  190. <Column size="35"/>
  191. <Column size="18"/>
  192. <Column size="43"/>
  193. <Column size="18"/>
  194. <Column size="18"/>
  195. <Column size="18"/>
  196. <Column size="43"/>
  197. <Column size="35"/>
  198. <Column size="35"/>
  199. <Column size="35"/>
  200. <Column size="35"/>
  201. <Column size="30"/>
  202. <Column size="60"/>
  203. <Column size="35"/>
  204. <Column size="100"/>
  205. <Column size="35"/>
  206. <Column size="60"/>
  207. <Column size="45"/>
  208. <Column size="37"/>
  209. <Column size="36"/>
  210. <Column size="48"/>
  211. <Column size="81"/>
  212. <Column size="83"/>
  213. <Column size="66"/>
  214. <Column size="60"/>
  215. <Column size="115"/>
  216. <Column size="115"/>
  217. <Column size="110"/>
  218. <Column size="35"/>
  219. <Column size="35"/>
  220. <Column size="45"/>
  221. <Column size="45"/>
  222. <Column size="35"/>
  223. <Column size="35"/>
  224. <Column size="18"/>
  225. <Column size="18"/>
  226. <Column size="18"/>
  227. <Column size="45"/>
  228. <Column size="18"/>
  229. <Column size="35"/>
  230. <Column size="70"/>
  231. <Column size="70"/>
  232. <Column size="45"/>
  233. <Column size="18"/>
  234. <Column size="35"/>
  235. <Column size="35"/>
  236. <Column size="42"/>
  237. <Column size="0"/>
  238. <Column size="0"/>
  239. <Column size="0"/>
  240. <Column size="0"/>
  241. <Column size="0"/>
  242. <Column size="0"/>
  243. <Column size="0"/>
  244. <Column size="0"/>
  245. <Column size="0"/>
  246. <Column size="0"/>
  247. <Column size="0"/>
  248. <Column size="0"/>
  249. <Column size="0"/>
  250. <Column size="0"/>
  251. <Column size="0"/>
  252. <Column size="0"/>
  253. <Column size="0"/>
  254. <Column size="0"/>
  255. <Column size="0"/>
  256. <Column size="0"/>
  257. <Column size="0"/>
  258. <Column size="0"/>
  259. <Column size="0"/>
  260. <Column size="0"/>
  261. <Column size="0"/>
  262. <Column size="0"/>
  263. <Column size="0"/>
  264. <Column size="0"/>
  265. <Column size="0"/>
  266. <Column size="0"/>
  267. <Column size="0"/>
  268. <Column size="0"/>
  269. <Column size="0"/>
  270. <Column size="0"/>
  271. <Column size="0"/>
  272. <Column size="0"/>
  273. <Column size="0"/>
  274. <Column size="0"/>
  275. <Column size="0"/>
  276. <Column size="0"/>
  277. <Column size="0"/>
  278. <Column size="0"/>
  279. </Columns>
  280. <Rows>
  281. <Row size="26" band="head"/>
  282. <Row size="24"/>
  283. </Rows>
  284. <Band id="head">
  285. <Cell/>
  286. <Cell col="1" text="감염정보"/>
  287. <Cell col="2" text="감염정보"/>
  288. <Cell col="3" text="감염정보"/>
  289. <Cell col="4" colspan="4" text="감염정보" taborder="undefined"/>
  290. <Cell col="8" text="PCA"/>
  291. <Cell col="9" text="혈&#10;액"/>
  292. <Cell col="10" text="미확인&#10;처방"/>
  293. <Cell col="11" text="변&#10;경"/>
  294. <Cell col="12" text="협&#10;진"/>
  295. <Cell col="13" text="재&#10;원"/>
  296. <Cell col="14" text="진행&#10;상태"/>
  297. <Cell col="15" text="Cart&#10;상태"/>
  298. <Cell col="16" text="환자&#10;위치"/>
  299. <Cell col="17" text="환자&#10;구분"/>
  300. <Cell col="18" text="수술&#10;구분"/>
  301. <Cell col="19" text="재&#10;수술"/>
  302. <Cell col="20" text="수술방"/>
  303. <Cell col="21" text="집도&#10;과"/>
  304. <Cell col="22" text="수술일시"/>
  305. <Cell col="23" text="소요&#10;시간"/>
  306. <Cell col="24" text="등록번호"/>
  307. <Cell col="25" text="환자명"/>
  308. <Cell col="26" text="S/A"/>
  309. <Cell col="27" text="체중&#10;(kg)"/>
  310. <Cell col="28" text="키&#10;(cm)"/>
  311. <Cell col="29" text="진단명(한글)"/>
  312. <Cell col="30" text="진단명(영문)"/>
  313. <Cell col="31" text="보험유형&#13;&#10;(DRG)"/>
  314. <Cell col="32" text="수술후&#10;진단명"/>
  315. <Cell col="33" text="수술전수술명(영문)"/>
  316. <Cell col="34" text="수술전수술명(한글)"/>
  317. <Cell col="35" text="수술후수술명"/>
  318. <Cell col="36" text="수술&#10;부위"/>
  319. <Cell col="37" text="수술&#10;체위"/>
  320. <Cell col="38" text="집도의"/>
  321. <Cell col="39" text="마취의"/>
  322. <Cell col="40" text="마취&#10;종류"/>
  323. <Cell col="41" text="마취&#10;방법"/>
  324. <Cell col="42" text="진&#10;정"/>
  325. <Cell col="43" text="전&#10;달"/>
  326. <Cell col="44" text="H&#10;x"/>
  327. <Cell col="45" text="예약자"/>
  328. <Cell col="46" text="공&#10;개"/>
  329. <Cell col="47" text="취소&#10;사유"/>
  330. <Cell col="48" text="입원일"/>
  331. <Cell col="49" text="퇴원일"/>
  332. <Cell col="50" text="심사자"/>
  333. <Cell col="51" text="호&#10;출"/>
  334. <Cell col="52" text="물품&#10;상태"/>
  335. <Cell col="53" text="기구&#10;상태"/>
  336. <Cell col="54" text="소모품&#10;상태"/>
  337. <Cell col="55" text="이송요원호출부서"/>
  338. <Cell col="56" text="oordtype"/>
  339. <Cell col="57" text="orddeptcd"/>
  340. <Cell col="58" text="caption1"/>
  341. <Cell col="59" text="caption2"/>
  342. <Cell col="60"/>
  343. <Cell col="61"/>
  344. <Cell col="62"/>
  345. <Cell col="63"/>
  346. <Cell col="64"/>
  347. <Cell col="65"/>
  348. <Cell col="66"/>
  349. <Cell col="67"/>
  350. <Cell col="68"/>
  351. <Cell col="69"/>
  352. <Cell col="70"/>
  353. <Cell col="71"/>
  354. <Cell col="72"/>
  355. <Cell col="73"/>
  356. <Cell col="74"/>
  357. <Cell col="75"/>
  358. <Cell col="76"/>
  359. <Cell col="77"/>
  360. <Cell col="78"/>
  361. <Cell col="79"/>
  362. <Cell col="80"/>
  363. <Cell col="81"/>
  364. <Cell col="82"/>
  365. <Cell col="83"/>
  366. <Cell col="84"/>
  367. <Cell col="85"/>
  368. <Cell col="86"/>
  369. <Cell col="87"/>
  370. <Cell col="88"/>
  371. <Cell col="89"/>
  372. <Cell col="90"/>
  373. <Cell col="91"/>
  374. <Cell col="92"/>
  375. <Cell col="93"/>
  376. <Cell col="94"/>
  377. <Cell col="95"/>
  378. <Cell col="96"/>
  379. </Band>
  380. <Band id="body">
  381. <Cell celltype="head" expr="expr:currow+1"/>
  382. <Cell col="1" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');" text="bind:disp1"/>
  383. <Cell col="2" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');" text="bind:disp2"/>
  384. <Cell col="3" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');" text="bind:disp3"/>
  385. <Cell col="4" displaytype="image" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:disp3img"/>
  386. <Cell col="5" displaytype="image" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:disp1img"/>
  387. <Cell col="6" displaytype="image" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:disp2img"/>
  388. <Cell col="7" displaytype="image" text="bind:disp4img"/>
  389. <Cell col="8" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:pca" tooltiptext="bind:pca"/>
  390. <Cell col="9" displaytype="image" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:blodprepimg"/>
  391. <Cell col="10" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:uncnfm" tooltiptext="bind:uncnfm"/>
  392. <Cell col="11" style="padding:0 0 0 0;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:cnfmcnclresncd" tooltiptext="bind:cnfmcnclresncd"/>
  393. <Cell col="12" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:cnstopflag" tooltiptext="bind:cnstopflag"/>
  394. <Cell col="13" style="padding:0 0 0 0;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:inyn" tooltiptext="bind:inyn"/>
  395. <Cell col="14" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:opstatcdnm" tooltiptext="bind:inyn"/>
  396. <Cell col="15" style="background:EXPR(!utlf_isNull(aerbgcd) ? '#FFFF00' : callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(!utlf_isNull(aerbgcd) ? '#FFFF00' : callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:ccrtstatnm" tooltiptext="bind:ccrtstatnm"/>
  397. <Cell col="16" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:patposplcecd" wordwrap="word" tooltiptext="bind:patposplcecd"/>
  398. <Cell col="17" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:oppatflagnm" tooltiptext="bind:oppatflagnm"/>
  399. <Cell col="18" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:opflagcdnm" tooltiptext="bind:opflagcdnm"/>
  400. <Cell col="19" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:reopflag" tooltiptext="bind:reopflag"/>
  401. <Cell col="20" style="align:center top;padding:4 2 2 2;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:oproomcdnm" wordwrap="word" tooltiptext="bind:oproomcdnm"/>
  402. <Cell col="21" style="align:center top;padding:4 2 2 2;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:depthngnm" wordwrap="word" tooltiptext="bind:depthngnm"/>
  403. <Cell col="22" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:fstrgstdt" mask="expr:utlf_isNull(fstrgstdt) == true ? '' : '####-##-## ##:##'" tooltiptext="bind:fstrgstdt"/>
  404. <Cell col="23" style="padding:2 2 2 2;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:opusetm" mask="expr:utlf_isNull(opusetm) == true ? '' : '##:##'" tooltiptext="bind:opusetm"/>
  405. <Cell col="24" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:pid" tooltiptext="bind:pid"/>
  406. <Cell col="25" style="align:left top;padding:5 0 0 3;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:hngnm" wordwrap="word" tooltiptext="bind:hngnm"/>
  407. <Cell col="26" style="align:center top;padding:4 2 2 2;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:sa" wordwrap="word" tooltiptext="bind:sa"/>
  408. <Cell col="27" style="align:left top;padding:5 0 0 3;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:bdwt" wordwrap="word" tooltiptext="bind:bdwt"/>
  409. <Cell col="28" style="align:left top;padding:5 0 0 3;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:bdht" wordwrap="word" tooltiptext="bind:bdht"/>
  410. <Cell col="29" style="align:left top;padding:4 2 2 2;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:diagcdnm" wordwrap="word" tooltiptext="bind:diagcdnm"/>
  411. <Cell col="30" style="align:left top;padding:4 2 2 2;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:diagengnm" wordwrap="word" tooltiptext="bind:diagengnm"/>
  412. <Cell col="31" style="align:left top;padding:5 0 0 3;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:insukind" wordwrap="word" tooltiptext="bind:insukind"/>
  413. <Cell col="32" style="align:left top;padding:5 0 0 3;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:afdiagcdnm" wordwrap="word" tooltiptext="bind:afdiagcdnm"/>
  414. <Cell col="33" style="align:left top;padding:4 2 2 2;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:opcdenm" wordwrap="word" tooltiptext="bind:opcdenm"/>
  415. <Cell col="34" style="align:left top;padding:4 2 2 2;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:opcdknm" wordwrap="word" tooltiptext="bind:opcdknm"/>
  416. <Cell col="35" style="align:left top;padding:4 2 2 2;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:afopnm" wordwrap="word" tooltiptext="bind:afopnm"/>
  417. <Cell col="36" style="align:center top;padding:4 2 2 2;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:oppart" wordwrap="word" tooltiptext="bind:oppart"/>
  418. <Cell col="37" style="align:center top;padding:4 2 2 2;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:opposition" wordwrap="word" tooltiptext="bind:opposition"/>
  419. <Cell col="38" style="align:left top;padding:5 0 0 3;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:perfdridnm1" wordwrap="word" tooltiptext="bind:perfdridnm1"/>
  420. <Cell col="39" style="align:left top;padding:5 0 0 3;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:perfdridnm2" wordwrap="word" tooltiptext="bind:perfdridnm2"/>
  421. <Cell col="40" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:anstmthdcdnm" tooltiptext="bind:anstmthdcdnm"/>
  422. <Cell col="41" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:anstmthdnm" tooltiptext="bind:anstmthdnm"/>
  423. <Cell col="42" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:calmflag" tooltiptext="bind:calmflag"/>
  424. <Cell col="43" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');backgroundimage:EXPR(delivefactimg);" text="bind:delivefactyn"/>
  425. <Cell col="44" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:hx" tooltiptext="bind:hx"/>
  426. <Cell col="45" style="align:left top;padding:5 0 0 3;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:rgstridnm" wordwrap="word" tooltiptext="bind:rgstridnm"/>
  427. <Cell col="46" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:opopenflag" tooltiptext="bind:opopenflag"/>
  428. <Cell col="47" style="align:left top;padding:5 0 0 3;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:cnclresn" wordwrap="word" tooltiptext="bind:cnclresn"/>
  429. <Cell col="48" displaytype="date" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:iindd" calendardisplaynulltype="none" tooltiptext="bind:iindd"/>
  430. <Cell col="49" displaytype="date" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:dschdd" calendardisplaynulltype="none" tooltiptext="bind:dschdd"/>
  431. <Cell col="50" style="align:left top;padding:5 0 0 3;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:judgnm" wordwrap="word" tooltiptext="bind:judgnm"/>
  432. <Cell col="51" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:callcnt" tooltiptext="bind:callcnt"/>
  433. <Cell col="52" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:goodstat" tooltiptext="bind:goodstat"/>
  434. <Cell col="53" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:instrstat" tooltiptext="bind:instrstat"/>
  435. <Cell col="54" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:cststat" tooltiptext="bind:cststat"/>
  436. <Cell col="55" text="bind:oordtype"/>
  437. <Cell col="56" text="bind:orddeptcd"/>
  438. <Cell col="57" text="bind:ccrtstat"/>
  439. <Cell col="58" text="bind:opstatcd"/>
  440. <Cell col="59" text="bind:opflagcd"/>
  441. <Cell col="60" text="bind:oproomcd"/>
  442. <Cell col="61" text="bind:perfdeptcd"/>
  443. <Cell col="62" text="bind:oppatflagcd"/>
  444. <Cell col="63" text="bind:diagcd"/>
  445. <Cell col="64" text="bind:opcd"/>
  446. <Cell col="65" text="bind:perfdrid1"/>
  447. <Cell col="66" text="bind:perfdrid2"/>
  448. <Cell col="67" text="bind:anstmthdcd"/>
  449. <Cell col="68" text="bind:delivefact"/>
  450. <Cell col="69" text="bind:rgstrid"/>
  451. <Cell col="70" text="bind:oprsrvno"/>
  452. <Cell col="71" text="bind:ophistno"/>
  453. <Cell col="72" text="bind:ophistcd"/>
  454. <Cell col="73" text="bind:instcd"/>
  455. <Cell col="74" text="bind:icretno"/>
  456. <Cell col="75" text="bind:iseqno"/>
  457. <Cell col="76" text="bind:oorddd"/>
  458. <Cell col="77" text="bind:ocretno"/>
  459. <Cell col="78" text="bind:oacptseqno"/>
  460. <Cell col="79" text="bind:oorgorddd"/>
  461. <Cell col="80" text="bind:opcnfmdd"/>
  462. <Cell col="81" text="bind:callyn"/>
  463. <Cell col="82" text="bind:roomcd"/>
  464. <Cell col="83" text="bind:calltel"/>
  465. <Cell col="84" text="bind:opfromdd"/>
  466. <Cell col="85" text="bind:optodd"/>
  467. <Cell col="86" text="bind:startposcd"/>
  468. <Cell col="87" text="bind:judgperchgrcallno"/>
  469. <Cell col="88" text="bind:nursreoprgstid"/>
  470. <Cell col="89" text="bind:nursreoprgstdt"/>
  471. <Cell col="90" text="bind:nursreopcncldt"/>
  472. <Cell col="91" text="bind:patinroomdt"/>
  473. <Cell col="92" text="bind:patoutroomdt"/>
  474. <Cell col="93" text="bind:perfdrid3"/>
  475. <Cell col="94" text="bind:perfdridnm3"/>
  476. <Cell col="95" text="bind:wardcd"/>
  477. <Cell col="96" text="bind:medispclid"/>
  478. </Band>
  479. </Format>
  480. </Formats>
  481. </Grid>
  482. </Layout>
  483. </Layouts>
  484. </Tabpage>
  485. <Tabpage text="Order Manage" position="absolute 0 0 1195 636" id="ordermanage">
  486. <Layouts>
  487. <Layout>
  488. <Div position="absolute 0 0 1195 628" id="import1" url="emr_wardorderxp::SMMNW00300_OrderManage.xfdl" anchor="all"/>
  489. </Layout>
  490. </Layouts>
  491. </Tabpage>
  492. </Tabpages>
  493. </Tab>
  494. <Div position="absolute 0 10 1195 66" align="align:center top;" id="group2" class="div_SA" anchor="left top right">
  495. <Layouts>
  496. <Layout>
  497. <Shape position="absolute 1116 8 1122 48" linetype="vertical" id="line3" class="line_4" anchor="top right"/>
  498. <Static text="수술일자 :" position="absolute 5 7 85 27" id="caption20" class="search_name" anchor="default"/>
  499. <Static text="~" position="absolute 177 6 192 25" id="caption21" anchor="default"/>
  500. <Static text="수 술 방 :" position="absolute 302 7 376 27" id="caption22" class="search_name" anchor="default"/>
  501. <Static text="집도과/집도의 :" position="absolute 627 6 748 26" id="caption23" class="search_name" anchor="default"/>
  502. <Static text="진행상태 :" position="absolute 941 7 1029 27" id="caption1" class="search_name" anchor="default"/>
  503. <Static text="수술구분 :" position="absolute 5 32 82 52" id="caption19" class="search_name" anchor="default"/>
  504. <Static text="환자구분 :" position="absolute 302 32 379 52" id="caption25" class="search_name" anchor="default"/>
  505. <Static text="마취구분 :" position="absolute 627 31 714 51" id="caption26" class="search_name" anchor="default"/>
  506. <Static text="Cart상태 :" position="absolute 941 32 1029 52" id="caption5" class="search_name" anchor="default"/>
  507. <Calendar position="absolute 85 6 173 26" id="inp_opddfr" class="input_search" mask="yyyy-mm-dd" anchor="default" autoselect="true"/>
  508. <Calendar position="absolute 193 6 281 26" id="inp_opddto" class="input_search" mask="yyyy-mm-dd" anchor="default" autoselect="true"/>
  509. <Combo position="absolute 464 6 546 26" id="cmb_oproomlist" innerdataset="@ds_init_oproomlist" datacolumn="oproomnm" codecolumn="oproomcd" anchor="default" onitemchanged="group3_group2_cmb_oproomlist_onitemchanged"/>
  510. <Combo position="absolute 738 6 853 26" id="cmb_orddept" innerdataset="@ds_init_ComboLists_deptlist" datacolumn="depthngnm" codecolumn="deptcd" anchor="default" onitemchanged="group3_group2_cmb_orddept_onitemchanged"/>
  511. <Combo position="absolute 854 6 924 26" id="cmb_drlist" innerdataset="@ds_init_drlist" datacolumn="drnm" codecolumn="drid" anchor="default" onitemchanged="group3_group2_cmb_drlist_onitemchanged"/>
  512. <Combo position="absolute 1020 6 1100 26" id="cmb_opstatlist" codecolumn="codecolumn" datacolumn="datacolumn" anchor="default">
  513. <Dataset id="innerdataset">
  514. <ColumnInfo>
  515. <Column id="codecolumn"/>
  516. <Column id="datacolumn"/>
  517. </ColumnInfo>
  518. <Rows>
  519. <Row>
  520. <Col id="codecolumn">
  521. </Col>
  522. <Col id="datacolumn">전 체</Col>
  523. </Row>
  524. <Row>
  525. <Col id="codecolumn">1</Col>
  526. <Col id="datacolumn">예정</Col>
  527. </Row>
  528. <Row>
  529. <Col id="codecolumn">2</Col>
  530. <Col id="datacolumn">대기</Col>
  531. </Row>
  532. <Row>
  533. <Col id="codecolumn">3</Col>
  534. <Col id="datacolumn">수술</Col>
  535. </Row>
  536. <Row>
  537. <Col id="codecolumn">4</Col>
  538. <Col id="datacolumn">회복</Col>
  539. </Row>
  540. <Row>
  541. <Col id="codecolumn">5</Col>
  542. <Col id="datacolumn">종료</Col>
  543. </Row>
  544. <Row>
  545. <Col id="codecolumn">9</Col>
  546. <Col id="datacolumn">취소</Col>
  547. </Row>
  548. <Row>
  549. <Col id="codecolumn">6</Col>
  550. <Col id="datacolumn">취소제외</Col>
  551. </Row>
  552. <Row>
  553. <Col id="codecolumn">10</Col>
  554. <Col id="datacolumn">예정+대기+수술</Col>
  555. </Row>
  556. </Rows>
  557. </Dataset>
  558. </Combo>
  559. <CheckBox position="absolute 85 32 130 52" id="chk_opflag1" anchor="default" text="정규" truevalue="1" onchanged="group3_group2_chk_opflag1_onchanged"/>
  560. <CheckBox position="absolute 133 32 178 52" id="chk_opflag2" anchor="default" text="응급" truevalue="2" onchanged="group3_group2_chk_opflag2_onchanged"/>
  561. <CheckBox position="absolute 181 32 226 52" id="chk_opflag3" anchor="default" text="추가" truevalue="3" onchanged="group3_group2_chk_opflag3_onchanged"/>
  562. <CheckBox position="absolute 229 32 274 52" id="chk_opflag4" visible="false" anchor="default" text="취소" truevalue="4" onchanged="group3_group2_chk_opflag4_onchanged"/>
  563. <CheckBox position="absolute 707 31 752 51" id="checkbox31" anchor="default" text="전신" truevalue="01"/>
  564. <CheckBox position="absolute 754 31 799 51" id="checkbox32" anchor="default" text="국소" truevalue="03"/>
  565. <CheckBox position="absolute 801 31 846 51" id="checkbox33" anchor="default" text="부위" truevalue="02"/>
  566. <CheckBox position="absolute 851 31 896 51" id="checkbox2" anchor="default" text="진정" truevalue="Y"/>
  567. <Combo position="absolute 1020 31 1100 51" id="cmb_ccrtstatlist" innerdataset="@ds_init_ComboLists_ccrtstatlist" datacolumn="ccrtstatnm" codecolumn="ccrtstatcd" anchor="default"/>
  568. <Button position="absolute 1132 19 1188 39" id="button4" class="btn1" text="조회" anchor="top right" onclick="group3_group2_button4_onclick"/>
  569. <Combo position="absolute 380 6 462 26" id="cmb_rosette" class="combo_default" innerdataset="@ds_init_rosettelist" datacolumn="rosettenm" codecolumn="rosettecd" anchor="default" onitemchanged="group3_group2_cmb_rosette_onitemchanged"/>
  570. <Div position="absolute 382 33 612 51" id="grp_setting1" visible="false" anchor="default">
  571. <Layouts>
  572. <Layout>
  573. <CheckBox position="absolute 179 0 229 16" id="checkbox1" anchor="default" text="DCC" truevalue="I"/>
  574. <CheckBox position="absolute 0 0 45 16" id="checkbox16" anchor="default" text="병실" truevalue="I"/>
  575. <CheckBox position="absolute 47 0 92 16" id="checkbox17" anchor="default" text="DSC" truevalue="D"/>
  576. <CheckBox position="absolute 132 0 177 16" id="checkbox18" anchor="default" text="외래" truevalue="O"/>
  577. <CheckBox position="absolute 94 0 130 16" id="checkbox19" anchor="default" text="ER" truevalue="E"/>
  578. </Layout>
  579. </Layouts>
  580. </Div>
  581. <Div position="absolute 382 13 612 31" id="grp_setting2" visible="false" anchor="default">
  582. <Layouts>
  583. <Layout>
  584. <CheckBox position="absolute 0 0 45 16" id="checkbox3" anchor="default" text="병실" truevalue="I"/>
  585. <CheckBox position="absolute 47 0 92 16" id="checkbox4" anchor="default" text="DSC" truevalue="D"/>
  586. <CheckBox position="absolute 132 0 177 16" id="checkbox5" anchor="default" text="외래" truevalue="O"/>
  587. <CheckBox position="absolute 94 0 130 16" id="checkbox6" anchor="default" text="ER" truevalue="E"/>
  588. </Layout>
  589. </Layouts>
  590. </Div>
  591. <Div position="absolute 382 13 612 31" id="grp_setting3" visible="false" anchor="default">
  592. <Layouts>
  593. <Layout>
  594. <CheckBox position="absolute 0 0 45 16" id="checkbox8" anchor="default" text="병실" truevalue="I"/>
  595. <CheckBox position="absolute 85 0 130 16" id="checkbox10" anchor="default" text="외래" truevalue="O"/>
  596. <CheckBox position="absolute 47 0 83 16" id="checkbox11" anchor="default" text="ER" truevalue="E"/>
  597. </Layout>
  598. </Layouts>
  599. </Div>
  600. <Div position="absolute 382 13 612 31" id="grp_setting4" visible="false" anchor="default">
  601. <Layouts>
  602. <Layout>
  603. <CheckBox position="absolute 132 0 182 16" id="checkbox12" anchor="default" text="DCC" truevalue="I"/>
  604. <CheckBox position="absolute 0 0 45 16" id="checkbox13" anchor="default" text="병실" truevalue="I"/>
  605. <CheckBox position="absolute 85 0 130 16" id="checkbox15" anchor="default" text="외래" truevalue="O"/>
  606. <CheckBox position="absolute 47 0 83 16" id="checkbox20" anchor="default" text="ER" truevalue="E"/>
  607. </Layout>
  608. </Layouts>
  609. </Div>
  610. <Shape position="absolute 845 34 851 49" linetype="vertical" id="line4" anchor="default" style="strokepen:1 solid black;"/>
  611. </Layout>
  612. </Layouts>
  613. </Div>
  614. <Div position="absolute 250 78 1194 109" id="group1" anchor="top right">
  615. <Layouts>
  616. <Layout>
  617. <Button position="absolute 2 7 117 27" id="btn_prcpcnt" class="btn2" text="미확인처방 환자수" anchor="default"/>
  618. <Button position="absolute 151 7 215 27" id="button1" class="btn2" text="감염관리" anchor="default"/>
  619. <Edit readonly="true" position="absolute 119 7 149 26" id="opt_prcpcnt" anchor="default" style="background:stretch 5,5;font:Dotum,9,bold;"/>
  620. <Edit readonly="true" position="absolute 217 7 247 26" id="opt_dispcnt" anchor="default" style="background:stretch 5,5;font:Dotum,9,bold;"/>
  621. <Static text="수술명 :" position="absolute 534 10 584 25" id="caption7" anchor="default" style="font:Dotum,9,bold;"/>
  622. <CheckBox position="absolute 588 7 633 27" id="chk_opnmen" anchor="default" text="영문" truevalue="Y" falsevalue="N" onclick="group3_group1_chk_opnmen_onclick"/>
  623. <CheckBox position="absolute 638 7 683 27" id="chk_opnmkr" anchor="default" text="한글" truevalue="Y" falsevalue="N" onclick="group3_group1_chk_opnmkr_onclick"/>
  624. <CheckBox position="absolute 687 9 782 26" id="chk_afopnm" anchor="default" text="수술후수술명" truevalue="Y" falsevalue="N" onclick="group3_group1_chk_afopnm_onclick"/>
  625. <Static text="혈액준비 :" position="absolute 249 10 313 25" id="caption27" anchor="default" style="font:Dotum,9,bold;"/>
  626. <TextArea position="absolute 314 0 527 28" align="align:center middle;" id="tar_blodprep" enable="true" anchor="default" style="padding:2 2 2 2;background:stretch 5,5;" wordwrap="char"/>
  627. <Static text="진단명 :" position="absolute 789 10 839 25" id="caption28" anchor="default" style="font:Dotum,9,bold;"/>
  628. <CheckBox position="absolute 844 7 889 27" id="chk_diagnmen" anchor="default" text="영문" truevalue="Y" falsevalue="N" onclick="group3_group1_chk_diagnmen_onclick"/>
  629. <CheckBox position="absolute 894 7 939 27" id="chk_diagnmkr" anchor="default" text="한글" truevalue="Y" falsevalue="N" onclick="group3_group1_chk_diagnmkr_onclick"/>
  630. <Shape position="absolute 781 11 787 23" linetype="vertical" id="line2" anchor="default"/>
  631. </Layout>
  632. </Layouts>
  633. </Div>
  634. <Div position="absolute 485 395 686 452" id="group5" visible="false" style="background:#87cefaff;shadow:outer 3,3 3 gray;" anchor="default">
  635. <Layouts>
  636. <Layout>
  637. <Static text="출력할 장수를 입력하십시오." position="absolute 8 8 196 24" id="caption8" class="tit_2" anchor="default"/>
  638. <Edit position="absolute 27 28 87 48" align="align:right middle;" id="ipt_patcntctel" class="input_default" anchor="default" onkeyup="group3_group5_ipt_patcntctel_onkeyup"/>
  639. <Button position="absolute 90 28 132 48" id="btn_prtlabel" class="btn5" text="확인" anchor="default" onclick="group3_group5_btn_prtlabel_onclick"/>
  640. <Button position="absolute 135 28 177 48" id="button5" class="btn5" text="취소" anchor="default" onclick="group3_group5_button5_onclick"/>
  641. </Layout>
  642. </Layouts>
  643. </Div>
  644. </Layout>
  645. </Layouts>
  646. </Div>
  647. <Static text="마취간호 메인" position="absolute 0 0 120 25" id="caption6" class="tit_1"/>
  648. <Div position="absolute 0 760 1195 804" id="grp_btn" anchor="left right bottom">
  649. <Layouts>
  650. <Layout>
  651. <Div position="absolute 2 1 1162 21" id="grp_ordmn" anchor="default">
  652. <Layouts>
  653. <Layout>
  654. <Static text="*일반/반환/퇴원" position="absolute 105 3 205 18" id="cap_prcp" anchor="default" style="color:#0000ffff;"/>
  655. <Static text="*환자이름 파란색 표기 : 제증명/사본발급 확인" position="absolute 235 4 535 19" id="cap_certcpap" anchor="default" style="color:#0000ffff;"/>
  656. <Static position="absolute 5 3 20 16" id="cap_color" class="color_6" anchor="default" style="background:#ffccccff;"/>
  657. <Static text="미확인" position="absolute 25 3 105 18" id="cap_uncnfm" anchor="default"/>
  658. </Layout>
  659. </Layouts>
  660. </Div>
  661. <Div position="absolute 0 0 1195 44" id="grp_opmdisc" anchor="left right bottom">
  662. <Layouts>
  663. <Layout>
  664. <Div position="absolute 660 24 1010 44" id="grp_opm" anchor="top right">
  665. <Layouts>
  666. <Layout>
  667. <Static position="absolute 1 3 16 18" id="caption12" class="color_6" style="background:#2d2d2dff;" anchor="top right"/>
  668. <Static text="정규, 추가" position="absolute 21 4 79 19" id="caption13" anchor="top right"/>
  669. <Static position="absolute 105 3 120 18" id="caption14" class="color_6" style="background:#d22d2dff;" anchor="top right"/>
  670. <Static text="응급" position="absolute 125 4 160 19" id="caption15" anchor="top right"/>
  671. <Static position="absolute 176 3 191 18" id="caption18" class="color_6" style="background:#2d2dd2ff;" anchor="top right"/>
  672. <Static text="취소" position="absolute 196 4 231 19" id="caption2" anchor="top right"/>
  673. <Static position="absolute 245 3 260 18" id="caption3" class="color_6" style="background:#c9d6b9ff;" anchor="top right"/>
  674. <Static text="보호자호출" position="absolute 265 4 330 19" id="caption4" anchor="top right"/>
  675. </Layout>
  676. </Layouts>
  677. </Div>
  678. <Static text="변경상태" position="absolute 0 2 72 22" align="align:center middle;" id="cap_statetitle" style="background:#ddddddff;align:center middle;font:Dotum,9,bold;" anchor="default"/>
  679. <Static text="재원상태" position="absolute 0 24 72 44" align="align:center middle;" id="cap_state2title" style="background:#ddddddff;align:center middle;font:Dotum,9,bold;" anchor="default"/>
  680. <Static text="ⓡ 수술방, ⓣ 수술시간, ⓓ 집도과, ⓞ 집도의, ⓝ 수술명, ⓢ 수술부위, ⓐ 마취방법" position="absolute 80 2 562 22" id="cap_state" anchor="default"/>
  681. <Static text="ⓐ 입원, ⓓ 퇴원예고, ⓒ 간호사 퇴원정리완료, ⓝ 미심사, ⓡ 보류, ⓕ 완료" position="absolute 80 24 522 44" id="cap_state2" anchor="default"/>
  682. <Button position="absolute 1063 0 1105 20" id="bnt_output" class="btn2" text="출력" anchor="top right" onclick="grp_btn_grp_opmdisc_bnt_output_onclick"/>
  683. <Button position="absolute 1106 0 1159 20" id="bnt_excel" class="btn2" text="Excel" anchor="top right" onclick="grp_btn_grp_opmdisc_bnt_excel_onclick"/>
  684. <Button position="absolute 1103 24 1195 44" id="button2" class="btn3" text="프린터설정" anchor="top right" onclick="grp_btn_grp_opmdisc_button2_onclick"/>
  685. <Button position="absolute 999 24 1101 44" id="button3" class="btn3" text="라벨전체출력" anchor="top right" onclick="grp_btn_grp_opmdisc_button3_onclick"/>
  686. <Div position="absolute 660 1 1010 24" id="group4" anchor="top right">
  687. <Layouts>
  688. <Layout>
  689. <Static position="absolute 168 0 190 22" id="caption9" style="background:transparent URL('theme://images/btn_top_infection2.gif');" anchor="top right"/>
  690. <Static position="absolute 0 0 22 22" id="caption10" style="background:transparent URL('theme://images/btn_top_infection0.gif');" anchor="top right"/>
  691. <Static position="absolute 84 0 106 22" id="caption11" style="background:transparent URL('theme://images/btn_top_infection1.gif');" anchor="top right"/>
  692. <Static text="접촉주의" position="absolute 108 2 163 19" id="caption16" anchor="top right"/>
  693. <Static text="혈액주의" position="absolute 25 2 80 19" id="caption17" anchor="top right"/>
  694. <Static text="공기주의" position="absolute 192 2 247 19" id="caption24" anchor="top right"/>
  695. <Static id="caption00" position="absolute 252 0 274 22" anchor="top right" style="background:transparent URL('theme://images/btn_top_infection3.gif');"/>
  696. <Static id="caption01" text="비말주의" position="absolute 278 2 333 19" anchor="top right"/>
  697. </Layout>
  698. </Layouts>
  699. </Div>
  700. <Button position="absolute 998 0 1062 20" id="button" class="btn2" text="컬럼설정" anchor="top right" onclick="grp_btn_grp_opmdisc_button_onclick"/>
  701. <Button position="absolute 565 0 654 20" id="button6" class="btn2" visible="false" text="예방적항생제" anchor="top right" onclick="grp_btn_grp_opmdisc_button6_onclick"/>
  702. </Layout>
  703. </Layouts>
  704. </Div>
  705. </Layout>
  706. </Layouts>
  707. </Div>
  708. <Static text="[표]" position="absolute 1160 760 1190 780" align="align:right middle;" id="caption29" anchor="right bottom"/>
  709. <PopupMenu id="pMenu_oppatlistmenu" innerdataset="@ds_main_codedata_popup" idcolumn="popupcd" captioncolumn="popupnm" levelcolumn="lev" position="absolute 5 811 220 1163" onmenuclick="pMenu_oppatlistmenu_onmenuclick"/>
  710. <Div id="div_Prnt" taborder="1" position="absolute 691 352 1102 764" class="groupbox_blue" visible="false" anchor="right bottom" style="shadow:outer 3,3 3 gray;">
  711. <Layouts>
  712. <Layout>
  713. <Static id="Static00" text="라벨전체출력(환자별)" position="absolute 8 11 160 31" class="tit_3" anchor="default"/>
  714. <Grid id="Grid00" taborder="1" useinputpanel="false" position="absolute 9 37 401 377" binddataset="ds_prnt_opPatlist" anchor="default" cellsizingtype="col" selecttype="multirow" autoenter="key" autofittype="col">
  715. <Formats>
  716. <Format id="default">
  717. <Columns>
  718. <Column size="80"/>
  719. <Column size="55"/>
  720. <Column size="45"/>
  721. <Column size="45"/>
  722. <Column size="45"/>
  723. <Column size="50"/>
  724. <Column size="50"/>
  725. </Columns>
  726. <Rows>
  727. <Row size="24" band="head"/>
  728. <Row size="24"/>
  729. </Rows>
  730. <Band id="head">
  731. <Cell displaytype="normal" text="등록번호"/>
  732. <Cell col="1" displaytype="normal" text="환자명"/>
  733. <Cell col="2" displaytype="normal" text="S/A"/>
  734. <Cell col="3" displaytype="normal" text="수술방"/>
  735. <Cell col="4" displaytype="normal" text="진료과"/>
  736. <Cell col="5" displaytype="normal" text="병실"/>
  737. <Cell col="6" displaytype="normal" text="출력수"/>
  738. </Band>
  739. <Band id="body">
  740. <Cell displaytype="normal" text="bind:pid"/>
  741. <Cell col="1" displaytype="normal" text="bind:hngnm"/>
  742. <Cell col="2" displaytype="normal" text="bind:sa"/>
  743. <Cell col="3" displaytype="normal" text="bind:oproomcdnm"/>
  744. <Cell col="4" displaytype="normal" text="bind:depthngnm"/>
  745. <Cell col="5" displaytype="normal" text="bind:roomcd"/>
  746. <Cell col="6" displaytype="normal" edittype="text" editfilter="number" style="align:center middle;" text="bind:prntcnt" editlimit="1" editautoselect="true" editlengthunit="ascii"/>
  747. </Band>
  748. </Format>
  749. </Formats>
  750. </Grid>
  751. <Button id="btn_prnt" taborder="2" text="출력" position="absolute 299 381 349 401" class="btn4" anchor="default" onclick="div_Prnt_btn_prnt_onclick"/>
  752. <Button id="btn_cncl" taborder="3" text="취소" class="btn4" position="absolute 350 381 400 401" anchor="default" onclick="div_Prnt_btn_cncl_onclick"/>
  753. <Edit id="edt_allcnt" taborder="4" position="absolute 361 14 401 34" anchor="default" inputtype="number" lengthunit="ascii" maxlength="1" onkeyup="div_Prnt_edt_allcnt_onkeyup"/>
  754. <Static id="stx_setPrntCnt" text="출력장수 :" position="absolute 267 14 355 34" class="hand" anchor="default"/>
  755. </Layout>
  756. </Layouts>
  757. </Div>
  758. </Layout>
  759. </Layouts>
  760. <Objects>
  761. <Dataset id="ds_send_reqdata" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  762. <ColumnInfo>
  763. <Column id="opddfr" type="STRING" size="256"/>
  764. <Column id="opddto" type="STRING" size="256" sumtext="수술예정일자 "/>
  765. <Column id="opflag1" type="STRING" size="256" sumtext="정규 "/>
  766. <Column id="opflag2" type="STRING" size="256" sumtext="응급 "/>
  767. <Column id="opflag3" type="STRING" size="256" sumtext="추가 "/>
  768. <Column id="opflag4" type="STRING" size="256" sumtext="취소 "/>
  769. <Column id="oproomcd" type="STRING" size="256" sumtext="수술방코드 "/>
  770. <Column id="orddept" type="STRING" size="256" sumtext="진료과 "/>
  771. <Column id="orddr" type="STRING" size="256" sumtext="집도의 "/>
  772. <Column id="oppatflag1" type="STRING" size="256" sumtext="입원 I "/>
  773. <Column id="oppatflag2" type="STRING" size="256" sumtext="DSC D "/>
  774. <Column id="oppatflag3" type="STRING" size="256" sumtext="외래 O "/>
  775. <Column id="oppatflag4" type="STRING" size="256" sumtext="ER E "/>
  776. <Column id="oppatflag5" type="STRING" size="256" sumtext="DCC I "/>
  777. <Column id="anstmthdcd1" type="STRING" size="256" sumtext="전신 01 "/>
  778. <Column id="anstmthdcd2" type="STRING" size="256" sumtext="국소 03 "/>
  779. <Column id="anstmthdcd3" type="STRING" size="256" sumtext="부위 02 "/>
  780. <Column id="refdeptflag" type="STRING" size="256" sumtext="부서구분 "/>
  781. <Column id="opstat" type="STRING" size="256" sumtext="수술상태 "/>
  782. <Column id="ccrtstat" type="STRING" size="256" sumtext="Cart상태 "/>
  783. <Column id="oprosette" type="STRING" size="256" sumtext="rosette "/>
  784. <Column id="pid" type="STRING" size="256" sumtext="환자번호 "/>
  785. <Column id="calmflag" type="STRING" size="256" sumtext="진정유무 "/>
  786. <Column id="opcnfmdd" type="STRING" size="256"/>
  787. <Column id="scrnid" type="STRING" size="256"/>
  788. <Column id="compscd" type="STRING" size="256"/>
  789. <Column id="orddeptcd" type="STRING" size="256"/>
  790. </ColumnInfo>
  791. <Rows>
  792. <Row/>
  793. </Rows>
  794. </Dataset>
  795. <Dataset id="ds_init_drlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
  796. <ColumnInfo>
  797. <Column id="drnm" type="STRING"/>
  798. <Column id="drid" type="STRING"/>
  799. </ColumnInfo>
  800. </Dataset>
  801. <Dataset id="ds_send" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  802. <ColumnInfo>
  803. <Column id="opcnfmdd" type="STRING" size="256" sumtext="수술일자"/>
  804. <Column id="rosette" type="STRING" size="256" sumtext="rosette"/>
  805. <Column id="searchitem" type="STRING" size="256" sumtext="부서코드또는부서명 "/>
  806. <Column id="flag" type="STRING" size="256" sumtext="부서코드or명flag "/>
  807. <Column id="selectflag" type="STRING" size="256" sumtext="조회구분 "/>
  808. <Column id="deptflag" type="STRING" size="256" sumtext="(수술)부서조회구분 "/>
  809. <Column id="infection" type="STRING" size="256"/>
  810. </ColumnInfo>
  811. <Rows>
  812. <Row/>
  813. </Rows>
  814. </Dataset>
  815. <Dataset id="ds_init_oproomlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
  816. <ColumnInfo>
  817. <Column id="oproomnm" type="STRING"/>
  818. <Column id="oproomcd" type="STRING"/>
  819. </ColumnInfo>
  820. </Dataset>
  821. <Dataset id="ds_init_ComboLists_deptlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  822. <ColumnInfo>
  823. <Column id="deptcd" type="STRING" size="256" sumtext="부서코드 "/>
  824. <Column id="depthngnm" type="STRING" size="256" sumtext="부서코드 통합 마스터의 통합부서명 "/>
  825. <Column id="depthngabbr" type="STRING" size="256" sumtext="부서한글 약어 "/>
  826. <Column id="deptengnm" type="STRING" size="256" sumtext="부서코드의 영문명칭 "/>
  827. <Column id="deptengabbr" type="STRING" size="256" sumtext="진료과가 사용하고 있는 영문 약어 "/>
  828. <Column id="deptplce" type="STRING" size="256" sumtext="부서위치(층정보+부서명으로 Text구성)"/>
  829. </ColumnInfo>
  830. </Dataset>
  831. <Dataset id="ds_init_ComboLists_ccrtstatlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  832. <ColumnInfo>
  833. <Column id="ccrtstatcd" type="STRING" size="256" sumtext="Cart상태코드"/>
  834. <Column id="ccrtstatnm" type="STRING" size="256" sumtext="Cart상태명"/>
  835. </ColumnInfo>
  836. </Dataset>
  837. <Dataset id="ds_init_ComboLists_oproomlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  838. <ColumnInfo>
  839. <Column id="oproomcd" type="STRING" size="256" sumtext="수술방코드"/>
  840. <Column id="oproomnm" type="STRING" size="256" sumtext="수술방명"/>
  841. </ColumnInfo>
  842. </Dataset>
  843. <Dataset id="ds_init_rosettelist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
  844. <ColumnInfo>
  845. <Column id="rosettenm" type="STRING"/>
  846. <Column id="rosettecd" type="STRING"/>
  847. </ColumnInfo>
  848. </Dataset>
  849. <Dataset id="ds_main_opPatlist_opPatInfo" firefirstcount="0" firenextcount="0" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  850. <ColumnInfo>
  851. <Column id="ccrtstat" type="STRING" size="256" sumtext="01 카트상태 "/>
  852. <Column id="ccrtstatnm" type="STRING" size="256" sumtext="02 카트상태명 "/>
  853. <Column id="opstatcd" type="STRING" size="256" sumtext="03 진행상태 "/>
  854. <Column id="opstatcdnm" type="STRING" size="256" sumtext="04 진행상태명 "/>
  855. <Column id="oprecstatnm" type="STRING" size="256" sumtext="04 간호기록 "/>
  856. <Column id="patposplcecd" type="STRING" size="256" sumtext="05 환자위치 "/>
  857. <Column id="opflagcd" type="STRING" size="256" sumtext="06 수술구분 "/>
  858. <Column id="opflagcdnm" type="STRING" size="256" sumtext="07 수술구분명 "/>
  859. <Column id="oproomcd" type="STRING" size="256" sumtext="08 수술방 "/>
  860. <Column id="oproomcdnm" type="STRING" size="256" sumtext="09 수술방명 "/>
  861. <Column id="fstrgstdt" type="STRING" size="256" sumtext="10 예약일시 "/>
  862. <Column id="opusetm" type="STRING" size="256" sumtext="11 소요시간 "/>
  863. <Column id="perfdeptcd" type="STRING" size="256" sumtext="12 진료과 "/>
  864. <Column id="depthngnm" type="STRING" size="256" sumtext="13 진료과명 "/>
  865. <Column id="oppatflagcd" type="STRING" size="256" sumtext="14 환자구분 "/>
  866. <Column id="oppatflagnm" type="STRING" size="256" sumtext="15 환자구분명 "/>
  867. <Column id="pid" type="STRING" size="256" sumtext="16 등록번호 "/>
  868. <Column id="hngnm" type="STRING" size="256" sumtext="17 환자명 "/>
  869. <Column id="sa" type="STRING" size="256" sumtext="18 성별나이 "/>
  870. <Column id="diagcd" type="STRING" size="256" sumtext="19 진단코드 "/>
  871. <Column id="diagcdnm" type="STRING" size="256" sumtext="20 진단코드명 "/>
  872. <Column id="diagengnm" type="STRING" size="256" sumtext="20 진단코드 영문명 "/>
  873. <Column id="opcd" type="STRING" size="256" sumtext="21 수술코드 "/>
  874. <Column id="opcdknm" type="STRING" size="256" sumtext="22 수술코드한글명 "/>
  875. <Column id="oppart" type="STRING" size="256" sumtext="23 수술부위 "/>
  876. <Column id="opposition" type="STRING" size="256" sumtext="24 수술체위 "/>
  877. <Column id="perfdrid1" type="STRING" size="256" sumtext="25 집도의 "/>
  878. <Column id="perfdridnm1" type="STRING" size="256" sumtext="26 집도의명 "/>
  879. <Column id="perfdrid2" type="STRING" size="256" sumtext="27 마취의 "/>
  880. <Column id="perfdridnm2" type="STRING" size="256" sumtext="28 마취의명 "/>
  881. <Column id="anstmthdcd" type="STRING" size="256" sumtext="29 마취종류 "/>
  882. <Column id="anstmthdcdnm" type="STRING" size="256" sumtext="30 마취종류명 "/>
  883. <Column id="delivefact" type="STRING" size="256" sumtext="31 전달사항 "/>
  884. <Column id="delivefactyn" type="STRING" size="256" sumtext="32 전달사항 "/>
  885. <Column id="hx" type="STRING" size="256" sumtext="33 HX "/>
  886. <Column id="rgstrid" type="STRING" size="256" sumtext="34 예약자 "/>
  887. <Column id="rgstridnm" type="STRING" size="256" sumtext="35 예약자명 "/>
  888. <Column id="opopenflag" type="STRING" size="256" sumtext="36 수술공개여부 "/>
  889. <Column id="oprsrvno" type="STRING" size="256" sumtext="37 수술예약번호 "/>
  890. <Column id="ophistno" type="STRING" size="256" sumtext="38 수술이력번호 "/>
  891. <Column id="ophistcd" type="STRING" size="256" sumtext="39 수술이력코드 "/>
  892. <Column id="instcd" type="STRING" size="256" sumtext="40 기관코드 "/>
  893. <Column id="iindd" type="STRING" size="256" sumtext="41 입원일자 "/>
  894. <Column id="icretno" type="STRING" size="256" sumtext="42 생성번호 "/>
  895. <Column id="iseqno" type="STRING" size="256" sumtext="43 일련번호 "/>
  896. <Column id="oorddd" type="STRING" size="256" sumtext="44 진료일자 "/>
  897. <Column id="ocretno" type="STRING" size="256" sumtext="45 생성번호 "/>
  898. <Column id="oacptseqno" type="STRING" size="256" sumtext="46 등록일련번호 "/>
  899. <Column id="oorgorddd" type="STRING" size="256" sumtext="47 원진료일자 "/>
  900. <Column id="oordtype" type="STRING" size="256" sumtext="47 외래진료형태 "/>
  901. <Column id="opcnfmdd" type="STRING" size="256" sumtext="48 수술시작일자 "/>
  902. <Column id="cnclresn" type="STRING" size="256" sumtext="49 취소이유 "/>
  903. <Column id="callyn" type="STRING" size="256" sumtext="50 호출여부 "/>
  904. <Column id="roomcd" type="STRING" size="256" sumtext="51 병실 "/>
  905. <Column id="calltel" type="STRING" size="256" sumtext="52 호출전화번호 "/>
  906. <Column id="cnstopflag" type="STRING" size="256" sumtext="53 협진여부 "/>
  907. <Column id="inyn" type="STRING" size="256" sumtext="54 재원여부 "/>
  908. <Column id="cnfmcnclresncd" type="STRING" size="256" sumtext="55 취소 사유 코드 "/>
  909. <Column id="opcdenm" type="STRING" size="256" sumtext="56 수술코드영문명 "/>
  910. <Column id="opfromdd" type="STRING" size="256" sumtext="57 조회일자 "/>
  911. <Column id="optodd" type="STRING" size="256" sumtext="58 조회 일자 "/>
  912. <Column id="usernm" type="STRING" size="256" sumtext="59 로그인사용자명 "/>
  913. <Column id="orddeptcd" type="STRING" size="256" sumtext="60 집도과코드 "/>
  914. <Column id="startposcd" type="STRING" size="256" sumtext="61 이송요원 호출부서코드 "/>
  915. <Column id="uncnfm" type="STRING" size="256" sumtext="62 처방카운트 "/>
  916. <Column id="callcnt" type="STRING" size="256" sumtext="63 호출건수 "/>
  917. <Column id="dschdd" type="STRING" size="256" sumtext="64 퇴원일자 "/>
  918. <Column id="judgnm" type="STRING" size="256" sumtext="65 심사자 "/>
  919. <Column id="disp1" type="STRING" size="256" sumtext="66 혈액주의 "/>
  920. <Column id="disp2" type="STRING" size="256" sumtext="67 접촉주의 "/>
  921. <Column id="disp3" type="STRING" size="256" sumtext="68 공기주의 "/>
  922. <Column id="judgperchgrcallno" type="STRING" size="256" sumtext="69 심사자연락번호 "/>
  923. <Column id="reopflag" type="STRING" size="256" sumtext="70 재수술여부 "/>
  924. <Column id="nursreoprgstid" type="STRING" size="256" sumtext="71 간호재수술등록ID "/>
  925. <Column id="nursreoprgstdt" type="STRING" size="256" sumtext="72 간호재수술등록일시 "/>
  926. <Column id="nursreopcncldt" type="STRING" size="256" sumtext="73 간호재수술취소일시 "/>
  927. <Column id="goodstat" type="STRING" size="256" sumtext="74 물품상태 "/>
  928. <Column id="instrstat" type="STRING" size="256" sumtext="75 기구상태 "/>
  929. <Column id="cststat" type="STRING" size="256" sumtext="76 소모품상태 "/>
  930. <Column id="patinroomdt" type="STRING" size="256" sumtext="77 수술실입실일시 "/>
  931. <Column id="patoutroom" type="STRING" size="256" sumtext="78 수술실퇴실장소 "/>
  932. <Column id="afopnm" type="STRING" size="256" sumtext="79 수술후수술명 "/>
  933. <Column id="afdiagcdnm" type="STRING" size="256" sumtext="81 수술후 진단명 "/>
  934. <Column id="perfdrid3" type="STRING" size="256" sumtext="82 마취의2 "/>
  935. <Column id="perfdridnm3" type="STRING" size="256" sumtext="83 마취의2명 "/>
  936. <Column id="subopcdknm" type="STRING" size="256" sumtext="84 부수술명 "/>
  937. <Column id="calmflag" type="STRING" size="256" sumtext="85 진정유무 "/>
  938. <Column id="inordtype" type="STRING" size="256" sumtext="85 입원타입 "/>
  939. <Column id="wardcd" type="STRING" size="256" sumtext="86 병동 "/>
  940. <Column id="medispclid" type="STRING" size="256" sumtext="87 주치의 "/>
  941. <Column id="mainoprsrvno" type="STRING" size="256" sumtext="88 주수술번호 "/>
  942. <Column id="insukind" type="STRING" size="256" sumtext="88 보험유형 "/>
  943. <Column id="blodprepyn" type="STRING" size="256"/>
  944. <Column id="bdwt" type="STRING" size="256"/>
  945. </ColumnInfo>
  946. </Dataset>
  947. <Dataset id="ds_HideData_otptinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  948. <ColumnInfo>
  949. <Column id="pid" type="STRING" size="256" sumtext="등록번호 "/>
  950. <Column id="orddd" type="STRING" size="256" sumtext="진료일자 "/>
  951. <Column id="cretno" type="STRING" size="256" sumtext="생성번호 "/>
  952. <Column id="ordtype" type="STRING" size="256" sumtext="진료형태 "/>
  953. <Column id="orgorddd" type="STRING" size="256" sumtext="실제진료일자 "/>
  954. <Column id="instcd" type="STRING" size="256" sumtext="기관코드 "/>
  955. </ColumnInfo>
  956. </Dataset>
  957. <Dataset id="ds_send_savedata" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  958. <ColumnInfo>
  959. <Column id="oprsrvno" type="STRING" size="256" sumtext="수술예약번호"/>
  960. <Column id="message" type="STRING" size="256" sumtext="호출메세지"/>
  961. <Column id="calltel" type="STRING" size="256" sumtext="호출전화번호"/>
  962. <Column id="stat" type="STRING" size="256" sumtext="상태값"/>
  963. <Column id="patnm" type="STRING" size="256" sumtext="환자명"/>
  964. <Column id="procflag" type="STRING" size="256" sumtext="처리구분"/>
  965. <Column id="pid" type="STRING" size="256" sumtext="등록번호"/>
  966. <Column id="opcnfmdd" type="STRING" size="256" sumtext="수술확정일자"/>
  967. </ColumnInfo>
  968. <Rows>
  969. <Row/>
  970. </Rows>
  971. </Dataset>
  972. <Dataset id="ds_send_chngedata" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  973. <ColumnInfo>
  974. <Column id="oprsrvno" type="STRING" size="256" sumtext="수술예약번호"/>
  975. <Column id="ophistno" type="STRING" size="256" sumtext="수술 이력번호"/>
  976. <Column id="pid" type="STRING" size="256" sumtext="등록번호"/>
  977. <Column id="ordtype" type="STRING" size="256" sumtext="원무 환자구분"/>
  978. <Column id="cretno" type="STRING" size="256" sumtext="원무 생성 번호 "/>
  979. <Column id="seqno" type="STRING" size="256" sumtext="원무 이력 일련번호 "/>
  980. <Column id="indd" type="STRING" size="256" sumtext="입원일자"/>
  981. <Column id="oppatflagcd" type="STRING" size="256" sumtext="수술환자 구분코드"/>
  982. </ColumnInfo>
  983. <Rows>
  984. <Row/>
  985. </Rows>
  986. </Dataset>
  987. <Dataset id="ds_temp2_tmp" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  988. <ColumnInfo>
  989. <Column id="cnt" type="STRING" size="256" sumtext="01 수정갯수"/>
  990. </ColumnInfo>
  991. </Dataset>
  992. <Dataset id="ds_send_JobProc" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  993. <ColumnInfo>
  994. <Column id="pid" type="STRING" size="256" sumtext=" 01 환자번호 "/>
  995. <Column id="oprsrvno" type="STRING" size="256" sumtext=" 02 수술예약 "/>
  996. <Column id="ophistno" type="INT" size="256" sumtext=" 03 이력번호 "/>
  997. <Column id="instcd" type="STRING" size="256" sumtext=" 04 기관코드 "/>
  998. <Column id="jobflag" type="STRING" size="256" sumtext=" 05 작업구분(1:입실저장,2:퇴실저장,9:입실취소)"/>
  999. <Column id="outplcnm" type="STRING" size="256" sumtext=" 06 퇴실 장소명 "/>
  1000. </ColumnInfo>
  1001. <Rows>
  1002. <Row/>
  1003. </Rows>
  1004. </Dataset>
  1005. <Dataset id="ds_main_oppatinfoexcel" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1006. <ColumnInfo>
  1007. <Column id="opstatcdnm" type="STRING" size="256" sumtext="01 상"/>
  1008. <Column id="opflagcdnm" type="STRING" size="256" sumtext="02 구분"/>
  1009. <Column id="oproomcdnm" type="STRING" size="256" sumtext="03 수술방"/>
  1010. <Column id="fstrgstdt" type="STRING" size="256" sumtext="04 수술일자"/>
  1011. <Column id="opusetm" type="STRING" size="256" sumtext="05 소요시간"/>
  1012. <Column id="depthngnm" type="STRING" size="256" sumtext="06 집도과"/>
  1013. <Column id="oppatflagnm" type="STRING" size="256" sumtext="07 병실"/>
  1014. <Column id="hngnm" type="STRING" size="256" sumtext="08 환자명"/>
  1015. <Column id="pid" type="STRING" size="256" sumtext="09 등록번호"/>
  1016. <Column id="sa" type="STRING" size="256" sumtext="10 SA"/>
  1017. <Column id="diagcdnm" type="STRING" size="256" sumtext="11 진단명(한글)"/>
  1018. <Column id="diagengnm" type="STRING" size="256" sumtext="45 진단명(영문)"/>
  1019. <Column id="opcdknm" type="STRING" size="256" sumtext="12 수술명"/>
  1020. <Column id="opcdenm" type="STRING" size="256" sumtext="13 영문수술명"/>
  1021. <Column id="perfdridnm1" type="STRING" size="256" sumtext="14 집도의"/>
  1022. <Column id="perfdridnm2" type="STRING" size="256" sumtext="15 마취의"/>
  1023. <Column id="anstmthdcdnm" type="STRING" size="256" sumtext="16 마취방법"/>
  1024. <Column id="wardstarttm" type="STRING" size="256" sumtext="17 병동출발일시"/>
  1025. <Column id="waitarrivetm" type="STRING" size="256" sumtext="18 대기실도착일시"/>
  1026. <Column id="intm" type="STRING" size="256" sumtext="19 입실시간"/>
  1027. <Column id="dschtm" type="STRING" size="256" sumtext="20 퇴실시간"/>
  1028. <Column id="totoptm" type="STRING" size="256" sumtext="21 총소요시간"/>
  1029. <Column id="totopmin" type="INT" size="256" sumtext="21 총소요시간(분)"/>
  1030. <Column id="perfintm" type="STRING" size="256" sumtext="22 집도의입실시간"/>
  1031. <Column id="perfdschtm" type="STRING" size="256" sumtext="23 집도의 퇴실시간"/>
  1032. <Column id="totperftom" type="STRING" size="256" sumtext="24 총재실시간"/>
  1033. <Column id="totperfmin" type="INT" size="256" sumtext="24 총재실시간(분)"/>
  1034. <Column id="opstarttm" type="STRING" size="256" sumtext="25 수술시작시간"/>
  1035. <Column id="opendtm" type="STRING" size="256" sumtext="26 수술종료시간"/>
  1036. <Column id="anststarttm" type="STRING" size="256" sumtext="27 마취시작시간"/>
  1037. <Column id="anstendtm" type="STRING" size="256" sumtext="28 마취종료시간"/>
  1038. <Column id="anstmeettime" type="STRING" size="256" sumtext="29 환자맞이한시간"/>
  1039. <Column id="cnclresn" type="STRING" size="256" sumtext="30 취소사유정보"/>
  1040. <Column id="cnstopflag" type="STRING" size="256" sumtext="31 협진"/>
  1041. <Column id="afopnm" type="STRING" size="256" sumtext="32 수술후수술명"/>
  1042. <Column id="prestaynursenm" type="STRING" size="256" sumtext="33 대기실기록간호사"/>
  1043. <Column id="preopnursenm" type="STRING" size="256" sumtext="34 수술실기록간호사"/>
  1044. <Column id="indd" type="STRING" size="256" sumtext="35 입원일"/>
  1045. <Column id="opscale" type="STRING" size="256" sumtext="36 수술스케일"/>
  1046. <Column id="escopeeqmtuseyn" type="STRING" size="256" sumtext="37 내시경장비사용여부"/>
  1047. <Column id="opcost" type="STRING" size="256" sumtext="38 수술료"/>
  1048. <Column id="anstcost" type="STRING" size="256" sumtext="39 마취료"/>
  1049. <Column id="scrub" type="STRING" size="256" sumtext="40 SCRUB"/>
  1050. <Column id="cir" type="STRING" size="256" sumtext="41 CIR"/>
  1051. <Column id="reopflag" type="STRING" size="256" sumtext="42 재수술"/>
  1052. <Column id="afdiagcdnm" type="STRING" size="256" sumtext="43 수술후진단명"/>
  1053. <Column id="dschdd" type="STRING" size="256" sumtext="44 퇴원일"/>
  1054. <Column id="bdwt" type="STRING" size="256" sumtext="45 퇴원일"/>
  1055. <Column id="bdht" type="STRING" size="256" sumtext="46 퇴원일"/>
  1056. </ColumnInfo>
  1057. </Dataset>
  1058. <Dataset id="ds_init_userscrnenvinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1059. <ColumnInfo>
  1060. <Column id="compscd" type="STRING" size="256" sumtext="구성코드"/>
  1061. <Column id="compscnts" type="STRING" size="256" sumtext="구성내용"/>
  1062. <Column id="compsrefcnts" type="STRING" size="256" sumtext="구성참조내용"/>
  1063. <Column id="compssizecnts" type="STRING" size="256" sumtext="구성크기내용"/>
  1064. </ColumnInfo>
  1065. </Dataset>
  1066. <Dataset id="ds_main_operation" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1067. <Dataset id="ds_main_cond" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" oncolumnchanged="ds_main_cond_oncolumnchanged">
  1068. <ColumnInfo>
  1069. <Column id="usernm" type="STRING" size="256"/>
  1070. <Column id="orddd" type="STRING" size="256"/>
  1071. <Column id="opddfr" type="STRING" size="256"/>
  1072. <Column id="opddto" type="STRING" size="256"/>
  1073. <Column id="oprosette" type="STRING" size="256"/>
  1074. <Column id="oproomcd" type="STRING" size="256"/>
  1075. <Column id="orddept" type="STRING" size="256"/>
  1076. <Column id="orddr" type="STRING" size="256"/>
  1077. <Column id="opstat" type="STRING" size="256"/>
  1078. <Column id="opflag1" type="STRING" size="256"/>
  1079. <Column id="opflag2" type="STRING" size="256"/>
  1080. <Column id="opflag3" type="STRING" size="256"/>
  1081. <Column id="opflag4" type="STRING" size="256"/>
  1082. <Column id="anstmthdcd1" type="STRING" size="256"/>
  1083. <Column id="anstmthdcd2" type="STRING" size="256"/>
  1084. <Column id="anstmthdcd3" type="STRING" size="256"/>
  1085. <Column id="calmflag" type="STRING" size="256"/>
  1086. <Column id="pid" type="STRING" size="256"/>
  1087. <Column id="hngnm" type="STRING" size="256"/>
  1088. <Column id="ccrtstat" type="STRING" size="256"/>
  1089. <Column id="oppatflag1" type="STRING" size="256"/>
  1090. <Column id="oppatflag4" type="STRING" size="256"/>
  1091. <Column id="oppatflag3" type="STRING" size="256"/>
  1092. <Column id="oppatflag5" type="STRING" size="256"/>
  1093. <Column id="oppatflag2" type="STRING" size="256"/>
  1094. <Column id="refdeptflag" type="STRING" size="256"/>
  1095. <Column id="prestimportid" type="STRING" size="256"/>
  1096. <Column id="wardcd" type="STRING" size="256"/>
  1097. <Column id="section" type="STRING" size="256"/>
  1098. <Column id="sortflag" type="STRING" size="256"/>
  1099. <Column id="settingrnid" type="STRING" size="256"/>
  1100. <Column id="orddeptcd" type="STRING" size="256"/>
  1101. <Column id="medispclid" type="STRING" size="256"/>
  1102. <Column id="atdoctid" type="STRING" size="256"/>
  1103. <Column id="indschacptstat" type="STRING" size="256"/>
  1104. <Column id="outdt" type="STRING" size="256"/>
  1105. <Column id="srchinstcd" type="STRING" size="256"/>
  1106. </ColumnInfo>
  1107. <Rows>
  1108. <Row/>
  1109. </Rows>
  1110. </Dataset>
  1111. <Dataset id="ds_temp" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1112. <ColumnInfo>
  1113. <Column id="sPrcpCnt" type="STRING" size="256"/>
  1114. <Column id="sDispCnt" type="STRING" size="256"/>
  1115. <Column id="opnmen" type="STRING" size="256"/>
  1116. <Column id="opnmkr" type="STRING" size="256"/>
  1117. <Column id="afopnmen" type="STRING" size="256"/>
  1118. <Column id="diagnmen" type="STRING" size="256"/>
  1119. <Column id="diagnmkr" type="STRING" size="256"/>
  1120. <Column id="prncnt" type="STRING" size="256"/>
  1121. <Column id="blodpreplist" type="STRING" size="256"/>
  1122. </ColumnInfo>
  1123. <Rows>
  1124. <Row/>
  1125. </Rows>
  1126. </Dataset>
  1127. <Dataset id="ds_main_opinfo_oplist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1128. <ColumnInfo>
  1129. <Column id="ccrtstat" type="STRING" size="256" sumtext="01 카트상태 "/>
  1130. <Column id="ccrtstatnm" type="STRING" size="256" sumtext="02 카트상태명 "/>
  1131. <Column id="opstatcd" type="STRING" size="256" sumtext="03 진행상태 "/>
  1132. <Column id="opstatcdnm" type="STRING" size="256" sumtext="04 진행상태명 "/>
  1133. <Column id="oprecstatnm" type="STRING" size="256" sumtext="04 간호기록 "/>
  1134. <Column id="patposplcecd" type="STRING" size="256" sumtext="05 환자위치 "/>
  1135. <Column id="opflagcd" type="STRING" size="256" sumtext="06 수술구분 "/>
  1136. <Column id="opflagcdnm" type="STRING" size="256" sumtext="07 수술구분명 "/>
  1137. <Column id="oproomcd" type="STRING" size="256" sumtext="08 수술방 "/>
  1138. <Column id="oproomcdnm" type="STRING" size="256" sumtext="09 수술방명 "/>
  1139. <Column id="fstrgstdt" type="STRING" size="256" sumtext="10 예약일시 "/>
  1140. <Column id="opusetm" type="STRING" size="256" sumtext="11 소요시간 "/>
  1141. <Column id="perfdeptcd" type="STRING" size="256" sumtext="12 진료과 "/>
  1142. <Column id="depthngnm" type="STRING" size="256" sumtext="13 진료과명 "/>
  1143. <Column id="oppatflagcd" type="STRING" size="256" sumtext="14 환자구분 "/>
  1144. <Column id="oppatflagnm" type="STRING" size="256" sumtext="15 환자구분명 "/>
  1145. <Column id="pid" type="STRING" size="256" sumtext="16 등록번호 "/>
  1146. <Column id="hngnm" type="STRING" size="256" sumtext="17 환자명 "/>
  1147. <Column id="sa" type="STRING" size="256" sumtext="18 성별나이 "/>
  1148. <Column id="diagcd" type="STRING" size="256" sumtext="19 진단코드 "/>
  1149. <Column id="diagcdnm" type="STRING" size="256" sumtext="20 진단코드명 "/>
  1150. <Column id="diagengnm" type="STRING" size="256" sumtext="20 진단코드 영문명 "/>
  1151. <Column id="opcd" type="STRING" size="256" sumtext="21 수술코드 "/>
  1152. <Column id="opcdknm" type="STRING" size="256" sumtext="22 수술코드한글명 "/>
  1153. <Column id="oppart" type="STRING" size="256" sumtext="23 수술부위 "/>
  1154. <Column id="opposition" type="STRING" size="256" sumtext="24 수술체위 "/>
  1155. <Column id="perfdrid1" type="STRING" size="256" sumtext="25 집도의 "/>
  1156. <Column id="perfdridnm1" type="STRING" size="256" sumtext="26 집도의명 "/>
  1157. <Column id="perfdrid2" type="STRING" size="256" sumtext="27 마취의 "/>
  1158. <Column id="perfdridnm2" type="STRING" size="256" sumtext="28 마취의명 "/>
  1159. <Column id="anstmthdcd" type="STRING" size="256" sumtext="29 마취종류 "/>
  1160. <Column id="anstmthdcdnm" type="STRING" size="256" sumtext="30 마취종류명 "/>
  1161. <Column id="delivefact" type="STRING" size="256" sumtext="31 전달사항 "/>
  1162. <Column id="delivefactyn" type="STRING" size="256" sumtext="32 전달사항 "/>
  1163. <Column id="hx" type="STRING" size="256" sumtext="33 HX "/>
  1164. <Column id="rgstrid" type="STRING" size="256" sumtext="34 예약자 "/>
  1165. <Column id="rgstridnm" type="STRING" size="256" sumtext="35 예약자명 "/>
  1166. <Column id="opopenflag" type="STRING" size="256" sumtext="36 수술공개여부 "/>
  1167. <Column id="oprsrvno" type="STRING" size="256" sumtext="37 수술예약번호 "/>
  1168. <Column id="ophistno" type="STRING" size="256" sumtext="38 수술이력번호 "/>
  1169. <Column id="ophistcd" type="STRING" size="256" sumtext="39 수술이력코드 "/>
  1170. <Column id="instcd" type="STRING" size="256" sumtext="40 기관코드 "/>
  1171. <Column id="iindd" type="STRING" size="256" sumtext="41 입원일자 "/>
  1172. <Column id="icretno" type="STRING" size="256" sumtext="42 생성번호 "/>
  1173. <Column id="iseqno" type="STRING" size="256" sumtext="43 일련번호 "/>
  1174. <Column id="oorddd" type="STRING" size="256" sumtext="44 진료일자 "/>
  1175. <Column id="ocretno" type="STRING" size="256" sumtext="45 생성번호 "/>
  1176. <Column id="oacptseqno" type="STRING" size="256" sumtext="46 등록일련번호 "/>
  1177. <Column id="oorgorddd" type="STRING" size="256" sumtext="47 원진료일자 "/>
  1178. <Column id="oordtype" type="STRING" size="256" sumtext="47 외래진료형태 "/>
  1179. <Column id="opcnfmdd" type="STRING" size="256" sumtext="48 수술시작일자 "/>
  1180. <Column id="cnclresn" type="STRING" size="256" sumtext="49 취소이유 "/>
  1181. <Column id="callyn" type="STRING" size="256" sumtext="50 호출여부 "/>
  1182. <Column id="roomcd" type="STRING" size="256" sumtext="51 병실 "/>
  1183. <Column id="calltel" type="STRING" size="256" sumtext="52 호출전화번호 "/>
  1184. <Column id="cnstopflag" type="STRING" size="256" sumtext="53 협진여부 "/>
  1185. <Column id="inyn" type="STRING" size="256" sumtext="54 재원여부 "/>
  1186. <Column id="cnfmcnclresncd" type="STRING" size="256" sumtext="55 취소 사유 코드 "/>
  1187. <Column id="opcdenm" type="STRING" size="256" sumtext="56 수술코드영문명 "/>
  1188. <Column id="opfromdd" type="STRING" size="256" sumtext="57 조회일자 "/>
  1189. <Column id="optodd" type="STRING" size="256" sumtext="58 조회 일자 "/>
  1190. <Column id="usernm" type="STRING" size="256" sumtext="59 로그인사용자명 "/>
  1191. <Column id="orddeptcd" type="STRING" size="256" sumtext="60 집도과코드 "/>
  1192. <Column id="startposcd" type="STRING" size="256" sumtext="61 이송요원 호출부서코드 "/>
  1193. <Column id="uncnfm" type="STRING" size="256" sumtext="62 처방카운트 "/>
  1194. <Column id="callcnt" type="STRING" size="256" sumtext="63 호출건수 "/>
  1195. <Column id="dschdd" type="STRING" size="256" sumtext="64 퇴원일자 "/>
  1196. <Column id="judgnm" type="STRING" size="256" sumtext="65 심사자 "/>
  1197. <Column id="disp1" type="STRING" size="256" sumtext="66 혈액주의 "/>
  1198. <Column id="disp2" type="STRING" size="256" sumtext="67 접촉주의 "/>
  1199. <Column id="disp3" type="STRING" size="256" sumtext="68 공기주의 "/>
  1200. <Column id="judgperchgrcallno" type="STRING" size="256" sumtext="69 심사자연락번호 "/>
  1201. <Column id="reopflag" type="STRING" size="256" sumtext="70 재수술여부 "/>
  1202. <Column id="nursreoprgstid" type="STRING" size="256" sumtext="71 간호재수술등록ID "/>
  1203. <Column id="nursreoprgstdt" type="STRING" size="256" sumtext="72 간호재수술등록일시 "/>
  1204. <Column id="nursreopcncldt" type="STRING" size="256" sumtext="73 간호재수술취소일시 "/>
  1205. <Column id="goodstat" type="STRING" size="256" sumtext="74 물품상태 "/>
  1206. <Column id="instrstat" type="STRING" size="256" sumtext="75 기구상태 "/>
  1207. <Column id="cststat" type="STRING" size="256" sumtext="76 소모품상태 "/>
  1208. <Column id="patinroomdt" type="STRING" size="256" sumtext="77 수술실입실일시 "/>
  1209. <Column id="patoutroom" type="STRING" size="256" sumtext="78 수술실퇴실장소 "/>
  1210. <Column id="afopnm" type="STRING" size="256" sumtext="79 수술후수술명 "/>
  1211. <Column id="afdiagcdnm" type="STRING" size="256" sumtext="81 수술후 진단명 "/>
  1212. <Column id="perfdrid3" type="STRING" size="256" sumtext="82 마취의2 "/>
  1213. <Column id="perfdridnm3" type="STRING" size="256" sumtext="83 마취의2명 "/>
  1214. <Column id="subopcdknm" type="STRING" size="256" sumtext="84 부수술명 "/>
  1215. <Column id="calmflag" type="STRING" size="256" sumtext="85 진정유무 "/>
  1216. <Column id="inordtype" type="STRING" size="256" sumtext="85 입원타입 "/>
  1217. <Column id="wardcd" type="STRING" size="256" sumtext="86 병동 "/>
  1218. <Column id="medispclid" type="STRING" size="256" sumtext="87 주치의 "/>
  1219. <Column id="mainoprsrvno" type="STRING" size="256" sumtext="88 주수술번호 "/>
  1220. </ColumnInfo>
  1221. </Dataset>
  1222. <Dataset id="ds_barcdprntsetup" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1223. <ColumnInfo>
  1224. <Column id="prntsetupinfo" type="STRING" size="256" sumtext="코드"/>
  1225. <Column id="macaddr" type="STRING" size="256" sumtext="macaddr"/>
  1226. </ColumnInfo>
  1227. </Dataset>
  1228. <Dataset id="ds_chngcol" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1229. <ColumnInfo>
  1230. <Column id="chngcolflag" type="STRING" size="256"/>
  1231. </ColumnInfo>
  1232. <Rows>
  1233. <Row/>
  1234. </Rows>
  1235. </Dataset>
  1236. <Dataset id="ds_send_report" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1237. <ColumnInfo>
  1238. <Column id="opnmflag" type="STRING" size="256"/>
  1239. <Column id="diagnmflag" type="STRING" size="256"/>
  1240. </ColumnInfo>
  1241. <Rows>
  1242. <Row/>
  1243. </Rows>
  1244. </Dataset>
  1245. <Dataset id="ds_main_codedata_popup" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1246. <ColumnInfo>
  1247. <Column id="popupnm" type="STRING" size="256"/>
  1248. <Column id="popupcd" type="STRING" size="256"/>
  1249. <Column id="lev" type="STRING" size="256"/>
  1250. </ColumnInfo>
  1251. <Rows>
  1252. <Row>
  1253. <Col id="popupnm">수술준비확인</Col>
  1254. <Col id="popupcd">0</Col>
  1255. <Col id="lev">0</Col>
  1256. </Row>
  1257. <Row>
  1258. <Col id="popupnm">간호일지Type II</Col>
  1259. <Col id="popupcd">1</Col>
  1260. <Col id="lev">0</Col>
  1261. </Row>
  1262. <Row>
  1263. <Col id="popupnm">마취간호처방</Col>
  1264. <Col id="popupcd">2</Col>
  1265. <Col id="lev">0</Col>
  1266. </Row>
  1267. <Row>
  1268. <Col id="popupnm">수술간호기록</Col>
  1269. <Col id="popupcd">8</Col>
  1270. <Col id="lev">0</Col>
  1271. </Row>
  1272. <Row>
  1273. <Col id="popupnm">수술실 전광판관리</Col>
  1274. <Col id="popupcd">9</Col>
  1275. <Col id="lev">0</Col>
  1276. </Row>
  1277. <Row>
  1278. <Col id="popupnm">-</Col>
  1279. <Col id="popupcd">[Undefined]</Col>
  1280. <Col id="lev">0</Col>
  1281. </Row>
  1282. <Row>
  1283. <Col id="popupnm">마약처방관리</Col>
  1284. <Col id="popupcd">3</Col>
  1285. <Col id="lev">0</Col>
  1286. </Row>
  1287. <Row>
  1288. <Col id="popupnm">혈액불출관리</Col>
  1289. <Col id="popupcd">4</Col>
  1290. <Col id="lev">0</Col>
  1291. </Row>
  1292. <Row>
  1293. <Col id="popupnm">현장검사입력</Col>
  1294. <Col id="popupcd">5</Col>
  1295. <Col id="lev">0</Col>
  1296. </Row>
  1297. <Row>
  1298. <Col id="popupnm">-</Col>
  1299. <Col id="popupcd">[Undefined]</Col>
  1300. <Col id="lev">0</Col>
  1301. </Row>
  1302. <Row>
  1303. <Col id="popupnm">바코드 출력</Col>
  1304. <Col id="popupcd">6</Col>
  1305. <Col id="lev">0</Col>
  1306. </Row>
  1307. <Row>
  1308. <Col id="popupnm">NAME LABEL 출력</Col>
  1309. <Col id="popupcd">7</Col>
  1310. <Col id="lev">0</Col>
  1311. </Row>
  1312. <Row>
  1313. <Col id="popupnm">-</Col>
  1314. <Col id="popupcd">[Undefined]</Col>
  1315. <Col id="lev">0</Col>
  1316. </Row>
  1317. <Row>
  1318. <Col id="popupnm">단문메세지</Col>
  1319. <Col id="popupcd">10</Col>
  1320. <Col id="lev">0</Col>
  1321. </Row>
  1322. <Row>
  1323. <Col id="popupnm">이송요원호출</Col>
  1324. <Col id="popupcd">11</Col>
  1325. <Col id="lev">0</Col>
  1326. </Row>
  1327. <Row>
  1328. <Col id="popupnm">보호자 호출</Col>
  1329. <Col id="popupcd">12</Col>
  1330. <Col id="lev">0</Col>
  1331. </Row>
  1332. <Row>
  1333. <Col id="popupnm">보호자 호출취소</Col>
  1334. <Col id="popupcd">13</Col>
  1335. <Col id="lev">0</Col>
  1336. </Row>
  1337. <Row>
  1338. <Col id="popupnm">입 실 취 소</Col>
  1339. <Col id="popupcd">14</Col>
  1340. <Col id="lev">0</Col>
  1341. </Row>
  1342. <Row>
  1343. <Col id="popupnm">재수술 승인/취소</Col>
  1344. <Col id="popupcd">15</Col>
  1345. <Col id="lev">0</Col>
  1346. </Row>
  1347. <Row>
  1348. <Col id="popupnm">안전사고보고</Col>
  1349. <Col id="popupcd">16</Col>
  1350. <Col id="lev">0</Col>
  1351. </Row>
  1352. </Rows>
  1353. </Dataset>
  1354. <Dataset id="ds_prnt_opPatlist" firefirstcount="0" firenextcount="0" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" oncolumnchanged="ds_prnt_opPatlist_oncolumnchanged">
  1355. <ColumnInfo>
  1356. <Column id="pid" type="STRING" size="256" sumtext="등록번호"/>
  1357. <Column id="hngnm" type="STRING" size="256" sumtext="환자명"/>
  1358. <Column id="sa" type="STRING" size="256" sumtext="성별나이"/>
  1359. <Column id="oproomcdnm" type="STRING" size="256" sumtext="수술방명"/>
  1360. <Column id="depthngnm" type="STRING" size="256" sumtext="진료과명"/>
  1361. <Column id="roomcd" type="STRING" size="256" sumtext="병실"/>
  1362. <Column id="prntcnt" type="STRING" size="256" sumtext="출력장수"/>
  1363. </ColumnInfo>
  1364. </Dataset>
  1365. </Objects>
  1366. <Bind>
  1367. <BindItem id="item0" compid="group3.group2.inp_opddfr" propid="value" datasetid="ds_main_cond" columnid="opddfr"/>
  1368. <BindItem id="item1" compid="group3.group2.inp_opddto" propid="value" datasetid="ds_main_cond" columnid="opddto"/>
  1369. <BindItem id="item2" compid="group3.group2.cmb_rosette" propid="value" datasetid="ds_main_cond" columnid="oprosette"/>
  1370. <BindItem id="item4" compid="group3.group2.cmb_orddept" propid="value" datasetid="ds_main_cond" columnid="orddept"/>
  1371. <BindItem id="item6" compid="group3.group2.cmb_opstatlist" propid="value" datasetid="ds_main_cond" columnid="opstat"/>
  1372. <BindItem id="item7" compid="group3.group2.chk_opflag1" propid="value" datasetid="ds_main_cond" columnid="opflag1"/>
  1373. <BindItem id="item8" compid="group3.group2.chk_opflag2" propid="value" datasetid="ds_main_cond" columnid="opflag2"/>
  1374. <BindItem id="item9" compid="group3.group2.chk_opflag3" propid="value" datasetid="ds_main_cond" columnid="opflag3"/>
  1375. <BindItem id="item10" compid="group3.group2.chk_opflag4" propid="value" datasetid="ds_main_cond" columnid="opflag4"/>
  1376. <BindItem id="item11" compid="group3.group2.grp_setting4.checkbox13" propid="value" datasetid="ds_main_cond" columnid="oppatflag1"/>
  1377. <BindItem id="item12" compid="group3.group2.grp_setting4.checkbox20" propid="value" datasetid="ds_main_cond" columnid="oppatflag4"/>
  1378. <BindItem id="item13" compid="group3.group2.grp_setting4.checkbox15" propid="value" datasetid="ds_main_cond" columnid="oppatflag3"/>
  1379. <BindItem id="item14" compid="group3.group2.grp_setting4.checkbox12" propid="value" datasetid="ds_main_cond" columnid="oppatflag5"/>
  1380. <BindItem id="item15" compid="group3.group2.checkbox31" propid="value" datasetid="ds_main_cond" columnid="anstmthdcd1"/>
  1381. <BindItem id="item16" compid="group3.group2.checkbox32" propid="value" datasetid="ds_main_cond" columnid="anstmthdcd2"/>
  1382. <BindItem id="item17" compid="group3.group2.checkbox33" propid="value" datasetid="ds_main_cond" columnid="anstmthdcd3"/>
  1383. <BindItem id="item18" compid="group3.group2.checkbox2" propid="value" datasetid="ds_main_cond" columnid="calmflag"/>
  1384. <BindItem id="item19" compid="group3.group2.cmb_ccrtstatlist" propid="value" datasetid="ds_main_cond" columnid="ccrtstat"/>
  1385. <BindItem id="item20" compid="group3.group2.grp_setting3.checkbox8" propid="value" datasetid="ds_main_cond" columnid="oppatflag1"/>
  1386. <BindItem id="item21" compid="group3.group2.grp_setting3.checkbox11" propid="value" datasetid="ds_main_cond" columnid="oppatflag4"/>
  1387. <BindItem id="item22" compid="group3.group2.grp_setting3.checkbox10" propid="value" datasetid="ds_main_cond" columnid="oppatflag3"/>
  1388. <BindItem id="item23" compid="group3.group2.grp_setting2.checkbox3" propid="value" datasetid="ds_main_cond" columnid="oppatflag1"/>
  1389. <BindItem id="item24" compid="group3.group2.grp_setting2.checkbox4" propid="value" datasetid="ds_main_cond" columnid="oppatflag2"/>
  1390. <BindItem id="item25" compid="group3.group2.grp_setting2.checkbox6" propid="value" datasetid="ds_main_cond" columnid="oppatflag4"/>
  1391. <BindItem id="item26" compid="group3.group2.grp_setting2.checkbox5" propid="value" datasetid="ds_main_cond" columnid="oppatflag3"/>
  1392. <BindItem id="item27" compid="group3.group2.grp_setting1.checkbox16" propid="value" datasetid="ds_main_cond" columnid="oppatflag1"/>
  1393. <BindItem id="item28" compid="group3.group2.grp_setting1.checkbox17" propid="value" datasetid="ds_main_cond" columnid="oppatflag2"/>
  1394. <BindItem id="item29" compid="group3.group2.grp_setting1.checkbox19" propid="value" datasetid="ds_main_cond" columnid="oppatflag4"/>
  1395. <BindItem id="item30" compid="group3.group2.grp_setting1.checkbox18" propid="value" datasetid="ds_main_cond" columnid="oppatflag3"/>
  1396. <BindItem id="item31" compid="group3.group2.grp_setting1.checkbox1" propid="value" datasetid="ds_main_cond" columnid="oppatflag5"/>
  1397. <BindItem id="item32" compid="group3.group1.opt_prcpcnt" propid="value" datasetid="ds_temp" columnid="sPrcpCnt"/>
  1398. <BindItem id="item33" compid="group3.group1.opt_dispcnt" propid="value" datasetid="ds_temp" columnid="sDispCnt"/>
  1399. <BindItem id="item34" compid="group3.group1.tar_blodprep" propid="value" datasetid="ds_temp" columnid="blodpreplist"/>
  1400. <BindItem id="item35" compid="group3.group1.chk_opnmen" propid="value" datasetid="ds_temp" columnid="opnmen"/>
  1401. <BindItem id="item36" compid="group3.group1.chk_opnmkr" propid="value" datasetid="ds_temp" columnid="opnmkr"/>
  1402. <BindItem id="item37" compid="group3.group1.chk_afopnm" propid="value" datasetid="ds_temp" columnid="afopnmen"/>
  1403. <BindItem id="item38" compid="group3.group1.chk_diagnmen" propid="value" datasetid="ds_temp" columnid="diagnmen"/>
  1404. <BindItem id="item39" compid="group3.group1.chk_diagnmkr" propid="value" datasetid="ds_temp" columnid="diagnmkr"/>
  1405. <BindItem id="item40" compid="group3.group5.ipt_patcntctel" propid="value" datasetid="ds_temp" columnid="prncnt"/>
  1406. </Bind>
  1407. <Script type="xscript4.0"><![CDATA[/***************************************************************************************
  1408. * System Name : 경대 의료정보시스템
  1409. * Job Name : emr_opanstxp -> SMMNP00400
  1410. * Creator : yjh
  1411. * Make Date : 2016-09-12
  1412. * Description :
  1413. *---------------------------------------------------------------------------------------
  1414. * Modify Date Modifier Modify Description
  1415. *---------------------------------------------------------------------------------------
  1416. * 2016-09-12 yjh TF->XP
  1417. *
  1418. *---------------------------------------------------------------------------------------
  1419. ****************************************************************************************/
  1420. //=======================================================================================
  1421. // Lib Include
  1422. //---------------------------------------------------------------------------------------
  1423. include "com_commonxp::comm_main.xjs";
  1424. include "emr_opanstxp::SMMNP00400.xjs"; //yjh : 커밋
  1425. include "lis_commonxp::LLZ001.xjs";
  1426. include "emr_carecomxp::CareCom.xjs";
  1427. include "com_commodulexp::SSZFM00901.xjs";
  1428. //=======================================================================================
  1429. // Global Form Variable
  1430. //---------------------------------------------------------------------------------------
  1431. //=======================================================================================
  1432. // Function
  1433. //---------------------------------------------------------------------------------------
  1434. /****************************************************************************************
  1435. * Argument : N/A
  1436. * Description :
  1437. ****************************************************************************************/
  1438. var fv_OrderDepth = group3.switch1.ordermanage.import1;
  1439. var fv_DsMenuinstDepth = this;
  1440. var fv_DsWardDepth = this;
  1441. //=======================================================================================
  1442. // Event
  1443. //---------------------------------------------------------------------------------------
  1444. /****************************************************************************************
  1445. * Components : Form
  1446. * Components ID : SMMNP00400
  1447. * Event : oninit
  1448. * Argument : 01.obj : Object Event has occurred
  1449. * : 02.e : Event Object
  1450. * Description : 화면 처음 초기화시
  1451. ****************************************************************************************/
  1452. function SMMNP00400_oninit(obj:Form, e:InitEventInfo)
  1453. {
  1454. frmf_initForm(obj); //폼 초기화
  1455. }
  1456. /****************************************************************************************
  1457. * Components : Form
  1458. * Components ID : SMMNP00400
  1459. * Event : onload
  1460. * Argument : 01.obj : Object Event has occurred
  1461. * : 02.e : Event Object
  1462. * Description : 화면 로딩 완료시
  1463. ****************************************************************************************/
  1464. function SMMNP00400_onload(obj:Form, e:LoadEventInfo)
  1465. {
  1466. ds_main_cond.setColumn(0, "refdeptflag", "A");
  1467. ds_main_cond.setColumn(0, "oprosette", "");
  1468. ds_main_cond.setColumn(0, "oproomcd", "");
  1469. ds_main_cond.setColumn(0, "orddept", "");
  1470. ds_main_cond.setColumn(0, "orddr", "");
  1471. ds_main_cond.setColumn(0, "opstat", "");
  1472. ds_main_cond.setColumn(0, "ccrtstat", "");
  1473. ds_temp.setColumn(0, "prncnt", "1");
  1474. grp_btn.grp_ordmn.visible = false;
  1475. group3.group2.grp_setting1.visible = true;
  1476. if( sysf_getUserInfo("dutplceinstcd") == "032" ){
  1477. grp_btn.grp_opmdisc.button6.visible = true;
  1478. }else{
  1479. grp_btn.grp_opmdisc.button6.visible = false;
  1480. }
  1481. reqOrderInfoOfCol("SMMNP00400", "group3.switch1.opmain.grd_oppatlist", "AN");
  1482. fInit();
  1483. fv_OrderDepth.fSetOPMode(); //SMMNW00300화면 안에있는 함수
  1484. //1. 바코드 라벨 설정값 조회
  1485. var scrnid = "SMMNP00400";
  1486. ds_barcdprntsetup.clearData();
  1487. fGetBarCodeInfo(scrnid); // CareCom.js
  1488. // 노드값을 컬럼 값으로 가져옴에 따라 DS 로 변환 처리 ---------------------------------------------------
  1489. //XML string 값을 파라미터로 넘김
  1490. //성공시 : 'success' 실패시 : 'error' 값을 리턴함
  1491. var sParamObj = new Object();
  1492. sParamObj.pathYN = 'N'; //dsvaluepath 컬럼 사용여부
  1493. var pXmlStr = ds_barcdprntsetup.getColumn(0, "prntsetupinfo");
  1494. var succYn = lf_convertXmlToDs(pXmlStr, sParamObj);
  1495. sysf_trace(succYn);
  1496. // => retrun DS
  1497. // : ds_data_setupinfo(prntkind, commkind)
  1498. // : ds_data_comm01(setupval)
  1499. // : ds_data_comm02(comm, databit, stopbit, baudrate, parity, setupval)
  1500. // : ds_data_comm03(setupval)
  1501. // : ds_data_blank(left, top)
  1502. // ------------------------------------------------------------------------------------------------------------
  1503. //2008.08.01 dhkim 추가
  1504. // 바코드OCX 생성
  1505. lzzfMakeBrcdPrntObjHanDo("CommAX");
  1506. }
  1507. /****************************************************************************************
  1508. * Components : Dataset
  1509. * Components ID : ds_main_cond
  1510. * Event : oncolumnchanged
  1511. * Argument : 01.obj : Object Event has occurred
  1512. * : 02.e : Event Object
  1513. * Description : 데이터셋 값 변경시
  1514. ****************************************************************************************/
  1515. function ds_main_cond_oncolumnchanged(obj:Dataset, e:DSColChangeEventInfo)
  1516. {
  1517. switch( e.columnid ){
  1518. case "oppatflag1" :
  1519. if( ds_main_cond.getColumn(0, "oppatflag1") != "I" ){
  1520. ds_main_cond.setColumn(0, "oppatflag1", "");
  1521. }
  1522. break;
  1523. case "oppatflag2" :
  1524. if( ds_main_cond.getColumn(0, "oppatflag2") != "D" ){
  1525. ds_main_cond.setColumn(0, "oppatflag2", "");
  1526. }
  1527. break;
  1528. case "oppatflag3" :
  1529. if( ds_main_cond.getColumn(0, "oppatflag3") != "O" ){
  1530. ds_main_cond.setColumn(0, "oppatflag3", "");
  1531. }
  1532. break;
  1533. case "oppatflag4" :
  1534. if( ds_main_cond.getColumn(0, "oppatflag4") != "E" ){
  1535. ds_main_cond.setColumn(0, "oppatflag4", "");
  1536. }
  1537. break;
  1538. case "oppatflag5" :
  1539. if( ds_main_cond.getColumn(0, "oppatflag5") != "I" ){
  1540. ds_main_cond.setColumn(0, "oppatflag5", "");
  1541. }
  1542. break;
  1543. case "anstmthdcd1" :
  1544. if( ds_main_cond.getColumn(0, "anstmthdcd1") != "01" ){
  1545. ds_main_cond.setColumn(0, "anstmthdcd1", "");
  1546. }
  1547. break;
  1548. case "anstmthdcd2" :
  1549. if( ds_main_cond.getColumn(0, "anstmthdcd2") != "03" ){
  1550. ds_main_cond.setColumn(0, "anstmthdcd2", "");
  1551. }
  1552. break;
  1553. case "anstmthdcd3" :
  1554. if( ds_main_cond.getColumn(0, "anstmthdcd3") != "02" ){
  1555. ds_main_cond.setColumn(0, "anstmthdcd3", "");
  1556. }
  1557. break;
  1558. case "calmflag" :
  1559. if( ds_main_cond.getColumn(0, "calmflag") != "Y" ){
  1560. ds_main_cond.setColumn(0, "calmflag", "");
  1561. }
  1562. break;
  1563. default :
  1564. break;
  1565. }
  1566. }
  1567. /****************************************************************************************
  1568. * Components : Combo
  1569. * Components ID : cmb_rosette
  1570. * Event : onitemchanged
  1571. * Argument : 01.obj : Object Event has occurred
  1572. * : 02.e : Event Object
  1573. * Description : 콤보 값 변경시
  1574. ****************************************************************************************/
  1575. function group3_group2_cmb_rosette_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
  1576. {
  1577. dsf_makeValue(ds_send, "opcnfmdd", "string", ds_main_cond.getColumn(0, "opddfr"));
  1578. dsf_makeValue(ds_send, "rosette", "string", ds_main_cond.getColumn(0, "oprosette"));
  1579. var oParam = {};
  1580. oParam.id = "TRMNP03002";
  1581. oParam.service = "opanstapp.OpAnstCCrtGoodMngt";
  1582. oParam.method = "reqGetOmcdlist";
  1583. oParam.inds = "req=ds_send";
  1584. oParam.outds = "ds_init_oproomlist=oproomlist";
  1585. oParam.async = false;
  1586. oParam.callback = "cf_TRMNP03002";
  1587. tranf_submit(oParam);
  1588. if( arErrorCode.pop("TRMNP03002") > -1 ){ // 수술실코드 가져오기
  1589. frmf_addComboItem("group3.group2.cmb_oproomlist", "전체", "", "above");
  1590. // group3.group2.cmb_oproomlist.index = -1;
  1591. // group3.group2.cmb_oproomlist.index = 0;
  1592. group3.group2.cmb_oproomlist.value = ds_main_cond.getColumn(0, "oproomcd");
  1593. }
  1594. }
  1595. function cf_TRMNP03002(sSvcId, nErrorCode, sErrorMsg) {
  1596. arErrorCode.push(sSvcId, nErrorCode);
  1597. }
  1598. /****************************************************************************************
  1599. * Components : Combo
  1600. * Components ID : cmb_orddept
  1601. * Event : onitemchanged
  1602. * Argument : 01.obj : Object Event has occurred
  1603. * : 02.e : Event Object
  1604. * Description : 콤보 값 변경시
  1605. ****************************************************************************************/
  1606. function group3_group2_cmb_orddept_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
  1607. {
  1608. if( utlf_isNull(ds_main_cond.getColumn(0, "orddept")) ){
  1609. ds_init_drlist.clearData();
  1610. }else{
  1611. ds_send_reqdata.copyRow(0, ds_main_cond, 0);
  1612. var oParam = {};
  1613. oParam.id = "TRMNP00101";
  1614. oParam.service = "opanstapp.OpAnstPatMngt";
  1615. oParam.method = "reqGetDrInfo";
  1616. oParam.inds = "reqdata=ds_send_reqdata";
  1617. oParam.outds = "ds_init_drlist=drlist";
  1618. oParam.async = false;
  1619. //oParam.callback = "cf_TRMNP00101";
  1620. tranf_submit(oParam);
  1621. frmf_addComboItem("group3.group2.cmb_drlist", "전 체", "", "above");
  1622. group3.group2.cmb_drlist.value = ds_main_cond.getColumn(0, "orddr");
  1623. }
  1624. }
  1625. /****************************************************************************************
  1626. * Components : CheckBox
  1627. * Components ID : chk_opflag
  1628. * Event : onchanged
  1629. * Argument : 01.obj : Object Event has occurred
  1630. * : 02.e : Event Object
  1631. * Description : 체크박스 값 변경시
  1632. ****************************************************************************************/
  1633. function group3_group2_chk_opflag1_onchanged(obj:CheckBox, e:CheckBoxChangeEventInfo)
  1634. {
  1635. if( ds_main_cond.getColumn(0, "opflag1") == "1" || ds_main_cond.getColumn(0, "opflag1") == "2" || ds_main_cond.getColumn(0, "opflag1") == "3" ){//정규, 응급, 추가 체크시 취소 비활성화
  1636. group3.group2.chk_opflag4.enable = false;
  1637. }else{
  1638. group3.group2.chk_opflag4.enable = true;
  1639. }
  1640. }
  1641. /****************************************************************************************
  1642. * Components : CheckBox
  1643. * Components ID : chk_opflag
  1644. * Event : onchanged
  1645. * Argument : 01.obj : Object Event has occurred
  1646. * : 02.e : Event Object
  1647. * Description : 체크박스 값 변경시
  1648. ****************************************************************************************/
  1649. function group3_group2_chk_opflag2_onchanged(obj:CheckBox, e:CheckBoxChangeEventInfo)
  1650. {
  1651. if( ds_main_cond.getColumn(0, "opflag1") == "1" || ds_main_cond.getColumn(0, "opflag1") == "2" || ds_main_cond.getColumn(0, "opflag1") == "3" ){//정규, 응급, 추가 체크시 취소 비활성화
  1652. group3.group2.chk_opflag4.enable = false;
  1653. }else{
  1654. group3.group2.chk_opflag4.enable = true;
  1655. }
  1656. }
  1657. /****************************************************************************************
  1658. * Components : CheckBox
  1659. * Components ID : chk_opflag
  1660. * Event : onchanged
  1661. * Argument : 01.obj : Object Event has occurred
  1662. * : 02.e : Event Object
  1663. * Description : 체크박스 값 변경시
  1664. ****************************************************************************************/
  1665. function group3_group2_chk_opflag3_onchanged(obj:CheckBox, e:CheckBoxChangeEventInfo)
  1666. {
  1667. if( ds_main_cond.getColumn(0, "opflag1") == "1" || ds_main_cond.getColumn(0, "opflag1") == "2" || ds_main_cond.getColumn(0, "opflag1") == "3" ){//정규, 응급, 추가 체크시 취소 비활성화
  1668. group3.group2.chk_opflag4.enable = false;
  1669. }else{
  1670. group3.group2.chk_opflag4.enable = true;
  1671. }
  1672. }
  1673. /****************************************************************************************
  1674. * Components : CheckBox
  1675. * Components ID : chk_opflag4
  1676. * Event : onchanged
  1677. * Argument : 01.obj : Object Event has occurred
  1678. * : 02.e : Event Object
  1679. * Description : 체크박스 값 변경시
  1680. ****************************************************************************************/
  1681. function group3_group2_chk_opflag4_onchanged(obj:CheckBox, e:CheckBoxChangeEventInfo)
  1682. {
  1683. if( ds_main_cond.getColumn(0, "opflag4") == "4" ){//취소 체크시 정규,응급,추가 비활성화
  1684. group3.group2.chk_opflag1.enable = false;
  1685. group3.group2.chk_opflag2.enable = false;
  1686. group3.group2.chk_opflag3.enable = false;
  1687. group3.group2.cmb_opstatlist.value = "";
  1688. group3.group2.cmb_opstatlist.enable = false;
  1689. group3.group2.cmb_ccrtstatlist.value = "";
  1690. group3.group2.cmb_ccrtstatlist.enable = false;
  1691. }else {
  1692. group3.group2.chk_opflag1.enable = true;
  1693. group3.group2.chk_opflag2.enable = true;
  1694. group3.group2.chk_opflag3.enable = true;
  1695. group3.group2.cmb_opstatlist.value = "";
  1696. group3.group2.cmb_opstatlist.enable = true;
  1697. group3.group2.cmb_ccrtstatlist.value = "";
  1698. group3.group2.cmb_ccrtstatlist.enable = true;
  1699. }
  1700. }
  1701. /****************************************************************************************
  1702. * Components : Button
  1703. * Components ID : btn_srch
  1704. * Event : onclick
  1705. * Argument : 01.obj : Object Event has occurred
  1706. * : 02.e : Event Object
  1707. * Description : 조회버튼 클릭시
  1708. ****************************************************************************************/
  1709. function group3_group2_button4_onclick(obj:Button, e:ClickEventInfo)
  1710. {
  1711. if( group3.switch1.tabindex == 0 ){
  1712. fSelectPos();
  1713. }else{
  1714. fv_OrderDepth.fGetOMPatList("op");
  1715. }
  1716. }
  1717. /****************************************************************************************
  1718. * Components : Grid
  1719. * Components ID : grd_oppatlist
  1720. * Event : oncelldblclick
  1721. * Argument : 01.obj : Object Event has occurred
  1722. * : 02.e : Event Object
  1723. * Description : 그리드 셀 더블클릭시
  1724. ****************************************************************************************/
  1725. function group3_switch1_opmain_grd_oppatlist_oncelldblclick(obj:Grid, e:GridClickEventInfo)
  1726. {
  1727. fSetParam(); // 환자 화면상단정보 설정
  1728. if( e.col == group3.switch1.opmain.grd_oppatlist.getBindCellIndex("body", "disp1img") && ds_main_opPatlist_opPatInfo.getColumn(ds_main_opPatlist_opPatInfo.rowposition, "disp1") ){
  1729. dsf_makeValue(ds_send, "infection", "string", "B");
  1730. var objArg = new Object();
  1731. objArg.arg_ds_send = ds_send;
  1732. frmf_open("SPASB01600", "SPASB01600", objArg, null, "", "", "", null, null, null, null, null, "M"); //실질적인 화면은 SMASB01100
  1733. }else if( e.col == group3.switch1.opmain.grd_oppatlist.getBindCellIndex("body", "disp2img") && ds_main_opPatlist_opPatInfo.getColumn(ds_main_opPatlist_opPatInfo.rowposition, "disp2") ){
  1734. dsf_makeValue(ds_send, "infection", "string", "C");
  1735. var objArg = new Object();
  1736. objArg.arg_ds_send = ds_send;
  1737. frmf_open("SPASB01600", "SPASB01600", objArg, null, "", "", "", null, null, null, null, null, "M");
  1738. }else if( e.col == group3.switch1.opmain.grd_oppatlist.getBindCellIndex("body", "disp3img") && ds_main_opPatlist_opPatInfo.getColumn(ds_main_opPatlist_opPatInfo.rowposition, "disp3") ){
  1739. dsf_makeValue(ds_send, "infection", "string", "A");
  1740. var objArg = new Object();
  1741. objArg.arg_ds_send = ds_send;
  1742. frmf_open("SPASB01600", "SPASB01600", objArg, null, "", "", "", null, null, null, null, null, "M");
  1743. }
  1744. // 20190314 김현석, 감염정보 (비말주의) 항목 추가
  1745. else if( e.col == group3.switch1.opmain.grd_oppatlist.getBindCellIndex("body", "disp4img") && ds_main_opPatlist_opPatInfo.getColumn(ds_main_opPatlist_opPatInfo.rowposition, "disp4") ){
  1746. dsf_makeValue(ds_send, "infection", "string", "D");
  1747. var objArg = new Object();
  1748. objArg.arg_ds_send = ds_send;
  1749. frmf_open("SPASB01600", "SPASB01600", objArg, null, "", "", "", null, null, null, null, null, "M");
  1750. }
  1751. }
  1752. /****************************************************************************************
  1753. * Components : Grid
  1754. * Components ID : grd_oppatlist
  1755. * Event : onrbuttondown
  1756. * Argument : 01.obj : Object Event has occurred
  1757. * : 02.e : Event Object
  1758. * Description : 마우스 우클릭시
  1759. ****************************************************************************************/
  1760. function group3_switch1_opmain_grd_oppatlist_onrbuttondown(obj:Grid, e:GridMouseEventInfo)
  1761. {
  1762. if( e.row > -1 ){
  1763. grdf_setSelectedCell(obj, e); // 선택된 행 확실히 선택해줌
  1764. pMenu_oppatlistmenu.trackPopup(e.screenX, e.screenY);
  1765. }
  1766. return true;
  1767. }
  1768. /****************************************************************************************
  1769. * Components : PopupMenu
  1770. * Components ID : pMenu_oppatlistmenu
  1771. * Event : onmenuclick
  1772. * Argument : 01.obj : Object Event has occurred
  1773. * : 02.e : Event Object
  1774. * Description : 팝업메뉴 클릭시
  1775. ****************************************************************************************/
  1776. function pMenu_oppatlistmenu_onmenuclick(obj:PopupMenu, e:MenuClickEventInfo)
  1777. {
  1778. fShowPopup(e.id);
  1779. }
  1780. /****************************************************************************************
  1781. * Components : Grid
  1782. * Components ID : grd_oppatlist
  1783. * Event : oncellclick
  1784. * Argument : 01.obj : Object Event has occurred
  1785. * : 02.e : Event Object
  1786. * Description : 그리드 셀 클릭시
  1787. ****************************************************************************************/
  1788. function group3_switch1_opmain_grd_oppatlist_oncellclick(obj:Grid, e:GridClickEventInfo)
  1789. {
  1790. var sCol = e.col;
  1791. var sRow = group3.switch1.opmain.grd_oppatlist.currentrow;
  1792. // alert(sCol);
  1793. if( sCol == group3.switch1.opmain.grd_oppatlist.getBindCellIndex("body", "delivefactyn") && !utlf_isNull(ds_main_opPatlist_opPatInfo.getColumn(sRow, "delivefact")) ){
  1794. //var oprsrvno = model.getValue("/root/main/opPatlist/opPatInfo[" + sRow + "]/oprsrvno");
  1795. //setParameter("oprsrvno", oprsrvno);
  1796. //modal("SMMNP00101" ,"", "100", "100", "SMMNP00101", "", "");
  1797. //fSelectPos();
  1798. var sDelivefact = ds_main_opPatlist_opPatInfo.getColumn(sRow, "delivefact");
  1799. frmf_setParameter("delivefact", sDelivefact);
  1800. frmf_modal("SMMNP00101","SMMNP00101",null,"",1,100,100,"","","","","","M"); //yjh : 커밋
  1801. }
  1802. }
  1803. /****************************************************************************************
  1804. * Components : Edit
  1805. * Components ID : ipt_patcntctel
  1806. * Event : onkeyup
  1807. * Argument : 01.obj : Object Event has occurred
  1808. * : 02.e : Event Object
  1809. * Description : 에디트 키 입력시
  1810. ****************************************************************************************/
  1811. function group3_group5_ipt_patcntctel_onkeyup(obj:Edit, e:KeyEventInfo)
  1812. {
  1813. if( e.keycode == 13 ){
  1814. obj.updateToDataset();
  1815. group3.group5.btn_prtlabel.click();
  1816. }
  1817. }
  1818. /****************************************************************************************
  1819. * Components : Button
  1820. * Components ID : button5
  1821. * Event : onclick
  1822. * Argument : 01.obj : Object Event has occurred
  1823. * : 02.e : Event Object
  1824. * Description : 취소버튼 클릭시
  1825. ****************************************************************************************/
  1826. function group3_group5_button5_onclick(obj:Button, e:ClickEventInfo)
  1827. {
  1828. ds_temp.setColumn(0, "prncnt", "1");
  1829. group3.group5.visible = false;
  1830. }
  1831. /****************************************************************************************
  1832. * Components : Button
  1833. * Components ID : btn_prtlabel
  1834. * Event : onclick
  1835. * Argument : 01.obj : Object Event has occurred
  1836. * : 02.e : Event Object
  1837. * Description : 확인버튼 클릭시
  1838. ****************************************************************************************/
  1839. function group3_group5_btn_prtlabel_onclick(obj:Button, e:ClickEventInfo)
  1840. {
  1841. var iRow = -1;
  1842. iRow = group3.switch1.opmain.grd_oppatlist.currentrow;
  1843. var pid = ds_main_opPatlist_opPatInfo.getColumn(iRow, "pid");
  1844. var hngnm = ds_main_opPatlist_opPatInfo.getColumn(iRow, "hngnm");
  1845. var sexage = ds_main_opPatlist_opPatInfo.getColumn(iRow, "sa");
  1846. var oproomcdnm = ds_main_opPatlist_opPatInfo.getColumn(iRow, "oproomcdnm");
  1847. var depthngnm = ds_main_opPatlist_opPatInfo.getColumn(iRow, "depthngnm");
  1848. var roomcd = ds_main_opPatlist_opPatInfo.getColumn(iRow, "roomcd");
  1849. var prncnt = ds_temp.getColumn(0, "prncnt");
  1850. var pport = "";
  1851. fPrintNameLabel(pid, hngnm, sexage, oproomcdnm, depthngnm, prncnt, pport, roomcd, "N");
  1852. group3.group5.visible = false;
  1853. }
  1854. /****************************************************************************************
  1855. * Components : Button
  1856. * Components ID : button2
  1857. * Event : onclick
  1858. * Argument : 01.obj : Object Event has occurred
  1859. * : 02.e : Event Object
  1860. * Description : 프린터설정버튼 클릭시
  1861. ****************************************************************************************/
  1862. function grp_btn_grp_opmdisc_button2_onclick(obj:Button, e:ClickEventInfo)
  1863. {
  1864. //fOpenBrcdPrnt();
  1865. //20101118_KNUH_김병국주석처리 수정
  1866. // 바코드 프린터 설정_20090521(ByJA)
  1867. var scrnid = "SMMNP00400";
  1868. ds_barcdprntsetup.clearData();
  1869. fGetBarCodeInfo(scrnid); // CareCom.js
  1870. // 노드값을 컬럼 값으로 가져옴에 따라 DS 로 변환 처리 ---------------------------------------------------
  1871. //XML string 값을 파라미터로 넘김
  1872. //성공시 : 'success' 실패시 : 'error' 값을 리턴함
  1873. var sParamObj = new Object();
  1874. sParamObj.pathYN = 'N'; //dsvaluepath 컬럼 사용여부
  1875. var pXmlStr = ds_barcdprntsetup.getColumn(0, "prntsetupinfo");
  1876. var succYn = lf_convertXmlToDs(pXmlStr, sParamObj);
  1877. sysf_trace(succYn);
  1878. // => retrun DS
  1879. // : ds_data_setupinfo(prntkind, commkind)
  1880. // : ds_data_comm01(setupval)
  1881. // : ds_data_comm02(comm, databit, stopbit, baudrate, parity, setupval)
  1882. // : ds_data_comm03(setupval)
  1883. // : ds_data_blank(left, top)
  1884. // ------------------------------------------------------------------------------------------------------------
  1885. var count = ds_data_setupinfo.rowcount;
  1886. if(count == 0) {
  1887. ds_data_setupinfo.addRow();
  1888. }
  1889. var objArg = new Object();
  1890. objArg.arg_sSetupInfo = ds_barcdprntsetup.getColumn(0, "prntsetupinfo");
  1891. objArg.arg_sCallBackFunction = "lf_convertXmlToDs";
  1892. frmf_modal("SPZUR00300","SPZUR00300",objArg,"","","","","","","","","","M");
  1893. // 바코드 프린터 설정_20101118_KNNUH주석처리.
  1894. /*
  1895. var scrnid = "SMMNI00100";
  1896. model.removeNodeset("/root/main/barcdprntsetup");
  1897. fGetBarCodeInfo(scrnid); // CareCom.js
  1898. var count = getNodesetCount("/root/main/barcdprntsetup/prntsetupinfo/setupinfo");
  1899. if(count == 0) {
  1900. model.makeNode("/root/main/barcdprntsetup/prntsetupinfo/setupinfo");
  1901. }
  1902. modal("SPLLC90100" , "","","","","/root/main/barcdprntsetup/prntsetupinfo/setupinfo", "/root/main/barcdprntsetup/prntsetupinfo/setupinfo");
  1903. */
  1904. }
  1905. /****************************************************************************************
  1906. * Components : Button
  1907. * Components ID : button6
  1908. * Event : onclick
  1909. * Argument : 01.obj : Object Event has occurred
  1910. * : 02.e : Event Object
  1911. * Description : 예방적항생제버튼 클릭시
  1912. ****************************************************************************************/
  1913. function grp_btn_grp_opmdisc_button6_onclick(obj:Button, e:ClickEventInfo)
  1914. {
  1915. frmf_open("SMMNP22000", "SMMNP22000", null, null, 1, 100, 100, null, null, null, null, null, "M");
  1916. }
  1917. /****************************************************************************************
  1918. * Components : Button
  1919. * Components ID : button
  1920. * Event : onclick
  1921. * Argument : 01.obj : Object Event has occurred
  1922. * : 02.e : Event Object
  1923. * Description : 컬럼설정버튼 클릭시
  1924. ****************************************************************************************/
  1925. function grp_btn_grp_opmdisc_button_onclick(obj:Button, e:ClickEventInfo)
  1926. {
  1927. frmf_setParameter("SPMMB02400_param_scrnid" , "SMMNP00400");
  1928. frmf_setParameter("SPMMB02400_param_grdid" , "grd_anpatlist");
  1929. frmf_setParameter("SPMMB02400_param_caseid" , "AN");
  1930. frmf_setParameter("SPMMB02400_param_compscd" , "AN");
  1931. frmf_modal("SPMNB02500","SPMNB02500","","","","","","","","","","","M"); //yjh : 커밋
  1932. var useyn = frmf_getParameter("SPMMB02400_rtn_useyn");
  1933. if(useyn == "Y"){
  1934. ds_chngcol.setColumn(0, "chngcolflag", "Y");
  1935. reqOrderInfoOfCol("SMMNP00400", "group3.switch1.opmain.grd_oppatlist", "AN");
  1936. fv_OrderDepth.fGetOMPatList("op");
  1937. }
  1938. }
  1939. /****************************************************************************************
  1940. * Components : Button
  1941. * Components ID : bnt_output
  1942. * Event : onclick
  1943. * Argument : 01.obj : Object Event has occurred
  1944. * : 02.e : Event Object
  1945. * Description : 출력버튼 클릭시
  1946. ****************************************************************************************/
  1947. function grp_btn_grp_opmdisc_bnt_output_onclick(obj:Button, e:ClickEventInfo)
  1948. {
  1949. var objDOM = rptf_createDOM(); // DOM 객체 설정
  1950. // rptf_setNodeListToDOM(objDOM, "root/main/opPatlist", ds_main_opPatlist_opPatInfo); // 데이터셋
  1951. rptf_setNodeListToDOM(objDOM, "root/main/opPatlist/opPatInfo", ds_main_opPatlist_opPatInfo); // 데이터셋
  1952. // rptf_setNodeListToDOM(objDOM, "root/main/opPatlist/opPatInfo", ds_main_opPatlist_opPatInfo); // 데이터셋
  1953. var objParam = new Object();
  1954. objParam.xml_data_XML1 = objDOM.documentElement.source; // 최상의노드 XML 스트링 추출
  1955. objParam.xml_data_XML2 = objDOM.documentElement.source; // 최상의노드 XML 스트링 추출
  1956. var opnmen = ds_temp.getColumn(0, "opnmen");
  1957. var diagnmen = ds_temp.getColumn(0, "diagnmen");
  1958. if( opnmen == "Y" ) {
  1959. objParam.opnmflag = "E";
  1960. }else {
  1961. objParam.opnmflag = "H";
  1962. }
  1963. // 진단명(영문/한글)별 출력화면 달리 설정_손성훈.
  1964. if( diagnmen == "Y" ) {
  1965. objParam.diagnmflag = "E";
  1966. }else {
  1967. objParam.diagnmflag = "H";
  1968. }
  1969. var option = "open=1;save=1;directprint=0;print=1;zoom=0;";
  1970. rptf_exeReportPreview30(["RPMNP00101"],[objParam], option);
  1971. }
  1972. /****************************************************************************************
  1973. * Components : Button
  1974. * Components ID : bnt_excel
  1975. * Event : onclick
  1976. * Argument : 01.obj : Object Event has occurred
  1977. * : 02.e : Event Object
  1978. * Description : Excel버튼 클릭시
  1979. ****************************************************************************************/
  1980. function grp_btn_grp_opmdisc_bnt_excel_onclick(obj:Button, e:ClickEventInfo)
  1981. {
  1982. fSaveExcel();
  1983. }
  1984. /****************************************************************************************
  1985. * Components : Button
  1986. * Components ID : button3
  1987. * Event : onclick
  1988. * Argument : 01.obj : Object Event has occurred
  1989. * : 02.e : Event Object
  1990. * Description : 라벨전체출력버튼 클릭시
  1991. ****************************************************************************************/
  1992. function grp_btn_grp_opmdisc_button3_onclick(obj:Button, e:ClickEventInfo)
  1993. {
  1994. //var rtn = sysf_messageBox("전체출력하시겠습니까?", "Q");
  1995. var rtn = sysf_messageBox("전체출력", "S003", "환자별 출력수를 지정");
  1996. if(rtn == "6") {
  1997. fPrintNameLabel("", "", "", "", "", 1, "","", "Y");
  1998. }
  1999. else if(rtn == "7"){
  2000. ds_prnt_opPatlist.clearData();
  2001. var pid, hngnm, sexage, oproomcdnm, depthngnm, roomcd;
  2002. var prndd = utlf_getCurrentDate().substr(0,4) + "/" + utlf_getCurrentDate().substr(4,2) + "/" + utlf_getCurrentDate().substr(6,2);
  2003. for(var i=0; i<ds_main_opPatlist_opPatInfo.rowcount; i++){
  2004. pid = ds_main_opPatlist_opPatInfo.getColumn(i, "pid");
  2005. hngnm = ds_main_opPatlist_opPatInfo.getColumn(i, "hngnm");
  2006. sexage = ds_main_opPatlist_opPatInfo.getColumn(i, "sa");
  2007. oproomcdnm = ds_main_opPatlist_opPatInfo.getColumn(i, "oproomcdnm");
  2008. depthngnm = ds_main_opPatlist_opPatInfo.getColumn(i, "depthngnm");
  2009. roomcd = ds_main_opPatlist_opPatInfo.getColumn(i, "roomcd");
  2010. var nAddRow = ds_prnt_opPatlist.addRow();
  2011. ds_prnt_opPatlist.setColumn(nAddRow, "pid", pid);
  2012. ds_prnt_opPatlist.setColumn(nAddRow, "hngnm", hngnm);
  2013. ds_prnt_opPatlist.setColumn(nAddRow, "sa", sexage);
  2014. ds_prnt_opPatlist.setColumn(nAddRow, "oproomcdnm", oproomcdnm);
  2015. ds_prnt_opPatlist.setColumn(nAddRow, "depthngnm", depthngnm);
  2016. ds_prnt_opPatlist.setColumn(nAddRow, "roomcd", roomcd);
  2017. ds_prnt_opPatlist.setColumn(nAddRow, "prntcnt", 1);
  2018. }
  2019. div_Prnt.position.x = obj.position.x - div_Prnt.position.width + obj.position.width;
  2020. div_Prnt.visible = true;
  2021. }
  2022. }
  2023. function div_Prnt_edt_allcnt_onkeyup(obj:Edit, e:KeyEventInfo)
  2024. {
  2025. if(e.keycode == 13){
  2026. if( !utlf_isNull(obj.value) && obj.value > 0 ){
  2027. dsf_setFixVal(ds_prnt_opPatlist, "prntcnt:"+obj.value);
  2028. }else{
  2029. sysf_messageBox("0 이상의 값을 입력하시기 바랍니다.", "I");
  2030. }
  2031. }
  2032. }
  2033. function ds_prnt_opPatlist_oncolumnchanged(obj:Dataset, e:DSColChangeEventInfo)
  2034. {
  2035. if( e.columnid == "prntcnt" ){
  2036. if( e.newvalue == "0" ){
  2037. obj.setColumn(e.row, e.col, utlf_transNullToChar(e.oldvalue, 1));
  2038. }
  2039. }
  2040. }
  2041. function div_Prnt_btn_cncl_onclick(obj:Button, e:ClickEventInfo)
  2042. {
  2043. div_Prnt.visible = false;
  2044. }
  2045. function div_Prnt_btn_prnt_onclick(obj:Button, e:ClickEventInfo)
  2046. {
  2047. fPrintNameLabel("", "", "", "", "", 1, "","", "T");
  2048. }
  2049. function group3_group1_chk_opnmen_onclick(obj:CheckBox, e:ClickEventInfo)
  2050. {
  2051. var objGrdOppatlist = group3.switch1.opmain.grd_oppatlist;
  2052. if( group3.group1.chk_opnmen.value == "Y" ){
  2053. objGrdOppatlist.setRealColSize(objGrdOppatlist.getBindCellIndex("body", "opcdenm"), objGrdOppatlist.getFormatColProperty(objGrdOppatlist.getBindCellIndex("body", "opcdenm"), "size"), false);
  2054. //grd_oppatlist.colWidth(grd_oppatlist.colRef("opcdenm")) = "115";
  2055. }else{
  2056. objGrdOppatlist.setRealColSize(objGrdOppatlist.getBindCellIndex("body", "opcdenm"), 0, false);
  2057. //grd_oppatlist.colWidth(grd_oppatlist.colRef("opcdenm")) = "0";
  2058. }
  2059. }
  2060. function group3_group1_chk_opnmkr_onclick(obj:CheckBox, e:ClickEventInfo)
  2061. {
  2062. var objGrdOppatlist = group3.switch1.opmain.grd_oppatlist;
  2063. if( group3.group1.chk_opnmkr.value == "Y" ){
  2064. objGrdOppatlist.setRealColSize(objGrdOppatlist.getBindCellIndex("body", "opcdknm"), objGrdOppatlist.getFormatColProperty(objGrdOppatlist.getBindCellIndex("body", "opcdknm"), "size"), false);
  2065. //grd_oppatlist.colWidth(grd_oppatlist.colRef("opcdknm")) = "115";
  2066. }else{
  2067. objGrdOppatlist.setRealColSize(objGrdOppatlist.getBindCellIndex("body", "opcdknm"), 0, false);
  2068. //grd_oppatlist.colWidth(grd_oppatlist.colRef("opcdknm")) = "0";
  2069. }
  2070. }
  2071. function group3_group1_chk_afopnm_onclick(obj:CheckBox, e:ClickEventInfo)
  2072. {
  2073. var objGrdOppatlist = group3.switch1.opmain.grd_oppatlist;
  2074. if( group3.group1.chk_afopnm.value == "Y" ){
  2075. objGrdOppatlist.setRealColSize(objGrdOppatlist.getBindCellIndex("body", "afopnm"), objGrdOppatlist.getFormatColProperty(objGrdOppatlist.getBindCellIndex("body", "afopnm"), "size"), false);
  2076. //grd_oppatlist.colWidth(grd_oppatlist.colRef("afopnm")) = "115";
  2077. }else{
  2078. objGrdOppatlist.setRealColSize(objGrdOppatlist.getBindCellIndex("body", "afopnm"), 0, false);
  2079. //grd_oppatlist.colWidth(grd_oppatlist.colRef("afopnm")) = "0";
  2080. }
  2081. }
  2082. function group3_group1_chk_diagnmen_onclick(obj:CheckBox, e:ClickEventInfo)
  2083. {
  2084. var objGrdOppatlist = group3.switch1.opmain.grd_oppatlist;
  2085. if( group3.group1.chk_diagnmen.value == "Y" ){
  2086. objGrdOppatlist.setRealColSize(objGrdOppatlist.getBindCellIndex("body", "diagengnm"), objGrdOppatlist.getFormatColProperty(objGrdOppatlist.getBindCellIndex("body", "diagengnm"), "size"), false);
  2087. //grd_oppatlist.colWidth(grd_oppatlist.colRef("opcdenm")) = "115";
  2088. }else{
  2089. objGrdOppatlist.setRealColSize(objGrdOppatlist.getBindCellIndex("body", "diagengnm"), 0, false);
  2090. //grd_oppatlist.colWidth(grd_oppatlist.colRef("opcdenm")) = "0";
  2091. }
  2092. }
  2093. function group3_group1_chk_diagnmkr_onclick(obj:CheckBox, e:ClickEventInfo)
  2094. {
  2095. var objGrdOppatlist = group3.switch1.opmain.grd_oppatlist;
  2096. if( group3.group1.chk_diagnmkr.value == "Y" ){
  2097. objGrdOppatlist.setRealColSize(objGrdOppatlist.getBindCellIndex("body", "diagcdnm"), objGrdOppatlist.getFormatColProperty(objGrdOppatlist.getBindCellIndex("body", "diagcdnm"), "size"), false);
  2098. //grd_oppatlist.colWidth(grd_oppatlist.colRef("opcdknm")) = "115";
  2099. }else{
  2100. objGrdOppatlist.setRealColSize(objGrdOppatlist.getBindCellIndex("body", "diagcdnm"), 0, false);
  2101. //grd_oppatlist.colWidth(grd_oppatlist.colRef("opcdknm")) = "0";
  2102. }
  2103. }
  2104. function group3_switch1_onchanged(obj:Tab, e:TabIndexChangeEventInfo)
  2105. {
  2106. switch( e.postindex ){
  2107. case 0 :
  2108. var selFlag = "opm";
  2109. grp_btn.grp_ordmn.visible = false;
  2110. grp_btn.grp_opmdisc.visible = true;
  2111. //grp_opm.visible = true;
  2112. //grp_ordmn.visible = false;
  2113. //sha_state.visible = true;
  2114. //cap_state.visible = true;
  2115. //roundrect1.visible = true;
  2116. //cap_state.visible = true;
  2117. //grp_ordmn.visible = false;
  2118. group3.group1.visible = true;
  2119. fSeletedToggle( selFlag );
  2120. break;
  2121. case 1 :
  2122. var selFlag = "ordmn";
  2123. grp_btn.grp_ordmn.visible = true;
  2124. grp_btn.grp_opmdisc.visible = false;
  2125. //grp_opm.visible = false;
  2126. //grp_ordmn.visible = true;
  2127. //sha_state.visible = false;
  2128. //cap_state.visible = false;
  2129. //roundrect1.visible = false;
  2130. //cap_state.visible = false;
  2131. group3.group1.visible = false;
  2132. fSeletedToggle( selFlag );
  2133. break;
  2134. default :
  2135. break;
  2136. }
  2137. }
  2138. function group3_switch1_onlbuttondown(obj:Tab, e:TabMouseEventInfo)
  2139. {
  2140. if(e.fromreferenceobject.name == "switch1"){
  2141. var sIdx = obj.getIndex(e.clientX, e.canvasY);
  2142. if( sIdx != -1){
  2143. if( e.index == sIdx ){
  2144. obj.tabindex = sIdx;
  2145. frmf_inputEnterKey("group3.switch1", "onchanged", new TabIndexChangeEventInfo);
  2146. }
  2147. }
  2148. }
  2149. }
  2150. function group3_group2_cmb_drlist_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
  2151. {
  2152. ds_main_cond.setColumn(0, "orddr", obj.value);
  2153. }
  2154. function group3_group2_cmb_oproomlist_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
  2155. {
  2156. ds_main_cond.setColumn(0, "oproomcd", obj.value);
  2157. }
  2158. ]]></Script>
  2159. </Form>
  2160. </FDL>