SMRSI02725_입고내역 보기 OPTION.xrw 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?xml-stylesheet href="../../../com/commonweb/css/common.css" type="text/css" ?>
  3. <xhtml:html xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.w3.org/2002/01/xforms" xmlns:ev="http://www.w3.org/2001/xml-events">
  4. <xhtml:head>
  5. <xhtml:title>보기 OPTION</xhtml:title>
  6. <model id="model1">
  7. <instance id="instance1">
  8. <root xmlns="">
  9. <send>
  10. </send>
  11. <init>
  12. <Options>
  13. <option_0>
  14. <goodflagnm>Y</goodflagnm>
  15. <purcflagnm/>
  16. <suplplcecd/>
  17. <suplplcenm/>
  18. <suppcustcd/>
  19. <suppcustnm>Y</suppcustnm>
  20. <winputno>Y</winputno>
  21. <purcreqno/>
  22. <calcdocukindnm/>
  23. <calcdocudd>Y</calcdocudd>
  24. <winunit/>
  25. <winunitcost>Y</winunitcost>
  26. <winqty>Y</winqty>
  27. <winamt>Y</winamt>
  28. <chkyn>Y</chkyn>
  29. <chkdd/>
  30. <chkpsnnm/>
  31. <slipdd/>
  32. <slipno/>
  33. <banknm/>
  34. <bankcd/>
  35. <aactno/>
  36. <goodcd/>
  37. <goodnm/>
  38. <goodspec/>
  39. <goodmodel/>
  40. <instcd/>
  41. <goodflag/>
  42. <prodcmpynm/>
  43. <iokind/>
  44. <windeptcd/>
  45. <calcdocukind/>
  46. <installplcecd/>
  47. <profno/>
  48. <acntcd/>
  49. <acntnm/>
  50. <winpsn/>
  51. <winpsnnm/>
  52. <delivedeptcd/>
  53. <reqdeptcd/>
  54. <chkpsn/>
  55. <purcflag/>
  56. <paycond/>
  57. <paycondnm/>
  58. <delivedeptnm/>
  59. <windeptnm/>
  60. <iokindnm/>
  61. <calccnfmyn>Y</calccnfmyn>
  62. <calccnfmpsn/>
  63. <calccnfmpsnnm/>
  64. <calccnfmdd/>
  65. <winprcsflag/>
  66. <projectid/>
  67. <projectnm/>
  68. <bugtnm/>
  69. <totamt/>
  70. <bugtexpcamt/>
  71. <bugtexecamt/>
  72. <remainder/>
  73. </option_0>
  74. <option_2>
  75. <calccnfmyn>Y</calccnfmyn>
  76. <calccnfmpsn/>
  77. <calccnfmpsnnm/>
  78. <calccnfmdd/>
  79. <winprcsflag/>
  80. <chkyn>Y</chkyn>
  81. <chkdd/>
  82. <chkpsn/>
  83. <chkpsnnm/>
  84. <goodflag/>
  85. <goodflagnm>Y</goodflagnm>
  86. <suplplcecd/>
  87. <suplplcenm>Y</suplplcenm>
  88. <suppcustcd/>
  89. <suppcustnm/>
  90. <winputno>Y</winputno>
  91. <purcreqno/>
  92. <calcdocukindnm/>
  93. <calcdocudd>Y</calcdocudd>
  94. <curncyunit/>
  95. <wncurncyamt>Y</wncurncyamt>
  96. <plcewinqty>Y</plcewinqty>
  97. <plcewinamt>Y</plcewinamt>
  98. <slipdd/>
  99. <slipno/>
  100. <banknm/>
  101. <bankcd/>
  102. <aactno/>
  103. <goodnm/>
  104. <goodflagengnm/>
  105. <goodspec/>
  106. <instcd/>
  107. <windd/>
  108. <winno/>
  109. <winseqno/>
  110. <prodcmpynm/>
  111. <calcdocukind/>
  112. <lrgcd/>
  113. <mdlcd/>
  114. <smlcd/>
  115. <goodmodel/>
  116. <prodcmpy/>
  117. <prodplce/>
  118. <prodplcenm/>
  119. <iopsnflag/>
  120. <iopsnflagnm/>
  121. <forgncurncyamt/>
  122. <chgrate/>
  123. <forgnwinamt/>
  124. <cntrdeptcd/>
  125. <cntrdeptnm/>
  126. <mngtdeptcd/>
  127. <mngtdeptnm/>
  128. <installplcecd/>
  129. <installplcenm/>
  130. <incmpemtno/>
  131. <mtlmngtno/>
  132. <eqmtearnvaluyn/>
  133. <prcsstat/>
  134. <prcsstatnm/>
  135. <plceorddd/>
  136. <plceordseqno/>
  137. <cmt/>
  138. <acqtflag/>
  139. <acqtflagnm/>
  140. <paycond/>
  141. <paycondnm/>
  142. <fundorigin/>
  143. <fundorigin/>
  144. <flwgrnttermfr/>
  145. <flwgrnttermto/>
  146. <tempmngtdeptcd/>
  147. <tempmngtdeptnm/>
  148. <bugtflag/>
  149. <stdysubjno/>
  150. <stdysubjnonm/>
  151. <bugtyy/>
  152. <acntcd/>
  153. <acntnm/>
  154. <projectid/>
  155. <projectnm/>
  156. <bugtnm/>
  157. <groupbugt/>
  158. <totamt/>
  159. <bugtexpcamt/>
  160. <bugtexecamt/>
  161. <remainder/>
  162. </option_2>
  163. <option_3>
  164. <calccnfmyn>Y</calccnfmyn>
  165. <calccnfmpsn/>
  166. <calccnfmpsnnm/>
  167. <calccnfmdd/>
  168. <winprcsflag/>
  169. <chkyn>Y</chkyn>
  170. <chkdd/>
  171. <chkpsn/>
  172. <chkpsnnm/>
  173. <instcd/>
  174. <fixtrseqmtflag/>
  175. <goodflagnm>Y</goodflagnm>
  176. <custcd/>
  177. <custcdnm>Y</custcdnm>
  178. <fixasetcd/>
  179. <fixasetnm/>
  180. <goodmodell/>
  181. <rpirspec>Y</rpirspec>
  182. <mngtdeptcd/>
  183. <mngtdeptnm/>
  184. <calcdocudd>Y</calcdocudd>
  185. <rpiramt>Y</rpiramt>
  186. <purcaprvyn/>
  187. <purcaprvdd/>
  188. <purcaprvpsnid/>
  189. <purcaprvpsnidnm/>
  190. <reqdd/>
  191. <reqno/>
  192. <reqddno/>
  193. <acptflag/>
  194. <acptflagnm/>
  195. <itemnm/>
  196. <reqdeptcd/>
  197. <reqdeptcdnm/>
  198. <reqpsnid/>
  199. <reqpsnidnm/>
  200. <genrdd/>
  201. <genrtm/>
  202. <chrgtel/>
  203. <hdrncspec/>
  204. <acptdd/>
  205. <acpttm/>
  206. <acptpsnid/>
  207. <acptpsnidnm/>
  208. <acptdeptcd/>
  209. <acptdeptcdnm/>
  210. <chrgpsnid/>
  211. <chrgpsnidnm/>
  212. <workstat/>
  213. <workstatnm/>
  214. <rpirflag1/>
  215. <rpirflag1nm/>
  216. <rpirflag2/>
  217. <rpirflag2nm/>
  218. <useyn/>
  219. <useynnm/>
  220. <lastrpirstat/>
  221. <acptpsncnfm/>
  222. <deptacptdd/>
  223. <deptacptpsnid/>
  224. <deptacptpsnidnm/>
  225. <estimateamt/>
  226. <reductionamt/>
  227. <bankcd/>
  228. <aactno/>
  229. <banknm/>
  230. <cmt/>
  231. <rpirenddd/>
  232. <sancttrsmyn/>
  233. <sanctyn/>
  234. <sanctid/>
  235. <sanctidnm/>
  236. <chrgpsncmt/>
  237. <sanctdd/>
  238. <nonworkdayno/>
  239. <lastrpirrslt/>
  240. <emaildeliveyn/>
  241. <purctrsmyn/>
  242. <slipdd/>
  243. <slipno/>
  244. <bugtcd/>
  245. <acntnm/>
  246. <stdysubjno/>
  247. <stdysubjnonm/>
  248. <bugtyy/>
  249. <reqtel/>
  250. <deptaprvyn/>
  251. <deptaprvdd/>
  252. <deptaprvpsnid/>
  253. <deptaprvpsnidnm/>
  254. <projectid/>
  255. <projectnm/>
  256. <bugtnm/>
  257. <groupbugt/>
  258. <totamt/>
  259. <bugtexpcamt/>
  260. <bugtexecamt/>
  261. <remainder/>
  262. <accountcmt/>
  263. <purcagreyn/>
  264. <purcagredd/>
  265. <purcagresnid/>
  266. <purcagresnidnm/>
  267. <calcdocukind/>
  268. <calcdocukindnm/>
  269. <deptaprvreqyn/>
  270. </option_3>
  271. </Options>
  272. </init>
  273. </root>
  274. </instance>
  275. </model>
  276. </xhtml:head>
  277. <xhtml:body>
  278. <group id="grp_rfehemhtlist_op" visibility="hidden" style="left:6px; top:31px; width:440px; height:483px; padding:2; ">
  279. <select id="chk_calccnfmyn_op_3" ref="/root/init/Options/option_3/calccnfmyn" overflow="visible" appearance="full" style="left:0px; top:0px; width:100px; height:20px; border-style:none; ">
  280. <choices>
  281. <item>
  282. <label>정산확정</label>
  283. <value>Y</value>
  284. </item>
  285. </choices>
  286. </select>
  287. <select id="chk_calccnfmpsn_op_3" ref="/root/init/Options/option_3/calccnfmpsn" overflow="visible" appearance="full" style="left:110px; top:000px; width:100px; height:20px; border-style:none; ">
  288. <choices>
  289. <item>
  290. <label>정산확정자</label>
  291. <value>Y</value>
  292. </item>
  293. </choices>
  294. </select>
  295. <select id="chk_calccnfmpsnnm_op_3" ref="/root/init/Options/option_3/calccnfmpsnnm" overflow="visible" appearance="full" style="left:225px; top:0px; width:100px; height:20px; border-style:none; ">
  296. <choices>
  297. <item>
  298. <label>정산확정자명</label>
  299. <value>Y</value>
  300. </item>
  301. </choices>
  302. </select>
  303. <select id="chk_calccnfmdd_op_3" ref="/root/init/Options/option_3/calccnfmdd" overflow="visible" appearance="full" style="left:335px; top:000px; width:100px; height:20px; border-style:none; ">
  304. <choices>
  305. <item>
  306. <label>정산확정년월</label>
  307. <value>Y</value>
  308. </item>
  309. </choices>
  310. </select>
  311. <select id="chk_winprcsflag_op_3" ref="/root/init/Options/option_3/winprcsflag" overflow="visible" appearance="full" style="left:0px; top:24px; width:100px; height:20px; border-style:none; ">
  312. <choices>
  313. <item>
  314. <label>정산상태</label>
  315. <value>Y</value>
  316. </item>
  317. </choices>
  318. </select>
  319. <select id="chk_chkyn_op_3" ref="/root/init/Options/option_3/chkyn" overflow="visible" appearance="full" style="left:110px; top:24px; width:100px; height:20px; border-style:none; ">
  320. <choices>
  321. <item>
  322. <label>검수유무</label>
  323. <value>Y</value>
  324. </item>
  325. </choices>
  326. </select>
  327. <select id="chk_chkdd_op_3" ref="/root/init/Options/option_3/chkdd" overflow="visible" appearance="full" style="left:225px; top:24px; width:100px; height:20px; border-style:none; ">
  328. <choices>
  329. <item>
  330. <label>검수일자</label>
  331. <value>Y</value>
  332. </item>
  333. </choices>
  334. </select>
  335. <select id="chk_chkpsn_op_3" ref="/root/init/Options/option_3/chkpsn" overflow="visible" appearance="full" style="left:335px; top:24px; width:100px; height:20px; border-style:none; ">
  336. <choices>
  337. <item>
  338. <label>검수자ID</label>
  339. <value>Y</value>
  340. </item>
  341. </choices>
  342. </select>
  343. <select id="chk_chkpsnnm_op_3" ref="/root/init/Options/option_3/chkpsnnm" overflow="visible" appearance="full" style="left:0px; top:48px; width:100px; height:20px; border-style:none; ">
  344. <choices>
  345. <item>
  346. <label>검수자명</label>
  347. <value>Y</value>
  348. </item>
  349. </choices>
  350. </select>
  351. <select id="chk_goodflagnm_op_3" ref="/root/init/Options/option_3/goodflagnm" overflow="visible" appearance="full" style="left:110px; top:48px; width:100px; height:20px; border-style:none; ">
  352. <choices>
  353. <item>
  354. <label>물품구분명</label>
  355. <value>Y</value>
  356. </item>
  357. </choices>
  358. </select>
  359. <select id="chk_custcd_op_3" ref="/root/init/Options/option_3/custcd" overflow="visible" appearance="full" style="left:225px; top:48px; width:100px; height:20px; border-style:none; ">
  360. <choices>
  361. <item>
  362. <label>거래처코드</label>
  363. <value>Y</value>
  364. </item>
  365. </choices>
  366. </select>
  367. <select id="chk_custcdnm_op_3" ref="/root/init/Options/option_3/custcdnm" overflow="visible" appearance="full" style="left:335px; top:48px; width:100px; height:20px; border-style:none; ">
  368. <choices>
  369. <item>
  370. <label>거래처명</label>
  371. <value>Y</value>
  372. </item>
  373. </choices>
  374. </select>
  375. <select id="chk_fixasetcd_op_3" ref="/root/init/Options/option_3/fixasetcd" overflow="visible" appearance="full" style="left:0px; top:72px; width:100px; height:20px; border-style:none; ">
  376. <choices>
  377. <item>
  378. <label>자산코드</label>
  379. <value>Y</value>
  380. </item>
  381. </choices>
  382. </select>
  383. <select id="chk_fixasetnm_op_3" ref="/root/init/Options/option_3/fixasetnm" overflow="visible" appearance="full" style="left:110px; top:72px; width:100px; height:20px; border-style:none; ">
  384. <choices>
  385. <item>
  386. <label>자산명</label>
  387. <value>Y</value>
  388. </item>
  389. </choices>
  390. </select>
  391. <select id="chk_goodmodel_op_3" ref="/root/init/Options/option_3/goodmodel" overflow="visible" appearance="full" style="left:225px; top:72px; width:100px; height:20px; border-style:none; ">
  392. <choices>
  393. <item>
  394. <label>모델</label>
  395. <value>Y</value>
  396. </item>
  397. </choices>
  398. </select>
  399. <select id="chk_rpirspec_op_3" ref="/root/init/Options/option_3/rpirspec" overflow="visible" appearance="full" style="left:335px; top:72px; width:100px; height:20px; border-style:none; ">
  400. <choices>
  401. <item>
  402. <label>수리내역</label>
  403. <value>Y</value>
  404. </item>
  405. </choices>
  406. </select>
  407. <select id="chk_mngtdeptcd_op_3" ref="/root/init/Options/option_3/mngtdeptcd" overflow="visible" appearance="full" style="left:0px; top:96px; width:100px; height:20px; border-style:none; ">
  408. <choices>
  409. <item>
  410. <label>사용부서</label>
  411. <value>Y</value>
  412. </item>
  413. </choices>
  414. </select>
  415. <select id="chk_mngtdeptnm_op_3" ref="/root/init/Options/option_3/mngtdeptnm" overflow="visible" appearance="full" style="left:110px; top:96px; width:100px; height:20px; border-style:none; ">
  416. <choices>
  417. <item>
  418. <label>사용부서명</label>
  419. <value>Y</value>
  420. </item>
  421. </choices>
  422. </select>
  423. <select id="chk_calcdocudd_op_3" ref="/root/init/Options/option_3/calcdocudd" overflow="visible" appearance="full" style="left:225px; top:96px; width:100px; height:20px; border-style:none; ">
  424. <choices>
  425. <item>
  426. <label>계산서일</label>
  427. <value>Y</value>
  428. </item>
  429. </choices>
  430. </select>
  431. <select id="chk_rpiramt_op_3" ref="/root/init/Options/option_3/rpiramt" overflow="visible" appearance="full" style="left:335px; top:96px; width:100px; height:20px; border-style:none; ">
  432. <choices>
  433. <item>
  434. <label>수리금액</label>
  435. <value>Y</value>
  436. </item>
  437. </choices>
  438. </select>
  439. <select id="chk_purcaprvyn_op_3" ref="/root/init/Options/option_3/purcaprvyn" overflow="visible" appearance="full" style="left:110px; top:120px; width:100px; height:20px; border-style:none; ">
  440. <choices>
  441. <item>
  442. <label>구매승인여부</label>
  443. <value>Y</value>
  444. </item>
  445. </choices>
  446. </select>
  447. <select id="chk_purcaprvdd_op_3" ref="/root/init/Options/option_3/purcaprvdd" overflow="visible" appearance="full" style="left:225px; top:120px; width:100px; height:20px; border-style:none; ">
  448. <choices>
  449. <item>
  450. <label>구매승인일</label>
  451. <value>Y</value>
  452. </item>
  453. </choices>
  454. </select>
  455. <select id="chk_purcaprvpsnidnm_op_3" ref="/root/init/Options/option_3/purcaprvpsnidnm" overflow="visible" appearance="full" style="left:335px; top:120px; width:100px; height:20px; border-style:none; ">
  456. <choices>
  457. <item>
  458. <label>구매승인자</label>
  459. <value>Y</value>
  460. </item>
  461. </choices>
  462. </select>
  463. <select id="chk_reqddno_op_3" ref="/root/init/Options/option_3/reqddno" overflow="visible" appearance="full" style="left:0px; top:120px; width:100px; height:20px; border-style:none; ">
  464. <choices>
  465. <item>
  466. <label>의뢰번호</label>
  467. <value>Y</value>
  468. </item>
  469. </choices>
  470. </select>
  471. <select id="chk_acptflagnm_op_3" ref="/root/init/Options/option_3/acptflagnm" overflow="visible" appearance="full" style="left:225px; top:144px; width:100px; height:20px; border-style:none; ">
  472. <choices>
  473. <item>
  474. <label>접수구분</label>
  475. <value>Y</value>
  476. </item>
  477. </choices>
  478. </select>
  479. <select id="chk_reqdeptcdnm_op_3" ref="/root/init/Options/option_3/reqdeptcdnm" overflow="visible" appearance="full" style="left:0px; top:144px; width:100px; height:20px; border-style:none; ">
  480. <choices>
  481. <item>
  482. <label>의뢰부서명</label>
  483. <value>Y</value>
  484. </item>
  485. </choices>
  486. </select>
  487. <select id="chk_reqpsnidnm_op_3" ref="/root/init/Options/option_3/reqpsnidnm" overflow="visible" appearance="full" style="left:110px; top:144px; width:100px; height:20px; border-style:none; ">
  488. <choices>
  489. <item>
  490. <label>의뢰자명</label>
  491. <value>Y</value>
  492. </item>
  493. </choices>
  494. </select>
  495. <select id="chk_genrdd_op_3" ref="/root/init/Options/option_3/genrdd" overflow="visible" appearance="full" style="left:0px; top:168px; width:100px; height:20px; border-style:none; ">
  496. <choices>
  497. <item>
  498. <label>발생일자</label>
  499. <value>Y</value>
  500. </item>
  501. </choices>
  502. </select>
  503. <select id="chk_genrtm_op_3" ref="/root/init/Options/option_3/genrtm" overflow="visible" appearance="full" style="left:110px; top:168px; width:100px; height:20px; border-style:none; ">
  504. <choices>
  505. <item>
  506. <label>발생시간</label>
  507. <value>Y</value>
  508. </item>
  509. </choices>
  510. </select>
  511. <select id="chk_chrgtel_op_3" ref="/root/init/Options/option_3/chrgtel" overflow="visible" appearance="full" style="left:335px; top:144px; width:100px; height:20px; border-style:none; ">
  512. <choices>
  513. <item>
  514. <label>담당자전화</label>
  515. <value>Y</value>
  516. </item>
  517. </choices>
  518. </select>
  519. <select id="chk_hdrncspec_op_3" ref="/root/init/Options/option_3/hdrncspec" overflow="visible" appearance="full" style="left:225px; top:168px; width:100px; height:20px; border-style:none; ">
  520. <choices>
  521. <item>
  522. <label>고장내역</label>
  523. <value>Y</value>
  524. </item>
  525. </choices>
  526. </select>
  527. <select id="chk_acptdd_op_3" ref="/root/init/Options/option_3/acptdd" overflow="visible" appearance="full" style="left:0px; top:192px; width:100px; height:20px; border-style:none; ">
  528. <choices>
  529. <item>
  530. <label>접수일자</label>
  531. <value>Y</value>
  532. </item>
  533. </choices>
  534. </select>
  535. <select id="chk_acpttm_op_3" ref="/root/init/Options/option_3/acpttm" overflow="visible" appearance="full" style="left:110px; top:192px; width:100px; height:20px; border-style:none; ">
  536. <choices>
  537. <item>
  538. <label>접수시간</label>
  539. <value>Y</value>
  540. </item>
  541. </choices>
  542. </select>
  543. <select id="chk_acptpsnidnm_op_3" ref="/root/init/Options/option_3/acptpsnidnm" overflow="visible" appearance="full" style="left:225px; top:192px; width:100px; height:20px; border-style:none; ">
  544. <choices>
  545. <item>
  546. <label>접수자</label>
  547. <value>Y</value>
  548. </item>
  549. </choices>
  550. </select>
  551. <select id="chk_acptdeptcd_op_3" ref="/root/init/Options/option_3/acptdeptcd" overflow="visible" appearance="full" style="left:0px; top:216px; width:100px; height:20px; border-style:none; ">
  552. <choices>
  553. <item>
  554. <label>접수부서</label>
  555. <value>Y</value>
  556. </item>
  557. </choices>
  558. </select>
  559. <select id="chk_acptdeptcdnm_op_3" ref="/root/init/Options/option_3/acptdeptcdnm" overflow="visible" appearance="full" style="left:110px; top:216px; width:100px; height:20px; border-style:none; ">
  560. <choices>
  561. <item>
  562. <label>접수부서</label>
  563. <value>Y</value>
  564. </item>
  565. </choices>
  566. </select>
  567. <select id="chk_chrgpsnidnm_op_3" ref="/root/init/Options/option_3/chrgpsnidnm" overflow="visible" appearance="full" style="left:225px; top:216px; width:100px; height:20px; border-style:none; ">
  568. <choices>
  569. <item>
  570. <label>담당자</label>
  571. <value>Y</value>
  572. </item>
  573. </choices>
  574. </select>
  575. <select id="chk_workstatnm_op_3" ref="/root/init/Options/option_3/workstatnm" overflow="visible" appearance="full" style="left:335px; top:216px; width:100px; height:20px; border-style:none; ">
  576. <choices>
  577. <item>
  578. <label>작업상태</label>
  579. <value>Y</value>
  580. </item>
  581. </choices>
  582. </select>
  583. <select id="chk_rpirflag1nm_op_3" ref="/root/init/Options/option_3/rpirflag1nm" overflow="visible" appearance="full" style="left:335px; top:168px; width:100px; height:20px; border-style:none; ">
  584. <choices>
  585. <item>
  586. <label>고장유형명</label>
  587. <value>Y</value>
  588. </item>
  589. </choices>
  590. </select>
  591. <select id="chk_rpirflag2nm_op_3" ref="/root/init/Options/option_3/rpirflag2nm" overflow="visible" appearance="full" style="left:0px; top:240px; width:100px; height:20px; border-style:none; ">
  592. <choices>
  593. <item>
  594. <label>수리형태</label>
  595. <value>Y</value>
  596. </item>
  597. </choices>
  598. </select>
  599. <select id="chk_useynnm_op_3" ref="/root/init/Options/option_3/useynnm" overflow="visible" appearance="full" style="left:335px; top:192px; width:100px; height:20px; border-style:none; ">
  600. <choices>
  601. <item>
  602. <label>수리구분명</label>
  603. <value>Y</value>
  604. </item>
  605. </choices>
  606. </select>
  607. <select id="chk_lastrpirstat_op_3" ref="/root/init/Options/option_3/lastrpirstat" overflow="visible" appearance="full" style="left:110px; top:240px; width:100px; height:20px; border-style:none; ">
  608. <choices>
  609. <item>
  610. <label>최종수리상태</label>
  611. <value>Y</value>
  612. </item>
  613. </choices>
  614. </select>
  615. <select id="chk_acptpsncnfm_op_3" ref="/root/init/Options/option_3/acptpsncnfm" overflow="visible" appearance="full" style="left:335px; top:240px; width:100px; height:20px; border-style:none; ">
  616. <choices>
  617. <item>
  618. <label>인수자확인</label>
  619. <value>Y</value>
  620. </item>
  621. </choices>
  622. </select>
  623. <select id="chk_deptacptdd_op_3" ref="/root/init/Options/option_3/deptacptdd" overflow="visible" appearance="full" style="left:0px; top:264px; width:100px; height:20px; border-style:none; ">
  624. <choices>
  625. <item>
  626. <label>부서인수일자</label>
  627. <value>Y</value>
  628. </item>
  629. </choices>
  630. </select>
  631. <select id="chk_deptacptpsnidnm_op_3" ref="/root/init/Options/option_3/deptacptpsnidnm" overflow="visible" appearance="full" style="left:110px; top:264px; width:100px; height:20px; border-style:none; ">
  632. <choices>
  633. <item>
  634. <label>부서인수담당</label>
  635. <value>Y</value>
  636. </item>
  637. </choices>
  638. </select>
  639. <select id="chk_estimateamt_op_3" ref="/root/init/Options/option_3/estimateamt" overflow="visible" appearance="full" style="left:225px; top:264px; width:100px; height:20px; border-style:none; ">
  640. <choices>
  641. <item>
  642. <label>견적금액</label>
  643. <value>Y</value>
  644. </item>
  645. </choices>
  646. </select>
  647. <select id="chk_reductionamt_op_3" ref="/root/init/Options/option_3/reductionamt" overflow="visible" appearance="full" style="left:335px; top:264px; width:100px; height:20px; border-style:none; ">
  648. <choices>
  649. <item>
  650. <label>절감액</label>
  651. <value>Y</value>
  652. </item>
  653. </choices>
  654. </select>
  655. <select id="chk_bankcd_op_3" ref="/root/init/Options/option_3/bankcd" overflow="visible" appearance="full" style="left:0px; top:288px; width:100px; height:20px; border-style:none; ">
  656. <choices>
  657. <item>
  658. <label>은행코드</label>
  659. <value>Y</value>
  660. </item>
  661. </choices>
  662. </select>
  663. <select id="chk_aactno_op_3" ref="/root/init/Options/option_3/aactno" overflow="visible" appearance="full" style="left:110px; top:288px; width:100px; height:20px; border-style:none; ">
  664. <choices>
  665. <item>
  666. <label>은행계좌</label>
  667. <value>Y</value>
  668. </item>
  669. </choices>
  670. </select>
  671. <select id="chk_banknm_op_3" ref="/root/init/Options/option_3/banknm" overflow="visible" appearance="full" style="left:225px; top:288px; width:100px; height:20px; border-style:none; ">
  672. <choices>
  673. <item>
  674. <label>은행명칭</label>
  675. <value>Y</value>
  676. </item>
  677. </choices>
  678. </select>
  679. <select id="chk_cmt_op_3" ref="/root/init/Options/option_3/cmt" overflow="visible" appearance="full" style="left:335px; top:288px; width:100px; height:20px; border-style:none; ">
  680. <choices>
  681. <item>
  682. <label>비고</label>
  683. <value>Y</value>
  684. </item>
  685. </choices>
  686. </select>
  687. <select id="chk_rpirenddd_op_3" ref="/root/init/Options/option_3/rpirenddd" overflow="visible" appearance="full" style="left:225px; top:336px; width:100px; height:20px; border-style:none; ">
  688. <choices>
  689. <item>
  690. <label>수리완료일</label>
  691. <value>Y</value>
  692. </item>
  693. </choices>
  694. </select>
  695. <select id="chk_sancttrsmyn_op_3" ref="/root/init/Options/option_3/sancttrsmyn" overflow="visible" appearance="full" style="left:0px; top:336px; width:100px; height:20px; border-style:none; ">
  696. <choices>
  697. <item>
  698. <label>결재전송여부</label>
  699. <value>Y</value>
  700. </item>
  701. </choices>
  702. </select>
  703. <select id="chk_sanctyn_op_3" ref="/root/init/Options/option_3/sanctyn" overflow="visible" appearance="full" style="left:0px; top:312px; width:100px; height:20px; border-style:none; ">
  704. <choices>
  705. <item>
  706. <label>결재여부</label>
  707. <value>Y</value>
  708. </item>
  709. </choices>
  710. </select>
  711. <select id="chk_sanctidnm_op_3" ref="/root/init/Options/option_3/sanctidnm" overflow="visible" appearance="full" style="left:225px; top:312px; width:100px; height:20px; border-style:none; ">
  712. <choices>
  713. <item>
  714. <label>결재자명</label>
  715. <value>Y</value>
  716. </item>
  717. </choices>
  718. </select>
  719. <select id="chk_chrgpsncmt_op_3" ref="/root/init/Options/option_3/chrgpsncmt" overflow="visible" appearance="full" style="left:335px; top:312px; width:100px; height:20px; border-style:none; ">
  720. <choices>
  721. <item>
  722. <label>결재비고</label>
  723. <value>Y</value>
  724. </item>
  725. </choices>
  726. </select>
  727. <select id="chk_sanctdd_op_3" ref="/root/init/Options/option_3/sanctdd" overflow="visible" appearance="full" style="left:110px; top:312px; width:100px; height:20px; border-style:none; ">
  728. <choices>
  729. <item>
  730. <label>결재일자</label>
  731. <value>Y</value>
  732. </item>
  733. </choices>
  734. </select>
  735. <select id="chk_nonworkdayno_op_3" ref="/root/init/Options/option_3/nonworkdayno" overflow="visible" appearance="full" style="left:335px; top:336px; width:100px; height:20px; border-style:none; ">
  736. <choices>
  737. <item>
  738. <label>미가동일수</label>
  739. <value>Y</value>
  740. </item>
  741. </choices>
  742. </select>
  743. <select id="chk_lastrpirrslt_op_3" ref="/root/init/Options/option_3/lastrpirrslt" overflow="visible" appearance="full" style="left:225px; top:240px; width:100px; height:20px; border-style:none; ">
  744. <choices>
  745. <item>
  746. <label>최종수리결과</label>
  747. <value>Y</value>
  748. </item>
  749. </choices>
  750. </select>
  751. <select id="chk_purctrsmyn_op_3" ref="/root/init/Options/option_3/purctrsmyn" overflow="visible" appearance="full" style="left:110px; top:336px; width:100px; height:20px; border-style:none; ">
  752. <choices>
  753. <item>
  754. <label>구매전송여부</label>
  755. <value>Y</value>
  756. </item>
  757. </choices>
  758. </select>
  759. <select id="chk_slipdd_op_3" ref="/root/init/Options/option_3/slipdd" overflow="visible" appearance="full" style="left:225px; top:384px; width:100px; height:20px; border-style:none; ">
  760. <choices>
  761. <item>
  762. <label>전표일자</label>
  763. <value>Y</value>
  764. </item>
  765. </choices>
  766. </select>
  767. <select id="chk_slipno_op_3" ref="/root/init/Options/option_3/slipno" overflow="visible" appearance="full" style="left:335px; top:384px; width:100px; height:20px; border-style:none; ">
  768. <choices>
  769. <item>
  770. <label>전표번호</label>
  771. <value>Y</value>
  772. </item>
  773. </choices>
  774. </select>
  775. <select id="chk_stdysubjnonm_op_3" ref="/root/init/Options/option_3/stdysubjnonm" overflow="visible" appearance="full" style="left:225px; top:432px; width:100px; height:20px; border-style:none; ">
  776. <choices>
  777. <item>
  778. <label>연구과제명</label>
  779. <value>Y</value>
  780. </item>
  781. </choices>
  782. </select>
  783. <select id="chk_bugtyy_op_3" ref="/root/init/Options/option_3/bugtyy" overflow="visible" appearance="full" style="left:0px; top:432px; width:100px; height:20px; border-style:none; ">
  784. <choices>
  785. <item>
  786. <label>예산년도</label>
  787. <value>Y</value>
  788. </item>
  789. </choices>
  790. </select>
  791. <select id="chk_reqtel_op_3" ref="/root/init/Options/option_3/reqtel" overflow="visible" appearance="full" style="left:335px; top:360px; width:100px; height:20px; border-style:none; ">
  792. <choices>
  793. <item>
  794. <label>수리담당연락처</label>
  795. <value>Y</value>
  796. </item>
  797. </choices>
  798. </select>
  799. <select id="chk_deptaprvyn_op_3" ref="/root/init/Options/option_3/deptaprvyn" overflow="visible" appearance="full" style="left:0px; top:360px; width:100px; height:20px; border-style:none; ">
  800. <choices>
  801. <item>
  802. <label>부서승인여부</label>
  803. <value>Y</value>
  804. </item>
  805. </choices>
  806. </select>
  807. <select id="chk_deptaprvdd_op_3" ref="/root/init/Options/option_3/deptaprvdd" overflow="visible" appearance="full" style="left:110px; top:360px; width:100px; height:20px; border-style:none; ">
  808. <choices>
  809. <item>
  810. <label>부서승인일자</label>
  811. <value>Y</value>
  812. </item>
  813. </choices>
  814. </select>
  815. <select id="chk_deptaprvpsnidnm_op_3" ref="/root/init/Options/option_3/deptaprvpsnidnm" overflow="visible" appearance="full" style="left:225px; top:360px; width:100px; height:20px; border-style:none; ">
  816. <choices>
  817. <item>
  818. <label>부서승인자명</label>
  819. <value>Y</value>
  820. </item>
  821. </choices>
  822. </select>
  823. <select id="chk_projectnm_op_3" ref="/root/init/Options/option_3/projectnm" overflow="visible" appearance="full" style="left:335px; top:432px; width:100px; height:20px; border-style:none; ">
  824. <choices>
  825. <item>
  826. <label>프로젝트명</label>
  827. <value>Y</value>
  828. </item>
  829. </choices>
  830. </select>
  831. <select id="chk_bugtnm_op_3" ref="/root/init/Options/option_3/bugtnm" overflow="visible" appearance="full" style="left:110px; top:432px; width:100px; height:20px; border-style:none; ">
  832. <choices>
  833. <item>
  834. <label>예산명</label>
  835. <value>Y</value>
  836. </item>
  837. </choices>
  838. </select>
  839. <select id="chk_totamt_op_3" ref="/root/init/Options/option_3/totamt" overflow="visible" appearance="full" style="left:0px; top:456px; width:100px; height:20px; border-style:none; ">
  840. <choices>
  841. <item>
  842. <label>예산총액</label>
  843. <value>Y</value>
  844. </item>
  845. </choices>
  846. </select>
  847. <select id="chk_bugtexpcamt_op_3" ref="/root/init/Options/option_3/bugtexpcamt" overflow="visible" appearance="full" style="left:110px; top:456px; width:100px; height:20px; border-style:none; ">
  848. <choices>
  849. <item>
  850. <label>예산추산액</label>
  851. <value>Y</value>
  852. </item>
  853. </choices>
  854. </select>
  855. <select id="chk_bugtexecamt_op_3" ref="/root/init/Options/option_3/bugtexecamt" overflow="visible" appearance="full" style="left:225px; top:456px; width:100px; height:20px; border-style:none; ">
  856. <choices>
  857. <item>
  858. <label>예산집행액</label>
  859. <value>Y</value>
  860. </item>
  861. </choices>
  862. </select>
  863. <select id="chk_remainder_op_3" ref="/root/init/Options/option_3/remainder" overflow="visible" appearance="full" style="left:335px; top:456px; width:100px; height:20px; border-style:none; ">
  864. <choices>
  865. <item>
  866. <label>예산잔액</label>
  867. <value>Y</value>
  868. </item>
  869. </choices>
  870. </select>
  871. <select id="chk_accountcmt_op_3" ref="/root/init/Options/option_3/accountcmt" overflow="visible" appearance="full" style="left:110px; top:384px; width:100px; height:20px; border-style:none; ">
  872. <choices>
  873. <item>
  874. <label>계산서비고</label>
  875. <value>Y</value>
  876. </item>
  877. </choices>
  878. </select>
  879. <select id="chk_purcagredd_op_3" ref="/root/init/Options/option_3/purcagredd" overflow="visible" appearance="full" style="left:0px; top:408px; width:115px; height:20px; border-style:none; ">
  880. <choices>
  881. <item>
  882. <label>구매수리승인일</label>
  883. <value>Y</value>
  884. </item>
  885. </choices>
  886. </select>
  887. <select id="chk_purcagresnidnm_op_3" ref="/root/init/Options/option_3/purcagresnidnm" overflow="visible" appearance="full" style="left:110px; top:408px; width:120px; height:20px; border-style:none; ">
  888. <choices>
  889. <item>
  890. <label>구매수리승인자</label>
  891. <value>Y</value>
  892. </item>
  893. </choices>
  894. </select>
  895. <select id="chk_calcdocukindnm_op_3" ref="/root/init/Options/option_3/calcdocukindnm" overflow="visible" appearance="full" style="left:0px; top:384px; width:100px; height:20px; border-style:none; ">
  896. <choices>
  897. <item>
  898. <label>계산서유형</label>
  899. <value>Y</value>
  900. </item>
  901. </choices>
  902. </select>
  903. <select id="chk_purcagreyn_op_3" ref="/root/init/Options/option_3/purcagreyn" overflow="visible" appearance="full" style="left:225px; top:408px; width:115px; height:20px; border-style:none; ">
  904. <choices>
  905. <item>
  906. <label>구매수리승인여부</label>
  907. <value>Y</value>
  908. </item>
  909. </choices>
  910. </select>
  911. <select id="checkbox2" ref="/root/init/Options/option_3/bugtnm" overflow="visible" appearance="full" style="left:335px; top:408px; width:100px; height:20px; border-style:none; ">
  912. <choices>
  913. <item>
  914. <label>예산명</label>
  915. <value>Y</value>
  916. </item>
  917. </choices>
  918. </select>
  919. </group>
  920. <group id="grp_rsihinptlist_op" style="left:6px; top:31px; width:440px; height:483px; padding:2; ">
  921. <select id="chk_goodmodel_op_0" ref="/root/init/Options/option_0/goodmodel" overflow="visible" appearance="full" style="left:335px; top:30px; width:100px; height:20px; border-style:none; ">
  922. <choices>
  923. <item>
  924. <label>물품모델</label>
  925. <value>Y</value>
  926. </item>
  927. </choices>
  928. </select>
  929. <select id="chk_calcdocukindnm_op_0" ref="/root/init/Options/option_0/calcdocukindnm" overflow="visible" appearance="full" style="left:225px; top:240px; width:100px; height:20px; border-style:none; ">
  930. <choices>
  931. <item>
  932. <label>계산서유형명</label>
  933. <value>Y</value>
  934. </item>
  935. </choices>
  936. </select>
  937. <select id="chk_suppcustnm_op_0" ref="/root/init/Options/option_0/suppcustnm" overflow="visible" appearance="full" style="left:335px; top:90px; width:100px; height:20px; border-style:none; ">
  938. <choices>
  939. <item>
  940. <label>보조거래처명</label>
  941. <value>Y</value>
  942. </item>
  943. </choices>
  944. </select>
  945. <select id="chk_totamt_op_0" ref="/root/init/Options/option_0/totamt" visibility="visible" overflow="visible" appearance="full" style="left:0px; top:420px; width:100px; height:20px; border-style:none; ">
  946. <choices>
  947. <item>
  948. <label>예산총액</label>
  949. <value>Y</value>
  950. </item>
  951. </choices>
  952. </select>
  953. <select id="chk_winamt_op_0" ref="/root/init/Options/option_0/winamt" overflow="visible" appearance="full" style="left:225px; top:150px; width:100px; height:20px; border-style:none; ">
  954. <choices>
  955. <item>
  956. <label>입고금액</label>
  957. <value>Y</value>
  958. </item>
  959. </choices>
  960. </select>
  961. <select id="chk_suplplcecd_op_0" ref="/root/init/Options/option_0/suplplcecd" overflow="visible" appearance="full" style="left:0px; top:90px; width:100px; height:20px; border-style:none; ">
  962. <choices>
  963. <item>
  964. <label>주거래처</label>
  965. <value>Y</value>
  966. </item>
  967. </choices>
  968. </select>
  969. <select id="chk_instcd_op_0" ref="/root/init/Options/option_0/instcd" overflow="visible" appearance="full" style="left:0px; top:270px; width:100px; height:20px; border-style:none; ">
  970. <choices>
  971. <item>
  972. <label>기관코드</label>
  973. <value>Y</value>
  974. </item>
  975. </choices>
  976. </select>
  977. <select id="chk_winprcsflag_op_0" ref="/root/init/Options/option_0/winprcsflag" overflow="visible" appearance="full" style="left:335px; top:270px; width:100px; height:20px; border-style:none; ">
  978. <choices>
  979. <item>
  980. <label>정산상태</label>
  981. <value>Y</value>
  982. </item>
  983. </choices>
  984. </select>
  985. <select id="chk_calcdocukind_op_0" ref="/root/init/Options/option_0/calcdocukind" overflow="visible" appearance="full" style="left:225px; top:210px; width:100px; height:20px; border-style:none; ">
  986. <choices>
  987. <item>
  988. <label>계산서유형</label>
  989. <value>Y</value>
  990. </item>
  991. </choices>
  992. </select>
  993. <select id="chk_bankcd_op_0" ref="/root/init/Options/option_0/bankcd" overflow="visible" appearance="full" style="left:0px; top:120px; width:100px; height:20px; border-style:none; ">
  994. <choices>
  995. <item>
  996. <label>은행코드</label>
  997. <value>Y</value>
  998. </item>
  999. </choices>
  1000. </select>
  1001. <select id="chk_slipno_op_0" ref="/root/init/Options/option_0/slipno" visibility="visible" overflow="visible" appearance="full" style="left:110px; top:360px; width:100px; height:20px; border-style:none; ">
  1002. <choices>
  1003. <item>
  1004. <label>전표번호</label>
  1005. <value>Y</value>
  1006. </item>
  1007. </choices>
  1008. </select>
  1009. <select id="chk_winqty_op_0" ref="/root/init/Options/option_0/winqty" overflow="visible" appearance="full" style="left:0px; top:150px; width:100px; height:20px; border-style:none; ">
  1010. <choices>
  1011. <item>
  1012. <label>입고수량</label>
  1013. <value>Y</value>
  1014. </item>
  1015. </choices>
  1016. </select>
  1017. <select id="chk_suplplcenm_op_0" ref="/root/init/Options/option_0/suplplcenm" overflow="visible" appearance="full" style="left:110px; top:90px; width:100px; height:20px; border-style:none; ">
  1018. <choices>
  1019. <item>
  1020. <label>주거래처명</label>
  1021. <value>Y</value>
  1022. </item>
  1023. </choices>
  1024. </select>
  1025. <select id="chk_goodspec_op_0" ref="/root/init/Options/option_0/goodspec" overflow="visible" appearance="full" style="left:225px; top:30px; width:100px; height:20px; border-style:none; ">
  1026. <choices>
  1027. <item>
  1028. <label>물품규격</label>
  1029. <value>Y</value>
  1030. </item>
  1031. </choices>
  1032. </select>
  1033. <select id="chk_slipdd_op_0" ref="/root/init/Options/option_0/slipdd" visibility="visible" overflow="visible" appearance="full" style="left:0px; top:360px; width:100px; height:20px; border-style:none; ">
  1034. <choices>
  1035. <item>
  1036. <label>전표일자</label>
  1037. <value>Y</value>
  1038. </item>
  1039. </choices>
  1040. </select>
  1041. <select id="chk_bugtexpcamt_op_0" ref="/root/init/Options/option_0/bugtexpcamt" visibility="visible" overflow="visible" appearance="full" style="left:225px; top:420px; width:100px; height:20px; border-style:none; ">
  1042. <choices>
  1043. <item>
  1044. <label>예산추산액</label>
  1045. <value>Y</value>
  1046. </item>
  1047. </choices>
  1048. </select>
  1049. <select id="chk_installplcecd_op_0" ref="/root/init/Options/option_0/installplcecd" overflow="visible" appearance="full" style="left:110px; top:270px; width:100px; height:20px; border-style:none; ">
  1050. <choices>
  1051. <item>
  1052. <label>설치장소코드</label>
  1053. <value>Y</value>
  1054. </item>
  1055. </choices>
  1056. </select>
  1057. <select id="chk_banknm_op_0" ref="/root/init/Options/option_0/banknm" overflow="visible" appearance="full" style="left:225px; top:120px; width:100px; height:20px; border-style:none; ">
  1058. <choices>
  1059. <item>
  1060. <label>은행명칭</label>
  1061. <value>Y</value>
  1062. </item>
  1063. </choices>
  1064. </select>
  1065. <select id="chk_chkdd_op_0" ref="/root/init/Options/option_0/chkdd" visibility="visible" overflow="visible" appearance="full" style="left:110px; top:330px; width:100px; height:20px; border-style:none; ">
  1066. <choices>
  1067. <item>
  1068. <label>검수일자</label>
  1069. <value>Y</value>
  1070. </item>
  1071. </choices>
  1072. </select>
  1073. <select id="chk_goodflagnm_op_0" ref="/root/init/Options/option_0/goodflagnm" overflow="visible" appearance="full" style="left:110px; top:0px; width:100px; height:20px; border-style:none; ">
  1074. <choices>
  1075. <item>
  1076. <label>물품구분명</label>
  1077. <value>Y</value>
  1078. </item>
  1079. </choices>
  1080. </select>
  1081. <select id="chk_bugtexecamt_op_0" ref="/root/init/Options/option_0/bugtexecamt" visibility="visible" overflow="visible" appearance="full" style="left:110px; top:420px; width:100px; height:20px; border-style:none; ">
  1082. <choices>
  1083. <item>
  1084. <label>예산집행액</label>
  1085. <value>Y</value>
  1086. </item>
  1087. </choices>
  1088. </select>
  1089. <select id="chk_paycondnm_op_0" ref="/root/init/Options/option_0/paycondnm" overflow="visible" appearance="full" style="left:110px; top:240px; width:100px; height:20px; border-style:none; ">
  1090. <choices>
  1091. <item>
  1092. <label>지불필구분명</label>
  1093. <value>Y</value>
  1094. </item>
  1095. </choices>
  1096. </select>
  1097. <select id="chk_purcflag_op_0" ref="/root/init/Options/option_0/purcflag" overflow="visible" appearance="full" style="left:225px; top:0px; width:100px; height:20px; border-style:none; ">
  1098. <choices>
  1099. <item>
  1100. <label>구매구분</label>
  1101. <value>Y</value>
  1102. </item>
  1103. </choices>
  1104. </select>
  1105. <select id="chk_calcdocudd_op_0" ref="/root/init/Options/option_0/calcdocudd" overflow="visible" appearance="full" style="left:335px; top:240px; width:100px; height:20px; border-style:none; ">
  1106. <choices>
  1107. <item>
  1108. <label>계산서일자</label>
  1109. <value>Y</value>
  1110. </item>
  1111. </choices>
  1112. </select>
  1113. <select id="chk_calccnfmyn_op_0" ref="/root/init/Options/option_0/calccnfmyn" overflow="visible" appearance="full" style="left:0px; top:300px; width:100px; height:20px; border-style:none; ">
  1114. <choices>
  1115. <item>
  1116. <label>정산확정</label>
  1117. <value>Y</value>
  1118. </item>
  1119. </choices>
  1120. </select>
  1121. <select id="chk_chkpsn_op_0" ref="/root/init/Options/option_0/chkpsn" visibility="visible" overflow="visible" appearance="full" style="left:225px; top:330px; width:100px; height:20px; border-style:none; ">
  1122. <choices>
  1123. <item>
  1124. <label>검수자id</label>
  1125. <value>Y</value>
  1126. </item>
  1127. </choices>
  1128. </select>
  1129. <select id="chk_iokind_op_0" ref="/root/init/Options/option_0/iokind" overflow="visible" appearance="full" style="left:0px; top:210px; width:100px; height:20px; border-style:none; ">
  1130. <choices>
  1131. <item>
  1132. <label>입출유형</label>
  1133. <value>Y</value>
  1134. </item>
  1135. </choices>
  1136. </select>
  1137. <select id="chk_aactno_op_0" ref="/root/init/Options/option_0/aactno" overflow="visible" appearance="full" style="left:110px; top:120px; width:100px; height:20px; border-style:none; ">
  1138. <choices>
  1139. <item>
  1140. <label>은행계좌</label>
  1141. <value>Y</value>
  1142. </item>
  1143. </choices>
  1144. </select>
  1145. <select id="chk_projectnm_op_0" ref="/root/init/Options/option_0/projectnm" visibility="visible" overflow="visible" appearance="full" style="left:0px; top:390px; width:100px; height:20px; border-style:none; ">
  1146. <choices>
  1147. <item>
  1148. <label>프로젝트명</label>
  1149. <value>Y</value>
  1150. </item>
  1151. </choices>
  1152. </select>
  1153. <select id="chk_goodflag_op_0" ref="/root/init/Options/option_0/goodflag" overflow="visible" appearance="full" style="left:0px; top:0px; width:100px; height:20px; border-style:none; ">
  1154. <choices>
  1155. <item>
  1156. <label>물품구분</label>
  1157. <value>Y</value>
  1158. </item>
  1159. </choices>
  1160. </select>
  1161. <select id="chk_winputno_op_0" ref="/root/init/Options/option_0/winputno" overflow="visible" appearance="full" style="left:0px; top:60px; width:100px; height:20px; border-style:none; ">
  1162. <choices>
  1163. <item>
  1164. <label>입고번호</label>
  1165. <value>Y</value>
  1166. </item>
  1167. </choices>
  1168. </select>
  1169. <select id="chk_remainder_op_0" ref="/root/init/Options/option_0/remainder" visibility="visible" overflow="visible" appearance="full" style="left:335px; top:420px; width:100px; height:20px; border-style:none; ">
  1170. <choices>
  1171. <item>
  1172. <label>예산잔액</label>
  1173. <value>Y</value>
  1174. </item>
  1175. </choices>
  1176. </select>
  1177. <select id="chk_reqdeptcd_op_0" ref="/root/init/Options/option_0/reqdeptcd" overflow="visible" appearance="full" style="left:225px; top:180px; width:100px; height:20px; border-style:none; ">
  1178. <choices>
  1179. <item>
  1180. <label>구매요구부서</label>
  1181. <value>Y</value>
  1182. </item>
  1183. </choices>
  1184. </select>
  1185. <select id="chk_winunitcost_op_0" ref="/root/init/Options/option_0/winunitcost" overflow="visible" appearance="full" style="left:110px; top:150px; width:100px; height:20px; border-style:none; ">
  1186. <choices>
  1187. <item>
  1188. <label>입고단가</label>
  1189. <value>Y</value>
  1190. </item>
  1191. </choices>
  1192. </select>
  1193. <select id="chk_acntcd_op_0" ref="/root/init/Options/option_0/acntcd" visibility="visible" overflow="visible" appearance="full" style="left:225px; top:360px; width:100px; height:20px; border-style:none; ">
  1194. <choices>
  1195. <item>
  1196. <label>계정코드</label>
  1197. <value>Y</value>
  1198. </item>
  1199. </choices>
  1200. </select>
  1201. <select id="chk_purcreqno_op_0" ref="/root/init/Options/option_0/purcreqno" overflow="visible" appearance="full" style="left:110px; top:60px; width:100px; height:20px; border-style:none; ">
  1202. <choices>
  1203. <item>
  1204. <label>발주번호</label>
  1205. <value>Y</value>
  1206. </item>
  1207. </choices>
  1208. </select>
  1209. <select id="chk_bugtnm_op_0" ref="/root/init/Options/option_0/bugtnm" visibility="visible" overflow="visible" appearance="full" style="left:225px; top:390px; width:100px; height:20px; border-style:none; ">
  1210. <choices>
  1211. <item>
  1212. <label>예산명</label>
  1213. <value>Y</value>
  1214. </item>
  1215. </choices>
  1216. </select>
  1217. <select id="chk_calccnfmpsn_op_0" ref="/root/init/Options/option_0/calccnfmpsn" overflow="visible" appearance="full" style="left:110px; top:300px; width:100px; height:20px; border-style:none; ">
  1218. <choices>
  1219. <item>
  1220. <label>정산확정자</label>
  1221. <value>Y</value>
  1222. </item>
  1223. </choices>
  1224. </select>
  1225. <select id="chk_iokindnm_op_0" ref="/root/init/Options/option_0/iokindnm" overflow="visible" appearance="full" style="left:110px; top:210px; width:100px; height:20px; border-style:none; ">
  1226. <choices>
  1227. <item>
  1228. <label>입출유형명</label>
  1229. <value>Y</value>
  1230. </item>
  1231. </choices>
  1232. </select>
  1233. <select id="chk_prodcmpynm_op_0" ref="/root/init/Options/option_0/prodcmpynm" overflow="visible" appearance="full" style="left:335px; top:120px; width:100px; height:20px; border-style:none; ">
  1234. <choices>
  1235. <item>
  1236. <label>제조회사</label>
  1237. <value>Y</value>
  1238. </item>
  1239. </choices>
  1240. </select>
  1241. <select id="chk_goodcd_op_0" ref="/root/init/Options/option_0/goodcd" overflow="visible" appearance="full" style="left:0px; top:30px; width:100px; height:20px; border-style:none; ">
  1242. <choices>
  1243. <item>
  1244. <label>물품코드</label>
  1245. <value>Y</value>
  1246. </item>
  1247. </choices>
  1248. </select>
  1249. <select id="chk_chkpsnnm_op_0" ref="/root/init/Options/option_0/chkpsnnm" visibility="visible" overflow="visible" appearance="full" style="left:335px; top:330px; width:100px; height:20px; border-style:none; ">
  1250. <choices>
  1251. <item>
  1252. <label>검수자명</label>
  1253. <value>Y</value>
  1254. </item>
  1255. </choices>
  1256. </select>
  1257. <select id="chk_projectid_op_0" ref="/root/init/Options/option_0/projectid" visibility="visible" overflow="visible" appearance="full" style="left:110px; top:390px; width:100px; height:20px; border-style:none; ">
  1258. <choices>
  1259. <item>
  1260. <label>프로젝트</label>
  1261. <value>Y</value>
  1262. </item>
  1263. </choices>
  1264. </select>
  1265. <select id="chk_acntnm_op_0" ref="/root/init/Options/option_0/acntnm" visibility="visible" overflow="visible" appearance="full" style="left:335px; top:360px; width:100px; height:20px; border-style:none; ">
  1266. <choices>
  1267. <item>
  1268. <label>계정명</label>
  1269. <value>Y</value>
  1270. </item>
  1271. </choices>
  1272. </select>
  1273. <select id="chk_purcflagnm_op_0" ref="/root/init/Options/option_0/purcflagnm" overflow="visible" appearance="full" style="left:335px; top:0px; width:100px; height:20px; border-style:none; ">
  1274. <choices>
  1275. <item>
  1276. <label>구매구분명</label>
  1277. <value>Y</value>
  1278. </item>
  1279. </choices>
  1280. </select>
  1281. <select id="chk_calccnfmdd_op_0" ref="/root/init/Options/option_0/calccnfmdd" visibility="visible" overflow="visible" appearance="full" style="left:335px; top:300px; width:100px; height:20px; border-style:none; ">
  1282. <choices>
  1283. <item>
  1284. <label>정산일자</label>
  1285. <value>Y</value>
  1286. </item>
  1287. </choices>
  1288. </select>
  1289. <select id="chk_delivedeptcd_op_0" ref="/root/init/Options/option_0/delivedeptcd" overflow="visible" appearance="full" style="left:335px; top:180px; width:100px; height:20px; border-style:none; ">
  1290. <choices>
  1291. <item>
  1292. <label>출고부서</label>
  1293. <value>Y</value>
  1294. </item>
  1295. </choices>
  1296. </select>
  1297. <select id="chk_profno_op_0" ref="/root/init/Options/option_0/profno" overflow="visible" appearance="full" style="left:225px; top:270px; width:100px; height:20px; border-style:none; ">
  1298. <choices>
  1299. <item>
  1300. <label>증빙번호</label>
  1301. <value>Y</value>
  1302. </item>
  1303. </choices>
  1304. </select>
  1305. <select id="chk_windeptcd_op_0" ref="/root/init/Options/option_0/windeptcd" overflow="visible" appearance="full" style="left:0px; top:180px; width:100px; height:20px; border-style:none; ">
  1306. <choices>
  1307. <item>
  1308. <label>입고부서코드</label>
  1309. <value>Y</value>
  1310. </item>
  1311. </choices>
  1312. </select>
  1313. <select id="chk_goodnm_op_0" ref="/root/init/Options/option_0/goodnm" overflow="visible" appearance="full" style="left:110px; top:30px; width:100px; height:20px; border-style:none; ">
  1314. <choices>
  1315. <item>
  1316. <label>물품명</label>
  1317. <value>Y</value>
  1318. </item>
  1319. </choices>
  1320. </select>
  1321. <select id="chk_paycond_op_0" ref="/root/init/Options/option_0/paycond" overflow="visible" appearance="full" style="left:0px; top:240px; width:100px; height:20px; border-style:none; ">
  1322. <choices>
  1323. <item>
  1324. <label>지불필구분</label>
  1325. <value>Y</value>
  1326. </item>
  1327. </choices>
  1328. </select>
  1329. <select id="chk_winpsnnm_op_0" ref="/root/init/Options/option_0/winpsnnm" overflow="visible" appearance="full" style="left:335px; top:60px; width:100px; height:20px; border-style:none; ">
  1330. <choices>
  1331. <item>
  1332. <label>입고자명</label>
  1333. <value>Y</value>
  1334. </item>
  1335. </choices>
  1336. </select>
  1337. <select id="chk_winpsn_op_0" ref="/root/init/Options/option_0/winpsn" overflow="visible" appearance="full" style="left:225px; top:60px; width:100px; height:20px; border-style:none; ">
  1338. <choices>
  1339. <item>
  1340. <label>입고자id</label>
  1341. <value>Y</value>
  1342. </item>
  1343. </choices>
  1344. </select>
  1345. <select id="chk_windeptnm_op_0" ref="/root/init/Options/option_0/windeptnm" overflow="visible" appearance="full" style="left:110px; top:180px; width:100px; height:20px; border-style:none; ">
  1346. <choices>
  1347. <item>
  1348. <label>입고부서명</label>
  1349. <value>Y</value>
  1350. </item>
  1351. </choices>
  1352. </select>
  1353. <select id="chk_delivedeptnm_op_0" ref="/root/init/Options/option_0/delivedeptnm" overflow="visible" appearance="full" style="left:335px; top:210px; width:100px; height:20px; border-style:none; ">
  1354. <choices>
  1355. <item>
  1356. <label>불출부서명</label>
  1357. <value>Y</value>
  1358. </item>
  1359. </choices>
  1360. </select>
  1361. <select id="chk_winunit_op_0" ref="/root/init/Options/option_0/winunit" overflow="visible" appearance="full" style="left:335px; top:150px; width:100px; height:20px; border-style:none; ">
  1362. <choices>
  1363. <item>
  1364. <label>입고단위</label>
  1365. <value>Y</value>
  1366. </item>
  1367. </choices>
  1368. </select>
  1369. <select id="chk_suppcustcd_op_0" ref="/root/init/Options/option_0/suppcustcd" overflow="visible" appearance="full" style="left:225px; top:90px; width:100px; height:20px; border-style:none; ">
  1370. <choices>
  1371. <item>
  1372. <label>보조거래처</label>
  1373. <value>Y</value>
  1374. </item>
  1375. </choices>
  1376. </select>
  1377. <select id="chk_calccnfmpsnnm_op_0" ref="/root/init/Options/option_0/calccnfmpsnnm" overflow="visible" appearance="full" style="left:225px; top:300px; width:100px; height:20px; border-style:none; ">
  1378. <choices>
  1379. <item>
  1380. <label>정산확정자명</label>
  1381. <value>Y</value>
  1382. </item>
  1383. </choices>
  1384. </select>
  1385. <select id="chk_chkyn_op_0" ref="/root/init/Options/option_0/chkyn" visibility="visible" overflow="visible" appearance="full" style="left:0px; top:330px; width:100px; height:20px; border-style:none; ">
  1386. <choices>
  1387. <item>
  1388. <label>검수유무</label>
  1389. <value>Y</value>
  1390. </item>
  1391. </choices>
  1392. </select>
  1393. </group>
  1394. <caption id="caption1" class="tit_2" style="left:10px; top:5px; width:157px; height:13px; ">보기 Option</caption>
  1395. <button id="button7" class="btn4_letter2" style="left:382px; top:1px; width:56px; height:22px; ">
  1396. <caption>취소</caption>
  1397. <script type="javascript" ev:event="DOMActivate">
  1398. <![CDATA[
  1399. grp_view.visible = false;
  1400. grp_main.disabled = false; // addGroup 컨트롤이 나타나면 listGroup 컨트롤을 disabled 시킴
  1401. ]]>
  1402. </script>
  1403. </button>
  1404. <button id="button9" class="btn4_letter2" style="left:317px; top:1px; width:56px; height:22px; ">
  1405. <caption>선택</caption>
  1406. <script type="javascript" ev:event="DOMActivate">
  1407. <![CDATA[
  1408. fViewOptionToggle();
  1409. ]]>
  1410. </script>
  1411. </button>
  1412. <line id="line1" class="line_1" style="x1:5px; y1:23px; x2:440px; y2:23px; "/>
  1413. <group id="grp_rfchinpflist_op" visibility="hidden" style="left:6px; top:31px; width:440px; height:483px; padding:2; ">
  1414. <select id="chk_calccnfmyn_op_2" ref="/root/init/Options/option_2/calccnfmyn" overflow="visible" appearance="full" style="left:0px; top:24px; width:100px; height:20px; border-style:none; ">
  1415. <choices>
  1416. <item>
  1417. <label>정산확정여부</label>
  1418. <value>Y</value>
  1419. </item>
  1420. </choices>
  1421. </select>
  1422. <select id="chk_calccnfmpsn_op_2" ref="/root/init/Options/option_2/calccnfmpsn" overflow="visible" appearance="full" style="left:110px; top:0px; width:100px; height:20px; border-style:none; ">
  1423. <choices>
  1424. <item>
  1425. <label>정산확정자</label>
  1426. <value>Y</value>
  1427. </item>
  1428. </choices>
  1429. </select>
  1430. <select id="chk_calccnfmpsnnm_op_2" ref="/root/init/Options/option_2/calccnfmpsnnm" overflow="visible" appearance="full" style="left:225px; top:24px; width:100px; height:20px; border-style:none; ">
  1431. <choices>
  1432. <item>
  1433. <label>정산확정자명</label>
  1434. <value>Y</value>
  1435. </item>
  1436. </choices>
  1437. </select>
  1438. <select id="chk_calccnfmdd_op_2" ref="/root/init/Options/option_2/calccnfmdd" overflow="visible" appearance="full" style="left:335px; top:0px; width:100px; height:20px; border-style:none; ">
  1439. <choices>
  1440. <item>
  1441. <label>정산확정년월</label>
  1442. <value>Y</value>
  1443. </item>
  1444. </choices>
  1445. </select>
  1446. <select id="chk_winprcsflag_op_2" ref="/root/init/Options/option_2/winprcsflag" overflow="visible" appearance="full" style="left:0px; top:0px; width:100px; height:20px; border-style:none; ">
  1447. <choices>
  1448. <item>
  1449. <label>정산상태</label>
  1450. <value>Y</value>
  1451. </item>
  1452. </choices>
  1453. </select>
  1454. <select id="chk_chkyn_op_2" ref="/root/init/Options/option_2/chkyn" overflow="visible" appearance="full" style="left:110px; top:24px; width:100px; height:20px; border-style:none; ">
  1455. <choices>
  1456. <item>
  1457. <label>검수유무</label>
  1458. <value>Y</value>
  1459. </item>
  1460. </choices>
  1461. </select>
  1462. <select id="chk_chkdd_op_2" ref="/root/init/Options/option_2/chkdd" overflow="visible" appearance="full" style="left:225px; top:0px; width:100px; height:20px; border-style:none; ">
  1463. <choices>
  1464. <item>
  1465. <label>검수일자</label>
  1466. <value>Y</value>
  1467. </item>
  1468. </choices>
  1469. </select>
  1470. <select id="chk_chkpsn_op_2" ref="/root/init/Options/option_2/chkpsn" overflow="visible" appearance="full" style="left:335px; top:24px; width:100px; height:20px; border-style:none; ">
  1471. <choices>
  1472. <item>
  1473. <label>검수자ID</label>
  1474. <value>Y</value>
  1475. </item>
  1476. </choices>
  1477. </select>
  1478. <select id="chk_chkpsnnm_op_2" ref="/root/init/Options/option_2/chkpsnnm" overflow="visible" appearance="full" style="left:0px; top:48px; width:100px; height:20px; border-style:none; ">
  1479. <choices>
  1480. <item>
  1481. <label>검수자명</label>
  1482. <value>Y</value>
  1483. </item>
  1484. </choices>
  1485. </select>
  1486. <select id="chk_goodflag_op_2" ref="/root/init/Options/option_2/goodflag" overflow="visible" appearance="full" style="left:110px; top:48px; width:100px; height:20px; border-style:none; ">
  1487. <choices>
  1488. <item>
  1489. <label>물품구분</label>
  1490. <value>Y</value>
  1491. </item>
  1492. </choices>
  1493. </select>
  1494. <select id="chk_goodflagnm_op_2" ref="/root/init/Options/option_2/goodflagnm" overflow="visible" appearance="full" style="left:225px; top:48px; width:100px; height:20px; border-style:none; ">
  1495. <choices>
  1496. <item>
  1497. <label>물품구분명</label>
  1498. <value>Y</value>
  1499. </item>
  1500. </choices>
  1501. </select>
  1502. <select id="chk_suplplcecd_op_2" ref="/root/init/Options/option_2/suplplcecd" overflow="visible" appearance="full" style="left:335px; top:48px; width:100px; height:20px; border-style:none; ">
  1503. <choices>
  1504. <item>
  1505. <label>공급처코드</label>
  1506. <value>Y</value>
  1507. </item>
  1508. </choices>
  1509. </select>
  1510. <select id="chk_suplplcenm_op_2" ref="/root/init/Options/option_2/suplplcenm" overflow="visible" appearance="full" style="left:0px; top:72px; width:100px; height:20px; border-style:none; ">
  1511. <choices>
  1512. <item>
  1513. <label>주거래처</label>
  1514. <value>Y</value>
  1515. </item>
  1516. </choices>
  1517. </select>
  1518. <select id="chk_suppcustcd_op_2" ref="/root/init/Options/option_2/suppcustcd" overflow="visible" appearance="full" style="left:110px; top:72px; width:100px; height:20px; border-style:none; ">
  1519. <choices>
  1520. <item>
  1521. <label>보조거래처</label>
  1522. <value>Y</value>
  1523. </item>
  1524. </choices>
  1525. </select>
  1526. <select id="chk_suppcustnm_op_2" ref="/root/init/Options/option_2/suppcustnm" overflow="visible" appearance="full" style="left:225px; top:72px; width:100px; height:20px; border-style:none; ">
  1527. <choices>
  1528. <item>
  1529. <label>보조거래처</label>
  1530. <value>Y</value>
  1531. </item>
  1532. </choices>
  1533. </select>
  1534. <select id="chk_winputno_op_2" ref="/root/init/Options/option_2/winputno" overflow="visible" appearance="full" style="left:335px; top:72px; width:100px; height:20px; border-style:none; ">
  1535. <choices>
  1536. <item>
  1537. <label>입고번호</label>
  1538. <value>Y</value>
  1539. </item>
  1540. </choices>
  1541. </select>
  1542. <select id="chk_purcreqno_op_2" ref="/root/init/Options/option_2/purcreqno" overflow="visible" appearance="full" style="left:0px; top:96px; width:100px; height:20px; border-style:none; ">
  1543. <choices>
  1544. <item>
  1545. <label>발주번호</label>
  1546. <value>Y</value>
  1547. </item>
  1548. </choices>
  1549. </select>
  1550. <select id="chk_calcdocukindnm_op_2" ref="/root/init/Options/option_2/calcdocukindnm" overflow="visible" appearance="full" style="left:110px; top:96px; width:100px; height:20px; border-style:none; ">
  1551. <choices>
  1552. <item>
  1553. <label>계산서유형</label>
  1554. <value>Y</value>
  1555. </item>
  1556. </choices>
  1557. </select>
  1558. <select id="chk_calcdocudd_op_2" ref="/root/init/Options/option_2/calcdocudd" overflow="visible" appearance="full" style="left:225px; top:96px; width:100px; height:20px; border-style:none; ">
  1559. <choices>
  1560. <item>
  1561. <label>계산서일자</label>
  1562. <value>Y</value>
  1563. </item>
  1564. </choices>
  1565. </select>
  1566. <select id="chk_curncyunit_op_2" ref="/root/init/Options/option_2/curncyunit" overflow="visible" appearance="full" style="left:335px; top:96px; width:100px; height:20px; border-style:none; ">
  1567. <choices>
  1568. <item>
  1569. <label>화폐단위</label>
  1570. <value>Y</value>
  1571. </item>
  1572. </choices>
  1573. </select>
  1574. <select id="chk_wncurncyamt_op_2" ref="/root/init/Options/option_2/wncurncyamt" overflow="visible" appearance="full" style="left:0px; top:120px; width:100px; height:20px; border-style:none; ">
  1575. <choices>
  1576. <item>
  1577. <label>원화금액</label>
  1578. <value>Y</value>
  1579. </item>
  1580. </choices>
  1581. </select>
  1582. <select id="chk_plcewinqty_op_2" ref="/root/init/Options/option_2/plcewinqty" overflow="visible" appearance="full" style="left:110px; top:120px; width:100px; height:20px; border-style:none; ">
  1583. <choices>
  1584. <item>
  1585. <label>발주수량</label>
  1586. <value>Y</value>
  1587. </item>
  1588. </choices>
  1589. </select>
  1590. <select id="chk_plcewinamt_op_2" ref="/root/init/Options/option_2/plcewinamt" overflow="visible" appearance="full" style="left:225px; top:120px; width:100px; height:20px; border-style:none; ">
  1591. <choices>
  1592. <item>
  1593. <label>발주금액</label>
  1594. <value>Y</value>
  1595. </item>
  1596. </choices>
  1597. </select>
  1598. <select id="chk_slipdd_op_2" ref="/root/init/Options/option_2/slipdd" overflow="visible" appearance="full" style="left:335px; top:120px; width:100px; height:20px; border-style:none; ">
  1599. <choices>
  1600. <item>
  1601. <label>전표일자</label>
  1602. <value>Y</value>
  1603. </item>
  1604. </choices>
  1605. </select>
  1606. <select id="chk_slipno_op_2" ref="/root/init/Options/option_2/slipno" overflow="visible" appearance="full" style="left:0px; top:144px; width:100px; height:20px; border-style:none; ">
  1607. <choices>
  1608. <item>
  1609. <label>전표번호</label>
  1610. <value>Y</value>
  1611. </item>
  1612. </choices>
  1613. </select>
  1614. <select id="chk_banknm_op_2" ref="/root/init/Options/option_2/banknm" overflow="visible" appearance="full" style="left:110px; top:144px; width:100px; height:20px; border-style:none; ">
  1615. <choices>
  1616. <item>
  1617. <label>은행명칭</label>
  1618. <value>Y</value>
  1619. </item>
  1620. </choices>
  1621. </select>
  1622. <select id="chk_bankcd_op_2" ref="/root/init/Options/option_2/bankcd" overflow="visible" appearance="full" style="left:225px; top:144px; width:100px; height:20px; border-style:none; ">
  1623. <choices>
  1624. <item>
  1625. <label>은행코드</label>
  1626. <value>Y</value>
  1627. </item>
  1628. </choices>
  1629. </select>
  1630. <select id="chk_aactno_op_2" ref="/root/init/Options/option_2/aactno" overflow="visible" appearance="full" style="left:335px; top:144px; width:100px; height:20px; border-style:none; ">
  1631. <choices>
  1632. <item>
  1633. <label>은행계좌</label>
  1634. <value>Y</value>
  1635. </item>
  1636. </choices>
  1637. </select>
  1638. <select id="chk_goodnm_op_2" ref="/root/init/Options/option_2/goodnm" overflow="visible" appearance="full" style="left:0px; top:168px; width:100px; height:20px; border-style:none; ">
  1639. <choices>
  1640. <item>
  1641. <label>물품명</label>
  1642. <value>Y</value>
  1643. </item>
  1644. </choices>
  1645. </select>
  1646. <select id="chk_goodflagengnm_op_2" ref="/root/init/Options/option_2/goodflagengnm" overflow="visible" appearance="full" style="left:110px; top:168px; width:100px; height:20px; border-style:none; ">
  1647. <choices>
  1648. <item>
  1649. <label>품명(영문)</label>
  1650. <value>Y</value>
  1651. </item>
  1652. </choices>
  1653. </select>
  1654. <select id="chk_goodspec_op_2" ref="/root/init/Options/option_2/goodspec" overflow="visible" appearance="full" style="left:225px; top:168px; width:100px; height:20px; border-style:none; ">
  1655. <choices>
  1656. <item>
  1657. <label>물품규격</label>
  1658. <value>Y</value>
  1659. </item>
  1660. </choices>
  1661. </select>
  1662. <select id="chk_instcd_op_2" ref="/root/init/Options/option_2/instcd" overflow="visible" appearance="full" style="left:335px; top:168px; width:100px; height:20px; border-style:none; ">
  1663. <choices>
  1664. <item>
  1665. <label>기관코드</label>
  1666. <value>Y</value>
  1667. </item>
  1668. </choices>
  1669. </select>
  1670. <select id="chk_windd_op_2" ref="/root/init/Options/option_2/windd" overflow="visible" appearance="full" style="left:0px; top:192px; width:100px; height:20px; border-style:none; ">
  1671. <choices>
  1672. <item>
  1673. <label>입고일자</label>
  1674. <value>Y</value>
  1675. </item>
  1676. </choices>
  1677. </select>
  1678. <select id="chk_winno_op_2" ref="/root/init/Options/option_2/winno" overflow="visible" appearance="full" style="left:110px; top:192px; width:100px; height:20px; border-style:none; ">
  1679. <choices>
  1680. <item>
  1681. <label>입고번호</label>
  1682. <value>Y</value>
  1683. </item>
  1684. </choices>
  1685. </select>
  1686. <select id="chk_winseqno_op_2" ref="/root/init/Options/option_2/winseqno" overflow="visible" appearance="full" style="left:225px; top:192px; width:100px; height:20px; border-style:none; ">
  1687. <choices>
  1688. <item>
  1689. <label>입고일련번호</label>
  1690. <value>Y</value>
  1691. </item>
  1692. </choices>
  1693. </select>
  1694. <select id="chk_prodcmpynm_op_2" ref="/root/init/Options/option_2/prodcmpynm" overflow="visible" appearance="full" style="left:335px; top:192px; width:100px; height:20px; border-style:none; ">
  1695. <choices>
  1696. <item>
  1697. <label>제조원</label>
  1698. <value>Y</value>
  1699. </item>
  1700. </choices>
  1701. </select>
  1702. <select id="chk_calcdocukind_op_2" ref="/root/init/Options/option_2/calcdocukind" overflow="visible" appearance="full" style="left:0px; top:216px; width:100px; height:20px; border-style:none; ">
  1703. <choices>
  1704. <item>
  1705. <label>계산서구분</label>
  1706. <value>Y</value>
  1707. </item>
  1708. </choices>
  1709. </select>
  1710. <select id="chk_lrgcd_op_2" ref="/root/init/Options/option_2/lrgcd" overflow="visible" appearance="full" style="left:110px; top:216px; width:100px; height:20px; border-style:none; ">
  1711. <choices>
  1712. <item>
  1713. <label>대분류</label>
  1714. <value>Y</value>
  1715. </item>
  1716. </choices>
  1717. </select>
  1718. <select id="chk_mdlcd_op_2" ref="/root/init/Options/option_2/mdlcd" overflow="visible" appearance="full" style="left:225px; top:216px; width:100px; height:20px; border-style:none; ">
  1719. <choices>
  1720. <item>
  1721. <label>중분류</label>
  1722. <value>Y</value>
  1723. </item>
  1724. </choices>
  1725. </select>
  1726. <select id="chk_smlcd_op_2" ref="/root/init/Options/option_2/smlcd" overflow="visible" appearance="full" style="left:335px; top:216px; width:100px; height:20px; border-style:none; ">
  1727. <choices>
  1728. <item>
  1729. <label>소분류</label>
  1730. <value>Y</value>
  1731. </item>
  1732. </choices>
  1733. </select>
  1734. <select id="chk_goodmodel_op_2" ref="/root/init/Options/option_2/goodmodel" overflow="visible" appearance="full" style="left:0px; top:240px; width:100px; height:20px; border-style:none; ">
  1735. <choices>
  1736. <item>
  1737. <label>모델</label>
  1738. <value>Y</value>
  1739. </item>
  1740. </choices>
  1741. </select>
  1742. <select id="chk_prodcmpy_op_2" ref="/root/init/Options/option_2/prodcmpy" overflow="visible" appearance="full" style="left:110px; top:240px; width:100px; height:20px; border-style:none; ">
  1743. <choices>
  1744. <item>
  1745. <label>제조원</label>
  1746. <value>Y</value>
  1747. </item>
  1748. </choices>
  1749. </select>
  1750. <select id="chk_prodplce_op_2" ref="/root/init/Options/option_2/prodplce" overflow="visible" appearance="full" style="left:225px; top:240px; width:100px; height:20px; border-style:none; ">
  1751. <choices>
  1752. <item>
  1753. <label>제조국</label>
  1754. <value>Y</value>
  1755. </item>
  1756. </choices>
  1757. </select>
  1758. <select id="chk_prodplcenm_op_2" ref="/root/init/Options/option_2/prodplcenm" overflow="visible" appearance="full" style="left:335px; top:240px; width:100px; height:20px; border-style:none; ">
  1759. <choices>
  1760. <item>
  1761. <label>제조국명</label>
  1762. <value>Y</value>
  1763. </item>
  1764. </choices>
  1765. </select>
  1766. <select id="chk_iopsnflagnm_op_2" ref="/root/init/Options/option_2/iopsnflagnm" overflow="visible" appearance="full" style="left:0px; top:264px; width:100px; height:20px; border-style:none; ">
  1767. <choices>
  1768. <item>
  1769. <label>내외자구분</label>
  1770. <value>Y</value>
  1771. </item>
  1772. </choices>
  1773. </select>
  1774. <select id="chk_forgncurncyamt_op_2" ref="/root/init/Options/option_2/forgncurncyamt" overflow="visible" appearance="full" style="left:110px; top:264px; width:100px; height:20px; border-style:none; ">
  1775. <choices>
  1776. <item>
  1777. <label>외화단가</label>
  1778. <value>Y</value>
  1779. </item>
  1780. </choices>
  1781. </select>
  1782. <select id="chk_chgrate_op_2" ref="/root/init/Options/option_2/chgrate" overflow="visible" appearance="full" style="left:225px; top:264px; width:100px; height:20px; border-style:none; ">
  1783. <choices>
  1784. <item>
  1785. <label>환율</label>
  1786. <value>Y</value>
  1787. </item>
  1788. </choices>
  1789. </select>
  1790. <select id="chk_forgnwinamt_op_2" ref="/root/init/Options/option_2/forgnwinamt" overflow="visible" appearance="full" style="left:335px; top:264px; width:100px; height:20px; border-style:none; ">
  1791. <choices>
  1792. <item>
  1793. <label>외화금액</label>
  1794. <value>Y</value>
  1795. </item>
  1796. </choices>
  1797. </select>
  1798. <select id="chk_cntrdeptcd_op_2" ref="/root/init/Options/option_2/cntrdeptcd" overflow="visible" appearance="full" style="left:0px; top:288px; width:100px; height:20px; border-style:none; ">
  1799. <choices>
  1800. <item>
  1801. <label>귀속부서</label>
  1802. <value>Y</value>
  1803. </item>
  1804. </choices>
  1805. </select>
  1806. <select id="chk_cntrdeptnm_op_2" ref="/root/init/Options/option_2/cntrdeptnm" overflow="visible" appearance="full" style="left:110px; top:288px; width:100px; height:20px; border-style:none; ">
  1807. <choices>
  1808. <item>
  1809. <label>귀속부서명</label>
  1810. <value>Y</value>
  1811. </item>
  1812. </choices>
  1813. </select>
  1814. <select id="chk_mngtdeptcd_op_2" ref="/root/init/Options/option_2/mngtdeptcd" overflow="visible" appearance="full" style="left:225px; top:288px; width:100px; height:20px; border-style:none; ">
  1815. <choices>
  1816. <item>
  1817. <label>사용부서</label>
  1818. <value>Y</value>
  1819. </item>
  1820. </choices>
  1821. </select>
  1822. <select id="chk_mngtdeptnm_op_2" ref="/root/init/Options/option_2/mngtdeptnm" overflow="visible" appearance="full" style="left:335px; top:288px; width:100px; height:20px; border-style:none; ">
  1823. <choices>
  1824. <item>
  1825. <label>사용부서명</label>
  1826. <value>Y</value>
  1827. </item>
  1828. </choices>
  1829. </select>
  1830. <select id="chk_installplcecd_op_2" ref="/root/init/Options/option_2/installplcecd" overflow="visible" appearance="full" style="left:0px; top:312px; width:100px; height:20px; border-style:none; ">
  1831. <choices>
  1832. <item>
  1833. <label>설치장소</label>
  1834. <value>Y</value>
  1835. </item>
  1836. </choices>
  1837. </select>
  1838. <select id="chk_installplcenm_op_2" ref="/root/init/Options/option_2/installplcenm" overflow="visible" appearance="full" style="left:110px; top:312px; width:100px; height:20px; border-style:none; ">
  1839. <choices>
  1840. <item>
  1841. <label>설치장소명</label>
  1842. <value>Y</value>
  1843. </item>
  1844. </choices>
  1845. </select>
  1846. <select id="chk_incmpemtno_op_2" ref="/root/init/Options/option_2/incmpemtno" overflow="visible" appearance="full" style="left:225px; top:312px; width:100px; height:20px; border-style:none; ">
  1847. <choices>
  1848. <item>
  1849. <label>허가번호</label>
  1850. <value>Y</value>
  1851. </item>
  1852. </choices>
  1853. </select>
  1854. <select id="chk_mtlmngtno_op_2" ref="/root/init/Options/option_2/mtlmngtno" overflow="visible" appearance="full" style="left:335px; top:312px; width:100px; height:20px; border-style:none; ">
  1855. <choices>
  1856. <item>
  1857. <label>분류번호</label>
  1858. <value>Y</value>
  1859. </item>
  1860. </choices>
  1861. </select>
  1862. <select id="chk_prcsstatnm_op_2" ref="/root/init/Options/option_2/prcsstatnm" overflow="visible" appearance="full" style="left:0px; top:336px; width:100px; height:20px; border-style:none; ">
  1863. <choices>
  1864. <item>
  1865. <label>진행상태</label>
  1866. <value>Y</value>
  1867. </item>
  1868. </choices>
  1869. </select>
  1870. <select id="chk_cmt_op_2" ref="/root/init/Options/option_2/cmt" overflow="visible" appearance="full" style="left:110px; top:336px; width:100px; height:20px; border-style:none; ">
  1871. <choices>
  1872. <item>
  1873. <label>비고</label>
  1874. <value>Y</value>
  1875. </item>
  1876. </choices>
  1877. </select>
  1878. <select id="chk_acqtflagnm_op_2" ref="/root/init/Options/option_2/acqtflagnm" overflow="visible" appearance="full" style="left:225px; top:336px; width:100px; height:20px; border-style:none; ">
  1879. <choices>
  1880. <item>
  1881. <label>도입구분</label>
  1882. <value>Y</value>
  1883. </item>
  1884. </choices>
  1885. </select>
  1886. <select id="chk_paycondnm_op_2" ref="/root/init/Options/option_2/paycondnm" overflow="visible" appearance="full" style="left:335px; top:336px; width:100px; height:20px; border-style:none; ">
  1887. <choices>
  1888. <item>
  1889. <label>지불필구분</label>
  1890. <value>Y</value>
  1891. </item>
  1892. </choices>
  1893. </select>
  1894. <select id="checkbox1" ref="/root/init/Options/option_2/fundorigin" overflow="visible" appearance="full" style="left:0px; top:384px; width:100px; height:20px; border-style:none; ">
  1895. <choices>
  1896. <item>
  1897. <label>자금출처</label>
  1898. <value>Y</value>
  1899. </item>
  1900. </choices>
  1901. </select>
  1902. <select id="chk_flwgrnttermfr_op_2" ref="/root/init/Options/option_2/flwgrnttermfr" overflow="visible" appearance="full" style="left:225px; top:360px; width:100px; height:20px; border-style:none; ">
  1903. <choices>
  1904. <item>
  1905. <label>하자보증FR</label>
  1906. <value>Y</value>
  1907. </item>
  1908. </choices>
  1909. </select>
  1910. <select id="chk_flwgrnttermto_op_2" ref="/root/init/Options/option_2/flwgrnttermto" overflow="visible" appearance="full" style="left:335px; top:360px; width:100px; height:20px; border-style:none; ">
  1911. <choices>
  1912. <item>
  1913. <label>하자보증TO</label>
  1914. <value>Y</value>
  1915. </item>
  1916. </choices>
  1917. </select>
  1918. <select id="chk_tempmngtdeptcd_op_2" ref="/root/init/Options/option_2/tempmngtdeptcd" overflow="visible" appearance="full" style="left:0px; top:360px; width:100px; height:20px; border-style:none; ">
  1919. <choices>
  1920. <item>
  1921. <label>관리부서</label>
  1922. <value>Y</value>
  1923. </item>
  1924. </choices>
  1925. </select>
  1926. <select id="chk_tempmngtdeptnm_op_2" ref="/root/init/Options/option_2/tempmngtdeptnm" overflow="visible" appearance="full" style="left:110px; top:360px; width:100px; height:20px; border-style:none; ">
  1927. <choices>
  1928. <item>
  1929. <label>관리부서명</label>
  1930. <value>Y</value>
  1931. </item>
  1932. </choices>
  1933. </select>
  1934. <select id="chk_bugtflag_op_2" ref="/root/init/Options/option_2/bugtflag" overflow="visible" appearance="full" style="left:110px; top:384px; width:100px; height:20px; border-style:none; ">
  1935. <choices>
  1936. <item>
  1937. <label>예산구분</label>
  1938. <value>Y</value>
  1939. </item>
  1940. </choices>
  1941. </select>
  1942. <select id="chk_stdysubjno_op_2" ref="/root/init/Options/option_2/stdysubjno" overflow="visible" appearance="full" style="left:225px; top:384px; width:100px; height:20px; border-style:none; ">
  1943. <choices>
  1944. <item>
  1945. <label>연구과제번호</label>
  1946. <value>Y</value>
  1947. </item>
  1948. </choices>
  1949. </select>
  1950. <select id="chk_stdysubjnonm_op_2" ref="/root/init/Options/option_2/stdysubjnonm" overflow="visible" appearance="full" style="left:335px; top:384px; width:100px; height:20px; border-style:none; ">
  1951. <choices>
  1952. <item>
  1953. <label>연구과제명</label>
  1954. <value>Y</value>
  1955. </item>
  1956. </choices>
  1957. </select>
  1958. <select id="chk_bugtyy_op_2" ref="/root/init/Options/option_2/bugtyy" overflow="visible" appearance="full" style="left:0px; top:408px; width:100px; height:20px; border-style:none; ">
  1959. <choices>
  1960. <item>
  1961. <label>예산년도</label>
  1962. <value>Y</value>
  1963. </item>
  1964. </choices>
  1965. </select>
  1966. <select id="chk_acntcd_op_2" ref="/root/init/Options/option_2/acntcd" overflow="visible" appearance="full" style="left:110px; top:408px; width:100px; height:20px; border-style:none; ">
  1967. <choices>
  1968. <item>
  1969. <label>계정코드</label>
  1970. <value>Y</value>
  1971. </item>
  1972. </choices>
  1973. </select>
  1974. <select id="chk_acntnm_op_2" ref="/root/init/Options/option_2/acntnm" overflow="visible" appearance="full" style="left:225px; top:408px; width:100px; height:20px; border-style:none; ">
  1975. <choices>
  1976. <item>
  1977. <label>계정명</label>
  1978. <value>Y</value>
  1979. </item>
  1980. </choices>
  1981. </select>
  1982. <select id="chk_projectid_op_2" ref="/root/init/Options/option_2/projectid" overflow="visible" appearance="full" style="left:335px; top:408px; width:100px; height:20px; border-style:none; ">
  1983. <choices>
  1984. <item>
  1985. <label>프로젝트</label>
  1986. <value>Y</value>
  1987. </item>
  1988. </choices>
  1989. </select>
  1990. <select id="chk_projectnm_op_2" ref="/root/init/Options/option_2/projectnm" overflow="visible" appearance="full" style="left:0px; top:432px; width:100px; height:20px; border-style:none; ">
  1991. <choices>
  1992. <item>
  1993. <label>프로젝트명</label>
  1994. <value>Y</value>
  1995. </item>
  1996. </choices>
  1997. </select>
  1998. <select id="chk_bugtnm_op_2" ref="/root/init/Options/option_2/bugtnm" overflow="visible" appearance="full" style="left:110px; top:432px; width:100px; height:20px; border-style:none; ">
  1999. <choices>
  2000. <item>
  2001. <label>예산명</label>
  2002. <value>Y</value>
  2003. </item>
  2004. </choices>
  2005. </select>
  2006. <select id="chk_groupbugt_op_2" ref="/root/init/Options/option_2/groupbugt" overflow="visible" appearance="full" style="left:225px; top:432px; width:100px; height:20px; border-style:none; ">
  2007. <choices>
  2008. <item>
  2009. <label>예산코드그룹</label>
  2010. <value>Y</value>
  2011. </item>
  2012. </choices>
  2013. </select>
  2014. <select id="chk_totamt_op_2" ref="/root/init/Options/option_2/totamt" overflow="visible" appearance="full" style="left:335px; top:432px; width:100px; height:20px; border-style:none; ">
  2015. <choices>
  2016. <item>
  2017. <label>예산총액</label>
  2018. <value>Y</value>
  2019. </item>
  2020. </choices>
  2021. </select>
  2022. <select id="chk_bugtexpcamt_op_2" ref="/root/init/Options/option_2/bugtexpcamt" overflow="visible" appearance="full" style="left:0px; top:456px; width:100px; height:20px; border-style:none; ">
  2023. <choices>
  2024. <item>
  2025. <label>예산추산액</label>
  2026. <value>Y</value>
  2027. </item>
  2028. </choices>
  2029. </select>
  2030. <select id="chk_bugtexecamt_op_2" ref="/root/init/Options/option_2/bugtexecamt" overflow="visible" appearance="full" style="left:110px; top:456px; width:100px; height:20px; border-style:none; ">
  2031. <choices>
  2032. <item>
  2033. <label>예산집행액</label>
  2034. <value>Y</value>
  2035. </item>
  2036. </choices>
  2037. </select>
  2038. <select id="chk_remainder_op_2" ref="/root/init/Options/option_2/remainder" overflow="visible" appearance="full" style="left:225px; top:456px; width:100px; height:20px; border-style:none; ">
  2039. <choices>
  2040. <item>
  2041. <label>예산잔액</label>
  2042. <value>Y</value>
  2043. </item>
  2044. </choices>
  2045. </select>
  2046. </group>
  2047. </xhtml:body>
  2048. </xhtml:html>