123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049 |
- <?xml version="1.0" encoding="UTF-8"?>
- <?xml-stylesheet href="../../../com/commonweb/css/common.css" type="text/css" ?>
- <xhtml:html xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.w3.org/2002/01/xforms" xmlns:ev="http://www.w3.org/2001/xml-events">
- <xhtml:head>
- <xhtml:title>보기 OPTION</xhtml:title>
- <model id="model1">
- <instance id="instance1">
- <root xmlns="">
- <send>
- </send>
- <init>
- <Options>
- <option_0>
- <goodflagnm>Y</goodflagnm>
- <purcflagnm/>
- <suplplcecd/>
- <suplplcenm/>
- <suppcustcd/>
- <suppcustnm>Y</suppcustnm>
- <winputno>Y</winputno>
- <purcreqno/>
- <calcdocukindnm/>
- <calcdocudd>Y</calcdocudd>
- <winunit/>
- <winunitcost>Y</winunitcost>
- <winqty>Y</winqty>
- <winamt>Y</winamt>
- <chkyn>Y</chkyn>
- <chkdd/>
- <chkpsnnm/>
- <slipdd/>
- <slipno/>
- <banknm/>
- <bankcd/>
- <aactno/>
- <goodcd/>
- <goodnm/>
- <goodspec/>
- <goodmodel/>
- <instcd/>
- <goodflag/>
- <prodcmpynm/>
- <iokind/>
- <windeptcd/>
- <calcdocukind/>
- <installplcecd/>
- <profno/>
- <acntcd/>
- <acntnm/>
- <winpsn/>
- <winpsnnm/>
- <delivedeptcd/>
- <reqdeptcd/>
- <chkpsn/>
- <purcflag/>
- <paycond/>
- <paycondnm/>
- <delivedeptnm/>
- <windeptnm/>
- <iokindnm/>
- <calccnfmyn>Y</calccnfmyn>
- <calccnfmpsn/>
- <calccnfmpsnnm/>
- <calccnfmdd/>
- <winprcsflag/>
- <projectid/>
- <projectnm/>
- <bugtnm/>
- <totamt/>
- <bugtexpcamt/>
- <bugtexecamt/>
- <remainder/>
- </option_0>
- <option_2>
- <calccnfmyn>Y</calccnfmyn>
- <calccnfmpsn/>
- <calccnfmpsnnm/>
- <calccnfmdd/>
- <winprcsflag/>
- <chkyn>Y</chkyn>
- <chkdd/>
- <chkpsn/>
- <chkpsnnm/>
- <goodflag/>
- <goodflagnm>Y</goodflagnm>
- <suplplcecd/>
- <suplplcenm>Y</suplplcenm>
- <suppcustcd/>
- <suppcustnm/>
- <winputno>Y</winputno>
- <purcreqno/>
- <calcdocukindnm/>
- <calcdocudd>Y</calcdocudd>
- <curncyunit/>
- <wncurncyamt>Y</wncurncyamt>
- <plcewinqty>Y</plcewinqty>
- <plcewinamt>Y</plcewinamt>
- <slipdd/>
- <slipno/>
- <banknm/>
- <bankcd/>
- <aactno/>
- <goodnm/>
- <goodflagengnm/>
- <goodspec/>
- <instcd/>
- <windd/>
- <winno/>
- <winseqno/>
- <prodcmpynm/>
- <calcdocukind/>
- <lrgcd/>
- <mdlcd/>
- <smlcd/>
- <goodmodel/>
- <prodcmpy/>
- <prodplce/>
- <prodplcenm/>
- <iopsnflag/>
- <iopsnflagnm/>
- <forgncurncyamt/>
- <chgrate/>
- <forgnwinamt/>
- <cntrdeptcd/>
- <cntrdeptnm/>
- <mngtdeptcd/>
- <mngtdeptnm/>
- <installplcecd/>
- <installplcenm/>
- <incmpemtno/>
- <mtlmngtno/>
- <eqmtearnvaluyn/>
- <prcsstat/>
- <prcsstatnm/>
- <plceorddd/>
- <plceordseqno/>
- <cmt/>
- <acqtflag/>
- <acqtflagnm/>
- <paycond/>
- <paycondnm/>
- <fundorigin/>
- <fundorigin/>
- <flwgrnttermfr/>
- <flwgrnttermto/>
- <tempmngtdeptcd/>
- <tempmngtdeptnm/>
- <bugtflag/>
- <stdysubjno/>
- <stdysubjnonm/>
- <bugtyy/>
- <acntcd/>
- <acntnm/>
- <projectid/>
- <projectnm/>
- <bugtnm/>
- <groupbugt/>
- <totamt/>
- <bugtexpcamt/>
- <bugtexecamt/>
- <remainder/>
- </option_2>
- <option_3>
- <calccnfmyn>Y</calccnfmyn>
- <calccnfmpsn/>
- <calccnfmpsnnm/>
- <calccnfmdd/>
- <winprcsflag/>
- <chkyn>Y</chkyn>
- <chkdd/>
- <chkpsn/>
- <chkpsnnm/>
- <instcd/>
- <fixtrseqmtflag/>
- <goodflagnm>Y</goodflagnm>
- <custcd/>
- <custcdnm>Y</custcdnm>
- <fixasetcd/>
- <fixasetnm/>
- <goodmodell/>
- <rpirspec>Y</rpirspec>
- <mngtdeptcd/>
- <mngtdeptnm/>
- <calcdocudd>Y</calcdocudd>
- <rpiramt>Y</rpiramt>
- <purcaprvyn/>
- <purcaprvdd/>
- <purcaprvpsnid/>
- <purcaprvpsnidnm/>
- <reqdd/>
- <reqno/>
- <reqddno/>
- <acptflag/>
- <acptflagnm/>
- <itemnm/>
- <reqdeptcd/>
- <reqdeptcdnm/>
- <reqpsnid/>
- <reqpsnidnm/>
- <genrdd/>
- <genrtm/>
- <chrgtel/>
- <hdrncspec/>
- <acptdd/>
- <acpttm/>
- <acptpsnid/>
- <acptpsnidnm/>
- <acptdeptcd/>
- <acptdeptcdnm/>
- <chrgpsnid/>
- <chrgpsnidnm/>
- <workstat/>
- <workstatnm/>
- <rpirflag1/>
- <rpirflag1nm/>
- <rpirflag2/>
- <rpirflag2nm/>
- <useyn/>
- <useynnm/>
- <lastrpirstat/>
- <acptpsncnfm/>
- <deptacptdd/>
- <deptacptpsnid/>
- <deptacptpsnidnm/>
- <estimateamt/>
- <reductionamt/>
- <bankcd/>
- <aactno/>
- <banknm/>
- <cmt/>
- <rpirenddd/>
- <sancttrsmyn/>
- <sanctyn/>
- <sanctid/>
- <sanctidnm/>
- <chrgpsncmt/>
- <sanctdd/>
- <nonworkdayno/>
- <lastrpirrslt/>
- <emaildeliveyn/>
- <purctrsmyn/>
- <slipdd/>
- <slipno/>
- <bugtcd/>
- <acntnm/>
- <stdysubjno/>
- <stdysubjnonm/>
- <bugtyy/>
- <reqtel/>
- <deptaprvyn/>
- <deptaprvdd/>
- <deptaprvpsnid/>
- <deptaprvpsnidnm/>
- <projectid/>
- <projectnm/>
- <bugtnm/>
- <groupbugt/>
- <totamt/>
- <bugtexpcamt/>
- <bugtexecamt/>
- <remainder/>
- <accountcmt/>
- <purcagreyn/>
- <purcagredd/>
- <purcagresnid/>
- <purcagresnidnm/>
- <calcdocukind/>
- <calcdocukindnm/>
- <deptaprvreqyn/>
- </option_3>
- </Options>
- </init>
- </root>
- </instance>
- </model>
- </xhtml:head>
- <xhtml:body>
- <group id="grp_rfehemhtlist_op" visibility="hidden" style="left:6px; top:31px; width:440px; height:483px; padding:2; ">
- <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; ">
- <choices>
- <item>
- <label>정산확정</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>정산확정자</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>정산확정자명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>정산확정년월</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>정산상태</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>검수유무</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>검수일자</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>검수자ID</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>검수자명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>물품구분명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>거래처코드</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>거래처명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>자산코드</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>자산명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>모델</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>수리내역</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>사용부서</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>사용부서명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>계산서일</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>수리금액</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>구매승인여부</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>구매승인일</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>구매승인자</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>의뢰번호</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>접수구분</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>의뢰부서명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>의뢰자명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>발생일자</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>발생시간</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>담당자전화</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>고장내역</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>접수일자</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>접수시간</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>접수자</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>접수부서</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>접수부서</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>담당자</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>작업상태</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>고장유형명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>수리형태</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>수리구분명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>최종수리상태</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>인수자확인</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>부서인수일자</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>부서인수담당</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>견적금액</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>절감액</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>은행코드</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>은행계좌</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>은행명칭</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>비고</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>수리완료일</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>결재전송여부</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>결재여부</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>결재자명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>결재비고</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>결재일자</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>미가동일수</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>최종수리결과</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>구매전송여부</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>전표일자</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>전표번호</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>연구과제명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>예산년도</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>수리담당연락처</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>부서승인여부</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>부서승인일자</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>부서승인자명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>프로젝트명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>예산명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>예산총액</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>예산추산액</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>예산집행액</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>예산잔액</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>계산서비고</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>구매수리승인일</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>구매수리승인자</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>계산서유형</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>구매수리승인여부</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>예산명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- </group>
- <group id="grp_rsihinptlist_op" style="left:6px; top:31px; width:440px; height:483px; padding:2; ">
- <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; ">
- <choices>
- <item>
- <label>물품모델</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>계산서유형명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>보조거래처명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>예산총액</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>입고금액</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>주거래처</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>기관코드</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>정산상태</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>계산서유형</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>은행코드</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>전표번호</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>입고수량</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>주거래처명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>물품규격</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>전표일자</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>예산추산액</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>설치장소코드</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>은행명칭</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>검수일자</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>물품구분명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>예산집행액</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>지불필구분명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>구매구분</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>계산서일자</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>정산확정</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>검수자id</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>입출유형</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>은행계좌</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>프로젝트명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>물품구분</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>입고번호</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>예산잔액</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>구매요구부서</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>입고단가</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>계정코드</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>발주번호</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>예산명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>정산확정자</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>입출유형명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>제조회사</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>물품코드</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>검수자명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>프로젝트</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>계정명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>구매구분명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>정산일자</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>출고부서</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>증빙번호</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>입고부서코드</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>물품명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>지불필구분</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>입고자명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>입고자id</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>입고부서명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>불출부서명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>입고단위</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>보조거래처</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>정산확정자명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>검수유무</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- </group>
- <caption id="caption1" class="tit_2" style="left:10px; top:5px; width:157px; height:13px; ">보기 Option</caption>
- <button id="button7" class="btn4_letter2" style="left:382px; top:1px; width:56px; height:22px; ">
- <caption>취소</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- grp_view.visible = false;
- grp_main.disabled = false; // addGroup 컨트롤이 나타나면 listGroup 컨트롤을 disabled 시킴
-
- ]]>
- </script>
- </button>
- <button id="button9" class="btn4_letter2" style="left:317px; top:1px; width:56px; height:22px; ">
- <caption>선택</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fViewOptionToggle();
- ]]>
- </script>
- </button>
- <line id="line1" class="line_1" style="x1:5px; y1:23px; x2:440px; y2:23px; "/>
- <group id="grp_rfchinpflist_op" visibility="hidden" style="left:6px; top:31px; width:440px; height:483px; padding:2; ">
- <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; ">
- <choices>
- <item>
- <label>정산확정여부</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>정산확정자</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>정산확정자명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>정산확정년월</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>정산상태</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>검수유무</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>검수일자</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>검수자ID</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>검수자명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>물품구분</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>물품구분명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>공급처코드</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>주거래처</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>보조거래처</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>보조거래처</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>입고번호</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>발주번호</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>계산서유형</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>계산서일자</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>화폐단위</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>원화금액</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>발주수량</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>발주금액</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>전표일자</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>전표번호</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>은행명칭</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>은행코드</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>은행계좌</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>물품명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>품명(영문)</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>물품규격</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>기관코드</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>입고일자</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>입고번호</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>입고일련번호</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>제조원</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>계산서구분</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>대분류</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>중분류</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>소분류</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>모델</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>제조원</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>제조국</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>제조국명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>내외자구분</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>외화단가</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>환율</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>외화금액</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>귀속부서</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>귀속부서명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>사용부서</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>사용부서명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>설치장소</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>설치장소명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>허가번호</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>분류번호</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>진행상태</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>비고</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>도입구분</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>지불필구분</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>자금출처</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>하자보증FR</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>하자보증TO</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>관리부서</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>관리부서명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>예산구분</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>연구과제번호</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>연구과제명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>예산년도</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>계정코드</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>계정명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>프로젝트</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>프로젝트명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>예산명</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>예산코드그룹</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>예산총액</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>예산추산액</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>예산집행액</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <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; ">
- <choices>
- <item>
- <label>예산잔액</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- </group>
- </xhtml:body>
- </xhtml:html>
|