SMRPB01900_인사마스터조회.xrw 176 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333
  1. <?xml version="1.0" encoding="EUC-KR"?>
  2. <?xml-stylesheet type="text/css" href="../../../com/commonweb/css/common.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>인사마스터조회</xhtml:title>
  6. <model id="model1">
  7. <instance id="instance1">
  8. <root xmlns="">
  9. <main>
  10. <empl>
  11. <empllist/>
  12. </empl>
  13. <famy>
  14. <famylist/>
  15. </famy>
  16. <scho>
  17. <scholist/>
  18. </scho>
  19. <empldata>
  20. <empllist/>
  21. </empldata>
  22. <grnt>
  23. <grntlist1/>
  24. <grntlist2/>
  25. </grnt>
  26. <licn>
  27. <licnlist/>
  28. </licn>
  29. <afcr>
  30. <afcrlist/>
  31. </afcr>
  32. <becr>
  33. <becrlist/>
  34. </becr>
  35. <priz>
  36. <prizlist/>
  37. <rpmdlist/>
  38. </priz>
  39. <army>
  40. <armylist/>
  41. </army>
  42. <armydata>
  43. <armylist/>
  44. </armydata>
  45. <forgn>
  46. <forgnlist/>
  47. </forgn>
  48. <emplnogvnoffcord>
  49. <emplnogvnoffcordlist/>
  50. </emplnogvnoffcord>
  51. <famyhist>
  52. <famyhistlist/>
  53. </famyhist>
  54. <psnref>
  55. <psnreflist/>
  56. </psnref>
  57. <hdfamyynhist>
  58. <hdfamyynhistlist/>
  59. </hdfamyynhist>
  60. <edudeptinfo>
  61. <edudeptinfolist/>
  62. </edudeptinfo>
  63. <profcarinfo>
  64. <profcarinfolist/>
  65. </profcarinfo>
  66. <imgdata>
  67. <photimg/>
  68. </imgdata>
  69. <imgviewlist>
  70. <emplno/>
  71. <photimg/>
  72. </imgviewlist>
  73. <emplnogradup>
  74. <emplnograduplist/>
  75. </emplnogradup>
  76. <emplnojobrespgvno>
  77. <emplnojobrespgvnolist/>
  78. </emplnojobrespgvno>
  79. <concroffcord>
  80. <concroffcordlist/>
  81. </concroffcord>
  82. <emplnogvnmove>
  83. <emplnogvnmovelist/>
  84. </emplnogvnmove>
  85. <educ>
  86. <educlist/>
  87. </educ>
  88. </main>
  89. <send>
  90. <emplref>
  91. <emplno/>
  92. <dutplceinst/>
  93. </emplref>
  94. <save>
  95. <empllist/>
  96. <grntlist1/>
  97. <grntlist2/>
  98. <famylist/>
  99. <scholist/>
  100. <licnlist/>
  101. <afcrlist/>
  102. <becrlist/>
  103. <prizlist/>
  104. <rpmdlist/>
  105. <armylist/>
  106. <forgnlist/>
  107. <psnreflist/>
  108. <famyhistlist/>
  109. <hdfamyynhistlist/>
  110. <edudeptinfolist/>
  111. <profcarinfolist/>
  112. <imgviewlist/>
  113. </save>
  114. </send>
  115. <init>
  116. <systemflag/>
  117. <domiaddrtemp/>
  118. <resdnrgstareaaddrtemp/>
  119. <residncaddrtemp/>
  120. <addrtemp/>
  121. <dutplceinst/>
  122. </init>
  123. </root>
  124. </instance>
  125. <submission id="TRRPB00101" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/empl"/>
  126. <script type="javascript" ev:event="xforms-ready">
  127. <![CDATA[
  128. model.toggle("case1");
  129. /* Grid 초기화 */
  130. model.removeNodeset(grd_empllist.nodeset);
  131. model.removeNodeset(grd_grntpsn1.nodeset);
  132. model.removeNodeset(grd_grntpsn2.nodeset);
  133. model.removeNodeset(grd_famylist.nodeset);
  134. model.removeNodeset(grd_scholist.nodeset);
  135. model.removeNodeset(grd_licnlist.nodeset);
  136. model.removeNodeset(grd_afcrlist.nodeset);
  137. model.removeNodeset(grd_becrlist.nodeset);
  138. model.removeNodeset(grd_prizlist.nodeset);
  139. model.removeNodeset(grd_rpmdlist.nodeset);
  140. model.removeNodeset(grd_armylist.nodeset);
  141. model.removeNodeset(grd_forgnlist.nodeset);
  142. model.removeNodeset(grd_gvnoffcordlist.nodeset);
  143. model.removeNodeset(grd_famyhistlist.nodeset);
  144. model.removeNodeset(grd_psnreflist.nodeset);
  145. model.removeNodeset(grd_hdfamyhistlist.nodeset);
  146. model.removeNodeset(grd_edudeptinfolist.nodeset);
  147. model.removeNodeset(grd_profcarinfolist.nodeset);
  148. model.removeNodeset(grd_emplnograduplist.nodeset);
  149. model.removeNodeset(grd_emplnojobrespgvnolist.nodeset);
  150. model.removeNodeset(grd_ConcrOffc.nodeset);
  151. model.removeNodeset(grd_imgviewlist.nodeset);
  152. model.removeNodeset(grd_emplnogvnmovelist.nodeset);
  153. model.removeNodeset(grd_educlist.nodeset);
  154. /* Grid의 Mater, Detail관계 설정
  155. misfMsterDetailSet(관계설정할 Grid, Mater가 될 Grid, submit ID, 저장여부) */
  156. misfMsterDetailSet(grd_empllist, null, "TRRPB00101" ,"Y");
  157. misfMsterDetailSet(grd_grntpsn1, grd_empllist, "TRRPB00102" ,"Y");
  158. misfMsterDetailSet(grd_grntpsn2, grd_empllist, "TRRPB00102" ,"Y");
  159. misfMsterDetailSet(grd_famylist, grd_empllist, "TRRPB00103" ,"Y");
  160. misfMsterDetailSet(grd_scholist, grd_empllist, "TRRPB00104" ,"Y");
  161. misfMsterDetailSet(grd_licnlist, grd_empllist, "TRRPB00105" ,"Y");
  162. misfMsterDetailSet(grd_afcrlist, grd_empllist, "TRRPB00106" ,"Y");
  163. misfMsterDetailSet(grd_becrlist, grd_empllist, "TRRPB00107" ,"Y");
  164. misfMsterDetailSet(grd_prizlist, grd_empllist, "TRRPB00108" ,"Y");
  165. misfMsterDetailSet(grd_rpmdlist, grd_empllist, "TRRPB00108" ,"Y");
  166. misfMsterDetailSet(grd_armylist, grd_empllist, "TRRPB00110" ,"Y");
  167. misfMsterDetailSet(grd_forgnlist, grd_empllist, "TRRPB00111" ,"Y");
  168. misfMsterDetailSet(grd_gvnoffcordlist, grd_empllist, "TRRPB00112" ,"N");
  169. misfMsterDetailSet(grd_famyhistlist, grd_empllist, "TRRPB00113" ,"Y");
  170. misfMsterDetailSet(grd_psnreflist, grd_empllist, "TRRPB00114" ,"Y");
  171. misfMsterDetailSet(grd_hdfamyhistlist, grd_empllist, "TRRPB00115" ,"Y");
  172. misfMsterDetailSet(grd_edudeptinfolist, grd_empllist, "TRRPB00116" ,"Y");
  173. misfMsterDetailSet(grd_profcarinfolist, grd_empllist, "TRRPB00117" ,"Y");
  174. misfMsterDetailSet(grd_imgviewlist, grd_empllist, "TRRPB00118" ,"Y");
  175. misfMsterDetailSet(grd_emplnograduplist, grd_empllist, "TRRPB00119" ,"N");
  176. misfMsterDetailSet(grd_emplnojobrespgvnolist, grd_empllist, "TRRPB00120" ,"N");
  177. misfMsterDetailSet(grd_ConcrOffc, grd_empllist, "TRRPB00121" ,"N");
  178. misfMsterDetailSet(grd_emplnogvnmovelist, grd_empllist, "TRRPB00122" ,"N");
  179. misfMsterDetailSet(grd_educlist, grd_empllist, "TRRPB00124" ,"N");
  180. /* Combo Data Setting
  181. misfComboComCdListMulti(공통코드군, Combo) */
  182. misfComboComCdListMulti("Z0007,R0058,R0131,R0066,R0098,R0187,R0071,R0077,R0137,P0013,R0072,R0074,R0086,R0135,R0076,R0087,R0073,R0078,R0079,R0080,R0081,R0085,R0157,R0134,R0148,R0143,R0146,R0170,R0171,R0097,R0401",
  183. "cmb_instcd,cmb_prfshipflag,cmb_emailaddr2,cmb_holyordflag,cmb_payclscd,cmb_pensreglattdnc,cmb_hometype,cmb_headfamrela,cmb_relign,cmb_btype,cmb_bhflag,cmb_lbrunionjobresp,grd_forgnlist.forgnlangcd,grd_famylist.scholcd,grd_famylist.jobcd,grd_scholist.acdmydg,cmb_handcapgrde,cmb_clssvcstatcd,cmb_dembztflag,cmb_armyclscd,cmb_brnhmiltsrvccd,cmb_classcd,cmb_bhpice,cmb_brtharea,cmb_entcopath,grd_forgnlist.colggrde,cmb_preststatcd,grd_edudeptinfolist.appntflag,grd_edudeptinfolist.edudeptjobgradcd,cmb_payclsprfshipflag,cmb_educd");
  184. /* Combo Data Setting
  185. misfComboComCdList(공통코드군, Combo) */
  186. //misfComboComCdList('Z0007', cmb_instcd); //기관코드
  187. /* Combo Data Setting
  188. misfComboCopyItemSet(Copy할Combo혹은Grid, Copy할Grid의 Column ref, Copy될Combo혹은Grid, Copy될 Grid의 Column ref) */
  189. misfComboCopyItemSet(cmb_instcd, "", cmb_dutplceinst, ""); //기관코드
  190. // misfComboComCdList('Z0004', cmb_prfshipflag); //교직구분
  191. // misfComboComCdList('A0120', cmb_emailaddr); //Email
  192. misfComboCopyItemSet(cmb_headfamrela, "", cmb_hshdrela, ""); //세대주와의 관계
  193. //misfComboCopyItemSet(cmb_headfamrela, "", grd_grntpsn2, "grntpsnrela"); //보증인과의 관계
  194. //misfComboCopyItemSet(cmb_headfamrela, "", grd_grntpsn1, "grntpsnrela"); //보증인과의 관계
  195. misfComboCopyItemSet(cmb_headfamrela, "", cmb_srvvfamyrela, ""); //유족과의 관계
  196. misfComboCopyItemSet(cmb_headfamrela, "", grd_famylist, "famyrel"); //가족과의 관계
  197. misfComboCopyItemSet(grd_famylist, "scholcd",grd_scholist, "scholflag" ); //학력
  198. misfComboCopyItemSet(cmb_headfamrela, "",grd_famyhistlist, "famyrel" ); //관계
  199. misfComboCopyItemSet(grd_famylist, "scholcd",grd_famyhistlist, "scholcd" ); //학력
  200. misfComboCopyItemSet(grd_famylist, "jobcd",grd_famyhistlist, "jobcd" ); //직업
  201. misfComboCopyItemSet(cmb_instcd, "", grd_psnreflist, "refinst"); //기관코드
  202. misfComboCopyItemSet(cmb_instcd, "", cmb_orginstcd, ""); //기관코드
  203. misfComboCopyItemSet(cmb_instcd, "", cmb_detlinst, ""); //기관코드
  204. // misfComboComCdList('Z0005', cmb_payclscd); //호봉 --공통코드가 정해지지않음.
  205. // misfComboComCdList('R0066', cmb_holyordflag);
  206. // misfCursorMoveSet();
  207. // misfComboComCdList('R0059', cmb_grupjoblncd); //직군
  208. // misfComboComCdList('R0060', cmb_joblncd); //직열
  209. // misfComboComCdList('Z0001', cmb_jobkindcd); //직종
  210. // misfComboComCdList('Z0002', cmb_jobposcd); //직위
  211. // misfComboComCdList('Z0003', cmb_jobrespcd); //직책
  212. // misfComboComCdList('Z0004', cmb_ojobgradcd); //구직급 --공통코드가 정해지지않음.
  213. // misfComboCopyItemSet(cmb_ojobgradcd, "", cmb_njobgradcd, ""); //신직급
  214. var deptcd=getUserInfo("posdeptcd");
  215. if (deptcd == "4020500000") {
  216. btn_famyHist.visible = true;
  217. btn_maryhist.visible = true;
  218. }
  219. var dutplceinstcd = getUserInfo("dutplceinstcd");
  220. // if (dutplceinstcd == "103" ) {
  221. // caption4.text = "부(실)";
  222. // caption28.text = "과(팀)";
  223. // caption32.text = "부서";
  224. // }
  225. // else {
  226. // caption4.text = "부서";
  227. // caption28.text = "팀";
  228. // caption32.text = "유닛";
  229. // }
  230. fChangeImage("../../../com/commonweb/images/no_image.gif");//초기 이미지설정
  231. ipt_systemflag.value = "A";
  232. model.refresh();
  233. model.setFocus("ipt_emplno");
  234. ]]>
  235. </script>
  236. <submission id="TXRPB00101" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/save" resultref="/root/hiddeen/temp"/>
  237. <submission id="TRRPB00102" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/grnt"/>
  238. <submission id="TRRPB00103" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/famy"/>
  239. <submission id="TRRPB00104" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/scho"/>
  240. <submission id="TRRPB00105" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/licn"/>
  241. <submission id="TRRPB00106" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/afcr"/>
  242. <submission id="TRRPB00107" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/becr"/>
  243. <submission id="TRRPB00108" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/priz"/>
  244. <submission id="TRRPB00109" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/rpmd"/>
  245. <submission id="TRRPB00110" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/army"/>
  246. <submission id="TRRPB00111" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/forgn"/>
  247. <submission id="TRRPB00112" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/emplnogvnoffcord"/>
  248. <submission id="TRRPB00113" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/famyhist"/>
  249. <submission id="TRRPB00114" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/psnref"/>
  250. <submission id="TRRPB00115" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/hdfamyynhist"/>
  251. <submission id="TRRPB00116" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/edudeptinfo"/>
  252. <submission id="TRRPB00117" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/profcarinfo"/>
  253. <submission id="TRRPB00118" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/imgviewlist"/>
  254. <submission id="TRRPB00119" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/emplnogradup"/>
  255. <submission id="TRRPB00120" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/emplnojobrespgvno"/>
  256. <submission id="TRRPB00121" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/concroffcord"/>
  257. <submission id="TRRPB00122" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/emplnogvnmove"/>
  258. <submission id="TRRPB00124" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/educ"/>
  259. </model>
  260. <script type="javascript">
  261. <![CDATA[
  262. function fChangeImage(imgsrc) {
  263. img_hidden.src = imgsrc; // 파일에서 읽은 이미지의 base64 encoding 값을 가져오기 위한 이미지 컨트롤
  264. var data = img_hidden.getbase64data(); // base64 encoding 문자열을 가져온다.
  265. var imgSize = getImageSize(imgsrc);
  266. var imgWidthSize = imgSize.split("^")[0];
  267. var imgHeightSize = imgSize.split("^")[1];
  268. model.setValue("/root/main/imgdata/photimg",data,true); // 이미지를 보여주기 위하여 view용 이미지컨트롤의 ref instance에 값을 저장
  269. setImageRefInstance("/root/main/imgdata/photimg"); //base64 encoding 문자열을 이미지로 변환하여 보여준다,
  270. img_view.attribute("width")= "140";
  271. img_view.attribute("height")= "170";
  272. var cur_rows = grd_imgviewlist.rows;
  273. var emplno=model.getValue("/root/main/empldata/empllist[1]/emplno");
  274. var imgemplno=model.getValue("/root/main/imgviewlist[1]/emplno");
  275. if(img_hidden.src != "../../../com/commonweb/images/no_image.gif" && imgemplno ==""){//이미지추가시 그리드 추가
  276. grd_imgviewlist.addrow(); // 입력할 행 추가.
  277. cur_row = grd_imgviewlist.row; // 추가된 행 번호 가져오기
  278. // 그리드에 추가
  279. model.setValue("/root/main/imgviewlist["+cur_row+"]/emplno",emplno);
  280. model.setValue("/root/main/imgviewlist["+cur_row+"]/photimg",data,true);
  281. }else if(img_hidden.src != "../../../com/commonweb/images/no_image.gif" && imgemplno !=""){//업데이트시 그리드셋팅
  282. grd_imgviewlist.addStatus(1,"update");
  283. model.setValue("/root/main/imgviewlist[1]/emplno",emplno);
  284. model.setValue("/root/main/imgviewlist[1]/photimg",data,true);
  285. }
  286. model.refresh();
  287. }
  288. function fRetrImage() {//조회시 그리드에 base64 encoding data셋팅하고 사진이미지 보여준다.
  289. if (grd_imgviewlist.Rows <= grd_imgviewlist.fixedRows) {
  290. fChangeImage("../../../com/commonweb/images/no_image.gif");//초기 이미지설정
  291. }
  292. else {
  293. for( var i = grd_imgviewlist.fixedRows ; i < grd_imgviewlist.Rows ; i++ ) {
  294. var imgdata = model.getValue("/root/main/imgviewlist["+i+"]/photimg"); // base64 encoding 문자열을 가져온다.
  295. model.setValue("/root/main/imgdata/photimg", imgdata,true);
  296. setImageRefInstance("/root/main/imgdata/photimg");
  297. }
  298. grd_imgviewlist.rebuild();
  299. }
  300. model.refresh();
  301. }
  302. function fbtndisabled( bool ) {
  303. btn_save.disabled = bool;
  304. btn_grdaddgrntpsn1.disabled = bool;
  305. btn_grddelgrntpsn1.disabled = bool;
  306. btn_grdaddgrntpsn2.disabled = bool;
  307. btn_grddelgrntpsn2.disabled = bool;
  308. btn_grdaddforgnlist.disabled = bool;
  309. btn_grddelforgnlist.disabled = bool;
  310. btn_grdaddfamylist.disabled = bool;
  311. btn_grddelfamylist.disabled = bool;
  312. btn_famyHist.disabled = bool;
  313. btn_maryhist.disabled = bool;
  314. btn_grdaddhdfamyhistlist.disabled = bool;
  315. btn_grddelhdfamyhistlist.disabled = bool;
  316. btn_grdaddscholist.disabled = bool;
  317. btn_grddelscholist.disabled = bool;
  318. btn_grdaddlicnlist.disabled = bool;
  319. btn_grddellicnlist.disabled = bool;
  320. btn_grdaddafcrlist.disabled = bool;
  321. btn_grddelafcrlist.disabled = bool;
  322. btn_grdaddbecrlist.disabled = bool;
  323. btn_grddelbecrlist.disabled = bool;
  324. btn_grdaddprizlist.disabled = bool;
  325. btn_grddelprizlist.disabled = bool;
  326. btn_grdaddrpmdlist.disabled = bool;
  327. btn_grddelrpmdlist.disabled = bool;
  328. btn_grdaddpsnreflist.disabled = bool;
  329. btn_grddelpsnreflist.disabled = bool;
  330. btn_grdaddedudeptinfolist.disabled = bool;
  331. btn_grddeledudeptinfolist.disabled = bool;
  332. btn_grdaddprofcarinfolist.disabled = bool;
  333. btn_grddelprofcarinfolist.disabled = bool;
  334. }
  335. ]]>
  336. </script>
  337. <script type="javascript" src="../../../com/commonweb/js/common.js"/>
  338. <script type="javascript" src="../../../com/commonweb/js/tfHelper.js"/>
  339. <script type="javascript" src="../../../mis/miscommonweb/js/MIS.js"/>
  340. <script type="javascript" src="../../../mis/humtrafactmngtweb/js/RPB001.js"/>
  341. </xhtml:head>
  342. <xhtml:body overflow="hidden" style="margin-left:8; margin-right:8; ">
  343. <group id="group1" style="left:0px; top:0px; width:1195px; height:13px; ">
  344. <caption id="caption6" class="tit_1" style="left:0px; top:0px; width:800px; height:14px; ">인사마스터</caption>
  345. </group>
  346. <group id="group2" overflow="hidden" scroll="auto" style="left:0px; top:38px; width:1195px; height:744; ">
  347. <input id="ipt_probatndd" ref="/root/main/empldata/empllist/probatndd" disabled="true" navindex="35" inputtype="date" style="left:1071px; top:137px; width:121px; height:19px; "/>
  348. <select1 id="cmb_pensreglattdnc" ref="/root/main/empldata/empllist/pensreglattdnc" class="combo_essential" disabled="true" navindex="32" visibility="hidden" appearance="minimal" style="left:1071px; top:89px; width:121px; height:19px; ">
  349. <choices>
  350. <itemset>
  351. <label/>
  352. <value/>
  353. </itemset>
  354. </choices>
  355. </select1>
  356. <caption id="caption91" class="cell_1" visibility="hidden" style="left:989px; top:111px; width:80px; height:23px; vertical-align:middle; ">연금년수</caption>
  357. <caption id="caption320" class="cell_1" visibility="hidden" style="left:989px; top:87px; width:80px; height:23px; vertical-align:middle; ">연금직급</caption>
  358. <input id="ipt_regldutyyno" ref="/root/main/empldata/empllist/regldutyyno" class="input_default" disabled="true" navindex="33" visibility="hidden" style="left:1071px; top:113px; width:121px; height:19px; text-align:center; vertical-align:middle; "/>
  359. <line id="line196" class="line_3" style="x1:0px; y1:205px; x2:160px; y2:205px; "/>
  360. <line id="line16" class="line_2" style="x1:165px; y1:157px; x2:1195px; y2:157px; "/>
  361. <line id="line26" class="line_2" style="x1:165px; y1:37px; x2:1195px; y2:37px; "/>
  362. <line id="line195" class="line_3" style="x1:165px; y1:205px; x2:1195px; y2:205px; "/>
  363. <line id="line14" class="line_2" style="x1:165px; y1:181px; x2:1195px; y2:181px; "/>
  364. <line id="line25" class="line_2" style="x1:165px; y1:61px; x2:1195px; y2:61px; "/>
  365. <line id="line24" class="line_2" style="x1:165px; y1:85px; x2:1195px; y2:85px; "/>
  366. <line id="line23" class="line_2" style="x1:165px; y1:109px; x2:1195px; y2:109px; "/>
  367. <line id="line22" class="line_2" style="x1:165px; y1:133px; x2:1195px; y2:133px; "/>
  368. <caption id="caption172" class="cell_1" style="left:0px; top:15px; width:160px; height:191px; vertical-align:middle; "/>
  369. <caption id="caption322" class="cell_1" style="left:989px; top:135px; width:80px; height:23px; vertical-align:middle; ">수습일자</caption>
  370. <input id="ipt_dutyy" ref="/root/main/empldata/empllist/dutyy" class="input_default" disabled="true" style="left:1071px; top:161px; width:24px; height:19px; "/>
  371. <caption id="caption311" class="cell_1" style="left:483px; top:183px; width:90px; height:23px; vertical-align:middle; ">가장여부</caption>
  372. <caption id="caption333" class="cell_1" style="left:483px; top:87px; width:90px; height:23px; ">휴대폰</caption>
  373. <caption id="caption323" class="cell_1" style="left:713px; top:111px; width:80px; height:23px; vertical-align:middle; ">구직급/호봉</caption>
  374. <input id="ipt_age" ref="/root/main/empldata/empllist/age" class="input_default" disabled="true" style="left:1161px; top:161px; width:31px; height:19px; "/>
  375. <button id="btn_emplsearch" class="icon_search" style="left:407px; top:18px; width:16px; height:16px; ">
  376. <caption/>
  377. <script type="javascript" ev:event="DOMActivate">
  378. <![CDATA[
  379. /* 사원번호 Help 화면 Open
  380. misfOpenPopUpList(화면종류Code, OPEN하는 Control, 공통코드, 리턴받을 Instance명) */
  381. var recv_list = "emplno";
  382. rpbfOpenPopUpList("SPRPB00101", ipt_emplno, recv_list,"ipt_systemflag","N");
  383. //misfOpenPopUpList("01", ipt_emplno,"", recv_list) ;
  384. misfGetUserAuth();
  385. model.refresh();
  386. if (ipt_emplno.label != "" && ipt_emplno.label.length > 0) {
  387. if( PSN_INST_YN != "Y" && getUserInfo("dutplceinstcd") == model.getValue("/root/init/dutplceinst") ) {
  388. ipt_emplno.dispatch("xforms-value-changed");
  389. }
  390. else if ( PSN_INST_YN == "Y") {
  391. ipt_emplno.dispatch("xforms-value-changed");
  392. }
  393. else {
  394. messageBox("근무기관의 사원만 조회할수 있습니다.","I999");
  395. }
  396. }
  397. ]]>
  398. </script>
  399. </button>
  400. <caption id="caption324" class="cell_1" style="left:989px; top:15px; width:80px; height:23px; vertical-align:middle; ">승급월</caption>
  401. <caption id="caption325" class="cell_1" style="left:989px; top:39px; width:80px; height:23px; vertical-align:middle; ">입사일자</caption>
  402. <caption id="caption314" class="cell_1" style="left:483px; top:135px; width:90px; height:23px; vertical-align:middle; ">성별</caption>
  403. <caption id="caption315" class="cell_1" style="left:713px; top:159px; width:80px; height:23px; vertical-align:middle; ">직군</caption>
  404. <line id="line192" class="line_1" style="x1:0px; y1:10px; x2:160px; y2:10px; "/>
  405. <caption id="caption327" class="cell_1" style="left:989px; top:63px; width:80px; height:23px; vertical-align:middle; ">퇴사일자</caption>
  406. <caption id="caption316" class="cell_1" style="left:713px; top:135px; width:80px; height:23px; vertical-align:middle; ">신직급/연차</caption>
  407. <line id="line193" class="line_1" style="x1:165px; y1:10px; x2:1195px; y2:10px; "/>
  408. <caption id="caption328" class="cell_1" style="left:713px; top:15px; width:80px; height:23px; vertical-align:middle; ">위험코드</caption>
  409. <caption id="caption317" class="cell_1" style="left:713px; top:39px; width:80px; height:23px; vertical-align:middle; ">직종</caption>
  410. <select1 id="rdo_gndr" ref="/root/main/empldata/empllist/gndr" class="radio_search" disabled="true" navindex="12" overflow="visible" appearance="full" cols="2" itemheight="18" itemwidth="50" style="left:575px; top:138px; width:104px; height:19px; text-align:center; border-style:solid; ">
  411. <choices>
  412. <item>
  413. <label>남</label>
  414. <value>M</value>
  415. </item>
  416. <item>
  417. <label>여</label>
  418. <value>F</value>
  419. </item>
  420. </choices>
  421. </select1>
  422. <caption id="caption318" class="cell_1" style="left:713px; top:87px; width:80px; height:23px; vertical-align:middle; ">직책</caption>
  423. <input id="ipt_rregno2" ref="/root/main/empldata/empllist/rregno2" class="input_essential" disabled="true" navindex="11" style="left:651px; top:113px; width:60px; height:19px; "/>
  424. <caption id="caption307" class="cell_1" style="left:483px; top:159px; width:90px; height:23px; vertical-align:middle; ">결혼여부</caption>
  425. <caption id="caption329" class="cell_1" style="left:165px; top:63px; width:90px; height:23px; ">성명(한문)</caption>
  426. <caption id="caption2" class="cell_1" style="left:165px; top:39px; width:90px; height:23px; ">성명</caption>
  427. <caption id="caption319" class="cell_1" style="left:713px; top:63px; width:80px; height:23px; vertical-align:middle; ">직위</caption>
  428. <input id="ipt_rregno1" ref="/root/main/empldata/empllist/rregno1" class="input_essential" disabled="true" navindex="10" style="left:575px; top:113px; width:60px; height:19px; "/>
  429. <caption id="caption308" class="cell_1" style="left:483px; top:111px; width:90px; height:23px; vertical-align:middle; ">주민등록번호</caption>
  430. <caption id="caption3" class="cell_1" style="left:165px; top:87px; width:90px; height:23px; ">소속기관</caption>
  431. <caption id="caption309" style="left:635px; top:113px; width:16px; height:17px; font-weight:bold; text-align:center; vertical-align:bottom; ">~</caption>
  432. <select1 id="cmb_prfshipflag" ref="/root/main/empldata/empllist/prfshipflag" class="combo_essential" disabled="true" navindex="7" appearance="minimal" style="left:575px; top:41px; width:136px; height:19px; ">
  433. <choices>
  434. <itemset>
  435. <label/>
  436. <value/>
  437. </itemset>
  438. </choices>
  439. </select1>
  440. <caption id="caption4" class="cell_1" style="left:165px; top:111px; width:90px; height:23px; ">소속부(실)</caption>
  441. <caption id="caption5" class="cell_1" style="left:165px; top:183px; width:90px; height:23px; ">근무지</caption>
  442. <img id="img_view" ref="/root/main/imgdata/photimg" style="left:10px; top:18px; width:140px; height:170px; background-stretch:stretch; "/>
  443. <img id="img_hidden" visibility="hidden" style="left:10px; top:18px; width:140px; height:170px; "/>
  444. <input id="ipt_emplno" ref="/root/send/emplref/emplno" class="input_s_essential" navindex="1" style="left:257px; top:16px; width:146px; height:19px; font-family:굴림체; font-size:11pt; font-weight:bold; color:#0000ff; text-align:center; vertical-align:middle; ">
  445. <script type="javascript" ev:event="xforms-value-changed">
  446. <![CDATA[
  447. misfGridInit(grd_empllist);
  448. misfGridInit(grd_imgviewlist);
  449. // button2.attribute("selected") = true;
  450. // model.toggle("case1");
  451. misfGetUserAuth();
  452. rpbfValidationCheck("EMPLNO", "emplno,dutplceinst");
  453. if( PSN_INST_YN != "Y" && getUserInfo("dutplceinstcd") == model.getValue("/root/send/emplref/dutplceinst") ) {
  454. button2.dispatch("onclick");
  455. misfMsterDetailRetrieve();
  456. if (grd_empllist.rows - grd_empllist.fixedRows == 0) {
  457. //misfGridIUD(grd_empllist, "A");
  458. messageBox("사번을 확인 하십시요. 조회 ","E001");
  459. return;
  460. }
  461. else {
  462. var prfshipflag = grd_empllist.valueMatrix(grd_empllist.fixedRows, grd_empllist.colRef("prfshipflag"));
  463. if (prfshipflag == "31") {
  464. fbtndisabled(true);
  465. }
  466. else{
  467. fbtndisabled(false);
  468. }
  469. }
  470. submit("TRRPB00118"); //사진
  471. // if (grd_armylist.rows - grd_armylist.fixedRows == 0) {
  472. // misfGridIUD(grd_armylist, "A");
  473. // }
  474. // else {
  475. // grd_armylist.row = 1;
  476. // }
  477. /* Grid Data를 다른 Control로 Copy : TARGET_NODE, SOURCE_NODE는 RPB001.js에 정의 됨.*/
  478. model.copyNode(TARGET_NODE,SOURCE_NODE);
  479. // model.copyNode(TARGET_ARMY_NODE, SOURCE_ARMY_NODE);
  480. fRetrImage();
  481. }
  482. else if ( PSN_INST_YN == "Y") {
  483. button2.dispatch("onclick");
  484. misfMsterDetailRetrieve();
  485. if (grd_empllist.rows - grd_empllist.fixedRows == 0) {
  486. //misfGridIUD(grd_empllist, "A");
  487. messageBox("사번을 확인 하십시요. 조회 ","E001");
  488. return;
  489. }
  490. else {
  491. var prfshipflag = grd_empllist.valueMatrix(grd_empllist.fixedRows, grd_empllist.colRef("prfshipflag"));
  492. if (prfshipflag == "31") {
  493. fbtndisabled(true);
  494. }
  495. else{
  496. fbtndisabled(false);
  497. }
  498. }
  499. submit("TRRPB00118"); //사진
  500. // if (grd_armylist.rows - grd_armylist.fixedRows == 0) {
  501. // misfGridIUD(grd_armylist, "A");
  502. // }
  503. // else {
  504. // grd_armylist.row = 1;
  505. // }
  506. /* Grid Data를 다른 Control로 Copy : TARGET_NODE, SOURCE_NODE는 RPB001.js에 정의 됨.*/
  507. model.copyNode(TARGET_NODE,SOURCE_NODE);
  508. // model.copyNode(TARGET_ARMY_NODE, SOURCE_ARMY_NODE);
  509. fRetrImage();
  510. }
  511. else {
  512. messageBox("근무기관의 사원만 조회할수 있습니다.","I999");
  513. }
  514. model.refresh();
  515. ]]>
  516. </script>
  517. <script type="javascript" ev:event="onkeyup">
  518. <![CDATA[
  519. /* Enter Key입력시 ipt_emplno의 xforms-value-changed 이벤트 발생 */
  520. inputEnterKey("ipt_emplno", "xforms-value-changed");
  521. ]]>
  522. </script>
  523. </input>
  524. <caption id="caption1" class="cell_1" style="left:483px; top:39px; width:90px; height:23px; ">급여분류</caption>
  525. <caption id="caption7" class="cell_1" style="left:989px; top:159px; width:80px; height:23px; vertical-align:middle; ">근속/나이</caption>
  526. <input id="ipt_name" ref="/root/main/empldata/empllist/name" class="input_essential" navindex="2" editable="false" style="left:257px; top:41px; width:223px; height:19px; font-family:굴림체; font-size:12pt; font-weight:bold; color:#0000ff; "/>
  527. <input id="ipt_chinm" ref="/root/main/empldata/empllist/chinm" class="input_essential" disabled="true" navindex="3" style="left:257px; top:65px; width:223px; height:19px; "/>
  528. <caption id="caption9" class="cell_1" style="left:989px; top:135px; width:80px; height:23px; vertical-align:middle; ">겸직유무</caption>
  529. <input id="ipt_dutplcedeptcd" ref="/root/main/empldata/empllist/dutplcedeptcd" class="input_essential" disabled="true" navindex="6" style="left:257px; top:185px; width:78px; height:19px; ">
  530. <script type="javascript" ev:event="xforms-value-changed">
  531. <![CDATA[
  532. /* 부서코드,명 입력시 Validation Check
  533. misfValidationCheck(Validation 종류(부서코드, 공통코드, 우편번호...), 공통코드군, 자료를 받을 Instance Node(콤마로 분류해서 넘기면됨)) */
  534. misfValidationCheck("02", "", "dutplcedeptcd,dutplcedeptnm" );
  535. model.refresh();
  536. ]]>
  537. </script>
  538. </input>
  539. <input id="ipt_hosinseqno" ref="/root/main/empldata/empllist/hosinseqno" class="input_essential" disabled="true" navindex="8" style="left:575px; top:65px; width:136px; height:19px; "/>
  540. <caption id="caption331" class="cell_1" style="left:483px; top:63px; width:90px; height:23px; ">원내번호</caption>
  541. <caption id="caption321" class="cell_1" visibility="hidden" style="left:989px; top:111px; width:80px; height:23px; vertical-align:middle; ">CMC입사일</caption>
  542. <input id="ipt_mpphonno" ref="/root/main/empldata/empllist/mpphonno" class="input_essential" disabled="true" navindex="9" style="left:575px; top:89px; width:136px; height:19px; "/>
  543. <button id="button2" class="btn_sw" group="tab" selected="true" style="left:0px; top:211px; width:100px; height:22px; ">
  544. <caption>기본인적사항1</caption>
  545. <toggle case="case1" ev:event="onclick"/>
  546. </button>
  547. <button id="button3" class="btn_sw" group="tab" selected="false" style="left:297px; top:211px; width:100px; height:22px; ">
  548. <caption>가족사항</caption>
  549. <script type="javascript" ev:event="onclick">
  550. <![CDATA[
  551. model.toggle("case4");
  552. if (grd_famylist.rows - grd_famylist.fixedRows <= 0 ) {
  553. submit("TRRPB00103");
  554. submit("TRRPB00113");
  555. submit("TRRPB00115");
  556. }
  557. ]]>
  558. </script>
  559. </button>
  560. <button id="button4" class="btn_sw" group="tab" style="left:396px; top:211px; width:100px; height:22px; ">
  561. <caption>학력사항</caption>
  562. <script type="javascript" ev:event="onclick">
  563. <![CDATA[
  564. model.toggle("case5");
  565. if (grd_scholist.rows - grd_scholist.fixedRows <= 0 ) {
  566. submit("TRRPB00104");
  567. }
  568. ]]>
  569. </script>
  570. </button>
  571. <button id="button5" class="btn_sw" group="tab" style="left:495px; top:211px; width:100px; height:22px; ">
  572. <caption>발령이동사항</caption>
  573. <script type="javascript" ev:event="onclick">
  574. <![CDATA[
  575. model.toggle("case6");
  576. if (grd_gvnoffcordlist.rows - grd_gvnoffcordlist.fixedRows <= 0 ) {
  577. submit("TRRPB00112");
  578. }
  579. ]]>
  580. </script>
  581. </button>
  582. <button id="button6" class="btn_sw" group="tab" style="left:594px; top:211px; width:100px; height:22px; ">
  583. <caption>자격면허사항</caption>
  584. <script type="javascript" ev:event="onclick">
  585. <![CDATA[
  586. model.toggle("case7");
  587. if (grd_licnlist.rows - grd_licnlist.fixedRows <= 0 ) {
  588. submit("TRRPB00105");
  589. }
  590. ]]>
  591. </script>
  592. </button>
  593. <button id="button7" class="btn_sw" group="tab" style="left:792px; top:211px; width:100px; height:22px; ">
  594. <caption>상벌사항</caption>
  595. <script type="javascript" ev:event="onclick">
  596. <![CDATA[
  597. model.toggle("case9");
  598. if (grd_prizlist.rows - grd_prizlist.fixedRows <= 0 ) {
  599. submit("TRRPB00108");
  600. }
  601. ]]>
  602. </script>
  603. </button>
  604. <button id="button8" class="btn_sw" group="tab" style="left:891px; top:211px; width:100px; height:22px; ">
  605. <caption>병역사항</caption>
  606. <script type="javascript" ev:event="onclick">
  607. <![CDATA[
  608. model.toggle("case10");
  609. if (grd_armylist.rows - grd_armylist.fixedRows <= 0 ) {
  610. submit("TRRPB00110");
  611. if (grd_armylist.rows - grd_armylist.fixedRows == 0) {
  612. misfGridIUD(grd_armylist, "A");
  613. }
  614. else {
  615. grd_armylist.row = 1;
  616. }
  617. model.copyNode(TARGET_ARMY_NODE, SOURCE_ARMY_NODE);
  618. model.refresh();
  619. }
  620. ]]>
  621. </script>
  622. </button>
  623. <button id="button9" class="btn_sw" group="tab" style="left:990px; top:211px; width:100px; height:22px; ">
  624. <caption>교육훈련</caption>
  625. <script type="javascript" ev:event="onclick">
  626. <![CDATA[
  627. model.toggle("case11");
  628. if (grd_educlist.rows - grd_educlist.fixedRows <= 0 ) {
  629. submit("TRRPB00124");
  630. }
  631. ]]>
  632. </script>
  633. </button>
  634. <button id="button10" class="btn_sw" visibility="hidden" group="tab" style="left:1089px; top:211px; width:100px; height:22px; ">
  635. <caption>학회</caption>
  636. <toggle case="case12" ev:event="onclick"/>
  637. </button>
  638. <button id="button25" class="btn_sw" group="tab" style="left:693px; top:211px; width:100px; height:22px; ">
  639. <caption>경력사항</caption>
  640. <script type="javascript" ev:event="onclick">
  641. <![CDATA[
  642. model.toggle("case8");
  643. if (grd_becrlist.rows - grd_becrlist.fixedRows <= 0 ) {
  644. submit("TRRPB00106");
  645. submit("TRRPB00107");
  646. }
  647. ]]>
  648. </script>
  649. </button>
  650. <select1 id="rdo_maryyn" ref="/root/main/empldata/empllist/maryyn" class="radio_search" disabled="true" navindex="13" overflow="visible" appearance="full" cols="2" itemheight="18" itemwidth="50" style="left:575px; top:162px; width:104px; height:19px; text-align:center; border-style:solid; ">
  651. <choices>
  652. <item>
  653. <label>기혼</label>
  654. <value>Y</value>
  655. </item>
  656. <item>
  657. <label>미혼</label>
  658. <value>N</value>
  659. </item>
  660. </choices>
  661. </select1>
  662. <select1 id="rdo_hdfamyyn" ref="/root/main/empldata/empllist/hdfamyyn" class="radio_search" disabled="true" navindex="14" overflow="visible" appearance="full" cols="4" itemheight="18" itemwidth="50" style="left:575px; top:186px; width:104px; height:19px; text-align:center; border-style:solid; ">
  663. <choices>
  664. <item>
  665. <label>Yes</label>
  666. <value>Y</value>
  667. </item>
  668. <item>
  669. <label>No</label>
  670. <value>N</value>
  671. </item>
  672. </choices>
  673. </select1>
  674. <select1 id="rdo_concroffcyn" ref="/root/main/empldata/empllist/concroffcyn" class="radio_search" disabled="true" navindex="15" overflow="visible" appearance="full" cols="2" itemheight="18" itemwidth="50" style="left:1070px; top:137px; width:120px; height:19px; text-align:center; border-style:solid; ">
  675. <choices>
  676. <item>
  677. <label>Yes</label>
  678. <value>Y</value>
  679. </item>
  680. <item>
  681. <label>No</label>
  682. <value>N</value>
  683. </item>
  684. </choices>
  685. </select1>
  686. <caption id="caption164" class="cell_1" style="left:165px; top:15px; width:90px; height:23px; ">사원번호</caption>
  687. <input id="ipt_deptcd" ref="/root/main/empldata/empllist/deptcd" class="input_essential" disabled="true" navindex="5" required="true" style="left:257px; top:113px; width:78px; height:19px; ">
  688. <script type="javascript" ev:event="xforms-value-changed">
  689. <![CDATA[
  690. /* 부서코드,명 입력시 Validation Check
  691. misfValidationCheck(Validation 종류(부서코드, 공통코드, 우편번호...), 공통코드군, 자료를 받을 Instance Node(콤마로 분류해서 넘기면됨)) */
  692. misfValidationCheck("02", "", "deptcd,deptnm" );
  693. model.refresh();
  694. ]]>
  695. </script>
  696. </input>
  697. <input id="ipt_anual" ref="/root/main/empldata/empllist/anual" class="input_default" disabled="true" navindex="28" style="left:917px; top:137px; width:70px; height:19px; "/>
  698. <button id="button52" class="btn2_letter3" visibility="hidden" style="left:427px; top:16px; width:53px; height:19px; ">
  699. <caption>조직도</caption>
  700. </button>
  701. <button id="button14" class="btn_sw" visibility="visible" group="tab" selected="false" style="left:99px; top:211px; width:100px; height:22px; ">
  702. <caption>기본인적사항2</caption>
  703. <script type="javascript" ev:event="onclick">
  704. <![CDATA[
  705. model.toggle("case2");
  706. if (grd_grntpsn1.rows - grd_grntpsn1.fixedRows <= 0 ) {
  707. submit("TRRPB00102");
  708. }
  709. ]]>
  710. </script>
  711. </button>
  712. <caption id="caption23" style="left:1094px; top:160px; width:15px; height:20px; vertical-align:middle; ">년</caption>
  713. <input id="ipt_dutmm" ref="/root/main/empldata/empllist/dutmm" class="input_default" disabled="true" style="left:1108px; top:161px; width:24px; height:19px; "/>
  714. <caption id="caption26" style="left:1133px; top:160px; width:26px; height:20px; vertical-align:middle; ">개월</caption>
  715. <button id="button12" class="btn_sw" group="tab" selected="false" style="left:198px; top:211px; width:100px; height:22px; ">
  716. <caption>기본인적사항3</caption>
  717. <script type="javascript" ev:event="onclick">
  718. <![CDATA[
  719. // var dutplceinstcd = getUserInfo("dutplceinstcd");
  720. //
  721. // if ( dutplceinstcd == "103" ) {
  722. // model.toggle("case13");
  723. // }
  724. // else {
  725. // model.toggle("case3");
  726. // }
  727. model.toggle("case3");
  728. if (grd_forgnlist.rows - grd_forgnlist.fixedRows <= 0 ) {
  729. submit("TRRPB00111");
  730. }
  731. if (grd_ConcrOffc.rows - grd_ConcrOffc.fixedRows <= 0 ) {
  732. submit("TRRPB00121");
  733. }
  734. ]]>
  735. </script>
  736. </button>
  737. <switch id="switch1" style="left:0px; top:256px; width:1195px; height:478px; ">
  738. <case id="case1">
  739. <line id="line36" class="line_2" style="x1:0px; y1:299px; x2:1020px; y2:299px; "/>
  740. <line id="line34" class="line_3" style="x1:0px; y1:323px; x2:1020px; y2:323px; "/>
  741. <line id="line35" class="line_2" style="x1:0px; y1:224px; x2:1193; y2:224px; "/>
  742. <line id="line3" class="line_3" style="x1:0px; y1:248px; x2:1193; y2:248px; "/>
  743. <line id="line4" class="line_3" style="x1:0px; y1:172px; x2:1193; y2:172px; "/>
  744. <line id="line29" class="line_2" style="x1:0px; y1:124px; x2:1193; y2:124px; "/>
  745. <line id="line28" class="line_2" style="x1:0px; y1:148px; x2:1193; y2:148px; "/>
  746. <line id="line33" class="line_2" style="x1:0px; y1:76px; x2:1193; y2:76px; "/>
  747. <line id="line32" class="line_2" style="x1:0px; y1:52px; x2:1193; y2:52px; "/>
  748. <line id="line31" class="line_2" style="x1:0px; y1:100px; x2:1193; y2:100px; "/>
  749. <caption id="caption278" class="tit_2" style="left:5px; top:10px; width:144px; height:13px; ">기본인적사항1</caption>
  750. <button id="btn_domizipcd" class="icon_search" disabled="true" style="left:738px; top:34; width:16px; height:16px; ">
  751. <caption/>
  752. <script type="javascript" ev:event="DOMActivate">
  753. <![CDATA[
  754. /* 우편번호 Help화면 Popup */
  755. var recv_list = "domizipcd1,domizipcd2,domiaddr";
  756. rpbfOpenZipCdHelp(ipt_domizipcd1, recv_list);
  757. model.refresh();
  758. model.setFocus("ipt_domiaddr");
  759. ]]>
  760. </script>
  761. </button>
  762. <button id="btn_residnczipcd" class="icon_search" disabled="true" style="left:738px; top:82; width:16px; height:16px; ">
  763. <caption/>
  764. <script type="javascript" ev:event="DOMActivate">
  765. <![CDATA[
  766. /* 우편번호 Help화면 Popup */
  767. var recv_list = "residnczipcd1,residnczipcd2,residncaddr";
  768. rpbfOpenZipCdHelp(ipt_residnczipcd1, recv_list);
  769. model.refresh();
  770. model.setFocus("ipt_residncaddr")
  771. ]]>
  772. </script>
  773. </button>
  774. <button id="btn_resdnrgstareazipcd" class="icon_search" disabled="true" style="left:738px; top:58; width:16px; height:16px; ">
  775. <caption/>
  776. <script type="javascript" ev:event="DOMActivate">
  777. <![CDATA[
  778. /* 우편번호 Help화면 Popup */
  779. var recv_list = "resdnrgstareazipcd1,resdnrgstareazipcd2,resdnrgstareaaddr";
  780. rpbfOpenZipCdHelp(ipt_resdnrgstareazipcd1, recv_list);
  781. model.refresh();
  782. model.setFocus("ipt_resdnrgstareaaddr");
  783. ]]>
  784. </script>
  785. </button>
  786. <line id="line9" class="line_1" style="x1:0px; y1:197px; x2:1193; y2:197px; "/>
  787. <line id="line207" class="line_1" style="x1:0px; y1:25px; x2:1193; y2:25px; "/>
  788. <caption id="caption357" class="cell_1" style="left:788px; top:102px; width:85px; height:23px; ">특기</caption>
  789. <caption id="caption335" class="cell_1" style="left:0px; top:30px; width:80px; height:23px; vertical-align:middle; ">출생지</caption>
  790. <caption id="caption83" class="cell_1" style="left:788px; top:150px; width:85px; height:23px; vertical-align:middle; ">E-Mail</caption>
  791. <caption id="caption358" class="cell_1" style="left:540px; top:102px; width:97px; height:23px; ">취미</caption>
  792. <caption id="caption336" class="cell_1" style="left:321px; top:30px; width:85px; height:23px; vertical-align:middle; ">주거형태</caption>
  793. <caption id="caption84" style="left:935px; top:154px; width:15px; height:15px; text-align:center; vertical-align:bottom; ">@</caption>
  794. <input id="ipt_baptnm" ref="/root/main/empldata/empllist/baptnm" class="input_default" disabled="true" visibility="hidden" appearance="input" style="left:82px; top:227px; width:177px; height:19px; "/>
  795. <caption id="caption359" class="cell_1" style="left:0px; top:150px; width:80px; height:23px; ">입사경위</caption>
  796. <input id="ipt_rtconfmdd" ref="/root/main/empldata/empllist/rtconfmdd" class="input_default" disabled="true" visibility="hidden" inputtype="date" appearance="input" style="left:363px; top:227px; width:140px; height:19px; "/>
  797. <input id="ipt_cntctel" ref="/root/main/empldata/empllist/cntctel" class="input_default" disabled="true" appearance="input" style="left:82px; top:56px; width:237px; height:19px; "/>
  798. <caption id="caption338" class="cell_1" style="left:540px; top:30px; width:97px; height:23px; vertical-align:middle; ">본적</caption>
  799. <input id="input1" ref="/root/main/empldata/empllist/chinm" class="input_default" disabled="true" appearance="input" style="left:82px; top:104px; width:237px; height:19px; "/>
  800. <input id="ipt_emplengnm" ref="/root/main/empldata/empllist/emplengnm" class="input_default" disabled="true" appearance="input" style="left:82px; top:128px; width:237px; height:19px; "/>
  801. <input id="ipt_domizipcd1" ref="/root/main/empldata/empllist/domizipcd1" class="input_default" disabled="true" editable="false" appearance="input" style="left:639px; top:32px; width:42px; height:19px; "/>
  802. <caption id="caption339" class="cell_1" style="left:540px; top:54px; width:97px; height:23px; vertical-align:middle; ">주민등록지</caption>
  803. <input id="ipt_wedanvy" ref="/root/main/empldata/empllist/wedanvy" class="input_default" disabled="true" inputtype="date" appearance="input" style="left:409px; top:56px; width:129px; height:19px; "/>
  804. <input id="ipt_hoby" ref="/root/main/empldata/empllist/hoby" class="input_default" disabled="true" appearance="input" style="left:639px; top:104px; width:146px; height:19px; "/>
  805. <input id="ipt_resdnrgstareazipcd1" ref="/root/main/empldata/empllist/resdnrgstareazipcd1" class="input_default" disabled="true" editable="false" appearance="input" style="left:639px; top:56px; width:42px; height:19px; "/>
  806. <input id="ipt_residncaddr" ref="/root/main/empldata/empllist/residncaddr" class="input_default" disabled="true" style="left:840px; top:80px; width:352px; height:19px; "/>
  807. <input id="input2" ref="/root/main/empldata/empllist/hosinseqno" class="input_default" disabled="true" appearance="input" style="left:82px; top:80px; width:237px; height:19px; "/>
  808. <input id="ipt_spclment" ref="/root/main/empldata/empllist/spclment" class="input_default" disabled="true" appearance="input" style="left:875px; top:104px; width:317px; height:19px; "/>
  809. <input id="ipt_resdnrgstareaaddr" ref="/root/main/empldata/empllist/resdnrgstareaaddr" class="input_default" disabled="true" style="left:840px; top:56px; width:352px; height:19px; "/>
  810. <caption id="caption78" class="cell_1" style="left:0px; top:78px; width:80px; height:23px; ">원내번호</caption>
  811. <input id="input3" ref="/root/main/empldata/empllist/mpphonno" class="input_default" disabled="true" style="left:875px; top:128px; width:317px; height:19px; "/>
  812. <select1 id="cmb_emailaddr2" ref="/root/main/empldata/empllist/emailaddr" class="combo_default" disabled="true" appearance="minimal" style="left:950px; top:152px; width:85px; height:19px; ">
  813. <choices>
  814. <itemset>
  815. <label/>
  816. <value/>
  817. </itemset>
  818. </choices>
  819. </select1>
  820. <input id="ipt_residnczipcd1" ref="/root/main/empldata/empllist/residnczipcd1" class="input_default" disabled="true" editable="false" appearance="input" style="left:639px; top:80px; width:42px; height:19px; "/>
  821. <input id="ipt_headfamnm" ref="/root/main/empldata/empllist/headfamnm" class="input_default" disabled="true" appearance="input" style="left:409px; top:128px; width:129px; height:19px; "/>
  822. <caption id="caption79" class="cell_1" style="left:788px; top:126px; width:85px; height:23px; ">휴대폰</caption>
  823. <caption id="caption14" class="cell_1" style="left:540px; top:78px; width:97px; height:23px; vertical-align:middle; ">거주지</caption>
  824. <input id="ipt_hshdnm" ref="/root/main/empldata/empllist/hshdnm" class="input_default" disabled="true" appearance="input" style="left:409px; top:152px; width:129px; height:19px; "/>
  825. <input id="input4" ref="/root/main/empldata/empllist/emailid" class="input_default" disabled="true" style="left:875px; top:152px; width:60px; height:19px; "/>
  826. <caption id="caption15" class="cell_1" style="left:321px; top:54px; width:85px; height:23px; ">결혼기념일</caption>
  827. <caption id="caption360" class="cell_1" style="left:0px; top:202px; width:80px; height:23px; ">종교</caption>
  828. <input id="ipt_fairnmdd" ref="/root/main/empldata/empllist/fairnmdd" class="input_default" disabled="true" visibility="hidden" appearance="input" style="left:363px; top:204px; width:140px; height:19px; "/>
  829. <input id="ipt_domiaddr" ref="/root/main/empldata/empllist/domiaddr" class="input_default" disabled="true" style="left:840px; top:32px; width:352px; height:19px; "/>
  830. <caption id="caption16" class="cell_1" style="left:321px; top:78px; width:85px; height:47px; ">생일</caption>
  831. <caption id="caption361" class="cell_1" visibility="hidden" style="left:261px; top:202px; width:100px; height:23px; vertical-align:middle; ">영명일</caption>
  832. <input id="ipt_chrchnm" ref="/root/main/empldata/empllist/chrchnm" class="input_default" disabled="true" visibility="hidden" appearance="input" style="left:592px; top:204px; width:357px; height:19px; "/>
  833. <caption id="caption17" class="tit_2" style="left:5px; top:182px; width:95px; height:13px; ">종교사항</caption>
  834. <caption id="caption340" class="cell_1" style="left:321px; top:126px; width:85px; height:23px; vertical-align:middle; ">호주명</caption>
  835. <caption id="caption362" class="cell_1" visibility="hidden" style="left:505px; top:202px; width:85px; height:23px; vertical-align:middle; ">교회명</caption>
  836. <input id="ipt_baptdd" ref="/root/main/empldata/empllist/baptdd" class="input_default" disabled="true" visibility="hidden" inputtype="date" appearance="input" style="left:1038px; top:204px; width:154px; height:19px; "/>
  837. <caption id="caption330" class="cell_1" style="left:0px; top:54px; width:80px; height:23px; ">전화번호</caption>
  838. <select1 id="cmb_headfamrela" ref="/root/main/empldata/empllist/headfamrela" class="combo_default" disabled="true" appearance="minimal" style="left:639px; top:128px; width:146px; height:19px; ">
  839. <choices>
  840. <itemset>
  841. <label/>
  842. <value/>
  843. </itemset>
  844. </choices>
  845. </select1>
  846. <caption id="caption341" class="cell_1" style="left:321px; top:150px; width:85px; height:23px; vertical-align:middle; ">세대주명</caption>
  847. <caption id="caption18" class="cell_1" style="left:0px; top:102px; width:80px; height:23px; ">성명(한문)</caption>
  848. <caption id="caption363" class="cell_1" visibility="hidden" style="left:261px; top:226px; width:100px; height:23px; vertical-align:middle; ">견진일자</caption>
  849. <select1 id="rdo_brthflag" ref="/root/main/empldata/empllist/brthflag" class="radio_search" disabled="true" overflow="visible" appearance="full" cols="2" style="left:409px; top:104px; width:129px; height:19px; text-align:center; border-style:solid; ">
  850. <choices>
  851. <item>
  852. <label>음력</label>
  853. <value>M</value>
  854. </item>
  855. <item>
  856. <label>양력</label>
  857. <value>S</value>
  858. </item>
  859. </choices>
  860. </select1>
  861. <select1 id="cmb_hshdrela" ref="/root/main/empldata/empllist/hshdrela" class="combo_default" disabled="true" appearance="minimal" style="left:639px; top:152px; width:146px; height:19px; ">
  862. <choices>
  863. <itemset>
  864. <label/>
  865. <value/>
  866. </itemset>
  867. </choices>
  868. </select1>
  869. <caption id="caption342" class="cell_1" style="left:540px; top:126px; width:97px; height:23px; vertical-align:middle; ">호주와의 관계</caption>
  870. <caption id="caption364" class="cell_1" visibility="hidden" style="left:0px; top:226px; width:80px; height:23px; vertical-align:middle; ">세례명</caption>
  871. <caption id="caption332" class="cell_1" style="left:0px; top:126px; width:80px; height:23px; ">성명(영문)</caption>
  872. <caption id="caption343" class="cell_1" style="left:540px; top:150px; width:97px; height:23px; vertical-align:middle; ">세대주와의 관계</caption>
  873. <caption id="caption365" class="cell_1" visibility="hidden" style="left:951px; top:202px; width:85px; height:23px; vertical-align:middle; ">세례일자</caption>
  874. <select1 id="cmb_hometype" ref="/root/main/empldata/empllist/hometype" class="combo_essential" disabled="true" appearance="minimal" style="left:409px; top:32px; width:129px; height:19px; ">
  875. <choices>
  876. <itemset>
  877. <label/>
  878. <value/>
  879. </itemset>
  880. </choices>
  881. </select1>
  882. <input id="ipt_domizipcd2" ref="/root/main/empldata/empllist/domizipcd2" class="input_default" disabled="true" editable="false" appearance="input" style="left:694px; top:32px; width:42px; height:19px; "/>
  883. <input id="ipt_resdnrgstareazipcd2" ref="/root/main/empldata/empllist/resdnrgstareazipcd2" class="input_default" disabled="true" editable="false" appearance="input" style="left:694px; top:56px; width:42px; height:19px; "/>
  884. <input id="ipt_residnczipcd2" ref="/root/main/empldata/empllist/residnczipcd2" class="input_default" disabled="true" editable="false" appearance="input" style="left:694px; top:80px; width:42px; height:19px; "/>
  885. <caption id="caption92" style="left:683px; top:32px; width:10px; height:20px; ">-</caption>
  886. <caption id="caption93" style="left:683px; top:57px; width:10px; height:20px; ">-</caption>
  887. <caption id="caption97" style="left:683px; top:81px; width:10px; height:20px; ">-</caption>
  888. <input id="ipt_brthdd" ref="/root/main/empldata/empllist/brthdd" disabled="true" inputtype="date" format="yyyy-mm-dd" style="left:409px; top:80px; width:129px; height:19px; "/>
  889. <select1 id="cmb_relign" ref="/root/main/empldata/empllist/relign" class="combo_essential" disabled="true" appearance="minimal" style="left:82px; top:204px; width:177px; height:19px; ">
  890. <choices>
  891. <itemset>
  892. <label/>
  893. <value/>
  894. </itemset>
  895. </choices>
  896. </select1>
  897. <select1 id="cmb_brtharea" ref="/root/main/empldata/empllist/brtharea" class="combo_essential" disabled="true" appearance="minimal" style="left:82px; top:32px; width:237px; height:19px; ">
  898. <choices>
  899. <itemset>
  900. <label/>
  901. <value/>
  902. </itemset>
  903. </choices>
  904. </select1>
  905. <select1 id="cmb_entcopath" ref="/root/main/empldata/empllist/entcopath" class="combo_essential" disabled="true" appearance="minimal" style="left:82px; top:152px; width:237px; height:19px; ">
  906. <choices>
  907. <itemset>
  908. <label/>
  909. <value/>
  910. </itemset>
  911. </choices>
  912. </select1>
  913. <input id="ipt_etcemailaddr" ref="/root/main/empldata/empllist/etcemailaddr" class="input_essential" disabled="true" navindex="18" style="left:1037px; top:152px; width:155px; height:19px; "/>
  914. <input id="ipt_fstappntdd" ref="/root/main/empldata/empllist/fstappntdd" class="input_default" disabled="true" inputtype="date" style="left:696px; top:303; width:114px; height:19px; "/>
  915. <caption id="caption27" class="cell_1" style="left:594px; top:301px; width:100px; height:23px; vertical-align:middle; ">최초임용일</caption>
  916. <line id="line11" class="line_1" style="x1:0px; y1:272px; x2:1020; y2:272px; "/>
  917. <input id="ipt_edudeptappntdd" ref="/root/main/empldata/empllist/edudeptappntdd" class="input_default" disabled="true" inputtype="date" style="left:914px; top:303; width:104px; height:19px; "/>
  918. <caption id="caption37" class="cell_1" style="left:812px; top:301px; width:100px; height:23px; vertical-align:middle; ">교육부임용일</caption>
  919. <caption id="caption39" class="cell_1" style="left:0px; top:301px; width:100; height:23px; vertical-align:middle; ">재임용일</caption>
  920. <input id="ipt_reappntdd" ref="/root/main/empldata/empllist/reappntdd" class="input_default" disabled="true" inputtype="date" style="left:102px; top:303; width:162px; height:19px; "/>
  921. <caption id="caption40" class="cell_1" style="left:266px; top:301px; width:100px; height:23px; vertical-align:middle; ">교육부임용기간</caption>
  922. <input id="ipt_edudeptappntfromdd" ref="/root/main/empldata/empllist/edudeptappntfromdd" class="input_default" disabled="true" inputtype="date" style="left:368px; top:303; width:104px; height:19px; "/>
  923. <input id="ipt_edudeptappnttodd" ref="/root/main/empldata/empllist/edudeptappnttodd" class="input_default" disabled="true" inputtype="date" style="left:488px; top:303; width:104px; height:19px; "/>
  924. <caption id="caption42" style="left:475px; top:305px; width:16px; height:20px; font-weight:bold; ">~</caption>
  925. <select1 id="cmb_orginstcd" ref="/root/main/empldata/empllist/orginstcd" class="combo_search comboinput" disabled="true" navindex="4" appearance="minimal" style="left:102px; top:279px; width:162px; height:19px; ">
  926. <choices>
  927. <itemset>
  928. <label/>
  929. <value/>
  930. </itemset>
  931. </choices>
  932. </select1>
  933. <output id="opt_orgdeptnm" ref="/root/main/empldata/empllist/orgdeptnm" class="output_fix" style="left:821px; top:279px; width:197px; height:19px; "/>
  934. <caption id="caption43" class="cell_1" style="left:0px; top:277px; width:100; height:23px; ">원소속기관</caption>
  935. <caption id="caption44" class="cell_1" style="left:594px; top:277px; width:100px; height:23px; ">원소속부서</caption>
  936. <button id="btn_orgdeptcd" class="icon_search" disabled="true" style="left:803px; top:281px; width:16px; height:16px; ">
  937. <caption/>
  938. <script type="javascript" ev:event="DOMActivate">
  939. <![CDATA[
  940. var recv_list = "orgdeptcd,orgdeptnm";
  941. rpbfOpenDeptCdHelp(ipt_orgdeptcd,recv_list);
  942. model.refresh();
  943. ]]>
  944. </script>
  945. </button>
  946. <input id="ipt_orgdeptcd" ref="/root/main/empldata/empllist/orgdeptcd" class="input_essential" disabled="true" navindex="5" required="true" style="left:696px; top:279px; width:104px; height:19px; ">
  947. <script type="javascript" ev:event="xforms-value-changed">
  948. <![CDATA[
  949. /* 부서코드,명 입력시 Validation Check
  950. misfValidationCheck(Validation 종류(부서코드, 공통코드, 우편번호...), 공통코드군, 자료를 받을 Instance Node(콤마로 분류해서 넘기면됨)) */
  951. misfValidationCheck("02", "", "orgdeptcd,orgdeptnm" );
  952. model.refresh();
  953. ]]>
  954. </script>
  955. </input>
  956. <caption id="caption67" class="cell_1" style="left:266px; top:277px; width:100px; height:23px; ">원소속세부기관</caption>
  957. <select1 id="cmb_detlinst" ref="/root/main/empldata/empllist/orgdetlinst" class="combo_search comboinput" disabled="true" navindex="4" appearance="minimal" style="left:368px; top:279px; width:147px; height:19px; ">
  958. <choices>
  959. <itemset>
  960. <label/>
  961. <value/>
  962. </itemset>
  963. </choices>
  964. </select1>
  965. <input id="ipt_domiaddrtemp" ref="/root/init/addrtemp" class="input_default" disabled="true" style="left:755px; top:32px; width:82px; height:19px; ">
  966. <script type="javascript" ev:event="xforms-value-changed">
  967. <![CDATA[
  968. /* 우편번호 Validation Check
  969. misfValidationCheck(Validation 종류(부서코드, 공통코드, 우편번호...), 공통코드군, 자료를 받을 Instance Node(콤마로 분류해서 넘기면됨)) */
  970. ipt_domiaddr.value = ipt_domiaddrtemp.currentText;
  971. // ipt_domiaddrtemp.currentText = "";
  972. ipt_domiaddrtemp.attribute("ref") = "/root/main/empldata/empllist/domiaddr"
  973. misfValidationCheck("04", "", "domizipcd1,domizipcd2,domiaddr" );
  974. ipt_domiaddrtemp.attribute("ref") = "";
  975. model.setValue("/root/init/addrtemp","");
  976. model.refresh();
  977. model.setFocus("ipt_domiaddr");
  978. ]]>
  979. </script>
  980. </input>
  981. <input id="ipt_resdnrgstareaaddrtemp" ref="/root/init/addrtemp" class="input_default" disabled="true" style="left:755px; top:56px; width:82px; height:19px; ">
  982. <script type="javascript" ev:event="xforms-value-changed">
  983. <![CDATA[
  984. model.setValue(ipt_resdnrgstareaaddr.attribute("ref"),ipt_resdnrgstareaaddrtemp.currentText) ;
  985. ipt_resdnrgstareaaddrtemp.attribute("ref") = "/root/main/empldata/empllist/resdnrgstareaaddr"
  986. misfValidationCheck("04", "", "resdnrgstareazipcd1,resdnrgstareazipcd2,resdnrgstareaaddr" );
  987. ipt_resdnrgstareaaddrtemp.attribute("ref") = "";
  988. model.setValue("/root/init/addrtemp","");
  989. model.refresh();
  990. model.setFocus("ipt_resdnrgstareaaddr");
  991. ]]>
  992. </script>
  993. </input>
  994. <input id="ipt_residncaddrtemp" ref="/root/init/addrtemp" class="input_default" disabled="true" style="left:755px; top:80px; width:82px; height:19px; ">
  995. <script type="javascript" ev:event="xforms-value-changed">
  996. <![CDATA[
  997. ipt_residncaddr.value = ipt_residncaddrtemp.currentText;
  998. ipt_residncaddrtemp.attribute("ref") = "/root/main/empldata/empllist/residncaddr"
  999. misfValidationCheck("04", "", "residnczipcd1,residnczipcd2,residncaddr" );
  1000. ipt_residncaddrtemp.attribute("ref") = "";
  1001. model.setValue("/root/init/addrtemp","");
  1002. model.refresh();
  1003. model.setFocus("ipt_residncaddr")
  1004. ]]>
  1005. </script>
  1006. </input>
  1007. </case>
  1008. <case id="case2" selected="true">
  1009. <line id="line5" class="line_3" style="x1:0px; y1:358px; x2:1193; y2:358px; "/>
  1010. <line id="line2" class="line_2" style="x1:0px; y1:310px; x2:1193; y2:310px; "/>
  1011. <line id="line38" class="line_2" style="x1:0px; y1:334px; x2:1193; y2:334px; "/>
  1012. <line id="line6" class="line_3" style="x1:0px; y1:412px; x2:1192px; y2:412px; "/>
  1013. <line id="line13" class="line_3" style="x1:0px; y1:465px; x2:628px; y2:465px; "/>
  1014. <caption id="caption70" class="cell_1" style="left:249px; top:336px; width:100px; height:23px; ">검사일자</caption>
  1015. <caption id="caption157" class="cell_1" style="left:371px; top:390px; width:73px; height:23px; vertical-align:middle; ">보훈유족명</caption>
  1016. <caption id="caption135" class="cell_1" style="left:181px; top:390px; width:73px; height:23px; vertical-align:middle; ">보훈구분</caption>
  1017. <line id="line106" class="line_1" style="x1:0px; y1:25px; x2:1193; y2:25px; "/>
  1018. <input id="ipt_bp" ref="/root/main/empldata/empllist/bp" class="input_default" disabled="true" appearance="input" style="left:1058px; top:290px; width:133px; height:19px; "/>
  1019. <caption id="caption158" class="cell_1" style="left:181px; top:443px; width:73px; height:23px; vertical-align:middle; ">장애등급</caption>
  1020. <caption id="caption103" class="cell_1" style="left:371px; top:443px; width:73px; height:23px; vertical-align:middle; ">장애번호</caption>
  1021. <line id="line30" class="line_1" style="x1:0px; y1:385px; x2:1192px; y2:385px; "/>
  1022. <caption id="caption136" class="tit_2" style="left:5px; top:10px; width:144px; height:13px; ">기본인적사항2</caption>
  1023. <caption id="caption71" class="tit_2" style="left:5px; top:267px; width:95px; height:13px; ">신체사항</caption>
  1024. <input id="ipt_bdht" ref="/root/main/empldata/empllist/bdht" class="input_default" disabled="true" appearance="input" style="left:102px; top:290px; width:115px; height:19px; "/>
  1025. <caption id="caption61" class="cell_1" style="left:747px; top:288px; width:100px; height:23px; ">RH +, -</caption>
  1026. <caption id="caption72" class="cell_1" style="left:498px; top:336px; width:100px; height:23px; ">질병</caption>
  1027. <caption id="caption126" class="cell_1" style="left:542px; top:390px; width:85px; height:23px; vertical-align:middle; ">보훈번호</caption>
  1028. <input id="ipt_bdwt" ref="/root/main/empldata/empllist/bdwt" class="input_default" disabled="true" appearance="input" style="left:351px; top:290px; width:114px; height:19px; "/>
  1029. <caption id="caption62" class="cell_1" style="left:956px; top:288px; width:100px; height:23px; ">혈압</caption>
  1030. <caption id="caption73" class="cell_1" style="left:735px; top:390px; width:85px; height:23px; vertical-align:middle; ">유족관계</caption>
  1031. <input id="ipt_bhno" ref="/root/main/empldata/empllist/bhno" class="input_default" disabled="true" style="left:629px; top:392px; width:104px; height:19px; "/>
  1032. <input id="ipt_lvisact" ref="/root/main/empldata/empllist/lvisact" class="input_default" disabled="true" appearance="input" style="left:102px; top:314px; width:145px; height:19px; "/>
  1033. <caption id="caption20" class="cell_1" style="left:498px; top:288px; width:100px; height:23px; ">혈액형</caption>
  1034. <caption id="caption129" class="cell_1" style="left:0px; top:443px; width:73px; height:23px; vertical-align:middle; ">장애여부</caption>
  1035. <caption id="caption86" class="tit_2" style="left:5px; top:370px; width:95px; height:13px; ">보훈사항</caption>
  1036. <caption id="caption21" class="cell_1" style="left:0px; top:312px; width:100; height:23px; ">시력좌</caption>
  1037. <caption id="caption10" class="cell_1" style="left:498px; top:312px; width:100px; height:23px; ">색약</caption>
  1038. <caption id="caption65" class="cell_1" style="left:0px; top:336px; width:100; height:23px; ">건강상태</caption>
  1039. <select1 id="cmb_btype" ref="/root/main/empldata/empllist/btype" class="combo_default" disabled="true" appearance="minimal" style="left:600px; top:290px; width:145px; height:19px; ">
  1040. <choices>
  1041. <itemset>
  1042. <label/>
  1043. <value/>
  1044. </itemset>
  1045. </choices>
  1046. </select1>
  1047. <caption id="caption22" class="cell_1" style="left:249px; top:312px; width:100px; height:23px; ">시력우</caption>
  1048. <caption id="caption77" class="cell_1" style="left:747px; top:312px; width:100px; height:23px; ">간염항원</caption>
  1049. <input id="ipt_testdd" ref="/root/main/empldata/empllist/testdd" class="input_default" disabled="true" inputtype="date" appearance="input" style="left:351px; top:338px; width:145px; height:19px; "/>
  1050. <caption id="caption11" class="cell_1" style="left:942px; top:390px; width:85px; height:23px; vertical-align:middle; ">보훈청</caption>
  1051. <caption id="caption12" class="cell_1" style="left:249px; top:288px; width:100px; height:23px; ">체중</caption>
  1052. <input id="ipt_hptsag" ref="/root/main/empldata/empllist/hptsag" class="input_default" disabled="true" appearance="input" style="left:849px; top:314px; width:105px; height:19px; "/>
  1053. <line id="line37" class="line_1" style="x1:0px; y1:282px; x2:1193; y2:282px; "/>
  1054. <input id="ipt_rvisact" ref="/root/main/empldata/empllist/rvisact" class="input_default" disabled="true" appearance="input" style="left:351px; top:314px; width:145px; height:19px; "/>
  1055. <input id="ipt_hptsbd" ref="/root/main/empldata/empllist/hptsbd" class="input_default" disabled="true" appearance="input" style="left:1058px; top:314px; width:133px; height:19px; "/>
  1056. <caption id="caption13" class="cell_1" style="left:956px; top:312px; width:100px; height:23px; ">간염항체</caption>
  1057. <select1 id="cmb_bhflag" ref="/root/main/empldata/empllist/bhflag" class="combo_essential" disabled="true" appearance="minimal" style="left:256px; top:392px; width:113; height:19px; ">
  1058. <choices>
  1059. <itemset>
  1060. <label/>
  1061. <value/>
  1062. </itemset>
  1063. </choices>
  1064. </select1>
  1065. <line id="line27" class="line_1" style="x1:0px; y1:438px; x2:628px; y2:438px; "/>
  1066. <input id="ipt_handcapno" ref="/root/main/empldata/empllist/handcapno" class="input_default" disabled="true" style="left:445px; top:444px; width:179px; height:19px; "/>
  1067. <select1 id="rdo_rhflag" ref="/root/main/empldata/empllist/rhflag" class="radio_search" disabled="true" overflow="visible" appearance="full" cellspacing="10" cols="2" style="left:849px; top:291px; width:105px; height:19px; text-align:center; border-style:solid; ">
  1068. <choices>
  1069. <item>
  1070. <label>RH+</label>
  1071. <value>P</value>
  1072. </item>
  1073. <item>
  1074. <label>RH-</label>
  1075. <value>M</value>
  1076. </item>
  1077. </choices>
  1078. </select1>
  1079. <input id="ipt_healstat" ref="/root/main/empldata/empllist/healstat" class="input_default" disabled="true" appearance="input" style="left:102px; top:338px; width:145px; height:19px; "/>
  1080. <input id="ipt_bhsrvvfamynm" ref="/root/main/empldata/empllist/bhsrvvfamynm" class="input_default" disabled="true" style="left:446px; top:392; width:94px; height:19px; "/>
  1081. <caption id="caption142" class="tit_2" style="left:5px; top:423px; width:95px; height:13px; ">장애사항</caption>
  1082. <input id="ipt_illn" ref="/root/main/empldata/empllist/illn" class="input_default" disabled="true" appearance="input" style="left:600px; top:338px; width:145px; height:19px; "/>
  1083. <caption id="caption121" class="cell_1" style="left:0px; top:390px; width:73px; height:23px; vertical-align:middle; ">보훈대상</caption>
  1084. <caption id="caption19" class="cell_1" style="left:0px; top:288px; width:100; height:23px; ">신장</caption>
  1085. <group id="group3" style="left:0px; top:29px; width:595px; height:228px; ">
  1086. <line id="line76" class="line_1" style="x1:0px; y1:25px; x2:595px; y2:25px; "/>
  1087. <button id="btn_savegrntpsn1excel" class="btn2_letter4" visibility="hidden" style="left:530px; top:4px; width:64px; height:19px; ">
  1088. <caption>엑셀저장</caption>
  1089. <script type="javascript" ev:event="DOMActivate">
  1090. <![CDATA[
  1091. var fileName = window.fileDialog ("save", ",", false, "excel", "xls", "All Files (*.*)|*.*|Excel Files(*.xls)|*.xls");
  1092. if (fileName != "")
  1093. {
  1094. grd_grntpsn1.saveExcel(fileName);
  1095. }
  1096. ]]>
  1097. </script>
  1098. </button>
  1099. <button id="btn_grddelgrntpsn1" class="btn2_letter3" visibility="hidden" style="left:475px; top:4px; width:53px; height:19px; ">
  1100. <caption>행삭제</caption>
  1101. <script type="javascript" ev:event="DOMActivate">
  1102. <![CDATA[
  1103. misfGridIUD(grd_grntpsn1, "D");
  1104. ]]>
  1105. </script>
  1106. </button>
  1107. <button id="btn_grdaddgrntpsn1" class="btn2_letter3" visibility="hidden" style="left:420px; top:4px; width:53px; height:19px; ">
  1108. <caption>행추가</caption>
  1109. <script type="javascript" ev:event="DOMActivate">
  1110. <![CDATA[
  1111. misfGridIUD(grd_grntpsn1, "A");
  1112. model.setValue(grd_grntpsn1.nodeset + "[" + grd_grntpsn1.row + "]/grntpsnflag", "1");
  1113. ]]>
  1114. </script>
  1115. </button>
  1116. <caption id="caption95" class="tit_2" style="left:5px; top:10px; width:96px; height:14px; ">인우보증사항</caption>
  1117. <datagrid id="grd_grntpsn1" nodeset="/root/main/grnt/grntlist1" caption="보증인^보증인과의관계^보증시작일^보증만료일^보증금액^비고^사원번호^보증인구분^순번^순번OLD^최초등록자ID^최초등록일자^최종수정자ID^최종수정일자" colsep="^" colwidth="90, 112, 104, 100, 91, 156, 74, 50, 40, 31, 38, 40, 34, 47" mergecellsfixedrows="bycolrec" rowheader="update" rowsep="|" style="left:0px; top:30px; width:595px; height:197px; ">
  1118. <col ref="grntpsnnm" type="input"/>
  1119. <col id="grntpsnrela" ref="grntpsnrela" type="input"/>
  1120. <col ref="grntdd" type="inputdate"/>
  1121. <col ref="grnttodd" type="inputdate"/>
  1122. <col ref="grntamt" type="input" visibility="hidden" format="#,###" style="text-align:right; "/>
  1123. <col ref="cmt" type="input"/>
  1124. <col ref="emplno" visibility="hidden"/>
  1125. <col ref="grntpsnflag" visibility="hidden"/>
  1126. <col ref="seq" visibility="hidden"/>
  1127. <col ref="oldseq" visibility="hidden"/>
  1128. <col ref="fstrgstrid" visibility="hidden"/>
  1129. <col ref="fstrgstdt" visibility="hidden"/>
  1130. <col ref="lastupdtrid" visibility="hidden"/>
  1131. <col ref="lastupdtdt" visibility="hidden"/>
  1132. </datagrid>
  1133. </group>
  1134. <group id="group4" style="left:600px; top:29px; width:592px; height:228px; ">
  1135. <line id="line1" class="line_1" style="x1:0px; y1:25px; x2:590px; y2:25px; "/>
  1136. <button id="btn_savegrntpsn2excel" class="btn2_letter4" visibility="hidden" style="left:527px; top:4px; width:64px; height:19px; ">
  1137. <caption>엑셀저장</caption>
  1138. <script type="javascript" ev:event="DOMActivate">
  1139. <![CDATA[
  1140. var fileName = window.fileDialog ("save", ",", false, "excel", "xls", "All Files (*.*)|*.*|Excel Files(*.xls)|*.xls");
  1141. if (fileName != "")
  1142. {
  1143. grd_grntpsn2.saveExcel(fileName);
  1144. }
  1145. ]]>
  1146. </script>
  1147. </button>
  1148. <button id="btn_grddelgrntpsn2" class="btn2_letter3" visibility="hidden" style="left:472px; top:4px; width:53px; height:19px; ">
  1149. <caption>행삭제</caption>
  1150. <script type="javascript" ev:event="DOMActivate">
  1151. <![CDATA[
  1152. misfGridIUD(grd_grntpsn2, "D");
  1153. ]]>
  1154. </script>
  1155. </button>
  1156. <button id="btn_grdaddgrntpsn2" class="btn2_letter3" visibility="hidden" style="left:417px; top:4px; width:53px; height:19px; ">
  1157. <caption>행추가</caption>
  1158. <script type="javascript" ev:event="DOMActivate">
  1159. <![CDATA[
  1160. misfGridIUD(grd_grntpsn2, "A");
  1161. model.setValue(grd_grntpsn2.nodeset + "[" + grd_grntpsn2.row + "]/grntpsnflag", "2");
  1162. ]]>
  1163. </script>
  1164. </button>
  1165. <caption id="caption98" class="tit_2" style="left:5px; top:10px; width:96px; height:14px; ">보증보험사항</caption>
  1166. <datagrid id="grd_grntpsn2" nodeset="/root/main/grnt/grntlist2" caption="보증인^보증기관^보증시작일^보증만료일^보증금액^비고^사원번호^보증인구분^순번^순번OLD^최초등록자ID^최초등록일자^최종수정자ID^최종수정일자" colsep="^" colwidth="90, 112, 110, 100, 87, 231, 100, 40, 38, 40, 34, 47, 100, 100" mergecellsfixedrows="bycolrec" rowheader="update" rowsep="|" style="left:0px; top:30px; width:592px; height:197; ">
  1167. <col ref="grntpsnnm" type="input" visibility="hidden"/>
  1168. <col id="col1" ref="grntpsnrela" type="input"/>
  1169. <col ref="grntdd" type="inputdate"/>
  1170. <col ref="grnttodd" type="inputdate"/>
  1171. <col ref="grntamt" type="input" format="#,###" style="text-align:right; "/>
  1172. <col ref="cmt" type="input"/>
  1173. <col ref="emplno" visibility="hidden"/>
  1174. <col ref="grntpsnflag" visibility="hidden"/>
  1175. <col ref="seq" visibility="hidden"/>
  1176. <col ref="oldseq" visibility="hidden"/>
  1177. <col ref="fstrgstrid" visibility="hidden"/>
  1178. <col ref="fstrgstdt" visibility="hidden"/>
  1179. <col ref="lastupdtrid" visibility="hidden"/>
  1180. <col ref="lastupdtdt" visibility="hidden"/>
  1181. </datagrid>
  1182. </group>
  1183. <select1 id="cmb_srvvfamyrela" ref="/root/main/empldata/empllist/srvvfamyrela" class="combo_essential" disabled="true" appearance="minimal" style="left:822px; top:392px; width:118px; height:19px; ">
  1184. <choices>
  1185. <itemset>
  1186. <label/>
  1187. <value/>
  1188. </itemset>
  1189. </choices>
  1190. </select1>
  1191. <select1 id="rdo_handcapyn" ref="/root/main/empldata/empllist/handcapyn" class="radio_search" disabled="true" overflow="visible" appearance="full" cellspacing="10" cols="2" style="left:75px; top:446px; width:104px; height:19px; text-align:center; border-style:solid; ">
  1192. <choices>
  1193. <item>
  1194. <label>Yes</label>
  1195. <value>Y</value>
  1196. </item>
  1197. <item>
  1198. <label>No</label>
  1199. <value>N</value>
  1200. </item>
  1201. </choices>
  1202. </select1>
  1203. <select1 id="cmb_handcapgrde" ref="/root/main/empldata/empllist/handcapgrde" class="combo_essential" disabled="true" appearance="minimal" style="left:256px; top:444px; width:113px; height:19px; ">
  1204. <choices>
  1205. <itemset>
  1206. <label/>
  1207. <value/>
  1208. </itemset>
  1209. </choices>
  1210. </select1>
  1211. <select1 id="rdo_bhtrgtpsnyn" ref="/root/main/empldata/empllist/bhtrgtpsnyn" class="radio_search" disabled="true" overflow="visible" appearance="full" cellspacing="10" cols="2" style="left:75px; top:393px; width:104; height:19px; text-align:center; border-style:solid; ">
  1212. <choices>
  1213. <item>
  1214. <label>Yes</label>
  1215. <value>Y</value>
  1216. </item>
  1217. <item>
  1218. <label>No</label>
  1219. <value>N</value>
  1220. </item>
  1221. </choices>
  1222. </select1>
  1223. <select1 id="rdo_incmplcolorblind" ref="/root/main/empldata/empllist/incmplcolorblind" class="radio_search" disabled="true" overflow="visible" appearance="full" cellspacing="10" cols="2" style="left:600px; top:315px; width:104px; height:19px; text-align:center; border-style:solid; ">
  1224. <choices>
  1225. <item>
  1226. <label>Yes</label>
  1227. <value>Y</value>
  1228. </item>
  1229. <item>
  1230. <label>No</label>
  1231. <value>N</value>
  1232. </item>
  1233. </choices>
  1234. </select1>
  1235. <select1 id="cmb_bhpice" ref="/root/main/empldata/empllist/bhpice" class="combo_essential" disabled="true" appearance="minimal" style="left:1029px; top:392px; width:143px; height:19px; ">
  1236. <choices>
  1237. <itemset>
  1238. <label/>
  1239. <value/>
  1240. </itemset>
  1241. </choices>
  1242. </select1>
  1243. <caption id="caption68" class="cell_1" style="left:219px; top:288px; width:28px; height:23px; ">Cm</caption>
  1244. <caption id="caption69" class="cell_1" style="left:468px; top:288px; width:28px; height:23px; ">Kg</caption>
  1245. </case>
  1246. <case id="case3">
  1247. <line id="line7" class="line_3" style="x1:0px; y1:224px; x2:1190px; y2:224px; "/>
  1248. <line id="line60" class="line_3" style="x1:0px; y1:100px; x2:1193; y2:100px; "/>
  1249. <line id="line39" class="line_2" style="x1:0px; y1:52px; x2:1193; y2:52px; "/>
  1250. <line id="line40" class="line_2" style="x1:0px; y1:76px; x2:1193; y2:76px; "/>
  1251. <input id="ipt_spclpromotndd" ref="/root/main/empldata/empllist/spclpromotndd" class="input_default" disabled="true" inputtype="date" style="left:696px; top:80px; width:104px; height:19px; "/>
  1252. <input id="ipt_prestpayclsgradupdd" ref="/root/main/empldata/empllist/prestpayclsgradupdd" class="input_default" disabled="true" inputtype="date" style="left:1093px; top:80px; width:98px; height:19px; "/>
  1253. <line id="line73" class="line_2" style="x1:951px; y1:199px; x2:1185px; y2:199px; "/>
  1254. <select1 id="rdo_lbrunionrgstyn" ref="/root/main/empldata/empllist/lbrunionrgstyn" class="radio_search" disabled="true" overflow="visible" appearance="full" cols="2" style="left:1038px; top:132px; width:153px; height:19px; text-align:center; border-style:solid; ">
  1255. <choices>
  1256. <item>
  1257. <label>Yes</label>
  1258. <value>Y</value>
  1259. </item>
  1260. <item>
  1261. <label>No</label>
  1262. <value>N</value>
  1263. </item>
  1264. </choices>
  1265. </select1>
  1266. <caption id="caption82" class="cell_1" style="left:0px; top:30px; width:90; height:23px; vertical-align:middle; ">근무기관</caption>
  1267. <select1 id="rdo_retrduagelimyn" ref="/root/main/empldata/empllist/retrduagelimyn" class="radio_search" disabled="true" overflow="visible" appearance="full" cellspacing="0" cols="2" itemheight="18" itemwidth="50" style="left:894px; top:80px; width:105px; height:19px; text-align:center; border-style:solid; ">
  1268. <choices>
  1269. <item>
  1270. <label>Yes</label>
  1271. <value>Y</value>
  1272. </item>
  1273. <item>
  1274. <label>No</label>
  1275. <value>N</value>
  1276. </item>
  1277. </choices>
  1278. </select1>
  1279. <caption id="caption50" class="cell_1" style="left:955px; top:130px; width:81px; height:23px; vertical-align:middle; ">노조가입여부</caption>
  1280. <caption id="caption137" class="cell_1" style="left:955px; top:178px; width:81px; height:23px; vertical-align:middle; ">노조직책</caption>
  1281. <input id="ipt_prestgradgvnoffcorddd" ref="/root/main/empldata/empllist/prestgradgvnoffcorddd" class="input_default" disabled="true" inputtype="date" style="left:894px; top:56px; width:105px; height:19px; "/>
  1282. <select1 id="cmb_dutplceinst" ref="/root/main/empldata/empllist/dutplceinst" class="combo_essential" disabled="true" appearance="minimal" style="left:92px; top:32px; width:207px; height:19px; ">
  1283. <choices>
  1284. <itemset>
  1285. <label/>
  1286. <value/>
  1287. </itemset>
  1288. </choices>
  1289. </select1>
  1290. <caption id="caption149" class="cell_1" style="left:955px; top:154px; width:81px; height:23px; vertical-align:middle; ">노조가입일</caption>
  1291. <line id="line54" class="line_1" style="x1:955px; y1:125px; x2:1193px; y2:125px; "/>
  1292. <caption id="caption30" class="tit_2" style="left:5px; top:10px; width:144px; height:13px; ">기본인적사항3</caption>
  1293. <caption id="caption74" class="tit_2" style="left:960px; top:110px; width:95px; height:13px; ">노조</caption>
  1294. <caption id="caption31" class="cell_1" style="left:955px; top:202px; width:81px; height:23px; vertical-align:middle; ">노조탈퇴일</caption>
  1295. <caption id="caption75" class="cell_1" style="left:604px; top:78px; width:90px; height:23px; vertical-align:middle; ">특별승진일</caption>
  1296. <input id="ipt_lbrunionrgstdd" ref="/root/main/empldata/empllist/lbrunionrgstdd" class="input_default" disabled="true" inputtype="date" style="left:1038px; top:156px; width:153px; height:19px; "/>
  1297. <caption id="caption76" class="cell_1" style="left:604px; top:54px; width:90px; height:23px; vertical-align:middle; ">자동승진일</caption>
  1298. <input id="ipt_prestjobposorddd" ref="/root/main/empldata/empllist/prestjobposorddd" class="input_default" disabled="true" inputtype="date" style="left:894px; top:32px; width:105px; height:19px; "/>
  1299. <caption id="caption34" class="cell_1" style="left:1001px; top:54px; width:90px; height:23px; vertical-align:middle; ">현직책발령일</caption>
  1300. <input id="ipt_autpromotndd" ref="/root/main/empldata/empllist/autpromotndd" class="input_default" disabled="true" inputtype="date" style="left:696px; top:56px; width:104px; height:19px; "/>
  1301. <caption id="caption56" class="cell_1" style="left:604px; top:30px; width:90px; height:23px; vertical-align:middle; ">승진발령일</caption>
  1302. <line id="line59" class="line_1" style="x1:0px; y1:25px; x2:1193; y2:25px; "/>
  1303. <input id="ipt_prestjobrespgvnoffcorddd" ref="/root/main/empldata/empllist/prestjobrespgvnoffcorddd" class="input_default" disabled="true" inputtype="date" style="left:1093px; top:56px; width:98px; height:19px; "/>
  1304. <caption id="caption150" class="cell_1" style="left:802px; top:54px; width:90px; height:23px; vertical-align:middle; ">현직급발령일</caption>
  1305. <caption id="caption47" class="cell_1" style="left:1001px; top:78px; width:90px; height:23px; vertical-align:middle; ">현호봉승급일</caption>
  1306. <caption id="caption59" class="tit_2" style="left:5px; top:228px; width:95px; height:13px; ">겸직사항</caption>
  1307. <caption id="caption38" class="cell_1" style="left:802px; top:78px; width:90px; height:23px; vertical-align:middle; ">정년퇴직여부</caption>
  1308. <caption id="caption29" class="cell_1" style="left:0px; top:54px; width:90px; height:23px; vertical-align:middle; ">근무부(실)</caption>
  1309. <caption id="caption144" class="cell_1" style="left:802px; top:30px; width:90px; height:23px; vertical-align:middle; ">현직위발령일</caption>
  1310. <line id="line71" class="line_2" style="x1:955; y1:176px; x2:1193; y2:176px; "/>
  1311. <input id="ipt_lbrunionsecssdd" ref="/root/main/empldata/empllist/lbrunionsecssdd" class="input_default" disabled="true" inputtype="date" style="left:1038px; top:204px; width:153px; height:19px; "/>
  1312. <input id="ipt_promotngvnoffcorddd" ref="/root/main/empldata/empllist/promotngvnoffcorddd" class="input_default" disabled="true" inputtype="date" style="left:696px; top:32px; width:104px; height:19px; "/>
  1313. <line id="line61" class="line_1" style="x1:0px; y1:245px; x2:1193px; y2:245px; "/>
  1314. <select1 id="cmb_lbrunionjobresp" ref="/root/main/empldata/empllist/lbrunionjobresp" class="combo_essential" disabled="true" appearance="minimal" style="left:1038px; top:180px; width:153px; height:19px; ">
  1315. <choices>
  1316. <itemset>
  1317. <label/>
  1318. <value/>
  1319. </itemset>
  1320. </choices>
  1321. </select1>
  1322. <output id="opt_dutdeptcd" ref="/root/main/empldata/empllist/dutdeptnm" class="output_fix" style="left:189px; top:56px; width:110px; height:19px; "/>
  1323. <button id="btn_dutdeptcd" class="icon_search" disabled="true" style="left:171px; top:58px; width:16px; height:16px; ">
  1324. <caption/>
  1325. <script type="javascript" ev:event="DOMActivate">
  1326. <![CDATA[
  1327. /* 부서 코드 Help화면 Popup */
  1328. var recv_list = "dutdeptcd,dutdeptnm";
  1329. var instcd = cmb_dutplceinst.value;
  1330. rpbfOpenDeptCdHelp(ipt_dutdeptcd,recv_list,instcd,"instcd");
  1331. model.refresh();
  1332. ]]>
  1333. </script>
  1334. </button>
  1335. <input id="ipt_dutdeptcd" ref="/root/main/empldata/empllist/dutdeptcd" class="input_essential" disabled="true" navindex="5" required="true" style="left:92px; top:56px; width:77px; height:19px; ">
  1336. <script type="javascript" ev:event="xforms-value-changed">
  1337. <![CDATA[
  1338. /* 부서 코드 Validation Check
  1339. misfValidationCheck(Validation 종류(부서코드, 공통코드, 우편번호...), 공통코드군, 자료를 받을 Instance Node(콤마로 분류해서 넘기면됨)) */
  1340. misfValidationCheck("02", "", "dutdeptcd,dutdeptnm" );
  1341. model.refresh();
  1342. ]]>
  1343. </script>
  1344. </input>
  1345. <datagrid id="grd_ConcrOffc" nodeset="/root/main/concroffcord/concroffcordlist" caption="발령일^종료일^소속기관^부서^직위^직급^신직급^직책^보직(겸직)기관^보직(겸직)부서^사원번호|발령일^종료일^소속기관^부서^직위^직급^신직급^직책^보직(겸직)기관^보직(겸직)부서^사원번호" colsep="^" colwidth="107, 110, 136, 147, 107, 80, 85, 143, 113, 125, 100" mergecellsfixedrows="bycolrec" rowheader="seq" rowsep="|" style="left:0px; top:250px; width:1190px; height:225px; ">
  1346. <col disabled="true" ref="gvnoffcorddd" type="inputdate"/>
  1347. <col disabled="true" ref="termtodd" type="inputdate"/>
  1348. <col ref="instnm"/>
  1349. <col ref="unitnm"/>
  1350. <col ref="jobposnm"/>
  1351. <col ref="ojobgradnm"/>
  1352. <col ref="njobgradnm"/>
  1353. <col ref="jobrespnm"/>
  1354. <col ref="dutinstnm"/>
  1355. <col ref="dutunitnm"/>
  1356. <col ref="emplno" visibility="hidden"/>
  1357. </datagrid>
  1358. <group id="group5" style="left:0px; top:102px; width:945px; height:121px; ">
  1359. <datagrid id="grd_forgnlist" nodeset="/root/main/forgn/forgnlist" caption="외국어명^종합^시험명^점수^기타^사원번호^일련번호^최초등록자ID^최초등록일시^최종등록자ID^최종등록일시^일련번호OLD|외국어명^종합^시험명^점수^기타^사원번호^일련번호^최초등록자ID^최초등록일시^최종등록자ID^최종등록일시^일련번호OLD" colsep="^" colwidth="132, 116, 154, 103, 401, 100, 100, 100, 100, 100, 100, 100" mergecellsfixedrows="bycolrec" rowheader="update" rowsep="|" style="left:0px; top:30px; width:945px; height:90px; ">
  1360. <col id="forgnlangcd" disabled="true" ref="forgnlangcd" type="combo">
  1361. <choices>
  1362. <itemset>
  1363. <label/>
  1364. <value/>
  1365. </itemset>
  1366. </choices>
  1367. </col>
  1368. <col id="colggrde" disabled="true" ref="colggrde" type="combo">
  1369. <choices>
  1370. <itemset>
  1371. <label/>
  1372. <value/>
  1373. </itemset>
  1374. </choices>
  1375. </col>
  1376. <col disabled="true" ref="examnm" type="input"/>
  1377. <col disabled="true" ref="scor" type="input"/>
  1378. <col disabled="true" ref="rem" type="input"/>
  1379. <col ref="emplno" visibility="hidden"/>
  1380. <col ref="seqno" visibility="hidden"/>
  1381. <col ref="fstrgstrid" visibility="hidden"/>
  1382. <col ref="fstrgstdt" visibility="hidden"/>
  1383. <col ref="lastupdtrid" visibility="hidden"/>
  1384. <col ref="lastupdtdt" visibility="hidden"/>
  1385. <col ref="oldseqno" visibility="hidden"/>
  1386. </datagrid>
  1387. <line id="line53" class="line_1" style="x1:0px; y1:25px; x2:945px; y2:25px; "/>
  1388. <caption id="caption41" class="tit_2" style="left:5px; top:10px; width:95px; height:13px; ">외국어사항</caption>
  1389. <button id="btn_grddelforgnlist" class="btn2_letter3" visibility="hidden" style="left:822px; top:4px; width:53px; height:19px; ">
  1390. <caption>행삭제</caption>
  1391. <script type="javascript" ev:event="DOMActivate">
  1392. <![CDATA[
  1393. misfGridIUD(grd_forgnlist, "D");
  1394. ]]>
  1395. </script>
  1396. </button>
  1397. <button id="btn_grdaddforgnlist" class="btn2_letter3" visibility="hidden" style="left:766px; top:4px; width:53px; height:19px; ">
  1398. <caption>행추가</caption>
  1399. <script type="javascript" ev:event="DOMActivate">
  1400. <![CDATA[
  1401. misfGridIUD(grd_forgnlist, "A");
  1402. ]]>
  1403. </script>
  1404. </button>
  1405. <button id="btn_saveforgnlistexcel" class="btn2_letter4" visibility="hidden" style="left:878px; top:4px; width:64px; height:19px; ">
  1406. <caption>엑셀저장</caption>
  1407. <script type="javascript" ev:event="DOMActivate">
  1408. <![CDATA[
  1409. var fileName = window.fileDialog ("save", ",", false, "excel", "xls", "All Files (*.*)|*.*|Excel Files(*.xls)|*.xls");
  1410. if (fileName != "")
  1411. {
  1412. grd_forgnlist.saveExcel(fileName);
  1413. }
  1414. ]]>
  1415. </script>
  1416. </button>
  1417. </group>
  1418. <button id="btn_dutteamcd" class="icon_search" disabled="true" style="left:171px; top:82px; width:16px; height:16px; ">
  1419. <caption/>
  1420. <script type="javascript" ev:event="DOMActivate">
  1421. <![CDATA[
  1422. /* 부서 코드 Help화면 Popup */
  1423. var recv_list = "dutteamcd,dutteamnm";
  1424. var instcd = cmb_dutplceinst.value;
  1425. rpbfOpenDeptCdHelp(ipt_dutteamcd,recv_list,instcd,"instcd");
  1426. model.refresh();
  1427. ]]>
  1428. </script>
  1429. </button>
  1430. <output id="opt_dutteamnm" ref="/root/main/empldata/empllist/dutteamnm" class="output_fix" style="left:189px; top:80px; width:110px; height:19px; "/>
  1431. <input id="ipt_dutteamcd" ref="/root/main/empldata/empllist/dutteamcd" class="input_essential" disabled="true" navindex="5" required="true" style="left:92px; top:80px; width:77px; height:19px; ">
  1432. <script type="javascript" ev:event="xforms-value-changed">
  1433. <![CDATA[
  1434. /* 부서 코드 Validation Check
  1435. misfValidationCheck(Validation 종류(부서코드, 공통코드, 우편번호...), 공통코드군, 자료를 받을 Instance Node(콤마로 분류해서 넘기면됨)) */
  1436. misfValidationCheck("02", "", "dutteamcd,dutteamnm" );
  1437. model.refresh();
  1438. ]]>
  1439. </script>
  1440. </input>
  1441. <caption id="caption33" class="cell_1" style="left:0px; top:78px; width:90px; height:23px; vertical-align:middle; ">근무과(팀)</caption>
  1442. <output id="opt_dutunitnm" ref="/root/main/empldata/empllist/dutunitnm" class="output_fix" style="left:492px; top:32px; width:110px; height:19px; "/>
  1443. <input id="ipt_dutunitcd" ref="/root/main/empldata/empllist/dutunitcd" class="input_essential" disabled="true" navindex="5" required="true" style="left:393px; top:32px; width:77px; height:19px; ">
  1444. <script type="javascript" ev:event="xforms-value-changed">
  1445. <![CDATA[
  1446. /* 부서 코드 Validation Check
  1447. misfValidationCheck(Validation 종류(부서코드, 공통코드, 우편번호...), 공통코드군, 자료를 받을 Instance Node(콤마로 분류해서 넘기면됨)) */
  1448. misfValidationCheck("02", "", "dutunitcd,dutunitnm" );
  1449. model.refresh();
  1450. ]]>
  1451. </script>
  1452. </input>
  1453. <caption id="caption35" class="cell_1" style="left:301px; top:30px; width:90; height:23px; vertical-align:middle; ">근무부서</caption>
  1454. <button id="btn_dutunitcd" class="icon_search" disabled="true" style="left:474px; top:34px; width:16px; height:16px; ">
  1455. <caption/>
  1456. <script type="javascript" ev:event="DOMActivate">
  1457. <![CDATA[
  1458. /* 부서 코드 Help화면 Popup */
  1459. var recv_list = "dutunitcd,dutunitnm";
  1460. var instcd = cmb_dutplceinst.value;
  1461. rpbfOpenDeptCdHelp(ipt_dutunitcd,recv_list,instcd,"instcd");
  1462. model.refresh();
  1463. ]]>
  1464. </script>
  1465. </button>
  1466. </case>
  1467. <case id="case4">
  1468. <datagrid id="grd_famylist" nodeset="/root/main/famy/famylist" caption="성명^관계^주민번호^주민번호^학력^직업^진료비감면여부^동거여부^결혼여부^사망여부^장애여부^기간^기간^삭제^비고^사번^일련번호^주민번호^최초등록자ID^최초등록일시^최종등록자ID^최종등록일시^순번OLD|성명^관계^앞자리^뒷자리^학력^직업^진료비감면여부^동거여부^결혼여부^사망여부^장애여부^시작일^종료일^삭제^비고^사번^일련번호^주민번호^최초등록자ID^최초등록일시^최종등록자ID^최종등록일시^순번OLD" colsep="^" colwidth="82, 92, 75, 73, 111, 106, 58, 35, 35, 32, 32, 100, 100, 35, 186, 37, 33, 33, 40, 37, 47, 36, 43" mergecellsfixedrows="bycolrec" rowheader="update" rowsep="|" style="left:0px; top:30px; width:1193px; height:234px; ">
  1469. <col disabled="true" ref="name" type="input"/>
  1470. <col id="famyrel" disabled="true" ref="famyrel" type="combo">
  1471. <choices>
  1472. <itemset>
  1473. <label/>
  1474. <value/>
  1475. </itemset>
  1476. </choices>
  1477. </col>
  1478. <col disabled="true" ref="rregno1" type="input" maxlength="6" style="text-align:center; vertical-align:middle; "/>
  1479. <col disabled="true" ref="rregno2" type="input" maxlength="7" style="text-align:center; vertical-align:middle; "/>
  1480. <col id="scholcd" disabled="true" ref="scholcd" type="combo">
  1481. <choices>
  1482. <itemset>
  1483. <label/>
  1484. <value/>
  1485. </itemset>
  1486. </choices>
  1487. </col>
  1488. <col id="jobcd" disabled="true" ref="jobcd" type="combo">
  1489. <choices>
  1490. <itemset>
  1491. <label/>
  1492. <value/>
  1493. </itemset>
  1494. </choices>
  1495. </col>
  1496. <col checkvalue="Y,N" disabled="true" ref="ordamtreductyn" type="checkbox"/>
  1497. <col checkvalue="Y,N" disabled="true" ref="lvnsmhoseyn" type="checkbox"/>
  1498. <col checkvalue="Y,N" disabled="true" ref="maryyn" type="checkbox"/>
  1499. <col checkvalue="Y,N" disabled="true" ref="dethyn" type="checkbox"/>
  1500. <col checkvalue="Y,N" disabled="true" ref="handcapyn" type="checkbox"/>
  1501. <col disabled="true" ref="appfromdd" type="inputdate"/>
  1502. <col disabled="true" ref="apptodd" type="inputdate"/>
  1503. <col checkvalue="Y,N" disabled="true" ref="delyn" type="checkbox"/>
  1504. <col disabled="true" ref="cmt" type="input"/>
  1505. <col ref="emplno" visibility="hidden"/>
  1506. <col ref="seqno" visibility="hidden"/>
  1507. <col ref="rregno" visibility="hidden"/>
  1508. <col ref="fstrgstrid" visibility="hidden"/>
  1509. <col ref="fstrgstdt" visibility="hidden"/>
  1510. <col ref="lastupdtrid" visibility="hidden"/>
  1511. <col ref="lastupdtdt" visibility="hidden"/>
  1512. <col ref="oldseqno" visibility="hidden"/>
  1513. </datagrid>
  1514. <line id="line119" class="line_1" style="x1:0px; y1:25px; x2:1193px; y2:25px; "/>
  1515. <caption id="caption162" class="tit_2" style="left:5px; top:10px; width:144px; height:13px; ">가족사항</caption>
  1516. <button id="btn_grdaddfamylist" class="btn2_letter3" visibility="hidden" style="left:1018px; top:4px; width:53px; height:19px; ">
  1517. <caption>행추가</caption>
  1518. <script type="javascript" ev:event="DOMActivate">
  1519. <![CDATA[
  1520. misfGridIUD(grd_famylist, "A");
  1521. ]]>
  1522. </script>
  1523. </button>
  1524. <button id="btn_grddelfamylist" class="btn2_letter3" visibility="hidden" style="left:1073px; top:4px; width:53px; height:19px; ">
  1525. <caption>행삭제</caption>
  1526. <script type="javascript" ev:event="DOMActivate">
  1527. <![CDATA[
  1528. misfGridIUD(grd_famylist, "D");
  1529. ]]>
  1530. </script>
  1531. </button>
  1532. <button id="btn_savefamylistexcel" class="btn2_letter4" visibility="hidden" style="left:1128px; top:4px; width:64px; height:19px; ">
  1533. <caption>엑셀저장</caption>
  1534. <script type="javascript" ev:event="DOMActivate">
  1535. <![CDATA[
  1536. var fileName = window.fileDialog ("save", ",", false, "excel", "xls", "All Files (*.*)|*.*|Excel Files(*.xls)|*.xls");
  1537. if (fileName != "")
  1538. {
  1539. grd_famylist.saveExcel(fileName);
  1540. }
  1541. ]]>
  1542. </script>
  1543. </button>
  1544. <datagrid id="grd_famyhistlist" nodeset="/root/main/famyhist/famyhistlist" visibility="hidden" caption="성명^관계^주민번호^주민번호^학력^직업^진료비감면여부^동거여부^결혼여부^사망여부^장애여부^기간^기간^삭제^비고^사번^일련번호^주민번호^최초등록자ID^최초등록일시^최종등록자ID^최종등록일시^순번OLD|성명^관계^앞자리^뒷자리^학력^직업^진료비감면여부^동거여부^결혼여부^사망여부^장애여부^시작일^종료일^삭제^비고^사번^일련번호^주민번호^최초등록자ID^최초등록일시^최종등록자ID^최종등록일시^순번OLD" colsep="^" colwidth="82, 92, 81, 82, 111, 106, 58, 35, 35, 32, 30, 93, 92, 35, 190, 37, 33, 33, 40, 37, 47, 36, 43" mergecellsfixedrows="bycolrec" rowheader="update" rowsep="|" style="left:0px; top:294px; width:1193px; height:181px; ">
  1545. <col disabled="true" ref="name"/>
  1546. <col id="col2" disabled="true" ref="famyrel" type="combo">
  1547. <choices>
  1548. <itemset>
  1549. <label/>
  1550. <value/>
  1551. </itemset>
  1552. </choices>
  1553. </col>
  1554. <col disabled="true" ref="rregno1" maxlength="6" style="text-align:center; vertical-align:middle; "/>
  1555. <col disabled="true" ref="rregno2" maxlength="7" style="text-align:center; vertical-align:middle; "/>
  1556. <col id="col3" disabled="true" ref="scholcd" type="combo">
  1557. <choices>
  1558. <itemset>
  1559. <label/>
  1560. <value/>
  1561. </itemset>
  1562. </choices>
  1563. </col>
  1564. <col id="col4" disabled="true" ref="jobcd" type="combo">
  1565. <choices>
  1566. <itemset>
  1567. <label/>
  1568. <value/>
  1569. </itemset>
  1570. </choices>
  1571. </col>
  1572. <col checkvalue="Y,N" disabled="true" ref="ordamtreductyn" type="checkbox"/>
  1573. <col checkvalue="Y,N" disabled="true" ref="lvnsmhoseyn" type="checkbox"/>
  1574. <col checkvalue="Y,N" disabled="true" ref="maryyn" type="checkbox"/>
  1575. <col checkvalue="Y,N" disabled="true" ref="dethyn" type="checkbox"/>
  1576. <col checkvalue="Y,N" disabled="true" ref="handcapyn" type="checkbox"/>
  1577. <col disabled="true" ref="appfromdd" type="inputdate"/>
  1578. <col disabled="true" ref="apptodd" type="inputdate"/>
  1579. <col checkvalue="Y,N" ref="delyn" type="checkbox"/>
  1580. <col disabled="true" ref="cmt"/>
  1581. <col ref="emplno" visibility="hidden"/>
  1582. <col ref="seqno" visibility="hidden"/>
  1583. <col ref="rregno" visibility="hidden"/>
  1584. <col ref="fstrgstrid" visibility="hidden"/>
  1585. <col ref="fstrgstdt" visibility="hidden"/>
  1586. <col ref="lastupdtrid" visibility="hidden"/>
  1587. <col ref="lastupdtdt" visibility="hidden"/>
  1588. <col ref="oldseqno" visibility="hidden"/>
  1589. </datagrid>
  1590. <line id="line10" class="line_1" visibility="hidden" style="x1:0px; y1:289px; x2:1193px; y2:289px; "/>
  1591. <caption id="caption36" class="tit_2" visibility="hidden" style="left:5px; top:274px; width:144px; height:13px; ">가족사항 History</caption>
  1592. <button id="btn_famyHist" class="btn2_letter6" visibility="hidden" style="left:842px; top:268px; width:86px; height:19px; ">
  1593. <caption>가족History</caption>
  1594. <script type="javascript" ev:event="DOMActivate">
  1595. <![CDATA[
  1596. caption36.visible = true;
  1597. line10.visible = true;
  1598. grd_famyhistlist.attribute("visibility") = "visible";
  1599. grd_hdfamyhistlist.attribute("visibility") = "hidden";
  1600. caption64.visible = false;
  1601. btn_grdaddhdfamyhistlist.visible = false;
  1602. btn_grddelhdfamyhistlist.visible = false;
  1603. btn_savehdfamyhistlistexcel.visible = false;
  1604. ]]>
  1605. </script>
  1606. </button>
  1607. <button id="btn_maryhist" class="btn2_letter6" visibility="hidden" style="left:930px; top:268px; width:86px; height:19px; ">
  1608. <caption>가장History</caption>
  1609. <script type="javascript" ev:event="DOMActivate">
  1610. <![CDATA[
  1611. caption36.visible = false;
  1612. line10.visible = true;
  1613. grd_famyhistlist.attribute("visibility") = "hidden";
  1614. grd_hdfamyhistlist.attribute("visibility") = "visible";
  1615. caption64.visible = true;
  1616. btn_grdaddhdfamyhistlist.visible = true;
  1617. btn_grddelhdfamyhistlist.visible = true;
  1618. btn_savehdfamyhistlistexcel.visible = true;
  1619. ]]>
  1620. </script>
  1621. </button>
  1622. <datagrid id="grd_hdfamyhistlist" nodeset="/root/main/hdfamyynhist/hdfamyynhistlist" visibility="hidden" caption="적용일자^가장여부^비고^사번^최초등록자ID^최초등록일시^최종등록자ID^최종등록일시|적용일자^가장여부^비고^사번^최초등록자ID^최초등록일시^최종등록자ID^최종등록일시" colsep="^" colwidth="138, 111, 906, 37, 40, 37, 47, 36" mergecellsfixedrows="bycolrec" rowheader="update" rowsep="|" style="left:0px; top:294px; width:1193px; height:172px; ">
  1623. <col disabled="true" ref="appdd" type="inputdate"/>
  1624. <col id="col5" disabled="true" ref="hdfamyyn" type="combo">
  1625. <choices>
  1626. <item>
  1627. <label>가장</label>
  1628. <value>Y</value>
  1629. </item>
  1630. <item>
  1631. <label>비가장</label>
  1632. <value>N</value>
  1633. </item>
  1634. </choices>
  1635. </col>
  1636. <col disabled="true" ref="cmt" type="input"/>
  1637. <col ref="emplno" visibility="hidden"/>
  1638. <col ref="fstrgstrid" visibility="hidden"/>
  1639. <col ref="fstrgstdt" visibility="hidden"/>
  1640. <col ref="lastupdtrid" visibility="hidden"/>
  1641. <col ref="lastupdtdt" visibility="hidden"/>
  1642. </datagrid>
  1643. <button id="btn_grddelhdfamyhistlist" class="btn2_letter3" visibility="hidden" style="left:1073px; top:268px; width:53px; height:19px; ">
  1644. <caption>행삭제</caption>
  1645. <script type="javascript" ev:event="DOMActivate">
  1646. <![CDATA[
  1647. misfGridIUD(grd_hdfamyhistlist, "D");
  1648. ]]>
  1649. </script>
  1650. </button>
  1651. <button id="btn_grdaddhdfamyhistlist" class="btn2_letter3" visibility="hidden" style="left:1018px; top:268px; width:53px; height:19px; ">
  1652. <caption>행추가</caption>
  1653. <script type="javascript" ev:event="DOMActivate">
  1654. <![CDATA[
  1655. misfGridIUD(grd_hdfamyhistlist, "A");
  1656. ]]>
  1657. </script>
  1658. </button>
  1659. <button id="btn_savehdfamyhistlistexcel" class="btn2_letter4" visibility="hidden" style="left:1128px; top:268px; width:64px; height:19px; ">
  1660. <caption>엑셀저장</caption>
  1661. <script type="javascript" ev:event="DOMActivate">
  1662. <![CDATA[
  1663. var fileName = window.fileDialog ("save", ",", false, "excel", "xls", "All Files (*.*)|*.*|Excel Files(*.xls)|*.xls");
  1664. if (fileName != "")
  1665. {
  1666. grd_hdfamyhistlist.saveExcel(fileName);
  1667. }
  1668. ]]>
  1669. </script>
  1670. </button>
  1671. <caption id="caption64" class="tit_2" visibility="hidden" style="left:5px; top:275px; width:144px; height:13px; ">결혼가장 History</caption>
  1672. </case>
  1673. <case id="case5">
  1674. <caption id="caption444" class="tit_2" style="left:5px; top:10px; width:144px; height:13px; ">학력사항</caption>
  1675. <datagrid id="grd_scholist" nodeset="/root/main/scho/scholist" caption="학력구분^학교코드^학교명^입학일^졸업일^수업년한^전공^전공명^부전공^부전공명^학위^학위등록번호^입사후여부^부전공과목^승급인정^편입여부^졸업횟수^사원번호^일련번호^최초등록자ID^최초등록일시^최종수정자ID^최종수정일시^일련번호OLD|학력구분^학교코드^학교명^입학일^졸업일^수업년한^전공^전공명^부전공^부전공명^학위^학위등록번호^입사후여부^부전공과목^승급인정^편입여부^졸업횟수^사원번호^일련번호^최초등록자ID^최초등록일시^최종수정자ID^최종수정일시^일련번호OLD" colsep="^" colwidth="87, 72, 110, 90, 88, 37, 64, 100, 63, 100, 57, 57, 45, 85, 33, 32, 33, 30, 30, 37, 27, 35, 35, 41" mergecellsfixedrows="bycolrec" rowheader="update" rowsep="|" style="left:0px; top:30px; width:1193px; height:436px; ">
  1676. <col id="scholflag" disabled="true" ref="scholflag" type="combo">
  1677. <choices>
  1678. <itemset>
  1679. <label/>
  1680. <value/>
  1681. </itemset>
  1682. </choices>
  1683. </col>
  1684. <col id="schoolcd" disabled="true" ref="schoolcd" type="inputbutton"/>
  1685. <col disabled="true" ref="schoolnm" type="input"/>
  1686. <col disabled="true" ref="admischooldd" type="inputdate"/>
  1687. <col disabled="true" ref="gradutndd" type="inputdate"/>
  1688. <col disabled="true" ref="lesnfixyearpd" type="input"/>
  1689. <col disabled="true" ref="frmrmert" type="inputbutton"/>
  1690. <col ref="frmrmertnm"/>
  1691. <col disabled="true" ref="subspcl" type="inputbutton"/>
  1692. <col ref="subspclnm"/>
  1693. <col id="acdmydg" disabled="true" ref="acdmydg" type="combo">
  1694. <choices>
  1695. <itemset>
  1696. <label/>
  1697. <value/>
  1698. </itemset>
  1699. </choices>
  1700. </col>
  1701. <col disabled="true" ref="acdmydgno" type="input"/>
  1702. <col checkvalue="Y,N" disabled="true" ref="aftentcoyn" type="checkbox"/>
  1703. <col disabled="true" ref="subspclitem" type="input"/>
  1704. <col checkvalue="Y,N" disabled="true" ref="graduprcog" type="checkbox"/>
  1705. <col checkvalue="Y,N" disabled="true" ref="incportyn" type="checkbox"/>
  1706. <col disabled="true" ref="gradutnno" type="input"/>
  1707. <col ref="emplno" visibility="hidden"/>
  1708. <col ref="seqno" visibility="hidden"/>
  1709. <col ref="fstrgstrid" visibility="hidden"/>
  1710. <col ref="fstrgstdt" visibility="hidden"/>
  1711. <col ref="lastupdtrid" visibility="hidden"/>
  1712. <col ref="lastupdtdt" visibility="hidden"/>
  1713. <col ref="oldseqno" visibility="hidden"/>
  1714. <script type="javascript" ev:event="onbuttonclick">
  1715. <![CDATA[
  1716. if (grd_scholist.colAttribute(grd_scholist.col,"ref") == "schoolcd" ) { //학교코드
  1717. var recv_list = "schoolcd,schoolnm";
  1718. rpbfOpenComCdHelp(grd_scholist,"R0141", recv_list);
  1719. model.refresh();
  1720. }
  1721. else if (grd_scholist.colAttribute(grd_scholist.col,"ref") == "frmrmert" ) { //전공
  1722. var recv_list = "frmrmert,frmrmertnm";
  1723. rpbfOpenComCdHelp(grd_scholist,"R0089", recv_list);
  1724. model.refresh();
  1725. }
  1726. else if (grd_scholist.colAttribute(grd_scholist.col,"ref") == "subspcl" ) { //부전공
  1727. var recv_list = "subspcl,subspclnm";
  1728. rpbfOpenComCdHelp(grd_scholist,"R0089", recv_list);
  1729. model.refresh();
  1730. }
  1731. ]]>
  1732. </script>
  1733. <script type="javascript" ev:event="xforms-value-changed">
  1734. <![CDATA[
  1735. if (grd_scholist.colAttribute(grd_scholist.col,"ref") == "schoolcd" ) { //학교코드
  1736. var recv_list = "schoolcd,schoolnm";
  1737. misfValidationCheck("03", "R0141",recv_list);
  1738. model.refresh();
  1739. }
  1740. else if (grd_scholist.colAttribute(grd_scholist.col,"ref") == "frmrmert" ) { //전공
  1741. var recv_list = "frmrmert,frmrmertnm";
  1742. misfValidationCheck("03", "R0089",recv_list);
  1743. model.refresh();
  1744. }
  1745. else if (grd_scholist.colAttribute(grd_scholist.col,"ref") == "subspcl" ) { //부전공
  1746. var recv_list = "subspcl,subspclnm";
  1747. misfValidationCheck("03", "R0089",recv_list);
  1748. model.refresh();
  1749. }
  1750. ]]>
  1751. </script>
  1752. </datagrid>
  1753. <line id="line294" class="line_1" style="x1:0px; y1:25px; x2:1193px; y2:25px; "/>
  1754. <button id="btn_grddelscholist" class="btn2_letter3" visibility="hidden" style="left:1073px; top:4px; width:53px; height:19px; ">
  1755. <caption>행삭제</caption>
  1756. <script type="javascript" ev:event="DOMActivate">
  1757. <![CDATA[
  1758. misfGridIUD(grd_scholist, "D");
  1759. ]]>
  1760. </script>
  1761. </button>
  1762. <button id="btn_grdaddscholist" class="btn2_letter3" visibility="hidden" style="left:1018px; top:4px; width:53px; height:19px; ">
  1763. <caption>행추가</caption>
  1764. <script type="javascript" ev:event="DOMActivate">
  1765. <![CDATA[
  1766. misfGridIUD(grd_scholist, "A");
  1767. ]]>
  1768. </script>
  1769. </button>
  1770. <button id="btn_savescholistexcel" class="btn2_letter4" visibility="hidden" style="left:1128px; top:4px; width:64px; height:19px; ">
  1771. <caption>엑셀저장</caption>
  1772. <script type="javascript" ev:event="DOMActivate">
  1773. <![CDATA[
  1774. var fileName = window.fileDialog ("save", ",", false, "excel", "xls", "All Files (*.*)|*.*|Excel Files(*.xls)|*.xls");
  1775. if (fileName != "")
  1776. {
  1777. grd_scholist.saveExcel(fileName);
  1778. }
  1779. ]]>
  1780. </script>
  1781. </button>
  1782. </case>
  1783. <case id="case6">
  1784. <datagrid id="grd_gvnoffcordlist" nodeset="/root/main/emplnogvnoffcord/emplnogvnoffcordlist" caption="발령일자^발령^소속기관^소속부(실)^소속과(팀)^소속부서^근무기관^근무부서^직군^직렬^직종^직위^직책^직급^호봉^신직급^년차^비고|발령일자^발령^소속기관^소속부(실)^소속과(팀)^소속부서^근무기관^근무부서^직군^직렬^직종^직위^직책^직급^호봉^신직급^년차^비고" colsep="^" colwidth="90, 106, 99, 106, 100, 94, 100, 100, 89, 83, 95, 82, 83, 73, 41, 43, 40, 134" dataheight="25" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="25" rowsep="|" style="left:0px; top:30px; width:1193px; height:436px; ">
  1785. <col disabled="true" ref="gvnoffcorddd" type="inputdate"/>
  1786. <col ref="gvnoffcordnm"/>
  1787. <col ref="instnm"/>
  1788. <col ref="deptnm" visibility="hidden"/>
  1789. <col ref="teamnm" visibility="hidden"/>
  1790. <col ref="unitnm"/>
  1791. <col ref="dutinstnm"/>
  1792. <col ref="dutunitnm"/>
  1793. <col ref="grupjoblnnm"/>
  1794. <col ref="joblnnm"/>
  1795. <col ref="jobkindnm"/>
  1796. <col ref="jobposnm"/>
  1797. <col ref="jobrespnm"/>
  1798. <col ref="ojobgradnm"/>
  1799. <col ref="payclsnm"/>
  1800. <col ref="njobgradnm"/>
  1801. <col ref="anual"/>
  1802. <col ref="cmt"/>
  1803. </datagrid>
  1804. <caption id="caption460" class="tit_2" style="left:5px; top:10px; width:144px; height:13px; ">발령이동사항</caption>
  1805. <line id="line300" class="line_1" style="x1:0px; y1:25px; x2:1193px; y2:25px; "/>
  1806. </case>
  1807. <case id="case7">
  1808. <line id="line306" class="line_1" style="x1:0px; y1:25px; x2:1193px; y2:25px; "/>
  1809. <caption id="caption479" class="tit_2" style="left:5px; top:10px; width:144px; height:13px; ">자격면허사항</caption>
  1810. <datagrid id="grd_licnlist" nodeset="/root/main/licn/licnlist" caption="자격/면허^자격면허명^발급기관^발급번호^취득일자^자격수당^선임수당^비고^사번^최초등록자ID^최초등록일시^최종수정자ID^최종수정일시^자격면허코드OLD|자격/면허^자격면허명^발급기관^발급번호^취득일자^자격수당^선임수당^비고^사번^최초등록자ID^최초등록일시^최종수정자ID^최종수정일시^자격면허코드OLD" colsep="^" colwidth="96, 152, 134, 99, 114, 88, 66, 403, 42, 43, 42, 43, 37, 42" mergecellsfixedrows="bycolrec" rowheader="update" rowsep="|" style="left:0px; top:30px; width:1193px; height:436px; ">
  1811. <col disabled="true" ref="licnscd" type="inputbutton"/>
  1812. <col ref="licnsnm"/>
  1813. <col disabled="true" ref="issinst" type="input">
  1814. <choices>
  1815. <itemset>
  1816. <label/>
  1817. <value/>
  1818. </itemset>
  1819. </choices>
  1820. </col>
  1821. <col disabled="true" ref="licnsno" type="input"/>
  1822. <col disabled="true" ref="possndd" type="inputdate"/>
  1823. <col checkvalue="Y,N" disabled="true" ref="licnalwnflag" type="combo">
  1824. <choices>
  1825. <item>
  1826. <label>A자격</label>
  1827. <value>A</value>
  1828. </item>
  1829. <item>
  1830. <label>B자격</label>
  1831. <value>B</value>
  1832. </item>
  1833. <item>
  1834. <label>미적용</label>
  1835. <value>Z</value>
  1836. </item>
  1837. </choices>
  1838. </col>
  1839. <col checkvalue="Y,N" disabled="true" ref="senirtyalwn" type="checkbox"/>
  1840. <col disabled="true" ref="cmt" type="input"/>
  1841. <col ref="emplno" visibility="hidden"/>
  1842. <col ref="fstrgstrid" visibility="hidden"/>
  1843. <col ref="fstrgstdt" visibility="hidden"/>
  1844. <col ref="lastupdtrid" visibility="hidden"/>
  1845. <col ref="lastupdtdt" visibility="hidden"/>
  1846. <col ref="oldlicnscd" visibility="hidden"/>
  1847. <col ref="seqno" visibility="hidden"/>
  1848. <script type="javascript" ev:event="onbuttonclick">
  1849. <![CDATA[
  1850. if (grd_licnlist.colAttribute(grd_licnlist.col,"ref") == "licnscd" ) { //자격면허코드
  1851. var recv_list = "licnscd,licnsnm";
  1852. rpbfOpenComCdHelp(grd_licnlist,"R0088", recv_list);
  1853. model.refresh();
  1854. }
  1855. ]]>
  1856. </script>
  1857. <script type="javascript" ev:event="xforms-value-changed">
  1858. <![CDATA[
  1859. if (grd_licnlist.colAttribute(grd_licnlist.col,"ref") == "licnscd" ) { //자격면허코드
  1860. var recv_list = "licnscd,licnsnm";
  1861. misfValidationCheck("03", "R0088",recv_list);
  1862. model.refresh();
  1863. }
  1864. ]]>
  1865. </script>
  1866. </datagrid>
  1867. <button id="btn_grdaddlicnlist" class="btn2_letter3" visibility="hidden" style="left:1018px; top:4px; width:53px; height:19px; ">
  1868. <caption>행추가</caption>
  1869. <script type="javascript" ev:event="DOMActivate">
  1870. <![CDATA[
  1871. misfGridIUD(grd_licnlist, "A");
  1872. ]]>
  1873. </script>
  1874. </button>
  1875. <button id="btn_savelicnlistexcel" class="btn2_letter4" visibility="hidden" style="left:1128px; top:4px; width:64px; height:19px; ">
  1876. <caption>엑셀저장</caption>
  1877. <script type="javascript" ev:event="DOMActivate">
  1878. <![CDATA[
  1879. var fileName = window.fileDialog ("save", ",", false, "excel", "xls", "All Files (*.*)|*.*|Excel Files(*.xls)|*.xls");
  1880. if (fileName != "")
  1881. {
  1882. grd_licnlist.saveExcel(fileName);
  1883. }
  1884. ]]>
  1885. </script>
  1886. </button>
  1887. <button id="btn_grddellicnlist" class="btn2_letter3" visibility="hidden" style="left:1073px; top:4px; width:53px; height:19px; ">
  1888. <caption>행삭제</caption>
  1889. <script type="javascript" ev:event="DOMActivate">
  1890. <![CDATA[
  1891. misfGridIUD(grd_licnlist, "D");
  1892. ]]>
  1893. </script>
  1894. </button>
  1895. </case>
  1896. <case id="case8">
  1897. <line id="line316" class="line_1" style="x1:0px; y1:25px; x2:1193px; y2:25px; "/>
  1898. <datagrid id="grd_becrlist" nodeset="/root/main/becr/becrlist" caption="회사명^부서명^직위(책)명^기간^기간^기간^기간^근무년수^주요업무^퇴직사유^사원번호^일련번호^최초등록자ID^최초등록일시^최종수정자ID^최종수정일시^일련번호OLD|회사명^부서명^직위(책)명^입사일^퇴사일^년수^월수^근무년수^주요업무^퇴직사유^사원번호^일련번호^최초등록자ID^최초등록일시^최종수정자ID^최종수정일시^일련번호OLD" colsep="^" colwidth="140, 159, 139, 107, 101, 43, 43, 78, 147, 199, 40, 40, 48, 43, 42, 39, 40" mergecellsfixedrows="bycolrec" rowheader="update" rowsep="|" style="left:0px; top:264px; width:1193px; height:202px; ">
  1899. <col disabled="true" ref="cmpynm" type="input"/>
  1900. <col disabled="true" ref="deptnm" type="input"/>
  1901. <col disabled="true" ref="jobposrespnm" type="input"/>
  1902. <col disabled="true" ref="entcodd" type="inputdate"/>
  1903. <col disabled="true" ref="retiredd" type="inputdate"/>
  1904. <col ref="dutyyno"/>
  1905. <col ref="dutmmno"/>
  1906. <col disabled="true" ref="dutyearno" type="input" style="text-align:right; vertical-align:middle; "/>
  1907. <col disabled="true" ref="mainbiz" type="input"/>
  1908. <col disabled="true" ref="retireresn" type="input"/>
  1909. <col ref="emplno" visibility="hidden"/>
  1910. <col ref="seqno" visibility="hidden"/>
  1911. <col ref="fstrgstrid" visibility="hidden"/>
  1912. <col ref="fstrgstdt" visibility="hidden"/>
  1913. <col ref="lastupdtrid" visibility="hidden"/>
  1914. <col ref="lastupdtdt" visibility="hidden"/>
  1915. <col ref="oldseqno" visibility="hidden"/>
  1916. </datagrid>
  1917. <datagrid id="grd_afcrlist" nodeset="/root/main/afcr/afcrlist" caption="경력구분코드^세부명칭^기간^기간^기간^기간^주요내용^원내,원외구분^비고^사번^일련번호^최초등록자ID^최초등록일시^최종수정자ID^최종수정일시^일련번호OLD|경력구분코드^세부명칭^시작일^종료일^년수^월수^주요내용^원내,원외구분^비고^사번^일련번호^최초등록자ID^최초등록일시^최종수정자ID^최종수정일시^일련번호OLD" colsep="^" colwidth="128, 192, 105, 99, 46, 49, 172, 90, 274, 39, 42, 45, 37, 35, 44, 47" mergecellsfixedrows="bycolrec" rowheader="update" rowsep="|" style="left:0px; top:30px; width:1193px; height:204px; ">
  1918. <col disabled="true" ref="carerflagcd" type="combo"/>
  1919. <col disabled="true" ref="detlnm" type="input"/>
  1920. <col disabled="true" ref="fromdd" type="inputdate"/>
  1921. <col disabled="true" ref="todd" type="inputdate"/>
  1922. <col ref="dutyyno"/>
  1923. <col ref="dutmmno"/>
  1924. <col disabled="true" ref="maincnts" type="input"/>
  1925. <col disabled="true" ref="hosioflag" type="combo">
  1926. <choices>
  1927. <itemset>
  1928. <label/>
  1929. <value/>
  1930. </itemset>
  1931. </choices>
  1932. </col>
  1933. <col disabled="true" ref="cmt" type="input"/>
  1934. <col ref="emplno" visibility="hidden"/>
  1935. <col ref="seqno" visibility="hidden"/>
  1936. <col ref="fstrgstrid" visibility="hidden"/>
  1937. <col ref="fstrgstdt" visibility="hidden"/>
  1938. <col ref="lastupdtrid" visibility="hidden"/>
  1939. <col ref="lastupdtdt" visibility="hidden"/>
  1940. <col ref="oldseqno" visibility="hidden"/>
  1941. </datagrid>
  1942. <line id="line310" class="line_1" style="x1:0px; y1:259px; x2:1193px; y2:259px; "/>
  1943. <caption id="caption494" class="tit_2" style="left:5px; top:10px; width:144px; height:13px; ">경력사항(입사후)</caption>
  1944. <caption id="caption474" class="tit_2" style="left:5px; top:243px; width:144px; height:13px; ">경력사항(입사전)</caption>
  1945. <button id="btn_grdaddafcrlist" class="btn2_letter3" visibility="hidden" style="left:1018px; top:4px; width:53px; height:19px; ">
  1946. <caption>행추가</caption>
  1947. <script type="javascript" ev:event="DOMActivate">
  1948. <![CDATA[
  1949. misfGridIUD(grd_afcrlist, "A");
  1950. ]]>
  1951. </script>
  1952. </button>
  1953. <button id="btn_saveafcrlistexcel" class="btn2_letter4" visibility="hidden" style="left:1128px; top:4px; width:64px; height:19px; ">
  1954. <caption>엑셀저장</caption>
  1955. <script type="javascript" ev:event="DOMActivate">
  1956. <![CDATA[
  1957. var fileName = window.fileDialog ("save", ",", false, "excel", "xls", "All Files (*.*)|*.*|Excel Files(*.xls)|*.xls");
  1958. if (fileName != "")
  1959. {
  1960. grd_afcrlist.saveExcel(fileName);
  1961. }
  1962. ]]>
  1963. </script>
  1964. </button>
  1965. <button id="btn_grddelafcrlist" class="btn2_letter3" visibility="hidden" style="left:1073px; top:4px; width:53px; height:19px; ">
  1966. <caption>행삭제</caption>
  1967. <script type="javascript" ev:event="DOMActivate">
  1968. <![CDATA[
  1969. misfGridIUD(grd_afcrlist, "D");
  1970. ]]>
  1971. </script>
  1972. </button>
  1973. <button id="btn_grdaddbecrlist" class="btn2_letter3" visibility="hidden" style="left:1018px; top:238px; width:53px; height:19px; ">
  1974. <caption>행추가</caption>
  1975. <script type="javascript" ev:event="DOMActivate">
  1976. <![CDATA[
  1977. misfGridIUD(grd_becrlist, "A");
  1978. ]]>
  1979. </script>
  1980. </button>
  1981. <button id="btn_savebecrlistexcel" class="btn2_letter4" visibility="hidden" style="left:1128px; top:238px; width:64px; height:19px; ">
  1982. <caption>엑셀저장</caption>
  1983. <script type="javascript" ev:event="DOMActivate">
  1984. <![CDATA[
  1985. var fileName = window.fileDialog ("save", ",", false, "excel", "xls", "All Files (*.*)|*.*|Excel Files(*.xls)|*.xls");
  1986. if (fileName != "")
  1987. {
  1988. grd_becrlist.saveExcel(fileName);
  1989. }
  1990. ]]>
  1991. </script>
  1992. </button>
  1993. <button id="btn_grddelbecrlist" class="btn2_letter3" visibility="hidden" style="left:1073px; top:238px; width:53px; height:19px; ">
  1994. <caption>행삭제</caption>
  1995. <script type="javascript" ev:event="DOMActivate">
  1996. <![CDATA[
  1997. misfGridIUD(grd_becrlist, "D");
  1998. ]]>
  1999. </script>
  2000. </button>
  2001. </case>
  2002. <case id="case9">
  2003. <line id="line74" class="line_1" style="x1:0px; y1:259px; x2:1193px; y2:259px; "/>
  2004. <datagrid id="grd_prizlist" nodeset="/root/main/priz/prizlist" caption="포상기관^포상번호^포상코드^포상명^포상일자^포상내용^사원번호^최초등록자ID^최초등록일시^최종수정자ID^최종수정일시^포상일자OLD^포상번호OLD^포상징계구분^순번" colsep="^" colwidth="130, 100, 106, 163, 107, 546, 44, 40, 42, 38, 43, 35, 43, 43" mergecellsfixedrows="bycolrec" rowheader="update" rowsep="|" style="left:0px; top:30px; width:1193px; height:203px; ">
  2005. <col disabled="true" ref="prizrpmdinst" type="input"/>
  2006. <col ref="prizrpmdno"/>
  2007. <col disabled="true" ref="prizrpmdcd" type="inputbutton"/>
  2008. <col ref="prizrpmdnm"/>
  2009. <col disabled="true" ref="prizrpmddd" type="inputdate"/>
  2010. <col disabled="true" ref="prizcnts" type="input"/>
  2011. <col ref="emplno" visibility="hidden"/>
  2012. <col ref="fstrgstrid" visibility="hidden"/>
  2013. <col ref="fstrgstdt" visibility="hidden"/>
  2014. <col ref="lastupdtrid" visibility="hidden"/>
  2015. <col ref="lastupdtdt" visibility="hidden"/>
  2016. <col ref="oldprizrpmddd" visibility="hidden"/>
  2017. <col ref="oldprizrpmdno" visibility="hidden"/>
  2018. <col ref="prizrpmdflag" visibility="hidden"/>
  2019. <col ref="seqno" visibility="hidden"/>
  2020. <script type="javascript" ev:event="onbuttonclick">
  2021. <![CDATA[
  2022. if (grd_prizlist.colAttribute(grd_prizlist.col,"ref") == "prizrpmdcd" ) { //포상코드
  2023. var recv_list = "prizrpmdcd,prizrpmdnm";
  2024. rpbfOpenComCdHelp(grd_prizlist,"R0084", recv_list);
  2025. model.refresh();
  2026. }
  2027. ]]>
  2028. </script>
  2029. <script type="javascript" ev:event="xforms-value-changed">
  2030. <![CDATA[
  2031. if (grd_prizlist.colAttribute(grd_prizlist.col,"ref") == "prizrpmdcd" ) { //포상코드
  2032. var recv_list = "prizrpmdcd,prizrpmdnm";
  2033. misfValidationCheck("03", "R0084",recv_list);
  2034. model.refresh();
  2035. }
  2036. ]]>
  2037. </script>
  2038. </datagrid>
  2039. <caption id="caption292" class="tit_2" style="left:5px; top:10px; width:144px; height:13px; ">포상사항</caption>
  2040. <caption id="caption24" class="tit_2" style="left:5px; top:244px; width:144px; height:13px; ">징계사항</caption>
  2041. <line id="line213" class="line_1" style="x1:0px; y1:25px; x2:1193px; y2:25px; "/>
  2042. <datagrid id="grd_rpmdlist" nodeset="/root/main/priz/rpmdlist" caption="징계기관^징계번호^징계코드^징계명^징계발생일^징계종료일^징계사유코드^징계사유명^재심사항^재심기관^사원번호^최초등록자ID^최초등록일시^최종수정자ID^최종수정일시^징계종료일OLD^징계번호OLD^포상징계구분^순번" colsep="^" colwidth="106, 64, 74, 154, 105, 93, 89, 214, 137, 117, 41, 38, 42, 35, 37, 41, 36, 36" mergecellsfixedrows="bycolrec" rowheader="update" rowsep="|" style="left:0px; top:264px; width:1193px; height:202px; ">
  2043. <col disabled="true" ref="prizrpmdinst" type="input"/>
  2044. <col ref="prizrpmdno"/>
  2045. <col disabled="true" ref="prizrpmdcd" type="inputbutton"/>
  2046. <col ref="prizrpmdnm"/>
  2047. <col disabled="true" ref="prizrpmddd" type="inputdate"/>
  2048. <col disabled="true" ref="rpmdtodd" type="inputdate"/>
  2049. <col disabled="true" ref="rpmdresncd" type="inputbutton"/>
  2050. <col ref="rpmdresnnm"/>
  2051. <col disabled="true" ref="redcusfact" type="input"/>
  2052. <col disabled="true" ref="redcusinst" type="input"/>
  2053. <col ref="emplno" visibility="hidden"/>
  2054. <col ref="fstrgstrid" visibility="hidden"/>
  2055. <col ref="fstrgstdt" visibility="hidden"/>
  2056. <col ref="lastupdtrid" visibility="hidden"/>
  2057. <col ref="lastupdtdt" visibility="hidden"/>
  2058. <col ref="oldprizrpmddd" visibility="hidden"/>
  2059. <col ref="oldprizrpmdno" visibility="hidden"/>
  2060. <col ref="prizrpmdflag" visibility="hidden"/>
  2061. <col ref="seqno" visibility="hidden"/>
  2062. <script type="javascript" ev:event="onbuttonclick">
  2063. <![CDATA[
  2064. if (grd_rpmdlist.colAttribute(grd_rpmdlist.col,"ref") == "prizrpmdcd" ) { //징계코드
  2065. var recv_list = "prizrpmdcd,prizrpmdnm";
  2066. rpbfOpenComCdHelp(grd_rpmdlist,"R0083", recv_list);
  2067. model.refresh();
  2068. }
  2069. else if (grd_rpmdlist.colAttribute(grd_rpmdlist.col,"ref") == "rpmdresncd" ) { //징계사유코드
  2070. var recv_list = "rpmdresncd,rpmdresnnm";
  2071. rpbfOpenComCdHelp(grd_rpmdlist,"R0082", recv_list);
  2072. model.refresh();
  2073. }
  2074. ]]>
  2075. </script>
  2076. <script type="javascript" ev:event="xforms-value-changed">
  2077. <![CDATA[
  2078. if (grd_rpmdlist.colAttribute(grd_rpmdlist.col,"ref") == "prizrpmdcd" ) { //징계코드
  2079. var recv_list = "prizrpmdcd,prizrpmdnm";
  2080. misfValidationCheck("03", "R0083",recv_list);
  2081. model.refresh();
  2082. }
  2083. else if (grd_rpmdlist.colAttribute(grd_rpmdlist.col,"ref") == "rpmdresncd" ) { //징계사유코드
  2084. var recv_list = "rpmdresncd,rpmdresnnm";
  2085. misfValidationCheck("03", "R0082",recv_list);
  2086. model.refresh();
  2087. }
  2088. ]]>
  2089. </script>
  2090. </datagrid>
  2091. <button id="btn_grdaddprizlist" class="btn2_letter3" visibility="hidden" style="left:1018px; top:4px; width:53px; height:19px; ">
  2092. <caption>행추가</caption>
  2093. <script type="javascript" ev:event="DOMActivate">
  2094. <![CDATA[
  2095. misfGridIUD(grd_prizlist, "A");
  2096. grd_prizlist.valueMatrix(grd_prizlist.row, grd_prizlist.colRef("prizrpmdflag")) = "1";
  2097. ]]>
  2098. </script>
  2099. </button>
  2100. <button id="btn_saveprizlistexcel" class="btn2_letter4" visibility="hidden" style="left:1128px; top:4px; width:64px; height:19px; ">
  2101. <caption>엑셀저장</caption>
  2102. <script type="javascript" ev:event="DOMActivate">
  2103. <![CDATA[
  2104. var fileName = window.fileDialog ("save", ",", false, "excel", "xls", "All Files (*.*)|*.*|Excel Files(*.xls)|*.xls");
  2105. if (fileName != "")
  2106. {
  2107. grd_prizlist.saveExcel(fileName);
  2108. }
  2109. ]]>
  2110. </script>
  2111. </button>
  2112. <button id="btn_grddelprizlist" class="btn2_letter3" visibility="hidden" style="left:1073px; top:4px; width:53px; height:19px; ">
  2113. <caption>행삭제</caption>
  2114. <script type="javascript" ev:event="DOMActivate">
  2115. <![CDATA[
  2116. misfGridIUD(grd_prizlist, "D");
  2117. ]]>
  2118. </script>
  2119. </button>
  2120. <button id="btn_grdaddrpmdlist" class="btn2_letter3" visibility="hidden" style="left:1018px; top:237px; width:53px; height:19px; ">
  2121. <caption>행추가</caption>
  2122. <script type="javascript" ev:event="DOMActivate">
  2123. <![CDATA[
  2124. misfGridIUD(grd_rpmdlist, "A");
  2125. grd_rpmdlist.valueMatrix(grd_rpmdlist.row, grd_rpmdlist.colRef("prizrpmdflag")) = "2";
  2126. ]]>
  2127. </script>
  2128. </button>
  2129. <button id="btn_saverpmdlistexcel" class="btn2_letter4" visibility="hidden" style="left:1128px; top:237px; width:64px; height:19px; ">
  2130. <caption>엑셀저장</caption>
  2131. <script type="javascript" ev:event="DOMActivate">
  2132. <![CDATA[
  2133. var fileName = window.fileDialog ("save", ",", false, "excel", "xls", "All Files (*.*)|*.*|Excel Files(*.xls)|*.xls");
  2134. if (fileName != "")
  2135. {
  2136. grd_rpmdlist.saveExcel(fileName);
  2137. }
  2138. ]]>
  2139. </script>
  2140. </button>
  2141. <button id="btn_grddelrpmdlist" class="btn2_letter3" visibility="hidden" style="left:1073px; top:237px; width:53px; height:19px; ">
  2142. <caption>행삭제</caption>
  2143. <script type="javascript" ev:event="DOMActivate">
  2144. <![CDATA[
  2145. misfGridIUD(grd_rpmdlist, "D");
  2146. ]]>
  2147. </script>
  2148. </button>
  2149. </case>
  2150. <case id="case10" style="left:0px; top:0px; width:1193px; height:476px; ">
  2151. <line id="line45" class="line_2" style="x1:0px; y1:100px; x2:1146px; y2:100px; "/>
  2152. <line id="line44" class="line_2" style="x1:0px; y1:76px; x2:1146px; y2:76px; "/>
  2153. <line id="line43" class="line_2" style="x1:0px; y1:52px; x2:1146px; y2:52px; "/>
  2154. <line id="line8" class="line_3" style="x1:0px; y1:124px; x2:1146px; y2:124px; "/>
  2155. <caption id="caption289" class="cell_1" style="left:617px; top:54px; width:95px; height:23px; vertical-align:middle; ">특례기간시작</caption>
  2156. <caption id="caption279" class="cell_1" style="left:617px; top:102px; width:95px; height:23px; vertical-align:middle; ">복무기간</caption>
  2157. <input id="ipt_srvarmtermfromdd" ref="/root/main/armydata/armylist/srvarmtermfromdd" class="input_s_essential" disabled="true" inputtype="date" style="left:714px; top:104px; width:107px; height:19px; "/>
  2158. <input id="ipt_srvarmtermtodd" ref="/root/main/armydata/armylist/srvarmtermtodd" class="input_s_essential" disabled="true" inputtype="date" style="left:838px; top:104px; width:107px; height:19px; "/>
  2159. <caption id="caption290" class="cell_1" style="left:947px; top:30px; width:95px; height:23px; vertical-align:middle; ">예비군</caption>
  2160. <caption id="caption280" class="cell_1" style="left:0px; top:78px; width:95px; height:23px; vertical-align:middle; ">군별</caption>
  2161. <caption id="caption291" class="cell_1" style="left:316px; top:54px; width:95px; height:23px; vertical-align:middle; ">면제사유</caption>
  2162. <caption id="caption281" class="cell_1" style="left:316px; top:102px; width:95px; height:23px; vertical-align:middle; ">병역특례구분</caption>
  2163. <caption id="caption282" class="cell_1" style="left:617px; top:30px; width:95px; height:23px; vertical-align:middle; ">계급</caption>
  2164. <caption id="caption293" class="cell_1" style="left:0px; top:54px; width:95px; height:23px; vertical-align:middle; ">제대구분</caption>
  2165. <input id="ipt_exmptndd" ref="/root/main/armydata/armylist/exmptndd" class="input_default" disabled="true" inputtype="date" style="left:97px; top:104px; width:217px; height:19px; "/>
  2166. <caption id="caption25" class="search_n_b" style="left:824px; top:105px; width:12px; height:17px; font-weight:bolder; ">~</caption>
  2167. <caption id="caption283" class="tit_2" style="left:5px; top:10px; width:144px; height:13px; ">병역사항</caption>
  2168. <caption id="caption294" class="cell_1" style="left:617px; top:78px; width:95px; height:23px; vertical-align:middle; ">군번</caption>
  2169. <input id="ipt_mainskil" ref="/root/main/armydata/armylist/mainskil" class="input_default" disabled="true" style="left:413px; top:80px; width:202px; height:19px; "/>
  2170. <caption id="caption284" class="cell_1" style="left:0px; top:102px; width:95px; height:23px; vertical-align:middle; ">면제일</caption>
  2171. <input id="ipt_spclcsmiltsrvc" ref="/root/main/armydata/armylist/spclcsmiltsrvc" class="input_default" disabled="true" style="left:413px; top:104px; width:202px; height:19px; "/>
  2172. <caption id="caption285" class="cell_1" style="left:316px; top:30px; width:95px; height:23px; vertical-align:middle; ">병과</caption>
  2173. <input id="ipt_sn" ref="/root/main/armydata/armylist/sn" class="input_default" disabled="true" style="left:714px; top:80px; width:231px; height:19px; "/>
  2174. <caption id="caption286" class="cell_1" style="left:316px; top:78px; width:95px; height:23px; vertical-align:middle; ">주특기</caption>
  2175. <caption id="caption287" class="cell_1" style="left:0px; top:30px; width:95px; height:23px; vertical-align:middle; ">역종</caption>
  2176. <line id="line203" class="line_1" style="x1:0px; y1:25px; x2:1146px; y2:25px; "/>
  2177. <input id="ipt_exmptnresn" ref="/root/main/armydata/armylist/exmptnresn" class="input_default" disabled="true" style="left:413px; top:56px; width:202px; height:19px; "/>
  2178. <input id="input319" class="input_default" disabled="true" style="left:714px; top:56px; width:231px; height:19px; "/>
  2179. <caption id="caption288" class="cell_1" style="left:947px; top:54px; width:95px; height:23px; vertical-align:middle; ">민방위</caption>
  2180. <select1 id="cmb_clssvcstatcd" ref="/root/main/armydata/armylist/clssvcstatcd" class="combo_essential" disabled="true" appearance="minimal" style="left:97px; top:32px; width:217px; height:19px; ">
  2181. <choices>
  2182. <itemset>
  2183. <label/>
  2184. <value/>
  2185. </itemset>
  2186. </choices>
  2187. </select1>
  2188. <datagrid id="grd_armylist" nodeset="/root/main/army/armylist" visibility="hidden" caption="역종^제대구분^군별^면제일^병과^면제사유^주특기^병역특례구분^계급^특례기간시작^군번^복무기간시작^복무기간종료^예비군^민방위^사번^최초등록자ID^최초등록일^최종등록자ID^최종등록일시" colsep="^" colwidth="56, 69, 61, 40, 41, 48, 46, 45, 44, 53, 29, 53, 37, 35, 26, 37, 43, 49, 36, 42" mergecellsfixedrows="bycolrec" rowheader="update" rowsep="|" style="left:10px; top:365px; width:1170px; height:80px; ">
  2189. <col ref="clssvcstatcd"/>
  2190. <col ref="dembztflag"/>
  2191. <col ref="armyclscd"/>
  2192. <col ref="exmptndd"/>
  2193. <col ref="brnhmiltsrvccd"/>
  2194. <col ref="exmptnresn"/>
  2195. <col ref="mainskil"/>
  2196. <col ref="spclcsmiltsrvc"/>
  2197. <col ref="classcd"/>
  2198. <col ref="fromspclcase"/>
  2199. <col ref="sn"/>
  2200. <col ref="srvarmtermfromdd"/>
  2201. <col ref="srvarmtermtodd"/>
  2202. <col ref="rsrvarm"/>
  2203. <col ref="civildfns"/>
  2204. <col ref="emplno"/>
  2205. <col ref="fstrgstrid"/>
  2206. <col ref="fstrgstdt"/>
  2207. <col ref="lastupdtrid"/>
  2208. <col ref="lastupdtdt"/>
  2209. </datagrid>
  2210. <select1 id="cmb_dembztflag" ref="/root/main/armydata/armylist/dembztflag" class="combo_essential" disabled="true" appearance="minimal" style="left:97px; top:56px; width:217px; height:19px; ">
  2211. <choices>
  2212. <itemset>
  2213. <label/>
  2214. <value/>
  2215. </itemset>
  2216. </choices>
  2217. </select1>
  2218. <select1 id="cmb_armyclscd" ref="/root/main/armydata/armylist/armyclscd" class="combo_essential" disabled="true" appearance="minimal" style="left:97px; top:80px; width:217px; height:19px; ">
  2219. <choices>
  2220. <itemset>
  2221. <label/>
  2222. <value/>
  2223. </itemset>
  2224. </choices>
  2225. </select1>
  2226. <select1 id="cmb_brnhmiltsrvccd" ref="/root/main/armydata/armylist/brnhmiltsrvccd" class="combo_essential" disabled="true" appearance="minimal" style="left:413px; top:32px; width:202px; height:19px; ">
  2227. <choices>
  2228. <itemset>
  2229. <label/>
  2230. <value/>
  2231. </itemset>
  2232. </choices>
  2233. </select1>
  2234. <select1 id="cmb_classcd" ref="/root/main/armydata/armylist/classcd" class="combo_essential" disabled="true" appearance="minimal" style="left:714px; top:32px; width:231px; height:19px; ">
  2235. <choices>
  2236. <itemset>
  2237. <label/>
  2238. <value/>
  2239. </itemset>
  2240. </choices>
  2241. </select1>
  2242. <select1 id="rdo_rsrvarm" ref="/root/main/armydata/armylist/rsrvarm" disabled="true" overflow="visible" appearance="full" cols="2" itemheight="18" itemwidth="50" style="left:1044px; top:32px; width:100px; height:19px; border-style:solid; ">
  2243. <choices>
  2244. <item>
  2245. <label>Yes</label>
  2246. <value>Y</value>
  2247. </item>
  2248. <item>
  2249. <label>No</label>
  2250. <value>N</value>
  2251. </item>
  2252. </choices>
  2253. </select1>
  2254. <select1 id="rdo_civildfns" ref="/root/main/armydata/armylist/civildfns" disabled="true" overflow="visible" appearance="full" cols="2" itemheight="18" itemwidth="50" style="left:1044px; top:55px; width:100px; height:19px; border-style:solid; ">
  2255. <choices>
  2256. <item>
  2257. <label>Yes</label>
  2258. <value>Y</value>
  2259. </item>
  2260. <item>
  2261. <label>No</label>
  2262. <value>N</value>
  2263. </item>
  2264. </choices>
  2265. </select1>
  2266. </case>
  2267. <case id="case11">
  2268. <line id="line210" class="line_1" style="x1:0px; y1:25px; x2:1193px; y2:25px; "/>
  2269. <caption id="caption295" class="tit_2" style="left:10px; top:10px; width:144px; height:13px; ">교육훈련</caption>
  2270. <datagrid id="grd_educlist" nodeset="/root/main/educ/educlist" caption="교육년도^교육구분^교육코드^교육명^차수^교육기간^교육기간^교육장소^교육시간^이수학점^보조금지급여부|교육년도^교육구분^교육코드^교육명^차수^From^To^교육장소^교육시간^이수학점^보조금지급여부" colsep="^" colwidth="60, 70, 70, 250, 73, 90, 88, 200, 70, 70, 100" dataheight="25" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="25" rowsep="|" style="left:0px; top:30px; width:1193px; height:434px; ">
  2271. <col ref="appyy" format="yyyy" maxlength="4" style="text-align:center; "/>
  2272. <col disabled="true" ref="inoutflag" type="combo" style="text-align:center; ">
  2273. <choices>
  2274. <item>
  2275. <label>내부교육</label>
  2276. <value>I</value>
  2277. </item>
  2278. <item>
  2279. <label>외부교육</label>
  2280. <value>O</value>
  2281. </item>
  2282. </choices>
  2283. </col>
  2284. <col ref="educcd"/>
  2285. <col ref="educnm"/>
  2286. <col ref="educdg" style="text-align:center; "/>
  2287. <col ref="educfromdd" format="yyyy-mm-dd" style="text-align:center; "/>
  2288. <col ref="eductodd" format="yyyy-mm-dd" style="text-align:center; "/>
  2289. <col ref="educplce"/>
  2290. <col ref="eductm" style="text-align:center; "/>
  2291. <col ref="cmpltcursstdypnt" style="text-align:center; "/>
  2292. <col disabled="true" ref="offctouramtpayyn" type="combo" style="text-align:center; ">
  2293. <choices>
  2294. <item>
  2295. <label>지급</label>
  2296. <value>Y</value>
  2297. </item>
  2298. <item>
  2299. <label>미지급</label>
  2300. <value>N</value>
  2301. </item>
  2302. <item>
  2303. <label/>
  2304. <value>A</value>
  2305. </item>
  2306. </choices>
  2307. </col>
  2308. </datagrid>
  2309. </case>
  2310. <case id="case12">
  2311. <datagrid id="datagrid10" nodeset="/root/example" caption="장기/단기^국내/국외^시작일자^종료일자^학회장소^비고^보조금^시작일자^죵료일자^교육시간" colsep="^" colwidth="60, 73, 90, 88, 70, 66, 68, 60, 57, 54" dataheight="25" extendlastcol="scroll" mergecellsfixedrows="bycolrec" rowheight="25" rowsep="|" style="left:0px; top:30px; width:1193px; height:436px; ">
  2312. <col/>
  2313. <col/>
  2314. <col/>
  2315. <col/>
  2316. <col/>
  2317. <col/>
  2318. <col/>
  2319. </datagrid>
  2320. <line id="line211" class="line_1" style="x1:0px; y1:25px; x2:1193px; y2:25px; "/>
  2321. <caption id="caption296" class="tit_2" style="left:10px; top:10px; width:144px; height:13px; ">학회</caption>
  2322. </case>
  2323. <case id="case13">
  2324. <line id="line50" class="line_2" style="x1:0px; y1:440px; x2:427px; y2:440px; "/>
  2325. <line id="line49" class="line_2" style="x1:0px; y1:416px; x2:427px; y2:416px; "/>
  2326. <line id="line48" class="line_2" style="x1:0px; y1:247px; x2:427px; y2:247px; "/>
  2327. <line id="line47" class="line_2" style="x1:0px; y1:76px; x2:427px; y2:76px; "/>
  2328. <line id="line46" class="line_2" style="x1:0px; y1:52px; x2:427px; y2:52px; "/>
  2329. <line id="line51" class="line_3" style="x1:0px; y1:464px; x2:427px; y2:464px; "/>
  2330. <caption id="caption45" class="tit_2" style="left:5px; top:10px; width:144px; height:14px; ">진료분야</caption>
  2331. <button id="btn_frmrmertlrg" class="icon_search" disabled="true" style="left:177px; top:32px; width:16px; height:16px; ">
  2332. <caption/>
  2333. <script type="javascript" ev:event="DOMActivate">
  2334. <![CDATA[
  2335. var recv_list = "frmrmertlrg,frmrmertlrgnm";
  2336. rpbfOpenComCdHelp(ipt_frmrmertlrg,"R0089", recv_list);
  2337. model.refresh();
  2338. ]]>
  2339. </script>
  2340. </button>
  2341. <output id="opt_frmrmertlrgnm" ref="/root/main/empldata/empllist/frmrmertlrgnm" class="output_fix" style="left:196px; top:32px; width:230px; height:19px; "/>
  2342. <line id="line15" class="line_1" style="x1:0px; y1:25px; x2:427px; y2:25px; "/>
  2343. <input id="ipt_frmrmertlrg" ref="/root/main/empldata/empllist/frmrmertlrg" class="input_essential" disabled="true" navindex="5" required="true" style="left:93px; top:32px; width:77px; height:19px; ">
  2344. <script type="javascript" ev:event="xforms-value-changed">
  2345. <![CDATA[
  2346. misfValidationCheck("03", "R0089", "frmrmertlrg,frmrmertlrgnm" );
  2347. model.refresh();
  2348. ]]>
  2349. </script>
  2350. </input>
  2351. <caption id="caption46" class="cell_1" style="left:0px; top:30px; width:90px; height:23px; vertical-align:middle; ">전공대분류</caption>
  2352. <button id="btn_frmrmertmdl" class="icon_search" disabled="true" style="left:177px; top:57px; width:16px; height:16px; ">
  2353. <caption/>
  2354. <script type="javascript" ev:event="DOMActivate">
  2355. <![CDATA[
  2356. var recv_list = "frmrmertmdl,frmrmertmdlnm";
  2357. rpbfOpenComCdHelp(ipt_frmrmertmdl,"R0403", recv_list);
  2358. model.refresh();
  2359. ]]>
  2360. </script>
  2361. </button>
  2362. <input id="ipt_frmrmertmdl" ref="/root/main/empldata/empllist/frmrmertmdl" class="input_essential" disabled="true" navindex="5" required="true" style="left:93px; top:56px; width:77px; height:19px; ">
  2363. <script type="javascript" ev:event="xforms-value-changed">
  2364. <![CDATA[
  2365. misfValidationCheck("03", "R0403", "frmrmertmdl,frmrmertmdlnm" );
  2366. model.refresh();
  2367. ]]>
  2368. </script>
  2369. </input>
  2370. <caption id="caption48" class="cell_1" style="left:0px; top:54px; width:90px; height:23px; vertical-align:middle; ">전공중분류</caption>
  2371. <output id="opt_frmrmertmdlnm" ref="/root/main/empldata/empllist/frmrmertmdlnm" class="output_fix" style="left:196px; top:56px; width:230px; height:19px; "/>
  2372. <caption id="caption49" class="cell_1" style="left:0px; top:78px; width:90px; height:170px; vertical-align:middle; ">주진료분야</caption>
  2373. <textarea id="txt_mainordfild" ref="/root/main/empldata/empllist/mainordfild" disabled="true" style="left:93px; top:80px; width:333px; height:166px; "/>
  2374. <textarea id="txt_ordfild" ref="/root/main/empldata/empllist/ordfild" disabled="true" style="left:93px; top:251px; width:333px; height:164px; "/>
  2375. <caption id="caption51" class="cell_1" style="left:0px; top:249px; width:90px; height:168px; vertical-align:middle; ">세부진료분야</caption>
  2376. <button id="btn_chrgsubj" class="icon_search" disabled="true" style="left:177px; top:420px; width:16px; height:16px; ">
  2377. <caption/>
  2378. <script type="javascript" ev:event="DOMActivate">
  2379. <![CDATA[
  2380. var recv_list = "chrgsubj,chrgsubjnm";
  2381. rpbfOpenComCdHelp(ipt_chrgsubj,"R0403", recv_list);
  2382. model.refresh();
  2383. ]]>
  2384. </script>
  2385. </button>
  2386. <input id="ipt_chrgsubj" ref="/root/main/empldata/empllist/chrgsubj" class="input_essential" disabled="true" navindex="5" required="true" style="left:93px; top:420; width:77px; height:19px; ">
  2387. <script type="javascript" ev:event="xforms-value-changed">
  2388. <![CDATA[
  2389. /* 부서 코드 Validation Check
  2390. misfValidationCheck(Validation 종류(부서코드, 공통코드, 우편번호...), 공통코드군, 자료를 받을 Instance Node(콤마로 분류해서 넘기면됨)) */
  2391. misfValidationCheck("03", "R0403", "chrgsubj,chrgsubjnm" );
  2392. model.refresh();
  2393. ]]>
  2394. </script>
  2395. </input>
  2396. <caption id="caption52" class="cell_1" style="left:0px; top:418px; width:90px; height:23px; vertical-align:middle; ">담당과목</caption>
  2397. <output id="opt_chrgsubjnm" ref="/root/main/empldata/empllist/chrgsubjnm" class="output_fix" style="left:196px; top:420px; width:230px; height:19px; "/>
  2398. <caption id="caption53" class="cell_1" style="left:0px; top:442px; width:90px; height:23px; vertical-align:middle; ">현소속과</caption>
  2399. <line id="line41" class="line_3" style="x1:0px; y1:464px; x2:427px; y2:464px; "/>
  2400. <button id="button17" class="icon_search" disabled="true" style="left:195px; top:445px; width:16px; height:16px; ">
  2401. <caption/>
  2402. <script type="javascript" ev:event="DOMActivate">
  2403. <![CDATA[
  2404. /* 부서 코드 Help화면 Popup */
  2405. var recv_list = "prestposdept,prestposdeptnm";
  2406. var instcd = cmb_dutplceinst.value;
  2407. rpbfOpenDeptCdHelp(input6,recv_list,instcd,"instcd");
  2408. model.refresh();
  2409. ]]>
  2410. </script>
  2411. </button>
  2412. <output id="output1" ref="/root/main/empldata/empllist/prestposdeptnm" class="output_fix" style="left:216px; top:444px; width:210px; height:19px; "/>
  2413. <input id="input6" ref="/root/main/empldata/empllist/prestposdept" class="input_essential" disabled="true" navindex="38" required="true" style="left:93px; top:444px; width:97px; height:19px; ">
  2414. <script type="javascript" ev:event="xforms-value-changed">
  2415. <![CDATA[
  2416. /* 부서 코드 Validation Check
  2417. misfValidationCheck(Validation 종류(부서코드, 공통코드, 우편번호...), 공통코드군, 자료를 받을 Instance Node(콤마로 분류해서 넘기면됨)) */
  2418. misfValidationCheck("02", "", "prestposdept,prestposdeptnm" );
  2419. model.refresh();
  2420. ]]>
  2421. </script>
  2422. </input>
  2423. <line id="line42" class="line_2" style="x1:0px; y1:440px; x2:427px; y2:440px; "/>
  2424. </case>
  2425. <case id="case14">
  2426. <caption id="caption55" class="tit_2" style="left:5px; top:10px; width:144px; height:14px; ">보직내역</caption>
  2427. <line id="line17" class="line_1" style="x1:0px; y1:25px; x2:1193px; y2:25px; "/>
  2428. <datagrid id="grd_emplnojobrespgvnolist" nodeset="/root/main/emplnojobrespgvno/emplnojobrespgvnolist" caption="발령^소속기관^부서^직위^직책^발령일자^종료일^보직기관^보직부서^호봉^년차^비고^비고|발령^소속기관^부서^직위^직책^발령일자^종료일^보직기관^보직부서^호봉^년차^비고^비고" colsep="^" colwidth="100, 100, 127, 89, 84, 90, 100, 100, 100, 43, 40, 178" dataheight="25" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="25" rowsep="|" style="left:0px; top:30px; width:1193px; height:436px; ">
  2429. <col ref="gvnoffcordnm"/>
  2430. <col ref="instnm"/>
  2431. <col ref="unitnm"/>
  2432. <col ref="jobposnm"/>
  2433. <col ref="jobrespnm"/>
  2434. <col disabled="true" ref="gvnoffcorddd" type="inputdate"/>
  2435. <col disabled="true" ref="termtodd" type="inputdate"/>
  2436. <col ref="dutinstnm"/>
  2437. <col ref="dutunitnm"/>
  2438. <col ref="payclsnm"/>
  2439. <col ref="anual"/>
  2440. <col ref="cmt"/>
  2441. </datagrid>
  2442. </case>
  2443. <case id="case15">
  2444. <datagrid id="grd_emplnograduplist" nodeset="/root/main/emplnogradup/emplnograduplist" caption="발령일자^발령^소속기관^부(실)^과(팀)^부서^직군^직열^직종^직위^직책^직급^호봉^신직급^년차^비고|발령일자^발령^소속기관^부(실)^과(팀)^부서^직군^직열^직종^직위^직책^직급^호봉^신직급^년차^비고" colsep="^" colwidth="90, 106, 162, 106, 100, 94, 89, 83, 95, 82, 83, 73, 41, 43, 40, 134" dataheight="25" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="25" rowsep="|" style="left:0px; top:30px; width:1193px; height:436px; ">
  2445. <col disabled="true" ref="gvnoffcorddd" type="inputdate"/>
  2446. <col ref="gvnoffcordnm"/>
  2447. <col ref="instnm"/>
  2448. <col ref="deptnm" visibility="hidden"/>
  2449. <col ref="teamnm" visibility="hidden"/>
  2450. <col ref="unitnm"/>
  2451. <col ref="grupjoblnnm"/>
  2452. <col ref="joblnnm"/>
  2453. <col ref="jobkindnm"/>
  2454. <col ref="jobposnm"/>
  2455. <col ref="jobrespnm"/>
  2456. <col ref="ojobgradnm"/>
  2457. <col ref="payclsnm"/>
  2458. <col ref="njobgradnm"/>
  2459. <col ref="anual"/>
  2460. <col ref="cmt"/>
  2461. </datagrid>
  2462. <caption id="caption57" class="tit_2" style="left:5px; top:10px; width:144px; height:14px; ">승진승급</caption>
  2463. <line id="line18" class="line_1" style="x1:0px; y1:25px; x2:1193px; y2:25px; "/>
  2464. </case>
  2465. <case id="case16">
  2466. <datagrid id="grd_psnreflist" nodeset="/root/main/psnref/psnreflist" caption="기관^목적^조사일자^문서번호^사원번호^구분^순번|기관^목적^조사일자^문서번호^사원번호^구분^순번" colsep="^" colwidth="191, 644, 160, 160, 35, 37, 100" dataheight="25" mergecellsfixedrows="bycolrec" rowheader="update" rowheight="25" rowsep="|" style="left:0px; top:30px; width:1193px; height:437px; ">
  2467. <col disabled="true" ref="refinst" type="input">
  2468. <choices>
  2469. <itemset>
  2470. <label/>
  2471. <value/>
  2472. </itemset>
  2473. </choices>
  2474. </col>
  2475. <col disabled="true" ref="refgoal" type="input"/>
  2476. <col disabled="true" ref="refdd" type="inputdate"/>
  2477. <col disabled="true" ref="acptno" type="input"/>
  2478. <col ref="emplno" visibility="hidden"/>
  2479. <col ref="psnrefflag" visibility="hidden"/>
  2480. <col ref="seqno" visibility="hidden"/>
  2481. </datagrid>
  2482. <caption id="caption58" class="tit_2" style="left:5px; top:10px; width:144px; height:14px; ">신원조회</caption>
  2483. <line id="line19" class="line_1" style="x1:0px; y1:25px; x2:1193px; y2:25px; "/>
  2484. <button id="btn_grddelpsnreflist" class="btn2_letter3" visibility="hidden" style="left:1073px; top:4px; width:53px; height:19px; ">
  2485. <caption>행삭제</caption>
  2486. <script type="javascript" ev:event="DOMActivate">
  2487. <![CDATA[
  2488. misfGridIUD(grd_psnreflist, "D");
  2489. ]]>
  2490. </script>
  2491. </button>
  2492. <button id="btn_grdaddpsnreflist" class="btn2_letter3" visibility="hidden" style="left:1018px; top:4px; width:53px; height:19px; ">
  2493. <caption>행추가</caption>
  2494. <script type="javascript" ev:event="DOMActivate">
  2495. <![CDATA[
  2496. misfGridIUD(grd_psnreflist, "A");
  2497. ]]>
  2498. </script>
  2499. </button>
  2500. <button id="btn_savepsnreflistexcel" class="btn2_letter4" visibility="hidden" style="left:1128px; top:4px; width:64px; height:19px; ">
  2501. <caption>엑셀저장</caption>
  2502. <script type="javascript" ev:event="DOMActivate">
  2503. <![CDATA[
  2504. var fileName = window.fileDialog ("save", ",", false, "excel", "xls", "All Files (*.*)|*.*|Excel Files(*.xls)|*.xls");
  2505. if (fileName != "")
  2506. {
  2507. grd_psnreflist.saveExcel(fileName);
  2508. }
  2509. ]]>
  2510. </script>
  2511. </button>
  2512. </case>
  2513. <case id="case17">
  2514. <button id="btn_grddeledudeptinfolist" class="btn2_letter3" visibility="hidden" style="left:1073px; top:4px; width:53px; height:19px; ">
  2515. <caption>행삭제</caption>
  2516. <script type="javascript" ev:event="DOMActivate">
  2517. <![CDATA[
  2518. misfGridIUD(grd_edudeptinfolist, "D");
  2519. ]]>
  2520. </script>
  2521. </button>
  2522. <button id="btn_grdaddedudeptinfolist" class="btn2_letter3" visibility="hidden" style="left:1018px; top:4px; width:53px; height:19px; ">
  2523. <caption>행추가</caption>
  2524. <script type="javascript" ev:event="DOMActivate">
  2525. <![CDATA[
  2526. misfGridIUD(grd_edudeptinfolist, "A");
  2527. ]]>
  2528. </script>
  2529. </button>
  2530. <datagrid id="grd_edudeptinfolist" nodeset="/root/main/edudeptinfo/edudeptinfolist" caption="임용구분^임용일^임용일^직명^감독청 보고,승인^일자^사원번호^일련번호|임용구분^시작일^종료일^직명^감독청 보고,승인^일자^사원번호^일련번호" colsep="^" colwidth="154, 139, 133, 138, 469, 124, 35, 33" dataheight="25" mergecellsfixedrows="bycolrec" rowheader="update" rowheight="25" rowsep="|" style="left:0px; top:30px; width:1193px; height:436px; ">
  2531. <col disabled="true" ref="appntflag" type="combo">
  2532. <choices>
  2533. <itemset>
  2534. <label/>
  2535. <value/>
  2536. </itemset>
  2537. </choices>
  2538. </col>
  2539. <col disabled="true" ref="appntfromdd" type="inputdate"/>
  2540. <col disabled="true" ref="appnttodd" type="inputdate"/>
  2541. <col disabled="true" ref="edudeptjobgradcd" type="combo">
  2542. <choices>
  2543. <itemset>
  2544. <label/>
  2545. <value/>
  2546. </itemset>
  2547. </choices>
  2548. </col>
  2549. <col disabled="true" ref="cmt" type="input"/>
  2550. <col disabled="true" ref="reptdd" type="inputdate"/>
  2551. <col ref="emplno" visibility="hidden"/>
  2552. <col ref="seqno" visibility="hidden"/>
  2553. </datagrid>
  2554. <button id="btn_saveedudeptinfolistexcel" class="btn2_letter4" visibility="hidden" style="left:1128px; top:4px; width:64px; height:19px; ">
  2555. <caption>엑셀저장</caption>
  2556. <script type="javascript" ev:event="DOMActivate">
  2557. <![CDATA[
  2558. var fileName = window.fileDialog ("save", ",", false, "excel", "xls", "All Files (*.*)|*.*|Excel Files(*.xls)|*.xls");
  2559. if (fileName != "")
  2560. {
  2561. grd_edudeptinfolist.saveExcel(fileName);
  2562. }
  2563. ]]>
  2564. </script>
  2565. </button>
  2566. <caption id="caption60" class="tit_2" style="left:5px; top:10px; width:144px; height:14px; ">교육부용</caption>
  2567. <line id="line20" class="line_1" style="x1:0px; y1:25px; x2:1193px; y2:25px; "/>
  2568. </case>
  2569. <case id="case18">
  2570. <caption id="caption63" class="tit_2" style="left:5px; top:10px; width:144px; height:14px; ">교원경력</caption>
  2571. <line id="line21" class="line_1" style="x1:0px; y1:25px; x2:1193px; y2:25px; "/>
  2572. <datagrid id="grd_profcarinfolist" nodeset="/root/main/profcarinfo/profcarinfolist" caption="구분^기관^기간^기간^직위^근무기간^근무기간^근무기간^경력환산율^사원번호^일련반호|구분^기관^시작일^종료일^직위^근무년^근무월^근무일^경력환산율^사원번호^일련반호" colsep="^" colwidth="128, 237, 119, 112, 314, 59, 53, 51, 80, 35, 34" dataheight="25" mergecellsfixedrows="bycolrec" rowheader="update" rowheight="25" rowsep="|" style="left:0px; top:30px; width:1193px; height:436px; ">
  2573. <col disabled="true" ref="inoutflag" type="combo">
  2574. <choices>
  2575. <item>
  2576. <label>내부</label>
  2577. <value>I</value>
  2578. </item>
  2579. <item>
  2580. <label>외부</label>
  2581. <value>O</value>
  2582. </item>
  2583. </choices>
  2584. </col>
  2585. <col disabled="true" ref="inst" type="input"/>
  2586. <col disabled="true" ref="fromdd" type="inputdate"/>
  2587. <col disabled="true" ref="todd" type="inputdate"/>
  2588. <col disabled="true" ref="jobpos" type="input"/>
  2589. <col ref="dutyyno"/>
  2590. <col ref="dutmmno"/>
  2591. <col ref="dutdayno"/>
  2592. <col disabled="true" ref="exchrate" type="input"/>
  2593. <col ref="emplno" visibility="hidden"/>
  2594. <col ref="seqno" visibility="hidden"/>
  2595. </datagrid>
  2596. <button id="btn_grddelprofcarinfolist" class="btn2_letter3" visibility="hidden" style="left:1073px; top:4px; width:53px; height:19px; ">
  2597. <caption>행삭제</caption>
  2598. <script type="javascript" ev:event="DOMActivate">
  2599. <![CDATA[
  2600. misfGridIUD(grd_profcarinfolist, "D");
  2601. ]]>
  2602. </script>
  2603. </button>
  2604. <button id="btn_grdaddprofcarinfolist" class="btn2_letter3" visibility="hidden" style="left:1018px; top:4px; width:53px; height:19px; ">
  2605. <caption>행추가</caption>
  2606. <script type="javascript" ev:event="DOMActivate">
  2607. <![CDATA[
  2608. misfGridIUD(grd_profcarinfolist, "A");
  2609. ]]>
  2610. </script>
  2611. </button>
  2612. <button id="btn_saveprofcarinfolistexcel" class="btn2_letter4" visibility="hidden" style="left:1128px; top:4px; width:64px; height:19px; ">
  2613. <caption>엑셀저장</caption>
  2614. <script type="javascript" ev:event="DOMActivate">
  2615. <![CDATA[
  2616. var fileName = window.fileDialog ("save", ",", false, "excel", "xls", "All Files (*.*)|*.*|Excel Files(*.xls)|*.xls");
  2617. if (fileName != "")
  2618. {
  2619. grd_profcarinfolist.saveExcel(fileName);
  2620. }
  2621. ]]>
  2622. </script>
  2623. </button>
  2624. </case>
  2625. <case id="case19">
  2626. <datagrid id="grd_emplnogvnmovelist" nodeset="/root/main/emplnogvnmove/emplnogvnmovelist" caption="발령일자^발령^기관^부(실)^과(팀)^부서^직군^직열^직종^직위^직책^직급^호봉^신직급^년차^비고|발령일자^발령^기관^부(실)^과(팀)^부서^직군^직열^직종^직위^직책^직급^호봉^신직급^년차^비고" colsep="^" colwidth="90, 106, 99, 106, 100, 94, 89, 83, 95, 82, 83, 73, 41, 43, 40, 134" dataheight="25" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="25" rowsep="|" style="left:0px; top:30px; width:1193px; height:436px; ">
  2627. <col disabled="true" ref="gvnoffcorddd" type="inputdate"/>
  2628. <col ref="gvnoffcordnm"/>
  2629. <col ref="instnm"/>
  2630. <col ref="deptnm" visibility="hidden"/>
  2631. <col ref="teamnm" visibility="hidden"/>
  2632. <col ref="unitnm"/>
  2633. <col ref="grupjoblnnm"/>
  2634. <col ref="joblnnm"/>
  2635. <col ref="jobkindnm"/>
  2636. <col ref="jobposnm"/>
  2637. <col ref="jobrespnm"/>
  2638. <col ref="ojobgradnm"/>
  2639. <col ref="payclsnm"/>
  2640. <col ref="njobgradnm"/>
  2641. <col ref="anual"/>
  2642. <col ref="cmt"/>
  2643. </datagrid>
  2644. <caption id="caption54" class="tit_2" style="left:5px; top:10px; width:144px; height:14px; ">이동내역</caption>
  2645. <line id="line12" class="line_1" style="x1:0px; y1:25px; x2:1193px; y2:25px; "/>
  2646. </case>
  2647. </switch>
  2648. <datagrid id="grd_empllist" nodeset="/root/main/empl/empllist" visibility="hidden" caption="사원번호^한글성명^한자성명^주민번호^주민번호1^주민번호2^성별^현상태코드^기관코드^부서코드^부서명^유닛코드^팀코드^팀명^근무지부서코드^교직구분^근무지부서명^호봉교직구분^성직구분^직군^직열^직군명^직종^직렬명^직위^직종명^현직위발령일^직위명^직책^현직책발령일^직책명^구직급^신직급^구직급명^현직급발령일^신직급명^호봉^현호봉승급일^년차^승급월^겸직유무^입사일자^퇴사일자^연금직급^직급년수^CMC입사일^수습일자^원내번호^휴대폰^결혼여부^가장여부^이메일ID^이메일주소^기타이메일주소^출생지^본적우편번호1^본적우편번호2^본적주소^주민등록지우편본호1^주민등록지우편본호2^주민등록지^거주지우편번호1^거주지우편번호2^거주지^전화번호^영문성명^취미^특기^입사경위^주거형태^결혼기념일^생일^생일구분^호주명^세대주명^호주와의관계^세대주와의관계^종교^영명일^교회명^세례일자^세례명^견진일자^보훈대상^보훈구분^보훈유족명^유족관계^보훈번호^보훈청^장애여부^장애등급^장애번호^신장^체중^혈액형^시력우^시력좌^RH여부^혈압^색약^간염항원^간염항체^건강상태^검사일자^질병^근무기관^근무부서^종료일자^정년퇴직여부^승진발령일^자동승진일^특별승진일^최초임용일^노조가입여부^노조가입일^노조직책^노조탈퇴일^최초등록자ID^최초등록일시^최종수정자ID^최종수정일시^유닛명^근무팀^근무팀명^근무유닛^근무유닛명^원소속기관^원소속부서^원소속부서명^교육부임용일자^재임용일자^교육부임용시작일자^교육부임용종료일자^전공대분류^전공중분류^주진료분야^진료분야^담당과목^현소속과^전공대분류명^전공중분류명^담당과목명^년수^월수^나이^원소속세부기관" colsep="^" colwidth="66, 45, 44, 55, 68, 63, 28, 77, 44, 46, 100, 48, 56, 48, 41, 61, 55, 34, 55, 39, 35, 49, 46, 39, 40, 43, 51, 89, 41, 48, 40, 49, 100, 46, 100, 42, 52, 33, 46, 47, 47, 46, 43, 28, 36, 31, 37, 37, 34, 44, 40, 48, 42, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 26, 31, 34, 22, 23, 24, 28, 22, 35, 27, 32, 35, 34, 42, 37, 55, 32, 45, 39, 48, 41, 56, 41, 38, 40, 29, 31, 31, 27, 20, 18, 44" mergecellsfixedrows="bycolrec" rowheader="update" rowsep="|" style="left:395px; top:600px; width:400px; height:65px; ">
  2649. <col ref="emplno"/>
  2650. <col ref="name"/>
  2651. <col ref="chinm"/>
  2652. <col ref="rregno"/>
  2653. <col ref="rregno1"/>
  2654. <col ref="rregno2"/>
  2655. <col ref="gndr"/>
  2656. <col ref="preststatcd"/>
  2657. <col ref="instcd"/>
  2658. <col ref="deptcd"/>
  2659. <col ref="deptnm"/>
  2660. <col ref="unitcd"/>
  2661. <col ref="teamcd"/>
  2662. <col ref="teamnm"/>
  2663. <col ref="dutplcedeptcd"/>
  2664. <col ref="prfshipflag"/>
  2665. <col ref="dutplcedeptnm"/>
  2666. <col ref="payclsprfshipflag"/>
  2667. <col ref="holyordflag"/>
  2668. <col ref="grupjoblncd"/>
  2669. <col ref="joblncd"/>
  2670. <col ref="grupjoblnnm"/>
  2671. <col ref="jobkindcd"/>
  2672. <col ref="joblnnm"/>
  2673. <col ref="jobposcd"/>
  2674. <col ref="jobkindnm"/>
  2675. <col ref="prestjobposorddd"/>
  2676. <col ref="jobposnm"/>
  2677. <col ref="jobrespcd"/>
  2678. <col ref="prestjobrespgvnoffcorddd"/>
  2679. <col ref="jobrespnm"/>
  2680. <col ref="ojobgradcd"/>
  2681. <col ref="njobgradcd"/>
  2682. <col ref="ojobgradnm"/>
  2683. <col ref="prestgradgvnoffcorddd"/>
  2684. <col ref="njobgradnm"/>
  2685. <col ref="payclscd"/>
  2686. <col ref="prestpayclsgradupdd"/>
  2687. <col ref="anual"/>
  2688. <col ref="gradupmm"/>
  2689. <col ref="concroffcyn"/>
  2690. <col ref="entcodd"/>
  2691. <col ref="retiredd"/>
  2692. <col ref="pensreglattdnc"/>
  2693. <col ref="regldutyyno"/>
  2694. <col ref="cmcentcodd"/>
  2695. <col ref="probatndd"/>
  2696. <col ref="hosinseqno"/>
  2697. <col ref="mpphonno"/>
  2698. <col ref="maryyn"/>
  2699. <col ref="hdfamyyn"/>
  2700. <col ref="emailid"/>
  2701. <col ref="emailaddr"/>
  2702. <col ref="etcemailaddr"/>
  2703. <col ref="brtharea"/>
  2704. <col ref="domizipcd1"/>
  2705. <col ref="domizipcd2"/>
  2706. <col ref="domiaddr"/>
  2707. <col ref="resdnrgstareazipcd1"/>
  2708. <col ref="resdnrgstareazipcd2"/>
  2709. <col ref="resdnrgstareaaddr"/>
  2710. <col ref="residnczipcd1"/>
  2711. <col ref="residnczipcd2"/>
  2712. <col ref="residncaddr"/>
  2713. <col ref="cntctel"/>
  2714. <col ref="emplengnm"/>
  2715. <col ref="hoby"/>
  2716. <col ref="spclment"/>
  2717. <col ref="entcopath"/>
  2718. <col ref="hometype"/>
  2719. <col ref="wedanvy"/>
  2720. <col ref="brthdd"/>
  2721. <col ref="brthflag"/>
  2722. <col ref="headfamnm"/>
  2723. <col ref="hshdnm"/>
  2724. <col ref="headfamrela"/>
  2725. <col ref="hshdrela"/>
  2726. <col ref="relign"/>
  2727. <col ref="fairnmdd"/>
  2728. <col ref="chrchnm"/>
  2729. <col ref="baptdd"/>
  2730. <col ref="baptnm"/>
  2731. <col ref="rtconfmdd"/>
  2732. <col ref="bhtrgtpsnyn"/>
  2733. <col ref="bhflag"/>
  2734. <col ref="bhsrvvfamynm"/>
  2735. <col ref="srvvfamyrela"/>
  2736. <col ref="bhno"/>
  2737. <col ref="bhpice"/>
  2738. <col ref="handcapyn"/>
  2739. <col ref="handcapgrde"/>
  2740. <col ref="handcapno"/>
  2741. <col ref="bdht"/>
  2742. <col ref="bdwt"/>
  2743. <col ref="btype"/>
  2744. <col ref="rvisact"/>
  2745. <col ref="lvisact"/>
  2746. <col ref="rhflag"/>
  2747. <col ref="bp"/>
  2748. <col ref="incmplcolorblind"/>
  2749. <col ref="hptsag"/>
  2750. <col ref="hptsbd"/>
  2751. <col ref="healstat"/>
  2752. <col ref="testdd"/>
  2753. <col ref="illn"/>
  2754. <col ref="dutplceinst"/>
  2755. <col ref="dutdeptcd"/>
  2756. <col ref="todd"/>
  2757. <col ref="retrduagelimyn"/>
  2758. <col ref="promotngvnoffcorddd"/>
  2759. <col ref="autpromotndd"/>
  2760. <col ref="spclpromotndd"/>
  2761. <col ref="fstappntdd"/>
  2762. <col ref="lbrunionrgstyn"/>
  2763. <col ref="lbrunionrgstdd"/>
  2764. <col ref="lbrunionjobresp"/>
  2765. <col ref="lbrunionsecssdd"/>
  2766. <col ref="fstrgstrid"/>
  2767. <col ref="fstrgstdt"/>
  2768. <col ref="lastupdtrid"/>
  2769. <col ref="lastupdtdt"/>
  2770. <col ref="unitnm"/>
  2771. <col ref="dutteamcd"/>
  2772. <col ref="dutteamnm"/>
  2773. <col ref="dutunitcd"/>
  2774. <col ref="dutunitnm"/>
  2775. <col ref="orginstcd"/>
  2776. <col ref="orgdeptcd"/>
  2777. <col ref="orgdeptnm"/>
  2778. <col ref="edudeptappntdd"/>
  2779. <col ref="reappntdd"/>
  2780. <col ref="edudeptappntfromdd"/>
  2781. <col ref="edudeptappnttodd"/>
  2782. <col ref="frmrmertlrg"/>
  2783. <col ref="frmrmertmdl"/>
  2784. <col ref="mainordfild"/>
  2785. <col ref="ordfild"/>
  2786. <col ref="chrgsubj"/>
  2787. <col ref="prestposdept"/>
  2788. <col ref="frmrmertlrgnm"/>
  2789. <col ref="frmrmertmdlnm"/>
  2790. <col ref="chrgsubjnm"/>
  2791. <col ref="dutyy"/>
  2792. <col ref="dutmm"/>
  2793. <col ref="age"/>
  2794. <col ref="orgdetlinst"/>
  2795. <script type="javascript" ev:event="onrowchanged">
  2796. <![CDATA[
  2797. //misfMsterDetailRetrieve();
  2798. ]]>
  2799. </script>
  2800. </datagrid>
  2801. <datagrid id="grd_imgviewlist" nodeset="/root/main/imgviewlist" visibility="hidden" caption="사원번호^이미지" colsep="^" colwidth="100, 100" mergecellsfixedrows="bycolrec" rowheader="update" rowsep="|" style="left:810px; top:600px; width:240px; height:50px; ">
  2802. <col ref="emplno"/>
  2803. <col ref="photimg" style="background-stretch:stretch; "/>
  2804. </datagrid>
  2805. <select1 id="cmb_instcd" ref="/root/main/empldata/empllist/instcd" class="combo_search comboinput" disabled="true" navindex="4" appearance="minimal" style="left:257px; top:89px; width:223px; height:19px; ">
  2806. <choices>
  2807. <itemset>
  2808. <label/>
  2809. <value/>
  2810. </itemset>
  2811. </choices>
  2812. </select1>
  2813. <button id="btn_deptcd" class="icon_search" disabled="true" style="left:338px; top:115px; width:16px; height:16px; ">
  2814. <caption/>
  2815. <script type="javascript" ev:event="DOMActivate">
  2816. <![CDATA[
  2817. var recv_list = "deptcd,deptnm";
  2818. var instcd = cmb_instcd.value;
  2819. rpbfOpenDeptCdHelp(ipt_deptcd,recv_list,instcd,"instcd");
  2820. model.refresh();
  2821. ]]>
  2822. </script>
  2823. </button>
  2824. <output id="opt_deptnm" ref="/root/main/empldata/empllist/deptnm" class="output_fix" style="left:356px; top:113px; width:124px; height:19px; "/>
  2825. <output id="opt_dutplcedeptnm" ref="/root/main/empldata/empllist/dutplcedeptnm" class="output_fix" style="left:356px; top:185px; width:124px; height:19px; "/>
  2826. <button id="btn_dutplcedeptcd" class="icon_search" disabled="true" style="left:338px; top:187px; width:16px; height:16px; ">
  2827. <caption/>
  2828. <script type="javascript" ev:event="DOMActivate">
  2829. <![CDATA[
  2830. var recv_list = "dutplcedeptcd,dutplcedeptnm";
  2831. var instcd = cmb_dutplceinst.value;
  2832. rpbfOpenDeptCdHelp(ipt_dutplcedeptcd,recv_list,instcd,"instcd");
  2833. model.refresh();
  2834. ]]>
  2835. </script>
  2836. </button>
  2837. <select1 id="cmb_payclscd" ref="/root/main/empldata/empllist/payclscd" class="combo_essential" disabled="true" navindex="27" appearance="minimal" style="left:917px; top:113px; width:70px; height:19px; ">
  2838. <choices>
  2839. <itemset>
  2840. <label/>
  2841. <value/>
  2842. </itemset>
  2843. </choices>
  2844. </select1>
  2845. <input id="ipt_entcodd" ref="/root/main/empldata/empllist/entcodd" disabled="true" navindex="30" inputtype="date" style="left:1071px; top:41px; width:121px; height:19px; "/>
  2846. <input id="ipt_retiredd" ref="/root/main/empldata/empllist/retiredd" disabled="true" navindex="31" inputtype="date" style="left:1071px; top:65px; width:121px; height:19px; "/>
  2847. <input id="ipt_cmcentcodd" ref="/root/main/empldata/empllist/cmcentcodd" disabled="true" navindex="34" visibility="hidden" inputtype="date" style="left:1072px; top:113px; width:120px; height:19px; "/>
  2848. <output id="opt_grupjoblnnm" ref="/root/main/empldata/empllist/grupjoblnnm" class="output_fix" style="left:868px; top:161px; width:119px; height:19px; "/>
  2849. <button id="btn_grupjoblncd" class="icon_search" disabled="false" style="left:851px; top:161px; width:16px; height:16px; ">
  2850. <caption/>
  2851. <script type="javascript" ev:event="DOMActivate">
  2852. <![CDATA[
  2853. var recv_list = "grupjoblncd,grupjoblnnm";
  2854. rpbfOpenComCdHelp(ipt_grupjoblncd,"R0059", recv_list);
  2855. model.refresh();
  2856. ]]>
  2857. </script>
  2858. </button>
  2859. <input id="ipt_grupjoblncd" ref="/root/main/empldata/empllist/grupjoblncd" class="input_essential" disabled="true" navindex="20" style="left:795px; top:161px; width:53px; height:19px; ">
  2860. <script type="javascript" ev:event="xforms-value-changed">
  2861. <![CDATA[
  2862. misfValidationCheck("03", "R0059", "grupjoblncd,grupjoblnnm" );
  2863. model.refresh();
  2864. ]]>
  2865. </script>
  2866. </input>
  2867. <button id="btn_joblncd" class="icon_search" disabled="false" style="left:851px; top:19px; width:16px; height:16px; ">
  2868. <caption/>
  2869. <script type="javascript" ev:event="DOMActivate">
  2870. <![CDATA[
  2871. var recv_list = "joblncd,joblnnm";
  2872. rpbfOpenComCdHelp(ipt_joblncd,"R0060", recv_list);
  2873. model.refresh();
  2874. ]]>
  2875. </script>
  2876. </button>
  2877. <output id="opt_joblnnm" ref="/root/main/empldata/empllist/joblnnm" class="output_fix" style="left:868px; top:17px; width:119px; height:19px; "/>
  2878. <input id="ipt_joblncd" ref="/root/main/empldata/empllist/joblncd" class="input_essential" disabled="true" navindex="21" style="left:795px; top:17px; width:53px; height:19px; ">
  2879. <script type="javascript" ev:event="xforms-value-changed">
  2880. <![CDATA[
  2881. misfValidationCheck("03", "R0060", "joblncd,joblnnm" );
  2882. model.refresh();
  2883. ]]>
  2884. </script>
  2885. </input>
  2886. <button id="btn_jobkindcd" class="icon_search" disabled="true" style="left:851px; top:43px; width:16px; height:16px; ">
  2887. <caption/>
  2888. <script type="javascript" ev:event="DOMActivate">
  2889. <![CDATA[
  2890. var recv_list = "jobkindcd,jobkindnm";
  2891. rpbfOpenComCdHelp(ipt_jobkindcd,"R0061", recv_list);
  2892. model.refresh();
  2893. ]]>
  2894. </script>
  2895. </button>
  2896. <output id="opt_jobkindnm" ref="/root/main/empldata/empllist/jobkindnm" class="output_fix" style="left:868px; top:41px; width:119px; height:19px; "/>
  2897. <input id="ipt_jobkindcd" ref="/root/main/empldata/empllist/jobkindcd" class="input_essential" disabled="true" navindex="22" style="left:795px; top:41px; width:53px; height:19px; ">
  2898. <script type="javascript" ev:event="xforms-value-changed">
  2899. <![CDATA[
  2900. misfValidationCheck("03", "R0061", "jobkindcd,jobkindnm" );
  2901. model.refresh();
  2902. ]]>
  2903. </script>
  2904. </input>
  2905. <button id="btn_jobposcd" class="icon_search" disabled="true" style="left:851px; top:67px; width:16px; height:16px; ">
  2906. <caption/>
  2907. <script type="javascript" ev:event="DOMActivate">
  2908. <![CDATA[
  2909. var recv_list = "jobposcd,jobposnm";
  2910. rpbfOpenComCdHelp(ipt_jobposcd,"R0062", recv_list);
  2911. model.refresh();
  2912. ]]>
  2913. </script>
  2914. </button>
  2915. <output id="opt_jobposnm" ref="/root/main/empldata/empllist/jobposnm" class="output_fix" style="left:868px; top:65px; width:119px; height:19px; "/>
  2916. <input id="ipt_jobposcd" ref="/root/main/empldata/empllist/jobposcd" class="input_essential" disabled="true" navindex="23" style="left:795px; top:65px; width:53px; height:19px; ">
  2917. <script type="javascript" ev:event="xforms-value-changed">
  2918. <![CDATA[
  2919. misfValidationCheck("03", "R0062", "jobposcd,jobposnm" );
  2920. model.refresh();
  2921. ]]>
  2922. </script>
  2923. </input>
  2924. <output id="opt_jobrespnm" ref="/root/main/empldata/empllist/jobrespnm" class="output_fix" style="left:868px; top:89px; width:119px; height:19px; "/>
  2925. <button id="btn_jobrespcd" class="icon_search" disabled="true" style="left:851px; top:91px; width:16px; height:16px; ">
  2926. <caption/>
  2927. <script type="javascript" ev:event="DOMActivate">
  2928. <![CDATA[
  2929. var recv_list = "jobrespcd,jobrespnm";
  2930. rpbfOpenComCdHelp(ipt_jobrespcd,"R0063", recv_list);
  2931. model.refresh();
  2932. ]]>
  2933. </script>
  2934. </button>
  2935. <input id="ipt_jobrespcd" ref="/root/main/empldata/empllist/jobrespcd" class="input_essential" disabled="true" navindex="24" style="left:795px; top:89px; width:53px; height:19px; ">
  2936. <script type="javascript" ev:event="xforms-value-changed">
  2937. <![CDATA[
  2938. misfValidationCheck("03", "R0063", "jobrespcd,jobrespnm" );
  2939. model.refresh();
  2940. ]]>
  2941. </script>
  2942. </input>
  2943. <button id="btn_ojobgradcd" class="icon_search" disabled="true" style="left:851px; top:115px; width:16px; height:16px; ">
  2944. <caption/>
  2945. <script type="javascript" ev:event="DOMActivate">
  2946. <![CDATA[
  2947. var recv_list = "ojobgradcd,ojobgradnm";
  2948. rpbfOpenComCdHelp(ipt_ojobgradcd,"R0064", recv_list);
  2949. model.refresh();
  2950. ]]>
  2951. </script>
  2952. </button>
  2953. <output id="opt_ojobgradnm" ref="/root/main/empldata/empllist/ojobgradnm" class="output_fix" style="left:868px; top:113px; width:47px; height:19px; "/>
  2954. <input id="ipt_ojobgradcd" ref="/root/main/empldata/empllist/ojobgradcd" class="input_essential" disabled="true" navindex="25" style="left:795px; top:113px; width:53px; height:19px; ">
  2955. <script type="javascript" ev:event="xforms-value-changed">
  2956. <![CDATA[
  2957. misfValidationCheck("03", "R0064", "ojobgradcd,ojobgradnm" );
  2958. model.refresh();
  2959. ]]>
  2960. </script>
  2961. </input>
  2962. <button id="btn_njobgradcd" class="icon_search" disabled="true" style="left:851px; top:139px; width:16px; height:16px; ">
  2963. <caption/>
  2964. <script type="javascript" ev:event="DOMActivate">
  2965. <![CDATA[
  2966. var recv_list = "njobgradcd,njobgradnm";
  2967. rpbfOpenComCdHelp(ipt_njobgradcd,"R0064", recv_list);
  2968. model.refresh();
  2969. ]]>
  2970. </script>
  2971. </button>
  2972. <input id="ipt_njobgradcd" ref="/root/main/empldata/empllist/njobgradcd" class="input_essential" disabled="true" navindex="26" style="left:795px; top:137px; width:53px; height:19px; ">
  2973. <script type="javascript" ev:event="xforms-value-changed">
  2974. <![CDATA[
  2975. misfValidationCheck("03", "R0064", "njobgradcd,njobgradnm" );
  2976. model.refresh();
  2977. ]]>
  2978. </script>
  2979. </input>
  2980. <output id="opt_njobgradnm" ref="/root/main/empldata/empllist/njobgradnm" class="output_fix" style="left:868px; top:137px; width:47px; height:19px; "/>
  2981. <caption id="caption66" class="cell_1" style="left:483px; top:15px; width:90px; height:23px; vertical-align:middle; ">직원구분</caption>
  2982. <select1 id="cmb_holyordflag" ref="/root/main/empldata/empllist/holyordflag" class="combo_essential" disabled="true" navindex="19" appearance="minimal" style="left:575px; top:16px; width:136px; height:19px; ">
  2983. <choices>
  2984. <itemset>
  2985. <label/>
  2986. <value/>
  2987. </itemset>
  2988. </choices>
  2989. </select1>
  2990. <select1 id="rdo_gradupmm" ref="/root/main/empldata/empllist/gradupmm" class="radio_search" disabled="true" navindex="29" appearance="full" cols="2" itemheight="18" itemwidth="53" style="left:1071px; top:17px; width:121px; height:19px; text-align:center; border-style:solid; ">
  2991. <choices>
  2992. <item>
  2993. <label>1월</label>
  2994. <value>01</value>
  2995. </item>
  2996. <item>
  2997. <label>7월</label>
  2998. <value>07</value>
  2999. </item>
  3000. </choices>
  3001. </select1>
  3002. <output id="opt_teamnm" ref="/root/main/empldata/empllist/teamnm" class="output_fix" style="left:356px; top:137px; width:124px; height:19px; "/>
  3003. <caption id="caption28" class="cell_1" style="left:165px; top:135px; width:90px; height:23px; ">소속과(팀)</caption>
  3004. <button id="btn_team" class="icon_search" disabled="true" style="left:338px; top:139px; width:16px; height:16px; ">
  3005. <caption/>
  3006. <script type="javascript" ev:event="DOMActivate">
  3007. <![CDATA[
  3008. var recv_list = "teamcd,teamnm";
  3009. var instcd = cmb_instcd.value;
  3010. rpbfOpenDeptCdHelp(ipt_teamcd,recv_list,instcd,"instcd");
  3011. model.refresh();
  3012. ]]>
  3013. </script>
  3014. </button>
  3015. <input id="ipt_teamcd" ref="/root/main/empldata/empllist/teamcd" class="input_essential" disabled="true" navindex="5" required="true" style="left:257px; top:137px; width:78px; height:19px; ">
  3016. <script type="javascript" ev:event="xforms-value-changed">
  3017. <![CDATA[
  3018. /* 부서코드,명 입력시 Validation Check
  3019. misfValidationCheck(Validation 종류(부서코드, 공통코드, 우편번호...), 공통코드군, 자료를 받을 Instance Node(콤마로 분류해서 넘기면됨)) */
  3020. misfValidationCheck("02", "", "teamcd,teamnm" );
  3021. model.refresh();
  3022. ]]>
  3023. </script>
  3024. </input>
  3025. <button id="btn_unit" class="icon_search" disabled="true" style="left:338px; top:163px; width:16px; height:16px; ">
  3026. <caption/>
  3027. <script type="javascript" ev:event="DOMActivate">
  3028. <![CDATA[
  3029. var recv_list = "unitcd,unitnm";
  3030. var instcd = cmb_instcd.value;
  3031. rpbfOpenDeptCdHelp(ipt_unitcd,recv_list,instcd,"instcd");
  3032. model.refresh();
  3033. ]]>
  3034. </script>
  3035. </button>
  3036. <caption id="caption32" class="cell_1" style="left:165px; top:159px; width:90px; height:23px; ">소속부서</caption>
  3037. <output id="opt_unitnm" ref="/root/main/empldata/empllist/unitnm" class="output_fix" style="left:356px; top:161px; width:124px; height:19px; "/>
  3038. <input id="ipt_unitcd" ref="/root/main/empldata/empllist/unitcd" class="input_essential" disabled="true" navindex="5" required="true" style="left:257px; top:161px; width:78px; height:19px; ">
  3039. <script type="javascript" ev:event="xforms-value-changed">
  3040. <![CDATA[
  3041. /* 부서코드,명 입력시 Validation Check
  3042. misfValidationCheck(Validation 종류(부서코드, 공통코드, 우편번호...), 공통코드군, 자료를 받을 Instance Node(콤마로 분류해서 넘기면됨)) */
  3043. misfValidationCheck("02", "", "unitcd,unitnm" );
  3044. model.refresh();
  3045. ]]>
  3046. </script>
  3047. </input>
  3048. <button id="button20" class="btn_sw" group="tab" style="left:0px; top:235px; width:100px; height:22px; ">
  3049. <caption>보직내역</caption>
  3050. <script type="javascript" ev:event="onclick">
  3051. <![CDATA[
  3052. model.toggle("case14");
  3053. if (grd_emplnojobrespgvnolist.rows - grd_emplnojobrespgvnolist.fixedRows <= 0 ) {
  3054. submit("TRRPB00120");
  3055. }
  3056. ]]>
  3057. </script>
  3058. </button>
  3059. <button id="button21" class="btn_sw" group="tab" style="left:99px; top:235px; width:100px; height:22px; ">
  3060. <caption>승급승진내역</caption>
  3061. <script type="javascript" ev:event="onclick">
  3062. <![CDATA[
  3063. model.toggle("case15");
  3064. if (grd_emplnograduplist.rows - grd_emplnograduplist.fixedRows <= 0 ) {
  3065. submit("TRRPB00119");
  3066. }
  3067. ]]>
  3068. </script>
  3069. </button>
  3070. <button id="button22" class="btn_sw" group="tab" style="left:297px; top:235px; width:100px; height:22px; ">
  3071. <caption>신원조회</caption>
  3072. <script type="javascript" ev:event="onclick">
  3073. <![CDATA[
  3074. model.toggle("case16");
  3075. if (grd_psnreflist.rows - grd_psnreflist.fixedRows <= 0 ) {
  3076. submit("TRRPB00114");
  3077. }
  3078. ]]>
  3079. </script>
  3080. </button>
  3081. <button id="button23" class="btn_sw" group="tab" style="left:396px; top:235px; width:100px; height:22px; ">
  3082. <caption>교육부발령</caption>
  3083. <script type="javascript" ev:event="onclick">
  3084. <![CDATA[
  3085. model.toggle("case17");
  3086. if (grd_edudeptinfolist.rows - grd_edudeptinfolist.fixedRows <= 0 ) {
  3087. submit("TRRPB00116");
  3088. }
  3089. ]]>
  3090. </script>
  3091. </button>
  3092. <button id="button32" class="btn_sw" group="tab" style="left:495px; top:235px; width:100px; height:22px; ">
  3093. <caption>교원경력</caption>
  3094. <script type="javascript" ev:event="onclick">
  3095. <![CDATA[
  3096. model.toggle("case18");
  3097. if (grd_profcarinfolist.rows - grd_profcarinfolist.fixedRows <= 0 ) {
  3098. submit("TRRPB00117");
  3099. }
  3100. ]]>
  3101. </script>
  3102. </button>
  3103. <button id="button1" class="btn_sw" group="tab" selected="false" style="left:594px; top:235px; width:100px; height:22px; ">
  3104. <caption>진료분야</caption>
  3105. <script type="javascript" ev:event="onclick">
  3106. <![CDATA[
  3107. // var dutplceinstcd = getUserInfo("dutplceinstcd");
  3108. //
  3109. // if ( dutplceinstcd == "103" ) {
  3110. // model.toggle("case13");
  3111. // }
  3112. // else {
  3113. // model.toggle("case3");
  3114. // }
  3115. model.toggle("case13");
  3116. ]]>
  3117. </script>
  3118. </button>
  3119. <caption id="caption8" class="cell_1" style="left:989px; top:183px; width:80px; height:23px; vertical-align:middle; ">근무상태</caption>
  3120. <select1 id="cmb_preststatcd" ref="/root/main/empldata/empllist/preststatcd" class="combo_essential" disabled="true" navindex="7" appearance="minimal" style="left:1071px; top:185px; width:121px; height:19px; ">
  3121. <choices>
  3122. <itemset>
  3123. <label/>
  3124. <value/>
  3125. </itemset>
  3126. </choices>
  3127. </select1>
  3128. <button id="btn_fileupload" class="btn2_letter9" visibility="hidden" style="left:20px; top:185px; width:119px; height:19px; text-align:center; ">
  3129. <caption>사 진 변 경</caption>
  3130. <script type="javascript" ev:event="DOMActivate">
  3131. <![CDATA[
  3132. var emplno=model.getValue("/root/main/empldata/empllist[1]/emplno");
  3133. if(emplno ==""){
  3134. messageBox("사원을 ","C002");
  3135. return;
  3136. }
  3137. var file = openImageFileDialog(1048576); // image 파일이 너무 크면 submit 시간이 매우 오래(5분이상) 걸리므로 가급적 사이즈를 작게 제한한다.
  3138. if (file == "") {
  3139. return;
  3140. }
  3141. fChangeImage(file);
  3142. //model.setFocus("ipt_imgnminput");
  3143. model.refresh();
  3144. ]]>
  3145. </script>
  3146. </button>
  3147. <button id="button13" class="btn_sw" group="tab" style="left:198px; top:235px; width:100px; height:22px; ">
  3148. <caption>이동내역</caption>
  3149. <script type="javascript" ev:event="onclick">
  3150. <![CDATA[
  3151. model.toggle("case19");
  3152. if (grd_emplnogvnmovelist.rows - grd_emplnogvnmovelist.fixedRows <= 0 ) {
  3153. submit("TRRPB00122");
  3154. }
  3155. ]]>
  3156. </script>
  3157. </button>
  3158. <button id="button15" class="btn2_letter6" visibility="hidden" style="left:40px; top:170px; width:86px; height:19px; ">
  3159. <caption>다운로드</caption>
  3160. <script type="javascript" ev:event="DOMActivate">
  3161. <![CDATA[
  3162. var folderPath="C:/imgtemp";
  3163. var fso=new ActiveXObject('Scripting.FileSystemObject');
  3164. if (!fso.FolderExists(folderPath)) {//fso.DeleteFolder(folderPath);
  3165. var folderObj=fso.CreateFolder(folderPath)
  3166. }
  3167. var emplno = model.getValue("/root/send/emplref/emplno");
  3168. var emplnm = model.getValue("/root/main/empldata/empllist/name");
  3169. var filenm = emplnm+"_"+emplno+".jpg";
  3170. var localfile = "C:/imgtemp/"+filenm;
  3171. model.download(getActionURL("TRRPB00123")+"&emplno="+emplno,localfile,false);
  3172. messageBox("C:/imgtemp 폴더에 파일저장이 ","I002");
  3173. ]]>
  3174. </script>
  3175. </button>
  3176. <select1 id="cmb_payclsprfshipflag" ref="/root/main/empldata/empllist/payclsprfshipflag" class="combo_default" disabled="true" appearance="minimal" style="left:795px; top:185px; width:190px; height:19px; ">
  3177. <choices>
  3178. <itemset>
  3179. <label/>
  3180. <value/>
  3181. </itemset>
  3182. </choices>
  3183. </select1>
  3184. <caption id="caption87" class="cell_1" style="left:713px; top:183px; width:80px; height:23px; vertical-align:middle; ">호봉구분</caption>
  3185. <caption id="caption81" class="cell_1" style="left:989px; top:87px; width:80px; height:23px; vertical-align:middle; ">신규입사구분</caption>
  3186. <caption id="caption85" class="cell_1" style="left:989px; top:111px; width:80px; height:23px; vertical-align:middle; ">교육코드</caption>
  3187. <select1 id="cmb_educd" ref="/root/main/empldata/empllist/educd" class="combo_essential" disabled="true" navindex="29" appearance="minimal" editmode="inputsearch" style="left:1070px; top:113px; width:121px; height:19px; ">
  3188. <choices>
  3189. <itemset>
  3190. <label/>
  3191. <value/>
  3192. </itemset>
  3193. </choices>
  3194. </select1>
  3195. <bool id="bool1" navindex="28" checkvalue="Y,N" ref="/root/main/empldata/empllist/entnewgb" style="left:1075px; top:90px; width:100px; height:18px; "/>
  3196. </group>
  3197. <group id="grp_btn" scroll="auto" style="left:0px; top:12px; width:1195px; height:27px; ">
  3198. <button id="button11" class="btn3_letter4" visibility="hidden" style="left:0px; top:3px; width:80px; height:22px; ">
  3199. <caption>화면이동</caption>
  3200. </button>
  3201. <button id="btn_save" class="btn4_letter2" visibility="hidden" style="left:1139px; top:3px; width:56px; height:22px; ">
  3202. <caption>저장</caption>
  3203. <script type="javascript" ev:event="DOMActivate">
  3204. <![CDATA[
  3205. /* Grid의 DATA와 각 Control의 값을 비교해서 수정 되었으면 Grid에 Copy후 Grid의 상태를 바꿔준다 */
  3206. misfGridRowStatusChange(grd_empllist, SOURCE_NODE, TARGET_NODE);
  3207. misfGridRowStatusChange(grd_armylist, SOURCE_ARMY_NODE, TARGET_ARMY_NODE);
  3208. // var cur_rows=grd_imgviewlist.rows;
  3209. //
  3210. // var imgupdtdata = "";
  3211. // if(img_hidden.src =="../../../com/commonweb/images/no_image.gif"){
  3212. // imgupdtdata="";
  3213. // }
  3214. // else{
  3215. // imgupdtdata=getGridUpdateData(grd_imgviewlist);
  3216. // }
  3217. // if (updtdata == "" && imgupdtdata =="") {
  3218. // messageBox("변경된 데이터가","I004");
  3219. // return;
  3220. // }
  3221. model.refresh();
  3222. misfSave("TXRPB00101");
  3223. ]]>
  3224. </script>
  3225. </button>
  3226. <line id="line75" class="line_6" style="x1:0; y1:25; x2:1195; y2:25; "/>
  3227. <input id="ipt_systemflag" ref="/root/init/systemflag" visibility="hidden" style="left:100px; top:5px; width:45px; height:19px; "/>
  3228. </group>
  3229. </xhtml:body>
  3230. </xhtml:html>