SMRPB04000_경영자용인사조회.xrw 117 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103
  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. <indxlist>
  86. <item>
  87. <depth/>
  88. <deptcd/>
  89. <psnworksupdeptcd/>
  90. <depthngnm/>
  91. <pathcd/>
  92. </item>
  93. </indxlist>
  94. <empllist>
  95. <emplno/>
  96. <emplnm/>
  97. <jobrespnm/>
  98. <depthngnm/>
  99. </empllist>
  100. <educ>
  101. <educlist/>
  102. </educ>
  103. </main>
  104. <send>
  105. <emplref>
  106. <emplno/>
  107. </emplref>
  108. <save>
  109. <empllist/>
  110. <grntlist1/>
  111. <grntlist2/>
  112. <famylist/>
  113. <scholist/>
  114. <licnlist/>
  115. <afcrlist/>
  116. <becrlist/>
  117. <prizlist/>
  118. <rpmdlist/>
  119. <armylist/>
  120. <forgnlist/>
  121. <psnreflist/>
  122. <famyhistlist/>
  123. <hdfamyynhistlist/>
  124. <edudeptinfolist/>
  125. <profcarinfolist/>
  126. <imgviewlist/>
  127. </save>
  128. <instcd/>
  129. <deptcd/>
  130. <jobrespcd/>
  131. <psnworksupdeptcd/>
  132. <psnworksupdeptcd/>
  133. <deptgbn/>
  134. </send>
  135. <init>
  136. <systemflag/>
  137. <domiaddrtemp/>
  138. <resdnrgstareaaddrtemp/>
  139. <residncaddrtemp/>
  140. <addrtemp/>
  141. </init>
  142. </root>
  143. </instance>
  144. <submission id="TRRPB00101" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/empl"/>
  145. <script type="javascript" ev:event="xforms-ready">
  146. <![CDATA[
  147. model.toggle("case1");
  148. misfComboInstCdListMulti("cmb_instcd_search",getCurrentDate(),"","Y");
  149. //misfComboComCdList('Z0007', cmb_instcd_search);
  150. misfGridInit(grd_empllist_search);
  151. var instcd = getUserInfo("dutplceinstcd");
  152. cmb_instcd_search.value=instcd;
  153. submit("TRRPC00401");
  154. /* Grid 초기화 */
  155. model.removeNodeset(grd_empllist.nodeset);
  156. model.removeNodeset(grd_famylist.nodeset);
  157. model.removeNodeset(grd_scholist.nodeset);
  158. model.removeNodeset(grd_licnlist.nodeset);
  159. model.removeNodeset(grd_afcrlist.nodeset);
  160. model.removeNodeset(grd_becrlist.nodeset);
  161. model.removeNodeset(grd_prizlist.nodeset);
  162. model.removeNodeset(grd_rpmdlist.nodeset);
  163. model.removeNodeset(grd_armylist.nodeset);
  164. model.removeNodeset(grd_gvnoffcordlist.nodeset);
  165. model.removeNodeset(grd_famyhistlist.nodeset);
  166. model.removeNodeset(grd_psnreflist.nodeset);
  167. model.removeNodeset(grd_hdfamyhistlist.nodeset);
  168. model.removeNodeset(grd_edudeptinfolist.nodeset);
  169. model.removeNodeset(grd_profcarinfolist.nodeset);
  170. model.removeNodeset(grd_emplnograduplist.nodeset);
  171. model.removeNodeset(grd_emplnojobrespgvnolist.nodeset);
  172. model.removeNodeset(grd_imgviewlist.nodeset);
  173. model.removeNodeset(grd_emplnogvnmovelist.nodeset);
  174. // model.removeNodeset(grd_educlist.nodeset);
  175. /* Grid의 Mater, Detail관계 설정
  176. misfMsterDetailSet(관계설정할 Grid, Mater가 될 Grid, submit ID, 저장여부) */
  177. misfMsterDetailSet(grd_empllist, null, "TRRPB00101" ,"Y");
  178. misfMsterDetailSet(grd_famylist, grd_empllist, "TRRPB00103" ,"Y");
  179. misfMsterDetailSet(grd_scholist, grd_empllist, "TRRPB00104" ,"Y");
  180. misfMsterDetailSet(grd_licnlist, grd_empllist, "TRRPB00105" ,"Y");
  181. misfMsterDetailSet(grd_afcrlist, grd_empllist, "TRRPB00106" ,"Y");
  182. misfMsterDetailSet(grd_becrlist, grd_empllist, "TRRPB00107" ,"Y");
  183. misfMsterDetailSet(grd_prizlist, grd_empllist, "TRRPB00108" ,"Y");
  184. misfMsterDetailSet(grd_rpmdlist, grd_empllist, "TRRPB00108" ,"Y");
  185. misfMsterDetailSet(grd_armylist, grd_empllist, "TRRPB00110" ,"Y");
  186. misfMsterDetailSet(grd_gvnoffcordlist, grd_empllist, "TRRPB00112" ,"N");
  187. misfMsterDetailSet(grd_famyhistlist, grd_empllist, "TRRPB00113" ,"Y");
  188. misfMsterDetailSet(grd_psnreflist, grd_empllist, "TRRPB00114" ,"Y");
  189. misfMsterDetailSet(grd_hdfamyhistlist, grd_empllist, "TRRPB00115" ,"Y");
  190. misfMsterDetailSet(grd_edudeptinfolist, grd_empllist, "TRRPB00116" ,"Y");
  191. misfMsterDetailSet(grd_profcarinfolist, grd_empllist, "TRRPB00117" ,"Y");
  192. misfMsterDetailSet(grd_imgviewlist, grd_empllist, "TRRPB00118" ,"Y");
  193. misfMsterDetailSet(grd_emplnograduplist, grd_empllist, "TRRPB00119" ,"N");
  194. misfMsterDetailSet(grd_emplnojobrespgvnolist, grd_empllist, "TRRPB00120" ,"N");
  195. misfMsterDetailSet(grd_emplnogvnmovelist, grd_empllist, "TRRPB00122" ,"N");
  196. misfMsterDetailSet(grd_educlist, grd_empllist, "TRRPB00124" ,"N");
  197. /* Combo Data Setting
  198. misfComboComCdListMulti(공통코드군, Combo) */
  199. misfComboInstCdListMulti("cmb_instcd",getCurrentDate(),"","N","N");
  200. misfComboComCdListMulti("R0058,R0131,R0066,R0098,R0071,R0077,R0137,R0135,R0076,R0087,R0078,R0079,R0080,R0081,R0085,R0134,R0148,R0146,R0170,R0171",
  201. "cmb_prfshipflag,cmb_emailaddr2,cmb_holyordflag,cmb_payclscd,cmb_hometype,cmb_headfamrela,cmb_relign,grd_famylist.scholcd,grd_famylist.jobcd,grd_scholist.acdmydg,cmb_clssvcstatcd,cmb_dembztflag,cmb_armyclscd,cmb_brnhmiltsrvccd,cmb_classcd,cmb_brtharea,cmb_entcopath,cmb_preststatcd,grd_edudeptinfolist.appntflag,grd_edudeptinfolist.edudeptjobgradcd");
  202. /* Combo Data Setting
  203. misfComboComCdList(공통코드군, Combo) */
  204. //misfComboComCdList('Z0007', cmb_instcd); //기관코드
  205. /* Combo Data Setting
  206. misfComboCopyItemSet(Copy할Combo혹은Grid, Copy할Grid의 Column ref, Copy될Combo혹은Grid, Copy될 Grid의 Column ref) */
  207. // misfComboCopyItemSet(cmb_instcd, "", cmb_dutplceinst, ""); //기관코드
  208. // misfComboComCdList('Z0004', cmb_prfshipflag); //교직구분
  209. // misfComboComCdList('A0120', cmb_emailaddr); //Email
  210. misfComboCopyItemSet(cmb_headfamrela, "", cmb_hshdrela, ""); //세대주와의 관계
  211. misfComboCopyItemSet(cmb_headfamrela, "", grd_famylist, "famyrel"); //가족과의 관계
  212. misfComboCopyItemSet(grd_famylist, "scholcd",grd_scholist, "scholflag" ); //학력
  213. misfComboCopyItemSet(cmb_headfamrela, "",grd_famyhistlist, "famyrel" ); //관계
  214. misfComboCopyItemSet(grd_famylist, "scholcd",grd_famyhistlist, "scholcd" ); //학력
  215. misfComboCopyItemSet(grd_famylist, "jobcd",grd_famyhistlist, "jobcd" ); //직업
  216. misfComboCopyItemSet(cmb_instcd, "", grd_psnreflist, "refinst"); //기관코드
  217. misfComboCopyItemSet(cmb_instcd, "", cmb_orginstcd, ""); //기관코드
  218. misfComboCopyItemSet(cmb_instcd, "", cmb_detlinst, ""); //기관코드
  219. // misfComboComCdList('Z0005', cmb_payclscd); //호봉 --공통코드가 정해지지않음.
  220. // misfComboComCdList('R0066', cmb_holyordflag);
  221. // misfCursorMoveSet();
  222. // misfComboComCdList('R0059', cmb_grupjoblncd); //직군
  223. // misfComboComCdList('R0060', cmb_joblncd); //직열
  224. // misfComboComCdList('Z0001', cmb_jobkindcd); //직종
  225. // misfComboComCdList('Z0002', cmb_jobposcd); //직위
  226. // misfComboComCdList('Z0003', cmb_jobrespcd); //직책
  227. // misfComboComCdList('Z0004', cmb_ojobgradcd); //구직급 --공통코드가 정해지지않음.
  228. // misfComboCopyItemSet(cmb_ojobgradcd, "", cmb_njobgradcd, ""); //신직급
  229. var deptcd=getUserInfo("posdeptcd");
  230. /*
  231. if (deptcd == "4020500000") {
  232. // btn_famyHist.visible = true;
  233. // btn_maryhist.visible = true;
  234. }
  235. */
  236. var dutplceinstcd = getUserInfo("dutplceinstcd");
  237. // if (dutplceinstcd == "103" ) {
  238. // caption4.text = "부(실)";
  239. // caption28.text = "과(팀)";
  240. // caption32.text = "부서";
  241. // }
  242. // else {
  243. // caption4.text = "부서";
  244. // caption28.text = "팀";
  245. // caption32.text = "유닛";
  246. // }
  247. fChangeImage("../../../com/commonweb/images/no_image.gif");//초기 이미지설정
  248. ipt_systemflag.value = "A";
  249. model.refresh();
  250. model.setFocus("ipt_emplno");
  251. ]]>
  252. </script>
  253. <submission id="TXRPB00101" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/save" resultref="/root/hiddeen/temp"/>
  254. <submission id="TRRPB00102" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/grnt"/>
  255. <submission id="TRRPB00103" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/famy"/>
  256. <submission id="TRRPB00104" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/scho"/>
  257. <submission id="TRRPB00105" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/licn"/>
  258. <submission id="TRRPB00106" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/afcr"/>
  259. <submission id="TRRPB00107" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/becr"/>
  260. <submission id="TRRPB00108" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/priz"/>
  261. <submission id="TRRPB00109" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/rpmd"/>
  262. <submission id="TRRPB00110" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/army"/>
  263. <submission id="TRRPB00111" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/forgn"/>
  264. <submission id="TRRPB00112" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/emplnogvnoffcord"/>
  265. <submission id="TRRPB00113" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/famyhist"/>
  266. <submission id="TRRPB00114" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/psnref"/>
  267. <submission id="TRRPB00115" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/hdfamyynhist"/>
  268. <submission id="TRRPB00116" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/edudeptinfo"/>
  269. <submission id="TRRPB00117" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/profcarinfo"/>
  270. <submission id="TRRPB00118" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/imgviewlist"/>
  271. <submission id="TRRPB00119" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/emplnogradup"/>
  272. <submission id="TRRPB00120" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/emplnojobrespgvno"/>
  273. <submission id="TRRPB00121" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/concroffcord"/>
  274. <submission id="TRRPB00122" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/emplnogvnmove"/>
  275. <submission id="TRRPC00401" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" resultref="/root/main/indxlist"/>
  276. <submission id="TRRPC00402" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" resultref="/root/main/empllist"/>
  277. <submission id="TRRPB00124" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/emplref" resultref="/root/main/educ"/>
  278. </model>
  279. <script type="javascript" src="../../../com/commonweb/js/common.js"/>
  280. <script type="javascript" src="../../../com/commonweb/js/tfHelper.js"/>
  281. <script type="javascript" src="../../../com/commonweb/js/dateHelper.js"/>
  282. <script type="javascript">
  283. <![CDATA[
  284. function fChangeImage(imgsrc) {
  285. img_hidden.src = imgsrc; // 파일에서 읽은 이미지의 base64 encoding 값을 가져오기 위한 이미지 컨트롤
  286. var data = img_hidden.getbase64data(); // base64 encoding 문자열을 가져온다.
  287. var imgSize = getImageSize(imgsrc);
  288. var imgWidthSize = imgSize.split("^")[0];
  289. var imgHeightSize = imgSize.split("^")[1];
  290. model.setValue("/root/main/imgdata/photimg",data,true); // 이미지를 보여주기 위하여 view용 이미지컨트롤의 ref instance에 값을 저장
  291. setImageRefInstance("/root/main/imgdata/photimg"); //base64 encoding 문자열을 이미지로 변환하여 보여준다,
  292. img_view.attribute("width")= "173";
  293. img_view.attribute("height")= "225";
  294. var cur_rows = grd_imgviewlist.rows;
  295. var emplno=model.getValue("/root/main/empldata/empllist[1]/emplno");
  296. var imgemplno=model.getValue("/root/main/imgviewlist[1]/emplno");
  297. if(img_hidden.src != "../../../com/commonweb/images/no_image.gif" && imgemplno ==""){//이미지추가시 그리드 추가
  298. grd_imgviewlist.addrow(); // 입력할 행 추가.
  299. cur_row = grd_imgviewlist.row; // 추가된 행 번호 가져오기
  300. // 그리드에 추가
  301. model.setValue("/root/main/imgviewlist["+cur_row+"]/emplno",emplno);
  302. model.setValue("/root/main/imgviewlist["+cur_row+"]/photimg",data,true);
  303. }else if(img_hidden.src != "../../../com/commonweb/images/no_image.gif" && imgemplno !=""){//업데이트시 그리드셋팅
  304. grd_imgviewlist.addStatus(1,"update");
  305. model.setValue("/root/main/imgviewlist[1]/emplno",emplno);
  306. model.setValue("/root/main/imgviewlist[1]/photimg",data,true);
  307. }
  308. model.refresh();
  309. }
  310. function fRetrImage() {//조회시 그리드에 base64 encoding data셋팅하고 사진이미지 보여준다.
  311. if (grd_imgviewlist.Rows <= grd_imgviewlist.fixedRows) {
  312. fChangeImage("../../../com/commonweb/images/no_image.gif");//초기 이미지설정
  313. }
  314. else {
  315. for( var i = grd_imgviewlist.fixedRows ; i < grd_imgviewlist.Rows ; i++ ) {
  316. var imgdata = model.getValue("/root/main/imgviewlist["+i+"]/photimg"); // base64 encoding 문자열을 가져온다.
  317. model.setValue("/root/main/imgdata/photimg", imgdata,true);
  318. setImageRefInstance("/root/main/imgdata/photimg");
  319. }
  320. grd_imgviewlist.rebuild();
  321. }
  322. model.refresh();
  323. }
  324. ]]>
  325. </script>
  326. <script type="javascript" src="../../../com/commonweb/js/common.js"/>
  327. <script type="javascript" src="../../../com/commonweb/js/tfHelper.js"/>
  328. <script type="javascript" src="../../../mis/miscommonweb/js/MIS.js"/>
  329. <script type="javascript" src="../../../mis/humtrafactmngtweb/js/RPB001.js"/>
  330. </xhtml:head>
  331. <xhtml:body overflow="hidden" style="margin-left:8; margin-right:8; ">
  332. <group id="group1" style="left:0px; top:0px; width:1195px; height:13px; ">
  333. <caption id="caption6" class="tit_1" style="left:0px; top:0px; width:800px; height:14px; ">경영자용인사조회</caption>
  334. </group>
  335. <group id="group2" overflow="hidden" scroll="auto" style="left:0px; top:38px; width:1195; height:744px; ">
  336. <line id="line16" class="line_2" style="x1:394; y1:157px; x2:1195px; y2:157px; "/>
  337. <line id="line26" class="line_2" style="x1:394; y1:37px; x2:1195px; y2:37px; "/>
  338. <line id="line14" class="line_2" style="x1:394; y1:181px; x2:1195px; y2:181px; "/>
  339. <line id="line25" class="line_2" style="x1:394; y1:61px; x2:1195px; y2:61px; "/>
  340. <line id="line24" class="line_2" style="x1:394; y1:85px; x2:1195px; y2:85px; "/>
  341. <line id="line23" class="line_2" style="x1:394; y1:109px; x2:1195px; y2:109px; "/>
  342. <line id="line22" class="line_2" style="x1:394; y1:133px; x2:1195px; y2:133px; "/>
  343. <caption id="caption172" class="cell_1" style="left:209px; top:15px; width:178px; height:236px; vertical-align:middle; "/>
  344. <caption id="caption322" class="cell_1" style="left:390px; top:233px; width:85px; height:23px; vertical-align:middle; ">수습일자</caption>
  345. <input id="ipt_dutyy" ref="/root/main/empldata/empllist/dutyy" class="input_default" disabled="true" style="left:770px; top:235px; width:24px; height:19px; "/>
  346. <caption id="caption311" class="cell_1" style="left:665; top:183px; width:100; height:23px; vertical-align:middle; ">가장여부</caption>
  347. <caption id="caption333" class="cell_1" style="left:665; top:87px; width:100; height:23px; ">휴대폰</caption>
  348. <caption id="caption323" class="cell_1" style="left:940px; top:111px; width:90px; height:23px; vertical-align:middle; ">구직급/호봉</caption>
  349. <input id="ipt_age" ref="/root/main/empldata/empllist/age" class="input_default" disabled="true" style="left:860px; top:235px; width:31px; height:19px; "/>
  350. <button id="btn_emplsearch" class="icon_search" disabled="false" visibility="visible" style="left:640; top:18px; width:16px; height:16px; ">
  351. <caption/>
  352. <script type="javascript" ev:event="DOMActivate">
  353. <![CDATA[
  354. /* 사원번호 Help 화면 Open
  355. misfOpenPopUpList(화면종류Code, OPEN하는 Control, 공통코드, 리턴받을 Instance명) */
  356. var recv_list = "emplno";
  357. rpbfOpenPopUpList("SPRPB00101", ipt_emplno, recv_list,"ipt_systemflag","N");
  358. //misfOpenPopUpList("01", ipt_emplno,"", recv_list) ;
  359. model.refresh();
  360. if (ipt_emplno.label != "" && ipt_emplno.label.length > 0) {
  361. ipt_emplno.dispatch("xforms-value-changed");
  362. }
  363. ]]>
  364. </script>
  365. </button>
  366. <caption id="caption324" class="cell_1" style="left:940px; top:184px; width:90px; height:23px; vertical-align:middle; ">승급월</caption>
  367. <caption id="caption325" class="cell_1" style="left:390px; top:208px; width:85px; height:23px; vertical-align:middle; ">입사일자</caption>
  368. <caption id="caption314" class="cell_1" style="left:665; top:135px; width:100; height:23px; vertical-align:middle; ">성별</caption>
  369. <caption id="caption315" class="cell_1" visibility="hidden" style="left:940px; top:233px; width:90px; height:23px; vertical-align:middle; ">직군</caption>
  370. <line id="line192" class="line_1" style="x1:209px; y1:10px; x2:389px; y2:10px; "/>
  371. <caption id="caption327" class="cell_1" style="left:665px; top:208px; width:100px; height:23px; vertical-align:middle; ">퇴사일자</caption>
  372. <caption id="caption316" class="cell_1" style="left:940px; top:135px; width:90px; height:23px; vertical-align:middle; ">신직급/연차</caption>
  373. <line id="line193" class="line_1" style="x1:390px; y1:10px; x2:1190px; y2:10px; "/>
  374. <caption id="caption328" class="cell_1" style="left:940px; top:15px; width:90px; height:23px; vertical-align:middle; ">위험코드</caption>
  375. <caption id="caption317" class="cell_1" style="left:940px; top:39px; width:90px; height:23px; vertical-align:middle; ">직종</caption>
  376. <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:770px; top:138px; width:104px; height:19px; text-align:center; border-style:solid; ">
  377. <choices>
  378. <item>
  379. <label>남</label>
  380. <value>M</value>
  381. </item>
  382. <item>
  383. <label>여</label>
  384. <value>F</value>
  385. </item>
  386. </choices>
  387. </select1>
  388. <caption id="caption318" class="cell_1" style="left:940px; top:87px; width:90px; height:23px; vertical-align:middle; ">직책</caption>
  389. <input id="ipt_rregno2" ref="/root/main/empldata/empllist/rregno2" class="input_essential" disabled="true" navindex="11" style="left:860; top:113px; width:76; height:19px; "/>
  390. <caption id="caption307" class="cell_1" style="left:665; top:159px; width:100; height:23px; vertical-align:middle; ">결혼여부</caption>
  391. <caption id="caption329" class="cell_1" style="left:390px; top:63px; width:85px; height:23px; ">성명(한문)</caption>
  392. <caption id="caption2" class="cell_1" style="left:390px; top:39px; width:85px; height:23px; ">성명</caption>
  393. <caption id="caption319" class="cell_1" style="left:940px; top:63px; width:90px; height:23px; vertical-align:middle; ">직위</caption>
  394. <input id="ipt_rregno1" ref="/root/main/empldata/empllist/rregno1" class="input_essential" disabled="true" navindex="10" style="left:770px; top:113px; width:76; height:19px; "/>
  395. <caption id="caption308" class="cell_1" style="left:665; top:111px; width:100; height:23px; vertical-align:middle; ">주민등록번호</caption>
  396. <caption id="caption3" class="cell_1" style="left:390px; top:87px; width:85px; height:23px; ">소속기관</caption>
  397. <caption id="caption309" style="left:846; top:113px; width:16px; height:17px; font-weight:bold; text-align:center; vertical-align:bottom; ">~</caption>
  398. <select1 id="cmb_prfshipflag" ref="/root/main/empldata/empllist/prfshipflag" class="combo_essential" disabled="true" navindex="7" appearance="minimal" style="left:770; top:41px; width:166; height:19px; ">
  399. <choices>
  400. <itemset>
  401. <label/>
  402. <value/>
  403. </itemset>
  404. </choices>
  405. </select1>
  406. <caption id="caption4" class="cell_1" style="left:390px; top:111px; width:85px; height:23px; ">부(실)</caption>
  407. <caption id="caption5" class="cell_1" style="left:390px; top:183px; width:85px; height:23px; ">근무지</caption>
  408. <img id="img_view" ref="/root/main/imgdata/photimg" style="left:211px; top:20px; width:173px; height:225px; background-stretch:stretch; "/>
  409. <img id="img_hidden" visibility="hidden" style="left:211px; top:20px; width:173px; height:225px; "/>
  410. <input id="ipt_emplno" ref="/root/send/emplref/emplno" class="input_s_essential" disabled="true" navindex="1" style="left:480px; top:16px; width:155px; height:19px; font-family:굴림체; font-size:12pt; font-weight:bold; color:#0000ff; text-align:center; vertical-align:middle; ">
  411. <script type="javascript" ev:event="xforms-value-changed">
  412. <![CDATA[
  413. misfGridInit(grd_empllist);
  414. misfGridInit(grd_imgviewlist);
  415. // button2.attribute("selected") = true;
  416. // model.toggle("case1");
  417. fChangeImage("../../../com/commonweb/images/no_image.gif");//초기 이미지설정
  418. button2.dispatch("onclick");
  419. misfMsterDetailRetrieve();
  420. if (grd_empllist.rows - grd_empllist.fixedRows == 0) {
  421. misfGridIUD(grd_empllist, "A");
  422. }
  423. submit("TRRPB00118"); //사진
  424. // if (grd_armylist.rows - grd_armylist.fixedRows == 0) {
  425. // misfGridIUD(grd_armylist, "A");
  426. // }
  427. // else {
  428. // grd_armylist.row = 1;
  429. // }
  430. /* Grid Data를 다른 Control로 Copy : TARGET_NODE, SOURCE_NODE는 RPB001.js에 정의 됨.*/
  431. model.copyNode(TARGET_NODE,SOURCE_NODE);
  432. // model.copyNode(TARGET_ARMY_NODE, SOURCE_ARMY_NODE);
  433. fRetrImage();
  434. model.refresh();
  435. ]]>
  436. </script>
  437. <script type="javascript" ev:event="onkeyup">
  438. <![CDATA[
  439. /* Enter Key입력시 ipt_emplno의 xforms-value-changed 이벤트 발생 */
  440. inputEnterKey("ipt_emplno", "xforms-value-changed");
  441. ]]>
  442. </script>
  443. </input>
  444. <caption id="caption1" class="cell_1" style="left:665; top:39px; width:100; height:23px; ">급여분류</caption>
  445. <caption id="caption7" class="cell_1" style="left:665px; top:233px; width:100px; height:23px; vertical-align:middle; ">근속/나이</caption>
  446. <input id="ipt_name" ref="/root/main/empldata/empllist/name" class="input_essential" disabled="true" navindex="2" style="left:480px; top:41px; width:178; height:19px; font-family:굴림체; font-size:12pt; font-weight:bold; color:#0000ff; "/>
  447. <input id="ipt_chinm" ref="/root/main/empldata/empllist/chinm" class="input_essential" disabled="true" navindex="3" style="left:480px; top:65px; width:178; height:19px; "/>
  448. <caption id="caption9" class="cell_1" style="left:940px; top:159px; width:90px; height:23px; vertical-align:middle; ">겸직유무</caption>
  449. <input id="ipt_hosinseqno" ref="/root/main/empldata/empllist/hosinseqno" class="input_essential" disabled="true" navindex="8" style="left:770; top:65px; width:166; height:19px; "/>
  450. <caption id="caption331" class="cell_1" style="left:665; top:63px; width:100; height:23px; ">원내번호</caption>
  451. <input id="ipt_mpphonno" ref="/root/main/empldata/empllist/mpphonno" class="input_essential" disabled="true" navindex="9" style="left:770; top:89px; width:166; height:19px; "/>
  452. <button id="button2" class="btn_sw" group="tab" selected="true" style="left:209; top:271; width:100px; height:22px; ">
  453. <caption>기본인적사항1</caption>
  454. <toggle case="case1" ev:event="onclick"/>
  455. </button>
  456. <button id="button3" class="btn_sw" group="tab" selected="false" style="left:309; top:271; width:100px; height:22px; ">
  457. <caption>가족사항</caption>
  458. <script type="javascript" ev:event="onclick">
  459. <![CDATA[
  460. model.toggle("case4");
  461. if (grd_famylist.rows - grd_famylist.fixedRows <= 0 ) {
  462. submit("TRRPB00103");
  463. submit("TRRPB00113");
  464. submit("TRRPB00115");
  465. }
  466. ]]>
  467. </script>
  468. </button>
  469. <button id="button4" class="btn_sw" group="tab" style="left:409; top:271; width:100px; height:22px; ">
  470. <caption>학력사항</caption>
  471. <script type="javascript" ev:event="onclick">
  472. <![CDATA[
  473. model.toggle("case5");
  474. if (grd_scholist.rows - grd_scholist.fixedRows <= 0 ) {
  475. submit("TRRPB00104");
  476. }
  477. ]]>
  478. </script>
  479. </button>
  480. <button id="button5" class="btn_sw" group="tab" style="left:509; top:271; width:100px; height:22px; ">
  481. <caption>발령이동사항</caption>
  482. <script type="javascript" ev:event="onclick">
  483. <![CDATA[
  484. model.toggle("case6");
  485. if (grd_gvnoffcordlist.rows - grd_gvnoffcordlist.fixedRows <= 0 ) {
  486. submit("TRRPB00112");
  487. }
  488. ]]>
  489. </script>
  490. </button>
  491. <button id="button6" class="btn_sw" group="tab" style="left:609; top:271; width:100px; height:22px; ">
  492. <caption>자격면허사항</caption>
  493. <script type="javascript" ev:event="onclick">
  494. <![CDATA[
  495. model.toggle("case7");
  496. if (grd_licnlist.rows - grd_licnlist.fixedRows <= 0 ) {
  497. submit("TRRPB00105");
  498. }
  499. ]]>
  500. </script>
  501. </button>
  502. <button id="button7" class="btn_sw" group="tab" style="left:809; top:271; width:100px; height:22px; ">
  503. <caption>상벌사항</caption>
  504. <script type="javascript" ev:event="onclick">
  505. <![CDATA[
  506. model.toggle("case9");
  507. if (grd_prizlist.rows - grd_prizlist.fixedRows <= 0 ) {
  508. submit("TRRPB00108");
  509. }
  510. ]]>
  511. </script>
  512. </button>
  513. <button id="button8" class="btn_sw" group="tab" style="left:909; top:271; width:100px; height:22px; ">
  514. <caption>병역사항</caption>
  515. <script type="javascript" ev:event="onclick">
  516. <![CDATA[
  517. model.toggle("case10");
  518. if (grd_armylist.rows - grd_armylist.fixedRows <= 0 ) {
  519. submit("TRRPB00110");
  520. if (grd_armylist.rows - grd_armylist.fixedRows == 0) {
  521. misfGridIUD(grd_armylist, "A");
  522. }
  523. else {
  524. grd_armylist.row = 1;
  525. }
  526. model.copyNode(TARGET_ARMY_NODE, SOURCE_ARMY_NODE);
  527. model.refresh();
  528. }
  529. ]]>
  530. </script>
  531. </button>
  532. <button id="button9" class="btn_sw" group="tab" style="left:1009; top:271; width:100px; height:22px; ">
  533. <caption>교육훈련</caption>
  534. <script type="javascript" ev:event="onclick">
  535. <![CDATA[
  536. model.toggle("case11");
  537. if (grd_educlist.rows - grd_educlist.fixedRows <= 0 ) {
  538. submit("TRRPB00124");
  539. }
  540. ]]>
  541. </script>
  542. </button>
  543. <button id="button10" class="btn_sw" visibility="hidden" group="tab" style="left:209; top:295; width:100px; height:22px; ">
  544. <caption>학회</caption>
  545. <toggle case="case12" ev:event="onclick"/>
  546. </button>
  547. <button id="button25" class="btn_sw" group="tab" style="left:709; top:271; width:100px; height:22px; ">
  548. <caption>경력사항</caption>
  549. <script type="javascript" ev:event="onclick">
  550. <![CDATA[
  551. model.toggle("case8");
  552. if (grd_becrlist.rows - grd_becrlist.fixedRows <= 0 ) {
  553. submit("TRRPB00106");
  554. submit("TRRPB00107");
  555. }
  556. ]]>
  557. </script>
  558. </button>
  559. <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:770px; top:162px; width:104px; height:19px; text-align:center; border-style:solid; ">
  560. <choices>
  561. <item>
  562. <label>기혼</label>
  563. <value>Y</value>
  564. </item>
  565. <item>
  566. <label>미혼</label>
  567. <value>N</value>
  568. </item>
  569. </choices>
  570. </select1>
  571. <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:770px; top:186px; width:104px; height:19px; text-align:center; border-style:solid; ">
  572. <choices>
  573. <item>
  574. <label>Yes</label>
  575. <value>Y</value>
  576. </item>
  577. <item>
  578. <label>No</label>
  579. <value>N</value>
  580. </item>
  581. </choices>
  582. </select1>
  583. <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:1035px; top:162px; width:120px; height:19px; text-align:center; border-style:solid; ">
  584. <choices>
  585. <item>
  586. <label>Yes</label>
  587. <value>Y</value>
  588. </item>
  589. <item>
  590. <label>No</label>
  591. <value>N</value>
  592. </item>
  593. </choices>
  594. </select1>
  595. <caption id="caption164" class="cell_1" style="left:390px; top:15px; width:85px; height:23px; ">사원번호</caption>
  596. <input id="ipt_anual" ref="/root/main/empldata/empllist/anual" class="input_default" disabled="true" navindex="28" style="left:1100px; top:136px; width:90px; height:19px; "/>
  597. <caption id="caption23" style="left:793; top:236px; width:15px; height:20px; vertical-align:middle; ">년</caption>
  598. <input id="ipt_dutmm" ref="/root/main/empldata/empllist/dutmm" class="input_default" disabled="true" style="left:807px; top:235px; width:24px; height:19px; "/>
  599. <caption id="caption26" style="left:832; top:236px; width:26px; height:20px; vertical-align:middle; ">개월</caption>
  600. <switch id="switch1" style="left:209; top:316; width:983px; height:423; ">
  601. <case id="case1" selected="true">
  602. <line id="line36" class="line_2" style="x1:0px; y1:299px; x2:980; y2:299px; "/>
  603. <line id="line34" class="line_3" style="x1:0px; y1:323px; x2:980; y2:323px; "/>
  604. <line id="line35" class="line_2" style="x1:0px; y1:224px; x2:980; y2:224px; "/>
  605. <line id="line3" class="line_3" style="x1:0px; y1:248px; x2:980; y2:248px; "/>
  606. <line id="line4" class="line_3" style="x1:0px; y1:172px; x2:980; y2:172px; "/>
  607. <line id="line29" class="line_2" style="x1:0px; y1:124px; x2:980; y2:124px; "/>
  608. <line id="line28" class="line_2" style="x1:0px; y1:148px; x2:980; y2:148px; "/>
  609. <line id="line33" class="line_2" style="x1:0px; y1:76px; x2:980; y2:76px; "/>
  610. <line id="line32" class="line_2" style="x1:0px; y1:52px; x2:980; y2:52px; "/>
  611. <line id="line31" class="line_2" style="x1:0px; y1:100px; x2:980; y2:100px; "/>
  612. <caption id="caption278" class="tit_2" style="left:5px; top:10px; width:144px; height:13px; ">기본인적사항1</caption>
  613. <line id="line9" class="line_1" style="x1:0px; y1:197px; x2:980; y2:197px; "/>
  614. <line id="line207" class="line_1" style="x1:0px; y1:25px; x2:980; y2:25px; "/>
  615. <caption id="caption357" class="cell_1" style="left:635; top:102px; width:65; height:23px; ">특기</caption>
  616. <caption id="caption335" class="cell_1" style="left:0px; top:30px; width:80px; height:23px; vertical-align:middle; ">출생지</caption>
  617. <caption id="caption83" class="cell_1" style="left:635; top:150px; width:65; height:23px; vertical-align:middle; ">E-Mail</caption>
  618. <caption id="caption358" class="cell_1" style="left:405; top:102px; width:97px; height:23px; ">취미</caption>
  619. <caption id="caption336" class="cell_1" style="left:206; top:30px; width:85px; height:23px; vertical-align:middle; ">주거형태</caption>
  620. <caption id="caption84" style="left:762; top:154px; width:15px; height:15px; text-align:center; vertical-align:bottom; ">@</caption>
  621. <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; "/>
  622. <caption id="caption359" class="cell_1" style="left:0px; top:150px; width:80px; height:23px; ">입사경위</caption>
  623. <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; "/>
  624. <input id="ipt_cntctel" ref="/root/main/empldata/empllist/cntctel" class="input_default" disabled="true" appearance="input" style="left:82px; top:56px; width:122; height:19px; "/>
  625. <caption id="caption338" class="cell_1" style="left:405; top:30px; width:97px; height:23px; vertical-align:middle; ">본적</caption>
  626. <input id="input1" ref="/root/main/empldata/empllist/chinm" class="input_default" disabled="true" appearance="input" style="left:82px; top:104px; width:122; height:19px; "/>
  627. <input id="ipt_emplengnm" ref="/root/main/empldata/empllist/emplengnm" class="input_default" disabled="true" appearance="input" style="left:82px; top:128px; width:122; height:19px; "/>
  628. <input id="ipt_domizipcd1" ref="/root/main/empldata/empllist/domizipcd1" class="input_default" disabled="true" editable="false" appearance="input" style="left:504; top:32px; width:42px; height:19px; "/>
  629. <caption id="caption339" class="cell_1" style="left:405; top:54px; width:97px; height:23px; vertical-align:middle; ">주민등록지</caption>
  630. <input id="ipt_wedanvy" ref="/root/main/empldata/empllist/wedanvy" class="input_default" disabled="true" inputtype="date" appearance="input" style="left:294; top:56px; width:109; height:19px; "/>
  631. <input id="ipt_hoby" ref="/root/main/empldata/empllist/hoby" class="input_default" disabled="true" appearance="input" style="left:504; top:104px; width:126; height:19px; "/>
  632. <input id="ipt_resdnrgstareazipcd1" ref="/root/main/empldata/empllist/resdnrgstareazipcd1" class="input_default" disabled="true" editable="false" appearance="input" style="left:504; top:56px; width:42px; height:19px; "/>
  633. <input id="ipt_residncaddr" ref="/root/main/empldata/empllist/residncaddr" class="input_default" disabled="true" style="left:695; top:80px; width:285; height:19px; "/>
  634. <input id="input2" ref="/root/main/empldata/empllist/hosinseqno" class="input_default" disabled="true" appearance="input" style="left:82px; top:80px; width:122; height:19px; "/>
  635. <input id="ipt_spclment" ref="/root/main/empldata/empllist/spclment" class="input_default" disabled="true" appearance="input" style="left:702; top:104px; width:278; height:19px; "/>
  636. <input id="ipt_resdnrgstareaaddr" ref="/root/main/empldata/empllist/resdnrgstareaaddr" class="input_default" disabled="true" style="left:695; top:56px; width:285; height:19px; "/>
  637. <caption id="caption78" class="cell_1" style="left:0px; top:78px; width:80px; height:23px; ">원내번호</caption>
  638. <input id="input3" ref="/root/main/empldata/empllist/mpphonno" class="input_default" disabled="true" style="left:702; top:128px; width:278; height:19px; "/>
  639. <select1 id="cmb_emailaddr2" ref="/root/main/empldata/empllist/emailaddr" class="combo_default" disabled="true" appearance="minimal" style="left:778; top:152px; width:85px; height:19px; ">
  640. <choices>
  641. <itemset>
  642. <label/>
  643. <value/>
  644. </itemset>
  645. </choices>
  646. </select1>
  647. <input id="ipt_residnczipcd1" ref="/root/main/empldata/empllist/residnczipcd1" class="input_default" disabled="true" editable="false" appearance="input" style="left:504; top:80px; width:42px; height:19px; "/>
  648. <input id="ipt_headfamnm" ref="/root/main/empldata/empllist/headfamnm" class="input_default" disabled="true" appearance="input" style="left:294; top:128px; width:109; height:19px; "/>
  649. <caption id="caption79" class="cell_1" style="left:635; top:126px; width:65; height:23px; ">휴대폰</caption>
  650. <caption id="caption14" class="cell_1" style="left:405; top:78px; width:97px; height:23px; vertical-align:middle; ">거주지</caption>
  651. <input id="ipt_hshdnm" ref="/root/main/empldata/empllist/hshdnm" class="input_default" disabled="true" appearance="input" style="left:294; top:152px; width:109; height:19px; "/>
  652. <input id="input4" ref="/root/main/empldata/empllist/emailid" class="input_default" disabled="true" style="left:702; top:152px; width:60px; height:19px; "/>
  653. <caption id="caption15" class="cell_1" style="left:206; top:54px; width:85px; height:23px; ">결혼기념일</caption>
  654. <caption id="caption360" class="cell_1" style="left:0px; top:202px; width:80px; height:23px; ">종교</caption>
  655. <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; "/>
  656. <input id="ipt_domiaddr" ref="/root/main/empldata/empllist/domiaddr" class="input_default" disabled="true" style="left:695; top:32px; width:285; height:19px; "/>
  657. <caption id="caption16" class="cell_1" style="left:206; top:78px; width:85px; height:47px; ">생일</caption>
  658. <caption id="caption361" class="cell_1" visibility="hidden" style="left:261px; top:202px; width:100px; height:23px; vertical-align:middle; ">영명일</caption>
  659. <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; "/>
  660. <caption id="caption17" class="tit_2" style="left:5px; top:182px; width:95px; height:13px; ">종교사항</caption>
  661. <caption id="caption340" class="cell_1" style="left:206; top:126px; width:85px; height:23px; vertical-align:middle; ">호주명</caption>
  662. <caption id="caption362" class="cell_1" visibility="hidden" style="left:505px; top:202px; width:85px; height:23px; vertical-align:middle; ">교회명</caption>
  663. <input id="ipt_baptdd" ref="/root/main/empldata/empllist/baptdd" class="input_default" disabled="true" visibility="hidden" inputtype="date" appearance="input" style="left:592; top:226; width:154px; height:19px; "/>
  664. <caption id="caption330" class="cell_1" style="left:0px; top:54px; width:80px; height:23px; ">전화번호</caption>
  665. <select1 id="cmb_headfamrela" ref="/root/main/empldata/empllist/headfamrela" class="combo_default" disabled="true" appearance="minimal" style="left:504; top:128px; width:126; height:19px; ">
  666. <choices>
  667. <itemset>
  668. <label/>
  669. <value/>
  670. </itemset>
  671. </choices>
  672. </select1>
  673. <caption id="caption341" class="cell_1" style="left:206; top:150px; width:85px; height:23px; vertical-align:middle; ">세대주명</caption>
  674. <caption id="caption18" class="cell_1" style="left:0px; top:102px; width:80px; height:23px; ">성명(한문)</caption>
  675. <caption id="caption363" class="cell_1" visibility="hidden" style="left:261px; top:226px; width:100px; height:23px; vertical-align:middle; ">견진일자</caption>
  676. <select1 id="rdo_brthflag" ref="/root/main/empldata/empllist/brthflag" class="radio_search" disabled="true" overflow="visible" appearance="full" cols="2" style="left:294; top:104px; width:109; height:19px; text-align:center; border-style:solid; ">
  677. <choices>
  678. <item>
  679. <label>음력</label>
  680. <value>M</value>
  681. </item>
  682. <item>
  683. <label>양력</label>
  684. <value>S</value>
  685. </item>
  686. </choices>
  687. </select1>
  688. <select1 id="cmb_hshdrela" ref="/root/main/empldata/empllist/hshdrela" class="combo_default" disabled="true" appearance="minimal" style="left:504; top:152px; width:126; height:19px; ">
  689. <choices>
  690. <itemset>
  691. <label/>
  692. <value/>
  693. </itemset>
  694. </choices>
  695. </select1>
  696. <caption id="caption342" class="cell_1" style="left:405; top:126px; width:97px; height:23px; vertical-align:middle; ">호주와의 관계</caption>
  697. <caption id="caption364" class="cell_1" visibility="hidden" style="left:0px; top:226px; width:80px; height:23px; vertical-align:middle; ">세례명</caption>
  698. <caption id="caption332" class="cell_1" style="left:0px; top:126px; width:80px; height:23px; ">성명(영문)</caption>
  699. <caption id="caption343" class="cell_1" style="left:405; top:150px; width:97px; height:23px; vertical-align:middle; ">세대주와의 관계</caption>
  700. <caption id="caption365" class="cell_1" visibility="hidden" style="left:505; top:226; width:85px; height:23px; vertical-align:middle; ">세례일자</caption>
  701. <select1 id="cmb_hometype" ref="/root/main/empldata/empllist/hometype" class="combo_essential" disabled="true" appearance="minimal" style="left:294; top:32px; width:109; height:19px; ">
  702. <choices>
  703. <itemset>
  704. <label/>
  705. <value/>
  706. </itemset>
  707. </choices>
  708. </select1>
  709. <input id="ipt_domizipcd2" ref="/root/main/empldata/empllist/domizipcd2" class="input_default" disabled="true" editable="false" appearance="input" style="left:559; top:32px; width:42px; height:19px; "/>
  710. <input id="ipt_resdnrgstareazipcd2" ref="/root/main/empldata/empllist/resdnrgstareazipcd2" class="input_default" disabled="true" editable="false" appearance="input" style="left:559; top:56px; width:42px; height:19px; "/>
  711. <input id="ipt_residnczipcd2" ref="/root/main/empldata/empllist/residnczipcd2" class="input_default" disabled="true" editable="false" appearance="input" style="left:559; top:80px; width:42px; height:19px; "/>
  712. <caption id="caption92" style="left:548; top:32px; width:10px; height:20px; ">-</caption>
  713. <caption id="caption93" style="left:548; top:57px; width:10px; height:20px; ">-</caption>
  714. <caption id="caption97" style="left:548; top:81px; width:10px; height:20px; ">-</caption>
  715. <input id="ipt_brthdd" ref="/root/main/empldata/empllist/brthdd" disabled="true" inputtype="date" format="yyyy-mm-dd" style="left:294; top:80px; width:109; height:19px; "/>
  716. <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; ">
  717. <choices>
  718. <itemset>
  719. <label/>
  720. <value/>
  721. </itemset>
  722. </choices>
  723. </select1>
  724. <select1 id="cmb_brtharea" ref="/root/main/empldata/empllist/brtharea" class="combo_essential" disabled="true" appearance="minimal" style="left:82px; top:32px; width:122; height:19px; ">
  725. <choices>
  726. <itemset>
  727. <label/>
  728. <value/>
  729. </itemset>
  730. </choices>
  731. </select1>
  732. <select1 id="cmb_entcopath" ref="/root/main/empldata/empllist/entcopath" class="combo_essential" disabled="true" appearance="minimal" style="left:82px; top:152px; width:122; height:19px; ">
  733. <choices>
  734. <itemset>
  735. <label/>
  736. <value/>
  737. </itemset>
  738. </choices>
  739. </select1>
  740. <input id="ipt_etcemailaddr" ref="/root/main/empldata/empllist/etcemailaddr" class="input_essential" disabled="true" navindex="18" style="left:865; top:152px; width:115; height:19px; "/>
  741. <input id="ipt_fstappntdd" ref="/root/main/empldata/empllist/fstappntdd" class="input_default" disabled="true" inputtype="date" style="left:656; top:303; width:114px; height:19px; "/>
  742. <caption id="caption27" class="cell_1" style="left:554; top:301px; width:100px; height:23px; vertical-align:middle; ">최초임용일</caption>
  743. <line id="line11" class="line_1" style="x1:0px; y1:272px; x2:980; y2:272px; "/>
  744. <input id="ipt_edudeptappntdd" ref="/root/main/empldata/empllist/edudeptappntdd" class="input_default" disabled="true" inputtype="date" style="left:874; top:303; width:104px; height:19px; "/>
  745. <caption id="caption37" class="cell_1" style="left:772; top:301px; width:100px; height:23px; vertical-align:middle; ">교육부임용일</caption>
  746. <caption id="caption39" class="cell_1" style="left:0px; top:301px; width:100; height:23px; vertical-align:middle; ">재임용일</caption>
  747. <input id="ipt_reappntdd" ref="/root/main/empldata/empllist/reappntdd" class="input_default" disabled="true" inputtype="date" style="left:102; top:303; width:122; height:19px; "/>
  748. <caption id="caption40" class="cell_1" style="left:226; top:301px; width:100px; height:23px; vertical-align:middle; ">교육부임용기간</caption>
  749. <input id="ipt_edudeptappntfromdd" ref="/root/main/empldata/empllist/edudeptappntfromdd" class="input_default" disabled="true" inputtype="date" style="left:328; top:303; width:104px; height:19px; "/>
  750. <input id="ipt_edudeptappnttodd" ref="/root/main/empldata/empllist/edudeptappnttodd" class="input_default" disabled="true" inputtype="date" style="left:448; top:303; width:104px; height:19px; "/>
  751. <caption id="caption42" style="left:435; top:305px; width:16px; height:20px; font-weight:bold; ">~</caption>
  752. <select1 id="cmb_orginstcd" ref="/root/main/empldata/empllist/orginstcd" class="combo_search comboinput" disabled="true" navindex="4" appearance="minimal" style="left:102; top:279px; width:122; height:19px; ">
  753. <choices>
  754. <itemset>
  755. <label/>
  756. <value/>
  757. </itemset>
  758. </choices>
  759. </select1>
  760. <output id="opt_orgdeptnm" ref="/root/main/empldata/empllist/orgdeptnm" class="output_fix" style="left:781; top:279px; width:197px; height:19px; "/>
  761. <caption id="caption43" class="cell_1" style="left:0px; top:277px; width:100; height:23px; ">원소속기관</caption>
  762. <caption id="caption44" class="cell_1" style="left:554; top:277px; width:100px; height:23px; ">원소속부서</caption>
  763. <input id="ipt_orgdeptcd" ref="/root/main/empldata/empllist/orgdeptcd" class="input_essential" disabled="true" navindex="5" required="true" style="left:656; top:279px; width:104px; height:19px; ">
  764. <script type="javascript" ev:event="xforms-value-changed">
  765. <![CDATA[
  766. /* 부서코드,명 입력시 Validation Check
  767. misfValidationCheck(Validation 종류(부서코드, 공통코드, 우편번호...), 공통코드군, 자료를 받을 Instance Node(콤마로 분류해서 넘기면됨)) */
  768. misfValidationCheck("02", "", "orgdeptcd,orgdeptnm" );
  769. model.refresh();
  770. ]]>
  771. </script>
  772. </input>
  773. <caption id="caption67" class="cell_1" style="left:226; top:277px; width:100px; height:23px; ">원소속세부기관</caption>
  774. <select1 id="cmb_detlinst" ref="/root/main/empldata/empllist/orgdetlinst" class="combo_search comboinput" disabled="true" navindex="4" appearance="minimal" style="left:328; top:279px; width:147px; height:19px; ">
  775. <choices>
  776. <itemset>
  777. <label/>
  778. <value/>
  779. </itemset>
  780. </choices>
  781. </select1>
  782. <input id="ipt_domiaddrtemp" ref="/root/init/addrtemp" class="input_default" disabled="true" style="left:610; top:32px; width:82px; height:19px; ">
  783. <script type="javascript" ev:event="xforms-value-changed">
  784. <![CDATA[
  785. /* 우편번호 Validation Check
  786. misfValidationCheck(Validation 종류(부서코드, 공통코드, 우편번호...), 공통코드군, 자료를 받을 Instance Node(콤마로 분류해서 넘기면됨)) */
  787. ipt_domiaddr.value = ipt_domiaddrtemp.currentText;
  788. // ipt_domiaddrtemp.currentText = "";
  789. ipt_domiaddrtemp.attribute("ref") = "/root/main/empldata/empllist/domiaddr"
  790. misfValidationCheck("04", "", "domizipcd1,domizipcd2,domiaddr" );
  791. ipt_domiaddrtemp.attribute("ref") = "";
  792. model.setValue("/root/init/addrtemp","");
  793. model.refresh();
  794. model.setFocus("ipt_domiaddr");
  795. ]]>
  796. </script>
  797. </input>
  798. <input id="ipt_resdnrgstareaaddrtemp" ref="/root/init/addrtemp" class="input_default" disabled="true" style="left:610; top:56px; width:82px; height:19px; ">
  799. <script type="javascript" ev:event="xforms-value-changed">
  800. <![CDATA[
  801. model.setValue(ipt_resdnrgstareaaddr.attribute("ref"),ipt_resdnrgstareaaddrtemp.currentText) ;
  802. ipt_resdnrgstareaaddrtemp.attribute("ref") = "/root/main/empldata/empllist/resdnrgstareaaddr"
  803. misfValidationCheck("04", "", "resdnrgstareazipcd1,resdnrgstareazipcd2,resdnrgstareaaddr" );
  804. ipt_resdnrgstareaaddrtemp.attribute("ref") = "";
  805. model.setValue("/root/init/addrtemp","");
  806. model.refresh();
  807. model.setFocus("ipt_resdnrgstareaaddr");
  808. ]]>
  809. </script>
  810. </input>
  811. <input id="ipt_residncaddrtemp" ref="/root/init/addrtemp" class="input_default" disabled="true" style="left:610; top:80px; width:82px; height:19px; ">
  812. <script type="javascript" ev:event="xforms-value-changed">
  813. <![CDATA[
  814. ipt_residncaddr.value = ipt_residncaddrtemp.currentText;
  815. ipt_residncaddrtemp.attribute("ref") = "/root/main/empldata/empllist/residncaddr"
  816. misfValidationCheck("04", "", "residnczipcd1,residnczipcd2,residncaddr" );
  817. ipt_residncaddrtemp.attribute("ref") = "";
  818. model.setValue("/root/init/addrtemp","");
  819. model.refresh();
  820. model.setFocus("ipt_residncaddr")
  821. ]]>
  822. </script>
  823. </input>
  824. </case>
  825. <case id="case4">
  826. <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:980; height:169; ">
  827. <col disabled="true" ref="name" type="input"/>
  828. <col id="famyrel" disabled="true" ref="famyrel" type="combo">
  829. <choices>
  830. <itemset>
  831. <label/>
  832. <value/>
  833. </itemset>
  834. </choices>
  835. </col>
  836. <col disabled="true" ref="rregno1" type="input" maxlength="6" style="text-align:center; vertical-align:middle; "/>
  837. <col disabled="true" ref="rregno2" type="input" maxlength="7" style="text-align:center; vertical-align:middle; "/>
  838. <col id="scholcd" disabled="true" ref="scholcd" type="combo">
  839. <choices>
  840. <itemset>
  841. <label/>
  842. <value/>
  843. </itemset>
  844. </choices>
  845. </col>
  846. <col id="jobcd" disabled="true" ref="jobcd" type="combo">
  847. <choices>
  848. <itemset>
  849. <label/>
  850. <value/>
  851. </itemset>
  852. </choices>
  853. </col>
  854. <col checkvalue="Y,N" disabled="true" ref="ordamtreductyn" type="checkbox"/>
  855. <col checkvalue="Y,N" disabled="true" ref="lvnsmhoseyn" type="checkbox"/>
  856. <col checkvalue="Y,N" disabled="true" ref="maryyn" type="checkbox"/>
  857. <col checkvalue="Y,N" disabled="true" ref="dethyn" type="checkbox"/>
  858. <col checkvalue="Y,N" disabled="true" ref="handcapyn" type="checkbox"/>
  859. <col disabled="true" ref="appfromdd" type="inputdate"/>
  860. <col disabled="true" ref="apptodd" type="inputdate"/>
  861. <col checkvalue="Y,N" disabled="true" ref="delyn" type="checkbox"/>
  862. <col disabled="true" ref="cmt" type="input"/>
  863. <col disabled="true" ref="emplno" visibility="hidden"/>
  864. <col disabled="true" ref="seqno" visibility="hidden"/>
  865. <col disabled="true" ref="rregno" visibility="hidden"/>
  866. <col disabled="true" ref="fstrgstrid" visibility="hidden"/>
  867. <col disabled="true" ref="fstrgstdt" visibility="hidden"/>
  868. <col disabled="true" ref="lastupdtrid" visibility="hidden"/>
  869. <col disabled="true" ref="lastupdtdt" visibility="hidden"/>
  870. <col disabled="true" ref="oldseqno" visibility="hidden"/>
  871. </datagrid>
  872. <line id="line119" class="line_1" style="x1:0px; y1:25px; x2:980; y2:25px; "/>
  873. <caption id="caption162" class="tit_2" style="left:5px; top:10px; width:144px; height:13px; ">가족사항</caption>
  874. <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:229; width:980; height:187; ">
  875. <col disabled="true" ref="name"/>
  876. <col id="col2" disabled="true" ref="famyrel" type="combo">
  877. <choices>
  878. <itemset>
  879. <label/>
  880. <value/>
  881. </itemset>
  882. </choices>
  883. </col>
  884. <col disabled="true" ref="rregno1" maxlength="6" style="text-align:center; vertical-align:middle; "/>
  885. <col disabled="true" ref="rregno2" maxlength="7" style="text-align:center; vertical-align:middle; "/>
  886. <col id="col3" disabled="true" ref="scholcd" type="combo">
  887. <choices>
  888. <itemset>
  889. <label/>
  890. <value/>
  891. </itemset>
  892. </choices>
  893. </col>
  894. <col id="col4" disabled="true" ref="jobcd" type="combo">
  895. <choices>
  896. <itemset>
  897. <label/>
  898. <value/>
  899. </itemset>
  900. </choices>
  901. </col>
  902. <col checkvalue="Y,N" disabled="true" ref="ordamtreductyn" type="checkbox"/>
  903. <col checkvalue="Y,N" disabled="true" ref="lvnsmhoseyn" type="checkbox"/>
  904. <col checkvalue="Y,N" disabled="true" ref="maryyn" type="checkbox"/>
  905. <col checkvalue="Y,N" disabled="true" ref="dethyn" type="checkbox"/>
  906. <col checkvalue="Y,N" disabled="true" ref="handcapyn" type="checkbox"/>
  907. <col disabled="true" ref="appfromdd" type="inputdate"/>
  908. <col disabled="true" ref="apptodd" type="inputdate"/>
  909. <col checkvalue="Y,N" ref="delyn" type="checkbox"/>
  910. <col disabled="true" ref="cmt"/>
  911. <col ref="emplno" visibility="hidden"/>
  912. <col ref="seqno" visibility="hidden"/>
  913. <col ref="rregno" visibility="hidden"/>
  914. <col ref="fstrgstrid" visibility="hidden"/>
  915. <col ref="fstrgstdt" visibility="hidden"/>
  916. <col ref="lastupdtrid" visibility="hidden"/>
  917. <col ref="lastupdtdt" visibility="hidden"/>
  918. <col ref="oldseqno" visibility="hidden"/>
  919. </datagrid>
  920. <line id="line10" class="line_1" visibility="hidden" style="x1:0px; y1:224; x2:980; y2:224; "/>
  921. <caption id="caption36" class="tit_2" visibility="hidden" style="left:5px; top:210; width:144px; height:13px; ">가족사항 History</caption>
  922. <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:229; width:980; height:187; ">
  923. <col disabled="true" ref="appdd" type="inputdate"/>
  924. <col id="col5" disabled="true" ref="hdfamyyn" type="combo">
  925. <choices>
  926. <item>
  927. <label>가장</label>
  928. <value>Y</value>
  929. </item>
  930. <item>
  931. <label>비가장</label>
  932. <value>N</value>
  933. </item>
  934. </choices>
  935. </col>
  936. <col disabled="true" ref="cmt" type="input"/>
  937. <col disabled="true" ref="emplno" visibility="hidden"/>
  938. <col disabled="true" ref="fstrgstrid" visibility="hidden"/>
  939. <col disabled="true" ref="fstrgstdt" visibility="hidden"/>
  940. <col disabled="true" ref="lastupdtrid" visibility="hidden"/>
  941. <col disabled="true" ref="lastupdtdt" visibility="hidden"/>
  942. </datagrid>
  943. <caption id="caption64" class="tit_2" visibility="hidden" style="left:5px; top:210; width:144px; height:13px; ">결혼가장 History</caption>
  944. </case>
  945. <case id="case5">
  946. <caption id="caption444" class="tit_2" style="left:5px; top:10px; width:144px; height:13px; ">학력사항</caption>
  947. <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:980; height:386; ">
  948. <col id="scholflag" disabled="true" ref="scholflag" type="combo">
  949. <choices>
  950. <itemset>
  951. <label/>
  952. <value/>
  953. </itemset>
  954. </choices>
  955. </col>
  956. <col id="schoolcd" disabled="true" ref="schoolcd" type="inputbutton"/>
  957. <col disabled="true" ref="schoolnm" type="input"/>
  958. <col disabled="true" ref="admischooldd" type="inputdate"/>
  959. <col disabled="true" ref="gradutndd" type="inputdate"/>
  960. <col disabled="true" ref="lesnfixyearpd" type="input"/>
  961. <col disabled="true" ref="frmrmert" type="inputbutton"/>
  962. <col disabled="true" ref="frmrmertnm"/>
  963. <col disabled="true" ref="subspcl" type="inputbutton"/>
  964. <col disabled="true" ref="subspclnm"/>
  965. <col id="acdmydg" disabled="true" ref="acdmydg" type="combo">
  966. <choices>
  967. <itemset>
  968. <label/>
  969. <value/>
  970. </itemset>
  971. </choices>
  972. </col>
  973. <col disabled="true" ref="acdmydgno" type="input"/>
  974. <col checkvalue="Y,N" disabled="true" ref="aftentcoyn" type="checkbox"/>
  975. <col disabled="true" ref="subspclitem" type="input"/>
  976. <col checkvalue="Y,N" disabled="true" ref="graduprcog" type="checkbox"/>
  977. <col checkvalue="Y,N" disabled="true" ref="incportyn" type="checkbox"/>
  978. <col disabled="true" ref="gradutnno" type="input"/>
  979. <col disabled="true" ref="emplno" visibility="hidden"/>
  980. <col disabled="true" ref="seqno" visibility="hidden"/>
  981. <col disabled="true" ref="fstrgstrid" visibility="hidden"/>
  982. <col disabled="true" ref="fstrgstdt" visibility="hidden"/>
  983. <col disabled="true" ref="lastupdtrid" visibility="hidden"/>
  984. <col disabled="true" ref="lastupdtdt" visibility="hidden"/>
  985. <col disabled="true" ref="oldseqno" visibility="hidden"/>
  986. <script type="javascript" ev:event="onbuttonclick">
  987. <![CDATA[
  988. if (grd_scholist.colAttribute(grd_scholist.col,"ref") == "schoolcd" ) { //학교코드
  989. var recv_list = "schoolcd,schoolnm";
  990. rpbfOpenComCdHelp(grd_scholist,"R0141", recv_list);
  991. model.refresh();
  992. }
  993. else if (grd_scholist.colAttribute(grd_scholist.col,"ref") == "frmrmert" ) { //전공
  994. var recv_list = "frmrmert,frmrmertnm";
  995. rpbfOpenComCdHelp(grd_scholist,"R0089", recv_list);
  996. model.refresh();
  997. }
  998. else if (grd_scholist.colAttribute(grd_scholist.col,"ref") == "subspcl" ) { //부전공
  999. var recv_list = "subspcl,subspclnm";
  1000. rpbfOpenComCdHelp(grd_scholist,"R0089", recv_list);
  1001. model.refresh();
  1002. }
  1003. ]]>
  1004. </script>
  1005. <script type="javascript" ev:event="xforms-value-changed">
  1006. <![CDATA[
  1007. if (grd_scholist.colAttribute(grd_scholist.col,"ref") == "schoolcd" ) { //학교코드
  1008. var recv_list = "schoolcd,schoolnm";
  1009. misfValidationCheck("03", "R0141",recv_list);
  1010. model.refresh();
  1011. }
  1012. else if (grd_scholist.colAttribute(grd_scholist.col,"ref") == "frmrmert" ) { //전공
  1013. var recv_list = "frmrmert,frmrmertnm";
  1014. misfValidationCheck("03", "R0089",recv_list);
  1015. model.refresh();
  1016. }
  1017. else if (grd_scholist.colAttribute(grd_scholist.col,"ref") == "subspcl" ) { //부전공
  1018. var recv_list = "subspcl,subspclnm";
  1019. misfValidationCheck("03", "R0089",recv_list);
  1020. model.refresh();
  1021. }
  1022. ]]>
  1023. </script>
  1024. </datagrid>
  1025. <line id="line294" class="line_1" style="x1:0px; y1:25px; x2:980; y2:25px; "/>
  1026. </case>
  1027. <case id="case6">
  1028. <datagrid id="grd_gvnoffcordlist" nodeset="/root/main/emplnogvnoffcord/emplnogvnoffcordlist" 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:980; height:386; ">
  1029. <col disabled="true" ref="gvnoffcorddd" type="inputdate"/>
  1030. <col disabled="true" ref="gvnoffcordnm"/>
  1031. <col disabled="true" ref="instnm"/>
  1032. <col disabled="true" ref="deptnm" visibility="hidden"/>
  1033. <col disabled="true" ref="teamnm" visibility="hidden"/>
  1034. <col disabled="true" ref="unitnm"/>
  1035. <col disabled="true" ref="grupjoblnnm"/>
  1036. <col disabled="true" ref="joblnnm"/>
  1037. <col disabled="true" ref="jobkindnm"/>
  1038. <col disabled="true" ref="jobposnm"/>
  1039. <col disabled="true" ref="jobrespnm"/>
  1040. <col disabled="true" ref="ojobgradnm"/>
  1041. <col disabled="true" ref="payclsnm"/>
  1042. <col disabled="true" ref="njobgradnm"/>
  1043. <col disabled="true" ref="anual"/>
  1044. <col disabled="true" ref="cmt"/>
  1045. </datagrid>
  1046. <caption id="caption460" class="tit_2" style="left:5px; top:10px; width:144px; height:13px; ">발령이동사항</caption>
  1047. <line id="line300" class="line_1" style="x1:0px; y1:25px; x2:980; y2:25px; "/>
  1048. </case>
  1049. <case id="case7">
  1050. <line id="line306" class="line_1" style="x1:0px; y1:25px; x2:980; y2:25px; "/>
  1051. <caption id="caption479" class="tit_2" style="left:5px; top:10px; width:144px; height:13px; ">자격면허사항</caption>
  1052. <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:980; height:386; ">
  1053. <col disabled="true" ref="licnscd" type="inputbutton"/>
  1054. <col disabled="true" ref="licnsnm"/>
  1055. <col disabled="true" ref="issinst" type="input">
  1056. <choices>
  1057. <itemset>
  1058. <label/>
  1059. <value/>
  1060. </itemset>
  1061. </choices>
  1062. </col>
  1063. <col disabled="true" ref="licnsno" type="input"/>
  1064. <col disabled="true" ref="possndd" type="inputdate"/>
  1065. <col checkvalue="Y,N" disabled="true" ref="licnalwnflag" type="combo">
  1066. <choices>
  1067. <item>
  1068. <label>A자격</label>
  1069. <value>A</value>
  1070. </item>
  1071. <item>
  1072. <label>B자격</label>
  1073. <value>B</value>
  1074. </item>
  1075. <item>
  1076. <label>미적용</label>
  1077. <value>Z</value>
  1078. </item>
  1079. </choices>
  1080. </col>
  1081. <col checkvalue="Y,N" disabled="true" ref="senirtyalwn" type="checkbox"/>
  1082. <col disabled="true" ref="cmt" type="input"/>
  1083. <col disabled="true" ref="emplno" visibility="hidden"/>
  1084. <col disabled="true" ref="fstrgstrid" visibility="hidden"/>
  1085. <col disabled="true" ref="fstrgstdt" visibility="hidden"/>
  1086. <col disabled="true" ref="lastupdtrid" visibility="hidden"/>
  1087. <col disabled="true" ref="lastupdtdt" visibility="hidden"/>
  1088. <col disabled="true" ref="oldlicnscd" visibility="hidden"/>
  1089. <script type="javascript" ev:event="onbuttonclick">
  1090. <![CDATA[
  1091. if (grd_licnlist.colAttribute(grd_licnlist.col,"ref") == "licnscd" ) { //자격면허코드
  1092. var recv_list = "licnscd,licnsnm";
  1093. rpbfOpenComCdHelp(grd_licnlist,"R0088", recv_list);
  1094. model.refresh();
  1095. }
  1096. ]]>
  1097. </script>
  1098. <script type="javascript" ev:event="xforms-value-changed">
  1099. <![CDATA[
  1100. if (grd_licnlist.colAttribute(grd_licnlist.col,"ref") == "licnscd" ) { //자격면허코드
  1101. var recv_list = "licnscd,licnsnm";
  1102. misfValidationCheck("03", "R0088",recv_list);
  1103. model.refresh();
  1104. }
  1105. ]]>
  1106. </script>
  1107. </datagrid>
  1108. </case>
  1109. <case id="case8">
  1110. <line id="line316" class="line_1" style="x1:0px; y1:25px; x2:980; y2:25px; "/>
  1111. <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:224; width:980; height:152; ">
  1112. <col disabled="true" ref="cmpynm" type="input"/>
  1113. <col disabled="true" ref="deptnm" type="input"/>
  1114. <col disabled="true" ref="jobposrespnm" type="input"/>
  1115. <col disabled="true" ref="entcodd" type="inputdate"/>
  1116. <col disabled="true" ref="retiredd" type="inputdate"/>
  1117. <col disabled="true" ref="dutyyno"/>
  1118. <col disabled="true" ref="dutmmno"/>
  1119. <col disabled="true" ref="dutyearno" type="input" style="text-align:right; vertical-align:middle; "/>
  1120. <col disabled="true" ref="mainbiz" type="input"/>
  1121. <col disabled="true" ref="retireresn" type="input"/>
  1122. <col disabled="true" ref="emplno" visibility="hidden"/>
  1123. <col disabled="true" ref="seqno" visibility="hidden"/>
  1124. <col disabled="true" ref="fstrgstrid" visibility="hidden"/>
  1125. <col disabled="true" ref="fstrgstdt" visibility="hidden"/>
  1126. <col disabled="true" ref="lastupdtrid" visibility="hidden"/>
  1127. <col disabled="true" ref="lastupdtdt" visibility="hidden"/>
  1128. <col disabled="true" ref="oldseqno" visibility="hidden"/>
  1129. </datagrid>
  1130. <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:980; height:154; ">
  1131. <col disabled="true" ref="carerflagcd" type="combo"/>
  1132. <col disabled="true" ref="detlnm" type="input"/>
  1133. <col disabled="true" ref="fromdd" type="inputdate"/>
  1134. <col disabled="true" ref="todd" type="inputdate"/>
  1135. <col disabled="true" ref="dutyyno"/>
  1136. <col disabled="true" ref="dutmmno"/>
  1137. <col disabled="true" ref="maincnts" type="input"/>
  1138. <col disabled="true" ref="hosioflag" type="combo">
  1139. <choices>
  1140. <itemset>
  1141. <label/>
  1142. <value/>
  1143. </itemset>
  1144. </choices>
  1145. </col>
  1146. <col disabled="true" ref="cmt" type="input"/>
  1147. <col disabled="true" ref="emplno" visibility="hidden"/>
  1148. <col disabled="true" ref="seqno" visibility="hidden"/>
  1149. <col disabled="true" ref="fstrgstrid" visibility="hidden"/>
  1150. <col disabled="true" ref="fstrgstdt" visibility="hidden"/>
  1151. <col disabled="true" ref="lastupdtrid" visibility="hidden"/>
  1152. <col disabled="true" ref="lastupdtdt" visibility="hidden"/>
  1153. <col disabled="true" ref="oldseqno" visibility="hidden"/>
  1154. </datagrid>
  1155. <line id="line310" class="line_1" style="x1:0px; y1:219; x2:980; y2:219; "/>
  1156. <caption id="caption494" class="tit_2" style="left:5px; top:10px; width:144px; height:13px; ">경력사항(입사후)</caption>
  1157. <caption id="caption474" class="tit_2" style="left:5px; top:203; width:144px; height:13px; ">경력사항(입사전)</caption>
  1158. </case>
  1159. <case id="case9">
  1160. <line id="line74" class="line_1" style="x1:0px; y1:234; x2:980; y2:234; "/>
  1161. <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:30; width:980; height:177; x2:983; ">
  1162. <col disabled="true" ref="prizrpmdinst" type="input"/>
  1163. <col disabled="true" ref="prizrpmdno"/>
  1164. <col disabled="true" ref="prizrpmdcd" type="inputbutton"/>
  1165. <col disabled="true" ref="prizrpmdnm"/>
  1166. <col disabled="true" ref="prizrpmddd" type="inputdate"/>
  1167. <col disabled="true" ref="prizcnts" type="input"/>
  1168. <col disabled="true" ref="emplno" visibility="hidden"/>
  1169. <col disabled="true" ref="fstrgstrid" visibility="hidden"/>
  1170. <col disabled="true" ref="fstrgstdt" visibility="hidden"/>
  1171. <col disabled="true" ref="lastupdtrid" visibility="hidden"/>
  1172. <col disabled="true" ref="lastupdtdt" visibility="hidden"/>
  1173. <col disabled="true" ref="oldprizrpmddd" visibility="hidden"/>
  1174. <col disabled="true" ref="oldprizrpmdno" visibility="hidden"/>
  1175. <col disabled="true" ref="prizrpmdflag" visibility="hidden"/>
  1176. <col disabled="true" ref="seqno" visibility="hidden"/>
  1177. <script type="javascript" ev:event="onbuttonclick">
  1178. <![CDATA[
  1179. if (grd_prizlist.colAttribute(grd_prizlist.col,"ref") == "prizrpmdcd" ) { //포상코드
  1180. var recv_list = "prizrpmdcd,prizrpmdnm";
  1181. rpbfOpenComCdHelp(grd_prizlist,"R0084", recv_list);
  1182. model.refresh();
  1183. }
  1184. ]]>
  1185. </script>
  1186. <script type="javascript" ev:event="xforms-value-changed">
  1187. <![CDATA[
  1188. if (grd_prizlist.colAttribute(grd_prizlist.col,"ref") == "prizrpmdcd" ) { //포상코드
  1189. var recv_list = "prizrpmdcd,prizrpmdnm";
  1190. misfValidationCheck("03", "R0084",recv_list);
  1191. model.refresh();
  1192. }
  1193. ]]>
  1194. </script>
  1195. </datagrid>
  1196. <caption id="caption292" class="tit_2" style="left:5px; top:10px; width:144px; height:13px; ">포상사항</caption>
  1197. <caption id="caption24" class="tit_2" style="left:5px; top:219; width:144px; height:13px; ">징계사항</caption>
  1198. <line id="line213" class="line_1" style="x1:0px; y1:25px; x2:980; y2:25px; "/>
  1199. <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:239; width:980; height:167; x2:983; ">
  1200. <col disabled="true" ref="prizrpmdinst" type="input"/>
  1201. <col disabled="true" ref="prizrpmdno"/>
  1202. <col disabled="true" ref="prizrpmdcd" type="inputbutton"/>
  1203. <col disabled="true" ref="prizrpmdnm"/>
  1204. <col disabled="true" ref="prizrpmddd" type="inputdate"/>
  1205. <col disabled="true" ref="rpmdtodd" type="inputdate"/>
  1206. <col disabled="true" ref="rpmdresncd" type="inputbutton"/>
  1207. <col disabled="true" ref="rpmdresnnm"/>
  1208. <col disabled="true" ref="redcusfact" type="input"/>
  1209. <col disabled="true" ref="redcusinst" type="input"/>
  1210. <col disabled="true" ref="emplno" visibility="hidden"/>
  1211. <col disabled="true" ref="fstrgstrid" visibility="hidden"/>
  1212. <col disabled="true" ref="fstrgstdt" visibility="hidden"/>
  1213. <col disabled="true" ref="lastupdtrid" visibility="hidden"/>
  1214. <col disabled="true" ref="lastupdtdt" visibility="hidden"/>
  1215. <col disabled="true" ref="oldprizrpmddd" visibility="hidden"/>
  1216. <col disabled="true" ref="oldprizrpmdno" visibility="hidden"/>
  1217. <col disabled="true" ref="prizrpmdflag" visibility="hidden"/>
  1218. <col disabled="true" ref="seqno" visibility="hidden"/>
  1219. <script type="javascript" ev:event="onbuttonclick">
  1220. <![CDATA[
  1221. if (grd_rpmdlist.colAttribute(grd_rpmdlist.col,"ref") == "prizrpmdcd" ) { //징계코드
  1222. var recv_list = "prizrpmdcd,prizrpmdnm";
  1223. rpbfOpenComCdHelp(grd_rpmdlist,"R0083", recv_list);
  1224. model.refresh();
  1225. }
  1226. else if (grd_rpmdlist.colAttribute(grd_rpmdlist.col,"ref") == "rpmdresncd" ) { //징계사유코드
  1227. var recv_list = "rpmdresncd,rpmdresnnm";
  1228. rpbfOpenComCdHelp(grd_rpmdlist,"R0082", recv_list);
  1229. model.refresh();
  1230. }
  1231. ]]>
  1232. </script>
  1233. <script type="javascript" ev:event="xforms-value-changed">
  1234. <![CDATA[
  1235. if (grd_rpmdlist.colAttribute(grd_rpmdlist.col,"ref") == "prizrpmdcd" ) { //징계코드
  1236. var recv_list = "prizrpmdcd,prizrpmdnm";
  1237. misfValidationCheck("03", "R0083",recv_list);
  1238. model.refresh();
  1239. }
  1240. else if (grd_rpmdlist.colAttribute(grd_rpmdlist.col,"ref") == "rpmdresncd" ) { //징계사유코드
  1241. var recv_list = "rpmdresncd,rpmdresnnm";
  1242. misfValidationCheck("03", "R0082",recv_list);
  1243. model.refresh();
  1244. }
  1245. ]]>
  1246. </script>
  1247. </datagrid>
  1248. </case>
  1249. <case id="case10" style="left:0px; top:0px; width:1193px; height:476px; ">
  1250. <line id="line45" class="line_2" style="x1:0px; y1:100px; x2:980; y2:100px; "/>
  1251. <line id="line44" class="line_2" style="x1:0px; y1:76px; x2:980; y2:76px; "/>
  1252. <line id="line43" class="line_2" style="x1:0px; y1:52px; x2:980; y2:52px; "/>
  1253. <line id="line8" class="line_3" style="x1:0px; y1:124px; x2:980; y2:124px; "/>
  1254. <caption id="caption289" class="cell_1" style="left:447; top:54px; width:95px; height:23px; vertical-align:middle; ">특례기간시작</caption>
  1255. <caption id="caption279" class="cell_1" style="left:447; top:102px; width:95px; height:23px; vertical-align:middle; ">복무기간</caption>
  1256. <input id="ipt_srvarmtermfromdd" ref="/root/main/armydata/armylist/srvarmtermfromdd" class="input_s_essential" disabled="true" inputtype="date" style="left:544; top:104px; width:107px; height:19px; "/>
  1257. <input id="ipt_srvarmtermtodd" ref="/root/main/armydata/armylist/srvarmtermtodd" class="input_s_essential" disabled="true" inputtype="date" style="left:668; top:104px; width:107px; height:19px; "/>
  1258. <caption id="caption290" class="cell_1" style="left:777; top:30px; width:95px; height:23px; vertical-align:middle; ">예비군</caption>
  1259. <caption id="caption280" class="cell_1" style="left:0px; top:78px; width:95px; height:23px; vertical-align:middle; ">군별</caption>
  1260. <caption id="caption291" class="cell_1" style="left:216; top:54px; width:95px; height:23px; vertical-align:middle; ">면제사유</caption>
  1261. <caption id="caption281" class="cell_1" style="left:216; top:102px; width:95px; height:23px; vertical-align:middle; ">병역특례구분</caption>
  1262. <caption id="caption282" class="cell_1" style="left:447; top:30px; width:95px; height:23px; vertical-align:middle; ">계급</caption>
  1263. <caption id="caption293" class="cell_1" style="left:0px; top:54px; width:95px; height:23px; vertical-align:middle; ">제대구분</caption>
  1264. <input id="ipt_exmptndd" ref="/root/main/armydata/armylist/exmptndd" class="input_default" disabled="true" inputtype="date" style="left:97px; top:104px; width:117; height:19px; "/>
  1265. <caption id="caption25" class="search_n_b" style="left:655; top:105px; width:12px; height:17px; font-weight:bolder; ">~</caption>
  1266. <caption id="caption283" class="tit_2" style="left:5px; top:10px; width:144px; height:13px; ">병역사항</caption>
  1267. <caption id="caption294" class="cell_1" style="left:447; top:78px; width:95px; height:23px; vertical-align:middle; ">군번</caption>
  1268. <input id="ipt_mainskil" ref="/root/main/armydata/armylist/mainskil" class="input_default" disabled="true" style="left:313; top:80px; width:132; height:19px; "/>
  1269. <caption id="caption284" class="cell_1" style="left:0px; top:102px; width:95px; height:23px; vertical-align:middle; ">면제일</caption>
  1270. <input id="ipt_spclcsmiltsrvc" ref="/root/main/armydata/armylist/spclcsmiltsrvc" class="input_default" disabled="true" style="left:313; top:104px; width:132; height:19px; "/>
  1271. <caption id="caption285" class="cell_1" style="left:216; top:30px; width:95px; height:23px; vertical-align:middle; ">병과</caption>
  1272. <input id="ipt_sn" ref="/root/main/armydata/armylist/sn" class="input_default" disabled="true" style="left:544; top:80px; width:231px; height:19px; "/>
  1273. <caption id="caption286" class="cell_1" style="left:216; top:78px; width:95px; height:23px; vertical-align:middle; ">주특기</caption>
  1274. <caption id="caption287" class="cell_1" style="left:0px; top:30px; width:95px; height:23px; vertical-align:middle; ">역종</caption>
  1275. <line id="line203" class="line_1" style="x1:0px; y1:25px; x2:980; y2:25px; "/>
  1276. <input id="ipt_exmptnresn" ref="/root/main/armydata/armylist/exmptnresn" class="input_default" disabled="true" style="left:313; top:56px; width:132; height:19px; "/>
  1277. <input id="input319" class="input_default" disabled="true" style="left:544; top:56px; width:231px; height:19px; "/>
  1278. <caption id="caption288" class="cell_1" style="left:777; top:54px; width:95px; height:23px; vertical-align:middle; ">민방위</caption>
  1279. <select1 id="cmb_clssvcstatcd" ref="/root/main/armydata/armylist/clssvcstatcd" class="combo_essential" disabled="true" appearance="minimal" style="left:97px; top:32px; width:117; height:19px; ">
  1280. <choices>
  1281. <itemset>
  1282. <label/>
  1283. <value/>
  1284. </itemset>
  1285. </choices>
  1286. </select1>
  1287. <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:240px; width:920px; height:80px; ">
  1288. <col ref="clssvcstatcd"/>
  1289. <col ref="dembztflag"/>
  1290. <col ref="armyclscd"/>
  1291. <col ref="exmptndd"/>
  1292. <col ref="brnhmiltsrvccd"/>
  1293. <col ref="exmptnresn"/>
  1294. <col ref="mainskil"/>
  1295. <col ref="spclcsmiltsrvc"/>
  1296. <col ref="classcd"/>
  1297. <col ref="fromspclcase"/>
  1298. <col ref="sn"/>
  1299. <col ref="srvarmtermfromdd"/>
  1300. <col ref="srvarmtermtodd"/>
  1301. <col ref="rsrvarm"/>
  1302. <col ref="civildfns"/>
  1303. <col ref="emplno"/>
  1304. <col ref="fstrgstrid"/>
  1305. <col ref="fstrgstdt"/>
  1306. <col ref="lastupdtrid"/>
  1307. <col ref="lastupdtdt"/>
  1308. </datagrid>
  1309. <select1 id="cmb_dembztflag" ref="/root/main/armydata/armylist/dembztflag" class="combo_essential" disabled="true" appearance="minimal" style="left:97px; top:56px; width:117; height:19px; ">
  1310. <choices>
  1311. <itemset>
  1312. <label/>
  1313. <value/>
  1314. </itemset>
  1315. </choices>
  1316. </select1>
  1317. <select1 id="cmb_armyclscd" ref="/root/main/armydata/armylist/armyclscd" class="combo_essential" disabled="true" appearance="minimal" style="left:97px; top:80px; width:117; height:19px; ">
  1318. <choices>
  1319. <itemset>
  1320. <label/>
  1321. <value/>
  1322. </itemset>
  1323. </choices>
  1324. </select1>
  1325. <select1 id="cmb_brnhmiltsrvccd" ref="/root/main/armydata/armylist/brnhmiltsrvccd" class="combo_essential" disabled="true" appearance="minimal" style="left:313; top:32px; width:132; height:19px; ">
  1326. <choices>
  1327. <itemset>
  1328. <label/>
  1329. <value/>
  1330. </itemset>
  1331. </choices>
  1332. </select1>
  1333. <select1 id="cmb_classcd" ref="/root/main/armydata/armylist/classcd" class="combo_essential" disabled="true" appearance="minimal" style="left:544; top:32px; width:231px; height:19px; ">
  1334. <choices>
  1335. <itemset>
  1336. <label/>
  1337. <value/>
  1338. </itemset>
  1339. </choices>
  1340. </select1>
  1341. <select1 id="rdo_rsrvarm" ref="/root/main/armydata/armylist/rsrvarm" disabled="true" overflow="visible" appearance="full" cols="2" itemheight="18" itemwidth="50" style="left:874; top:32px; width:100px; height:19px; border-style:solid; ">
  1342. <choices>
  1343. <item>
  1344. <label>Yes</label>
  1345. <value>Y</value>
  1346. </item>
  1347. <item>
  1348. <label>No</label>
  1349. <value>N</value>
  1350. </item>
  1351. </choices>
  1352. </select1>
  1353. <select1 id="rdo_civildfns" ref="/root/main/armydata/armylist/civildfns" disabled="true" overflow="visible" appearance="full" cols="2" itemheight="18" itemwidth="50" style="left:874; top:55px; width:100px; height:19px; border-style:solid; ">
  1354. <choices>
  1355. <item>
  1356. <label>Yes</label>
  1357. <value>Y</value>
  1358. </item>
  1359. <item>
  1360. <label>No</label>
  1361. <value>N</value>
  1362. </item>
  1363. </choices>
  1364. </select1>
  1365. </case>
  1366. <case id="case11">
  1367. <line id="line210" class="line_1" style="width:980; x1:0px; y1:25px; x2:980; y2:25px; "/>
  1368. <caption id="caption295" class="tit_2" style="left:10px; top:10px; width:144px; height:13px; ">교육훈련</caption>
  1369. <datagrid id="grd_educlist" nodeset="/root/main/educ/educlist" caption="교육년도^교육구분^교육코드^교육명^차수^교육기간^교육기간^교육장소^교육시간^이수학점^보조금지급여부|교육년도^교육구분^교육코드^교육명^차수^From^To^교육장소^교육시간^이수학점^보조금지급여부" colsep="^" colwidth="58, 66, 60, 176, 58, 90, 88, 156, 61, 63, 65" dataheight="25" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="25" rowsep="|" style="left:0px; top:30px; width:979px; height:387px; ">
  1370. <col ref="appyy" format="yyyy" maxlength="4" style="text-align:center; "/>
  1371. <col disabled="true" ref="inoutflag" type="combo" style="text-align:center; ">
  1372. <choices>
  1373. <item>
  1374. <label>내부교육</label>
  1375. <value>I</value>
  1376. </item>
  1377. <item>
  1378. <label>외부교육</label>
  1379. <value>O</value>
  1380. </item>
  1381. </choices>
  1382. </col>
  1383. <col ref="educcd"/>
  1384. <col ref="educnm"/>
  1385. <col ref="educdg" style="text-align:center; "/>
  1386. <col ref="educfromdd" format="yyyy-mm-dd" style="text-align:center; "/>
  1387. <col ref="eductodd" format="yyyy-mm-dd" style="text-align:center; "/>
  1388. <col ref="educplce"/>
  1389. <col ref="eductm" style="text-align:center; "/>
  1390. <col ref="cmpltcursstdypnt" style="text-align:center; "/>
  1391. <col disabled="true" ref="offctouramtpayyn" type="combo" style="text-align:center; ">
  1392. <choices>
  1393. <item>
  1394. <label>지급</label>
  1395. <value>Y</value>
  1396. </item>
  1397. <item>
  1398. <label>미지급</label>
  1399. <value>N</value>
  1400. </item>
  1401. <item>
  1402. <label/>
  1403. <value>A</value>
  1404. </item>
  1405. </choices>
  1406. </col>
  1407. </datagrid>
  1408. </case>
  1409. <case id="case12">
  1410. <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:980; height:386; ">
  1411. <col disabled="true"/>
  1412. <col disabled="true"/>
  1413. <col disabled="true"/>
  1414. <col disabled="true"/>
  1415. <col disabled="true"/>
  1416. <col disabled="true"/>
  1417. <col disabled="true"/>
  1418. </datagrid>
  1419. <line id="line211" class="line_1" style="width:980; x1:0px; y1:25px; x2:980; y2:25px; "/>
  1420. <caption id="caption296" class="tit_2" style="left:10px; top:10px; width:144px; height:13px; ">학회</caption>
  1421. </case>
  1422. <case id="case13">
  1423. <line id="line50" class="line_2" style="x1:439px; y1:52px; x2:866px; y2:52px; "/>
  1424. <line id="line48" class="line_2" style="x1:437px; y1:76px; x2:864px; y2:76px; "/>
  1425. <line id="line47" class="line_2" style="x1:0px; y1:76px; x2:427px; y2:76px; "/>
  1426. <line id="line46" class="line_2" style="x1:0px; y1:52px; x2:427px; y2:52px; "/>
  1427. <line id="line51" class="line_3" style="x1:0px; y1:248; x2:865; y2:248; "/>
  1428. <caption id="caption45" class="tit_2" style="left:5px; top:10px; width:144px; height:14px; ">진료분야</caption>
  1429. <button id="btn_frmrmertlrg" class="icon_search" disabled="true" style="left:177px; top:32px; width:16px; height:16px; ">
  1430. <caption/>
  1431. <script type="javascript" ev:event="DOMActivate">
  1432. <![CDATA[
  1433. var recv_list = "frmrmertlrg,frmrmertlrgnm";
  1434. rpbfOpenComCdHelp(ipt_frmrmertlrg,"R0089", recv_list);
  1435. model.refresh();
  1436. ]]>
  1437. </script>
  1438. </button>
  1439. <output id="opt_frmrmertlrgnm" ref="/root/main/empldata/empllist/frmrmertlrgnm" class="output_fix" style="left:196px; top:32px; width:230px; height:19px; "/>
  1440. <line id="line15" class="line_1" style="x1:0px; y1:25px; x2:865; y2:25px; "/>
  1441. <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; ">
  1442. <script type="javascript" ev:event="xforms-value-changed">
  1443. <![CDATA[
  1444. misfValidationCheck("03", "R0089", "frmrmertlrg,frmrmertlrgnm" );
  1445. model.refresh();
  1446. ]]>
  1447. </script>
  1448. </input>
  1449. <caption id="caption46" class="cell_1" style="left:0px; top:30px; width:90px; height:23px; vertical-align:middle; ">전공대분류</caption>
  1450. <button id="btn_frmrmertmdl" class="icon_search" disabled="true" style="left:177px; top:57px; width:16px; height:16px; ">
  1451. <caption/>
  1452. <script type="javascript" ev:event="DOMActivate">
  1453. <![CDATA[
  1454. var recv_list = "frmrmertmdl,frmrmertmdlnm";
  1455. rpbfOpenComCdHelp(ipt_frmrmertmdl,"R0089", recv_list);
  1456. model.refresh();
  1457. ]]>
  1458. </script>
  1459. </button>
  1460. <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; ">
  1461. <script type="javascript" ev:event="xforms-value-changed">
  1462. <![CDATA[
  1463. misfValidationCheck("03", "R0089", "frmrmertmdl,frmrmertmdlnm" );
  1464. model.refresh();
  1465. ]]>
  1466. </script>
  1467. </input>
  1468. <caption id="caption48" class="cell_1" style="left:0px; top:54px; width:90px; height:23px; vertical-align:middle; ">전공중분류</caption>
  1469. <output id="opt_frmrmertmdlnm" ref="/root/main/empldata/empllist/frmrmertmdlnm" class="output_fix" style="left:196px; top:56px; width:230px; height:19px; "/>
  1470. <caption id="caption49" class="cell_1" style="left:0px; top:78px; width:90px; height:170px; vertical-align:middle; ">주진료분야</caption>
  1471. <textarea id="txt_mainordfild" ref="/root/main/empldata/empllist/mainordfild" disabled="true" style="left:93px; top:80px; width:333px; height:166px; "/>
  1472. <textarea id="txt_ordfild" ref="/root/main/empldata/empllist/ordfild" disabled="true" style="left:532px; top:80px; width:333px; height:164px; "/>
  1473. <caption id="caption51" class="cell_1" style="left:439px; top:78px; width:90px; height:168px; vertical-align:middle; ">세부진료분야</caption>
  1474. <button id="btn_chrgsubj" class="icon_search" disabled="true" style="left:616px; top:32px; width:16px; height:16px; ">
  1475. <caption/>
  1476. <script type="javascript" ev:event="DOMActivate">
  1477. <![CDATA[
  1478. var recv_list = "chrgsubj,chrgsubjnm";
  1479. rpbfOpenComCdHelp(ipt_chrgsubj,"R0089", recv_list);
  1480. model.refresh();
  1481. ]]>
  1482. </script>
  1483. </button>
  1484. <input id="ipt_chrgsubj" ref="/root/main/empldata/empllist/chrgsubj" class="input_essential" disabled="true" navindex="5" required="true" style="left:532px; top:32px; width:77px; height:19px; ">
  1485. <script type="javascript" ev:event="xforms-value-changed">
  1486. <![CDATA[
  1487. /* 부서 코드 Validation Check
  1488. misfValidationCheck(Validation 종류(부서코드, 공통코드, 우편번호...), 공통코드군, 자료를 받을 Instance Node(콤마로 분류해서 넘기면됨)) */
  1489. misfValidationCheck("03", "R0089", "chrgsubj,chrgsubjnm" );
  1490. model.refresh();
  1491. ]]>
  1492. </script>
  1493. </input>
  1494. <caption id="caption52" class="cell_1" style="left:439px; top:30px; width:90px; height:23px; vertical-align:middle; ">담당과목</caption>
  1495. <output id="opt_chrgsubjnm" ref="/root/main/empldata/empllist/chrgsubjnm" class="output_fix" style="left:635px; top:32px; width:230px; height:19px; "/>
  1496. <caption id="caption53" class="cell_1" style="left:439px; top:54px; width:90px; height:23px; vertical-align:middle; ">현소속과</caption>
  1497. <input id="input5" ref="/root/main/empldata/empllist/prestposdept" class="input_essential" disabled="true" navindex="5" required="true" style="left:532px; top:56px; width:102px; height:19px; "/>
  1498. <output id="output1" ref="/root/main/empldata/empllist/prestposdeptnm" class="output_fix" style="left:635px; top:56px; width:230px; height:19px; "/>
  1499. </case>
  1500. <case id="case14">
  1501. <datagrid id="grd_emplnojobrespgvnolist" nodeset="/root/main/emplnojobrespgvno/emplnojobrespgvnolist" caption="발령일자^종료일^발령^소속기관^부서^직위^직급^신직급^직책^보직기관^보직부서^호봉^년차^비고|발령일자^종료일^발령^소속기관^부서^직위^직급^신직급^직책^보직기관^보직부서^호봉^년차^비고" colsep="^" colwidth="90, 100, 106, 162, 94, 82, 83, 73, 76, 100, 100, 43, 40, 134" dataheight="25" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="25" rowsep="|" style="left:0px; top:30px; width:980; height:386; ">
  1502. <col disabled="true" ref="gvnoffcorddd" type="inputdate"/>
  1503. <col disabled="true" ref="termtodd" type="inputdate"/>
  1504. <col disabled="true" ref="gvnoffcordnm"/>
  1505. <col disabled="true" ref="instnm"/>
  1506. <col disabled="true" ref="unitnm"/>
  1507. <col disabled="true" ref="jobposnm"/>
  1508. <col disabled="true" ref="ojobgradnm"/>
  1509. <col disabled="true" ref="njobgradnm"/>
  1510. <col disabled="true" ref="jobrespnm"/>
  1511. <col disabled="true" ref="dutinstnm"/>
  1512. <col disabled="true" ref="dutunitnm"/>
  1513. <col disabled="true" ref="payclsnm"/>
  1514. <col disabled="true" ref="anual"/>
  1515. <col disabled="true" ref="cmt"/>
  1516. </datagrid>
  1517. <caption id="caption55" class="tit_2" style="left:5px; top:10px; width:144px; height:14px; ">보직내역</caption>
  1518. <line id="line17" class="line_1" style="width:980; x1:0px; y1:25px; x2:980; y2:25px; "/>
  1519. </case>
  1520. <case id="case15">
  1521. <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:980; height:386; ">
  1522. <col disabled="true" ref="gvnoffcorddd" type="inputdate"/>
  1523. <col disabled="true" ref="gvnoffcordnm"/>
  1524. <col disabled="true" ref="instnm"/>
  1525. <col disabled="true" ref="deptnm" visibility="hidden"/>
  1526. <col disabled="true" ref="teamnm" visibility="hidden"/>
  1527. <col disabled="true" ref="unitnm"/>
  1528. <col disabled="true" ref="grupjoblnnm"/>
  1529. <col disabled="true" ref="joblnnm"/>
  1530. <col disabled="true" ref="jobkindnm"/>
  1531. <col disabled="true" ref="jobposnm"/>
  1532. <col disabled="true" ref="jobrespnm"/>
  1533. <col disabled="true" ref="ojobgradnm"/>
  1534. <col disabled="true" ref="payclsnm"/>
  1535. <col disabled="true" ref="njobgradnm"/>
  1536. <col disabled="true" ref="anual"/>
  1537. <col disabled="true" ref="cmt"/>
  1538. </datagrid>
  1539. <caption id="caption57" class="tit_2" style="left:5px; top:10px; width:144px; height:14px; ">승진승급</caption>
  1540. <line id="line18" class="line_1" style="x1:0px; y1:25px; x2:980; y2:25px; "/>
  1541. </case>
  1542. <case id="case16">
  1543. <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:980; height:386; ">
  1544. <col disabled="true" ref="refinst" type="input">
  1545. <choices>
  1546. <itemset>
  1547. <label/>
  1548. <value/>
  1549. </itemset>
  1550. </choices>
  1551. </col>
  1552. <col disabled="true" ref="refgoal" type="input"/>
  1553. <col disabled="true" ref="refdd" type="inputdate"/>
  1554. <col disabled="true" ref="acptno" type="input"/>
  1555. <col disabled="true" ref="emplno" visibility="hidden"/>
  1556. <col disabled="true" ref="psnrefflag" visibility="hidden"/>
  1557. <col disabled="true" ref="seqno" visibility="hidden"/>
  1558. </datagrid>
  1559. <caption id="caption58" class="tit_2" style="left:5px; top:10px; width:144px; height:14px; ">신원조회</caption>
  1560. <line id="line19" class="line_1" style="x1:0px; y1:25px; x2:980; y2:25px; "/>
  1561. </case>
  1562. <case id="case17">
  1563. <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:980; height:386; ">
  1564. <col disabled="true" ref="appntflag" type="combo">
  1565. <choices>
  1566. <itemset>
  1567. <label/>
  1568. <value/>
  1569. </itemset>
  1570. </choices>
  1571. </col>
  1572. <col disabled="true" ref="appntfromdd" type="inputdate"/>
  1573. <col disabled="true" ref="appnttodd" type="inputdate"/>
  1574. <col disabled="true" ref="edudeptjobgradcd" type="combo">
  1575. <choices>
  1576. <itemset>
  1577. <label/>
  1578. <value/>
  1579. </itemset>
  1580. </choices>
  1581. </col>
  1582. <col disabled="true" ref="cmt" type="input"/>
  1583. <col disabled="true" ref="reptdd" type="inputdate"/>
  1584. <col disabled="true" ref="emplno" visibility="hidden"/>
  1585. <col disabled="true" ref="seqno" visibility="hidden"/>
  1586. </datagrid>
  1587. <caption id="caption60" class="tit_2" style="left:5px; top:10px; width:144px; height:14px; ">교육부용</caption>
  1588. <line id="line20" class="line_1" style="x1:0px; y1:25px; x2:980; y2:25px; "/>
  1589. </case>
  1590. <case id="case18">
  1591. <caption id="caption63" class="tit_2" style="left:5px; top:10px; width:144px; height:14px; ">교원경력</caption>
  1592. <line id="line21" class="line_1" style="x1:0px; y1:25px; x2:980; y2:25px; "/>
  1593. <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:980; height:386; ">
  1594. <col disabled="true" ref="inoutflag" type="combo">
  1595. <choices>
  1596. <item>
  1597. <label>내부</label>
  1598. <value>I</value>
  1599. </item>
  1600. <item>
  1601. <label>외부</label>
  1602. <value>O</value>
  1603. </item>
  1604. </choices>
  1605. </col>
  1606. <col disabled="true" ref="inst" type="input"/>
  1607. <col disabled="true" ref="fromdd" type="inputdate"/>
  1608. <col disabled="true" ref="todd" type="inputdate"/>
  1609. <col disabled="true" ref="jobpos" type="input"/>
  1610. <col disabled="true" ref="dutyyno"/>
  1611. <col disabled="true" ref="dutmmno"/>
  1612. <col disabled="true" ref="dutdayno"/>
  1613. <col disabled="true" ref="exchrate" type="input"/>
  1614. <col disabled="true" ref="emplno" visibility="hidden"/>
  1615. <col disabled="true" ref="seqno" visibility="hidden"/>
  1616. </datagrid>
  1617. </case>
  1618. <case id="case19">
  1619. <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:980; height:386; ">
  1620. <col disabled="true" ref="gvnoffcorddd" type="inputdate"/>
  1621. <col disabled="true" ref="gvnoffcordnm"/>
  1622. <col disabled="true" ref="instnm"/>
  1623. <col disabled="true" ref="deptnm" visibility="hidden"/>
  1624. <col disabled="true" ref="teamnm" visibility="hidden"/>
  1625. <col disabled="true" ref="unitnm"/>
  1626. <col disabled="true" ref="grupjoblnnm"/>
  1627. <col disabled="true" ref="joblnnm"/>
  1628. <col disabled="true" ref="jobkindnm"/>
  1629. <col disabled="true" ref="jobposnm"/>
  1630. <col disabled="true" ref="jobrespnm"/>
  1631. <col disabled="true" ref="ojobgradnm"/>
  1632. <col disabled="true" ref="payclsnm"/>
  1633. <col disabled="true" ref="njobgradnm"/>
  1634. <col disabled="true" ref="anual"/>
  1635. <col disabled="true" ref="cmt"/>
  1636. </datagrid>
  1637. <caption id="caption54" class="tit_2" style="left:5px; top:10px; width:144px; height:14px; ">이동내역</caption>
  1638. <line id="line12" class="line_1" style="x1:0px; y1:25px; x2:980; y2:25px; "/>
  1639. </case>
  1640. </switch>
  1641. <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:785px; top:675px; width:400px; height:50px; ">
  1642. <col ref="emplno"/>
  1643. <col ref="name"/>
  1644. <col ref="chinm"/>
  1645. <col ref="rregno"/>
  1646. <col ref="rregno1"/>
  1647. <col ref="rregno2"/>
  1648. <col ref="gndr"/>
  1649. <col ref="preststatcd"/>
  1650. <col ref="instcd"/>
  1651. <col ref="deptcd"/>
  1652. <col ref="deptnm"/>
  1653. <col ref="unitcd"/>
  1654. <col ref="teamnm"/>
  1655. <col ref="dutplcedeptcd"/>
  1656. <col ref="prfshipflag"/>
  1657. <col ref="dutplcedeptnm"/>
  1658. <col ref="payclsprfshipflag"/>
  1659. <col ref="holyordflag"/>
  1660. <col ref="grupjoblncd"/>
  1661. <col ref="joblncd"/>
  1662. <col ref="grupjoblnnm"/>
  1663. <col ref="jobkindcd"/>
  1664. <col ref="joblnnm"/>
  1665. <col ref="jobposcd"/>
  1666. <col ref="jobkindnm"/>
  1667. <col ref="prestjobposorddd"/>
  1668. <col ref="jobposnm"/>
  1669. <col ref="jobrespcd"/>
  1670. <col ref="prestjobrespgvnoffcorddd"/>
  1671. <col ref="jobrespnm"/>
  1672. <col ref="ojobgradcd"/>
  1673. <col ref="njobgradcd"/>
  1674. <col ref="ojobgradnm"/>
  1675. <col ref="prestgradgvnoffcorddd"/>
  1676. <col ref="njobgradnm"/>
  1677. <col ref="payclscd"/>
  1678. <col ref="prestpayclsgradupdd"/>
  1679. <col ref="anual"/>
  1680. <col ref="gradupmm"/>
  1681. <col ref="concroffcyn"/>
  1682. <col ref="entcodd"/>
  1683. <col ref="retiredd"/>
  1684. <col ref="pensreglattdnc"/>
  1685. <col ref="regldutyyno"/>
  1686. <col ref="cmcentcodd"/>
  1687. <col ref="probatndd"/>
  1688. <col ref="hosinseqno"/>
  1689. <col ref="mpphonno"/>
  1690. <col ref="maryyn"/>
  1691. <col ref="hdfamyyn"/>
  1692. <col ref="emailid"/>
  1693. <col ref="emailaddr"/>
  1694. <col ref="etcemailaddr"/>
  1695. <col ref="brtharea"/>
  1696. <col ref="domizipcd1"/>
  1697. <col ref="domizipcd2"/>
  1698. <col ref="domiaddr"/>
  1699. <col ref="resdnrgstareazipcd1"/>
  1700. <col ref="resdnrgstareazipcd2"/>
  1701. <col ref="resdnrgstareaaddr"/>
  1702. <col ref="residnczipcd1"/>
  1703. <col ref="residnczipcd2"/>
  1704. <col ref="residncaddr"/>
  1705. <col ref="cntctel"/>
  1706. <col ref="emplengnm"/>
  1707. <col ref="hoby"/>
  1708. <col ref="spclment"/>
  1709. <col ref="entcopath"/>
  1710. <col ref="hometype"/>
  1711. <col ref="wedanvy"/>
  1712. <col ref="brthdd"/>
  1713. <col ref="brthflag"/>
  1714. <col ref="headfamnm"/>
  1715. <col ref="hshdnm"/>
  1716. <col ref="headfamrela"/>
  1717. <col ref="hshdrela"/>
  1718. <col ref="relign"/>
  1719. <col ref="fairnmdd"/>
  1720. <col ref="chrchnm"/>
  1721. <col ref="baptdd"/>
  1722. <col ref="baptnm"/>
  1723. <col ref="rtconfmdd"/>
  1724. <col ref="bhtrgtpsnyn"/>
  1725. <col ref="bhflag"/>
  1726. <col ref="bhsrvvfamynm"/>
  1727. <col ref="srvvfamyrela"/>
  1728. <col ref="bhno"/>
  1729. <col ref="bhpice"/>
  1730. <col ref="handcapyn"/>
  1731. <col ref="handcapgrde"/>
  1732. <col ref="handcapno"/>
  1733. <col ref="bdht"/>
  1734. <col ref="bdwt"/>
  1735. <col ref="btype"/>
  1736. <col ref="rvisact"/>
  1737. <col ref="lvisact"/>
  1738. <col ref="rhflag"/>
  1739. <col ref="bp"/>
  1740. <col ref="incmplcolorblind"/>
  1741. <col ref="hptsag"/>
  1742. <col ref="hptsbd"/>
  1743. <col ref="healstat"/>
  1744. <col ref="testdd"/>
  1745. <col ref="illn"/>
  1746. <col ref="dutplceinst"/>
  1747. <col ref="dutdeptcd"/>
  1748. <col ref="todd"/>
  1749. <col ref="retrduagelimyn"/>
  1750. <col ref="promotngvnoffcorddd"/>
  1751. <col ref="autpromotndd"/>
  1752. <col ref="spclpromotndd"/>
  1753. <col ref="fstappntdd"/>
  1754. <col ref="lbrunionrgstyn"/>
  1755. <col ref="lbrunionrgstdd"/>
  1756. <col ref="lbrunionjobresp"/>
  1757. <col ref="lbrunionsecssdd"/>
  1758. <col ref="fstrgstrid"/>
  1759. <col ref="fstrgstdt"/>
  1760. <col ref="lastupdtrid"/>
  1761. <col ref="lastupdtdt"/>
  1762. <col ref="unitnm"/>
  1763. <col ref="dutteamcd"/>
  1764. <col ref="dutteamnm"/>
  1765. <col ref="dutunitcd"/>
  1766. <col ref="dutunitnm"/>
  1767. <col ref="orginstcd"/>
  1768. <col ref="orgdeptcd"/>
  1769. <col ref="orgdeptnm"/>
  1770. <col ref="edudeptappntdd"/>
  1771. <col ref="reappntdd"/>
  1772. <col ref="edudeptappntfromdd"/>
  1773. <col ref="edudeptappnttodd"/>
  1774. <col ref="frmrmertlrg"/>
  1775. <col ref="frmrmertmdl"/>
  1776. <col ref="mainordfild"/>
  1777. <col ref="ordfild"/>
  1778. <col ref="chrgsubj"/>
  1779. <col ref="prestposdept"/>
  1780. <col ref="frmrmertlrgnm"/>
  1781. <col ref="frmrmertmdlnm"/>
  1782. <col ref="chrgsubjnm"/>
  1783. <col ref="dutyy"/>
  1784. <col ref="dutmm"/>
  1785. <col ref="age"/>
  1786. <col ref="orgdetlinst"/>
  1787. <script type="javascript" ev:event="onrowchanged">
  1788. <![CDATA[
  1789. //misfMsterDetailRetrieve();
  1790. ]]>
  1791. </script>
  1792. </datagrid>
  1793. <datagrid id="grd_imgviewlist" nodeset="/root/main/imgviewlist" visibility="hidden" caption="사원번호^이미지" colsep="^" colwidth="100, 100" mergecellsfixedrows="bycolrec" rowheader="update" rowsep="|" style="left:545px; top:675px; width:240px; height:50px; ">
  1794. <col ref="emplno"/>
  1795. <col ref="photimg" style="background-stretch:stretch; "/>
  1796. </datagrid>
  1797. <select1 id="cmb_instcd" ref="/root/main/empldata/empllist/instcd" class="combo_search comboinput" disabled="true" navindex="4" appearance="minimal" style="left:480px; top:89px; width:178; height:19px; ">
  1798. <choices>
  1799. <itemset>
  1800. <label/>
  1801. <value/>
  1802. </itemset>
  1803. </choices>
  1804. </select1>
  1805. <output id="opt_deptnm" ref="/root/main/empldata/empllist/deptnm" class="output_fix" style="left:480px; top:113px; width:178; height:19px; "/>
  1806. <output id="opt_dutplcedeptnm" ref="/root/main/empldata/empllist/dutplcedeptnm" class="output_fix" style="left:480px; top:185px; width:178; height:19px; "/>
  1807. <select1 id="cmb_payclscd" ref="/root/main/empldata/empllist/payclscd" class="combo_essential" disabled="true" navindex="27" appearance="minimal" style="left:1100px; top:112px; width:90px; height:19px; ">
  1808. <choices>
  1809. <itemset>
  1810. <label/>
  1811. <value/>
  1812. </itemset>
  1813. </choices>
  1814. </select1>
  1815. <input id="ipt_entcodd" ref="/root/main/empldata/empllist/entcodd" disabled="true" navindex="30" inputtype="date" style="left:480px; top:212px; width:178px; height:19px; "/>
  1816. <input id="ipt_retiredd" ref="/root/main/empldata/empllist/retiredd" disabled="true" navindex="31" inputtype="date" style="left:770px; top:212px; width:166px; height:19px; "/>
  1817. <input id="ipt_probatndd" ref="/root/main/empldata/empllist/probatndd" disabled="true" navindex="35" inputtype="date" style="left:480px; top:235px; width:178px; height:19px; "/>
  1818. <output id="opt_grupjoblnnm" ref="/root/main/empldata/empllist/grupjoblnnm" class="output_fix" visibility="hidden" style="left:1035px; top:234px; width:155px; height:19px; "/>
  1819. <output id="opt_joblnnm" ref="/root/main/empldata/empllist/joblnnm" class="output_fix" style="left:1035px; top:17px; width:155px; height:19px; "/>
  1820. <output id="opt_jobkindnm" ref="/root/main/empldata/empllist/jobkindnm" class="output_fix" style="left:1035px; top:41px; width:155px; height:19px; "/>
  1821. <output id="opt_jobposnm" ref="/root/main/empldata/empllist/jobposnm" class="output_fix" style="left:1035px; top:65px; width:155px; height:19px; "/>
  1822. <output id="opt_jobrespnm" ref="/root/main/empldata/empllist/jobrespnm" class="output_fix" style="left:1035px; top:89px; width:155px; height:19px; "/>
  1823. <output id="opt_ojobgradnm" ref="/root/main/empldata/empllist/ojobgradnm" class="output_fix" style="left:1035px; top:112px; width:62px; height:19px; "/>
  1824. <output id="opt_njobgradnm" ref="/root/main/empldata/empllist/njobgradnm" class="output_fix" style="left:1035px; top:136px; width:62px; height:19px; "/>
  1825. <caption id="caption66" class="cell_1" style="left:665; top:15px; width:100; height:23px; vertical-align:middle; ">직원구분</caption>
  1826. <select1 id="cmb_holyordflag" ref="/root/main/empldata/empllist/holyordflag" class="combo_essential" disabled="true" navindex="19" appearance="minimal" style="left:770; top:16px; width:166; height:19px; ">
  1827. <choices>
  1828. <itemset>
  1829. <label/>
  1830. <value/>
  1831. </itemset>
  1832. </choices>
  1833. </select1>
  1834. <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:1035px; top:188px; width:100px; height:19px; text-align:center; border-style:solid; ">
  1835. <choices>
  1836. <item>
  1837. <label>1월</label>
  1838. <value>01</value>
  1839. </item>
  1840. <item>
  1841. <label>7월</label>
  1842. <value>07</value>
  1843. </item>
  1844. </choices>
  1845. </select1>
  1846. <output id="opt_teamnm" ref="/root/main/empldata/empllist/teamnm" class="output_fix" style="left:480px; top:137px; width:178; height:19px; "/>
  1847. <caption id="caption28" class="cell_1" style="left:390px; top:135px; width:85px; height:23px; ">과(팀)</caption>
  1848. <caption id="caption32" class="cell_1" style="left:390px; top:159px; width:85px; height:23px; ">부서</caption>
  1849. <output id="opt_unitnm" ref="/root/main/empldata/empllist/unitnm" class="output_fix" style="left:480px; top:161px; width:178; height:19px; "/>
  1850. <button id="button20" class="btn_sw" group="tab" style="left:209px; top:295px; width:100px; height:22px; ">
  1851. <caption>보직내역</caption>
  1852. <script type="javascript" ev:event="onclick">
  1853. <![CDATA[
  1854. model.toggle("case14");
  1855. if (grd_emplnojobrespgvnolist.rows - grd_emplnojobrespgvnolist.fixedRows <= 0 ) {
  1856. submit("TRRPB00120");
  1857. }
  1858. ]]>
  1859. </script>
  1860. </button>
  1861. <button id="button21" class="btn_sw" group="tab" style="left:309px; top:295px; width:100px; height:22px; ">
  1862. <caption>승급승진내역</caption>
  1863. <script type="javascript" ev:event="onclick">
  1864. <![CDATA[
  1865. model.toggle("case15");
  1866. if (grd_emplnograduplist.rows - grd_emplnograduplist.fixedRows <= 0 ) {
  1867. submit("TRRPB00119");
  1868. }
  1869. ]]>
  1870. </script>
  1871. </button>
  1872. <button id="button22" class="btn_sw" group="tab" style="left:509px; top:295px; width:100px; height:22px; ">
  1873. <caption>신원조회</caption>
  1874. <script type="javascript" ev:event="onclick">
  1875. <![CDATA[
  1876. model.toggle("case16");
  1877. if (grd_psnreflist.rows - grd_psnreflist.fixedRows <= 0 ) {
  1878. submit("TRRPB00114");
  1879. }
  1880. ]]>
  1881. </script>
  1882. </button>
  1883. <button id="button23" class="btn_sw" group="tab" style="left:609px; top:295px; width:100px; height:22px; ">
  1884. <caption>교육부발령</caption>
  1885. <script type="javascript" ev:event="onclick">
  1886. <![CDATA[
  1887. model.toggle("case17");
  1888. if (grd_edudeptinfolist.rows - grd_edudeptinfolist.fixedRows <= 0 ) {
  1889. submit("TRRPB00116");
  1890. }
  1891. ]]>
  1892. </script>
  1893. </button>
  1894. <button id="button32" class="btn_sw" group="tab" style="left:709px; top:295px; width:100px; height:22px; ">
  1895. <caption>교원경력</caption>
  1896. <script type="javascript" ev:event="onclick">
  1897. <![CDATA[
  1898. model.toggle("case18");
  1899. if (grd_profcarinfolist.rows - grd_profcarinfolist.fixedRows <= 0 ) {
  1900. submit("TRRPB00117");
  1901. }
  1902. ]]>
  1903. </script>
  1904. </button>
  1905. <button id="button1" class="btn_sw" group="tab" selected="false" style="left:809px; top:295px; width:100px; height:22px; ">
  1906. <caption>진료분야</caption>
  1907. <script type="javascript" ev:event="onclick">
  1908. <![CDATA[
  1909. // var dutplceinstcd = getUserInfo("dutplceinstcd");
  1910. //
  1911. // if ( dutplceinstcd == "103" ) {
  1912. // model.toggle("case13");
  1913. // }
  1914. // else {
  1915. // model.toggle("case3");
  1916. // }
  1917. model.toggle("case13");
  1918. ]]>
  1919. </script>
  1920. </button>
  1921. <caption id="caption8" class="cell_1" style="left:940px; top:209px; width:90px; height:23px; vertical-align:middle; ">근무상태</caption>
  1922. <select1 id="cmb_preststatcd" ref="/root/main/empldata/empllist/preststatcd" class="combo_essential" disabled="true" navindex="7" appearance="minimal" style="left:1035px; top:211px; width:155px; height:19px; ">
  1923. <choices>
  1924. <itemset>
  1925. <label/>
  1926. <value/>
  1927. </itemset>
  1928. </choices>
  1929. </select1>
  1930. <button id="btn_fileupload" class="btn2_letter9" visibility="hidden" style="left:229px; top:205px; width:119px; height:19px; text-align:center; ">
  1931. <caption>사 진 변 경</caption>
  1932. <script type="javascript" ev:event="DOMActivate">
  1933. <![CDATA[
  1934. var emplno=model.getValue("/root/main/empldata/empllist[1]/emplno");
  1935. if(emplno ==""){
  1936. messageBox("사원을 ","C002");
  1937. return;
  1938. }
  1939. var file = openImageFileDialog(1048576); // image 파일이 너무 크면 submit 시간이 매우 오래(5분이상) 걸리므로 가급적 사이즈를 작게 제한한다.
  1940. if (file == "") {
  1941. return;
  1942. }
  1943. fChangeImage(file);
  1944. //model.setFocus("ipt_imgnminput");
  1945. model.refresh();
  1946. ]]>
  1947. </script>
  1948. </button>
  1949. <button id="button13" class="btn_sw" group="tab" style="left:409px; top:295px; width:100px; height:22px; ">
  1950. <caption>이동내역</caption>
  1951. <script type="javascript" ev:event="onclick">
  1952. <![CDATA[
  1953. model.toggle("case19");
  1954. if (grd_emplnogvnmovelist.rows - grd_emplnogvnmovelist.fixedRows <= 0 ) {
  1955. submit("TRRPB00122");
  1956. }
  1957. ]]>
  1958. </script>
  1959. </button>
  1960. <line id="line195" class="line_3" style="x1:209; y1:255px; x2:1195; y2:255px; "/>
  1961. <line id="line1" class="line_2" style="x1:390px; y1:205px; x2:1195px; y2:207px; "/>
  1962. <line id="line2" class="line_2" style="x1:390px; y1:230px; x2:1195px; y2:231px; "/>
  1963. <group id="group4" style="left:0px; top:10px; width:205px; height:35px; vertical-align:top; ">
  1964. <shape id="roundrect2" appearance="roundrect" ellipsewidth="10" ellipseheight="10" style="left:0px; top:0px; width:205px; height:35px; background-color:#fffbf2; border-color:#ffd799; "/>
  1965. <caption id="caption10" class="search_name" style="left:5px; top:9px; width:85px; height:17px; ">기 관 :</caption>
  1966. <select1 id="cmb_instcd_search" ref="/root/send/instcd" class="combo_default" appearance="minimal" style="left:85px; top:8px; width:115px; height:19px; ">
  1967. <choices>
  1968. <itemset nodeset="/root/main/init">
  1969. <label ref="cnstnm"/>
  1970. <value ref="cnstcd"/>
  1971. </itemset>
  1972. </choices>
  1973. <script type="javascript" ev:event="xforms-value-changed">
  1974. <![CDATA[
  1975. misfGridInit(grd_empllist);
  1976. submit("TRRPC00401");
  1977. ]]>
  1978. </script>
  1979. </select1>
  1980. </group>
  1981. <treeview id="trv_dgindx" ref="/root/main/indxlist/item" expanddepth="0" itemsettype="depth" style="left:0px; top:52; width:205px; height:267px; padding-left:20; border-color:#c0c0c0; border-style:solid; ">
  1982. <itemset nodeset="/root/main/indxlist/item">
  1983. <label ref="depthngnm"/>
  1984. <value ref="deptcd"/>
  1985. <depth ref="depth"/>
  1986. <upcode ref="psnworksupdeptcd"/>
  1987. </itemset>
  1988. <script type="javascript" ev:event="onclick">
  1989. <![CDATA[
  1990. //var deptindex=trv_dgindx.label.lastIndexOf("부");
  1991. //ipt_jobrespcd.value=jobrespcd;
  1992. //alert(event.target);
  1993. if (event.target == "trv_dgindx.vscroll.thumb" || event.target == "trv_dgindx.hscroll.thumb") {
  1994. return;
  1995. }
  1996. misfGridInit(grd_empllist);
  1997. var iIndx = trv_dgindx.focusIndex + 1;
  1998. var iIndx2 = trv_dgindx.focusIndex + 2;
  1999. var psnworksupdeptcd = model.getValue("/root/main/indxlist/item[" + iIndx + "]/psnworksupdeptcd");
  2000. var deptcd = model.getValue("/root/main/indxlist/item[" + iIndx + "]/deptcd");
  2001. var depth = model.getValue("/root/main/indxlist/item[" + iIndx + "]/depth");
  2002. var nextdeptcd = model.getValue("/root/main/indxlist/item[" + iIndx2 + "]/psnworksupdeptcd");
  2003. if(deptcd != nextdeptcd){
  2004. model.setValue("/root/send/deptgbn","L");
  2005. }else{
  2006. model.setValue("/root/send/deptgbn","B");
  2007. }
  2008. if(parseFloat(depth) >=2){
  2009. ipt_deptcd.value=deptcd;
  2010. ipt_psnworksupdeptcd.value=psnworksupdeptcd;
  2011. if(ipt_deptcd.value != ""){
  2012. submit("TRRPC00402");
  2013. //model.refresh();
  2014. }
  2015. }
  2016. ]]>
  2017. </script>
  2018. </treeview>
  2019. <datagrid id="grd_empllist_search" nodeset="/root/main/empllist" caption="성명^직위^직책^부서^사원번호" colsep="^" colwidth="81, 100, 83, 131, 142" ellipsis="true" frozencols="1" mergecellsfixedrows="bycolrec" rowheader="seq" rowsep="|" tooltip="true" style="left:0px; top:325px; width:205px; height:412; text-align:center; ">
  2020. <col ref="emplnm" style="text-align:center; "/>
  2021. <col ref="jobposnm" style="text-align:center; "/>
  2022. <col ref="jobrespnm" style="text-align:center; "/>
  2023. <col ref="depthngnm" style="text-align:center; "/>
  2024. <col ref="emplno" style="text-align:center; "/>
  2025. <script type="javascript" ev:event="onrowchanged">
  2026. <![CDATA[
  2027. ipt_emplno.value = grd_empllist_search.valueMatrix(grd_empllist_search.row, grd_empllist_search.colRef("emplno"));
  2028. ipt_emplno.dispatch("xforms-value-changed");
  2029. ]]>
  2030. </script>
  2031. </datagrid>
  2032. <line id="line5" class="line_1" style="x1:0px; y1:320px; x2:205; y2:320px; "/>
  2033. <line id="line6" class="line_1" style="x1:0px; y1:47; x2:205; y2:47; "/>
  2034. </group>
  2035. <group id="grp_btn" scroll="auto" style="left:0px; top:12px; width:1195px; height:27px; ">
  2036. <button id="button11" class="btn3_letter4" visibility="hidden" style="left:0px; top:3px; width:80px; height:22px; ">
  2037. <caption>화면이동</caption>
  2038. </button>
  2039. <line id="line75" class="line_6" style="x1:0; y1:25; x2:1195; y2:25; "/>
  2040. <input id="ipt_systemflag" ref="/root/init/systemflag" visibility="hidden" style="left:100px; top:5px; width:45px; height:19px; "/>
  2041. <input id="ipt_psnworksupdeptcd" ref="/root/send/psnworksupdeptcd" visibility="hidden" style="left:560px; top:5px; width:90px; height:19px; "/>
  2042. <input id="ipt_jobrespcd" ref="/root/send/jobrespcd" visibility="hidden" style="left:435px; top:5px; width:90px; height:19px; "/>
  2043. <input id="ipt_deptcd" ref="/root/send/deptcd" visibility="hidden" style="left:325px; top:3px; width:90px; height:19px; "/>
  2044. </group>
  2045. </xhtml:body>
  2046. </xhtml:html>