SMRSD00500_물품청구관리(성의교정).xfdl 129 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FDL version="1.5">
  3. <TypeDefinition url="..\..\..\default_typedef.xml"/>
  4. <Form id="SMRSD00500" position="absolute 0 0 1200 783" titletext="물품청구관리_성의교정" oninit="SMRSD00500_oninit" onload="SMRSD00500_onload">
  5. <Layouts>
  6. <Layout>
  7. <Tab id="swt_search" taborder="4" tabindex="0" position="absolute 0 143 583 758" onchanged="swt_search_onchanged">
  8. <Tabpages>
  9. <Tabpage id="tabpage3" text="물품청구내역"/>
  10. <Tabpage id="gd_set" text="청구 Set 목록">
  11. <Layouts>
  12. <Layout>
  13. <Grid id="grd_setlist" taborder="4" binddataset="ds_main_list_reqmst_reqsetmst" autoenter="select" useinputpanel="false" cellsizingtype="col" autofittype="col" position="absolute 0 25 300 150" oncellclick="swt_search_gd_set_grd_setlist_oncellclick">
  14. <Formats>
  15. <Format id="default">
  16. <Columns>
  17. <Column size="23"/>
  18. <Column size="0"/>
  19. <Column size="0"/>
  20. <Column size="0"/>
  21. <Column size="0"/>
  22. <Column size="257"/>
  23. <Column size="0"/>
  24. <Column size="0"/>
  25. <Column size="0"/>
  26. <Column size="0"/>
  27. <Column size="0"/>
  28. <Column size="0"/>
  29. </Columns>
  30. <Rows>
  31. <Row size="24" band="head"/>
  32. <Row size="24"/>
  33. </Rows>
  34. <Band id="head">
  35. <Cell/>
  36. <Cell col="1" text="기관코드"/>
  37. <Cell col="2" text="청구부서"/>
  38. <Cell col="3" text="청구주기"/>
  39. <Cell col="4" text="청구주기"/>
  40. <Cell col="5" text="청구SET명"/>
  41. <Cell col="6" text="물품구분"/>
  42. <Cell col="7" text="물품코드"/>
  43. <Cell col="8" text="물품명"/>
  44. <Cell col="9" text="청구량"/>
  45. <Cell col="10" text="청구단위"/>
  46. <Cell col="11" text="setcd"/>
  47. </Band>
  48. <Band id="body">
  49. <Cell celltype="head" expr="currow+1"/>
  50. <Cell col="1" text="bind:instcd"/>
  51. <Cell col="2" text="bind:reqdeptcd"/>
  52. <Cell col="3" text="bind:reqprid"/>
  53. <Cell col="4" text="bind:reqprnm"/>
  54. <Cell col="5" text="bind:goodsetnm"/>
  55. <Cell col="6" text="bind:goodflag"/>
  56. <Cell col="7" text="bind:goodcd"/>
  57. <Cell col="8" text="bind:goodnm"/>
  58. <Cell col="9" text="bind:goodqty"/>
  59. <Cell col="10" text="bind:requnit"/>
  60. <Cell col="11" text="bind:goodsetcd"/>
  61. </Band>
  62. </Format>
  63. </Formats>
  64. </Grid>
  65. <Shape id="line3" class="line_10" position="absolute 0 20 300 26"/>
  66. <Static id="caption17" text="부서 청구SET" class="tit_2" position="absolute 0 4 108 25"/>
  67. <Shape id="line1" class="line_10" position="absolute 0 184 574 190"/>
  68. <Grid id="grd_reqset" taborder="5" binddataset="ds_main_list_reqset_reqsetlist" autoenter="select" useinputpanel="false" cellsizingtype="col" position="absolute 0 189 575 585" oncellclick="swt_search_gd_set_grd_reqset_oncellclick" anchor="left top bottom">
  69. <Formats>
  70. <Format id="default">
  71. <Columns>
  72. <Column size="24"/>
  73. <Column size="22"/>
  74. <Column size="0"/>
  75. <Column size="0"/>
  76. <Column size="0"/>
  77. <Column size="0"/>
  78. <Column size="63"/>
  79. <Column size="0"/>
  80. <Column size="195"/>
  81. <Column size="50"/>
  82. <Column size="56"/>
  83. <Column size="90"/>
  84. <Column size="58"/>
  85. <Column size="50"/>
  86. <Column size="0"/>
  87. <Column size="0"/>
  88. <Column size="0"/>
  89. <Column size="0"/>
  90. <Column size="0"/>
  91. <Column size="0"/>
  92. <Column size="0"/>
  93. <Column size="0"/>
  94. <Column size="0"/>
  95. <Column size="0"/>
  96. <Column size="0"/>
  97. <Column size="0"/>
  98. <Column size="0"/>
  99. </Columns>
  100. <Rows>
  101. <Row size="24" band="head"/>
  102. <Row size="24"/>
  103. </Rows>
  104. <Band id="head">
  105. <Cell/>
  106. <Cell col="1" displaytype="checkbox" edittype="checkbox"/>
  107. <Cell col="2" text="기관코드"/>
  108. <Cell col="3" text="청구부서"/>
  109. <Cell col="4" text="청구주기"/>
  110. <Cell col="5" text="물품구분"/>
  111. <Cell col="6" text="물품코드"/>
  112. <Cell col="7" text="물품코드"/>
  113. <Cell col="8" text="물품명"/>
  114. <Cell col="9" text="규격"/>
  115. <Cell col="10" text="모델"/>
  116. <Cell col="11" text="포장구성단위"/>
  117. <Cell col="12" text="제조원"/>
  118. <Cell col="13" text="주기"/>
  119. <Cell col="14"/>
  120. <Cell col="15"/>
  121. <Cell col="16"/>
  122. <Cell col="17"/>
  123. <Cell col="18"/>
  124. <Cell col="19"/>
  125. <Cell col="20"/>
  126. <Cell col="21"/>
  127. <Cell col="22"/>
  128. <Cell col="23"/>
  129. <Cell col="24"/>
  130. <Cell col="25"/>
  131. <Cell col="26"/>
  132. </Band>
  133. <Band id="body">
  134. <Cell celltype="head" expr="currow+1"/>
  135. <Cell col="1" displaytype="checkbox" edittype="checkbox" text="bind:select" expr="expr:select == 'true' ? 1 : 0"/>
  136. <Cell col="2" text="bind:instcd"/>
  137. <Cell col="3" text="bind:reqdeptcd"/>
  138. <Cell col="4" text="bind:reqprid"/>
  139. <Cell col="5" text="bind:goodflagnm"/>
  140. <Cell col="6" text="bind:goodcd"/>
  141. <Cell col="7" text="bind:allsizespecid"/>
  142. <Cell col="8" text="bind:goodnm"/>
  143. <Cell col="9" text="bind:goodspec"/>
  144. <Cell col="10" text="bind:goodmodel"/>
  145. <Cell col="11" text="bind:constunit"/>
  146. <Cell col="12" text="bind:prodcmpynm"/>
  147. <Cell col="13" text="bind:reqpridnm"/>
  148. <Cell col="14" text="bind:goodqty"/>
  149. <Cell col="15" text="bind:prodcmpynm"/>
  150. <Cell col="16" text="bind:reqflagnm"/>
  151. <Cell col="17" text="bind:purcunit"/>
  152. <Cell col="18" text="bind:minexch"/>
  153. <Cell col="19" text="bind:stocqty"/>
  154. <Cell col="20" text="bind:ddavguseqty"/>
  155. <Cell col="21" text="bind:goodsetnm"/>
  156. <Cell col="22" text="bind:goodsetcd"/>
  157. <Cell col="23" text="bind:goodflag"/>
  158. <Cell col="24" text="bind:allsizeyn"/>
  159. <Cell col="25" text="bind:allsizespecid"/>
  160. <Cell col="26" text="bind:allsizespecidnm"/>
  161. </Band>
  162. </Format>
  163. </Formats>
  164. </Grid>
  165. <Static id="caption5" text="부서 청구SET 물품" class="tit_2" position="absolute 0 168 145 189"/>
  166. <Button id="btn_apply" taborder="6" text="선택" class="btn4" position="absolute 517 161 573 183" onclick="swt_search_gd_set_btn_apply_onclick"/>
  167. </Layout>
  168. </Layouts>
  169. </Tabpage>
  170. <Tabpage id="gd_find" text="물품검색">
  171. <Layouts>
  172. <Layout>
  173. <Div id="group2" taborder="5" class="div_SA2" position="absolute 0 0 576 120">
  174. <Layouts>
  175. <Layout>
  176. <Static id="caption12" text="대 분 류 :" class="search_name" position="absolute 5 28 91 45" anchor="default"/>
  177. <Combo id="ipt_lrgcd" taborder="14" position="absolute 91 28 243 47" anchor="default" onitemchanged="swt_search_gd_find_group2_ipt_lrgcd_onitemchanged"/>
  178. <Static id="caption15" text="중 분 류 :" class="search_name" position="absolute 5 50 91 67" anchor="default"/>
  179. <Combo id="ipt_mdlcd" taborder="15" position="absolute 91 49 243 68" anchor="default"/>
  180. <Static id="caption10" text="물 품 명 :" class="search_name" position="absolute 5 93 91 110" anchor="default"/>
  181. <Edit id="ipt_goodnm" taborder="16" class="input_essential" position="absolute 91 93 566 112" autoselect="true" autoskip="true" anchor="default" tooltiptext="조회구분을 먼저선택하세요!" tooltiptype="inplace,mouseleave" onkeyup="swt_search_gd_find_group2_ipt_goodnm_onkeyup"/>
  182. <Edit id="ipt_oldcd_search" taborder="17" class="input_search" position="absolute 345 71 410 90" tooltiptext="구 MIS시스템 앞자리를 구분없이 입력하세요(70101)" tooltiptype="inplace" autoselect="true" autoskip="true" anchor="default"/>
  183. <Static id="caption22" text="구 자 재 :" class="search_name" position="absolute 259 72 342 89" anchor="default"/>
  184. <Static id="caption23" text="ex) 70101" position="absolute 415 71 473 91" anchor="default"/>
  185. <Button id="btn_prodcmpycd" taborder="18" class="icon_search" position="absolute 416 51 432 67" anchor="default" onclick="swt_search_gd_find_group2_btn_prodcmpycd_onclick"/>
  186. <Static id="caption20" text="제조회사 :" class="search_name" position="absolute 259 49 345 66" anchor="default"/>
  187. <Edit id="ipt_prodcmpynm" taborder="19" class="input_search" position="absolute 435 49 569 68" autoselect="true" autoskip="true" anchor="default"/>
  188. <Edit id="ipt_prodcmpycd" taborder="20" class="input_default" position="absolute 345 49 410 68" autoselect="true" autoskip="true" anchor="default"/>
  189. <Static id="caption21" text="모 델 :" class="search_name" position="absolute 259 28 345 45" anchor="default"/>
  190. <Edit id="ipt_goodspec" taborder="21" class="input_default" position="absolute 345 7 570 26" autoselect="true" autoskip="true" anchor="default"/>
  191. <Edit id="ipt_goodmodel" taborder="22" class="input_default" position="absolute 345 28 570 47" autoselect="true" autoskip="true" anchor="default"/>
  192. <Static id="caption19" text="규 격 :" class="search_name" position="absolute 259 7 345 24" anchor="default"/>
  193. <Static id="caption14" text="청구구분 :" class="search_name" position="absolute 5 7 91 24" anchor="default"/>
  194. <Combo id="cmb_reqflag" taborder="23" innerdataset="ds_init_reqflag" codecolumn="reqflag" datacolumn="reqflagnm" class="combo_default" position="absolute 91 7 243 26" anchor="default" onitemchanged="swt_search_gd_find_group2_cmb_reqflag_onitemchanged"/>
  195. <Edit id="cmb_goodflag" taborder="24" class="input_default" visible="false" position="absolute 426 93 546 112" autoselect="true" autoskip="true" anchor="default"/>
  196. <Edit id="ipt_goodcd" taborder="25" class="input_essential" position="absolute 91 71 243 90" autoselect="true" autoskip="true" anchor="default" tooltiptext="조회구분을 먼저선택하세요!" tooltiptype="inplace,mouseleave" onkeyup="swt_search_gd_find_group2_ipt_goodcd_onkeyup"/>
  197. <Static id="caption13" text="물품코드 :" class="search_name" position="absolute 5 72 91 89" anchor="default"/>
  198. </Layout>
  199. </Layouts>
  200. </Div>
  201. <Shape id="lin_goodlist" linetype="vertical" class="line_1" position="absolute 3 143 579 144"/>
  202. <Grid id="grd_goodlist" class="grd_agtplcelist" taborder="6" binddataset="ds_main_GoodLists_goodlist" useinputpanel="false" position="absolute 0 147 576 586" autoenter="select" cellsizingtype="col" oncellclick="swt_search_gd_find_grd_goodlist_oncellclick" anchor="left top bottom">
  203. <Formats>
  204. <Format id="default">
  205. <Columns>
  206. <Column size="26"/>
  207. <Column size="20"/>
  208. <Column size="75"/>
  209. <Column size="0"/>
  210. <Column size="170"/>
  211. <Column size="0"/>
  212. <Column size="44"/>
  213. <Column size="44"/>
  214. <Column size="44"/>
  215. <Column size="65"/>
  216. <Column size="0"/>
  217. <Column size="0"/>
  218. <Column size="69"/>
  219. <Column size="0"/>
  220. <Column size="0"/>
  221. <Column size="0"/>
  222. <Column size="116"/>
  223. <Column size="0"/>
  224. <Column size="0"/>
  225. <Column size="0"/>
  226. <Column size="0"/>
  227. <Column size="0"/>
  228. <Column size="0"/>
  229. <Column size="0"/>
  230. <Column size="0"/>
  231. <Column size="0"/>
  232. <Column size="0"/>
  233. <Column size="0"/>
  234. <Column size="0"/>
  235. <Column size="0"/>
  236. <Column size="0"/>
  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. <Column size="0"/>
  280. <Column size="0"/>
  281. <Column size="0"/>
  282. <Column size="0"/>
  283. <Column size="0"/>
  284. <Column size="0"/>
  285. <Column size="0"/>
  286. <Column size="0"/>
  287. <Column size="0"/>
  288. <Column size="0"/>
  289. <Column size="0"/>
  290. <Column size="0"/>
  291. <Column size="0"/>
  292. <Column size="0"/>
  293. <Column size="0"/>
  294. <Column size="0"/>
  295. <Column size="0"/>
  296. <Column size="0"/>
  297. <Column size="0"/>
  298. <Column size="0"/>
  299. <Column size="0"/>
  300. <Column size="0"/>
  301. <Column size="0"/>
  302. <Column size="0"/>
  303. <Column size="0"/>
  304. <Column size="0"/>
  305. <Column size="0"/>
  306. <Column size="0"/>
  307. <Column size="0"/>
  308. <Column size="0"/>
  309. <Column size="0"/>
  310. <Column size="0"/>
  311. <Column size="0"/>
  312. <Column size="0"/>
  313. <Column size="0"/>
  314. <Column size="0"/>
  315. </Columns>
  316. <Rows>
  317. <Row size="24" band="head"/>
  318. <Row size="24"/>
  319. </Rows>
  320. <Band id="head">
  321. <Cell/>
  322. <Cell col="1" displaytype="checkbox" edittype="checkbox"/>
  323. <Cell col="2" text="물품코드"/>
  324. <Cell col="3" text="물품코드"/>
  325. <Cell col="4" text="물품명"/>
  326. <Cell col="5" text="제조회사"/>
  327. <Cell col="6" text="규격"/>
  328. <Cell col="7" text="주기"/>
  329. <Cell col="8" text="모델"/>
  330. <Cell col="9" text="제조회사"/>
  331. <Cell col="10" text="기관코드"/>
  332. <Cell col="11" text="물품구분"/>
  333. <Cell col="12" text="최소청구량"/>
  334. <Cell col="13" text="기준량"/>
  335. <Cell col="14" text="재고량"/>
  336. <Cell col="15" text="사용자수량"/>
  337. <Cell col="16" text="포장구성단위"/>
  338. <Cell col="17"/>
  339. <Cell col="18"/>
  340. <Cell col="19"/>
  341. <Cell col="20"/>
  342. <Cell col="21"/>
  343. <Cell col="22"/>
  344. <Cell col="23"/>
  345. <Cell col="24"/>
  346. <Cell col="25"/>
  347. <Cell col="26"/>
  348. <Cell col="27"/>
  349. <Cell col="28"/>
  350. <Cell col="29"/>
  351. <Cell col="30"/>
  352. <Cell col="31"/>
  353. <Cell col="32"/>
  354. <Cell col="33"/>
  355. <Cell col="34"/>
  356. <Cell col="35"/>
  357. <Cell col="36"/>
  358. <Cell col="37"/>
  359. <Cell col="38"/>
  360. <Cell col="39"/>
  361. <Cell col="40"/>
  362. <Cell col="41"/>
  363. <Cell col="42"/>
  364. <Cell col="43"/>
  365. <Cell col="44"/>
  366. <Cell col="45"/>
  367. <Cell col="46"/>
  368. <Cell col="47"/>
  369. <Cell col="48"/>
  370. <Cell col="49"/>
  371. <Cell col="50"/>
  372. <Cell col="51"/>
  373. <Cell col="52"/>
  374. <Cell col="53"/>
  375. <Cell col="54"/>
  376. <Cell col="55"/>
  377. <Cell col="56"/>
  378. <Cell col="57"/>
  379. <Cell col="58"/>
  380. <Cell col="59"/>
  381. <Cell col="60"/>
  382. <Cell col="61"/>
  383. <Cell col="62"/>
  384. <Cell col="63"/>
  385. <Cell col="64"/>
  386. <Cell col="65"/>
  387. <Cell col="66"/>
  388. <Cell col="67"/>
  389. <Cell col="68"/>
  390. <Cell col="69"/>
  391. <Cell col="70"/>
  392. <Cell col="71"/>
  393. <Cell col="72"/>
  394. <Cell col="73"/>
  395. <Cell col="74"/>
  396. <Cell col="75"/>
  397. <Cell col="76"/>
  398. <Cell col="77"/>
  399. <Cell col="78"/>
  400. <Cell col="79"/>
  401. <Cell col="80"/>
  402. <Cell col="81"/>
  403. <Cell col="82"/>
  404. <Cell col="83"/>
  405. <Cell col="84"/>
  406. <Cell col="85"/>
  407. <Cell col="86"/>
  408. <Cell col="87"/>
  409. <Cell col="88"/>
  410. <Cell col="89"/>
  411. <Cell col="90"/>
  412. <Cell col="91"/>
  413. <Cell col="92"/>
  414. <Cell col="93"/>
  415. <Cell col="94"/>
  416. <Cell col="95"/>
  417. <Cell col="96"/>
  418. <Cell col="97"/>
  419. <Cell col="98"/>
  420. <Cell col="99"/>
  421. <Cell col="100"/>
  422. <Cell col="101"/>
  423. <Cell col="102"/>
  424. <Cell col="103"/>
  425. <Cell col="104" text="a"/>
  426. <Cell col="105"/>
  427. <Cell col="106"/>
  428. <Cell col="107"/>
  429. <Cell col="108"/>
  430. </Band>
  431. <Band id="body">
  432. <Cell celltype="head" expr="currow+1"/>
  433. <Cell col="1" displaytype="checkbox" edittype="checkbox" text="bind:select"/>
  434. <Cell col="2" displaytype="none" edittype="none" text="bind:goodcd"/>
  435. <Cell col="3" text="bind:allsizespecid"/>
  436. <Cell col="4" text="bind:goodnm"/>
  437. <Cell col="5" text="bind:prodcmpycd"/>
  438. <Cell col="6" text="bind:goodspec"/>
  439. <Cell col="7" text="bind:reqpridnm"/>
  440. <Cell col="8" text="bind:goodmodel"/>
  441. <Cell col="9" text="bind:prodcmpynm"/>
  442. <Cell col="10" text="bind:instcd"/>
  443. <Cell col="11" text="bind:goodflag"/>
  444. <Cell col="12" text="bind:minexch"/>
  445. <Cell col="13" text="bind:safestocqty"/>
  446. <Cell col="14" text="bind:stocqty"/>
  447. <Cell col="15" text="bind:userqty"/>
  448. <Cell col="16" text="bind:constunit"/>
  449. <Cell col="17" text="bind:todd"/>
  450. <Cell col="18" text="bind:useyn"/>
  451. <Cell col="19" text="bind:fromdd"/>
  452. <Cell col="20" text="bind:asetflag"/>
  453. <Cell col="21" text="bind:lrgcd"/>
  454. <Cell col="22" text="bind:lrgnm"/>
  455. <Cell col="23" text="bind:mdlcd"/>
  456. <Cell col="24" text="bind:mdlnm"/>
  457. <Cell col="25" text="bind:smlcd"/>
  458. <Cell col="26" text="bind:smlnm"/>
  459. <Cell col="27" text="bind:proddrugsetflag"/>
  460. <Cell col="28" text="bind:winacnt"/>
  461. <Cell col="29" text="bind:winacntnm"/>
  462. <Cell col="30" text="bind:amtacnt"/>
  463. <Cell col="31" text="bind:amtacntnm"/>
  464. <Cell col="32" text="bind:mainmngtdeptcd"/>
  465. <Cell col="33" text="bind:mainmngtdeptnm"/>
  466. <Cell col="34" text="bind:mainusedeptcd"/>
  467. <Cell col="35" text="bind:mainusedeptnm"/>
  468. <Cell col="36" text="bind:purclnkgoodcd"/>
  469. <Cell col="37" text="bind:stocmngtflag"/>
  470. <Cell col="38" text="bind:purcunit"/>
  471. <Cell col="39" text="bind:purcunitnm"/>
  472. <Cell col="40" text="bind:deliveunitnm"/>
  473. <Cell col="41" text="bind:exchqty"/>
  474. <Cell col="42" text="bind:reuseyn"/>
  475. <Cell col="43" text="bind:divusenvalqty"/>
  476. <Cell col="44" text="bind:calcscorinfoacptstat"/>
  477. <Cell col="45" text="bind:calcscorinfoacptdd"/>
  478. <Cell col="46" text="bind:insuyn"/>
  479. <Cell col="47" text="bind:edicd"/>
  480. <Cell col="48" text="bind:newrgstdd"/>
  481. <Cell col="49" text="bind:reqdeptcd"/>
  482. <Cell col="50" text="bind:reqdeptnm"/>
  483. <Cell col="51" text="bind:reqpsn"/>
  484. <Cell col="52" text="bind:reqpsnnm"/>
  485. <Cell col="53" text="bind:reqflag"/>
  486. <Cell col="54" text="bind:reqflagnm"/>
  487. <Cell col="55" text="bind:reqmthd"/>
  488. <Cell col="56" text="bind:reqprid"/>
  489. <Cell col="57" text="bind:iopsnflag"/>
  490. <Cell col="58" text="bind:prodplce"/>
  491. <Cell col="59" text="bind:prodplcenm"/>
  492. <Cell col="60" text="bind:maincustlastsuplplce"/>
  493. <Cell col="61" text="bind:maincustlastsuplplcenm"/>
  494. <Cell col="62" text="bind:suppcustcd"/>
  495. <Cell col="63" text="bind:suppcustnm"/>
  496. <Cell col="64" text="bind:conflag"/>
  497. <Cell col="65" text="bind:fromconterm"/>
  498. <Cell col="66" text="bind:toconterm"/>
  499. <Cell col="67" text="bind:estmamt"/>
  500. <Cell col="68" text="bind:forgncurncyunitcost"/>
  501. <Cell col="69" text="bind:curncyunit"/>
  502. <Cell col="70" text="bind:curncyunitnm"/>
  503. <Cell col="71" text="bind:goodunitcost"/>
  504. <Cell col="72" text="bind:purcflag"/>
  505. <Cell col="73" text="bind:allsizeyn"/>
  506. <Cell col="74" text="bind:setplceordflag"/>
  507. <Cell col="75" text="bind:plceordbase"/>
  508. <Cell col="76" text="bind:plceordqtycretflag"/>
  509. <Cell col="77" text="bind:plceordnonusedd"/>
  510. <Cell col="78" text="bind:addtaxrate"/>
  511. <Cell col="79" text="bind:lastpurcdd"/>
  512. <Cell col="80" text="bind:nonusetretresn"/>
  513. <Cell col="81" text="bind:mngtflag"/>
  514. <Cell col="82" text="bind:bnscd"/>
  515. <Cell col="83" text="bind:cntrdrugyn"/>
  516. <Cell col="84" text="bind:narcflag"/>
  517. <Cell col="85" text="bind:expnyn"/>
  518. <Cell col="86" text="bind:cntsunit"/>
  519. <Cell col="87" text="bind:cntsqty"/>
  520. <Cell col="88" text="bind:specvol"/>
  521. <Cell col="89" text="bind:drugkind"/>
  522. <Cell col="90" text="bind:cooppurcyn"/>
  523. <Cell col="91" text="bind:autrampharm"/>
  524. <Cell col="92" text="bind:keepmthd"/>
  525. <Cell col="93" text="bind:specldrug"/>
  526. <Cell col="94" text="bind:gnrlspcl"/>
  527. <Cell col="95" text="bind:welfprt"/>
  528. <Cell col="96" text="bind:goodtype"/>
  529. <Cell col="97" text="bind:com"/>
  530. <Cell col="98" text="bind:limdrugyn"/>
  531. <Cell col="99" text="bind:cmt"/>
  532. <Cell col="100" text="bind:safestocappdd"/>
  533. <Cell col="101" text="bind:ddavguseqty"/>
  534. <Cell col="102" text="bind:mmavgusescheqty"/>
  535. <Cell col="103" text="bind:mmavguseqty"/>
  536. <Cell col="104" text="bind:prprtystocpossndayno"/>
  537. <Cell col="105" text="bind:orgloc"/>
  538. <Cell col="106" text="bind:oldcd"/>
  539. <Cell col="107" text="bind:goodhngnm"/>
  540. <Cell col="108" text="bind:goodengnm"/>
  541. </Band>
  542. </Format>
  543. </Formats>
  544. </Grid>
  545. <Button id="bbt_apply2" taborder="7" text="적용" class="btn4" position="absolute 520 123 576 146" onclick="swt_search_gd_find_bbt_apply2_onclick"/>
  546. <Static id="cpt_cls" text="1" visible="false" position="absolute 500 74 565 93" style="font:Dotum,9,bold;"/>
  547. <Button id="bbt_goodfind" taborder="8" text="조회" class="btn1" position="absolute 450 123 506 146" onclick="swt_search_gd_find_bbt_goodfind_onclick"/>
  548. </Layout>
  549. </Layouts>
  550. </Tabpage>
  551. </Tabpages>
  552. </Tab>
  553. <Static id="caption6" text="물품청구관리_성의교정" class="tit_1" position="absolute 0 0 218 25"/>
  554. <Button id="btn_init" taborder="1" text="초기화" class="btn4" position="absolute 1128 1 1196 23" onclick="btn_init_onclick" anchor="top right"/>
  555. <Div id="grp_sea" anchor="left top right" taborder="3" class="div_SA" position="absolute 0 25 1195 125">
  556. <Layouts>
  557. <Layout>
  558. <Calendar id="ipt_reqdd" taborder="52" class="input_essential" position="absolute 395 31 497 50" mask="yyyy-mm-dd" autoselect="true" autoskip="true" onchanged="grp_sea_ipt_reqdd_onchanged"/>
  559. <MaskEdit id="ipt_todd" taborder="46" readonly="true" mask="####-##-##" position="absolute 395 31 464 50" maskchar=" " type="string" trimtype="both" style="align:center middle;"/>
  560. <Calendar id="ipt_reqddnew" taborder="51" class="input_essential" position="absolute 395 31 497 50" mask="yyyy-mm-dd" autoselect="true" autoskip="true" style="color:#ff0000ff;" onchanged="grp_sea_ipt_reqddnew_onchanged"/>
  561. <Static id="caption4" text="작업구분 :" class="search_name" position="absolute 310 6 396 23"/>
  562. <Static id="caption11" text="기관코드 :" class="search_name" position="absolute 11 6 97 23"/>
  563. <Static id="caption16" text="청구일자 :" class="search_name" position="absolute 310 31 396 48"/>
  564. <Combo id="cmb_workflag" taborder="39" codecolumn="value" datacolumn="label" class="combo_default" position="absolute 395 5 559 24" innerdataset="@ds_cmb_workflag" onitemchanged="grp_sea_cmb_workflag_onitemchanged" onitemclick="grp_sea_cmb_workflag_onitemclick"/>
  565. <Combo id="cmb_reqpridflag" taborder="40" innerdataset="ds_init_cmb_reqpridflag" codecolumn="value" datacolumn="label" class="combo_default" position="absolute 395 54 495 73"/>
  566. <Edit id="opt_requsernm" taborder="41" readonly="true" class="output" position="absolute 160 54 266 73"/>
  567. <Edit id="opt_requser" taborder="42" readonly="true" class="output" position="absolute 96 54 159 73"/>
  568. <Edit id="opt_reqfinaldept" taborder="43" readonly="true" class="output" visible="false" position="absolute 515 5 543 24"/>
  569. <Shape id="line14" linetype="vertical" class="line_4" position="absolute 1107 5 1113 97" anchor="top right"/>
  570. <Button id="btn_search" taborder="44" text="조회" class="btn1" position="absolute 1120 35 1176 57" onclick="grp_sea_btn_search_onclick" anchor="top right"/>
  571. <Radio id="rdo_inputmethod" taborder="45" columncount="2" rowcount="1" codecolumn="codecolumn" datacolumn="datacolumn" enable="false" position="absolute 96 78 265 98" onitemchanged="grp_sea_rdo_inputmethod_onitemchanged">
  572. <Dataset id="innerdataset">
  573. <ColumnInfo>
  574. <Column id="codecolumn"/>
  575. <Column id="datacolumn"/>
  576. </ColumnInfo>
  577. <Rows>
  578. <Row>
  579. <Col id="codecolumn">1</Col>
  580. <Col id="datacolumn">일반청구</Col>
  581. </Row>
  582. <Row>
  583. <Col id="codecolumn">2</Col>
  584. <Col id="datacolumn">정량보충</Col>
  585. </Row>
  586. </Rows>
  587. </Dataset>
  588. </Radio>
  589. <Static id="caption1" text="입력방식 :" class="search_name" position="absolute 11 80 97 97"/>
  590. <Static id="caption3" text="청구부서 :" class="search_name" position="absolute 310 55 396 72"/>
  591. <Combo id="cmb_reqdeptcd" taborder="47" innerdataset="@ds_init_ReqDeptLists_reqdeptlist" codecolumn="value" datacolumn="label" class="combo_default" position="absolute 395 54 561 73" onitemchanged="grp_sea_cmb_reqdeptcd_onitemchanged"/>
  592. <Combo id="cmb_hidden" taborder="48" position="absolute 516 31 571 50"/>
  593. <Combo id="cmb_reqno" taborder="49" innerdataset="@ds_main_DeptReqnoLists_reqnolist" codecolumn="reqno" datacolumn="reqno" class="combo_default" position="absolute 516 31 571 50" onitemchanged="grp_sea_cmb_reqno_onitemchanged"/>
  594. <CheckBox id="chk_reqnonew" taborder="50" position="absolute 574 33 624 48" text="신규" truevalue="Y" style="font:Dotum,9,bold;" onclick="grp_sea_chk_reqnonew_onclick"/>
  595. <Static id="caption9" text="청 구 자 :" class="search_name" position="absolute 11 55 97 72"/>
  596. <Radio id="rdo_instcd" taborder="53" columncount="2" rowcount="0" codecolumn="codecolumn" datacolumn="datacolumn" position="absolute 96 6 266 26" onitemchanged="grp_sea_rdo_instcd_onitemchanged">
  597. <Dataset id="innerdataset">
  598. <ColumnInfo>
  599. <Column id="codecolumn"/>
  600. <Column id="datacolumn"/>
  601. </ColumnInfo>
  602. <Rows>
  603. <Row>
  604. <Col id="codecolumn">103</Col>
  605. <Col id="datacolumn">성의교정</Col>
  606. </Row>
  607. <Row>
  608. <Col id="codecolumn">114</Col>
  609. <Col id="datacolumn">산학협력단</Col>
  610. </Row>
  611. </Rows>
  612. </Dataset>
  613. </Radio>
  614. <Edit id="opt_instcdgood" taborder="54" readonly="true" oneditclick="grp_biz_grp_sea_opt_instcdgood_oneditclick" class="output" visible="false" position="absolute 253 7 308 26"/>
  615. <Edit id="opt_projectyn" taborder="55" readonly="true" position="absolute 545 5 555 24" visible="false"/>
  616. <Edit id="ipt_stdysubjnm" taborder="56" class="input_fix" position="absolute 521 78 668 97"/>
  617. <Edit id="ipt_stdysubjno" taborder="57" class="input_search" position="absolute 395 78 499 97"/>
  618. <Static id="caption2" text="연구과제 :" class="search_name" position="absolute 310 80 396 97"/>
  619. <Button id="btn_stdysubjnm" taborder="58" class="icon_search" position="absolute 501 78 517 94" onclick="grp_sea_btn_stdysubjnm_onclick"/>
  620. <Static id="caption18" text="계 정 :" class="search_name" position="absolute 695 5 781 22"/>
  621. <Combo id="cmb_groupbugt" taborder="59" class="combo_default" position="absolute 785 5 889 24" onitemchanged="grp_sea_cmb_groupbugt_onitemchanged"/>
  622. <MaskEdit id="opt_remainder" taborder="60" readonly="true" mask="9,999999999999" position="absolute 1020 78 1098 97"/>
  623. <MaskEdit id="opt_totamt" taborder="61" readonly="true" mask="9,999999999999" position="absolute 1020 5 1098 24"/>
  624. <Edit id="opt_projectnm" taborder="62" readonly="true" class="output" position="absolute 840 56 950 75"/>
  625. <MaskEdit id="opt_bugtexpcamt" taborder="63" readonly="true" mask="9,999999999999" position="absolute 1020 30 1098 49"/>
  626. <Static id="caption24" text="예산편성" position="absolute 962 5 1016 25" style="font:Dotum,9,bold;"/>
  627. <Static id="caption27" text="가능액" position="absolute 975 79 1020 99" style="font:Dotum,9,bold;"/>
  628. <MaskEdit id="opt_bugtexecamt" taborder="64" readonly="true" mask="9,999999999999" position="absolute 1020 54 1098 73"/>
  629. <Static id="caption28" text="추산" position="absolute 988 30 1016 50" style="font:Dotum,9,bold;"/>
  630. <Static id="caption30" text="집행" position="absolute 988 55 1016 75" style="font:Dotum,9,bold;"/>
  631. <Edit id="opt_projectid" taborder="65" readonly="true" class="output" position="absolute 785 56 835 75"/>
  632. <Combo id="cmb_studyinstcd" taborder="66" position="absolute 96 30 266 49" onitemchanged="grp_sea_cmb_studyinstcd_onitemchanged" enable="false"/>
  633. <Static id="caption31" text="연구기관 :" class="search_name" position="absolute 11 31 97 48"/>
  634. <Static id="caption32" text="~" position="absolute 501 33 516 53"/>
  635. <Static id="caption7" text="프로젝트 :" class="search_name" position="absolute 695 56 781 73"/>
  636. <Static id="caption29" text="예산계정 :" class="search_name" position="absolute 695 31 781 48"/>
  637. <Button id="btn_purcdept" taborder="67" text="조회" class="btn1" visible="false" position="absolute 565 52 621 74" onclick="grp_sea_btn_purcdept_onclick"/>
  638. <Edit id="opt_bugtflag" taborder="68" readonly="true" position="absolute 785 30 870 49"/>
  639. <Combo id="cmb_bugtflag" taborder="69" innerdataset="@ds_main_BugLists_bugtlist" codecolumn="bugtproject" datacolumn="bugtprojectnm" class="combo_default" position="absolute 785 30 951 49" onitemchanged="grp_sea_cmb_bugtflag_onitemchanged"/>
  640. </Layout>
  641. </Layouts>
  642. </Div>
  643. <Button id="bbt_large" taborder="5" class="icon_pre_month" visible="false" position="absolute 589 145 605 161" onclick="bbt_large_onclick"/>
  644. <Button id="bbt_right" taborder="6" class="icon_next_month" visible="false" position="absolute 607 145 623 161" onclick="bbt_right_onclick"/>
  645. <Static id="caption25" text="All Size" position="absolute 718 141 768 156"/>
  646. <Static id="caption26" class="color_6" position="absolute 700 140 715 155" style="background:#ffff00ff;"/>
  647. <Edit id="ipt_tempdeptnm" taborder="7" class="input_search" visible="false" position="absolute 470 142 580 161" autoselect="true" autoskip="true"/>
  648. <Edit id="ipt_tempdeptcd" taborder="8" class="input_search" visible="false" position="absolute 360 142 440 161" autoselect="true" autoskip="true"/>
  649. <Button id="btn_tempdeptcd" taborder="9" class="icon_search" position="absolute 445 144 461 160" onclick="btn_tempdeptcd_onclick"/>
  650. <Static id="cpt_dept" text="부서선택:" class="search_name" visible="false" position="absolute 278 144 364 161"/>
  651. <Div id="grp_button" taborder="10" position="absolute 589 159 1195 186" anchor="top right">
  652. <Layouts>
  653. <Layout>
  654. <Button id="btn_delete" taborder="17" text="행삭제" class="btn2" position="absolute 56 3 109 22" onclick="grp_button_btn_delete_onclick"/>
  655. <Button id="btn_choice" taborder="18" text="승인전체/접수전체취소" class="btn2" position="absolute 111 3 257 22" onclick="grp_button_btn_choice_onclick"/>
  656. <Button id="btn_excel" taborder="19" text="엑셀" class="btn7" position="absolute 259 0 315 22" onclick="grp_button_btn_excel_onclick"/>
  657. <CheckBox id="ckb_accept" taborder="20" text="동시승인" truevalue="Y" position="absolute 534 3 601 18" onclick="grp_button_ckb_accept_onclick"/>
  658. <Button id="btn_save" taborder="21" text="저장" class="btn4" position="absolute 474 0 530 22" onclick="grp_button_btn_save_onclick"/>
  659. <Button id="btn_accept" taborder="22" text="승인/미승인" class="btn4" position="absolute 373 0 473 22" onclick="grp_button_btn_accept_onclick"/>
  660. <Button id="btn_print" taborder="23" text="출력" class="btn6" position="absolute 316 0 372 22" onclick="grp_button_btn_print_onclick"/>
  661. <Button id="btn_insert" taborder="24" text="행추가" class="btn2" position="absolute 1 3 54 22" onclick="grp_button_btn_insert_onclick">
  662. <Layouts>
  663. <Layout width="53" height="19"/>
  664. </Layouts>
  665. </Button>
  666. </Layout>
  667. </Layouts>
  668. </Div>
  669. <Shape id="lin_main" class="line_10" position="absolute 0 180 1195 189" anchor="left top right"/>
  670. <TextArea id="tar_cmt" taborder="14" visible="false" position="absolute 31 235 97 251"/>
  671. <Grid id="grd_goodreq" taborder="11" binddataset="ds_main_list_goodreq_goodreqlist" autoenter="select" useinputpanel="false" cellsizingtype="col" position="absolute 0 186 1195 755" anchor="all" oncellclick="grd_goodreq_oncellclick" onexpanddown="grd_goodreq_onexpanddown" onkeydown="grd_goodreq_onkeydown">
  672. <Formats>
  673. <Format id="default">
  674. <Columns>
  675. <Column size="21"/>
  676. <Column size="0"/>
  677. <Column size="0"/>
  678. <Column size="0"/>
  679. <Column size="0"/>
  680. <Column size="35"/>
  681. <Column size="94"/>
  682. <Column size="225"/>
  683. <Column size="124"/>
  684. <Column size="74"/>
  685. <Column size="66"/>
  686. <Column size="88"/>
  687. <Column size="83"/>
  688. <Column size="60"/>
  689. <Column size="48"/>
  690. <Column size="42"/>
  691. <Column size="30"/>
  692. <Column size="43"/>
  693. <Column size="137"/>
  694. <Column size="100"/>
  695. <Column size="112"/>
  696. <Column size="82"/>
  697. <Column size="83"/>
  698. <Column size="82"/>
  699. <Column size="168"/>
  700. <Column size="0"/>
  701. <Column size="0"/>
  702. <Column size="0"/>
  703. <Column size="0"/>
  704. <Column size="0"/>
  705. <Column size="0"/>
  706. <Column size="0"/>
  707. <Column size="0"/>
  708. <Column size="0"/>
  709. <Column size="0"/>
  710. <Column size="0"/>
  711. <Column size="0"/>
  712. <Column size="0"/>
  713. <Column size="0"/>
  714. <Column size="0"/>
  715. <Column size="0"/>
  716. <Column size="0"/>
  717. <Column size="0"/>
  718. <Column size="0"/>
  719. <Column size="0"/>
  720. <Column size="0"/>
  721. <Column size="0"/>
  722. <Column size="0"/>
  723. <Column size="0"/>
  724. <Column size="0"/>
  725. <Column size="0"/>
  726. <Column size="0"/>
  727. <Column size="0"/>
  728. <Column size="0"/>
  729. <Column size="0"/>
  730. <Column size="0"/>
  731. <Column size="0"/>
  732. <Column size="0"/>
  733. <Column size="0"/>
  734. <Column size="0"/>
  735. <Column size="0"/>
  736. <Column size="0"/>
  737. <Column size="0"/>
  738. <Column size="0"/>
  739. <Column size="0"/>
  740. <Column size="0"/>
  741. <Column size="0"/>
  742. <Column size="0"/>
  743. <Column size="0"/>
  744. <Column size="0"/>
  745. <Column size="0"/>
  746. <Column size="0"/>
  747. <Column size="0"/>
  748. <Column size="0"/>
  749. <Column size="0"/>
  750. <Column size="0"/>
  751. <Column size="0"/>
  752. <Column size="0"/>
  753. <Column size="0"/>
  754. <Column size="0"/>
  755. <Column size="0"/>
  756. <Column size="0"/>
  757. <Column size="0"/>
  758. <Column size="0"/>
  759. <Column size="0"/>
  760. <Column size="0"/>
  761. <Column size="0"/>
  762. </Columns>
  763. <Rows>
  764. <Row size="24" band="head"/>
  765. <Row size="24"/>
  766. </Rows>
  767. <Band id="head">
  768. <Cell/>
  769. <Cell col="1" text="기관코드"/>
  770. <Cell col="2" text="청구구분"/>
  771. <Cell col="3" text="청구일자"/>
  772. <Cell col="4" text="청구번호"/>
  773. <Cell col="5" text="순번"/>
  774. <Cell col="6" text="물품코드"/>
  775. <Cell col="7" text="물품명"/>
  776. <Cell col="8" text="규격"/>
  777. <Cell col="9" text="모델"/>
  778. <Cell col="10" text="제조회사"/>
  779. <Cell col="11" text="포장구성단위"/>
  780. <Cell col="12" text="연구과제"/>
  781. <Cell col="13" text="재고량"/>
  782. <Cell col="14" colspan="2" text="청구" taborder="undefined"/>
  783. <Cell col="16" colspan="2" text="승인" taborder="undefined"/>
  784. <Cell col="18" text="계정"/>
  785. <Cell col="19" text="프로젝트"/>
  786. <Cell col="20" text="예산편성액"/>
  787. <Cell col="21" text="예산추산액"/>
  788. <Cell col="22" text="예산집행액"/>
  789. <Cell col="23" text="예산잔액"/>
  790. <Cell col="24" text="비고"/>
  791. <Cell col="25"/>
  792. <Cell col="26"/>
  793. <Cell col="27"/>
  794. <Cell col="28"/>
  795. <Cell col="29"/>
  796. <Cell col="30"/>
  797. <Cell col="31"/>
  798. <Cell col="32"/>
  799. <Cell col="33"/>
  800. <Cell col="34"/>
  801. <Cell col="35"/>
  802. <Cell col="36"/>
  803. <Cell col="37"/>
  804. <Cell col="38"/>
  805. <Cell col="39"/>
  806. <Cell col="40"/>
  807. <Cell col="41"/>
  808. <Cell col="42"/>
  809. <Cell col="43"/>
  810. <Cell col="44"/>
  811. <Cell col="45"/>
  812. <Cell col="46"/>
  813. <Cell col="47"/>
  814. <Cell col="48"/>
  815. <Cell col="49"/>
  816. <Cell col="50"/>
  817. <Cell col="51"/>
  818. <Cell col="52"/>
  819. <Cell col="53"/>
  820. <Cell col="54"/>
  821. <Cell col="55"/>
  822. <Cell col="56"/>
  823. <Cell col="57"/>
  824. <Cell col="58"/>
  825. <Cell col="59"/>
  826. <Cell col="60"/>
  827. <Cell col="61"/>
  828. <Cell col="62"/>
  829. <Cell col="63"/>
  830. <Cell col="64"/>
  831. <Cell col="65"/>
  832. <Cell col="66"/>
  833. <Cell col="67"/>
  834. <Cell col="68"/>
  835. <Cell col="69"/>
  836. <Cell col="70"/>
  837. <Cell col="71"/>
  838. <Cell col="72"/>
  839. <Cell col="73"/>
  840. <Cell col="74"/>
  841. <Cell col="75"/>
  842. <Cell col="76"/>
  843. <Cell col="77"/>
  844. <Cell col="78"/>
  845. <Cell col="79"/>
  846. <Cell col="80"/>
  847. <Cell col="81"/>
  848. <Cell col="82"/>
  849. <Cell col="83"/>
  850. <Cell col="84"/>
  851. <Cell col="85"/>
  852. <Cell col="86"/>
  853. </Band>
  854. <Band id="body">
  855. <Cell celltype="head"/>
  856. <Cell col="1" text="bind:instcd"/>
  857. <Cell col="2" text="bind:reqflag"/>
  858. <Cell col="3" text="bind:reqdd"/>
  859. <Cell col="4" text="bind:reqno"/>
  860. <Cell col="5" text="bind:reqseqno"/>
  861. <Cell col="6" displaytype="text" edittype="text" text="bind:goodcd" expandshow="show"/>
  862. <Cell col="7" displaytype="text" edittype="text" text="bind:goodnm"/>
  863. <Cell col="8" displaytype="text" edittype="text" text="bind:goodspec" expandshow="show"/>
  864. <Cell col="9" edittype="none" text="bind:goodmodel"/>
  865. <Cell col="10" edittype="none" text="bind:prodcmpynm"/>
  866. <Cell col="11" text="bind:constunit"/>
  867. <Cell col="12" displaytype="text" edittype="text" text="bind:stdysubjnm" expandshow="show"/>
  868. <Cell col="13" displaytype="number" edittype="normal" text="bind:stocqty"/>
  869. <Cell col="14" displaytype="number" edittype="normal" text="bind:reqqty"/>
  870. <Cell col="15" text="bind:requnit"/>
  871. <Cell col="16" displaytype="checkbox" edittype="checkbox" text="bind:deptaprvyn"/>
  872. <Cell col="17" text="bind:deptaprvnm"/>
  873. <Cell col="18" displaytype="text" edittype="text" text="bind:bugtnm" expandshow="show"/>
  874. <Cell col="19" text="bind:projectnm"/>
  875. <Cell col="20" displaytype="number" edittype="normal" text="bind:totamt"/>
  876. <Cell col="21" displaytype="number" edittype="normal" text="bind:bugtexpcamt"/>
  877. <Cell col="22" displaytype="number" edittype="normal" text="bind:bugtexecamt"/>
  878. <Cell col="23" displaytype="number" edittype="normal" text="bind:remainder"/>
  879. <Cell col="24" displaytype="text" edittype="text" text="bind:cmt"/>
  880. <Cell col="25" text="bind:groupbugt"/>
  881. <Cell col="26" text="bind:workflag"/>
  882. <Cell col="27" text="bind:reqmthdflag"/>
  883. <Cell col="28" text="bind:deliveflag"/>
  884. <Cell col="29" text="bind:reqpridflag"/>
  885. <Cell col="30" text="bind:goodcd"/>
  886. <Cell col="31" text="bind:allsizespecid"/>
  887. <Cell col="32" text="bind:goodflag"/>
  888. <Cell col="33" text="bind:purcunit"/>
  889. <Cell col="34" text="bind:purcunitnm"/>
  890. <Cell col="35" text="bind:stocmngtflag"/>
  891. <Cell col="36" text="bind:bugtcd"/>
  892. <Cell col="37" text="bind:stdysubjno"/>
  893. <Cell col="38" text="bind:reqdeptcd"/>
  894. <Cell col="39" text="bind:reqcollcdeptcd"/>
  895. <Cell col="40" text="bind:delivedeptcd"/>
  896. <Cell col="41" text="bind:delivehopedd"/>
  897. <Cell col="42" text="bind:reqpsnid"/>
  898. <Cell col="43" text="bind:reqpsnnm"/>
  899. <Cell col="44" text="bind:reqtm"/>
  900. <Cell col="45" text="bind:ddavguseqty"/>
  901. <Cell col="46" text="bind:minexch"/>
  902. <Cell col="47" text="bind:basevol"/>
  903. <Cell col="48" text="bind:prereqqty"/>
  904. <Cell col="49" text="bind:adjtqty"/>
  905. <Cell col="50" text="bind:preadjtqty"/>
  906. <Cell col="51" text="bind:adjtrsn"/>
  907. <Cell col="52" text="bind:predeptaprvyn"/>
  908. <Cell col="53" text="bind:deptaprvdd"/>
  909. <Cell col="54" text="bind:acptflag"/>
  910. <Cell col="55" text="bind:acptflagnm"/>
  911. <Cell col="56" text="bind:acptdd"/>
  912. <Cell col="57" text="bind:acptcharid"/>
  913. <Cell col="58" text="bind:purcdmnddd"/>
  914. <Cell col="59" text="bind:purcdmndno"/>
  915. <Cell col="60" text="bind:purcdmndseq"/>
  916. <Cell col="61" text="bind:colreqdd"/>
  917. <Cell col="62" text="bind:colreqno"/>
  918. <Cell col="63" text="bind:colreqseqno"/>
  919. <Cell col="64" text="bind:deliveqty"/>
  920. <Cell col="65" text="bind:unwinresn"/>
  921. <Cell col="66" text="bind:deliveprcsflag"/>
  922. <Cell col="67" text="bind:chkcmt"/>
  923. <Cell col="68" text="bind:reqarthyn"/>
  924. <Cell col="69" text="bind:aprvyn"/>
  925. <Cell col="70" text="bind:lrgnm"/>
  926. <Cell col="71" text="bind:csrsafestocqty"/>
  927. <Cell col="72" text="bind:csrddavguseqty"/>
  928. <Cell col="73" text="bind:allsizespecidnm"/>
  929. <Cell col="74" text="bind:allsizeyn"/>
  930. <Cell col="75" text="bind:studyinstcd"/>
  931. <Cell col="76" text="bind:rgstqty"/>
  932. <Cell col="77" text="bind:exchqty"/>
  933. <Cell col="78" text="bind:projectid"/>
  934. <Cell col="79" text="bind:reqdeptnm"/>
  935. <Cell col="80" text="bind:reqflagnm"/>
  936. <Cell col="81" text="bind:reqflagnm"/>
  937. <Cell col="82" text="bind:setunit"/>
  938. <Cell col="83" text="bind:suppcustcd"/>
  939. <Cell col="84" text="bind:suppcustcdnm"/>
  940. <Cell col="85" text="bind:befmonreqqty"/>
  941. <Cell col="86" text="bind:jobstatus"/>
  942. </Band>
  943. </Format>
  944. </Formats>
  945. </Grid>
  946. <Div id="grp_bugtflag" taborder="12" style="background:#ffffffff;border:2 solid #339966ff ;" position="absolute 808 241 1083 463" visible="false">
  947. <Layouts>
  948. <Layout>
  949. <Shape id="roundrect3" type="roundrectangle" position="absolute 2 3 270 30" anchor="default"/>
  950. <Shape id="rectangle2" type="rectangle" position="absolute 0 0 2 212" anchor="default"/>
  951. <Button id="button2" taborder="28" text="확인" class="btn4" position="absolute 207 6 263 28" anchor="default" onclick="grp_bugtflag_button2_onclick"/>
  952. <MaskEdit id="output1" taborder="29" readonly="true" mask="#,###" position="absolute 156 183 266 202" anchor="default"/>
  953. <MaskEdit id="output2" taborder="30" readonly="true" mask="#,###" position="absolute 156 110 266 129" anchor="default"/>
  954. <Edit id="output3" taborder="31" readonly="true" class="output" position="absolute 156 86 266 105" anchor="default"/>
  955. <Static id="caption33" text="집행" position="absolute 122 160 150 180" style="font:Dotum,9,bold;" anchor="default"/>
  956. <Combo id="combo2" taborder="32" innerdataset="@ds_main_BugLists_bugtlist" codecolumn="bugtproject" datacolumn="bugtprojectnm" class="combo_default" position="absolute 100 60 266 79" anchor="default" onitemchanged="grp_bugtflag_combo2_onitemchanged"/>
  957. <MaskEdit id="output4" taborder="33" readonly="true" mask="#,###" position="absolute 156 135 266 154" anchor="default"/>
  958. <Static id="caption34" text="예산편성" position="absolute 96 110 150 130" style="font:Dotum,9,bold;" anchor="default"/>
  959. <MaskEdit id="output5" taborder="34" readonly="true" mask="#,###" position="absolute 156 159 266 178" anchor="default"/>
  960. <Static id="caption35" text="프로젝트 :" class="search_name" position="absolute 10 86 96 103" anchor="default"/>
  961. <Static id="caption36" text="가능액" position="absolute 105 184 150 204" style="font:Dotum,9,bold;" anchor="default"/>
  962. <Static id="caption37" text="추산" position="absolute 122 135 150 155" style="font:Dotum,9,bold;" anchor="default"/>
  963. <Static id="caption38" text="예산계정 :" class="search_name" position="absolute 10 61 96 78" anchor="default"/>
  964. <Static id="caption39" text="계 정 :" class="search_name" position="absolute 10 35 96 52" anchor="default"/>
  965. <Edit id="output6" taborder="35" readonly="true" class="output" position="absolute 100 86 150 105" anchor="default"/>
  966. <Combo id="combo3" taborder="36" innerdataset="ds_init_rscmbgcdlist" codecolumn="value" datacolumn="label" class="combo_default" position="absolute 100 35 266 54" anchor="default" onitemchanged="grp_bugtflag_combo3_onitemchanged"/>
  967. </Layout>
  968. </Layouts>
  969. </Div>
  970. <Div id="grp_allsize" taborder="13" style="background:#ffffffff;border:2 solid #339966ff ;" position="absolute 695 342 1059 650" visible="false">
  971. <Layouts>
  972. <Layout>
  973. <Grid id="grd_codelist" class="grd_prodcmpylist" taborder="7" binddataset="ds_main_codelist" autoenter="select" useinputpanel="false" cellsizingtype="col" autofittype="col" position="absolute 2 40 359 297" anchor="default">
  974. <Formats>
  975. <Format id="default">
  976. <Columns>
  977. <Column size="30"/>
  978. <Column size="40"/>
  979. <Column size="140"/>
  980. <Column size="76"/>
  981. <Column size="51"/>
  982. </Columns>
  983. <Rows>
  984. <Row size="24" band="head"/>
  985. <Row size="24"/>
  986. </Rows>
  987. <Band id="head">
  988. <Cell text="C"/>
  989. <Cell col="1" text="ID"/>
  990. <Cell col="2" text="명칭"/>
  991. <Cell col="3" text="모델"/>
  992. <Cell col="4" text="수량"/>
  993. </Band>
  994. <Band id="body">
  995. <Cell displaytype="checkbox" edittype="checkbox" text="bind:chk" expr="expr:chk == 'true' ? 1 : 0"/>
  996. <Cell col="1" text="bind:allsizespecid"/>
  997. <Cell col="2" text="bind:goodspec"/>
  998. <Cell col="3" text="bind:goodmodel"/>
  999. <Cell col="4" displaytype="text" edittype="text" text="bind:qty"/>
  1000. </Band>
  1001. </Format>
  1002. </Formats>
  1003. </Grid>
  1004. <Button id="btn_confirm" taborder="8" text="확인" class="btn4" position="absolute 285 10 341 32" anchor="default" onclick="grp_allsize_btn_confirm_onclick"/>
  1005. </Layout>
  1006. </Layouts>
  1007. </Div>
  1008. </Layout>
  1009. </Layouts>
  1010. <Objects>
  1011. <Dataset id="ds_send_goodreq" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" oncolumnchanged="ds_send_goodreq_oncolumnchanged">
  1012. <ColumnInfo>
  1013. <Column id="workflag" type="STRING" size="256"/>
  1014. <Column id="instcd" type="STRING" size="256"/>
  1015. <Column id="studyinstcd" type="STRING" size="256"/>
  1016. <Column id="reqflag" type="STRING" size="256"/>
  1017. <Column id="deliveflag" type="STRING" size="256"/>
  1018. <Column id="reqdd" type="STRING" size="256"/>
  1019. <Column id="reqpridflag" type="STRING" size="256"/>
  1020. <Column id="flag" type="STRING" size="256"/>
  1021. <Column id="reqdeptcd" type="STRING" size="256"/>
  1022. <Column id="reqdeptnm" type="STRING" size="256"/>
  1023. <Column id="reqpsnid" type="STRING" size="256"/>
  1024. <Column id="retrmaxreqnoyn" type="STRING" size="256"/>
  1025. <Column id="reqno" type="STRING" size="256"/>
  1026. <Column id="stdysubjno" type="STRING" size="256"/>
  1027. <Column id="stdysubjnm" type="STRING" size="256"/>
  1028. <Column id="bugtflag" type="STRING" size="256"/>
  1029. <Column id="bugtflagnm" type="STRING" size="256"/>
  1030. <Column id="tmp_goodcd" type="STRING" size="256"/>
  1031. <Column id="tmp_goodnm" type="STRING" size="256"/>
  1032. <Column id="inputmethod" type="STRING" size="256"/>
  1033. <Column id="instcdgood" type="STRING" size="256"/>
  1034. <Column id="groupbugt" type="STRING" size="256"/>
  1035. <Column id="totamt" type="STRING" size="256"/>
  1036. <Column id="bugtexpcamt" type="STRING" size="256"/>
  1037. <Column id="bugtexecamt" type="STRING" size="256"/>
  1038. <Column id="remainder" type="STRING" size="256"/>
  1039. <Column id="projectyn" type="STRING" size="256"/>
  1040. <Column id="projectid" type="STRING" size="256"/>
  1041. <Column id="projectnm" type="STRING" size="256"/>
  1042. <Column id="deptcd" type="STRING" size="256"/>
  1043. <Column id="supacntcd4" type="STRING" size="256"/>
  1044. <Column id="pgoodflag" type="STRING" size="256"/>
  1045. <Column id="bugtproject" type="STRING" size="256"/>
  1046. </ColumnInfo>
  1047. <Rows>
  1048. <Row>
  1049. <Col id="workflag">1</Col>
  1050. <Col id="instcd"/>
  1051. <Col id="studyinstcd"/>
  1052. <Col id="reqflag"/>
  1053. <Col id="deliveflag"/>
  1054. <Col id="reqdd"/>
  1055. <Col id="reqpridflag"/>
  1056. <Col id="flag"/>
  1057. <Col id="reqdeptcd"/>
  1058. <Col id="reqdeptnm"/>
  1059. <Col id="reqpsnid"/>
  1060. <Col id="retrmaxreqnoyn"/>
  1061. <Col id="reqno"/>
  1062. <Col id="stdysubjno"/>
  1063. <Col id="stdysubjnm"/>
  1064. <Col id="bugtflag"/>
  1065. <Col id="bugtflagnm"/>
  1066. <Col id="tmp_goodcd"/>
  1067. <Col id="tmp_goodnm"/>
  1068. <Col id="inputmethod"/>
  1069. <Col id="instcdgood"/>
  1070. <Col id="groupbugt"/>
  1071. <Col id="totamt"/>
  1072. <Col id="bugtexpcamt"/>
  1073. <Col id="bugtexecamt"/>
  1074. <Col id="remainder"/>
  1075. <Col id="projectyn"/>
  1076. <Col id="projectid"/>
  1077. <Col id="projectnm"/>
  1078. <Col id="deptcd"/>
  1079. <Col id="supacntcd4"/>
  1080. <Col id="pgoodflag"/>
  1081. <Col id="bugtproject"/>
  1082. </Row>
  1083. </Rows>
  1084. </Dataset>
  1085. <Dataset id="ds_init" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1086. <ColumnInfo>
  1087. <Column id="reqdeptcd" type="STRING" size="256"/>
  1088. <Column id="reqdeptnm" type="STRING" size="256"/>
  1089. <Column id="requserno" type="STRING" size="256"/>
  1090. <Column id="requsernm" type="STRING" size="256"/>
  1091. <Column id="reqfinaldeptcd" type="STRING" size="256"/>
  1092. <Column id="reqfinaldeptnm" type="STRING" size="256"/>
  1093. <Column id="reqflag" type="STRING" size="256"/>
  1094. </ColumnInfo>
  1095. <Rows>
  1096. <Row>
  1097. <Col id="reqdeptcd"/>
  1098. <Col id="reqdeptnm"/>
  1099. <Col id="requserno"/>
  1100. <Col id="requsernm"/>
  1101. <Col id="reqfinaldeptcd"/>
  1102. <Col id="reqfinaldeptnm"/>
  1103. <Col id="reqflag"/>
  1104. </Row>
  1105. </Rows>
  1106. </Dataset>
  1107. <Dataset id="ds_main_rsdhdeymlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1108. <ColumnInfo>
  1109. <Column id="todd" type="STRING" size="256"/>
  1110. </ColumnInfo>
  1111. <Rows>
  1112. <Row/>
  1113. </Rows>
  1114. </Dataset>
  1115. <Dataset id="ds_send_save_autoaprv" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1116. <ColumnInfo>
  1117. <Column id="autoaprvyn" type="STRING" size="256"/>
  1118. <Column id="reqnonew" type="STRING" size="256"/>
  1119. <Column id="instcd" type="STRING" size="256"/>
  1120. <Column id="reqdeptcd" type="STRING" size="256"/>
  1121. <Column id="reqdd" type="STRING" size="256"/>
  1122. </ColumnInfo>
  1123. <Rows>
  1124. <Row>
  1125. <Col id="autoaprvyn"/>
  1126. <Col id="reqnonew"/>
  1127. <Col id="instcd"/>
  1128. <Col id="reqdeptcd"/>
  1129. <Col id="reqdd"/>
  1130. </Row>
  1131. </Rows>
  1132. </Dataset>
  1133. <Dataset id="ds_tempdept" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" oncolumnchanged="ds_tempdept_oncolumnchanged">
  1134. <ColumnInfo>
  1135. <Column id="tempdeptcd" type="STRING" size="256"/>
  1136. <Column id="tempdeptnm" type="STRING" size="256"/>
  1137. </ColumnInfo>
  1138. <Rows>
  1139. <Row>
  1140. <Col id="tempdeptcd"/>
  1141. <Col id="tempdeptnm"/>
  1142. </Row>
  1143. </Rows>
  1144. </Dataset>
  1145. <Dataset id="ds_send_goodlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" oncolumnchanged="ds_send_goodlist_oncolumnchanged">
  1146. <ColumnInfo>
  1147. <Column id="refcond" type="STRING" size="256"/>
  1148. <Column id="instcd" type="STRING" size="256"/>
  1149. <Column id="goodflag" type="STRING" size="256"/>
  1150. <Column id="goodcd" type="STRING" size="256"/>
  1151. <Column id="goodnm" type="STRING" size="256"/>
  1152. <Column id="indexnm" type="STRING" size="256"/>
  1153. <Column id="indexgb" type="STRING" size="256"/>
  1154. <Column id="reqflag" type="STRING" size="256"/>
  1155. <Column id="lrgcd" type="STRING" size="256"/>
  1156. <Column id="lrgnm" type="STRING" size="256"/>
  1157. <Column id="mdlcd" type="STRING" size="256"/>
  1158. <Column id="mdlnm" type="STRING" size="256"/>
  1159. <Column id="prodcmpycd" type="STRING" size="256"/>
  1160. <Column id="prodcmpynm" type="STRING" size="256"/>
  1161. <Column id="goodspec" type="STRING" size="256"/>
  1162. <Column id="goodmodel" type="STRING" size="256"/>
  1163. <Column id="oldcd" type="STRING" size="256"/>
  1164. <Column id="reqdeptcd" type="STRING" size="256"/>
  1165. <Column id="reqprid" type="STRING" size="256"/>
  1166. <Column id="instcdnm" type="STRING" size="256"/>
  1167. <Column id="reqflagnm" type="STRING" size="256"/>
  1168. <Column id="reqpridnm" type="STRING" size="256"/>
  1169. <Column id="reqcheck" type="STRING" size="256"/>
  1170. <Column id="purcdeptflag" type="STRING" size="256"/>
  1171. <Column id="workflag" type="STRING" size="256"/>
  1172. </ColumnInfo>
  1173. <Rows>
  1174. <Row>
  1175. <Col id="refcond"/>
  1176. <Col id="instcd"/>
  1177. <Col id="goodflag">Y</Col>
  1178. <Col id="goodcd"/>
  1179. <Col id="goodnm"/>
  1180. <Col id="indexnm"/>
  1181. <Col id="indexgb"/>
  1182. <Col id="reqflag"/>
  1183. <Col id="lrgcd"/>
  1184. <Col id="lrgnm"/>
  1185. <Col id="mdlcd"/>
  1186. <Col id="mdlnm"/>
  1187. <Col id="prodcmpycd"/>
  1188. <Col id="prodcmpynm"/>
  1189. <Col id="goodspec"/>
  1190. <Col id="goodmodel"/>
  1191. <Col id="oldcd"/>
  1192. <Col id="reqdeptcd"/>
  1193. <Col id="reqprid"/>
  1194. <Col id="instcdnm"/>
  1195. <Col id="reqflagnm"/>
  1196. <Col id="reqpridnm"/>
  1197. <Col id="reqcheck"/>
  1198. <Col id="purcdeptflag"/>
  1199. <Col id="workflag"/>
  1200. </Row>
  1201. </Rows>
  1202. </Dataset>
  1203. <Dataset id="ds_main_GoodLists_goodlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" oncolumnchanged="ds_main_GoodLists_goodlist_oncolumnchanged">
  1204. <ColumnInfo>
  1205. <Column id="goodcd" type="STRING" size="256" sumtext="물품코드 "/>
  1206. <Column id="goodnm" type="STRING" size="256" sumtext="goodnm "/>
  1207. <Column id="goodspec" type="STRING" size="256" sumtext="물품규격 "/>
  1208. <Column id="userqty" type="STRING" size="256" sumtext="사용자입력수량 "/>
  1209. <Column id="deliveunit" type="STRING" size="256" sumtext="수불단위 "/>
  1210. <Column id="estmamt" type="STRING" size="256" sumtext="견적가 "/>
  1211. <Column id="goodmodel" type="STRING" size="256" sumtext="모델 "/>
  1212. <Column id="prodcmpynm" type="STRING" size="256" sumtext="제조회사명 "/>
  1213. <Column id="prodcmpycd" type="STRING" size="256" sumtext="제조회사코드 "/>
  1214. <Column id="todd" type="STRING" size="256" sumtext="todd "/>
  1215. <Column id="instcd" type="STRING" size="256" sumtext="기관코드 "/>
  1216. <Column id="useyn" type="STRING" size="256" sumtext="사용여부 "/>
  1217. <Column id="fromdd" type="STRING" size="256" sumtext="fromdd "/>
  1218. <Column id="goodflag" type="STRING" size="256" sumtext="물품구분(r0025) y 진료재료, ... "/>
  1219. <Column id="goodhngnm" type="STRING" size="256" sumtext="영문명 "/>
  1220. <Column id="goodengnm" type="STRING" size="256" sumtext="물품명 "/>
  1221. <Column id="lrgcd" type="STRING" size="256" sumtext="대분류코드 "/>
  1222. <Column id="lrgnm" type="STRING" size="256" sumtext="대분류명 "/>
  1223. <Column id="mdlcd" type="STRING" size="256" sumtext="중분류코드 "/>
  1224. <Column id="mdlnm" type="STRING" size="256" sumtext="중분류명 "/>
  1225. <Column id="smlcd" type="STRING" size="256" sumtext="소분류코드 "/>
  1226. <Column id="smlnm" type="STRING" size="256" sumtext="소분류 "/>
  1227. <Column id="winacnt" type="STRING" size="256" sumtext="계정코드 "/>
  1228. <Column id="winacntnm" type="STRING" size="256" sumtext="계정코드명 "/>
  1229. <Column id="amtacnt" type="STRING" size="256" sumtext="비용계정 "/>
  1230. <Column id="amtacntnm" type="STRING" size="256" sumtext="비용계정명 "/>
  1231. <Column id="mainmngtdeptcd" type="STRING" size="256" sumtext="주관리부서코드 "/>
  1232. <Column id="mainmngtdeptnm" type="STRING" size="256" sumtext="주관리부서명 "/>
  1233. <Column id="stocmngtflag" type="STRING" size="256" sumtext="재고관리기준 "/>
  1234. <Column id="purcunit" type="STRING" size="256" sumtext="입고단위 "/>
  1235. <Column id="purcunitnm" type="STRING" size="256" sumtext="입고단위 "/>
  1236. <Column id="deliveunitnm" type="STRING" size="256" sumtext="수불단위 "/>
  1237. <Column id="exchqty" type="STRING" size="256" sumtext="환산배수 "/>
  1238. <Column id="minexch" type="STRING" size="256" sumtext="최소환산수량 "/>
  1239. <Column id="divusenvalqty" type="STRING" size="256" sumtext="분할사용수치 "/>
  1240. <Column id="edicd" type="STRING" size="256" sumtext="edi코드 "/>
  1241. <Column id="reqflag" type="STRING" size="256" sumtext="청구기준 "/>
  1242. <Column id="reqflagnm" type="STRING" size="256" sumtext="청구기준명 "/>
  1243. <Column id="reqmthd" type="STRING" size="256" sumtext="청구방법 "/>
  1244. <Column id="reqmthdnm" type="STRING" size="256" sumtext="청구방법명 "/>
  1245. <Column id="reqprid" type="STRING" size="256" sumtext="청구주기 "/>
  1246. <Column id="prodplce" type="STRING" size="256" sumtext="제조국 "/>
  1247. <Column id="prodplcenm" type="STRING" size="256" sumtext="제조국명 "/>
  1248. <Column id="maincustlastsuplplce" type="STRING" size="256" sumtext="최종공급처 "/>
  1249. <Column id="maincustlastsuplplcenm" type="STRING" size="256" sumtext="최종공급처 "/>
  1250. <Column id="suppcustcd" type="STRING" size="256" sumtext="보조거래처코드 "/>
  1251. <Column id="suppcustnm" type="STRING" size="256" sumtext="보조거래처명 "/>
  1252. <Column id="forgncurncyunitcost" type="STRING" size="256" sumtext="외화단가 "/>
  1253. <Column id="curncyunit" type="STRING" size="256" sumtext="화폐단위 "/>
  1254. <Column id="curncyunitnm" type="STRING" size="256" sumtext="화폐단위 "/>
  1255. <Column id="goodunitcost" type="STRING" size="256" sumtext="제품단가 "/>
  1256. <Column id="purcflag" type="STRING" size="256" sumtext="구매구분 "/>
  1257. <Column id="purcflagnm" type="STRING" size="256" sumtext="구매구분명 "/>
  1258. <Column id="safestocqty" type="STRING" size="256" sumtext="안전재고량 "/>
  1259. <Column id="ddavguseqty" type="STRING" size="256" sumtext="일평균사용량 "/>
  1260. <Column id="prepargodqty" type="STRING" size="256" sumtext="상비품량 "/>
  1261. <Column id="basevol" type="STRING" size="256" sumtext="청구방법 1:처방집계 상비품 그외 안전 "/>
  1262. <Column id="mmavgusescheqty" type="STRING" size="256" sumtext="월평균사용예정량 "/>
  1263. <Column id="mmavguseqty" type="STRING" size="256" sumtext="월평균사용량 "/>
  1264. <Column id="prprtystocpossndayno" type="STRING" size="256" sumtext="적정재고보유일수 "/>
  1265. <Column id="stocqty" type="STRING" size="256" sumtext="재고량 "/>
  1266. <Column id="curemealstocqty" type="STRING" size="256" sumtext="치료식현재고수량 "/>
  1267. <Column id="empmealstocqty" type="STRING" size="256" sumtext="직원식현재고수량 "/>
  1268. <Column id="empnigtmealstocqty" type="STRING" size="256" sumtext="직원야식현재고수량 "/>
  1269. <Column id="curemealstocqty" type="STRING" size="256" sumtext="영양팀치료식 "/>
  1270. <Column id="empmealstocqty" type="STRING" size="256" sumtext="영양팀직원식 "/>
  1271. <Column id="empnigtmealstocqty" type="STRING" size="256" sumtext="영양팀직원야식 "/>
  1272. <Column id="allsizeyn" type="STRING" size="256" sumtext="allsize여부 "/>
  1273. <Column id="orgloc" type="STRING" size="256" sumtext="원산지 "/>
  1274. <Column id="select" type="STRING" size="256" sumtext=" "/>
  1275. <Column id="bnscd" type="STRING" size="256" sumtext=" "/>
  1276. <Column id="oldcd" type="STRING" size="256" sumtext="구코드 "/>
  1277. <Column id="goodpurccost" type="STRING" size="256" sumtext="납품가 "/>
  1278. <Column id="reqpridnm" type="STRING" size="256" sumtext="청구주기명 "/>
  1279. <Column id="allsizespecid" type="STRING" size="256" sumtext="allsize코드 "/>
  1280. <Column id="reqfnldeptcd" type="STRING" size="256" sumtext="출고부서 "/>
  1281. <Column id="reqcollcdeptcd" type="STRING" size="256" sumtext="청구취합부서 "/>
  1282. <Column id="setunit" type="STRING" size="256" sumtext="포장구성단위 "/>
  1283. <Column id="constunit" type="STRING" size="256" sumtext="포장구성단위 "/>
  1284. <Column id="tmpreqflag" type="STRING" size="256" sumtext="임의청구구분 Y:청구가능 N:청구불가능 "/>
  1285. <Column id="prcpqty" type="STRING" size="256" sumtext="처방수량 "/>
  1286. <Column id="prcpunit" type="STRING" size="256" sumtext="처방단위 "/>
  1287. <Column id="prprtystocqty" type="STRING" size="256" sumtext="적정재고량 "/>
  1288. <Column id="prprtyreqqty" type="STRING" size="256" sumtext="적정청구량 "/>
  1289. <Column id="wstyn" type="STRING" size="256" sumtext="의료폐기물 용기 여부 "/>
  1290. <Column id="reqmutpleqty" type="STRING" size="256" sumtext="청구수량고정배수 "/>
  1291. </ColumnInfo>
  1292. </Dataset>
  1293. <Dataset id="ds_main_list_reqmst_reqsetmst" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1294. <ColumnInfo>
  1295. <Column id="instcd" type="STRING" size="256" sumtext="기관코드"/>
  1296. <Column id="reqprid" type="STRING" size="256" sumtext="청구주기"/>
  1297. <Column id="reqdeptcd" type="STRING" size="256" sumtext="청구부서코드"/>
  1298. <Column id="reqdeptnm" type="STRING" size="256" sumtext="청구부서명"/>
  1299. <Column id="reqflag" type="STRING" size="256" sumtext="청구구분"/>
  1300. <Column id="goodsetnm" type="STRING" size="256" sumtext="물품set명"/>
  1301. <Column id="oldgoodsetnm" type="STRING" size="256" sumtext="물품set명"/>
  1302. </ColumnInfo>
  1303. </Dataset>
  1304. <Dataset id="ds_main_list_reqset_reqsetlist" firefirstcount="0" firenextcount="0" useclientlayout="true" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" oncolumnchanged="ds_main_list_reqset_reqsetlist_oncolumnchanged">
  1305. <ColumnInfo>
  1306. <Column id="chk" type="STRING" size="256" sumtext="Check "/>
  1307. <Column id="instcd" type="STRING" size="256" sumtext="기관코드 "/>
  1308. <Column id="reqdeptcd" type="STRING" size="256" sumtext="청구부서코드 "/>
  1309. <Column id="reqdeptnm" type="STRING" size="256" sumtext="청구부서명 "/>
  1310. <Column id="reqflag" type="STRING" size="256" sumtext="청구구분(r0025) "/>
  1311. <Column id="goodsetnm" type="STRING" size="256" sumtext="물품set명 "/>
  1312. <Column id="goodcd" type="STRING" size="256" sumtext="물품코드 "/>
  1313. <Column id="goodflag" type="STRING" size="256" sumtext="물품코드 "/>
  1314. <Column id="goodflagnm" type="STRING" size="256" sumtext="물품코드 "/>
  1315. <Column id="goodnm" type="STRING" size="256" sumtext="물품명 "/>
  1316. <Column id="goodspec" type="STRING" size="256" sumtext="물품규격 "/>
  1317. <Column id="goodmodel" type="STRING" size="256" sumtext="물품모델 "/>
  1318. <Column id="prodcmpycd" type="STRING" size="256" sumtext="제조회사코드 "/>
  1319. <Column id="prodcmpynm" type="STRING" size="256" sumtext="제조회사명 "/>
  1320. <Column id="goodqty" type="STRING" size="256" sumtext="물품수량(안전재고량) "/>
  1321. <Column id="basevol" type="STRING" size="256" sumtext="처방구분 "/>
  1322. <Column id="prepargodqty" type="STRING" size="256" sumtext="부서 상비품량 "/>
  1323. <Column id="deliveunit" type="STRING" size="256" sumtext="수불단위 "/>
  1324. <Column id="deliveunitnm" type="STRING" size="256" sumtext="수불단위명 "/>
  1325. <Column id="purcunit" type="STRING" size="256" sumtext="구매단위 "/>
  1326. <Column id="minexch" type="STRING" size="256" sumtext="최소청구량 "/>
  1327. <Column id="stocqty" type="STRING" size="256" sumtext="재고량 "/>
  1328. <Column id="ddavguseqty" type="STRING" size="256" sumtext="일평균사용량 "/>
  1329. <Column id="cmt" type="STRING" size="256" sumtext="비고 "/>
  1330. <Column id="allsizeyn" type="STRING" size="256" sumtext="allsizeyn "/>
  1331. <Column id="allsizespecid" type="STRING" size="256" sumtext="allsizespecid "/>
  1332. <Column id="allsizespecidnm" type="STRING" size="256" sumtext="allsizespecidnm "/>
  1333. <Column id="select" type="STRING" size="256" sumtext="선택 "/>
  1334. <Column id="fstrgstrid" type="STRING" size="256" sumtext="최초등록자ID "/>
  1335. <Column id="fstrgstdt" type="STRING" size="256" sumtext="최초등록일시 "/>
  1336. <Column id="lastupdtrid" type="STRING" size="256" sumtext="최종수정자ID "/>
  1337. <Column id="lastupdtdt" type="STRING" size="256" sumtext="최종수정일시 "/>
  1338. <Column id="maincustlastsuplplce" type="STRING" size="256" sumtext="주거래처 "/>
  1339. <Column id="suppcustcd" type="STRING" size="256" sumtext="부거래처 "/>
  1340. <Column id="safestocqty" type="STRING" size="256" sumtext="안전재고량(약국구매화면) "/>
  1341. <Column id="exchqty" type="STRING" size="256" sumtext="환산수량(약국구매화면) "/>
  1342. <Column id="goodunitcost" type="STRING" size="256" sumtext="단가(약국구매화면) "/>
  1343. <Column id="calcqty" type="STRING" size="256" sumtext="계산량(약국구매화면) "/>
  1344. <Column id="reqpridnm" type="STRING" size="256" sumtext="청구주기명 "/>
  1345. <Column id="reqprid" type="STRING" size="256" sumtext="청구주기 "/>
  1346. <Column id="reqflagnm" type="STRING" size="256" sumtext="청구구분명 "/>
  1347. <Column id="allsizespecid" type="STRING" size="256" sumtext="allsizespecidold "/>
  1348. <Column id="reqfnldeptcd" type="STRING" size="256" sumtext="출고부서 "/>
  1349. <Column id="reqcollcdeptcd" type="STRING" size="256" sumtext="청구취합부서 "/>
  1350. <Column id="reqmthd" type="STRING" size="256" sumtext="청구방법 1:처방,2:정량,3:일반"/>
  1351. <Column id="reqmthdnm" type="STRING" size="256" sumtext="청구방법명 "/>
  1352. <Column id="purcflag" type="STRING" size="256" sumtext="구매구분 1:구매,2:수탁,3:가납"/>
  1353. <Column id="purcflagnm" type="STRING" size="256" sumtext="구매구분명 "/>
  1354. <Column id="setunit" type="STRING" size="256" sumtext="포장구성단위 "/>
  1355. <Column id="constunit" type="STRING" size="256" sumtext="포장구성단위 "/>
  1356. <Column id="tmpreqflag" type="STRING" size="256" sumtext="임의청구구분 Y:청구가능 N:청구불가능 "/>
  1357. </ColumnInfo>
  1358. </Dataset>
  1359. <Dataset id="ds_main_codelist" firefirstcount="0" firenextcount="0" useclientlayout="true" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" oncolumnchanged="ds_main_codelist_oncolumnchanged">
  1360. <ColumnInfo>
  1361. <Column id="allsizespecid" type="STRING" size="256" sumtext="ID"/>
  1362. <Column id="goodspec" type="STRING" size="256" sumtext="규격"/>
  1363. <Column id="goodmodel" type="STRING" size="256" sumtext="모델"/>
  1364. <Column id="chk" type="STRING" size="256" sumtext="Check"/>
  1365. <Column id="qty" type="STRING" size="256" sumtext="수량"/>
  1366. </ColumnInfo>
  1367. </Dataset>
  1368. <Dataset id="ds_main_list_goodreq_goodreqlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" oncolumnchanged="ds_main_list_goodreq_goodreqlist_oncolumnchanged">
  1369. <ColumnInfo>
  1370. <Column id="instcd" type="STRING" size="256" sumtext="instcd "/>
  1371. <Column id="reqflag" type="STRING" size="256" sumtext="청구구분 "/>
  1372. <Column id="reqdd" type="STRING" size="256" sumtext="청구일자 "/>
  1373. <Column id="reqno" type="STRING" size="256" sumtext="청구번호 "/>
  1374. <Column id="reqseqno" type="STRING" size="256" sumtext="청구일련번호 "/>
  1375. <Column id="goodnm" type="STRING" size="256" sumtext="물품명 "/>
  1376. <Column id="goodspec" type="STRING" size="256" sumtext="규격 "/>
  1377. <Column id="goodmodel" type="STRING" size="256" sumtext="모델 "/>
  1378. <Column id="prodcmpynm" type="STRING" size="256" sumtext="제조사 "/>
  1379. <Column id="setunit" type="STRING" size="256" sumtext="포장구성단위 "/>
  1380. <Column id="stdysubjnm" type="STRING" size="256" sumtext="연구과제명 "/>
  1381. <Column id="stocqty" type="STRING" size="256" sumtext="재고수량 "/>
  1382. <Column id="reqqty" type="STRING" size="256" sumtext="청구수량 "/>
  1383. <Column id="requnit" type="STRING" size="256" sumtext="청구단위 "/>
  1384. <Column id="deptaprvyn" type="STRING" size="256" sumtext="부서승인여부 "/>
  1385. <Column id="deptaprvnm" type="STRING" size="256" sumtext="부서승인여부 "/>
  1386. <Column id="groupbugt" type="STRING" size="256" sumtext="예산코드그룹 "/>
  1387. <Column id="bugtnm" type="STRING" size="256" sumtext="예산명 "/>
  1388. <Column id="projectnm" type="STRING" size="256" sumtext="프로젝트명 "/>
  1389. <Column id="totamt" type="STRING" size="256" sumtext="예산편성액 "/>
  1390. <Column id="bugtexpcamt" type="STRING" size="256" sumtext="예산추산액 "/>
  1391. <Column id="bugtexecamt" type="STRING" size="256" sumtext="예산집행액 "/>
  1392. <Column id="remainder" type="STRING" size="256" sumtext="예산잔액 "/>
  1393. <Column id="workflag" type="STRING" size="256" sumtext="작업구분(청구,반납) "/>
  1394. <Column id="reqmthdflag" type="STRING" size="256" sumtext="청구방법 "/>
  1395. <Column id="deliveflag" type="STRING" size="256" sumtext="불출구분(정기,응급) "/>
  1396. <Column id="reqpridflag" type="STRING" size="256" sumtext="청구주기구분 "/>
  1397. <Column id="goodcd" type="STRING" size="256" sumtext="물품코드 "/>
  1398. <Column id="allsizespecid" type="STRING" size="256" sumtext="allsize id "/>
  1399. <Column id="goodflag" type="STRING" size="256" sumtext="goodflag "/>
  1400. <Column id="purcunit" type="STRING" size="256" sumtext="단위 "/>
  1401. <Column id="purcunitnm" type="STRING" size="256" sumtext="단위명 "/>
  1402. <Column id="stocmngtflag" type="STRING" size="256" sumtext="재고구분 "/>
  1403. <Column id="bugtcd" type="STRING" size="256" sumtext="예산코드 "/>
  1404. <Column id="stdysubjno" type="STRING" size="256" sumtext="연구과제번호 "/>
  1405. <Column id="reqdeptcd" type="STRING" size="256" sumtext="청구부서 "/>
  1406. <Column id="reqcollcdeptcd" type="STRING" size="256" sumtext="청구취합부서 "/>
  1407. <Column id="delivedeptcd" type="STRING" size="256" sumtext="출고부서 "/>
  1408. <Column id="delivehopedd" type="STRING" size="256" sumtext="출고희망일 "/>
  1409. <Column id="reqpsnid" type="STRING" size="256" sumtext="청구자코드 "/>
  1410. <Column id="reqpsnnm" type="STRING" size="256" sumtext="청구자명 "/>
  1411. <Column id="reqtm" type="STRING" size="256" sumtext="청구시간 "/>
  1412. <Column id="ddavguseqty" type="STRING" size="256" sumtext="일평균사용량 "/>
  1413. <Column id="minexch" type="STRING" size="256" sumtext="최소청구량 "/>
  1414. <Column id="basevol" type="STRING" size="256" sumtext="기준량 "/>
  1415. <Column id="prereqqty" type="STRING" size="256" sumtext="기청구수량 "/>
  1416. <Column id="adjtqty" type="STRING" size="256" sumtext="조정수량 "/>
  1417. <Column id="preadjtqty" type="STRING" size="256" sumtext="조정수량 "/>
  1418. <Column id="adjtrsn" type="STRING" size="256" sumtext="조정사유 "/>
  1419. <Column id="predeptaprvyn" type="STRING" size="256" sumtext="부서승인여부 "/>
  1420. <Column id="deptaprvdd" type="STRING" size="256" sumtext="부서승인일자 "/>
  1421. <Column id="acptflag" type="STRING" size="256" sumtext="접수여부 "/>
  1422. <Column id="acptflagnm" type="STRING" size="256" sumtext="접수여부명 "/>
  1423. <Column id="acptdd" type="STRING" size="256" sumtext="접수일자 "/>
  1424. <Column id="acptcharid" type="STRING" size="256" sumtext="접수담당자id "/>
  1425. <Column id="purcdmnddd" type="STRING" size="256" sumtext="구매요구일자 "/>
  1426. <Column id="purcdmndno" type="STRING" size="256" sumtext="구매요구번호 "/>
  1427. <Column id="purcdmndseq" type="STRING" size="256" sumtext="구매요구일련번호 "/>
  1428. <Column id="colreqdd" type="STRING" size="256" sumtext="colreqdept "/>
  1429. <Column id="colreqno" type="STRING" size="256" sumtext="colreqno "/>
  1430. <Column id="colreqseqno" type="STRING" size="256" sumtext="colreqseqno "/>
  1431. <Column id="deliveqty" type="STRING" size="256" sumtext="불출수량 "/>
  1432. <Column id="unwinresn" type="STRING" size="256" sumtext="미입고사유 "/>
  1433. <Column id="deliveprcsflag" type="STRING" size="256" sumtext="출고진행구분 "/>
  1434. <Column id="cmt" type="STRING" size="256" sumtext="비고 "/>
  1435. <Column id="chkcmt" type="STRING" size="256" sumtext="CHECK비고 "/>
  1436. <Column id="reqarthyn" type="STRING" size="256" sumtext="청구승인권한여부 "/>
  1437. <Column id="aprvyn" type="STRING" size="256" sumtext="발주승인여부 "/>
  1438. <Column id="lrgnm" type="STRING" size="256" sumtext="발주승인여부 "/>
  1439. <Column id="csrsafestocqty" type="STRING" size="256" sumtext="중앙공급실 청구pgm 조회용컬럼(비품기준량)"/>
  1440. <Column id="csrddavguseqty" type="STRING" size="256" sumtext="중앙공급실 청구pgm 조회용컬럼(기준대여량)"/>
  1441. <Column id="allsizespecidnm" type="STRING" size="256" sumtext="allsize id "/>
  1442. <Column id="allsizeyn" type="STRING" size="256" sumtext="allsize 여부 "/>
  1443. <Column id="studyinstcd" type="STRING" size="256" sumtext="산학청구기관 "/>
  1444. <Column id="rgstqty" type="STRING" size="256" sumtext="집계수량(수액) "/>
  1445. <Column id="exchqty" type="STRING" size="256" sumtext="환산수량 "/>
  1446. <Column id="projectid" type="STRING" size="256" sumtext="프로젝트id "/>
  1447. <Column id="reqdeptnm" type="STRING" size="256" sumtext="청구부서명 "/>
  1448. <Column id="reqflagnm" type="STRING" size="256" sumtext="청구구분명 "/>
  1449. <Column id="reqflagnm" type="STRING" size="256" sumtext="청구구분명 "/>
  1450. <Column id="setunit" type="STRING" size="256" sumtext="포장구성단위 "/>
  1451. <Column id="suppcustcd" type="STRING" size="256" sumtext="보조거래처 "/>
  1452. <Column id="suppcustcdnm" type="STRING" size="256" sumtext="보조거래처명 "/>
  1453. <Column id="befmonreqqty" type="STRING" size="256" sumtext="전월청구수량 "/>
  1454. <Column id="jobstatus" type="STRING" size="256" sumtext="작업구분 "/>
  1455. <Column id="constunit" type="STRING" size="256" sumtext="포장구성단위 "/>
  1456. </ColumnInfo>
  1457. </Dataset>
  1458. <Dataset id="ds_main_list_goodreq_goodmaxreqno" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1459. <ColumnInfo>
  1460. <Column id="reqno" type="STRING" size="256" sumtext="청구번호 "/>
  1461. <Column id="reqfix" type="STRING" size="256" sumtext="청구번호수정가능여부 "/>
  1462. </ColumnInfo>
  1463. </Dataset>
  1464. <Dataset id="ds_cmb_workflag" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1465. <ColumnInfo>
  1466. <Column id="label" type="STRING" size="256"/>
  1467. <Column id="value" type="STRING" size="256"/>
  1468. </ColumnInfo>
  1469. <Rows>
  1470. <Row>
  1471. <Col id="label">일반청구</Col>
  1472. <Col id="value">1</Col>
  1473. </Row>
  1474. <Row>
  1475. <Col id="label">반납청구</Col>
  1476. <Col id="value">2</Col>
  1477. </Row>
  1478. <Row>
  1479. <Col id="label">상비품청구</Col>
  1480. <Col id="value">3</Col>
  1481. </Row>
  1482. <Row>
  1483. <Col id="label">상비품반납</Col>
  1484. <Col id="value">4</Col>
  1485. </Row>
  1486. </Rows>
  1487. </Dataset>
  1488. <Dataset id="ds_send_reqpsn" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1489. <ColumnInfo>
  1490. <Column id="instcd" type="STRING" size="256"/>
  1491. <Column id="emplno" type="STRING" size="256"/>
  1492. <Column id="reqflag" type="STRING" size="256"/>
  1493. <Column id="reqdeptcd" type="STRING" size="256"/>
  1494. </ColumnInfo>
  1495. <Rows>
  1496. <Row>
  1497. <Col id="instcd"/>
  1498. <Col id="emplno"/>
  1499. </Row>
  1500. </Rows>
  1501. </Dataset>
  1502. <Dataset id="ds_main_ReqpsnLists_reqpsnlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1503. <Dataset id="ds_init_CopyData" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1504. <ColumnInfo>
  1505. <Column id="value" type="STRING" size="256"/>
  1506. <Column id="label" type="STRING" size="256"/>
  1507. </ColumnInfo>
  1508. <Rows>
  1509. <Row/>
  1510. </Rows>
  1511. </Dataset>
  1512. <Dataset id="ds_init_ReqDeptLists_reqdeptlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1513. <Dataset id="ds_main_DeptReqnoLists_reqnolist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1514. <Dataset id="ds_init_cmb_goodflag" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1515. <Dataset id="ds_init_cmb_goodflagcopy" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1516. <Dataset id="ds_main_BugLists_bugtlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1517. <ColumnInfo>
  1518. <Column id="groupbugt" type="STRING" size="256" sumtext="예산코드그룹 "/>
  1519. <Column id="groupbugtnm" type="STRING" size="256" sumtext="예산코드그룹명 "/>
  1520. <Column id="bugtcd" type="STRING" size="256" sumtext="계정코드 "/>
  1521. <Column id="bugtcdnm" type="STRING" size="256" sumtext="계정명 "/>
  1522. <Column id="projectyn" type="STRING" size="256" sumtext="프로젝트여부 "/>
  1523. <Column id="projectid" type="STRING" size="256" sumtext="프로젝트id "/>
  1524. <Column id="projectnm" type="STRING" size="256" sumtext="프로젝트명칭 "/>
  1525. <Column id="totamt" type="STRING" size="256" sumtext="에산편성액 "/>
  1526. <Column id="bugtexpcamt" type="STRING" size="256" sumtext="예산추산액 "/>
  1527. <Column id="bugtexecamt" type="STRING" size="256" sumtext="예산집행액 "/>
  1528. <Column id="remainder" type="STRING" size="256" sumtext="예산잔액 "/>
  1529. <Column id="bugtproject" type="STRING" size="256" sumtext="예산코드+프로젝트 "/>
  1530. <Column id="bugtprojectnm" type="STRING" size="256" sumtext="예산코드+프로젝트 "/>
  1531. </ColumnInfo>
  1532. </Dataset>
  1533. <Dataset id="ds_send_reqmst" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1534. <ColumnInfo>
  1535. <Column id="instcd" type="STRING" size="256"/>
  1536. <Column id="reqdeptcd" type="STRING" size="256"/>
  1537. <Column id="reqflag" type="STRING" size="256"/>
  1538. <Column id="reqpridflag" type="STRING" size="256"/>
  1539. </ColumnInfo>
  1540. <Rows>
  1541. <Row>
  1542. <Col id="instcd"/>
  1543. <Col id="reqdeptcd"/>
  1544. <Col id="reqflag"/>
  1545. <Col id="reqpridflag"/>
  1546. </Row>
  1547. </Rows>
  1548. </Dataset>
  1549. <Dataset id="ds_send_reqset" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1550. <ColumnInfo>
  1551. <Column id="instcd" type="STRING" size="256"/>
  1552. <Column id="reqdeptcd" type="STRING" size="256"/>
  1553. <Column id="reqprid" type="STRING" size="256"/>
  1554. <Column id="goodsetcd" type="STRING" size="256"/>
  1555. <Column id="reqflag" type="STRING" size="256"/>
  1556. <Column id="goodsetnm" type="STRING" size="256"/>
  1557. </ColumnInfo>
  1558. <Rows>
  1559. <Row>
  1560. <Col id="instcd"/>
  1561. <Col id="reqdeptcd"/>
  1562. <Col id="reqprid"/>
  1563. <Col id="goodsetcd"/>
  1564. <Col id="reqflag"/>
  1565. <Col id="goodsetnm"/>
  1566. </Row>
  1567. </Rows>
  1568. </Dataset>
  1569. <Dataset id="ds_target_defaultvalue" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1570. <ColumnInfo>
  1571. <Column id="reqdeptcd" type="STRING" size="256"/>
  1572. </ColumnInfo>
  1573. </Dataset>
  1574. <Dataset id="ds_send" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1575. <ColumnInfo>
  1576. <Column id="goodnm" type="STRING" size="256"/>
  1577. <Column id="indexnm" type="STRING" size="256"/>
  1578. </ColumnInfo>
  1579. <Rows>
  1580. <Row/>
  1581. </Rows>
  1582. </Dataset>
  1583. <Dataset id="ds_copynode" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1584. <Dataset id="ds_send_allsize" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1585. <ColumnInfo>
  1586. <Column id="goodcd" type="STRING" size="256"/>
  1587. <Column id="instcd" type="STRING" size="256"/>
  1588. <Column id="goodspec" type="STRING" size="256"/>
  1589. </ColumnInfo>
  1590. <Rows>
  1591. <Row>
  1592. <Col id="goodcd"/>
  1593. <Col id="instcd"/>
  1594. <Col id="goodspec"/>
  1595. </Row>
  1596. </Rows>
  1597. </Dataset>
  1598. </Objects>
  1599. <Bind>
  1600. <BindItem id="item0" compid="grp_sea.rdo_instcd" propid="value" datasetid="ds_send_goodreq" columnid="instcd"/>
  1601. <BindItem id="item1" compid="grp_sea.opt_instcdgood" propid="value" datasetid="ds_send_goodreq" columnid="instcdgood"/>
  1602. <BindItem id="item2" compid="grp_sea.cmb_workflag" propid="value" datasetid="ds_send_goodreq" columnid="workflag"/>
  1603. <BindItem id="item3" compid="grp_sea.opt_reqfinaldept" propid="value" datasetid="ds_init" columnid="reqfinaldeptcd"/>
  1604. <BindItem id="item4" compid="grp_sea.opt_projectyn" propid="value" datasetid="ds_send_goodreq" columnid="projectyn"/>
  1605. <BindItem id="item5" compid="grp_sea.cmb_groupbugt" propid="value" datasetid="ds_send_goodreq" columnid="groupbugt"/>
  1606. <BindItem id="item6" compid="grp_sea.cmb_studyinstcd" propid="value" datasetid="ds_send_goodreq" columnid="studyinstcd"/>
  1607. <BindItem id="item7" compid="grp_sea.opt_requser" propid="value" datasetid="ds_init" columnid="requserno"/>
  1608. <BindItem id="item8" compid="grp_sea.opt_requsernm" propid="value" datasetid="ds_init" columnid="requsernm"/>
  1609. <BindItem id="item9" compid="grp_sea.rdo_inputmethod" propid="value" datasetid="ds_send_goodreq" columnid="inputmethod"/>
  1610. <BindItem id="item10" compid="grp_sea.ipt_reqddnew" propid="value" datasetid="ds_send_goodreq" columnid="reqdd"/>
  1611. <BindItem id="item11" compid="grp_sea.ipt_todd" propid="value" datasetid="ds_main_rsdhdeymlist" columnid="todd"/>
  1612. <BindItem id="item12" compid="grp_sea.ipt_reqdd" propid="value" datasetid="ds_send_goodreq" columnid="reqdd"/>
  1613. <BindItem id="item13" compid="grp_sea.cmb_reqno" propid="value" datasetid="ds_send_goodreq" columnid="reqno"/>
  1614. <BindItem id="item14" compid="grp_sea.chk_reqnonew" propid="value" datasetid="ds_send_save_autoaprv" columnid="reqnonew"/>
  1615. <BindItem id="item15" compid="grp_sea.cmb_bugtflag" propid="value" datasetid="ds_send_goodreq" columnid="bugtproject"/>
  1616. <BindItem id="item16" compid="grp_sea.cmb_reqdeptcd" propid="value" datasetid="ds_send_goodreq" columnid="reqdeptcd"/>
  1617. <BindItem id="item17" compid="grp_sea.ipt_stdysubjno" propid="value" datasetid="ds_send_goodreq" columnid="stdysubjno"/>
  1618. <BindItem id="item18" compid="grp_sea.ipt_stdysubjnm" propid="value" datasetid="ds_send_goodreq" columnid="stdysubjnm"/>
  1619. <BindItem id="item19" compid="grp_sea.opt_projectid" propid="value" datasetid="ds_send_goodreq" columnid="projectid"/>
  1620. <BindItem id="item20" compid="grp_sea.opt_projectnm" propid="value" datasetid="ds_send_goodreq" columnid="projectnm"/>
  1621. <BindItem id="item21" compid="grp_sea.opt_totamt" propid="value" datasetid="ds_send_goodreq" columnid="totamt"/>
  1622. <BindItem id="item22" compid="grp_sea.opt_bugtexpcamt" propid="value" datasetid="ds_send_goodreq" columnid="bugtexpcamt"/>
  1623. <BindItem id="item23" compid="grp_sea.opt_bugtexecamt" propid="value" datasetid="ds_send_goodreq" columnid="bugtexecamt"/>
  1624. <BindItem id="item24" compid="grp_sea.opt_remainder" propid="value" datasetid="ds_send_goodreq" columnid=""/>
  1625. <BindItem id="item25" compid="ipt_tempdeptcd" propid="value" datasetid="ds_tempdept" columnid="tempdeptcd"/>
  1626. <BindItem id="item26" compid="ipt_tempdeptnm" propid="value" datasetid="ds_tempdept" columnid="tempdeptnm"/>
  1627. <BindItem id="item28" compid="swt_search.gd_find.group2.cmb_reqflag" propid="value" datasetid="ds_init" columnid="reqflag"/>
  1628. <BindItem id="item29" compid="swt_search.gd_find.group2.ipt_goodspec" propid="value" datasetid="ds_send_goodlist" columnid="goodspec"/>
  1629. <BindItem id="item30" compid="swt_search.gd_find.group2.ipt_goodmodel" propid="value" datasetid="ds_send_goodlist" columnid="goodmodel"/>
  1630. <BindItem id="item31" compid="swt_search.gd_find.group2.ipt_prodcmpycd" propid="value" datasetid="ds_send_goodlist" columnid="prodcmpycd"/>
  1631. <BindItem id="item32" compid="swt_search.gd_find.group2.ipt_prodcmpynm" propid="value" datasetid="ds_send_goodlist" columnid="prodcmpynm"/>
  1632. <BindItem id="item33" compid="swt_search.gd_find.group2.ipt_oldcd_search" propid="value" datasetid="ds_send_goodlist" columnid="oldcd"/>
  1633. <BindItem id="item34" compid="swt_search.gd_find.group2.ipt_goodnm" propid="value" datasetid="ds_send_goodlist" columnid=""/>
  1634. <BindItem id="item35" compid="swt_search.gd_find.group2.cmb_goodflag" propid="value" datasetid="ds_send_goodlist" columnid=""/>
  1635. </Bind>
  1636. <Script type="xscript4.0"><![CDATA[/***************************************************************************************
  1637. * System Name :
  1638. * Job Name :
  1639. * Creator :
  1640. * Make Date : 2017-06-19
  1641. * Description :
  1642. *---------------------------------------------------------------------------------------
  1643. * Modify Date Modifier Modify Description
  1644. *---------------------------------------------------------------------------------------
  1645. * 2017-06-19 Live Converter TF->XP
  1646. *
  1647. *---------------------------------------------------------------------------------------
  1648. ****************************************************************************************/
  1649. include "com_commonxp::comm_main.xjs";
  1650. include "mis_miscommonxp::MIS.xjs";
  1651. include "mis_miscommonxp::RSZ001.xjs";
  1652. include "mis_reqxp::SMRSD00500.xjs";
  1653. var cmbworkflagold = "";
  1654. function SMRSD00500_oninit(obj:Form, e:InitEventInfo)
  1655. {
  1656. frmf_initForm(obj);
  1657. }
  1658. function SMRSD00500_onload(obj:Form, e:LoadEventInfo)
  1659. {
  1660. grdf_initGrid(swt_search.gd_find.grd_goodlist);
  1661. grdf_initGrid(swt_search.gd_set.grd_reqset);
  1662. grdf_initGrid(swt_search.gd_set.grd_setlist);
  1663. grdf_initGrid(grd_goodreq);
  1664. grdf_setRowTypeIcon(grd_goodreq, 0);
  1665. grdf_initGrid(grp_allsize.grd_codelist);
  1666. grdf_setRowTypeIcon(grd_goodreq, 0);
  1667. fInit();
  1668. }
  1669. function grp_sea_rdo_instcd_onitemchanged(obj:Radio, e:ItemChangeEventInfo)
  1670. {
  1671. fInstcdChange(rdo_instcd.value);
  1672. }
  1673. function grp_sea_cmb_studyinstcd_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
  1674. {
  1675. grp_sea.btn_search.click();
  1676. }
  1677. function grp_sea_rdo_inputmethod_onitemchanged(obj:Radio, e:ItemChangeEventInfo)
  1678. {
  1679. if (obj.value = "1")
  1680. {
  1681. grd_goodreq.setCellProperty("Body", grd_goodreq.getBindCellIndex("Body", "stocqty"), "edittype", "none");
  1682. grd_goodreq.setCellProperty("Body", grd_goodreq.getBindCellIndex("Body", "reqqty"), "edittype", "normal");
  1683. }
  1684. else
  1685. {
  1686. grd_goodreq.setCellProperty("Body", grd_goodreq.getBindCellIndex("Body", "stocqty"), "edittype", "normal");
  1687. grd_goodreq.setCellProperty("Body", grd_goodreq.getBindCellIndex("Body", "reqqty"), "edittype", "none");
  1688. }
  1689. }
  1690. function grp_sea_cmb_workflag_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
  1691. {
  1692. fWorkFlagChange();
  1693. }
  1694. function grp_sea_cmb_workflag_onitemclick(obj:Combo, e:ListBoxClickEventInfo)
  1695. {
  1696. cmbworkflagold = obj.value;
  1697. }
  1698. function grp_sea_ipt_reqdd_onchanged(obj:Calendar, e:ChangeEventInfo)
  1699. {
  1700. misfGridInit(grd_goodreq);
  1701. fDeptReqNoQuery();
  1702. }
  1703. function grp_sea_ipt_reqddnew_onchanged(obj:Calendar, e:ChangeEventInfo)
  1704. {
  1705. if (obj.value < utlf_getCurrentDate())
  1706. {
  1707. var nowdeptcd = rszfGetPurcDeptCd( sysf_getUserInfo("dutplceinstcd") );
  1708. if (nowdeptcd != sysf_getUserInfo("dutplcecd") )
  1709. {
  1710. sysf_messageBox("신규의 경우는 현재일자 보다 작은 청구일자를 입력 ", "C001");
  1711. grp_sea.ipt_reqddnew.value = utlf_getCurrentDate();
  1712. }
  1713. }
  1714. }
  1715. function grp_sea_cmb_reqno_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
  1716. {
  1717. if (fCheckRetrieveData(false) == false)return;
  1718. misfGridInit(grd_goodreq);
  1719. }
  1720. function grp_sea_chk_reqnonew_onclick(obj:CheckBox, e:ClickEventInfo)
  1721. {
  1722. if(obj.value == "Y")
  1723. {
  1724. grp_sea.cmb_reqno.value ="";
  1725. }
  1726. else
  1727. {
  1728. ds_send_save_autoaprv.setColumn(0, "reqnonew", "")
  1729. }
  1730. fNewReqNo();
  1731. }
  1732. function grp_sea_cmb_reqdeptcd_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
  1733. {
  1734. misfGridInit(grd_goodreq);
  1735. grp_sea.cmb_groupbugt.value = "";
  1736. frmf_inputEnterKey("grp_sea.cmb_groupbugt", "onitemchanged", new ItemChangeEventInfo);
  1737. if (swt_search.tabindex == 1)
  1738. {
  1739. fReqSetList() ;
  1740. }
  1741. fDeptReqNoQuery();
  1742. if (!utlf_isNull(grp_sea.cmb_reqno.value))
  1743. {
  1744. grp_sea.btn_search.click();
  1745. }
  1746. }
  1747. function grp_sea_cmb_groupbugt_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
  1748. {
  1749. fAcctDataClear();
  1750. if (!utlf_isNull(obj.value))
  1751. {
  1752. ds_send_goodreq.setColumn(0, "deptcd" , grp_sea.cmb_reqdeptcd.value);
  1753. ds_send_goodreq.setColumn(0, "supacntcd4" , obj.value);
  1754. var oParam = {};
  1755. oParam.id = "TRRSD00414";
  1756. oParam.service = "purccommonapp.PurcCommon";
  1757. oParam.method = "reqGetBugtListHelp";
  1758. oParam.inds = "req=ds_send_goodreq";
  1759. oParam.outds = "ds_main_BugLists_bugtlist=bugtlist";
  1760. oParam.async = false;
  1761. //oParam.callback = "cf_TRRSD00414";
  1762. tranf_submit(oParam);
  1763. }
  1764. }
  1765. function ds_send_goodreq_oncolumnchanged(obj:Dataset, e:DSColChangeEventInfo)
  1766. {
  1767. if(e.columnid == "stdysubjno")
  1768. {
  1769. grp_sea.ipt_stdysubjno.value = e.newvalue;
  1770. grp_sea.ipt_stdysubjno.setFocus();
  1771. if(String(e.newvalue).length == 0)
  1772. {
  1773. grp_sea.ipt_stdysubjnm.value = "";
  1774. }
  1775. else
  1776. {
  1777. rszfValidationCheck("TRRSD00261", "studylist", "instcd,refcond,stdysubjno,reqdd",
  1778. grp_sea.rdo_instcd.value + ",stdysubjno," + e.newvalue + "," + grp_sea.ipt_reqdd.value, "", "stdysubjno,stdysubjnm",
  1779. grp_sea.ipt_stdysubjno, "SPRSD00260", "instcd,reqdd", grp_sea.rdo_instcd.value + "," + grp_sea.ipt_reqdd.value);
  1780. }
  1781. }
  1782. if(e.columnid == "stdysubjnm")
  1783. {
  1784. grp_sea.ipt_stdysubjnm.value = e.newvalue;
  1785. grp_sea.ipt_stdysubjnm.setFocus();
  1786. if(String(e.newvalue).length == 0)
  1787. {
  1788. grp_sea.ipt_stdysubjno.value = "";
  1789. }
  1790. else
  1791. {
  1792. rszfValidationCheck("TRRSD00261", "studylist", "instcd,refcond,stdysubjnm,reqdd",
  1793. grp_sea.rdo_instcd.value + ",stdysubjnm," + e.newvalue + "," + grp_sea.ipt_reqdd.value, "", "stdysubjno,stdysubjnm",
  1794. grp_sea.ipt_stdysubjnm, "SPRSD00260", "instcd,reqdd", grp_sea.rdo_instcd.value + "," + grp_sea.ipt_reqdd.value);
  1795. }
  1796. }
  1797. }
  1798. function grp_sea_btn_stdysubjnm_onclick(obj:Button, e:ClickEventInfo)
  1799. {
  1800. rszfOpenPopUpListByWndName(grp_sea.ipt_stdysubjno,"","stdysubjno,stdysubjnm","SPRSD00260","instcd,reqdd", grp_sea.rdo_instcd.value + "," + grp_sea.ipt_reqdd.value);
  1801. }
  1802. function grp_sea_cmb_bugtflag_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
  1803. {
  1804. fBugtflagChange();
  1805. }
  1806. function grp_sea_btn_search_onclick(obj:Button, e:ClickEventInfo)
  1807. {
  1808. fSearchData();
  1809. }
  1810. function ds_tempdept_oncolumnchanged(obj:Dataset, e:DSColChangeEventInfo)
  1811. {
  1812. if(e.columnid == "tempdeptcd")
  1813. {
  1814. ipt_tempdeptcd.value = e.newvalue;
  1815. ipt_tempdeptcd.setFocus();
  1816. if(utlf_isNull(e.newvalue))
  1817. {
  1818. ipt_tempdeptnm.value = "";
  1819. }
  1820. else
  1821. {
  1822. misfValidationCheck("02", "", "tempdeptcd,tempdeptnm");
  1823. vDeptcd = e.newvalue;
  1824. if (utlf_isNull(vDeptcd))
  1825. {
  1826. return
  1827. }
  1828. if(utlf_isNull(ds_init_ReqDeptLists_reqdeptlist.lookup("value", vDeptcd, "value")))
  1829. {
  1830. fAddReqDeptcdCombo();
  1831. }
  1832. else
  1833. {
  1834. grp_sea.cmb_reqdeptcd.value = vDeptcd;
  1835. }
  1836. }
  1837. }
  1838. if(e.columnid == "tempdeptnm")
  1839. {
  1840. ipt_tempdeptnm.value = e.newvalue;
  1841. ipt_tempdeptnm.setFocus();
  1842. if(utlf_isNull(e.newvalue))
  1843. {
  1844. ipt_tempdeptcd.value = "";
  1845. }
  1846. else
  1847. {
  1848. misfValidationCheck("02", "", "tempdeptcd,tempdeptnm");
  1849. vDeptcd = ds_tempdept.getColumn(0, "tempdeptcd");
  1850. if (utlf_isNull(vDeptcd))
  1851. {
  1852. return
  1853. }
  1854. if(utlf_isNull(ds_init_ReqDeptLists_reqdeptlist.lookup("value", vDeptcd, "value")))
  1855. {
  1856. fAddReqDeptcdCombo();
  1857. }
  1858. else
  1859. {
  1860. grp_sea.cmb_reqdeptcd.value = vDeptcd;
  1861. }
  1862. }
  1863. }
  1864. }
  1865. function btn_tempdeptcd_onclick(obj:Button, e:ClickEventInfo)
  1866. {
  1867. var tempolddeptcd = ds_tempdept.getColumn(0, "tempdeptcd");
  1868. misfOpenPopUpList("02", ipt_tempdeptcd,"","tempdeptcd,tempdeptnm");
  1869. var vDeptcd = ds_tempdept.getColumn(0, "tempdeptcd");
  1870. if (utlf_isNull(vDeptcd))
  1871. {
  1872. return
  1873. }
  1874. if (utlf_isNull(ds_init_ReqDeptLists_reqdeptlist.lookup("value", vDeptcd, "value")))
  1875. {
  1876. fAddReqDeptcdCombo();
  1877. }
  1878. else
  1879. {
  1880. grp_sea.cmb_reqdeptcd.value = vDeptcd;
  1881. }
  1882. }
  1883. function swt_search_onchanged(obj:Tab, e:TabIndexChangeEventInfo)
  1884. {
  1885. if(obj.tabindex == 0)
  1886. {
  1887. fViewToggle(1);
  1888. }
  1889. else if(obj.tabindex == 1)
  1890. {
  1891. fViewToggle(2);
  1892. fReqSetList();
  1893. }
  1894. else if(obj.tabindex == 2)
  1895. {
  1896. fViewToggle(2);
  1897. if (utlf_isNull(ds_init.getColumn(0, "reqflag")))
  1898. {
  1899. swt_search.gd_find.group2.cmb_reqflag.index = 0;
  1900. fReqFagChange(swt_search.gd_find.group2.cmb_reqflag.value);
  1901. }
  1902. fGoodListReady("","");
  1903. }
  1904. }
  1905. function bbt_large_onclick(obj:Button, e:ClickEventInfo)
  1906. {
  1907. swt_search.tabindex = 0;
  1908. }
  1909. function bbt_right_onclick(obj:Button, e:ClickEventInfo)
  1910. {
  1911. swt_search.tabindex = 0;
  1912. }
  1913. function grp_sea_btn_purcdept_onclick(obj:Button, e:ClickEventInfo)
  1914. {
  1915. grp_sea.cmb_reqno.value = "";
  1916. grp_sea.chk_reqnonew.value = "Y";
  1917. fSearchData("P");
  1918. if (ds_main_list_goodreq_goodreqlist.rowcount > 0)
  1919. {
  1920. frmf_inputEnterKey("grp_sea.chk_reqnonew", "onclick", new ClickEventInfo );
  1921. }
  1922. }
  1923. function btn_init_onclick(obj:Button, e:ClickEventInfo)
  1924. {
  1925. fInitialize();
  1926. }
  1927. function grp_button_ckb_accept_onclick(obj:CheckBox, e:ClickEventInfo)
  1928. {
  1929. if(obj.value == "Y")
  1930. {
  1931. }
  1932. else
  1933. {
  1934. ds_send_save_autoaprv.setColumn(0, "autoaprvyn", "");
  1935. }
  1936. }
  1937. function grp_button_btn_insert_onclick(obj:Button, e:ClickEventInfo)
  1938. {
  1939. if(fCheckRetrieveData(true) == false)return;
  1940. var addRow = ds_main_list_goodreq_goodreqlist.addRow();
  1941. tar_cmt.value = "";
  1942. fDefaultSetting(addRow);
  1943. grd_goodreq.setCellPos(grd_goodreq.getBindCellIndex("body", "goodcd"));
  1944. grd_goodreq.showEditor(true);
  1945. }
  1946. function grp_button_btn_delete_onclick(obj:Button, e:ClickEventInfo)
  1947. {
  1948. if (ds_main_list_goodreq_goodreqlist.getColumn(ds_main_list_goodreq_goodreqlist.rowposition, "acptflag") == "Y")
  1949. {
  1950. sysf_messageBox("구매접수된 내역은 삭제","E001");
  1951. return;
  1952. }
  1953. if(grp_sea.cmb_reqpridflag.value != "1")
  1954. {
  1955. if(rszfGetPurcAuthInfoByCond("reqaprvflag") == "1" && ds_main_list_goodreq_goodreqlist.getColumn(ds_main_list_goodreq_goodreqlist.rowposition, "deptaprvyn") == "Y")
  1956. {
  1957. sysf_messageBox("미승인권자가 승인된 내역은 삭제","E001");
  1958. return;
  1959. }
  1960. }
  1961. misfGridIUD(grd_goodreq, "D");
  1962. }
  1963. function grp_button_btn_choice_onclick(obj:Button, e:ClickEventInfo)
  1964. {
  1965. fSettingReqAprv();
  1966. }
  1967. function grp_button_btn_excel_onclick(obj:Button, e:ClickEventInfo)
  1968. {
  1969. misfSaveExcel(grd_goodreq);
  1970. }
  1971. function grp_button_btn_print_onclick(obj:Button, e:ClickEventInfo)
  1972. {
  1973. if(swt_search.gd_find.group2.cmb_reqflag.text == "약품")
  1974. {
  1975. var objDOM = rptf_createDOM();
  1976. rptf_setNodeListToDOM(objDOM, "/root/init/reqflaguth/reqauthlist", ds_main_list_goodreq_goodreqlist);
  1977. rptf_setNodeListToDOM(objDOM, "/root/main/list/goodreq/goodreqlist", ds_main_list_goodreq_goodreqlist);
  1978. var objParam = new Object();
  1979. objParam.xml_data_XML1 = objDOM.documentElement.source;
  1980. var option = "";
  1981. rptf_exeReportPreview30(["RPRSD00401"],[objParam], option);
  1982. }
  1983. else
  1984. {
  1985. var objDOM = rptf_createDOM();
  1986. rptf_setNodeListToDOM(objDOM, "/root/main/list/goodreq/goodreqlist", ds_main_list_goodreq_goodreqlist);
  1987. var objParam = new Object();
  1988. objParam.xml_data_XML1 = objDOM.documentElement.source;
  1989. var option = "";
  1990. rptf_exeReportPreview30(["RPRSD00402"],[objParam], option);
  1991. }
  1992. }
  1993. function grp_button_btn_accept_onclick(obj:Button, e:ClickEventInfo)
  1994. {
  1995. fSaveReqAprv();
  1996. }
  1997. function grp_button_btn_save_onclick(obj:Button, e:ClickEventInfo)
  1998. {
  1999. fSaveData();
  2000. }
  2001. function ds_main_list_reqset_reqsetlist_oncolumnchanged(obj:Dataset, e:DSColChangeEventInfo)
  2002. {
  2003. if(e.columnid == "select")
  2004. {
  2005. obj.setColumn(e.row, "select", (e.newvalue == "true" || e.newvalue == 1) ? "true" : "false");
  2006. }
  2007. }
  2008. function swt_search_gd_set_grd_setlist_oncellclick(obj:Grid, e:GridClickEventInfo)
  2009. {
  2010. fReqSetRead(ds_main_list_reqmst_reqsetmst.rowposition);
  2011. }
  2012. function swt_search_gd_set_grd_reqset_oncellclick(obj:Grid, e:GridClickEventInfo)
  2013. {
  2014. if (ds_main_list_reqset_reqsetlist.rowposition < 0) return;
  2015. if (ds_main_list_reqset_reqsetlist.getColumn(ds_main_list_reqset_reqsetlist.rowposition, "select" ) == "true" && ds_main_list_reqset_reqsetlist.getColumn(ds_main_list_reqset_reqsetlist.rowposition, "reqprid") != grp_sea.cmb_reqpridflag.value)
  2016. {
  2017. ds_main_list_reqset_reqsetlist.setColumn(ds_main_list_reqset_reqsetlist.rowposition, "select" , "false");
  2018. alert("청구불가능!! 청구주기를 확인하십시요 !!");
  2019. }
  2020. if (grp_sea.cmb_workflag.value == 3 || grp_sea.cmb_workflag.value == 4 || grp_sea.cmb_workflag.value == 5 )
  2021. {
  2022. if (ds_main_list_reqset_reqsetlist.getColumn(ds_main_list_reqset_reqsetlist.rowposition, "reqmthd" ) != "1" && ds_main_list_reqset_reqsetlist.getColumn(ds_main_list_reqset_reqsetlist.rowposition, "purcflag") != "2")
  2023. {
  2024. ds_main_list_reqset_reqsetlist.setColumn(ds_main_list_reqset_reqsetlist.rowposition, "select" , "false");
  2025. alert("상비품이 아닙니다. 확인하십시요!!");
  2026. }
  2027. }
  2028. }
  2029. function swt_search_gd_set_btn_apply_onclick(obj:Button, e:ClickEventInfo)
  2030. {
  2031. fSelectDataApply(swt_search.gd_set.grd_reqset, grd_goodreq, "goodreqlist", "goodqty");
  2032. }
  2033. function swt_search_gd_find_group2_cmb_reqflag_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
  2034. {
  2035. swt_search.gd_find.group2.ipt_mdlcd.value = "";
  2036. fReqFagChange(obj.value);
  2037. rszfLMSComboList(swt_search.gd_find.group2.cmb_goodflag.value, "", "", "swt_search.gd_find.group2.ipt_lrgcd", "", "L","Y");
  2038. }
  2039. function swt_search_gd_find_group2_ipt_lrgcd_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
  2040. {
  2041. rszfLMSComboList(swt_search.gd_find.group2.cmb_goodflag.value, obj.value, "", "swt_search.gd_find.group2.ipt_mdlcd", "", "M", "Y");
  2042. }
  2043. function swt_search_gd_find_group2_ipt_goodcd_onkeyup(obj:Edit, e:KeyEventInfo)
  2044. {
  2045. if(e.keycode == 13)
  2046. {
  2047. obj.updateToDataset();
  2048. grp_sea.btn_search.click();
  2049. }
  2050. }
  2051. function swt_search_gd_find_group2_ipt_goodnm_onkeyup(obj:Edit, e:KeyEventInfo)
  2052. {
  2053. if(e.keycode == 13)
  2054. {
  2055. obj.updateToDataset();
  2056. grp_sea.btn_search.click();
  2057. }
  2058. }
  2059. function ds_send_goodlist_oncolumnchanged(obj:Dataset, e:DSColChangeEventInfo)
  2060. {
  2061. if(e.columnid == "prodcmpycd")
  2062. {
  2063. swt_search.gd_find.group2.ipt_prodcmpycd.value = e.newvalue;
  2064. swt_search.gd_find.group2.ipt_prodcmpycd.setFocus();
  2065. if(!utlf_isNull(e.newvalue))
  2066. {
  2067. rszfValidationCheck("TRRSD00161", "prodcmpylist", "refcond,prodcmpycd,prodcmpynm","prodcmpycd," + e.newvalue + "," ,"","prodcmpycd,prodcmpynm" ,swt_search.gd_find.group2.ipt_prodcmpycd,"SPRSD00160","","");
  2068. }
  2069. else
  2070. {
  2071. swt_search.gd_find.group2.ipt_prodcmpynm.value ="";
  2072. }
  2073. }
  2074. if(e.columnid == "prodcmpynm")
  2075. {
  2076. swt_search.gd_find.group2.ipt_prodcmpynm.value = e.newvalue;
  2077. swt_search.gd_find.group2.ipt_prodcmpynm.setFocus();
  2078. if(!utlf_isNull(e.newvalue))
  2079. {
  2080. rszfValidationCheck("TRRSD00161", "prodcmpylist", "refcond,prodcmpycd,prodcmpynm","prodcmpynm,," + e.newvalue ,"","prodcmpycd,prodcmpynm" ,swt_search.gd_find.group2.ipt_prodcmpycd,"SPRSD00160","","");
  2081. }
  2082. else
  2083. {
  2084. swt_search.gd_find.group2.ipt_prodcmpycd.value ="";
  2085. }
  2086. }
  2087. }
  2088. function swt_search_gd_find_group2_btn_prodcmpycd_onclick(obj:Button, e:ClickEventInfo)
  2089. {
  2090. rszfOpenPopUpListByWndName(swt_search.gd_find.group2.ipt_prodcmpycd,"","prodcmpycd,prodcmpynm","SPRSD00160","","");
  2091. }
  2092. function swt_search_gd_find_bbt_goodfind_onclick(obj:Button, e:ClickEventInfo)
  2093. {
  2094. fGoodListSearch();
  2095. }
  2096. function ds_main_GoodLists_goodlist_oncolumnchanged(obj:Dataset, e:DSColChangeEventInfo)
  2097. {
  2098. if(e.columnid == "select")
  2099. {
  2100. obj.setColumn(e.row, "select", (e.newvalue == "true" || e.newvalue == 1) ? "true" : "false");
  2101. }
  2102. }
  2103. function swt_search_gd_find_grd_goodlist_oncellclick(obj:Grid, e:GridClickEventInfo)
  2104. {
  2105. if (ds_main_list_goodreq_goodreqlist.rowposition < 0) return;
  2106. if (ds_main_list_goodreq_goodreqlist.getColumn(ds_main_list_goodreq_goodreqlist.rowposition, "select" ) == "true" && ds_main_list_goodreq_goodreqlist.getColumn(ds_main_list_goodreq_goodreqlist.rowposition, "reqprid") != grp_sea.cmb_reqpridflag.value)
  2107. {
  2108. ds_main_list_goodreq_goodreqlist.setColumn(ds_main_list_goodreq_goodreqlist.rowposition, "select" , "false");
  2109. alert("청구 불가능!! 청구주기를 확인하십시요 !!");
  2110. return;
  2111. }
  2112. if (grp_sea.cmb_workflag.value == 3 || grp_sea.cmb_workflag.value == 4 || grp_sea.cmb_workflag.value == 5 )
  2113. {
  2114. if(ds_main_list_goodreq_goodreqlist.getColumn(ds_main_list_goodreq_goodreqlist.rowposition, "reqmthd") != "1" && ds_main_list_goodreq_goodreqlist.getColumn(ds_main_list_goodreq_goodreqlist.rowposition, "purcflag") != "2")
  2115. {
  2116. ds_main_list_goodreq_goodreqlist.setColumn(ds_main_list_goodreq_goodreqlist.rowposition, "select" , "false");
  2117. alert("상비품이 아닙니다. 확인하십시요!!");
  2118. return;
  2119. }
  2120. }
  2121. }
  2122. function swt_search_gd_find_bbt_apply2_onclick(obj:Button, e:ClickEventInfo)
  2123. {
  2124. fSelectDataApply(ds_main_GoodLists_goodlist, "goodreqlist", "minexch");
  2125. }
  2126. function grd_goodreq_oncellclick(obj:Grid, e:GridClickEventInfo)
  2127. {
  2128. grp_allsize.visible = false;
  2129. grp_bugtflag.visible = false;
  2130. }
  2131. function grd_goodreq_onexpanddown(obj:Grid, e:GridMouseEventInfo)
  2132. {
  2133. fGoodreqButtonClick();
  2134. }
  2135. function ds_main_list_goodreq_goodreqlist_oncolumnchanged(obj:Dataset, e:DSColChangeEventInfo)
  2136. {
  2137. if(e.columnid == "deptaprvyn")
  2138. {
  2139. obj.setColumn(e.row, "deptaprvyn", (e.newvalue == "Y" || e.newvalue == 1) ? "Y" : "N");
  2140. }
  2141. if(e.columnid == "deptaprvyn")
  2142. {
  2143. if(gPurcAuth != "2" && grp_sea.cmb_reqpridflag.value != "1" )
  2144. {
  2145. obj.setColumn(e.row, "deptaprvyn", obj.getColumn(e.row, "predeptaprvyn"));
  2146. if ( obj.getRowType(e.row) != 2)
  2147. {
  2148. obj.updatecontrol = false;
  2149. obj.setRowType(e.row, "");
  2150. obj.updatecontrol = true;
  2151. }
  2152. sysf_messageBox("청구승인권한이 없으므로 수정" ,"E001");
  2153. }
  2154. else
  2155. {
  2156. if(obj.getColumn(e.row, "aprvyn") == "Y")
  2157. {
  2158. obj.updatecontrol = false;
  2159. obj.setRowType(e.row, "");
  2160. obj.updatecontrol = true;
  2161. sysf_messageBox("발주승인이 되었으므로 수정" ,"E001");
  2162. }
  2163. }
  2164. }
  2165. else if(e.columnid == "reqqty")
  2166. {
  2167. if (obj.getColumn(e.row, "acptflag") == "Y")
  2168. {
  2169. sysf_messageBox("구매접수된 내역은 수정","E001");
  2170. return;
  2171. }
  2172. if (grp_sea.cmb_reqpridflag.value != "1")
  2173. {
  2174. if(gPurcAuth =="1" && obj.getColumn(e.row, "predeptaprvyn") == "Y")
  2175. {
  2176. obj.updatecontrol = false;
  2177. obj.setRowType(e.row, "");
  2178. obj.updatecontrol = true;
  2179. sysf_messageBox("청구승인되었으므로 재고량을 수정" ,"E001");
  2180. return;
  2181. }
  2182. }
  2183. reqqty = e.newvalue;
  2184. obj.setColumn(e.row, "basevol", reqqty);
  2185. minexch = obj.getColumn(e.row, "minexch");
  2186. if(minexch > 0 && (reqqty%minexch != 0))
  2187. {
  2188. sysf_messageBox(parseInt(e.row+1)+ "번째 물품은 최소청구량["+ minexch + "] 에 맞춰서" , "C001");
  2189. obj.rowposition = e.row;
  2190. grd_goodreq.setCellPos(grd_goodreq.getBindCellIndex("body", "reqqty"));
  2191. grd_goodreq.showEditor(true);
  2192. obj.setColumn(e.row, "reqqty","");
  2193. return;
  2194. }
  2195. }
  2196. else if (e.columnid == "stocqty" || e.columnid == "basevol")
  2197. {
  2198. basevol = obj.getColumn(e.row, "basevol");
  2199. stocqty = obj.getColumn(e.row, "stocqty");
  2200. if (obj.getColumn(e.row, "acptflag") == "Y")
  2201. {
  2202. sysf_messageBox("구매접수된 내역은 수정","E001");
  2203. return;
  2204. }
  2205. if(grp_sea.cmb_reqpridflag.value != "1")
  2206. {
  2207. if(gPurcAuth =="1" && obj.getColumn(e.row, "predeptaprvyn") == "Y")
  2208. {
  2209. obj.updatecontrol = false;
  2210. obj.setRowType(e.row, "");
  2211. obj.updatecontrol = true;
  2212. sysf_messageBox("청구승인되었으므로 재고량을 수정" ,"E001");
  2213. return;
  2214. }
  2215. }
  2216. if(e.columnid == "basevol")
  2217. {
  2218. basevol = e.newvalue;
  2219. }
  2220. else if(e.columnid == "stocqty")
  2221. {
  2222. stocqty = e.newvalue;
  2223. }
  2224. reqqty = obj.getColumn(e.row, "reqqty");
  2225. minexch = obj.getColumn(e.row, "minexch");
  2226. calc_reqqty = basevol - stocqty;
  2227. obj.setColumn(e.row, "reqqty", calc_reqqty);
  2228. }
  2229. else if(e.columnid == "goodcd" && String(e.newvalue).length > 0)
  2230. {
  2231. ds_copynode.clearData();
  2232. frmf_clearParameter("SMRSD00400_");
  2233. rszfValidationCheck("TRRSD00191", "goodlist" , "refcond,instcd,goodflag,goodcd,goodnm,indexgb,indexnm,reqflag,reqdeptcd,reqprid","goodcd," + grp_sea.opt_instcdgood.value + ","
  2234. + obj.getColumn(e.row, "goodflag") + ","
  2235. + e.newvalue + ",,,,"
  2236. + swt_search.gd_find.group2.cmb_reqflag.value + ","
  2237. + grp_sea.cmb_reqdeptcd.value + ","
  2238. + grp_sea.cmb_reqpridflag.value ,""
  2239. , "goodcd,goodnm,goodspec,goodmodel,prodcmpynm,purcunit,stocqty,minexch,goodflag,ddavguseqty,reqflag,allsizeyn,delivedeptcd,setunit,constunit"
  2240. , grd_goodreq,"SPRSD00190"
  2241. , "instcd,goodflag,reqflag,reqdeptcd,reqprid","grp_sea.opt_instcdgood,swt_search.gd_find.group2.cmb_reqflag,grp_sea.cmb_reqdeptcd,grp_sea.cmb_reqpridflag","Y");
  2242. if(String(obj.getColumn(e.row, "goodnm")).length > 0)
  2243. {
  2244. if(obj.getColumn(e.row, "minexch") > 0)
  2245. {
  2246. obj.setColumn(e.row, "reqqty" ,obj.getColumn(e.row, "minexch"));
  2247. }
  2248. else
  2249. {
  2250. obj.setColumn(e.row, "reqqty","1");
  2251. }
  2252. obj.setColumn(e.row, "reqmthdflag", "3");
  2253. }
  2254. var cur_row = e.row;
  2255. var CSV = frmf_getParameter("SMRSD00400_");
  2256. if(String(CSV).length == 0 && String(obj.getColumn(cur_row, "goodnm")).length == 0)
  2257. {
  2258. obj.setColumn(e.row, "goodcd", "");
  2259. obj.setColumn(e.row, "goodnm", "");
  2260. obj.setColumn(e.row, "goodspec", "");
  2261. obj.setColumn(e.row, "goodflag", "");
  2262. obj.setColumn(e.row, "goodmodel", "");
  2263. obj.setColumn(e.row, "purcunit", "");
  2264. obj.setColumn(e.row, "basevol", "");
  2265. obj.setColumn(e.row, "stocqty", "");
  2266. obj.setColumn(e.row, "reqqty", "");
  2267. obj.setColumn(e.row, "requnit", "");
  2268. obj.setColumn(e.row, "minexch", "");
  2269. obj.setColumn(e.row, "ddavguseqty", "");
  2270. obj.setColumn(e.row, "allsizeyn", "");
  2271. obj.setColumn(e.row, "allsizespecid", "");
  2272. grd_goodreq.setCellPos(grd_goodreq.getBindCellIndex("body", "goodcd"));
  2273. grd_goodreq.showEditor(true);
  2274. }
  2275. else if(String(CSV).length > 0)
  2276. {
  2277. obj.setColumn(e.row, "goodcd", "");
  2278. dsf_setCSVToDs("ds_copynode", CSV, "goodreqlist");
  2279. fSettingGoodList("ds_copynode", "goodreqlist" , "userqty");
  2280. }
  2281. }
  2282. else if(e.columnid == "deptaprvyn")
  2283. {
  2284. if(gPurcAuth != "2" && grp_sea.cmb_reqpridflag.value != "1" )
  2285. {
  2286. obj.getColumn(e.row, "deptaprvyn", obj.getColumn(e.row, "predeptaprvyn"));
  2287. if (obj.getRowType(e.row) != 2)
  2288. {
  2289. obj.updatecontrol = false;
  2290. obj.setRowType(e.row, "");
  2291. obj.updatecontrol = true;
  2292. }
  2293. sysf_messageBox("청구승인권한이 없으므로 수정" ,"E001");
  2294. }
  2295. else if(obj.getColumn(e.row, "aprvyn") == "Y")
  2296. {
  2297. obj.updatecontrol = false;
  2298. obj.setRowType(e.row, "");
  2299. obj.updatecontrol = true;
  2300. sysf_messageBox("발주승인이 되었으므로 수정" ,"E001");
  2301. }
  2302. else
  2303. {
  2304. obj.setColumn(e.row, "deptaprvdd" , utlf_getCurrentDate());
  2305. }
  2306. }
  2307. }
  2308. function grd_goodreq_onkeydown(obj:Grid, e:KeyEventInfo)
  2309. {
  2310. if(e.keycode == 13)
  2311. {
  2312. fGoodreqOnKeyDown();
  2313. }
  2314. else if(e.shiftKey)
  2315. {
  2316. }
  2317. }
  2318. function grp_bugtflag_combo3_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
  2319. {
  2320. fAcctDataClear();
  2321. if (!utlf_isNull(grp_sea.cmb_groupbugt.value))
  2322. {
  2323. ds_send_goodreq.setColumn(0, "deptcd" , grp_sea.cmb_reqdeptcd.value);
  2324. ds_send_goodreq.setColumn(0, "supacntcd4", grp_sea.cmb_groupbugt.value);
  2325. var oParam = {};
  2326. oParam.id = "TRRSD00414";
  2327. oParam.service = "purccommonapp.PurcCommon";
  2328. oParam.method = "reqGetBugtListHelp";
  2329. oParam.inds = "req=ds_send_goodreq";
  2330. oParam.outds = "ds_main_BugLists_bugtlist=bugtlist";
  2331. oParam.async = false;
  2332. //oParam.callback = "cf_TRRSD00414";
  2333. tranf_submit(oParam);
  2334. }
  2335. }
  2336. function grp_bugtflag_combo2_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
  2337. {
  2338. fBugtflagChange();
  2339. }
  2340. function grp_bugtflag_button2_onclick(obj:Button, e:ClickEventInfo)
  2341. {
  2342. fBugtDataSet(ds_main_list_goodreq_goodreqlist.rowposition);
  2343. grp_bugtflag.visible = false;
  2344. }
  2345. function grp_allsize_btn_confirm_onclick(obj:Button, e:ClickEventInfo)
  2346. {
  2347. fAllSizeSelect();
  2348. }
  2349. function ds_main_codelist_oncolumnchanged(obj:Dataset, e:DSColChangeEventInfo)
  2350. {
  2351. if(e.columnid == "chk")
  2352. {
  2353. obj.setColumn(e.row, "chk", (e.newvalue == "true" || e.newvalue == 1) ? "true" : "false");
  2354. }
  2355. }
  2356. ]]></Script>
  2357. </Form>
  2358. </FDL>