123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046 |
- <?xml version="1.0" encoding="EUC-KR"?>
- <?xml-stylesheet type="text/css" href="../../../com/commonweb/css/common.css" ?>
- <xhtml:html xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.w3.org/2002/01/xforms" xmlns:ev="http://www.w3.org/2001/xml-events">
- <xhtml:head>
- <xhtml:title>발령사항등록및처리</xhtml:title>
- <model id="model1">
- <instance id="instance1">
- <root xmlns="">
- <main>
- <gvnoffcordmast>
- <gvnoffcordmastlist/>
- </gvnoffcordmast>
- <gvnoffcorddetl>
- <gvnoffcorddetllist/>
- <gvnoffcordcdlist/>
- </gvnoffcorddetl>
- <gvnoffcorddetldata>
- <gvnoffcorddetllist/>
- </gvnoffcorddetldata>
- <concroffcord>
- <concroffcordlist/>
- </concroffcord>
- <supdept>
- <supdeptlist/>
- </supdept>
- </main>
- <init>
- <validation/>
- <emplinfo>
- <emplno/>
- <emplnm/>
- </emplinfo>
- </init>
- <send>
- <gvnoffcordmast>
- <gvnoffcordfromdd/>
- <gvnoffcordtodd/>
- <gvnoffcordflag/>
- <gvnoffcorddetlflag/>
- <cnfmyn/>
- <prfshipflag/>
- <holyordflag/>
- <instcd/>
- </gvnoffcordmast>
- <gvnoffcorddetl>
- <gvnoffcordno/>
- <emplno/>
- <gvnoffcordflag/>
- <gvnoffcorddetlflag/>
- <gvnoffcorddd/>
- <instcd/>
- </gvnoffcorddetl>
- <save>
- <gvnoffcordmastlist/>
- <gvnoffcorddetllist/>
- </save>
- <concroffcord>
- <emplno/>
- </concroffcord>
- <supdept>
- <instcd/>
- <gvnoffcorddd/>
- <deptcd/>
- </supdept>
- </send>
- <hidden/>
- <temp>
- <frompage/>
- <topage/>
- </temp>
- </root>
- </instance>
- <script type="javascript" ev:event="xforms-ready">
- <![CDATA[
-
-
- model.removeNodeset(grd_gvnoffcordmastlist.nodeset);
- model.removeNodeset(grd_gvnoffcorddetllist.nodeset);
- model.removeNodeset(grd_gvnoffcordcdlist.nodeset);
- model.removeNodeset(grd_concroffcordlist.nodeset);
-
- misfMsterDetailSet(grd_gvnoffcordmastlist,null, "TRRPB10001" ,"Y");
- misfMsterDetailSet(grd_gvnoffcorddetllist,grd_gvnoffcordmastlist, "TRRPB10002","Y" );
- misfMsterDetailSet(grd_gvnoffcordcdlist,grd_gvnoffcordmastlist, "TRRPB10002","N" );
-
- misfComboComCdList("R0091",cmb_gvnoffcordflag_s);
- misfComboComCdList("R0058",cmb_prfshipflag_s);
-
- misfComboInstCdListMulti("cmb_instcd1",getCurrentDate(),"","N","Y");
- // misfComboComCdListMulti("R0066,R0058,Z0007,R0090,R0098,R0147,R0091","cmb_holyordflag,cmb_prfshipflag_i,cmb_instcd1,cmb_gvnoffcorddetlflag_i,cmb_payclscd,cmb_retireresn,cmb_gvnoffcordflag_i");
- misfComboComCdListMulti("R0066,R0058,R0090,R0098,R0147,R0091,R0097,R0401","cmb_holyordflag,cmb_prfshipflag_i,cmb_gvnoffcorddetlflag_i,cmb_payclscd,cmb_retireresn,cmb_gvnoffcordflag_i,cmb_payclsprfshipflag,cmb_educd");
- misfComboCopyItemSet(cmb_holyordflag, "", grd_gvnoffcordmastlist, "holyordflag");
- misfComboCopyItemSet(cmb_prfshipflag_i, "", grd_gvnoffcordmastlist, "prfshipflag");
- //misfComboCopyItemSet(cmb_prfshipflag_s, "", cmb_prfshipflag_i, "");
- misfComboCopyItemSet(cmb_instcd1,"",cmb_instcd2,"");
- misfComboCopyItemSet(cmb_holyordflag,"",cmb_holyordflag_i,"");
-
- misfComboCopyItemSet(cmb_gvnoffcordflag_i, "", grd_gvnoffcordmastlist, "gvnoffcordflag");
- //misfComboCopyItemSet(cmb_gvnoffcordflag_s, "", cmb_gvnoffcordflag_i, "");
-
- misfComboCopyItemSet(cmb_instcd1,"",cmb_dutplceinst,"");
- misfComboCopyItemSet(cmb_instcd1,"",cmb_payinst,"");
- misfComboCopyItemSet(cmb_instcd1,"",cmb_instcd,"");
- misfComboCopyItemSet(cmb_instcd1,"",grd_gvnoffcordmastlist,"instcd");
-
- var nowyy = new Date();
- var gvnodate = nowyy.getDateFormat();
- ipt_gvnoffcordfromdd.value =gvnodate;
- ipt_gvnoffcordtodd.value =gvnodate;
-
- addGridComboItemAll("cmb_gvnoffcordflag_s","전체","%","above");
- addGridComboItemAll("cmb_prfshipflag_s","전체","%","above");
-
- cmb_gvnoffcordflag_s.value = "%";
- cmb_prfshipflag_s.value = "%";
- cmb_cnfmyn_s.value = "%";
-
- cmb_instcd.value = getUserInfo("dutplceinstcd");
- model.refresh();
- ]]>
- </script>
- <submission id="TRRPB10001" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/gvnoffcordmast" resultref="/root/main/gvnoffcordmast"/>
- <submission id="TRRPB10002" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/gvnoffcorddetl" resultref="/root/main/gvnoffcorddetl"/>
- <submission id="TXRPB10001" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/save" resultref="/root/hidden/temp"/>
- <submission id="TXRPB10002" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/save" resultref="/root/hidden/temp"/>
- <submission id="TXRPB10003" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/save" resultref="/root/hidden/temp"/>
- <submission id="TRRPB10004" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/concroffcord" resultref="/root/main/concroffcord"/>
- <submission id="TRRPZ10003" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/supdept" resultref="/root/main/supdept"/>
- </model>
- <script type="javascript">
- <![CDATA[
- var GVN_TARGET_NODE = "/root/main/gvnoffcorddetldata";
- var GVN_SOURCE_NODE = "/root/main/gvnoffcorddetl";
- function deptsetting(pUnitYn)
- {
- model.setValue("/root/send/supdept/instcd", cmb_instcd1.value);
- model.setValue("/root/send/supdept/gvnoffcorddd", ipt_gvnoffcorddd.value);
- if (pUnitYn == "Y") {
- model.setValue("/root/send/supdept/deptcd", ipt_unitcd.value);
- }
- else {
- model.setValue("/root/send/supdept/deptcd", ipt_teamcd.value);
- }
- submit("TRRPZ10003");
-
- model.setValue(ipt_deptcd.attribute("ref"), model.getValue("/root/main/supdept/supdeptlist/deptcd"));
- model.setValue(ipt_deptcdnm.attribute("ref"), model.getValue("/root/main/supdept/supdeptlist/deptnm"));
-
- if (pUnitYn == "Y") {
- model.setValue(ipt_teamcd.attribute("ref"), model.getValue("/root/main/supdept/supdeptlist/teamcd"));
- model.setValue(ipt_teamnm.attribute("ref"), model.getValue("/root/main/supdept/supdeptlist/teamnm"));
- }
- }
-
- function dutdeptsetting(pUnitYn)
- {
- model.setValue("/root/send/supdept/instcd", cmb_dutplceinst.value);
- model.setValue("/root/send/supdept/gvnoffcorddd", ipt_gvnoffcorddd.value);
-
- if (pUnitYn == "Y") {
- model.setValue("/root/send/supdept/deptcd", ipt_dutunitcd.value);
- }
- else {
- model.setValue("/root/send/supdept/deptcd", ipt_dutteamcd.value);
- }
-
- submit("TRRPZ10003");
-
-
- model.setValue(ipt_dutdeptcd.attribute("ref"), model.getValue("/root/main/supdept/supdeptlist/deptcd"));
- model.setValue(ipt_dutdeptnm.attribute("ref"), model.getValue("/root/main/supdept/supdeptlist/deptnm"));
-
- if (pUnitYn == "Y") {
- model.setValue(ipt_dutteamcd.attribute("ref"), model.getValue("/root/main/supdept/supdeptlist/teamcd"));
- model.setValue(ipt_dutteamnm.attribute("ref"), model.getValue("/root/main/supdept/supdeptlist/teamnm"));
- }
- }
- ]]>
- </script>
- <script type="javascript" src="../../../com/commonweb/js/common.js"/>
- <script type="javascript" src="../../../com/commonweb/js/tfHelper.js"/>
- <script type="javascript" src="../../../com/commonweb/js/stringHelper.js"/>
- <script type="javascript" src="../../../com/commonweb/js/dateHelper.js"/>
- <script type="javascript" src="../../../mis/miscommonweb/js/MIS.js"/>
- <script type="javascript" src="../../../mis/humtrafactmngtweb/js/RPB001.js"/>
- </xhtml:head>
- <xhtml:body style="margin-left:8; margin-right:8; ">
- <group id="group1" style="left:0px; top:0px; width:1195px; height:13px; ">
- <caption id="caption6" class="tit_1" style="left:0px; top:0px; width:800px; height:14px; ">발령사항등록및처리</caption>
- </group>
- <switch id="switch1" class="sw_box" style="left:0px; top:12px; width:1195px; height:755px; border-style:solid; ">
- <case id="case1" selected="true">
- <group id="grp_btn" scroll="auto" style="left:0px; top:0px; width:1193px; height:26px; ">
- <line id="line75" class="line_6" style="x1:0px; y1:25px; x2:1193px; y2:25px; "/>
- <button id="btn_save" class="btn4_letter2" style="left:1137px; top:3px; width:56px; height:22px; ">
- <caption>저장</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
-
-
- // var emplno = ipt_emplno.currentText;
- //
- // if (emplno == null || emplno == "" ) {
- // messageBox("사원번호를 등록 하십시요 . 저장 ", "E001");
- // return;
- // }
-
- /* Grid의 DATA와 각 Control의 값을 비교해서 수정 되었으면 Grid에 Copy후 Grid의 상태를 바꿔준다 */
- misfGridRowStatusChange(grd_gvnoffcorddetllist, GVN_SOURCE_NODE, GVN_TARGET_NODE);
- model.refresh();
- for (var i = grd_gvnoffcorddetllist.rows - 1 ; i >= grd_gvnoffcorddetllist.fixedRows; i--) {
- var emplno = grd_gvnoffcorddetllist.valueMatrix(i, grd_gvnoffcorddetllist.colRef("emplno"));
-
- if (emplno == null || emplno == "" ) {
- misfGridIUD(grd_gvnoffcorddetllist, "D");
- }
- }
-
-
-
- misfSave("TXRPB10001");
-
- btn_search.dispatch("DOMActivate");
- ]]>
- </script>
- </button>
- </group>
- <group id="group3" scroll="auto" style="left:0px; top:35px; width:1193; height:715px; ">
- <datagrid id="grd_concroffcordlist" nodeset="/root/main/concroffcord/concroffcordlist" visibility="hidden" caption="발령일자^발령번호^근무기관^근무부서^직위^직책^비고^사원번호^일련번호^근무기관코드^직책코드^직위코드|발령일자^발령번호^근무기관^근무부서^직위^직책^비고^사원번호^일련번호^근무기관코드^직책코드^직위코드" colsep="^" colwidth="107, 104, 153, 130, 137, 160, 352, 29, 31, 43, 37, 37, 100, 100, 100, 100, 100, 100" mergecellsfixedrows="bycolrec" rowheader="seq" rowsep="|" style="left:0px; top:535px; width:1193px; height:172px; ">
- <col disabled="true" ref="gvnoffcorddd" type="inputdate"/>
- <col ref="gvnoffcordno"/>
- <col ref="dutplceinstnm"/>
- <col ref="dutunitnm"/>
- <col ref="jobposnm"/>
- <col ref="jobrespnm"/>
- <col ref="cmt"/>
- <col ref="emplno" visibility="hidden"/>
- <col ref="seqno" visibility="hidden"/>
- <col ref="dutplceinst" visibility="hidden"/>
- <col ref="jobrespcd" visibility="hidden"/>
- <col ref="jobpospcd" visibility="hidden"/>
- <col ref="dutdeptcd" visibility="hidden"/>
- <col ref="dutteamcd" visibility="hidden"/>
- <col ref="dutunitcd" visibility="hidden"/>
- <col ref="dutdeptnm" visibility="hidden"/>
- <col ref="dutteamnm" visibility="hidden"/>
- <col ref="dutunitnm" visibility="hidden"/>
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- var gvnoffcordflag = grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row, grd_gvnoffcordmastlist.colRef("gvnoffcordflag"));
- var gvnoffcorddetlflag = grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row, grd_gvnoffcordmastlist.colRef("gvnoffcorddetlflag"));
- if ( gvnoffcorddetlflag == "025" || gvnoffcorddetlflag == "015" || gvnoffcorddetlflag == "040") {
- model.setValue(ipt_jobrespcd.attribute("ref"), grd_concroffcordlist.valueMatrix(grd_concroffcordlist.row, grd_concroffcordlist.colRef("jobrespcd")));
- model.setValue(ipt_jobrespcdnm.attribute("ref"), grd_concroffcordlist.valueMatrix(grd_concroffcordlist.row, grd_concroffcordlist.colRef("jobrespnm")));
-
- model.setValue(cmb_dutplceinst.attribute("ref"), grd_concroffcordlist.valueMatrix(grd_concroffcordlist.row, grd_concroffcordlist.colRef("dutplceinst")));
-
-
- //model.setValue(ipt_dutdeptcd.attribute("ref"), grd_concroffcordlist.valueMatrix(grd_concroffcordlist.row, grd_concroffcordlist.colRef("dutdeptcd")));
- //model.setValue(ipt_dutdeptnm.attribute("ref"), grd_concroffcordlist.valueMatrix(grd_concroffcordlist.row, grd_concroffcordlist.colRef("dutdeptnm")));
-
- //model.setValue(ipt_dutteamcd.attribute("ref"), grd_concroffcordlist.valueMatrix(grd_concroffcordlist.row, grd_concroffcordlist.colRef("dutteamcd")));
- //model.setValue(ipt_dutteamnm.attribute("ref"), grd_concroffcordlist.valueMatrix(grd_concroffcordlist.row, grd_concroffcordlist.colRef("dutteamnm")));
-
-
- model.setValue(ipt_dutunitcd.attribute("ref"), grd_concroffcordlist.valueMatrix(grd_concroffcordlist.row, grd_concroffcordlist.colRef("dutunitcd")));
- model.setValue(ipt_dutunitnm.attribute("ref"), grd_concroffcordlist.valueMatrix(grd_concroffcordlist.row, grd_concroffcordlist.colRef("dutunitnm")));
-
- dutdeptsetting("Y");
-
-
- model.setValue(GVN_TARGET_NODE + "/gvnoffcorddetllist/concroffcordno", grd_concroffcordlist.valueMatrix(grd_concroffcordlist.row, grd_concroffcordlist.colRef("gvnoffcordno")));
- model.refresh();
-
- grd_concroffcordlist.attribute("visibility") = "hidden";
- }
- ]]>
- </script>
- </datagrid>
- <datagrid id="grd_gvnoffcorddetllist" nodeset="/root/main/gvnoffcorddetl/gvnoffcorddetllist" caption="사번^성명^주민번호^처리^기간^기간^소속부서^직군^위험코드^직종^직위^직책^신직급^년차^구직급^호봉구분^호봉^승급구분^겸직^퇴직사유^비고^발령번호^성직구분^교직구분^발령구분^발령세부구분^주민번호1^주민번호2^기관^부서명^팀^팀명^유닛^유닛명^근무지^근무지명^직군명^직열명^직종명^직위명^직책명^신직급명^구직급명^발령일^처리여부OLD^근무기관^급여기관^근무부서^근무부서명^근무팀^근무팀명^근무유닛^근무유닛명^email^핸드폰^입사일^이전기관^이전부서^이전근무기관^이전근무부서^이전from^이전to^퇴직사유^겸직발령번호^원소속기관^원소속부서^원소속세부기관^원소속팀^원소속유닛^caption1^caption2^pwd|사번^성명^주민번호^처리^시작일자^종료일자^소속부서^직군^위험코드^직종^직위^직책^신직급^년차^구직급^호봉구분^호봉^승급구분^겸직^퇴직사유^비고^발령번호^성직구분^교직구분^발령구분^발령세부구분^주민번호1^주민번호2^기관^부서명^팀^팀명^유닛^유닛명^근무지^근무지명^직군명^직열명^직종명^직위명^직책명^신직급명^구직급명^발령일^처리여부OLD^근무기관^급여기관^근무부서^근무부서명^근무팀^근무팀명^근무유닛^근무유닛명^email^핸드폰^입사일^이전기관^이전부서^이전근무기관^이전근무부서^이전from^이전to^퇴직사유^겸직발령번호^원소속기관^원소속부서^원소속세부기관^원소속팀^원소속유닛^caption1^caption2^pwd" colsep="^" colwidth="68, 58, 91, 24, 89, 88, 68, 68, 64, 69, 62, 60, 60, 25, 55, 64, 25, 31, 24, 31, 217, 36, 28, 27, 26, 43, 37, 38, 33, 28, 22, 28, 31, 28, 38, 47, 28, 29, 33, 31, 28, 34, 30, 33, 32, 32, 34, 30, 31, 29, 32, 34, 32, 31, 28, 35, 30, 34, 42, 40, 39, 32, 32, 34, 34, 29, 31, 31, 34, 100, 100" dataheight="25" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="25" rowsep="|" style="left:0px; top:295px; width:1193px; height:205px; ">
- <col ref="emplno" type="output"/>
- <col ref="emplnm" type="output"/>
- <col ref="rregno" type="output"/>
- <col checkvalue="Y,N" ref="tretyn" type="checkbox"/>
- <col disabled="true" ref="termfromdd" type="inputdate"/>
- <col disabled="true" ref="termtodd" type="inputdate"/>
- <col ref="unitnm" type="output"/>
- <col ref="grupjoblnnm" type="output" visibility="hidden"/>
- <col ref="joblnnm" type="output"/>
- <col ref="jobkindnm" type="output"/>
- <col ref="jobposnm" type="output"/>
- <col ref="jobrespnm" type="output"/>
- <col ref="njobgradnm" type="output"/>
- <col ref="anual" type="output"/>
- <col ref="ojobgradnm" type="output"/>
- <col ref="payclsprfshipflagnm" type="output" style="text-align:center; "/>
- <col ref="payclscd" type="output"/>
- <col ref="gradupmm" type="output"/>
- <col checkvalue="Y,N" disabled="true" ref="concroffcyn" type="checkbox"/>
- <col ref="retireresn" type="output"/>
- <col ref="cmt" type="output"/>
- <col ref="gvnoffcordno" type="output" visibility="hidden"/>
- <col ref="holyordflag" visibility="hidden"/>
- <col ref="prfshipflag" visibility="hidden"/>
- <col ref="gvnoffcordflag" visibility="hidden"/>
- <col ref="gvnoffcorddetlflag" visibility="hidden"/>
- <col ref="rregno1" visibility="hidden"/>
- <col ref="rregno2" visibility="hidden"/>
- <col ref="instcd" visibility="hidden"/>
- <col ref="deptcd" visibility="hidden"/>
- <col ref="teamcd" visibility="hidden"/>
- <col ref="teamnm" visibility="hidden"/>
- <col ref="unitcd" visibility="hidden"/>
- <col ref="deptnm" visibility="hidden"/>
- <col ref="dutplcedeptcd" visibility="hidden"/>
- <col ref="dutplcedeptnm" visibility="hidden"/>
- <col ref="grupjoblncd" visibility="hidden"/>
- <col ref="joblncd" visibility="hidden"/>
- <col ref="jobkindcd" visibility="hidden"/>
- <col ref="jobposcd" visibility="hidden"/>
- <col ref="jobrespcd" visibility="hidden"/>
- <col ref="njobgradcd" visibility="hidden"/>
- <col ref="ojobgradcd" visibility="hidden"/>
- <col ref="gvnoffcorddd" visibility="hidden"/>
- <col ref="oldtretyn" visibility="hidden"/>
- <col ref="dutplceinst" visibility="hidden"/>
- <col ref="payinst" visibility="hidden"/>
- <col ref="dutdeptcd" visibility="hidden"/>
- <col ref="dutdeptnm" visibility="hidden"/>
- <col ref="dutteamcd" visibility="hidden"/>
- <col ref="dutteamnm" visibility="hidden"/>
- <col ref="dutunitcd" visibility="hidden"/>
- <col ref="dutunitnm" visibility="hidden"/>
- <col ref="email" visibility="hidden"/>
- <col ref="oldmpphonno" visibility="hidden"/>
- <col ref="entcodd" visibility="hidden"/>
- <col ref="oldmainordfild" visibility="hidden"/>
- <col ref="oldjobposcd" visibility="hidden"/>
- <col ref="oldjobkindcd" visibility="hidden"/>
- <col ref="oldjobrespcd" visibility="hidden"/>
- <col ref="retireresn" visibility="hidden"/>
- <col ref="concroffcordno" visibility="hidden"/>
- <col ref="oldprfshipflag" visibility="hidden"/>
- <col ref="olddutunitcd" visibility="hidden"/>
- <col ref="orginstcd" visibility="hidden"/>
- <col ref="orgdeptcd" visibility="hidden"/>
- <col ref="orgdetlinst" visibility="hidden"/>
- <col ref="orgteamcd" visibility="hidden"/>
- <col ref="orgunitcd" visibility="hidden"/>
- <col ref="payclsprfshipflag" visibility="hidden"/>
- <col ref="educd" visibility="hidden"/>
- <script type="javascript" ev:event="onrowchanged">
- <![CDATA[
-
- var tretyn = grd_gvnoffcorddetllist.valueMatrix(grd_gvnoffcorddetllist.row, grd_gvnoffcorddetllist.colRef("oldtretyn"));
- if (tretyn == "Y") {
- btn_grddelgvnoffcorddetllist.disabled = true;
- }
- else {
- btn_grddelgvnoffcorddetllist.disabled = false;
- }
-
- model.copyNode(GVN_TARGET_NODE + "/gvnoffcorddetllist" ,GVN_SOURCE_NODE + "/gvnoffcorddetllist[" + (grd_gvnoffcorddetllist.row - grd_gvnoffcorddetllist.fixedRows + 1) + "]");
- rpbfGvnoffcordEditYNSet(grd_gvnoffcordcdlist.nodeset, GVN_TARGET_NODE + "/gvnoffcorddetllist");
- if (grd_gvnoffcorddetllist.valueMatrix(grd_gvnoffcorddetllist.row, grd_gvnoffcorddetllist.colRef("oldtretyn")) == "Y") {
- btn_savedetl.disabled = true;
- btn_save.disabled = true;
- }
- else {
- btn_savedetl.disabled = false;
- btn_save.disabled = false;
- }
-
- cmb_holyordflag_i.disabled = true;
- cmb_prfshipflag_i.disabled = true;
-
- model.refresh();
-
- ipt_emplnoi.value = ipt_emplno.currentText;
- ipt_emplnmi.value = ipt_emplnm.currentText;
-
-
- ]]>
- </script>
- </datagrid>
- <select1 id="cmb_holyordflag" ref="/root/send/gvnoffcordmast/holyordflag" class="combo_default" navindex="6" visibility="hidden" appearance="minimal" style="left:873px; top:8px; width:74px; height:19px; ">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </select1>
- <line id="line5" class="line_2" style="x1:0px; y1:656px; x2:1193px; y2:656px; "/>
- <line id="line4" class="line_2" style="x1:0px; y1:632px; x2:1193px; y2:632px; "/>
- <line id="line3" class="line_2" style="x1:0px; y1:608px; x2:1193px; y2:608px; "/>
- <line id="line2" class="line_2" style="x1:0px; y1:560px; x2:1193px; y2:560px; "/>
- <line id="line8" class="line_2" style="x1:0px; y1:584px; x2:1193px; y2:584px; "/>
- <line id="line1" class="line_3" style="x1:0px; y1:704px; x2:1193px; y2:704px; "/>
- <shape id="roundrect2" appearance="roundrect" ellipsewidth="10" ellipseheight="10" style="left:0px; top:0px; width:1193px; height:35px; background-color:#fffbf2; border-color:#ffd799; "/>
- <line id="line20" class="line_1" style="x1:0px; y1:58px; x2:1193px; y2:58px; "/>
- <caption id="caption72" class="tit_2" style="left:5px; top:275px; width:144px; height:13px; ">DETAIL</caption>
- <line id="line21" class="line_1" style="x1:0px; y1:290px; x2:1193px; y2:290px; "/>
- <caption id="caption73" class="tit_2" style="left:5px; top:44px; width:144px; height:13px; ">MASTER</caption>
- <caption id="caption41" class="search_name" style="left:209px; top:9px; width:86px; height:17px; ">발령일자 :</caption>
- <line id="line15" class="line_1" style="x1:0px; y1:532px; x2:1193px; y2:532px; "/>
- <caption id="caption46" class="search_name" style="left:495px; top:9px; width:86px; height:17px; ">발령구분 :</caption>
- <caption id="caption47" class="search_name" style="left:798px; top:9px; width:86px; height:17px; ">처리여부 :</caption>
- <caption id="caption48" class="search_n_b" style="left:387px; top:11px; width:12px; height:17px; font-weight:bolder; ">~</caption>
- <caption id="caption49" class="search_name" style="left:953px; top:9px; width:91px; height:17px; ">급여분류 :</caption>
- <button id="btn_search" class="btn1_letter2" style="left:1132px; top:7px; width:56px; height:22px; ">
- <caption>조회</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
-
- var fromdd = ipt_gvnoffcordfromdd.value;
- var todd = ipt_gvnoffcordtodd.value;
- var gvno = cmb_gvnoffcordflag_s.value;
-
- if ( fromdd == null || fromdd == "" ) {
- messageBox("발령 시작 조회 일자가 없습니다. 조회 ","E001");
- return;
- }
-
- if ( todd == null || todd == "" ) {
- messageBox("발령 종료 조회 일자가 없습니다. 조회 ","E001");
- return;
- }
-
- if ( gvno == null || gvno == "" ) {
- messageBox("발령 구분이 없습니다. 조회 ","E001");
- return;
- }
-
- misfMsterDetailRetrieve();
-
- model.resetInstanceNode(GVN_TARGET_NODE);
- ipt_emplnoi.value = "";
- ipt_emplnmi.value = "";
- ]]>
- </script>
- </button>
- <line id="line6" class="line_4" style="x1:1126px; y1:7px; x2:1126px; y2:29px; "/>
- <caption id="caption81" class="cell_1" style="left:560px; top:610px; width:65px; height:23px; vertical-align:middle; ">직종</caption>
- <caption id="caption71" class="cell_1" style="left:0px; top:562px; width:82px; height:23px; vertical-align:middle; ">발령일자</caption>
- <caption id="caption60" class="cell_1" style="left:1008px; top:610px; width:82px; height:23px; vertical-align:middle; ">승급구분</caption>
- <button id="btn_emplsearch" class="icon_search" style="left:160px; top:541px; width:16px; height:16px; ">
- <caption/>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var gvnoffcorddd = grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row, grd_gvnoffcordmastlist.colRef("gvnoffcorddd"));
- var gvnoffcordflag = grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row, grd_gvnoffcordmastlist.colRef("gvnoffcordflag"));
- var gvnoffcorddetlflag = grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row, grd_gvnoffcordmastlist.colRef("gvnoffcorddetlflag"));
- var prfshipflag = grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row, grd_gvnoffcordmastlist.colRef("prfshipflag"));
- var holyordflag = grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row, grd_gvnoffcordmastlist.colRef("holyordflag"));
-
- if (gvnoffcorddd == null || gvnoffcorddd == "") {
- messageBox("발령 일자가 없습니다. 등록","E001");
- return;
- }
-
- if (gvnoffcordflag == null || gvnoffcordflag == "") {
- messageBox("발령 구분이 없습니다. 등록","E001");
- return;
- }
-
- if (gvnoffcorddetlflag == null || gvnoffcorddetlflag == "") {
- messageBox("발령 세부 구분이 없습니다. 등록","E001");
- return;
- }
-
- if (prfshipflag == null || prfshipflag == "") {
- messageBox("급여분류가 없습니다. 등록","E001");
- return;
- }
-
- if (holyordflag == null || holyordflag == "") {
- messageBox("직원 구분이 없습니다. 등록","E001");
- return;
- }
-
- /* 사원번호 Help 화면 Open
- misfOpenPopUpList(화면종류Code, OPEN하는 Control, 공통코드, 리턴받을 Instance명) */
- if (grd_gvnoffcorddetllist.rowStatus(grd_gvnoffcorddetllist.row) != "1") {
- misfGridIUD(grd_gvnoffcorddetllist, "A");
- model.copyNode(GVN_TARGET_NODE + "/gvnoffcorddetllist" ,GVN_SOURCE_NODE + "/gvnoffcorddetllist[" + (grd_gvnoffcorddetllist.row - grd_gvnoffcorddetllist.fixedRows + 1) + "]" );
- rpbfGvnoffcordEditYNSet(grd_gvnoffcordcdlist.nodeset, GVN_TARGET_NODE + "/gvnoffcorddetllist");
- }
-
- var recv_list = "emplno,emplnm,holyordflag,prfshipflag,rregno1,rregno2,instcd,deptcd,deptnm,jobposcd,jobposnm,jobrespcd,jobrespnm," ;
- recv_list = recv_list + "grupjoblncd,grupjoblnnm,joblncd,joblnnm,jobkindcd,jobkindnm,concroffcyn,ojobgradcd,ojobgradnm,njobgradcd,njobgradnm,";
- recv_list = recv_list + "grdeupflag,retireresn,cmt,payclscd,anual,payinst,dutplceinst,dutdeptcd,dutdeptnm,dutteamcd,dutteamnm,dutunitcd,dutunitnm,teamcd,teamnm,unitcd,unitnm,";
- recv_list = recv_list + "orginstcd,orgdeptcd,orgdetlinst,orgteamcd,orgunitcd,gradupmm,payclsprfshipflag,educd";
- rpbfOpenPopUpList("SPRPB00101", ipt_emplno, recv_list,"","N");
-
- model.setValue(ipt_emplnoi.attribute("ref"), model.getValue(ipt_emplno.attribute("ref")));
- model.setValue(ipt_emplnmi.attribute("ref"), model.getValue(ipt_emplnm.attribute("ref")));
-
- model.refresh();
-
- var emplno = ipt_emplnoi.value;
- var prfshipflag = model.getValue(GVN_TARGET_NODE + "/gvnoffcorddetllist/prfshipflag");
-
- model.setValue(ipt_termfromdd.attribute("ref"), model.getValue(ipt_gvnoffcorddd.attribute("ref")));
- model.setValue(ipt_termtodd.attribute("ref"), "");
-
- if (rpbCheckEmplNo (grd_gvnoffcorddetllist, ipt_emplno.value) == "Y" ||
- (gvnoffcorddetlflag != "020" && gvnoffcorddetlflag != "065" && prfshipflag != grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row, grd_gvnoffcordmastlist.colRef("prfshipflag"))) ||
- (gvnoffcorddetlflag != "020" && gvnoffcorddetlflag != "065" && holyordflag != grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row, grd_gvnoffcordmastlist.colRef("holyordflag"))) ) {
-
- if (prfshipflag != grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row, grd_gvnoffcordmastlist.colRef("prfshipflag")) ) {
- messageBox("Master쪽 급여분류하고 일치 하지 않습니다. 등록","E001");
- }
- else if (holyordflag != grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row, grd_gvnoffcordmastlist.colRef("holyordflag")) ) {
- messageBox("Master쪽 직원구분하고 일치 하지 않습니다. 등록","E001");
- }
- else {
- messageBox("입력한 사원입니다. 등록","E001");
- }
- var node = instance1.selectNodes(GVN_TARGET_NODE + "/gvnoffcorddetllist/*");
- for (var i = 0; i < node.length; i++) {
- model.setValue(GVN_TARGET_NODE + "/gvnoffcorddetllist/" + node.item(i).nodeName,"");
- }
- model.copyNode(GVN_TARGET_NODE + "/gvnoffcorddetllist" ,GVN_SOURCE_NODE + "/gvnoffcorddetllist[" + (grd_gvnoffcorddetllist.row - grd_gvnoffcorddetllist.fixedRows + 1) + "]" );
-
- model.refresh();
- return;
- }
- else {
- if (gvnoffcorddetlflag == "024" || gvnoffcorddetlflag == "008" ) { //겸직, 보임일경우 겸직유무 Setting
- if (gvnoffcorddetlflag == "024"){
- model.setValue(rdo_concroffcyn.attribute("ref"), "Y");
- }
- else if ((prfshipflag == "11" || prfshipflag == "21") && gvnoffcorddetlflag == "008") {
- model.setValue("/root/send/concroffcord/emplno", emplno);
- submit("TRRPB10004");
-
- if (grd_concroffcordlist.rows > 0) {
- model.setValue(rdo_concroffcyn.attribute("ref"), "Y");
- }
- else {
- model.setValue(rdo_concroffcyn.attribute("ref"), "N");
- }
-
- }
- else {
- model.setValue(rdo_concroffcyn.attribute("ref"), "N");
- }
- }
- else {
- model.setValue(rdo_concroffcyn.attribute("ref"), "N");
- }
-
- if (gvnoffcorddetlflag == "025" || gvnoffcorddetlflag == "015" || gvnoffcorddetlflag == "040") { //겸직해임, 보직해임일경우 겸직발령내역 조회
- model.setValue("/root/send/concroffcord/emplno", emplno);
- submit("TRRPB10004");
-
- if (grd_concroffcordlist.rows > 0) {
- grd_concroffcordlist.attribute("visibility") = "visible";
- }
- }
-
- btn_savedetl.disabled = false;
- btn_save.disabled = false;
- }
- var prfshipflag = grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row, grd_gvnoffcordmastlist.colRef("prfshipflag"));
- var holyordflag = grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row, grd_gvnoffcordmastlist.colRef("holyordflag"));
- cmb_prfshipflag_i.value = prfshipflag;
- cmb_holyordflag_i.value = holyordflag;
-
- cmb_holyordflag_i.disabled = true;
- cmb_prfshipflag_i.disabled = true;
-
- if (cmb_prfshipflag_i.value == "51") {
- rdo_grdeupflag.value = "";
- rdo_grdeupflag.disabled = true;
- }
-
- model.refresh();
- ]]>
- </script>
- </button>
- <caption id="caption83" class="cell_1" visibility="hidden" style="left:880px; top:650px; width:65px; height:23px; vertical-align:middle; ">직군</caption>
- <caption id="caption50" class="search_n_b" style="left:189px; top:685px; width:12px; height:17px; font-weight:bolder; ">~</caption>
- <caption id="caption62" class="cell_1" style="left:812px; top:658px; width:82px; height:47px; vertical-align:middle; ">비고</caption>
- <caption id="caption51" class="cell_1" style="left:308px; top:562px; width:65px; height:23px; text-align:left; vertical-align:middle; ">소속기관</caption>
- <caption id="caption52" class="cell_1" style="left:1008px; top:634px; width:82px; height:23px; vertical-align:middle; ">퇴직사유</caption>
- <caption id="caption74" class="cell_1" style="left:308px; top:538px; width:65px; height:23px; vertical-align:middle; ">주민번호</caption>
- <caption id="caption53" class="cell_1" style="left:308px; top:634px; width:65px; height:23px; vertical-align:middle; ">부(실)</caption>
- <caption id="caption42" class="cell_1" style="left:0px; top:538px; width:82px; height:23px; vertical-align:middle; ">사번</caption>
- <caption id="caption54" class="cell_1" style="left:812px; top:562px; width:82px; height:23px; vertical-align:middle; ">구직급/호봉</caption>
- <caption id="caption43" class="tit_2" style="left:5px; top:517px; width:118px; height:13px; ">등록 및 수정사항</caption>
- <caption id="caption77" class="cell_1" style="left:812px; top:538px; width:82px; height:23px; vertical-align:middle; ">직책</caption>
- <caption id="caption66" class="cell_1" style="left:0px; top:658px; width:82px; height:23px; vertical-align:middle; ">급여분류</caption>
- <caption id="caption44" class="cell_1" style="left:0px; top:682px; width:82px; height:23px; vertical-align:middle; ">기간</caption>
- <caption id="caption56" class="cell_1" style="left:812px; top:586px; width:82px; height:23px; vertical-align:middle; ">신직급/년차</caption>
- <caption id="caption45" class="cell_1" style="left:560px; top:634px; width:65px; height:23px; vertical-align:middle; ">직위</caption>
- <caption id="caption79" class="cell_1" style="left:560px; top:658px; width:65px; height:23px; vertical-align:middle; ">위험코드</caption>
- <caption id="caption69" class="cell_1" style="left:0px; top:586px; width:82px; height:23px; vertical-align:middle; ">발령구분</caption>
- <caption id="caption59" class="search_n_b" style="left:460px; top:541px; width:12px; height:17px; font-weight:bolder; ">~</caption>
- <caption id="caption1" class="cell_1" style="left:0px; top:610px; width:82px; height:23px; vertical-align:middle; ">발령세부구분</caption>
- <caption id="caption2" class="cell_1" visibility="hidden" style="left:954px; top:665px; width:40px; height:23px; vertical-align:middle; ">기관2</caption>
- <caption id="caption3" class="cell_1" visibility="hidden" style="left:954px; top:665px; width:40px; height:23px; vertical-align:middle; ">부서2</caption>
- <caption id="caption4" class="cell_1" visibility="hidden" style="left:954px; top:665px; width:40px; height:23px; vertical-align:middle; ">직책2</caption>
- <caption id="caption5" class="cell_1" visibility="hidden" style="left:952px; top:665px; width:42px; height:23px; vertical-align:middle; ">직위2</caption>
- <caption id="caption7" class="cell_1" style="left:812px; top:610px; width:82px; height:23px; vertical-align:middle; ">겸직유무</caption>
- <input id="ipt_gvnoffcordfromdd" ref="/root/send/gvnoffcordmast/gvnoffcordfromdd" class="input_s_essential" navindex="1" inputtype="date" style="left:294px; top:8px; width:90px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var instcd = cmb_instcd1.value;
- if( getStringLength(ipt_gvnoffcordfromdd.value) == "8" ) {
- model.removeNodeset(cmb_instcd1.attribute("ref"));
- model.makeNode("/root/send/gvnoffcordmast/instcd");
- misfComboInstCdListMulti("cmb_instcd1",ipt_gvnoffcordfromdd.value,"","N","Y");
- cmb_instcd1.value = instcd;
- model.refresh();
- }
- ]]>
- </script>
- </input>
- <input id="ipt_gvnoffcordtodd" ref="/root/send/gvnoffcordmast/gvnoffcordtodd" class="input_s_essential" navindex="2" inputtype="date" style="left:400px; top:8px; width:90px; height:19px; "/>
- <button id="btn_rowinsert_mast" class="btn2_letter3" style="left:1008px; top:38px; width:53px; height:19px; ">
- <caption>행삭제</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- if (grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row, grd_gvnoffcordmastlist.colRef("oldcnfmyn")) == "Y") {
- messageBox("발령처리된 자료 입니다. 삭제","E001");
- return;
- }
-
- misfGridIUD(grd_gvnoffcordmastlist, "D");
- misfSave("TXRPB10001");
-
- ]]>
- </script>
- </button>
- <button id="btn_excelsave_mast" class="btn2_letter4" style="left:1063px; top:38px; width:64px; height:19px; ">
- <caption>엑셀저장</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var fileName = window.fileDialog("save", ",", false, "excel", "xls", "Excel Files(*.xls)|*.xls|All Files (*.*)|*.*");
-
- if (fileName != "")
- {
- grd_gvnoffcordmastlist.saveExcel(fileName);
- }
- ]]>
- </script>
- </button>
- <datagrid id="grd_gvnoffcordmastlist" nodeset="/root/main/gvnoffcordmast/gvnoffcordmastlist" caption="발령번호^발령구분^발령세부구분^발령세부구분명^발령일자^직원구분^급여분류^확정여부^등록기관^발령내용^처리자^처리일시^기관코드^확정여부OLD|발령번호^발령구분^발령세부구분^발령세부구분명^발령일자^직원구분^급여분류^확정여부^등록기관^발령내용^처리자^처리일시^기관코드^확정여부OLD^기관코드" colsep="^" colwidth="99, 92, 61, 129, 102, 106, 111, 34, 100, 158, 86, 77, 100, 32" dataheight="25" mergecellsfixedrows="bycolrec" rowheader="update" rowheight="25" rowsep="|" style="left:0px; top:63px; width:1193px; height:203px; ">
- <col ref="gvnoffcordno"/>
- <col id="gvnoffcordflag" disabled="true" ref="gvnoffcordflag" type="combo">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </col>
- <col id="gvnoffcorddetlflag" ref="gvnoffcorddetlflag" type="inputbutton">
- <choices>
- <itemset nodeset="/root/init/grd_gvnoffcordmastlist/gvnoffcorddetl/gvnoffcorddetllist">
- <label ref="gvnoffcordflagnm"/>
- <value ref="gvnoffcorddetlflag"/>
- </itemset>
- </choices>
- </col>
- <col ref="gvnoffcordflagnm"/>
- <col ref="gvnoffcorddd" type="inputdate"/>
- <col id="holyordflag" ref="holyordflag" type="combo">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </col>
- <col id="prfshipflag" ref="prfshipflag" type="combo">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </col>
- <col checkvalue="Y,N" ref="cnfmyn" type="checkbox"/>
- <col ref="instcd" type="combo">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </col>
- <col ref="gvnoffcordcnts" type="input"/>
- <col ref="tretpsn"/>
- <col ref="tretdt"/>
- <col ref="instcd" visibility="hidden"/>
- <col ref="oldcnfmyn" visibility="hidden"/>
- <script type="javascript" ev:event="onrowchanged">
- <![CDATA[
- var cnfmyn = grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row, grd_gvnoffcordmastlist.colRef("oldcnfmyn"));
- if (cnfmyn == "Y") {
- btn_rowinsert_mast.disabled = true;
- }
- else {
- btn_rowinsert_mast.disabled = false;
- }
-
- var node = instance1.selectNodes(GVN_TARGET_NODE + "/gvnoffcorddetllist/*");
- for (var i = 0; i < node.length; i++) {
- model.setValue(GVN_TARGET_NODE + "/gvnoffcorddetllist/" + node.item(i).nodeName,"");
- }
- misfMsterDetailRetrieve();
-
- model.refresh();
- ]]>
- </script>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if (grd_gvnoffcordmastlist.colAttribute(grd_gvnoffcordmastlist.col,"ref") == "gvnoffcorddetlflag" ) { //발령세부구분
- var recv_list = "gvnoffcorddetlflag,gvnoffcordflagnm";
- var argument = grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row, grd_gvnoffcordmastlist.colRef("gvnoffcordflag"));
- rpbfGvnoValiCheck(argument, recv_list);
-
- model.refresh();
-
- if (grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row, grd_gvnoffcordmastlist.colRef("gvnoffcorddetlflag")) != "") {
- // model.setValue("/root/send/gvnoffcorddetl/gvnoffcordflag",grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row, grd_gvnoffcordmastlist.colRef("gvnoffcordflag")));
- // model.setValue("/root/send/gvnoffcorddetl/gvnoffcorddetlflag",grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row, grd_gvnoffcordmastlist.colRef("gvnoffcorddetlflag")));
- // model.refresh();
- // submit("TRRPB10002");
-
- grd_gvnoffcordmastlist.dispatch("onrowchanged");
- }
- // var gvnoffcordflag = grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row , grd_gvnoffcordmastlist.col);
- // rpbfComboGvnoffOrddetl(gvnoffcordflag, "grd_gvnoffcordmastlist");
- }
- ]]>
- </script>
- <script type="javascript" ev:event="onbuttonclick">
- <![CDATA[
- if (grd_gvnoffcordmastlist.colAttribute(grd_gvnoffcordmastlist.col,"ref") == "gvnoffcorddetlflag" ) { //발령세부구분
- var recv_list = "gvnoffcorddetlflag,gvnoffcordflagnm";
-
- rpbfOpenPopUpList("SPRPB10001", grd_gvnoffcordmastlist, recv_list,"gvnoffcordflag","N");
- model.refresh();
-
- if (grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row, grd_gvnoffcordmastlist.colRef("gvnoffcorddetlflag")) != "") {
- // model.setValue("/root/send/gvnoffcorddetl/gvnoffcordflag",grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row, grd_gvnoffcordmastlist.colRef("gvnoffcordflag")));
- // model.setValue("/root/send/gvnoffcorddetl/gvnoffcorddetlflag",grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row, grd_gvnoffcordmastlist.colRef("gvnoffcorddetlflag")));
- // model.refresh();
- //misfMsterDetailRetrieve();
- //submit("TRRPB10002");
-
- grd_gvnoffcordmastlist.dispatch("onrowchanged");
- }
- }
- ]]>
- </script>
- </datagrid>
- <button id="btn_rowinsert_detl" class="btn2_letter3" visibility="hidden" style="left:953px; top:269px; width:53px; height:19px; ">
- <caption>행추가</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- misfGridIUD(grd_gvnoffcorddetllist, "A");
- model.copyNode(GVN_TARGET_NODE + "/gvnoffcorddetllist" ,GVN_SOURCE_NODE + "/gvnoffcorddetllist[" + (grd_gvnoffcorddetllist.row - grd_gvnoffcorddetllist.fixedRows + 1) + "]" );
- rpbfGvnoffcordEditYNSet(grd_gvnoffcordcdlist.nodeset, GVN_TARGET_NODE + "/gvnoffcorddetllist");
- model.setFocus("ipt_emplno");
- model.refresh();
- ]]>
- </script>
- </button>
- <button id="btn_excelsave_detl" class="btn2_letter4" style="left:1063px; top:269px; width:64px; height:19px; ">
- <caption>엑셀저장</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var fileName = window.fileDialog("save", ",", false, "excel", "xls", "Excel Files(*.xls)|*.xls|All Files (*.*)|*.*");
-
- if (fileName != "")
- {
- grd_gvnoffcorddetllist.saveExcel(fileName);
- }
- ]]>
- </script>
- </button>
- <button id="btn_exceload" class="btn2_letter4" visibility="hidden" style="left:1129px; top:269px; width:64px; height:19px; ">
- <caption>엑셀입력</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var fileName = window.fileDialog("open", ",", false, "", "xls", "All Files (*.*)|*.*|Excel Files(*.xls)|*.xls");
- grd_gvnoffcorddetllist.loadExcel(fileName, selectValue2, true);
- grd_gvnoffcorddetllist.deleteRow(1);
- grd_gvnoffcorddetllist.refresh();
- ]]>
- </script>
- </button>
- <input id="ipt_emplno" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/emplno" class="input_default" navindex="20" visibility="hidden" style="left:84px; top:540px; width:69px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- /* 인사정보 Validation Check
- misfValidationCheck(Validation 종류(부서코드, 공통코드, 우편번호...), 공통코드군, 자료를 받을 Instance Node(콤마로 분류해서 넘기면됨)) */
- //model.refresh();
-
- // var emplno = ipt_emplno.value;
- //
- // if (grd_gvnoffcorddetllist.rowStatus(grd_gvnoffcorddetllist.row) != "1") {
- // misfGridIUD(grd_gvnoffcorddetllist, "A");
- //
- // model.copyNode(GVN_TARGET_NODE + "/gvnoffcorddetllist" ,GVN_SOURCE_NODE + "/gvnoffcorddetllist[" + (grd_gvnoffcorddetllist.row - grd_gvnoffcorddetllist.fixedRows + 1) + "]" );
- // rpbfGvnoffcordEditYNSet(grd_gvnoffcordcdlist.nodeset, GVN_TARGET_NODE + "/gvnoffcorddetllist");
- // }
- //
- // model.setValue(GVN_TARGET_NODE + "/gvnoffcorddetllist/emplno", emplno);
- //
- // model.refresh();
- //
- // var recv_list = "emplno,emplnm,holyordflag,prfshipflag,rregno1,rregno2,instcd,deptcd,deptnm,jobposcd,jobposnm,jobrespcd,jobrespnm," ;
- // recv_list = recv_list + "grupjoblncd,grupjoblnnm,joblncd,joblncnm,jobkindcd,jobkindnm,concroffcyn,ojobgradcd,ojobgradnm,njobgradcd,njobgradnm,";
- // recv_list = recv_list + "grdeupflag,retireresn,cmt,payclscd,anual,payinst,dutplceinst,dutdeptcd,dutdeptnm,dutteamcd,dutteamnm,dutunitcd,dutunitnm,teamcd,teamnm,unitcd,unitnm";
- // rpbfValidationCheck("EMPLNO", recv_list);
- //
- // if (rpbCheckEmplNo (grd_gvnoffcorddetllist, emplno) == "Y") {
- // messageBox("입력한 사원입니다. 등록","E001");
- // var node = instance1.selectNodes(GVN_TARGET_NODE + "/gvnoffcorddetllist/*");
- // for (var i = 0; i < node.length; i++) {
- // model.setValue(GVN_TARGET_NODE + "/gvnoffcorddetllist/" + node.item(i).nodeName,"");
- // }
- // model.copyNode(GVN_TARGET_NODE + "/gvnoffcorddetllist" ,GVN_SOURCE_NODE + "/gvnoffcorddetllist[" + (grd_gvnoffcorddetllist.row - grd_gvnoffcorddetllist.fixedRows + 1) + "]" );
- // }
- // model.refresh();
-
-
- ]]>
- </script>
- </input>
- <input id="ipt_emplnm" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/emplnm" class="input_default" navindex="21" visibility="hidden" style="left:180px; top:539px; width:125px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- // var emplnm = ipt_emplnm.value;
- // if (grd_gvnoffcorddetllist.rowStatus(grd_gvnoffcorddetllist.row) != "1") {
- // misfGridIUD(grd_gvnoffcorddetllist, "A");
- // model.copyNode(GVN_TARGET_NODE + "/gvnoffcorddetllist" ,GVN_SOURCE_NODE + "/gvnoffcorddetllist[" + (grd_gvnoffcorddetllist.row - grd_gvnoffcorddetllist.fixedRows + 1) + "]" );
- // rpbfGvnoffcordEditYNSet(grd_gvnoffcordcdlist.nodeset, GVN_TARGET_NODE + "/gvnoffcorddetllist");
- // }
- //
- // model.setValue(GVN_TARGET_NODE + "/gvnoffcorddetllist/emplnm", emplnm);
- //
- // /* 인사정보 Validation Check
- // misfValidationCheck(Validation 종류(부서코드, 공통코드, 우편번호...), 공통코드군, 자료를 받을 Instance Node(콤마로 분류해서 넘기면됨)) */
- // var recv_list = "emplno,emplnm,holyordflag,prfshipflag,rregno1,rregno2,instcd,deptcd,deptnm,jobposcd,jobposnm,jobrespcd,jobrespnm," ;
- // recv_list = recv_list + "grupjoblncd,grupjoblnnm,joblncd,joblncnm,jobkindcd,jobkindnm,concroffcyn,ojobgradcd,ojobgradnm,njobgradcd,njobgradnm,";
- // recv_list = recv_list + "grdeupflag,retireresn,cmt,payclscd,anual,payinst,dutplceinst,dutdeptcd,dutdeptnm,dutteamcd,dutteamnm,dutunitcd,dutunitnm,teamcd,teamnm,unitcd,unitnm";
- // rpbfValidationCheck("EMPLNM", recv_list);
- //
- // if (rpbCheckEmplNo (grd_gvnoffcorddetllist, ipt_emplno.value) == "Y") {
- // messageBox("입력한 사원입니다. 등록","E001");
- // var node = instance1.selectNodes(GVN_TARGET_NODE + "/gvnoffcorddetllist/*");
- // for (var i = 0; i < node.length; i++) {
- // model.setValue(GVN_TARGET_NODE + "/gvnoffcorddetllist/" + node.item(i).nodeName,"");
- // }
- // model.copyNode(GVN_TARGET_NODE + "/gvnoffcorddetllist" ,GVN_SOURCE_NODE + "/gvnoffcorddetllist[" + (grd_gvnoffcorddetllist.row - grd_gvnoffcorddetllist.fixedRows + 1) + "]" );
- // }
- // model.refresh();
- ]]>
- </script>
- </input>
- <input id="ipt_gvnoffcorddd" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/gvnoffcorddd" class="input_s_essential" disabled="true" navindex="22" inputtype="date" style="left:84px; top:564px; width:222px; height:19px; "/>
- <select1 id="cmb_gvnoffcordflag_s" ref="/root/send/gvnoffcordmast/gvnoffcordflag" class="combo_s_essential" navindex="3" appearance="minimal" style="left:580px; top:8px; width:100px; height:19px; ">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
-
- misfGridInit(grd_gvnoffcordmastlist);
- misfGridInit(grd_gvnoffcorddetllist);
- misfGridInit(grd_gvnoffcordcdlist);
-
- model.resetInstanceNode(GVN_TARGET_NODE);
- ipt_emplnoi.value = "";
- ipt_emplnmi.value = "";
-
- /* 발령구분 선택시 발령 세부구분 자료를 Setting,한다 */
- var gvnoffcordflag = model.getValue(cmb_gvnoffcordflag_s.attribute("ref"));
- rpbfComboGvnoffOrddetl(gvnoffcordflag, "cmb_gvnoffcorddetlflag_s");
-
- var fromdd = ipt_gvnoffcordfromdd.value;
- var todd = ipt_gvnoffcordtodd.value;
-
- if (fromdd != null && fromdd != "" && todd != null || todd != "") {
- btn_search.dispatch("DOMActivate");
- }
-
- //misfComboCopyItemSet(cmb_gvnoffcorddetlflag_s, "", grd_gvnoffcordmastlist, "gvnoffcorddetlflag");
- ]]>
- </script>
- </select1>
- <select1 id="cmb_gvnoffcorddetlflag_s" ref="/root/send/gvnoffcordmast/gvnoffcorddetlflag" class="combo_default" navindex="4" appearance="minimal" style="left:682px; top:8px; width:110px; height:19px; ">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </select1>
- <select1 id="cmb_cnfmyn_s" ref="/root/send/gvnoffcordmast/cnfmyn" class="combo_default" navindex="5" appearance="minimal" style="left:883px; top:8px; width:65px; height:19px; ">
- <choices>
- <item>
- <label>전체</label>
- <value>%</value>
- </item>
- <item>
- <label>처리</label>
- <value>Y</value>
- </item>
- <item>
- <label>미처리</label>
- <value>N</value>
- </item>
- </choices>
- </select1>
- <select1 id="cmb_gvnoffcordflag_i" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/gvnoffcordflag" class="combo_default" disabled="true" navindex="23" appearance="minimal" style="left:84px; top:588px; width:222px; height:19px; ">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </select1>
- <select1 id="cmb_gvnoffcorddetlflag_i" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/gvnoffcorddetlflag" class="combo_default" disabled="true" navindex="24" appearance="minimal" style="left:84px; top:612px; width:222px; height:19px; ">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </select1>
- <select1 id="cmb_prfshipflag_i" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/prfshipflag" class="combo_default" disabled="true" navindex="26" appearance="minimal" style="left:84px; top:660px; width:222px; height:19px; ">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </select1>
- <input id="ipt_termfromdd" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/termfromdd" class="input_s_essential" disabled="true" navindex="27" inputtype="date" style="left:84px; top:684px; width:101px; height:19px; "/>
- <input id="ipt_termtodd" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/termtodd" class="input_s_essential" disabled="true" navindex="28" inputtype="date" style="left:205px; top:684px; width:101px; height:19px; "/>
- <input id="ipt_rrgstno1" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/rregno1" class="input_essential" disabled="true" navindex="29" style="left:375px; top:540px; width:81px; height:19px; "/>
- <input id="ipt_rrgstno2" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/rregno2" class="input_essential" disabled="true" navindex="30" style="left:476px; top:540px; width:81px; height:19px; "/>
- <select1 id="cmb_instcd1" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/instcd" class="combo_default" disabled="true" navindex="31" appearance="minimal" style="left:375px; top:564px; width:182px; height:19px; ">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </select1>
- <select1 id="cmb_instcd2" class="combo_default" disabled="true" visibility="hidden" appearance="minimal" style="left:971px; top:665px; width:23px; height:19px; ">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </select1>
- <input id="ipt_deptcd" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/deptcd" class="input_default" disabled="true" navindex="32" style="left:375px; top:636px; width:69px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- /* 부서코드,명 입력시 Validation Check
- misfValidationCheck(Validation 종류(부서코드, 공통코드, 우편번호...), 공통코드군, 자료를 받을 Instance Node(콤마로 분류해서 넘기면됨)) */
- misfValidationCheck("02", "", "deptcd,deptnm" );
- model.refresh();
- ]]>
- </script>
- </input>
- <input id="ipt_deptcd2" class="input_default" disabled="true" visibility="hidden" style="left:966px; top:665px; width:28px; height:19px; "/>
- <input id="ipt_deptcdnm" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/deptnm" class="input_default" disabled="true" navindex="33" style="left:469px; top:636px; width:89px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- /* 부서코드,명 입력시 Validation Check
- misfValidationCheck(Validation 종류(부서코드, 공통코드, 우편번호...), 공통코드군, 자료를 받을 Instance Node(콤마로 분류해서 넘기면됨)) */
- misfValidationCheck("02", "", "deptcd,deptnm" );
- model.refresh();
- ]]>
- </script>
- </input>
- <input id="ipt_deptcdnm2" class="input_default" disabled="true" visibility="hidden" style="left:974px; top:665px; width:20px; height:19px; "/>
- <input id="ipt_jobposcd" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/jobposcd" class="input_default" disabled="true" navindex="44" style="left:627px; top:636px; width:64px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- misfValidationCheck("03", "R0062", "jobposcd,jobposnm" );
- model.refresh();
- ]]>
- </script>
- </input>
- <input id="ipt_jobposcd2" class="input_default" disabled="true" visibility="hidden" style="left:966px; top:665px; width:28px; height:19px; "/>
- <input id="ipt_jobposcdnm" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/jobposnm" class="input_default" disabled="true" navindex="45" style="left:715px; top:636px; width:93px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- misfValidationCheck("03", "R0062", "jobposcd,jobposnm" );
- model.refresh();
- ]]>
- </script>
- </input>
- <input id="ipt_jobposcdnm2" class="input_default" disabled="true" visibility="hidden" style="left:975px; top:665px; width:19px; height:19px; "/>
- <input id="ipt_jobrespcd" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/jobrespcd" class="input_default" disabled="true" navindex="46" style="left:897px; top:540px; width:64px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- misfValidationCheck("03", "R0063", "jobrespcd,jobrespnm" );
- model.refresh();
- ]]>
- </script>
- </input>
- <input id="ipt_jobrespcd2" class="input_default" disabled="true" visibility="hidden" style="left:971px; top:665px; width:23px; height:19px; "/>
- <input id="ipt_jobrespcdnm" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/jobrespnm" class="input_default" disabled="true" navindex="47" style="left:985px; top:540px; width:206px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- misfValidationCheck("03", "R0063", "jobrespcd,jobrespnm" );
- model.refresh();
- ]]>
- </script>
- </input>
- <input id="ipt_jobrespcdnm2" class="input_default" disabled="true" visibility="hidden" style="left:979px; top:665px; width:15px; height:19px; "/>
- <input id="ipt_grupjoblncd" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/grupjoblncd" class="input_default" disabled="true" navindex="38" visibility="hidden" style="left:947px; top:652px; width:64px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- misfValidationCheck("03", "R0059", "grupjoblncd,grupjoblnnm" );
- model.refresh();
- ]]>
- </script>
- </input>
- <input id="ipt_grupjoblncdnm" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/grupjoblnnm" class="input_default" disabled="true" navindex="39" visibility="hidden" style="left:1035px; top:652px; width:93px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- misfValidationCheck("03", "R0059", "grupjoblncd,grupjoblnnm" );
- model.refresh();
- ]]>
- </script>
- </input>
- <input id="ipt_joblncd" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/joblncd" class="input_default" disabled="true" navindex="40" style="left:627px; top:660px; width:64px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- misfValidationCheck("03", "R0060", "joblncd,joblnnm" );
- model.refresh();
- ]]>
- </script>
- </input>
- <input id="ipt_joblncdnm" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/joblnnm" class="input_default" disabled="true" navindex="41" style="left:715px; top:660px; width:93px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- misfValidationCheck("03", "R0060", "joblncd,joblnnm" );
- model.refresh();
- ]]>
- </script>
- </input>
- <input id="ipt_jobkindcd" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/jobkindcd" class="input_default" disabled="true" navindex="42" style="left:627px; top:612px; width:64px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- misfValidationCheck("03", "R0061", "jobkindcd,jobkindnm" );
- model.refresh();
- ]]>
- </script>
- </input>
- <input id="ipt_jobkindcdnm" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/jobkindnm" class="input_default" disabled="true" navindex="43" style="left:715px; top:612px; width:93px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- misfValidationCheck("03", "R0061", "jobkindcd,jobkindnm" );
- model.refresh();
- ]]>
- </script>
- </input>
- <select1 id="rdo_concroffcyn" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/concroffcyn" class="radio_search" disabled="true" navindex="54" overflow="visible" appearance="full" cols="2" itemheight="18" itemwidth="53" style="left:897px; top:611px; width:90px; height:19px; text-align:center; border-style:solid; ">
- <choices>
- <item>
- <label>Yes</label>
- <value>Y</value>
- </item>
- <item>
- <label>No</label>
- <value>N</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- rdo_delyncd.select(rdo_delyn.focusIndex);
- ]]>
- </script>
- </select1>
- <input id="ipt_ojobgradcd" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/ojobgradcd" class="input_default" disabled="true" navindex="48" style="left:897px; top:564px; width:64px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- misfValidationCheck("03", "R0064", "ojobgradcd,ojobgradnm" );
- model.refresh();
- ]]>
- </script>
- </input>
- <input id="ipt_ojobgradcdnm" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/ojobgradnm" class="input_default" disabled="true" navindex="49" style="left:985px; top:564px; width:105px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- misfValidationCheck("03", "R0064", "ojobgradcd,ojobgradnm" );
- model.refresh();
- ]]>
- </script>
- </input>
- <input id="ipt_njobgradcd" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/njobgradcd" class="input_default" disabled="true" navindex="50" style="left:897px; top:588px; width:64px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- misfValidationCheck("03", "R0064", "njobgradcd,njobgradnm" );
- model.refresh();
- ]]>
- </script>
- </input>
- <input id="ipt_njobgradcdnm" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/njobgradnm" class="input_default" disabled="true" navindex="51" style="left:985px; top:588px; width:105px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- misfValidationCheck("03", "R0064", "njobgradcd,njobgradnm" );
- model.refresh();
- ]]>
- </script>
- </input>
- <input id="ipt_anual" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/anual" class="input_default" disabled="true" navindex="53" style="left:1093px; top:588px; width:98px; height:19px; "/>
- <select1 id="rdo_grdeupflag" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/gradupmm" class="radio_search" disabled="true" navindex="55" overflow="visible" appearance="full" cols="2" itemheight="18" itemwidth="43" style="left:1093px; top:611px; width:90px; height:19px; text-align:center; border-style:solid; ">
- <choices>
- <item>
- <label>1월</label>
- <value>01</value>
- </item>
- <item>
- <label>7월</label>
- <value>07</value>
- </item>
- </choices>
- </select1>
- <select1 id="cmb_retireresn" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/retireresn" class="combo_default" disabled="true" navindex="56" appearance="minimal" style="left:1093px; top:636px; width:98px; height:19px; ">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </select1>
- <textarea id="tra_cmt" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/cmt" navindex="57" style="left:897px; top:658px; width:293px; height:43px; "/>
- <button id="btn_deptcdhelp" class="icon_search" disabled="true" style="left:448px; top:635px; width:16px; height:16px; ">
- <caption/>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var recv_list = "deptcd,deptnm";
- var instcd = cmb_instcd1.value;
- rpbfOpenDeptCdHelp(ipt_deptcd,recv_list,instcd,"instcd");
- model.refresh();
- ]]>
- </script>
- </button>
- <button id="btn_deptcdhelp2" class="icon_search" disabled="true" visibility="hidden" style="left:978px; top:665px; width:16px; height:16px; ">
- <caption/>
- </button>
- <button id="btn_jobposcdhelp" class="icon_search" disabled="true" style="left:695px; top:638px; width:16px; height:16px; ">
- <caption/>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var recv_list = "jobposcd,jobposnm";
- rpbfOpenComCdHelp(ipt_jobposcd,"R0062", recv_list);
- model.refresh();
- ]]>
- </script>
- </button>
- <button id="btn_jobposcdhelp2" class="icon_search" disabled="true" visibility="hidden" style="left:978px; top:665px; width:16px; height:16px; ">
- <caption/>
- </button>
- <button id="btn_jobrespcdhelp" class="icon_search" disabled="true" style="left:964px; top:542px; width:16px; height:16px; ">
- <caption/>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var recv_list = "jobrespcd,jobrespnm";
- rpbfOpenComCdHelp(ipt_jobrespcd,"R0063", recv_list);
- model.refresh();
- ]]>
- </script>
- </button>
- <button id="btn_jobrespcdhelp2" class="icon_search" disabled="true" visibility="hidden" style="left:978px; top:665px; width:16px; height:16px; ">
- <caption/>
- </button>
- <button id="btn_grupjoblncdhelp" class="icon_search" disabled="true" visibility="hidden" style="left:1015px; top:654px; width:16px; height:16px; ">
- <caption/>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var recv_list = "grupjoblncd,grupjoblnnm";
- rpbfOpenComCdHelp(ipt_grupjoblncd,"R0059", recv_list);
- model.refresh();
- ]]>
- </script>
- </button>
- <button id="btn_joblncdhelp" class="icon_search" disabled="true" style="left:695px; top:659px; width:16px; height:16px; ">
- <caption/>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var recv_list = "joblncd,joblnnm";
- rpbfOpenComCdHelp(ipt_joblncd,"R0060", recv_list);
- model.refresh();
- ]]>
- </script>
- </button>
- <button id="btn_jobkindcdhelp" class="icon_search" disabled="true" style="left:695px; top:614px; width:16px; height:16px; ">
- <caption/>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var recv_list = "jobkindcd,jobkindnm";
- rpbfOpenComCdHelp(ipt_jobkindcd,"R0061", recv_list);
- model.refresh();
- ]]>
- </script>
- </button>
- <button id="btn_ojobgradcdhelp" class="icon_search" disabled="true" style="left:964px; top:567px; width:16px; height:16px; ">
- <caption/>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var recv_list = "ojobgradcd,ojobgradnm";
- rpbfOpenComCdHelp(ipt_ojobgradcd,"R0064", recv_list);
- model.refresh();
- ]]>
- </script>
- </button>
- <button id="btn_njobgradcdhelp" class="icon_search" disabled="true" style="left:964px; top:591px; width:16px; height:16px; ">
- <caption/>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var recv_list = "njobgradcd,njobgradnm";
- rpbfOpenComCdHelp(ipt_njobgradcd,"R0064", recv_list);
- model.refresh();
- ]]>
- </script>
- </button>
- <select1 id="cmb_prfshipflag_s" ref="/root/send/gvnoffcordmast/prfshipflag" class="combo_default" navindex="7" appearance="minimal" style="left:1038px; top:8px; width:85px; height:19px; ">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </select1>
- <button id="button1" class="btn2_letter3" style="left:953px; top:38px; width:53px; height:19px; ">
- <caption>행추가</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- misfGridIUD(grd_gvnoffcordmastlist, "A");
-
- grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row, grd_gvnoffcordmastlist.colRef("holyordflag")) = "1";
- grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row, grd_gvnoffcordmastlist.colRef("prfshipflag")) = "41";
-
- if (cmb_gvnoffcorddetlflag_s.value != "") {
- grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row, grd_gvnoffcordmastlist.colRef("gvnoffcordflagnm")) = cmb_gvnoffcorddetlflag_s.label;
- grd_gvnoffcordmastlist.dispatch("onrowchanged");
- }
-
- ]]>
- </script>
- </button>
- <caption id="caption8" class="search_name" visibility="hidden" style="left:788px; top:9px; width:86px; height:17px; ">성직구분 :</caption>
- <select1 id="cmb_holyordflag_i" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/holyordflag" class="combo_default" disabled="true" navindex="25" appearance="minimal" style="left:84px; top:636px; width:222px; height:19px; ">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </select1>
- <caption id="caption9" class="cell_1" style="left:0px; top:634px; width:82px; height:23px; vertical-align:middle; ">직원구분</caption>
- <button id="btn_grddelgvnoffcorddetllist" class="btn2_letter3" style="left:1008px; top:269px; width:53px; height:19px; ">
- <caption>행삭제</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
-
- if (grd_gvnoffcorddetllist.valueMatrix(grd_gvnoffcorddetllist.row, grd_gvnoffcorddetllist.colRef("oldtretyn")) == "Y") {
- messageBox("인사 마스터에 반영이 되어서 삭제 ", "E001");
- return;
- }
-
-
- // var noderow = grd_gvnoffcorddetllist.row - grd_gvnoffcorddetllist.fixedRows + 1;
- // var colno = grd_gvnoffcorddetllist.colRef("oldtretyn");
- // var colref = grd_gvnoffcorddetllist.colAttribute(colno, "ref");
- // if (model.getValue(grd_gvnoffcorddetllist.nodeset + "[" + noderow + "]/" + colref) == "Y") {
- // messageBox("인사 마스터에 반영이 되어서 삭제 ", "E001");
- // return;
- // }
-
-
- misfGridIUD(grd_gvnoffcorddetllist, "D");
-
- rpbNodeDeleteTret(grd_gvnoffcorddetllist, GVN_TARGET_NODE + "/gvnoffcorddetllist");
-
- ipt_emplnoi.value = "";
- ipt_emplnmi.value = "";
-
- model.refresh();
-
- misfSave("TXRPB10001");
- // model.copyNode(GVN_TARGET_NODE,GVN_SOURCE_NODE + "[" + (grd_gvnoffcorddetllist.row - grd_gvnoffcorddetllist.fixedRows + 1) + "]" );
- //
- // model.setFocus("ipt_emplno");
- // model.refresh();
- ]]>
- </script>
- </button>
- <button id="btn_savedetl" class="btn5_letter2" style="left:1151px; top:511px; width:42px; height:19px; ">
- <caption>저장</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
-
- //유닛코드가 바뀌면 근무지 부서코드도 바뀐다.
- //rpbfDutPlceDeptCdSet();
-
- if(!isRequiredControls("cmb_prfshipflag_i") )return false;
-
- var unitcd = model.getValue(ipt_dutunitcd.attribute("ref"));
- var oldunitcd = model.getValue(ipt_olddutunitcd.attribute("ref"));
-
-
- if (unitcd != oldunitcd) {
- model.setValue(ipt_dutplcedeptcd.attribute("ref"), unitcd);
- ipt_dutplcedeptcd.refresh();
- }
- btn_save.dispatch("DOMActivate");
- ]]>
- </script>
- </button>
- <button id="btn_appgrid" class="btn2_letter2" visibility="hidden" style="left:1041px; top:511px; width:42px; height:19px; ">
- <caption>적용</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- misfGridRowStatusChange(grd_gvnoffcorddetllist, GVN_SOURCE_NODE, GVN_TARGET_NODE);
- model.refresh();
- ]]>
- </script>
- </button>
- <button id="btn_gvnoffcordtret" class="btn5_letter6" style="left:865px; top:38px; width:86px; height:19px; ">
- <caption>일괄발령처리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var submit_node = model.children("TXRPB10002").attribute("ref")
-
- if ( messageBox("발령 처리", "S001") == "6") {
- model.setValue(submit_node + "/gvnoffcordmastlist" , grd_gvnoffcordmastlist.getUpdateData());
-
- submit("TXRPB10002");
-
- grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row, grd_gvnoffcordmastlist.colRef("oldcnfmyn")) = grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row, grd_gvnoffcordmastlist.colRef("cnfmyn"));
-
- for (var i = grd_gvnoffcorddetllist.fixedRows; i < grd_gvnoffcorddetllist.rows; i++ ) {
- grd_gvnoffcorddetllist.valueMatrix(i, grd_gvnoffcorddetllist.colRef("oldtretyn")) = grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row, grd_gvnoffcordmastlist.colRef("cnfmyn"));
- grd_gvnoffcorddetllist.valueMatrix(i, grd_gvnoffcorddetllist.colRef("tretyn")) = grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row, grd_gvnoffcordmastlist.colRef("cnfmyn"));
- }
-
- rpbfGridClearStatus(grd_gvnoffcordmastlist);
- btn_save.dispatch("DOMActivate");
- }
- ]]>
- </script>
- </button>
- <button id="btn_gvnoffcorddetltret" class="btn5_letter6" style="left:865px; top:269px; width:86px; height:19px; ">
- <caption>개인발령처리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var submit_node = model.children("TXRPB10003").attribute("ref")
-
- if ( messageBox("발령 처리", "S001") == "6") {
- model.setValue(submit_node + "/gvnoffcorddetllist" , grd_gvnoffcorddetllist.getUpdateData());
-
- submit("TXRPB10003");
-
- for (var i = grd_gvnoffcorddetllist.fixedRows; i < grd_gvnoffcorddetllist.rows; i++ ) {
- grd_gvnoffcorddetllist.valueMatrix(i, grd_gvnoffcorddetllist.colRef("oldtretyn")) = grd_gvnoffcorddetllist.valueMatrix(i, grd_gvnoffcorddetllist.colRef("tretyn"));
- }
-
- rpbfGridClearStatus(grd_gvnoffcorddetllist);
-
- btn_save.dispatch("DOMActivate");
- }
- ]]>
- </script>
- </button>
- <button id="button5" class="btn2_letter4" style="left:1129px; top:38px; width:64px; height:19px; ">
- <caption>엑셀입력</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var fileName = window.fileDialog("open", ",", false, "", "xls", "All Files (*.*)|*.*|Excel Files(*.xls)|*.xls");
- grd_gvnoffcorddetllist.loadExcel(fileName, selectValue2, true);
- grd_gvnoffcorddetllist.deleteRow(1);
- grd_gvnoffcorddetllist.refresh();
- ]]>
- </script>
- </button>
- <caption id="caption10" class="cell_1" style="left:308px; top:658px; width:65px; height:23px; vertical-align:middle; ">과(팀)</caption>
- <input id="ipt_teamnm" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/teamnm" class="input_default" disabled="true" navindex="35" style="left:469px; top:660px; width:89px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- /* 부서코드,명 입력시 Validation Check
- misfValidationCheck(Validation 종류(부서코드, 공통코드, 우편번호...), 공통코드군, 자료를 받을 Instance Node(콤마로 분류해서 넘기면됨)) */
- misfValidationCheck("02", "", "teamcd,teamnm" ,cmb_instcd1.value,"instcd","", cmb_instcd1.value);
- deptsetting("N");
- model.refresh();
- ]]>
- </script>
- </input>
- <input id="ipt_teamcd" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/teamcd" class="input_default" disabled="true" navindex="34" style="left:375px; top:660px; width:69px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- /* 부서코드,명 입력시 Validation Check
- misfValidationCheck(Validation 종류(부서코드, 공통코드, 우편번호...), 공통코드군, 자료를 받을 Instance Node(콤마로 분류해서 넘기면됨)) */
- misfValidationCheck("02", "", "teamcd,teamnm" ,cmb_instcd1.value,"instcd","", cmb_instcd1.value);
- deptsetting("N");
- model.refresh();
- ]]>
- </script>
- </input>
- <button id="btn_teamcdhelp" class="icon_search" disabled="true" style="left:448px; top:659px; width:16px; height:16px; ">
- <caption/>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var recv_list = "teamcd,teamnm";
- var instcd = cmb_instcd1.value;
- rpbfOpenDeptCdHelp(ipt_teamcd,recv_list,instcd,"instcd");
-
- deptsetting("N");
-
- model.refresh();
- ]]>
- </script>
- </button>
- <button id="btn_unitcdhelp" class="icon_search" disabled="true" style="left:448px; top:683px; width:16px; height:16px; ">
- <caption/>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var recv_list = "unitcd,unitnm";
- var instcd = cmb_instcd1.value;
- rpbfOpenDeptCdHelp(ipt_unitcd,recv_list,instcd,"instcd");
- deptsetting("Y");
- model.refresh();
- ]]>
- </script>
- </button>
- <caption id="caption11" class="cell_1" style="left:308px; top:682px; width:65px; height:23px; vertical-align:middle; ">부서</caption>
- <input id="ipt_unitnm" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/unitnm" class="input_default" disabled="true" navindex="37" style="left:469px; top:684px; width:89px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- /* 부서코드,명 입력시 Validation Check
- misfValidationCheck(Validation 종류(부서코드, 공통코드, 우편번호...), 공통코드군, 자료를 받을 Instance Node(콤마로 분류해서 넘기면됨)) */
- misfValidationCheck("02", "", "unitcd,unitnm" ,cmb_instcd1.value,"instcd","", cmb_instcd1.value);
- deptsetting("Y");
- model.refresh();
- ]]>
- </script>
- </input>
- <input id="ipt_unitcd" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/unitcd" class="input_default" disabled="true" navindex="36" style="left:375px; top:684px; width:69px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- /* 부서코드,명 입력시 Validation Check
- misfValidationCheck(Validation 종류(부서코드, 공통코드, 우편번호...), 공통코드군, 자료를 받을 Instance Node(콤마로 분류해서 넘기면됨)) */
- misfValidationCheck("02", "", "unitcd,unitnm" ,cmb_instcd1.value,"instcd","", cmb_instcd1.value);
- deptsetting("Y");
-
- model.refresh();
- ]]>
- </script>
- </input>
- <datagrid id="grd_gvnoffcordcdlist" nodeset="/root/main/gvnoffcorddetl/gvnoffcordcdlist" visibility="hidden" caption="발령세부구분^기관^현상태^부서^팀^유닛^근무지기관^근무지부서^성직구분^교직구분^직군^직렬^직종^직책^직위^구직급^신직급^호봉^년차^시작일자^종료일자^입사일자^퇴사일자^CMC입사일^수습일자^최초임용일^승급월^퇴직사유^발령구분^성명^주민번호^caption1^caption2|발령세부구분^기관^현상태^부서^팀^유닛^근무지기관^근무지부서^성직구분^교직구분^직군^직렬^직종^직책^직위^구직급^신직급^호봉^년차^시작일자^종료일자^입사일자^퇴사일자^CMC입사일^수습일자^최초임용일^승급월^퇴직사유^발령구분^성명^주민번호^caption1^caption2" colsep="^" colwidth="79, 24, 32, 25, 23, 23, 46, 40, 40, 37, 25, 22, 23, 23, 20, 30, 31, 24, 24, 30, 32, 31, 31, 33, 31, 31, 30, 33, 27, 36, 34, 39, 32" mergecellsfixedrows="bycolrec" rowheader="update" rowsep="|" style="left:0px; top:150px; width:1193px; height:90px; ">
- <col ref="gvnoffcorddetlflag" type="output" _key="true"/>
- <col ref="instcdyn" type="output"/>
- <col ref="preststatcdyn" type="output"/>
- <col ref="deptcdyn" type="output"/>
- <col ref="teamcdyn" type="output"/>
- <col ref="unitcdyn" type="output"/>
- <col ref="dutplceinstcdyn" type="output"/>
- <col ref="dutplcedeptcdyn" type="output"/>
- <col ref="holyordflagyn" type="output"/>
- <col ref="prfshipflagyn" type="output"/>
- <col ref="grupjoblncdyn" type="output"/>
- <col ref="joblncdyn" type="output" style="left:550px; top:43px; width:22px; height:23px; "/>
- <col ref="jobkindcdyn" type="output"/>
- <col ref="jobrespcdyn" type="output"/>
- <col ref="jobposcdyn" type="output"/>
- <col ref="ojobgradcdyn" type="output"/>
- <col ref="njobgradcdyn" type="output"/>
- <col ref="payclscdyn" type="output"/>
- <col ref="anualyn" type="output"/>
- <col ref="termfromddyn" type="output"/>
- <col ref="termtoddyn" type="output"/>
- <col ref="entcoddyn" type="output"/>
- <col ref="retireddyn" type="output"/>
- <col ref="cmcentcoddyn" type="output"/>
- <col ref="probatnddyn" type="output"/>
- <col ref="fstappntddyn" type="output"/>
- <col ref="gradupmmyn" type="output"/>
- <col ref="retireresnyn" type="output"/>
- <col ref="gvnoffcordflag" visibility="visible"/>
- <col ref="nameyn" type="output"/>
- <col ref="rregnoyn" type="output"/>
- <col ref="payclsprfshipflagyn" type="output"/>
- <col ref="educdyn" type="output"/>
- </datagrid>
- <input id="ipt_dutplcedeptcd" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/dutplcedeptcd" class="input_default" disabled="true" visibility="hidden" style="left:965px; top:660px; width:14px; height:19px; "/>
- <caption id="caption13" class="cell_1" style="left:308px; top:586px; width:65px; height:23px; text-align:left; vertical-align:middle; ">근무기관</caption>
- <select1 id="cmb_dutplceinst" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/dutplceinst" class="combo_default" disabled="true" navindex="31" appearance="minimal" style="left:375px; top:588px; width:182px; height:19px; ">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </select1>
- <select1 id="cmb_payinst" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/payinst" class="combo_default" disabled="true" navindex="31" appearance="minimal" style="left:375px; top:612px; width:182px; height:19px; ">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </select1>
- <caption id="caption14" class="cell_1" style="left:308px; top:610px; width:65px; height:23px; text-align:left; vertical-align:middle; ">급여기관</caption>
- <input id="ipt_dutteamnm" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/dutteamnm" class="input_default" disabled="true" navindex="35" style="left:715px; top:564px; width:93px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- /* 부서코드,명 입력시 Validation Check
- misfValidationCheck(Validation 종류(부서코드, 공통코드, 우편번호...), 공통코드군, 자료를 받을 Instance Node(콤마로 분류해서 넘기면됨)) */
- misfValidationCheck("02", "", "dutteamcd,dutteamnm" ,cmb_dutplceinst.value,"instcd","", cmb_dutplceinst.value);
- dutdeptsetting("N");
- model.refresh();
- ]]>
- </script>
- </input>
- <input id="ipt_dutdeptnm" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/dutdeptnm" class="input_default" disabled="true" navindex="33" style="left:715px; top:540px; width:93px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- /* 부서코드,명 입력시 Validation Check
- misfValidationCheck(Validation 종류(부서코드, 공통코드, 우편번호...), 공통코드군, 자료를 받을 Instance Node(콤마로 분류해서 넘기면됨)) */
- misfValidationCheck("02", "", "dutdeptcd,dutdeptnm" );
- model.refresh();
- ]]>
- </script>
- </input>
- <input id="ipt_dutteamcd" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/dutteamcd" class="input_default" disabled="true" navindex="34" style="left:627px; top:564px; width:64px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- /* 부서코드,명 입력시 Validation Check
- misfValidationCheck(Validation 종류(부서코드, 공통코드, 우편번호...), 공통코드군, 자료를 받을 Instance Node(콤마로 분류해서 넘기면됨)) */
- misfValidationCheck("02", "", "dutteamcd,dutteamnm" ,cmb_dutplceinst.value,"instcd","", cmb_dutplceinst.value);
- dutdeptsetting("N");
- model.refresh();
- ]]>
- </script>
- </input>
- <button id="btn_dutteamcd" class="icon_search" disabled="true" style="left:695px; top:566px; width:16px; height:16px; ">
- <caption/>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var recv_list = "dutteamcd,dutteamnm";
- var instcd = cmb_dutplceinst.value;
- rpbfOpenDeptCdHelp(ipt_dutteamcd,recv_list,instcd,"instcd");
- dutdeptsetting("N");
- model.refresh();
- ]]>
- </script>
- </button>
- <button id="btn_dutdeptcd" class="icon_search" disabled="true" style="left:695px; top:542px; width:16px; height:16px; ">
- <caption/>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var recv_list = "dutdeptcd,dutdeptnm";
- var instcd = cmb_dutplceinst.value;
- rpbfOpenDeptCdHelp(ipt_dutdeptcd,recv_list,instcd,"instcd");
- model.refresh();
- ]]>
- </script>
- </button>
- <caption id="caption12" class="cell_1" style="left:560px; top:538px; width:65px; height:23px; vertical-align:middle; ">근무부(실)</caption>
- <caption id="caption15" class="cell_1" style="left:560px; top:562px; width:65px; height:23px; vertical-align:middle; ">근무과(팀)</caption>
- <caption id="caption16" class="cell_1" style="left:560px; top:586px; width:65px; height:23px; vertical-align:middle; ">근무부서</caption>
- <input id="ipt_dutunitnm" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/dutunitnm" class="input_default" disabled="true" navindex="37" style="left:715px; top:588px; width:93px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- /* 부서코드,명 입력시 Validation Check
- misfValidationCheck(Validation 종류(부서코드, 공통코드, 우편번호...), 공통코드군, 자료를 받을 Instance Node(콤마로 분류해서 넘기면됨)) */
- misfValidationCheck("02", "", "dutunitcd,dutunitnm" ,cmb_dutplceinst.value,"instcd","", cmb_dutplceinst.value);
- dutdeptsetting("Y");
-
- //유닛코드가 바뀌면 근무지 부서코드도 바뀐다.
- //rpbfDutPlceDeptCdSet();
-
- model.refresh();
- ]]>
- </script>
- </input>
- <input id="ipt_dutunitcd" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/dutunitcd" class="input_default" disabled="true" navindex="36" style="left:627px; top:588px; width:64px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- /* 부서코드,명 입력시 Validation Check
- misfValidationCheck(Validation 종류(부서코드, 공통코드, 우편번호...), 공통코드군, 자료를 받을 Instance Node(콤마로 분류해서 넘기면됨)) */
- misfValidationCheck("02", "", "dutunitcd,dutunitnm" ,cmb_dutplceinst.value,"instcd","", cmb_dutplceinst.value);
- dutdeptsetting("Y");
-
- //유닛코드가 바뀌면 근무지 부서코드도 바뀐다.
- //rpbfDutPlceDeptCdSet();
- model.refresh();
- ]]>
- </script>
- </input>
- <input id="ipt_dutdeptcd" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/dutdeptcd" class="input_default" disabled="true" navindex="32" style="left:627px; top:540px; width:64px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- /* 부서코드,명 입력시 Validation Check
- misfValidationCheck(Validation 종류(부서코드, 공통코드, 우편번호...), 공통코드군, 자료를 받을 Instance Node(콤마로 분류해서 넘기면됨)) */
- misfValidationCheck("02", "", "dutdeptcd,dutdeptnm" );
- model.refresh();
- ]]>
- </script>
- </input>
- <button id="btn_dutunitcd" class="icon_search" disabled="true" style="left:695px; top:590px; width:16px; height:16px; ">
- <caption/>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var recv_list = "dutunitcd,dutunitnm";
- var instcd = cmb_dutplceinst.value;
- rpbfOpenDeptCdHelp(ipt_dutunitcd,recv_list,instcd,"instcd");
- dutdeptsetting("Y");
-
- //유닛코드가 바뀌면 근무지 부서코드도 바뀐다.
- //rpbfDutPlceDeptCdSet();
- model.refresh();
- ]]>
- </script>
- </button>
- <select1 id="cmb_payclscd" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/payclscd" class="combo_default" disabled="false" navindex="31" appearance="minimal" style="left:1093px; top:564px; width:98px; height:19px; ">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </select1>
- <input id="ipt_emplnoi" ref="/root/init/emplinfo/emplno" class="input_default" navindex="20" style="left:84px; top:540px; width:72px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- /* 인사정보 Validation Check
- misfValidationCheck(Validation 종류(부서코드, 공통코드, 우편번호...), 공통코드군, 자료를 받을 Instance Node(콤마로 분류해서 넘기면됨)) */
- //model.refresh();
- var gvnoffcorddd = grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row, grd_gvnoffcordmastlist.colRef("gvnoffcorddd"));
- var gvnoffcordflag = grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row, grd_gvnoffcordmastlist.colRef("gvnoffcordflag"));
- var gvnoffcorddetlflag = grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row, grd_gvnoffcordmastlist.colRef("gvnoffcorddetlflag"));
- var prfshipflag = grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row, grd_gvnoffcordmastlist.colRef("prfshipflag"));
- var holyordflag = grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row, grd_gvnoffcordmastlist.colRef("holyordflag"));
-
- if (gvnoffcorddd == null || gvnoffcorddd == "") {
- messageBox("발령 일자가 없습니다. 등록","E001");
- return;
- }
-
- if (gvnoffcordflag == null || gvnoffcordflag == "") {
- messageBox("발령 구분이 없습니다. 등록","E001");
- return;
- }
-
- if (gvnoffcorddetlflag == null || gvnoffcorddetlflag == "") {
- messageBox("발령 세부 구분이 없습니다. 등록","E001");
- return;
- }
-
- if (prfshipflag == null || prfshipflag == "") {
- messageBox("교직 구분이 없습니다. 등록","E001");
- return;
- }
-
- if (holyordflag == null || holyordflag == "") {
- messageBox("성직 구분이 없습니다. 등록","E001");
- return;
- }
-
- var emplno = ipt_emplnoi.value;
- var emplnm = ipt_emplnmi.value;
-
- if (grd_gvnoffcorddetllist.rowStatus(grd_gvnoffcorddetllist.row) != "1") {
- misfGridIUD(grd_gvnoffcorddetllist, "A");
-
- model.copyNode(GVN_TARGET_NODE + "/gvnoffcorddetllist" ,GVN_SOURCE_NODE + "/gvnoffcorddetllist[" + (grd_gvnoffcorddetllist.row - grd_gvnoffcorddetllist.fixedRows + 1) + "]" );
- rpbfGvnoffcordEditYNSet(grd_gvnoffcordcdlist.nodeset, GVN_TARGET_NODE + "/gvnoffcorddetllist");
- }
-
- model.setValue(GVN_TARGET_NODE + "/gvnoffcorddetllist/emplno", emplno);
- model.setValue(GVN_TARGET_NODE + "/gvnoffcorddetllist/emplnm", emplnm);
- ipt_emplnoi.attribute("ref") = "/root/main/gvnoffcorddetldata/gvnoffcorddetllist/emplno";
- model.refresh();
-
- var recv_list = "emplno,emplnm,holyordflag,prfshipflag,rregno1,rregno2,instcd,deptcd,deptnm,jobposcd,jobposnm,jobrespcd,jobrespnm," ;
- recv_list = recv_list + "grupjoblncd,grupjoblnnm,joblncd,joblnnm,jobkindcd,jobkindnm,concroffcyn,ojobgradcd,ojobgradnm,njobgradcd,njobgradnm,";
- recv_list = recv_list + "grdeupflag,retireresn,cmt,payclscd,anual,payinst,dutplceinst,dutdeptcd,dutdeptnm,dutteamcd,dutteamnm,dutunitcd,dutunitnm,teamcd,teamnm,unitcd,unitnm,";
- recv_list = recv_list + "orginstcd,orgdeptcd,orgdetlinst,orgteamcd,orgunitcd,gradupmm";
-
- rpbfValidationCheck("EMPLNO", recv_list);
-
- model.refresh();
-
- if (rpbCheckEmplNo (grd_gvnoffcorddetllist, emplno) == "Y" ||
- (gvnoffcorddetlflag != "020" && gvnoffcorddetlflag != "065" && prfshipflag != cmb_prfshipflag_i.value) ||
- (gvnoffcorddetlflag != "020" && gvnoffcorddetlflag != "065" && holyordflag != cmb_holyordflag_i.value) ) {
-
- if (prfshipflag != cmb_prfshipflag_i.value) {
- messageBox("Master쪽 교직구분하고 일치 하지 않습니다. 등록","E001");
- }
- else if (holyordflag != cmb_holyordflag_i.value) {
- messageBox("Master쪽 성직구분하고 일치 하지 않습니다. 등록","E001");
- }
- else {
- messageBox("입력한 사원입니다. 등록","E001");
- }
- var node = instance1.selectNodes(GVN_TARGET_NODE + "/gvnoffcorddetllist/*");
- for (var i = 0; i < node.length; i++) {
- model.setValue(GVN_TARGET_NODE + "/gvnoffcorddetllist/" + node.item(i).nodeName,"");
- }
- model.copyNode(GVN_TARGET_NODE + "/gvnoffcorddetllist" ,GVN_SOURCE_NODE + "/gvnoffcorddetllist[" + (grd_gvnoffcorddetllist.row - grd_gvnoffcorddetllist.fixedRows + 1) + "]" );
-
- model.refresh();
- return;
- }
- else {
- if (gvnoffcorddetlflag == "024" || gvnoffcorddetlflag == "008" ) { //겸직, 보임일경우 겸직유무 Setting
- if (gvnoffcorddetlflag == "024"){
- model.setValue(rdo_concroffcyn.attribute("ref"), "Y");
- }
- else if ((prfshipflag == "11" || prfshipflag == "21") && gvnoffcorddetlflag == "008") {
- model.setValue("/root/send/concroffcord/emplno", emplno);
- submit("TRRPB10004");
-
- if (grd_concroffcordlist.rows > 0) {
- model.setValue(rdo_concroffcyn.attribute("ref"), "Y");
- }
- else {
- model.setValue(rdo_concroffcyn.attribute("ref"), "N");
- }
-
- }
- else {
- model.setValue(rdo_concroffcyn.attribute("ref"), "N");
- }
- }
- else {
- model.setValue(rdo_concroffcyn.attribute("ref"), "N");
- }
-
- if (gvnoffcorddetlflag == "025" || gvnoffcorddetlflag == "015" || gvnoffcorddetlflag == "040") { //겸직해임, 보직해임일경우 겸직발령내역 조회
- model.setValue("/root/send/concroffcord/emplno", emplno);
- submit("TRRPB10004");
-
- if (grd_concroffcordlist.rows > 0) {
- grd_concroffcordlist.attribute("visibility") = "visible";
- }
- }
-
- btn_savedetl.disabled = false;
- btn_save.disabled = false;
- }
-
- ipt_emplnoi.attribute("ref") = "/root/init/emplinfo/emplno";
- model.setValue(ipt_emplnmi.attribute("ref"), model.getValue(ipt_emplnm.attribute("ref")));
- model.setValue(ipt_termfromdd.attribute("ref"), model.getValue(ipt_gvnoffcorddd.attribute("ref")));
- model.setValue(ipt_termtodd.attribute("ref"), "");
-
- var prfshipflag = grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row, grd_gvnoffcordmastlist.colRef("prfshipflag"));
- var holyordflag = grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row, grd_gvnoffcordmastlist.colRef("holyordflag"));
- cmb_prfshipflag_i.value = prfshipflag;
- cmb_holyordflag_i.value = holyordflag;
-
- cmb_holyordflag_i.disabled = true;
- cmb_prfshipflag_i.disabled = true;
-
- if (cmb_prfshipflag_i.value == "51") {
- rdo_grdeupflag.value = "";
- rdo_grdeupflag.disabled = true;
- }
-
-
- model.refresh();
-
-
- ]]>
- </script>
- </input>
- <input id="ipt_emplnmi" ref="/root/init/emplinfo/emplnm" class="input_default" disabled="true" navindex="21" style="left:180px; top:539px; width:126px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- ipt_emplnm.value = ipt_emplnmi.value;
- ipt_emplnm.refresh();
- // var gvnoffcorddd = grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row, grd_gvnoffcordmastlist.colRef("gvnoffcorddd"));
- // var gvnoffcordflag = grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row, grd_gvnoffcordmastlist.colRef("gvnoffcordflag"));
- // var gvnoffcorddetlflag = grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row, grd_gvnoffcordmastlist.colRef("gvnoffcorddetlflag"));
- // var prfshipflag = grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row, grd_gvnoffcordmastlist.colRef("prfshipflag"));
- // var holyordflag = grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row, grd_gvnoffcordmastlist.colRef("holyordflag"));
- //
- // if (gvnoffcorddd == null || gvnoffcorddd == "") {
- // messageBox("발령 일자가 없습니다. 등록","E001");
- // return;
- // }
- //
- // if (gvnoffcordflag == null || gvnoffcordflag == "") {
- // messageBox("발령 구분이 없습니다. 등록","E001");
- // return;
- // }
- //
- // if (gvnoffcorddetlflag == null || gvnoffcorddetlflag == "") {
- // messageBox("발령 세부 구분이 없습니다. 등록","E001");
- // return;
- // }
- //
- //
- // if (prfshipflag == null || prfshipflag == "") {
- // messageBox("교직 구분이 없습니다. 등록","E001");
- // return;
- // }
- //
- // if (holyordflag == null || holyordflag == "") {
- // messageBox("성직 구분이 없습니다. 등록","E001");
- // return;
- // }
- //
- // var emplno = ipt_emplnoi.value;
- // var emplnm = ipt_emplnmi.value;
- //
- // if (grd_gvnoffcorddetllist.rowStatus(grd_gvnoffcorddetllist.row) != "1") {
- // misfGridIUD(grd_gvnoffcorddetllist, "A");
- // model.copyNode(GVN_TARGET_NODE + "/gvnoffcorddetllist" ,GVN_SOURCE_NODE + "/gvnoffcorddetllist[" + (grd_gvnoffcorddetllist.row - grd_gvnoffcorddetllist.fixedRows + 1) + "]" );
- // rpbfGvnoffcordEditYNSet(grd_gvnoffcordcdlist.nodeset, GVN_TARGET_NODE + "/gvnoffcorddetllist");
- // }
- //
- // model.setValue(GVN_TARGET_NODE + "/gvnoffcorddetllist/emplno", emplno);
- // model.setValue(GVN_TARGET_NODE + "/gvnoffcorddetllist/emplnm", emplnm);
- // ipt_emplnmi.attribute("ref") = "/root/main/gvnoffcorddetldata/gvnoffcorddetllist/emplnm";
- // model.refresh();
- //
- // /* 인사정보 Validation Check
- // misfValidationCheck(Validation 종류(부서코드, 공통코드, 우편번호...), 공통코드군, 자료를 받을 Instance Node(콤마로 분류해서 넘기면됨)) */
- // var recv_list = "emplno,emplnm,holyordflag,prfshipflag,rregno1,rregno2,instcd,deptcd,deptnm,jobposcd,jobposnm,jobrespcd,jobrespnm," ;
- // recv_list = recv_list + "grupjoblncd,grupjoblnnm,joblncd,joblnnm,jobkindcd,jobkindnm,concroffcyn,ojobgradcd,ojobgradnm,njobgradcd,njobgradnm,";
- // recv_list = recv_list + "grdeupflag,retireresn,cmt,payclscd,anual,payinst,dutplceinst,dutdeptcd,dutdeptnm,dutteamcd,dutteamnm,dutunitcd,dutunitnm,teamcd,teamnm,unitcd,unitnm,";
- // recv_list = recv_list + "orginstcd,orgdeptcd,orgdetlinst,orgteamcd,orgunitcd";
- // rpbfValidationCheck("EMPLNM", recv_list);
- //
- // model.refresh();
- // var prfshipflag = model.getValue(GVN_TARGET_NODE + "/gvnoffcorddetllist/prfshipflag");
- //
- // if (rpbCheckEmplNo (grd_gvnoffcorddetllist, ipt_emplno.value) == "Y") {
- // messageBox("입력한 사원입니다. 등록","E001");
- // var node = instance1.selectNodes(GVN_TARGET_NODE + "/gvnoffcorddetllist/*");
- // for (var i = 0; i < node.length; i++) {
- // model.setValue(GVN_TARGET_NODE + "/gvnoffcorddetllist/" + node.item(i).nodeName,"");
- // }
- // model.copyNode(GVN_TARGET_NODE + "/gvnoffcorddetllist" ,GVN_SOURCE_NODE + "/gvnoffcorddetllist[" + (grd_gvnoffcorddetllist.row - grd_gvnoffcorddetllist.fixedRows + 1) + "]" );
- // }
- // else {
- // if (gvnoffcorddetlflag == "024" || gvnoffcorddetlflag == "008" ) { //겸직, 보임일경우 겸직유무 Setting
- // if (gvnoffcorddetlflag == "024"){
- // model.setValue(rdo_concroffcyn.attribute("ref"), "Y");
- // }
- // else if ((prfshipflag == "11" || prfshipflag == "21") && gvnoffcorddetlflag == "008") {
- // model.setValue("/root/send/concroffcord/emplno", emplno);
- // submit("TRRPB10004");
- //
- // if (grd_concroffcordlist.rows > 0) {
- // model.setValue(rdo_concroffcyn.attribute("ref"), "Y");
- // }
- // else {
- // model.setValue(rdo_concroffcyn.attribute("ref"), "N");
- // }
- //
- // }
- // else {
- // model.setValue(rdo_concroffcyn.attribute("ref"), "N");
- // }
- // }
- // else {
- // model.setValue(rdo_concroffcyn.attribute("ref"), "N");
- // }
- //
- // if (gvnoffcorddetlflag == "025" || gvnoffcorddetlflag == "015" || gvnoffcorddetlflag == "040") { //겸직해임, 보직해임일경우 겸직발령내역 조회
- // model.setValue("/root/send/concroffcord/emplno", emplno);
- // submit("TRRPB10004");
- //
- // if (grd_concroffcordlist.rows > 0) {
- // grd_concroffcordlist.attribute("visibility") = "visible";
- // }
- // }
- //
- // btn_savedetl.disabled = false;
- // btn_save.disabled = false;
- // }
- // ipt_emplnmi.attribute("ref") = "/root/init/emplinfo/emplnm";
- // model.setValue(ipt_emplnoi.attribute("ref"), model.getValue(ipt_emplno.attribute("ref")));
- //
- // model.setValue(ipt_termfromdd.attribute("ref"), model.getValue(ipt_gvnoffcorddd.attribute("ref")));
- // model.setValue(ipt_termtodd.attribute("ref"), "");
- //
- // var prfshipflag = grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row, grd_gvnoffcordmastlist.colRef("prfshipflag"));
- // var holyordflag = grd_gvnoffcordmastlist.valueMatrix(grd_gvnoffcordmastlist.row, grd_gvnoffcordmastlist.colRef("holyordflag"));
- // cmb_prfshipflag_i.value = prfshipflag;
- // cmb_holyordflag_i.value = holyordflag;
- //
- // cmb_holyordflag_i.disabled = true;
- // cmb_prfshipflag_i.disabled = true;
- //
- // model.refresh();
- ]]>
- </script>
- </input>
- <input id="ipt_concroffcordno" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/concroffcordno" class="input_default" disabled="true" navindex="50" visibility="hidden" style="left:940px; top:670px; width:25px; height:19px; "/>
- <button id="btn_concroffc" class="btn2_letter4" style="left:1085px; top:511px; width:64px; height:19px; ">
- <caption>겸직자료</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- if (grd_concroffcordlist.attribute("visibility") == "visible") {
- grd_concroffcordlist.attribute("visibility") = "hidden"
- }
- else {
- model.setValue("/root/send/concroffcord/emplno", ipt_emplnoi.currentText);
- submit("TRRPB10004");
- grd_concroffcordlist.attribute("visibility") = "visible"
- }
- ]]>
- </script>
- </button>
- <caption id="caption17" class="search_name" style="left:5px; top:9px; width:86px; height:17px; ">등록기관:</caption>
- <select1 id="cmb_instcd" ref="/root/send/gvnoffcordmast/instcd" class="combo_default" navindex="7" appearance="minimal" style="left:85px; top:8px; width:120px; height:19px; ">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </select1>
- <input id="ipt_olddutunitcd" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/olddutunitcd" class="input_default" disabled="true" navindex="50" visibility="hidden" style="left:910px; top:670px; width:25px; height:19px; "/>
- <input id="ipt_orginstcd" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/orginstcd" class="input_default" disabled="true" navindex="50" visibility="hidden" style="left:1010px; top:665px; width:25px; height:19px; "/>
- <input id="ipt_orgdeptcd" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/orgdeptcd" class="input_default" disabled="true" navindex="50" visibility="hidden" style="left:1035px; top:665px; width:25px; height:19px; "/>
- <input id="ipt_orgdetlinst" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/orgdetlinst" class="input_default" disabled="true" navindex="50" visibility="hidden" style="left:1060px; top:665px; width:25px; height:19px; "/>
- <input id="ipt_orgteamcd" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/orgteamcd" class="input_default" disabled="true" navindex="50" visibility="hidden" style="left:1085px; top:665px; width:25px; height:19px; "/>
- <input id="ipt_orgunitcd" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/orgunitcd" class="input_default" disabled="true" navindex="50" visibility="hidden" style="left:1110px; top:665px; width:25px; height:19px; "/>
- <line id="line7" class="line_2" style="x1:0px; y1:680px; x2:1193px; y2:680px; "/>
- <input id="ipt_frompage" ref="/root/temp/frompage" format="#,###" style="left:495px; top:269px; width:45px; height:19px; text-align:center; "/>
- <input id="ipt_topage" ref="/root/temp/topage" format="#,###" style="left:550px; top:269px; width:45px; height:19px; text-align:center; "/>
- <caption id="caption18" style="left:540px; top:269px; width:10px; height:20px; ">-</caption>
- <button id="btn_select" class="btn2_letter4" navindex="4" style="left:600px; top:269px; width:64px; height:19px; text-align:left; ">
- <caption>일부선택</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- if (grd_gvnoffcorddetllist.rows - grd_gvnoffcorddetllist.fixedRows <= 0) return;
-
- var frompage = parseFloat(ipt_frompage.value);
- var topage = parseFloat(ipt_topage.value);
-
- if (frompage == null || frompage == 0 || frompage == "0" || frompage == "") {
- messageBox("시작 순번을","C001");
- return;
- }
-
- //alert(topage);
- if (topage== null || topage == 0 || topage == "0" || topage == "") {
- messageBox("마지막 순번을 ","C001");
- return;
- }
- for (var i = frompage+1 ; i <= topage+1 ; i++) {
- if (grd_gvnoffcorddetllist.valueMatrix(i, grd_gvnoffcorddetllist.colRef("tretyn")) != "Y") {
- grd_gvnoffcorddetllist.valueMatrix(i, grd_gvnoffcorddetllist.colRef("tretyn")) = "Y";
- grd_gvnoffcorddetllist.rowStatus(i) = "2";
- }
- }
-
-
- //model.refresh();
- ]]>
- </script>
- </button>
- <button id="btn_unselect" class="btn2_letter6" navindex="4" style="left:670px; top:269px; width:64px; height:19px; text-align:left; ">
- <caption>일부선택취소</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- if (grd_gvnoffcorddetllist.rows - grd_gvnoffcorddetllist.fixedRows <= 0) return;
-
- var frompage = parseFloat(ipt_frompage.value);
- var topage = parseFloat(ipt_topage.value);
-
- if (frompage == null || frompage == 0 || frompage == "0" || frompage == "") {
- messageBox("시작 순번을","C001");
- return;
- }
-
- //alert(topage);
- if (topage== null || topage == 0 || topage == "0" || topage == "") {
- messageBox("마지막 순번을 ","C001");
- return;
- }
- for (var i = frompage+1 ; i <= topage+1 ; i++) {
- if (grd_gvnoffcorddetllist.valueMatrix(i, grd_gvnoffcorddetllist.colRef("tretyn")) == "Y") {
- grd_gvnoffcorddetllist.valueMatrix(i, grd_gvnoffcorddetllist.colRef("tretyn")) = "N";
- grd_gvnoffcorddetllist.rowStatus(i) = "2";
- }
- }
-
-
- //model.refresh();
- ]]>
- </script>
- </button>
- <caption id="caption19" class="cell_1" style="left:812px; top:634px; width:82px; height:23px; vertical-align:middle; ">호봉구분</caption>
- <select1 id="cmb_payclsprfshipflag" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/payclsprfshipflag" class="combo_default" disabled="true" appearance="minimal" style="left:897px; top:636px; width:110px; height:19px; ">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </select1>
- <select1 id="cmb_educd" ref="/root/main/gvnoffcorddetldata/gvnoffcorddetllist/educd" class="combo_default" disabled="true" navindex="29" appearance="minimal" editmode="inputsearch" style="left:627px; top:684px; width:181px; height:19px; ">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </select1>
- <caption id="caption85" class="cell_1" style="left:560px; top:682px; width:65px; height:23px; vertical-align:middle; ">교육코드</caption>
- </group>
- </case>
- <case id="case2"/>
- </switch>
- </xhtml:body>
- </xhtml:html>
|