123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556 |
- <?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>
- <apntvolntlist/>
- <gnrl>
- <gnrlinfo>
- <photimg/>
- </gnrlinfo>
- </gnrl>
- <hopehosplist/>
- <hopeorddeptlist>
- </hopeorddeptlist>
- <famyrellist>
- </famyrellist>
- <schollist>
- </schollist>
- <carerfactlist>
- </carerfactlist>
- <forelangfactlist>
- </forelangfactlist>
- <trngspeclist>
- </trngspeclist>
- <prizrpmdlist>
- </prizrpmdlist>
- <scinccmntspeclist>
- </scinccmntspeclist>
- <grntorlist>
- </grntorlist>
- <gnrldata>
- <gnrlinfo/>
- </gnrldata>
- <resihopeorddeptlist/>
- <resihopehosplist/>
- <print>
- <baseinfo/>
- </print>
- </main>
- <send>
- <apntyy/>
- <supinfqurtyyflag>1</supinfqurtyyflag>
- <fstlattrmflag>1</fstlattrmflag>
- <trngflag>R</trngflag>
- <dentyn>1</dentyn>
- <apntstat/>
- <korname/>
- <intnorddeptcd/>
- <resiorddeptcd/>
- <fromexamno/>
- <toexamno/>
- <deptdg>1</deptdg>
- <apntvolntlist/>
- <detailInfo>
- <apntinfono/>
- <rregno/>
- <hopeflag>1</hopeflag>
- <rcptflag/>
- <hopeorddeptdg>1</hopeorddeptdg>
- </detailInfo>
- <save>
- <gnrlinfo/>
- <hopehosptlist/>
- <hopeorddeptlist/>
- <famyrellist/>
- <schollist/>
- <carerfactlist/>
- <forelangfactlist/>
- <trngspeclist/>
- <prizrpmdlist/>
- <scinccmntspeclist/>
- <apntvolntlist/>
- </save>
- <senddetaildata>
- <apntinfono/>
- <rregno/>
- <trngflag/>
- </senddetaildata>
- <prnflag/>
- </send>
- <init>
- <prnflag>
- <label>출력양식1</label>
- <value>1</value>
- <label>출력양식2</label>
- <value>2</value>
- </prnflag>
- </init>
- <hidden>
- </hidden>
- <temp>
- <armyynnm/>
- <totpsnno/>
- </temp>
- </root>
- </instance>
- <submission id="TRRTR00301" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" resultref="/root/main/apntvolntlist"/>
- <submission id="TRRTR00302" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/detailInfo" resultref="/root/main/gnrl"/>
- <submission id="TRRTR00303" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/detailInfo" resultref="/root/main/hopehosplist"/>
- <submission id="TRRTR00304" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/detailInfo" resultref="/root/main/hopeorddeptlist"/>
- <submission id="TRRTR00305" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/detailInfo" resultref="/root/main/famyrellist"/>
- <submission id="TRRTR00306" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/detailInfo" resultref="/root/main/schollist"/>
- <submission id="TRRTR00307" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/detailInfo" resultref="/root/main/carerfactlist"/>
- <submission id="TRRTR00308" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/detailInfo" resultref="/root/main/forelangfactlist"/>
- <submission id="TRRTR00309" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/detailInfo" resultref="/root/main/trngspeclist"/>
- <submission id="TRRTR00310" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/detailInfo" resultref="/root/main/prizrpmdlist"/>
- <submission id="TRRTR00311" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/detailInfo" resultref="/root/main/scinccmntspeclist"/>
- <submission id="TRRTR00312" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/detailInfo" resultref="/root/main/grntorlist"/>
- <submission id="TRRTR00314" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/detailInfo" resultref="/root/main/resihopeorddeptlist"/>
- <submission id="TRRTR00315" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/detailInfo" resultref="/root/main/resihopehosplist"/>
- <submission id="TXRTR00301" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/save" resultref="/root/temp"/>
- <submission id="TRRTR00330" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/senddetaildata" resultref="/root/main/print"/>
- <submission id="TXRTR00304" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/detailInfo" resultref="/root/temp"/>
- </model>
- <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"/>
- <script type="javascript" ev:event="xforms-ready">
- <![CDATA[
- //사용자 권한
- fCheckAuth();
-
-
- model.toggle("case1");
-
- // 그리드 초기화
- // 지원자 리스트
- misfGridInit(grd_apntvolntlist);
- // 지원자 기본정보
- misfGridInit(grd_gnrlinfo);
- // 가족관계
- misfGridInit(grd_famyrellist);
- // 학력사항
- misfGridInit(grd_schollist);
- // 경력사항
- misfGridInit(grd_carerfactlist);
- // 외국어사항
- misfGridInit(grd_forelangfactlist);
- // 수련내역
- misfGridInit(grd_trngspeclist);
- // 상벌내역
- misfGridInit(grd_prizrpmdlist);
- // 학술단체내역
- misfGridInit(grd_scinccmntspeclist);
- // 신원보증인
- misfGridInit(grd_grntorlist);
- // 인턴 희망근무지. 근무희망병워
- misfGridInit(grd_hopehosplist);
- // 인턴 희망근무지. 근무희망과
- misfGridInit(grd_hopeorddeptlist);
-
- // 레지던트 희망근무지 희망과
- misfGridInit(grd_resihopeorddeptlist);
- // 레지던트 희망근무지 희망과
- misfGridInit(grd_resihopehosplist);
-
-
- misfMsterDetailSet(grd_apntvolntlist, null, "TRRTR00301", "Y");
- misfMsterDetailSet(grd_gnrlinfo, grd_apntvolntlist, "TRRTR00302" ,"Y");
- misfMsterDetailSet(grd_hopehosplist, grd_apntvolntlist, "TRRTR00303" ,"Y");
- misfMsterDetailSet(grd_hopeorddeptlist, grd_apntvolntlist, "TRRTR00304" ,"Y");
- misfMsterDetailSet(grd_famyrellist, grd_apntvolntlist, "TRRTR00305" ,"Y");
- misfMsterDetailSet(grd_schollist, grd_apntvolntlist, "TRRTR00306" ,"Y");
- misfMsterDetailSet(grd_carerfactlist, grd_apntvolntlist, "TRRTR00307" ,"Y");
- misfMsterDetailSet(grd_forelangfactlist, grd_apntvolntlist, "TRRTR00308" ,"Y");
- misfMsterDetailSet(grd_trngspeclist, grd_apntvolntlist, "TRRTR00309" ,"Y");
- misfMsterDetailSet(grd_prizrpmdlist, grd_apntvolntlist, "TRRTR00310" ,"Y");
- misfMsterDetailSet(grd_scinccmntspeclist, grd_apntvolntlist, "TRRTR00311" ,"Y");
- misfMsterDetailSet(grd_grntorlist, grd_apntvolntlist, "TRRTR00312" ,"Y");
-
-
- misfMsterDetailSet(grd_resihopeorddeptlist, grd_apntvolntlist, "TRRTR00314" ,"Y");
- misfMsterDetailSet(grd_resihopehosplist, grd_resihopeorddeptlist, "TRRTR00315" ,"Y");
- misfComboComCdList("R0234", cmb_resiorddeptcd, "Y");
-
- //misfComboComCdListMulti("R0071,R0073","cmb_hometype,cmb_handcapgrde");
- // 공통코드 혈액형ABO P0013, 주거형태 R0071, 장애등급 R0073, 종교 M0070, 역종 R0078, 계급 R0085, 군별 R0080, 병과 R0081, 복무구분 cmb_mltrflag, 제대구분 R0079
- // 근무희망병원 기관코드 Z0007, 진료과코드 R0234 가족관계 R0077, 직업코드, 학력코드 M0069, 직책코드 R0063,
- // 학력사항 학력구분 R0235, 학위코드 R0087, 전공코드 R0089, 학교코드 R0141, 학력이수구분 R0236
- // 외국어사항 외국어명 R0086, 외국어시험 grd_forelangfactlist.examcd1 R0167
- // 상벌사항.포상징계구분 R0127, 상벌명 R0084,
- // 국가코드 R0142, 출생지 R0134, 결혼여부 R0120,e-mail R0131
- // 상하반기 R0237, 전후기구분 R0238, 전공의구분 R0151, 치과지망여부 R0239, 결혼여부 R0120,
- // 학력사항 학력구분
- // 보훈구분 R0072, 보훈청 R0157
- misfComboComCdListMulti("P0014,P0013,R0071,R0073,R0137,R0078,R0085,R0080,R0081,R0079,R0305,R0234,R0077,R0076,M0069,R0087,R0236,R0086,R0127,R0084,R0142,R0134,R0120,R0131,R0237,R0238,R0151,R0239,R0120,R0235,R0167,R0253,R0255,R0001,R0294,R0295",
- "cmb_btyperh,cmb_btypeabo,cmb_hometype,cmb_handcapgrde,cmb_religncd,cmb_clssvcstatcd,cmb_classcd,cmb_armyclscd,cmb_brnhmiltsrvccd,cmb_dembztflag,grd_hopehosplist.hopecd,grd_hopeorddeptlist.hopecd,grd_famyrellist.famyrel,grd_famyrellist.jobcd,grd_famyrellist.scholcd,grd_schollist.acdmydgcd,grd_schollist.cmpltcursstdyflag,grd_forelangfactlist.forgnlangcd,grd_prizrpmdlist.prizrpmdflag,grd_prizrpmdlist.prizrpmdcd,cmb_naticd,cmb_brthareacd,cmb_maryyn,com_emailaddr,cmb_supinfqurtyyflag,cmb_fstlattrmflag,cmb_trngflag,cmb_dentyn,cmb_maryyn,grd_schollist.schflag,grd_forelangfactlist.examcd,grd_scinccmntspeclist.scinccmntflag,grd_trngspeclist.trngflag,cmb_bankcd,cmb_compulinc,cmb_compulincissinst");
-
- addComboItem( "cmb_compulincissinst", "자격증 종류 선택", "", "above");
- addComboItem( "cmb_compulinc", "발급기관 선택", "", "above");
- //misfComboCopyItemSet(grd_famyrellist, "scholcd", grd_schollist, "schflag"); // 학력사항.학력구분
- misfComboCopyItemSet(grd_hopeorddeptlist, "hopecd", grd_trngspeclist, "frmrmert"); // 수련사항.전공과목
- misfComboCopyItemSet(grd_hopeorddeptlist, "hopecd", grd_resihopeorddeptlist, "hopeorddeptcd"); // 레지던트 희망진료과
- misfComboCopyItemSet(grd_hopehosplist, "hopecd", grd_resihopehosplist, "hopehospcd"); // 레지던트 희망 병원
-
- misfComboCopyItemSet(grd_famyrellist, "famyrel", grd_grntorlist, "grntpsnrela"); // 신원보증인.보증인관계
- misfComboCopyItemSet(cmb_handcapgrde, "/root/main/gnrldata/gnrlinfo/handcapgrde", grd_famyrellist, "handcapgrde"); // 장애등급
- // misfComboCopyItemSet(grd_hopeorddeptlist, "hopecd", cmb_resiorddeptcd, "/root/send/resiorddeptcd"); // 레지던트 과구분
-
-
-
-
- // 2007-11-16 년도 디폴트설정 acwon수정
- /*var sDate = getNewDate();
- model.setValue("/root/send/apntyy", sDate.getFullYear());
- //model.refresh();*/
- var today = getCurrentDate();
- var cur_mm = parseInt(today.substring(4, 6));
- cur_yy = parseInt(today.substring(0, 4));
-
- if (cur_mm >= 11)
- cur_yy++;
-
- model.setValue("/root/send/apntyy", cur_yy);
- input77.refresh();
- //end
-
- //그리드의 타이틀을 누르면 sort되는 기능
- grd_apntvolntlist.explorerbar = "sort";
-
- // 장애여부 체크
- fSetHandcap();
-
- grd_apntvolntlist.selectionMode = "byrow"
-
-
- // makeReportPreview(0, 0, 300, 400, "group4");
- // makeReportPreview(0, 0, 300, 400);
- ]]>
- </script>
- <script type="javascript">
- <![CDATA[
- var m_case = 1;
- //case1에서 조회가 되었는지 확인
- var iscase1click = false;
- var cur_yy;
-
- //========================================================================================
- //버튼에 대한 화면 권한 체크(R : 읽기, X : 입력/수정/삭제, P : 출력)
- //========================================================================================
- function fCheckAuth() {
- btn_search.disabled = !checkAuth("R") ;
- btn_save.disabled = !checkAuth("X") ;
-
- btn_suppprn.disabled = !checkAuth("P") ;
- btn_examprn.disabled = !checkAuth("P") ;
- button3.disabled = !checkAuth("P") ;
- grd_apntvolntlist.colDisabled(grd_apntvolntlist.colRef("supp")) = !checkAuth("P") ;
- grd_apntvolntlist.colDisabled(grd_apntvolntlist.colRef("examprn")) = !checkAuth("P") ;
-
- btn_rcpt.disabled = !(checkAuth("X"));
- btn_rcptcncl.disabled = !(checkAuth("X"));
- }
-
- function fGetSearch() {
- misfMsterDetailRetrieve();
- }
-
- function fGetDetail() {
- model.setValue("/root/send/detailInfo/apntinfono", grd_apntvolntlist.valueMatrix( grd_apntvolntlist.row, grd_apntvolntlist.colRef("apntinfono")) );
- model.setValue("/root/send/detailInfo/rregno", grd_apntvolntlist.valueMatrix( grd_apntvolntlist.row, grd_apntvolntlist.colRef("rregno")) );
- // 기본정보
- model.resetInstanceNode("/root/main/gnrldata/gnrlinfo/srvarmtermfromdd");
- model.resetInstanceNode("/root/main/gnrldata/gnrlinfo/srvarmtermtodd");
- submit("TRRTR00302");
-
- iscase1click = false;
- switch (m_case) {
- case 1: // 희망근무지. 희망병원
- // 전공의가 인턴일 경우
- if ( "I" == model.getValue("/root/send/trngflag") ) {
- model.setValue("/root/send/detailInfo/hopeflag", "1") ;
- submit("TRRTR00303");
- model.setValue("/root/send/detailInfo/hopeflag", "2") ;
- submit("TRRTR00304");
- } else {
- // 전공의가 레지던트 일경우
- submit("TRRTR00314");
- submit("TRRTR00315");
-
- iscase1click = true;
-
- // 합격학과 음영처리
- var sNodeLength = grd_resihopeorddeptlist.rows - grd_resihopeorddeptlist.fixedRows;
-
- for(var i=1 ; i <= sNodeLength ; i++)
- {
- var sHopeorddeptcd = grd_resihopeorddeptlist.valueMatrix(i, grd_resihopeorddeptlist.colRef("hopeorddeptcd"));
- var sPasssbjcd = grd_resihopeorddeptlist.valueMatrix(i, grd_resihopeorddeptlist.colRef("passsbjcd"));
-
- if(sHopeorddeptcd == sPasssbjcd)
- {
- grd_resihopeorddeptlist.rowstyle(i, "data", "background-color") = "#ffeebb";
- }
- }
- }
- break;
- case 2: // 가족관계
- submit("TRRTR00305");
- break;
- case 3: // 종교
- break;
- case 4: // 학력
- submit("TRRTR00306");
- break;
- case 5: // 경력
- submit("TRRTR00307");
- break;
- case 6: // 외국어
- submit("TRRTR00308");
- break;
- case 7: // 수련
- submit("TRRTR00309");
- break;
- case 8: // 상벌
- submit("TRRTR00310");
- break;
- case 9: // 학술/단체
- submit("TRRTR00311");
- break;
- case 10: // 보증인
- submit("TRRTR00312");
- break;
- case 11: // 채용성적
- break;
-
- default:
- // do nothing here
- break;
- }
- model.copyNode("/root/main/gnrldata", "/root/main/gnrl");
-
- } // end function
-
- function fRefInfo()
- {
- fGetDetail();
- if (grd_apntvolntlist.col == grd_apntvolntlist.colRef("supp"))
- {
- cmb_prnflag.value = 2;
- fSuppSetting(2);
- }
- if (grd_apntvolntlist.col == grd_apntvolntlist.colRef("examprn"))
- {
- fExamSetting(2);
- }
- grd_apntvolntlist.dispatch("onmouseup");
-
- // 이미지설정
- fRetrImage();
- model.refresh();
- }
-
-
- function fSetHandcap() {
- // 장애여부 가 'N' 이면 장애등급, 장애등급번호 reset
- if (cmb_handcapyn.value == "Y") {
- ipt_handcapno.disabled = false;
- cmb_handcapgrde.disabled = false;
- } else {
- cmb_handcapgrde.value = "";
- cmb_handcapgrde.disabled = true;
- ipt_handcapno.value = "";
- ipt_handcapno.disabled = true;
- }
- }
-
- function fChangeImage(imgsrc) {
- img_hidden.src = imgsrc; // 파일에서 읽은 이미지의 base64 encoding 값을 가져오기 위한 이미지 컨트롤
- var data = img_hidden.getbase64data(); // base64 encoding 문자열을 가져온다.
-
- var imgSize = getImageSize(imgsrc);
- var imgWidthSize = imgSize.split("^")[0];
- var imgHeightSize = imgSize.split("^")[1];
-
- model.setValue("/root/main/gnrldata/gnrlinfo/photimg", data, true); // 이미지를 보여주기 위하여 view용 이미지컨트롤의 ref instance에 값을 저장
- setImageRefInstance("/root/main/gnrldata/gnrlinfo/photimg"); //base64 encoding 문자열을 이미지로 변환하여 보여준다,
- if( imgWidthSize <= 190) {
- img_photimg.attribute("width")= imgWidthSize;
- }
-
- if( imgWidthSize <= 220) {
- img_photimg.attribute("height")= imgHeightSize;
- }
- model.refresh();
- }
-
- function fRetrImage() {//조회시 그리드에 base64 encoding data셋팅하고 사진이미지 보여준다.
- var imgSrc = "/root/main/gnrldata/gnrlinfo/photimg";
- setImageRefInstance(imgSrc);
- }
-
- function fRetrImage1() {//조회시 그리드에 base64 encoding data셋팅하고 사진이미지 보여준다.
- var imgSrc = "/root/main/print/baseinfo/photimg";
- setImageRefInstance(imgSrc);
- }
-
- function fSuppSetting(flag){
-
- model.setValue("/root/send/senddetaildata/apntinfono",grd_apntvolntlist.valueMatrix(grd_apntvolntlist.row, grd_apntvolntlist.colRef("apntinfono")));
- model.setValue("/root/send/senddetaildata/rregno",grd_apntvolntlist.valueMatrix(grd_apntvolntlist.row, grd_apntvolntlist.colRef("rregno")));
- model.setValue("/root/send/senddetaildata/trngflag",grd_apntvolntlist.valueMatrix(grd_apntvolntlist.row, grd_apntvolntlist.colRef("trngflag")));
-
- submit("TRRTR00330");
-
- fRetrImage1();
-
- if(grd_apntvolntlist.valueMatrix(grd_apntvolntlist.row, grd_apntvolntlist.colRef("trngflag")) == 'I')
- {
- if(flag == 1)
- {
- exeReportPreview("RPRTR00301", "XMLSTR" , "" , "" , "true" , "", "", "", "", "true");
- }
- else if(flag == 2)
- {
- exeReportPreview("RPRTR00301","XMLSTR");
- }
- }else if(grd_apntvolntlist.valueMatrix(grd_apntvolntlist.row, grd_apntvolntlist.colRef("trngflag")) == 'R')
- {
- if(flag == 1)
- {
- exeReportPreview("RPRTR00302", "XMLSTR" , "" , "" , "true" , "", "", "", "", "true");
- }
- else if(flag ==2)
- {
- exeReportPreview("RPRTR00302","XMLSTR");
- }
- }
- }
-
- function fExamSetting(flag){
-
- model.setValue("/root/send/senddetaildata/apntinfono",grd_apntvolntlist.valueMatrix(grd_apntvolntlist.row, grd_apntvolntlist.colRef("apntinfono")));
- model.setValue("/root/send/senddetaildata/rregno",grd_apntvolntlist.valueMatrix(grd_apntvolntlist.row, grd_apntvolntlist.colRef("rregno")));
- model.setValue("/root/send/senddetaildata/trngflag",grd_apntvolntlist.valueMatrix(grd_apntvolntlist.row, grd_apntvolntlist.colRef("trngflag")));
-
- submit("TRRTR00330");
- fRetrImage1();
-
- if(flag == 1)
- {
- exeReportPreview("RPRTR00303", "XMLSTR" , "" , "" , "true" , "", "", "", "", "true");
- }
- else if(flag)
- {
- exeReportPreview("RPRTR00303","XMLSTR");
- }
- }
-
- /* 임시 작업 function */
- function fGridDataTempSetting() {
- var temValue = getGridUpdateData(grd_famyrellist);
- if (temValue != "" ) {
- for ( var cnt = grd_famyrellist.fixedRows; cnt < grd_famyrellist.rows; cnt++){
- if( grd_famyrellist.rowstatus(cnt) == "4" ) {
- grd_famyrellist.rowstatus(cnt) = "0"
- } else {
- grd_famyrellist.rowstatus(cnt) = "1"
- }
- }
- }
- }
-
- function fDataValidCheck() {
- if( grd_resihopehosplist.rows- grd_resihopehosplist.fixedRows > 0 ) {
- for( var cnt = grd_resihopehosplist.fixedRows; cnt < grd_resihopehosplist.rows ; cnt ++ ) {
- if ( grd_resihopehosplist.valueMatrix(cnt, grd_resihopehosplist.colRef("hopehospcd")).length == 0 ) {
- if (m_case != 11){
- messageBox("근무희망병원을 " ,"C001");
- return false;
- }
- }
- }
- }
- }
- ]]>
- </script>
- </xhtml:head>
- <xhtml:body guideline="2,281;" 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>
- <group id="grp_btn" scroll="auto" style="left:0px; top:12px; width:1195px; height:27px; ">
- <line id="line75" class="line_6" style="x1:0; y1:25; x2:1195; y2:25; "/>
- <button id="btn_save" class="btn5_letter2" style="left:1135px; top:5px; width:42px; height:19px; ">
- <caption>저장</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var retMes = messageBox("저장 하시겠습니까?", "Q999");
- if ( retMes != 6) {
- return;
- }
-
- model.copyNode("/root/main/gnrl/gnrlinfo[1]", "/root/main/gnrldata/gnrlinfo");
- model.refresh();
-
- grd_gnrlinfo.rowstatus(1) = 2;
- /* EP와 Interface 작업을 하면서 nU측 TIS 소스를 수정 함으로 인해 작업처리
- 2008.08.08 [Y.Y.J] = 향후 반드시 EP에서 MIS 에서 사용하는 메소드가 아닌
- 다른 메소드를 호출하게 변경 처리해야 함. ==========
-
- 대상 Grid : grd_famyrellist ( 가족관계 )
- 내용 : EP : apntinfono , rregno Key 에 해당 하는 값을 모두 지워버린 후
- 화면 상의 데이터를 재 Insert 시킴
- TIS : EP에서 사용하는 방식으로 우선 작동이 되도록 수정처리 함..
- ( 향후 EP와 TIS 사용 app, mgr, dao, sql 모두 분리 시켜야 함 )
- 처리방향 : Grid에서 삭제가 되는 부분은 ( status : D ) 인 것은 변동 사항이 없는 것으로 처리 해서 데이터가 넘어가지 않도록 하고
- 변동사항이 없거나 수정 / 신규 건은 Valueobject에 데이터를 넣을 수 있도록 상태값을 변경하여 app로 던진다.
-
- 향후 반드시 수정처리 ... ( 수정 완료시 아래 함수는 삭제처리 해야 함 ) */
- //fGridDataTempSetting();
- if (iscase1click) {
- if ( fDataValidCheck() == false ) return ;
- }
-
- misfSave("TXRTR00301");
- fGetDetail();
- // 이미지설정
- fRetrImage();
-
- // 2007-11-16 저장후에 총인원수가 안나온다. acwon수정
- //model.refresh();
- try {
- // 지원자 총 인원등 보여준다.
- model.makeValue("/root/temp/totpsnno", grd_apntvolntlist.rows -1);
- model.refresh();
- } catch (ex) {
- //alert(ex.name +" ["+ ex.number +"] \n"+ ex.message);
- }
-
- ]]>
- </script>
- </button>
- <group id="group4" visibility="hidden" style="left:485px; top:10px; width:200px; height:10px; "/>
- </group>
- <group id="group2" scroll="auto" style="left:0px; top:40px; width:1195px; height:744px; ">
- <line id="line43" class="line_3" style="x1:0px; y1:438px; x2:1195px; y2:438px; font-size:10pt; "/>
- <line id="line44" class="line_2" style="x1:490; y1:363px; x2:1010; y2:363px; font-size:10pt; "/>
- <line id="line45" class="line_2" style="x1:0px; y1:435px; x2:1195px; y2:435px; font-size:10pt; "/>
- <line id="line46" class="line_2" style="x1:490; y1:243px; x2:1010; y2:243; font-size:10pt; "/>
- <line id="line47" class="line_2" style="x1:490; y1:387px; x2:1010; y2:387px; font-size:10pt; "/>
- <line id="line48" class="line_2" style="x1:490; y1:219px; x2:1010; y2:219; font-size:10pt; "/>
- <line id="line49" class="line_2" style="x1:490; y1:339px; x2:1010; y2:339; font-size:10pt; "/>
- <line id="line50" class="line_2" style="x1:490; y1:291px; x2:1010; y2:291; font-size:10pt; "/>
- <line id="line51" class="line_2" style="x1:490; y1:267px; x2:1010; y2:267; font-size:10pt; "/>
- <line id="line52" class="line_2" style="left:874; x1:490; y1:171px; x2:1010; y2:171; font-size:10pt; "/>
- <line id="line53" class="line_2" style="x1:490; y1:147px; x2:1010; y2:147; font-size:10pt; "/>
- <line id="line54" class="line_2" style="x1:490; y1:123px; x2:1010; y2:123px; font-size:10pt; "/>
- <line id="line55" class="line_2" style="x1:490; y1:315px; x2:1010; y2:315; font-size:10pt; "/>
- <line id="line56" class="line_2" style="x1:490; y1:195px; x2:1010; y2:195; font-size:10pt; "/>
- <line id="line58" class="line_2" style="x1:340px; y1:411px; x2:1195px; y2:411px; font-size:10pt; "/>
- <caption id="caption4" class="cell_1" style="left:663; top:125px; width:77; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">middle</caption>
- <input id="input25" ref="/root/main/gnrldata/gnrlinfo/drlincissdd" class="input_default" inputtype="date" style="left:924px; top:175px; width:87px; height:19px; font-size:10pt; "/>
- <caption id="caption39" class="cell_1" style="left:830px; top:197px; width:90px; height:46px; font-size:10pt; text-align:left; vertical-align:middle; ">시력</caption>
- <input id="ipt_korname" ref="/root/main/gnrldata/gnrlinfo/korname" class="input_default" editable="false" imemode="hangul" appearance="input" style="left:745px; top:103px; width:80px; height:19px; font-size:10pt; "/>
- <caption id="caption40" class="cell_1" style="left:663; top:221px; width:77; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">신장</caption>
- <caption id="caption42" style="left:988px; top:201px; width:25px; height:18px; font-size:10pt; vertical-align:middle; ">(좌)</caption>
- <input id="input30" ref="/root/main/gnrldata/gnrlinfo/englastnm" class="input_default" imemode="disabled" style="left:569; top:126px; width:91; height:19px; font-size:10pt; "/>
- <caption id="caption43" class="cell_1" style="left:490px; top:293px; width:77; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">취미</caption>
- <caption id="caption44" class="cell_1" style="left:555px; top:389px; width:100; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">현주소</caption>
- <caption id="caption46" style="left:988px; top:222px; width:25px; height:18px; font-size:10pt; vertical-align:middle; ">(우)</caption>
- <input id="input31" ref="/root/main/gnrldata/gnrlinfo/anchome" class="input_default" style="left:745px; top:200px; width:80px; height:19px; font-size:10pt; "/>
- <caption id="caption47" class="cell_1" style="left:663; top:341; width:77; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">E-Mail</caption>
- <caption id="caption48" class="cell_1" style="left:663; top:317px; width:77; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">주거형태</caption>
- <caption id="caption50" class="cell_1" style="left:490px; top:365px; width:77; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">보훈여부</caption>
- <input id="input33" ref="/root/main/gnrldata/gnrlinfo/bdht" class="input_default" format="999" showmask="true" style="left:745px; top:223px; width:80px; height:19px; font-size:10pt; "/>
- <caption id="caption51" class="cell_1" style="left:490px; top:173px; width:77; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">휴대전화</caption>
- <input id="input35" ref="/root/main/gnrldata/gnrlinfo/hoby" class="input_default" style="left:569; top:295px; width:91; height:19px; font-size:10pt; "/>
- <caption id="caption54" class="cell_1" style="left:490px; top:125px; width:77; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">영문 last</caption>
- <caption id="caption56" class="cell_1" style="left:490px; top:245px; width:77; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">출생지</caption>
- <caption id="caption57" class="cell_1" style="left:830px; top:149px; width:90px; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">의사면허번호</caption>
- <input id="input37" ref="/root/main/gnrldata/gnrlinfo/emailid" class="input_default" style="left:745px; top:343px; width:155px; height:19px; font-size:10pt; "/>
- <caption id="caption58" class="cell_1" style="left:490px; top:269px; width:77; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">결혼여부</caption>
- <caption id="caption60" class="cell_1" style="left:663; top:365; width:77; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">계좌번호</caption>
- <caption id="caption61" class="cell_1" style="left:830px; top:173px; width:90px; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">면허발행일</caption>
- <caption id="caption63" class="cell_1" style="left:663; top:101px; width:77; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">한글이름</caption>
- <caption id="caption64" class="cell_1" style="left:663; top:245px; width:77; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">체중</caption>
- <select1 id="cmb_hometype" ref="/root/main/gnrldata/gnrlinfo/hometype" class="combo_default" appearance="minimal" style="left:745px; top:319px; width:80; height:19px; font-size:10pt; ">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </select1>
- <caption id="caption67" class="cell_1" style="left:490px; top:317px; width:77; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">흡연여부</caption>
- <input id="input40" ref="/root/main/gnrldata/gnrlinfo/drlincno" class="input_default" format="9999999999" showmask="true" style="left:924px; top:151px; width:87px; height:19px; font-size:10pt; "/>
- <input id="input43" ref="/root/main/gnrldata/gnrlinfo/lvisact" class="input_default" maxlength="1.2" format="#.##" showmask="true" style="left:924px; top:200px; width:63px; height:19px; font-size:10pt; "/>
- <select1 id="cmb_maryyn" ref="/root/main/gnrldata/gnrlinfo/maryyn" class="combo_default" appearance="minimal" style="left:569; top:271px; width:91; height:19px; font-size:10pt; ">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </select1>
- <select1 id="cmb_brthareacd" ref="/root/main/gnrldata/gnrlinfo/brthareacd" class="combo_default" appearance="minimal" style="left:569; top:248px; width:91; height:19px; font-size:10pt; ">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </select1>
- <caption id="caption68" class="cell_1" style="left:490px; top:197px; width:77; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">자택전화</caption>
- <caption id="caption69" class="tit_2" style="left:490px; top:80px; width:117px; height:13px; font-size:10pt; ">일반정보</caption>
- <input id="input44" ref="/root/main/gnrldata/gnrlinfo/rvisact" class="input_default" maxlength="1.2" format="#.##" showmask="true" style="left:924px; top:223px; width:63px; height:19px; font-size:10pt; "/>
- <select1 id="cmb_naticd" ref="/root/main/gnrldata/gnrlinfo/naticd" class="combo_default" appearance="minimal" style="left:745px; top:177px; width:80px; height:19px; font-size:10pt; ">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </select1>
- <caption id="caption70" class="cell_1" style="left:663; top:173px; width:77; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">국가</caption>
- <select1 id="cmb_bankcd" ref="/root/main/gnrldata/gnrlinfo/bankcd" class="combo_default" appearance="minimal" style="left:745px; top:366px; width:155px; height:19px; font-size:10pt; ">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </select1>
- <input id="input45" ref="/root/main/gnrldata/gnrlinfo/brthmd" class="input_default" inputtype="date" style="left:569; top:151px; width:91; height:19px; font-size:10pt; "/>
- <caption id="caption71" class="cell_1" style="left:340px; top:413px; width:105px; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">군보여부</caption>
- <select1 id="com_emailaddr" ref="/root/main/gnrldata/gnrlinfo/emailaddr" class="combo_default" appearance="minimal" style="left:908px; top:343px; width:141px; height:19px; font-size:10pt; ">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </select1>
- <caption id="caption72" class="cell_1" style="left:663; top:197px; width:77; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">본관</caption>
- <select1 id="cmb_smokyn" ref="/root/main/gnrldata/gnrlinfo/smokyn" class="combo_default" appearance="minimal" style="left:569; top:319px; width:91; height:19px; font-size:10pt; ">
- <choices>
- <item>
- <label>흡연</label>
- <value>Y</value>
- </item>
- <item>
- <label>비흡연</label>
- <value>N</value>
- </item>
- </choices>
- </select1>
- <input id="input47" ref="/root/main/gnrldata/gnrlinfo/bdwt" class="input_default" style="left:745px; top:247px; width:80px; height:19px; font-size:10pt; "/>
- <caption id="caption73" class="cell_1" style="left:490px; top:149px; width:77; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">생년월일</caption>
- <caption id="caption74" class="cell_1" style="left:490px; top:101px; width:77; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">주민번호</caption>
- <select1 id="cmb_armyyn" ref="/root/main/gnrldata/gnrlinfo/armyyn" class="combo_default" appearance="minimal" style="left:450px; top:415px; width:100px; height:19px; font-size:10pt; ">
- <choices>
- <item>
- <label>군보</label>
- <value>Y</value>
- </item>
- <item>
- <label>비군보</label>
- <value>N</value>
- </item>
- </choices>
- </select1>
- <input id="input48" ref="/root/main/gnrldata/gnrlinfo/supppsntel" class="input_default" showmask="false" style="left:569; top:199px; width:91; height:19px; font-size:10pt; "/>
- <caption id="caption75" class="cell_1" style="left:555px; top:413px; width:100; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">본적주소</caption>
- <select1 id="12" ref="/root/main/gnrldata/gnrlinfo/bhtrgtpsnyn" class="combo_default" appearance="minimal" style="left:569; top:368px; width:91; height:19px; font-size:10pt; ">
- <choices>
- <item>
- <label>유</label>
- <value>Y</value>
- </item>
- <item>
- <label>무</label>
- <value>N</value>
- </item>
- </choices>
- </select1>
- <caption id="caption76" class="tit_2" style="left:10px; top:81px; width:117px; height:13px; font-size:10pt; ">지원자 리스트</caption>
- <line id="line59" class="line_1" style="x1:0px; y1:98px; x2:480px; y2:97px; font-size:10pt; "/>
- <datagrid id="grd_apntvolntlist" nodeset="/root/main/apntvolntlist" caption="성명^주민번호^상태^과 구분^출신교^졸업일자^인턴수련병원^수료일자^수험번호^번호^역종^지원서^수험표출력^지원과목^전공의구분^사진" colsep="^" colwidth="65, 91, 69, 92, 90, 80, 110, 80, 63, 50, 30, 66, 100, 100, 100, 0, 0" dataheight="25" frozencols="1" mergecellsfixedrows="bycolrec" rowheader="seq" rowsep="|" style="left:0px; top:101px; width:480px; height:304px; font-size:10pt; ">
- <col ref="korname"/>
- <col ref="rregno" format="999999-9999999" showmask="true"/>
- <col ref="apntstat"/>
- <col ref="orddeptnm"/>
- <col ref="schnm"/>
- <col ref="gradutndd" format="yyyy-mm-dd"/>
- <col ref="cmpltinstnm"/>
- <col ref="trngenddd" format="yyyy-mm-dd"/>
- <col ref="examno" style="text-align:center; "/>
- <col ref="examseq" style="text-align:center; "/>
- <col ref="armyflag"/>
- <col ref="supp" type="inputbutton" visibility="visible"/>
- <col ref="examprn" type="inputbutton" visibility="visible"/>
- <col ref="fstorddeptnm" visibility="hidden"/>
- <col ref="trngflag" visibility="hidden"/>
- <col ref="photimg" visibility="hidden"/>
- <col ref="apntinfono" visibility="hidden"/>
- <col ref="apntyy" visibility="hidden"/>
- <script type="javascript" ev:event="onbuttonclick">
- <![CDATA[
- if (grd_apntvolntlist.col == grd_apntvolntlist.colRef("supp"))
- {
- cmb_prnflag.value = 2;
- fSuppSetting(2);
- }
- if (grd_apntvolntlist.col == grd_apntvolntlist.colRef("examprn"))
- {
- fExamSetting(2);
- /*
- model.setValue("/root/send/senddetaildata/apntinfono",grd_apntvolntlist.valueMatrix(grd_apntvolntlist.row, grd_apntvolntlist.colRef("apntinfono")));
- model.setValue("/root/send/senddetaildata/rregno",grd_apntvolntlist.valueMatrix(grd_apntvolntlist.row, grd_apntvolntlist.colRef("rregno")));
- model.setValue("/root/send/senddetaildata/trngflag",grd_apntvolntlist.valueMatrix(grd_apntvolntlist.row, grd_apntvolntlist.colRef("trngflag")));
-
- submit("TRRTR00330");
- fRetrImage1();
- //exeReportPreview("RPRTR00303", "XMLSTR" , "" , "" , "true" , "", "", "", "", "true");
- exeReportPreview("RPRTR00303","XMLSTR");
- */
- }
- ]]>
- </script>
- <script type="javascript" ev:event="onaftersort">
- <![CDATA[
- grd_apntvolntlist.gridToInstance();
- ]]>
- </script>
- <script type="javascript" ev:event="onrowchanged">
- <![CDATA[
- fRefInfo();
- ]]>
- </script>
- </datagrid>
- <button id="button58" class="btn_sw" group="tab" selected="false" style="left:760px; top:442px; width:95px; height:22px; ">
- <caption>학술/단체</caption>
- <toggle case="case9" ev:event="onclick"/>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- // 학술단체내역
- m_case = 9;
- submit("TRRTR00311");
- ]]>
- </script>
- </button>
- <button id="button59" class="btn_sw" group="tab" selected="false" style="left:475px; top:442px; width:95px; height:22px; ">
- <caption>외국어</caption>
- <toggle case="case6" ev:event="onclick"/>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- // 외국어사항
- m_case = 6;
- submit("TRRTR00308");
- ]]>
- </script>
- </button>
- <button id="button60" class="btn_sw" group="tab" selected="true" style="left:0px; top:442px; width:95px; height:22px; ">
- <caption>희망근무지</caption>
- <toggle case="case1" ev:event="onclick"/>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- m_case = 1;
-
- // 전공의가 인턴일 경우
- if ( "I" == model.getValue("/root/send/trngflag") ) {
- model.setValue("/root/send/detailInfo/hopeflag", "1") ;
- submit("TRRTR00303");
- model.setValue("/root/send/detailInfo/hopeflag", "2") ;
- submit("TRRTR00304");
- } else {
- // 전공의가 레지던트 일경우
- submit("TRRTR00314");
- submit("TRRTR00315");
-
- }
- iscase1click = true;
- ]]>
- </script>
- </button>
- <button id="button61" class="btn_sw" group="tab" selected="false" style="left:380px; top:442px; width:95px; height:22px; ">
- <caption>경력</caption>
- <toggle case="case5" ev:event="onclick"/>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- // 경력사항
- m_case = 5;
- submit("TRRTR00307");
- ]]>
- </script>
- </button>
- <button id="button62" class="btn_sw" group="tab" selected="false" style="left:190px; top:442px; width:95px; height:22px; ">
- <caption>종교/병역</caption>
- <toggle case="case3" ev:event="onclick"/>
- </button>
- <button id="button63" class="btn_sw" group="tab" selected="false" style="left:285px; top:442px; width:95px; height:22px; ">
- <caption>학력</caption>
- <toggle case="case4" ev:event="onclick"/>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- // 학력사항
- m_case = 4;
- submit("TRRTR00306");
- ]]>
- </script>
- </button>
- <button id="button64" class="btn_sw" group="tab" selected="false" style="left:95px; top:442px; width:95px; height:22px; ">
- <caption>가족관계</caption>
- <toggle case="case2" ev:event="onclick"/>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- // 가족관계
- m_case = 2;
- submit("TRRTR00305");
- ]]>
- </script>
- </button>
- <button id="button65" class="btn_sw" group="tab" selected="false" style="left:665px; top:442px; width:95px; height:22px; ">
- <caption>상벌</caption>
- <toggle case="case8" ev:event="onclick"/>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- // 상벌내역
- m_case = 8;
- submit("TRRTR00310");
- ]]>
- </script>
- </button>
- <button id="button66" class="btn_sw" group="tab" selected="false" style="left:570px; top:442px; width:95px; height:22px; ">
- <caption>수련</caption>
- <toggle case="case7" ev:event="onclick"/>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- // 수련내역
- m_case = 7;
- submit("TRRTR00309");
- ]]>
- </script>
- </button>
- <button id="button67" class="btn_sw" group="tab" selected="false" style="left:950px; top:442px; width:95px; height:22px; ">
- <caption>채용성적</caption>
- <toggle case="case11" ev:event="onclick"/>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- m_case = 11;
- ]]>
- </script>
- </button>
- <button id="button68" class="btn_sw" group="tab" selected="false" style="left:855px; top:442px; width:95px; height:22px; ">
- <caption>신원보증인</caption>
- <toggle case="case10" ev:event="onclick"/>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- // 신원보증인
- m_case = 10;
- submit("TRRTR00312");
- ]]>
- </script>
- </button>
- <datagrid id="grd_gnrlinfo" nodeset="/root/main/gnrl/gnrlinfo" visibility="hidden" caption="채용정보번호^주민등록번호^영문 first 성명^영문 middle 성명^영문 last 성명^한글성명^한자성명^생년월일^생일구분^결혼여부^주거형태^국가코드^시력좌^시력우^출생지코드^본관^혈액형^신장^체중^취미^채용상태 ^수납일자^흡연여부^E-Mail주소^전화번호^휴대폰^보훈대상자^장애여부^장애등급^장애번호^우편번호1^우편번호2^우편번호순서^하위주소^본적우편번호1^본적우편번호2^본적우편번호순서^본적하위주소^종교^소속교회^세례명^세레명^영명일^견진일자^의사 면허번호 ^의사면허 발행일^armyyn^gownsize^병역구분^복무기간시작일자^복무기간종료일자^계급^병과^군별^군번^제대구분^신체등급" colsep="^" colwidth="27, 19, 20, 18, 24, 23, 18, 25, 26, 19, 19, 19, 30, 33, 34, 32, 40, 32, 32, 27, 31, 21, 28, 27, 16, 30, 27, 17, 22, 19, 48, 48, 23, 28, 17, 23, 21, 50, 20, 16, 50, 50, 13, 24, 24, 50, 48, 64, 25, 50, 50, 56, 50, 21, 50, 15, 50" dataheight="25" extendlastcol="scroll" mergecellsfixedrows="bycolrec" rowheader="update" rowheight="25" rowsep="|" style="left:65px; top:545px; width:1045px; height:100px; ">
- <col ref="apntinfono"/>
- <col ref="rregno"/>
- <col ref="engfstnm"/>
- <col ref="engmdlnm"/>
- <col ref="englastnm"/>
- <col ref="korname" type="input"/>
- <col ref="chinm"/>
- <col ref="brthmd"/>
- <col ref="brthflag"/>
- <col ref="maryyn"/>
- <col ref="hometype"/>
- <col ref="naticd"/>
- <col ref="lvisact"/>
- <col ref="rvisact"/>
- <col ref="brthareacd"/>
- <col ref="anchome"/>
- <col ref="btypeabo"/>
- <col ref="btyperh"/>
- <col ref="bdht"/>
- <col ref="bdwt"/>
- <col ref="hoby"/>
- <col ref="apntstat"/>
- <col ref="acptdd"/>
- <col ref="smokyn"/>
- <col ref="emailid"/>
- <col ref="emailaddr"/>
- <col ref="etcemailaddr"/>
- <col ref="supppsntel"/>
- <col ref="supppsnmpphonno"/>
- <col ref="bhtrgtpsnyn"/>
- <col ref="handcapyn"/>
- <col ref="handcapgrde"/>
- <col ref="handcapno"/>
- <col ref="zipcd1"/>
- <col ref="zipcd2"/>
- <col ref="zipcdseq"/>
- <col ref="infaddr1"/>
- <col ref="infaddr2"/>
- <col ref="domizipcd1"/>
- <col ref="domizipcd2"/>
- <col ref="domizipcdseq"/>
- <col ref="domiinfaddr1"/>
- <col ref="domiinfaddr2"/>
- <col ref="religncd"/>
- <col ref="chrchnm"/>
- <col ref="baptnm"/>
- <col ref="baptdd"/>
- <col ref="fairnmdd"/>
- <col ref="rtconfmdd"/>
- <col ref="drlincno"/>
- <col ref="drlincissdd"/>
- <col ref="armyyn"/>
- <col ref="gownsize"/>
- <col ref="armyupdateyn"/>
- <col ref="mltrflag"/>
- <col ref="srvarmtermfromdd"/>
- <col ref="srvarmtermtodd"/>
- <col ref="classcd"/>
- <col ref="brnhmiltsrvccd"/>
- <col ref="armyclscd"/>
- <col ref="sn"/>
- <col ref="dembztflag"/>
- <col ref="bodygrde"/>
- <!--재학석차-->
- <col ref="bngschoolrank"/>
- <!--재학인원-->
- <col ref="bngschoolpsnno"/>
- <!--재학등급-->
- <col ref="bngschoolgrde"/>
- <!--재학성적환산점수-->
- <col ref="bngschoolchgpnt"/>
- <!--국시총점-->
- <col ref="natiexamtotpnt"/>
- <!--필기/국시환산점수-->
- <col ref="taknnotechgpnt"/>
- <!--선택평가환산점수-->
- <col ref="choivaluechgpnt"/>
- <!--영어선택코드-->
- <col ref="engchgpnt"/>
- <!--영어환산점수-->
- <col ref="engchoicd"/>
- <!--전산자격증-->
- <col ref="compulinc"/>
- <!--전산자격증환산점수-->
- <col ref="compulincchgpnt"/>
- <!--전산자격증체크-->
- <col ref="compulincchk"/>
- <!--사회봉사활동-->
- <col ref="soclvoluntract"/>
- <!--사회봉사활동환산점수-->
- <col ref="soclvoluntractchgpnt"/>
- <!--사회봉사활동체크-->
- <col ref="soclvoluntractchk"/>
- <!--usmle자격증-->
- <col ref="usmlelinc"/>
- <!--usmle환산점수-->
- <col ref="usmlechgpnt"/>
- <!--인턴만점-->
- <col ref="intnperscore"/>
- <!--인턴석차-->
- <col ref="intnrank"/>
- <!--인턴인원-->
- <col ref="intnpsnno"/>
- <!--인턴총점-->
- <col ref="intntotpnt"/>
- <!--인턴판정-->
- <col ref="intnjudg"/>
- <!--인턴등급-->
- <col ref="intngrde"/>
- <!--인턴판정환산점수-->
- <col ref="intnjudgchgpnt"/>
- <!--레지던트만점-->
- <col ref="residentperfscore"/>
- <!--레지던트석차-->
- <col ref="residentrank"/>
- <!--레지던트인원-->
- <col ref="residentpsnno"/>
- <!--레지던트총점-->
- <col ref="residenttotpnt"/>
- <!--레지던트판정-->
- <col ref="residentjudg"/>
- <!--레지던트등급-->
- <col ref="residentgrde"/>
- <!--레지던트판정환산점수-->
- <col ref="residentjudgchgpnt"/>
- <!--면접점수-->
- <col ref="intvpnt"/>
- <!--실기점수-->
- <col ref="pracpnt"/>
- <!--석차-->
- <col ref="rank"/>
- <col ref="toeicchkbox"/>
- <col ref="toeflchkbox"/>
- <col ref="tepschkbox"/>
- <col ref="toeicpnt"/>
- <col ref="toeflpnt"/>
- <col ref="tepspnt"/>
- <col ref="toeflpbtpnt"/>
- <col ref="toeflcbtpnt"/>
- <col ref="toeflibtpnt"/>
- <col ref="toeicseqno"/>
- <col ref="toeflseqno"/>
- <col ref="tepsseqno"/>
- <col ref="toeflpbtseqno"/>
- <col ref="toeflcbtseqno"/>
- <col ref="toeflibtseqno"/>
- <col ref="totpnt"/>
- <col ref="photimg"/>
- <col ref="imgupdateyn"/>
- <col ref="bankcd"/>
- <col ref="acntno"/>
- <col ref="soclvoluntracttm"/>
- <col ref="soclvoluntractnm"/>
- <col ref="compulincissinst"/>
- <col ref="resinatiexamtotpnt"/>
- <col ref="resisoclvoluntracttm"/>
- <col ref="resisoclvoluntract"/>
- <col ref="resitaknnotechgpnt"/>
- <col ref="resibngschoolchgpnt"/>
- <col ref="resibngschoolrank"/>
- <col ref="resibngschoolpsnno"/>
- <col ref="intnavgpnt"/>
- <col ref="clssvcstatcd"/>
- <col ref="gndr"/>
- <col ref="rcptstatupdtyn"/>
- <col ref="trngflag"/>
- <col ref="careryn"/>
- <col ref="welfprtno1"/>
- <col ref="welfprtno2"/>
- <col ref="welfprtno1regtdd"/>
- <col ref="welfprtno2regtdd"/>
- </datagrid>
- <input id="ipt_handcapno" ref="/root/main/gnrldata/gnrlinfo/handcapno" class="input_default" style="left:924px; top:295px; width:87px; height:19px; font-size:10pt; "/>
- <select1 id="cmb_handcapgrde" ref="/root/main/gnrldata/gnrlinfo/handcapgrde" class="combo_default" appearance="minimal" style="left:745px; top:295px; width:80px; height:19px; font-size:10pt; ">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </select1>
- <select1 id="cmb_handcapyn" ref="/root/main/gnrldata/gnrlinfo/handcapyn" class="combo_default" appearance="minimal" style="left:569; top:343px; width:91; height:19px; font-size:10pt; ">
- <choices>
- <item>
- <label>유</label>
- <value>Y</value>
- </item>
- <item>
- <label>무</label>
- <value>N</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- // 장애여부 체크
- fSetHandcap();
- ]]>
- </script>
- </select1>
- <caption id="caption102" class="cell_1" style="left:490px; top:341px; width:77; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">장애여부</caption>
- <caption id="caption103" class="cell_1" style="left:663; top:293px; width:77; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">장애등급</caption>
- <caption id="caption104" class="cell_1" style="left:830px; top:293px; width:90px; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">장애등급번호</caption>
- <line id="line79" class="line_1" style="x1:1020px; y1:96px; x2:1195px; y2:97px; "/>
- <caption id="caption105" class="cell_1" style="left:1020px; top:101px; width:170px; height:209px; vertical-align:middle; "/>
- <img id="img_photimg" ref="/root/main/gnrldata/gnrlinfo/photimg" src="../../../com/commonweb/images/no_image.gif" style="left:1026px; top:104px; width:154px; height:181px; text-align:center; vertical-align:middle; background-repeat:no-repeat; background-stretch:stretch; background-position:center; "/>
- <img id="img_hidden" visibility="hidden" style="left:1030px; top:105px; width:150px; height:170px; text-align:center; vertical-align:middle; background-repeat:no-repeat; background-stretch:stretch; background-position:center; "/>
- <button id="button109" class="btn2_letter10" style="left:1040px; top:288px; width:130px; height:19px; text-align:center; ">
- <caption>사 진 변 경</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var file = openImageFileDialog(1048576); // image 파일이 너무 크면 submit 시간이 매우 오래(5분이상) 걸리므로 가급적 사이즈를 작게 제한한다.
- if (file == "") {
- return;
- }
- fChangeImage(file);
- if (model.getValue("/root/main/gnrldata/gnrlinfo/imgupdateyn") == "Y" ) {
- model.setValue("/root/main/gnrldata/gnrlinfo/imgupdateyn", "UPDATE");
- } else {
- model.setValue("/root/main/gnrldata/gnrlinfo/imgupdateyn", "INSERT");
- }
-
- model.setFocus("ipt_korname");
- model.refresh();
- ]]>
- </script>
- </button>
- <input id="input62" ref="/root/main/gnrldata/gnrlinfo/chinm" class="input_default" imemode="hangul" style="left:924px; top:103px; width:87px; height:19px; font-size:10pt; "/>
- <caption id="caption107" class="cell_1" style="left:830px; top:101px; width:90px; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">한자이름</caption>
- <input id="input659" ref="/root/main/gnrldata/gnrlinfo/supppsnmpphonno" class="input_default" style="left:569; top:175px; width:91; height:19px; font-size:10pt; "/>
- <button id="button111" class="icon_search" style="left:767px; top:416px; width:16px; height:16px; ">
- <caption/>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- /* 우편번호 Help화면 Popup */
- var recv_list = "domizipcd1,domizipcd2,domiinfaddr1";
- rpbfOpenZipCdHelp(ipt_domizipcd1, recv_list);
- model.refresh();
- ]]>
- </script>
- </button>
- <input id="ipt_domiinfaddr1" ref="/root/main/gnrldata/gnrlinfo/domiinfaddr1" class="input_default" style="left:790px; top:415px; width:200; height:19px; "/>
- <caption id="caption110" class="cell_1" style="left:830px; top:269px; width:90px; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">접수일</caption>
- <caption id="caption111" class="cell_1" style="left:830px; top:245px; width:90px; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">상태</caption>
- <output id="opt_apntstatnm" ref="/root/main/gnrldata/gnrlinfo/apntstatnm" class="output_fix" appearance="output" style="left:924px; top:247px; width:87px; height:19px; font-size:10pt; "/>
- <input id="input459" ref="/root/main/gnrldata/gnrlinfo/acptdd" class="input_default" inputtype="date" style="left:924px; top:271px; width:87px; height:19px; font-size:10pt; "/>
- <button id="btn_rcpt" class="btn5_letter2" style="left:1075px; top:75px; width:42px; height:19px; ">
- <caption>수납</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var apntstat = model.getValue("/root/main/gnrldata/gnrlinfo/rcptstatupdtyn");
- if ( apntstat == 'N' ) {
- messageBox("이미 합격/불합격 처리가 되었습니다. 수납처리를","E001");
- return;
- }
-
- var retMes = messageBox("수납 하시겠습니까?", "Q999");
- if ( retMes != 6) {
- return;
- }
-
- model.setValue("/root/send/detailInfo/rcptflag", "2");
- misfSave("TXRTR00304");
- // 지원자리스트
- submit("TRRTR00301");
- ]]>
- </script>
- </button>
- <select1 id="cmb_gownsize" ref="/root/main/gnrldata/gnrlinfo/gownsize" class="combo_default" appearance="minimal" style="left:745px; top:270px; width:80px; height:19px; font-size:10pt; ">
- <choices>
- <item>
- <label>S</label>
- <value>S</value>
- </item>
- <item>
- <label>M</label>
- <value>M</value>
- </item>
- <item>
- <label>L</label>
- <value>L</value>
- </item>
- <item>
- <label>XL</label>
- <value>XL</value>
- </item>
- <item>
- <label>XXL</label>
- <value>XXL</value>
- </item>
- <item>
- <label>XXXL</label>
- <value>XXXL</value>
- </item>
- </choices>
- </select1>
- <caption id="caption113" class="cell_1" style="left:663; top:269px; width:77; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">가운사이즈</caption>
- <input id="input73" ref="/root/temp/totpsnno" class="output_search" editable="false" style="left:185px; top:415px; width:151px; height:19px; font-size:10pt; text-align:center; "/>
- <caption id="caption114" class="cell_1" style="left:0px; top:414px; width:180px; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">총인원</caption>
- <line id="line80" class="line_1" style="x1:0px; y1:409px; x2:480px; y2:409px; font-size:10pt; "/>
- <group id="group3" style="left:0px; top:5px; width:1195px; height:65px; vertical-align:top; ">
- <shape id="roundrect2" appearance="roundrect" ellipsewidth="10" ellipseheight="10" style="left:0px; top:0px; width:1190px; height:63px; background-color:#fffbf2; border-color:#ffd799; "/>
- <input id="input6" ref="/root/send/deptdg" class="input_s_essential" format="9" style="left:386px; top:38px; width:22px; height:19px; font-weight:bold; "/>
- <button id="btn_search" class="btn1_letter2" style="left:1125px; top:22px; width:56px; height:22px; text-align:left; ">
- <caption>조회</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- //필수 입력 항목 체크(공통 ftHelper.js)
- if ( !isRequiredControls("ipt_apntyy", "cmb_supinfqurtyyflag", "cmb_fstlattrmflag", "cmb_trngflag", "cmb_dentyn") ) {
- return false;
- }
-
- if ( model.getValue("/root/send/trngflag") == "I") {
- grd_hopeorddeptlist.attribute("visibility") = "visible";
- grd_hopehosplist.attribute("visibility") = "visible";
-
- grd_resihopeorddeptlist.attribute("visibility") = "hidden";
- grd_resihopehosplist.attribute("visibility") = "hidden";
-
- grp_resi.visible = false;
- grp_intn.visible = true;
- } else {
- grd_hopeorddeptlist.attribute("visibility") = "hidden";
- grd_hopehosplist.attribute("visibility") = "hidden";
-
- grd_resihopeorddeptlist.attribute("visibility") = "visible";
- grd_resihopehosplist.attribute("visibility") = "visible";
-
- grp_resi.visible = true;
- grp_intn.visible = false;
- }
- model.resetInstanceNode("/root/main/gnrldata/gnrlinfo");
- model.resetInstanceNode("/root/main/hopehosplist");
- model.resetInstanceNode("/root/main/hopeorddeptlist");
- model.resetInstanceNode("/root/main/famyrellist");
- model.resetInstanceNode("/root/main/schollist");
- model.resetInstanceNode("/root/main/carerfactlist");
- model.resetInstanceNode("/root/main/forelangfactlist");
- model.resetInstanceNode("/root/main/trngspeclist");
- model.resetInstanceNode("/root/main/prizrpmdlist");
- model.resetInstanceNode("/root/main/scinccmntspeclist");
- model.resetInstanceNode("/root/main/grntorlist");
- model.resetInstanceNode("/root/main/resihopeorddeptlist");
- model.resetInstanceNode("/root/main/resihopehosplist");
- model.refresh();
- submit("TRRTR00301");
-
- try {
- // 지원자 총 인원등 보여준다.
- model.makeValue("/root/temp/totpsnno", grd_apntvolntlist.rows -1);
- model.refresh();
- } catch (ex) {
- //alert(ex.name +" ["+ ex.number +"] \n"+ ex.message);
- }
-
- if (model.getValue("/root/temp/totpsnno") == "1")
- {
- grd_apntvolntlist.row = 1;
- fRefInfo();
- }
-
-
- if (model.getValue("/root/send/trngflag") == "I")
- {
- }
- else if (model.getValue("/root/send/trngflag") == "R")
- {
- }
- ]]>
- </script>
- </button>
- <line id="line82" class="line_4" style="x1:1110px; y1:6px; x2:1110px; y2:52px; border-color:#ffe4bb; border-left-style:solid; "/>
- <caption id="caption116" class="search_name" style="left:15px; top:39px; width:86px; height:17px; ">이 름 :</caption>
- <input id="input74" ref="/root/send/korname" class="input_search" imemode="hangul" style="left:100px; top:38px; width:90; height:19px; ">
- <script type="javascript" ev:event="onkeyup">
- <![CDATA[
- inputEnterKey("btn_search", "DOMActivate");
- ]]>
- </script>
- </input>
- <caption id="caption117" class="search_name" style="left:210px; top:39px; width:125px; height:17px; ">과구분 :</caption>
- <input id="input75" ref="/root/send/fromexamno" class="input_search" style="left:515px; top:38px; width:90px; height:19px; "/>
- <select1 id="cmb_trngflag" ref="/root/send/trngflag" class="combo_s_essential" appearance="minimal" style="left:820px; top:10px; width:90px; height:19px; ">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
-
- if (model.getValue("/root/send/trngflag") == "R") {
- cmb_resiorddeptcd.visible = true;
- cmb_intnorddeptcd.visible = false;
- model.setValue("/root/send/intnorddeptcd", "");
- } else {
- cmb_resiorddeptcd.visible = false;
- cmb_intnorddeptcd.visible = true;
- model.setValue("/root/send/resiorddeptcd", "");
- }
- ]]>
- </script>
- </select1>
- <caption id="caption118" class="search_name" style="left:720px; top:9px; width:110px; height:17px; ">전공의구분 :</caption>
- <caption id="caption119" class="search_name" style="left:15px; top:9px; width:86px; height:17px; ">년 도 :</caption>
- <caption id="caption120" class="search_name" style="left:210px; top:9px; width:86px; height:17px; ">상하반기 :</caption>
- <caption id="caption121" class="search_name" style="left:425px; top:9px; width:86px; height:17px; ">전후기 :</caption>
- <select1 id="cmb_dentyn" ref="/root/send/dentyn" class="combo_s_essential" appearance="minimal" style="left:1002px; top:10px; width:90px; height:19px; ">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </select1>
- <caption id="caption122" class="search_name" style="left:915px; top:9px; width:96px; height:17px; ">치과여부 :</caption>
- <select1 id="cmb_fstlattrmflag" ref="/root/send/fstlattrmflag" class="combo_s_essential" appearance="minimal" style="left:515px; top:10px; width:90px; height:19px; ">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </select1>
- <select1 id="cmb_supinfqurtyyflag" ref="/root/send/supinfqurtyyflag" class="combo_s_essential" appearance="minimal" style="left:295px; top:10px; width:90; height:19px; ">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </select1>
- <caption id="caption123" class="search_name" style="left:425px; top:39px; width:86px; height:17px; ">수험번호 :</caption>
- <input id="input77" ref="/root/send/apntyy" class="input_s_essential" style="left:100px; top:10px; width:90; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if (cur_yy > parseInt(input77.value)) {
- btn_save.disabled = true;
- } else {
- btn_save.disabled = false;
- }
- ]]>
- </script>
- </input>
- <select1 id="rad_apntstat" ref="/root/send/apntstat" appearance="full" cols="5" overflow="visible" style="left:815px; top:42px; width:305px; height:15px; border-style:none; ">
- <choices>
- <item>
- <label>전체</label>
- <value/>
- </item>
- <item>
- <label>온라인접수</label>
- <value>1</value>
- </item>
- <item>
- <label>수납확인</label>
- <value>2</value>
- </item>
- <item>
- <label>합격</label>
- <value>3</value>
- </item>
- <item>
- <label>불합격</label>
- <value>4</value>
- </item>
- </choices>
- </select1>
- <caption id="caption17" class="search_name" style="left:720px; top:41px; width:90px; height:17px; ">채용상태 :</caption>
- <select1 id="cmb_intnorddeptcd" ref="/root/send/intnorddeptcd" class="combo_default" visibility="hidden" appearance="minimal" style="left:295px; top:38px; width:90; height:19px; ">
- <choices>
- <item>
- <label>전체</label>
- <value/>
- </item>
- <item>
- <label>의과</label>
- <value>XXXX</value>
- </item>
- <item>
- <label>보철과</label>
- <value>PT</value>
- </item>
- <item>
- <label>구강외과</label>
- <value>OT</value>
- </item>
- <item>
- <label>교정과</label>
- <value>OD</value>
- </item>
- </choices>
- </select1>
- <input id="input4" ref="/root/send/toexamno" class="input_search" style="left:625px; top:38px; width:90px; height:19px; "/>
- <caption id="caption37" style="left:610px; top:41px; width:25px; height:20px; ">~</caption>
- <select1 id="cmb_resiorddeptcd" ref="/root/send/resiorddeptcd" class="combo_s_essential" visibility="visible" appearance="minimal" style="left:295px; top:38px; width:90px; height:19px; ">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </select1>
- </group>
- <input id="ipt_rregno" ref="/root/main/gnrldata/gnrlinfo/rregno" class="input_default" dragmode="true" editable="false" format="999999-9999999" showmask="true" appearance="input" style="left:569; top:103px; width:91; height:19px; font-size:10pt; "/>
- <line id="line83" class="line_1" style="x1:490px; y1:95px; x2:1010px; y2:95px; font-size:10pt; "/>
- <caption id="caption124" class="cell_1" style="left:830px; top:125px; width:90px; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">first</caption>
- <input id="input26" ref="/root/main/gnrldata/gnrlinfo/engmdlnm" class="input_default" imemode="disabled" style="left:745px; top:126px; width:80px; height:19px; font-size:10pt; "/>
- <input id="input82" ref="/root/main/gnrldata/gnrlinfo/engfstnm" class="input_default" imemode="disabled" style="left:924px; top:126px; width:87px; height:19px; font-size:10pt; "/>
- <button id="btn_domizipcd" class="icon_search" style="left:767px; top:390px; width:16px; height:16px; ">
- <caption/>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- /* 우편번호 Help화면 Popup */
- var recv_list = "zipcd1,zipcd2,infaddr1";
- rpbfOpenZipCdHelp(ipt_zipcd1, recv_list);
- model.refresh();
- ]]>
- </script>
- </button>
- <caption id="caption9" style="left:705px; top:390px; width:10px; height:20px; ">-</caption>
- <input id="ipt_infaddr1" ref="/root/main/gnrldata/gnrlinfo/infaddr1" class="input_default" style="left:790px; top:390px; width:200; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- /* 우편번호 Validation Check
- misfValidationCheck(Validation 종류(부서코드, 공통코드, 우편번호...), 공통코드군, 자료를 받을 Instance Node(콤마로 분류해서 넘기면됨)) */
- misfValidationCheck("04", "", "zipcd1,zipcd2,infaddr1" );
- model.refresh();
- ]]>
- </script>
- </input>
- <input id="ipt_zipcd1" ref="/root/main/gnrldata/gnrlinfo/zipcd1" class="input_default" disabled="true" editable="false" appearance="input" style="left:660px; top:390px; width:42px; height:19px; "/>
- <input id="ipt_zipcd2" ref="/root/main/gnrldata/gnrlinfo/zipcd2" class="input_default" disabled="true" editable="false" appearance="input" style="left:718px; top:390px; width:42px; height:19px; "/>
- <switch id="switch2" style="left:0px; top:465px; width:1195px; height:270px; ">
- <case id="case11">
- <group id="grp_intn" visibility="hidden" style="left:0px; top:0px; width:1185px; height:260px; ">
- <caption id="caption100" class="tit_2" style="left:10; top:10; width:117px; height:13px; ">인턴 채용성적</caption>
- <input id="output1" ref="/root/main/gnrldata/gnrlinfo/natiexamtotpnt" class="input_search" showmask="true" appearance="input" style="left:113px; top:33px; width:397px; height:19px; "/>
- <select1 id="cmb_compulinc" ref="/root/main/gnrldata/gnrlinfo/compulincissinst" class="combo_default" appearance="minimal" style="left:514px; top:162px; width:205px; height:19px; ">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </select1>
- <caption id="caption13" class="cell_1" style="left:256px; top:55px; width:110px; height:23px; text-align:center; vertical-align:middle; ">재학성적 인원</caption>
- <line id="line26" class="line_1" style="x1:0px; y1:28px; x2:1025px; y2:27px; "/>
- <input id="input13" ref="/root/main/gnrldata/gnrlinfo/bngschoolrank" class="input_search" showmask="true" appearance="input" style="left:113px; top:57px; width:140px; height:19px; "/>
- <output id="input14" ref="/root/main/gnrldata/gnrlinfo/taknnotechgpnt" class="output_search" appearance="output" style="left:630px; top:33px; width:400px; height:19px; "/>
- <output id="input15" ref="/root/main/gnrldata/gnrlinfo/bngschoolchgpnt" class="output_search" appearance="output" style="left:890px; top:57px; width:140px; height:19px; "/>
- <output id="input16" ref="/root/main/gnrldata/gnrlinfo/bngschoolgrde" class="output_search" appearance="output" style="left:630px; top:57px; width:140px; height:19px; "/>
- <output id="input17" ref="/root/main/gnrldata/gnrlinfo/choivaluechgpnt" class="output_search" appearance="output" style="left:890px; top:135px; width:140px; height:19px; "/>
- <input id="input172" ref="/root/main/gnrldata/gnrlinfo/soclvoluntractnm" class="input_search" maxlength="40" appearance="input" style="left:370px; top:137px; width:350px; height:19px; "/>
- <caption id="caption18" class="cell_1" style="left:775px; top:55px; width:110px; height:23px; text-align:center; vertical-align:middle; ">성적환산점수</caption>
- <input id="output2" ref="/root/main/gnrldata/gnrlinfo/bngschoolpsnno" class="input_search" showmask="true" appearance="input" style="left:370px; top:57px; width:140px; height:19px; "/>
- <line id="line3" class="line_1" style="x1:0px; y1:131px; x2:1025px; y2:130px; "/>
- <select1 id="cmb_usmlelinc" ref="/root/main/gnrldata/gnrlinfo/usmlelinc" class="combo_default" appearance="minimal" style="left:370px; top:184px; width:140px; height:19px; font-size:10pt; ">
- <choices>
- <item>
- <label>없음</label>
- <value/>
- </item>
- <item>
- <label>STEP1</label>
- <value>1</value>
- </item>
- <item>
- <label>STEP2</label>
- <value>2</value>
- </item>
- <item>
- <label>STEP3</label>
- <value>3</value>
- </item>
- </choices>
- </select1>
- <select id="chk_compulincchk" ref="/root/main/gnrldata/gnrlinfo/compulincchk" visibility="hidden" overflow="visible" appearance="full" style="left:1150px; top:60px; width:30px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <select id="chk_soclvoluntractchk" ref="/root/main/gnrldata/gnrlinfo/soclvoluntractchk" visibility="hidden" overflow="visible" appearance="full" style="left:725px; top:137px; width:100px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <select1 id="rdo_engchoicd" ref="/root/main/gnrldata/gnrlinfo/engchoicd" visibility="visible" appearance="full" overflow="visible" style="left:235px; top:135px; width:100px; height:115px; line-spacing:7; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>01</value>
- </item>
- <item>
- <label/>
- <value>05</value>
- </item>
- <item>
- <label/>
- <value>06</value>
- </item>
- <item>
- <label/>
- <value>07</value>
- </item>
- <item>
- <label/>
- <value>08</value>
- </item>
- </choices>
- </select1>
- <caption id="caption19" class="cell_1" style="left:0px; top:79px; width:110px; height:23px; text-align:center; vertical-align:middle; ">면접 점수</caption>
- <output id="input7" ref="/root/main/gnrldata/gnrlinfo/intvpnt" class="output_search" showmask="true" appearance="output" style="left:113px; top:81px; width:140px; height:19px; "/>
- <caption id="caption20" class="cell_1" style="left:256px; top:79px; width:110px; height:23px; text-align:center; vertical-align:middle; ">실기 점수</caption>
- <output id="input8" ref="/root/main/gnrldata/gnrlinfo/pracpnt" class="output_search" showmask="true" appearance="output" style="left:370px; top:81px; width:140px; height:19px; "/>
- <caption id="caption12" class="cell_1" style="left:0px; top:31px; width:110px; height:23px; text-align:center; vertical-align:middle; ">국시점수</caption>
- <caption id="caption11" class="cell_1" style="left:0px; top:55px; width:110px; height:23px; text-align:center; vertical-align:middle; ">재학성적 석차</caption>
- <caption id="caption14" class="cell_1" style="left:517px; top:55px; width:110px; height:23px; text-align:center; vertical-align:middle; ">등급</caption>
- <caption id="caption15" class="cell_1" style="left:517px; top:31px; width:110px; height:23px; text-align:center; vertical-align:middle; ">국시환산점수</caption>
- <caption id="caption22" class="cell_1" style="left:0px; top:134px; width:25px; height:119px; text-align:center; vertical-align:middle; ">영어성적</caption>
- <caption id="caption23" class="cell_1" style="left:26px; top:134px; width:84px; height:23px; text-align:center; vertical-align:middle; ">TOEIC</caption>
- <input id="input23" ref="/root/main/gnrldata/gnrlinfo/toeicpnt" class="input_search" disabled="true" showmask="true" appearance="input" style="left:113px; top:136px; width:117px; height:19px; "/>
- <caption id="caption24" class="cell_1" style="left:26px; top:158px; width:84px; height:23px; text-align:center; vertical-align:middle; ">TEPS</caption>
- <input id="input20" ref="/root/main/gnrldata/gnrlinfo/tepspnt" class="input_search" disabled="true" showmask="true" appearance="input" style="left:113px; top:160px; width:117px; height:19px; "/>
- <caption id="caption25" class="cell_1" style="left:26px; top:182px; width:84px; height:23px; text-align:center; vertical-align:middle; ">TOEFL PBT</caption>
- <input id="input21" ref="/root/main/gnrldata/gnrlinfo/toeflpbtpnt" class="input_search" disabled="true" showmask="true" appearance="input" style="left:113px; top:184px; width:117px; height:19px; "/>
- <caption id="caption21" class="cell_1" style="left:26px; top:206px; width:84px; height:23px; text-align:center; vertical-align:middle; ">TOEFL CBT</caption>
- <input id="input9" ref="/root/main/gnrldata/gnrlinfo/toeflcbtpnt" class="input_search" disabled="true" showmask="true" appearance="input" style="left:113px; top:208px; width:117px; height:19px; "/>
- <caption id="caption30" class="cell_1" style="left:26px; top:230px; width:84px; height:23px; text-align:center; vertical-align:middle; ">TOEFL IBT</caption>
- <input id="input10" ref="/root/main/gnrldata/gnrlinfo/toeflibtpnt" class="input_search" disabled="true" showmask="true" appearance="input" style="left:113px; top:232px; width:117px; height:19px; "/>
- <caption id="caption26" class="cell_1" style="left:255px; top:158px; width:110px; height:23px; text-align:center; vertical-align:middle; ">전산자격증</caption>
- <caption id="caption27" class="cell_1" style="left:256px; top:182px; width:110px; height:23px; text-align:center; vertical-align:middle; ">USMLE</caption>
- <caption id="caption28" class="cell_1" style="left:775px; top:134px; width:111px; height:23px; text-align:center; vertical-align:middle; ">선택평가 합계 점수</caption>
- <caption id="caption29" class="cell_1" style="left:256px; top:134px; width:110px; height:23px; text-align:center; vertical-align:middle; ">사회의료봉사활동</caption>
- <button id="button1" class="icon_search" style="left:750px; top:138px; width:16px; height:16px; ">
- <caption/>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- //필수 입력 항목 체크(공통 ftHelper.js)
- if ( !isRequiredControls("ipt_apntyy", "cmb_supinfqurtyyflag", "cmb_fstlattrmflag", "cmb_trngflag", "cmb_dentyn", "cnb_scrngflag") ) {
- return false;
- }
- /*
- pwindow_name : Open할 window명
- pcontrol_name : OPEN하는 Control명(Grid,Input.....)
- precv_list: 리턴받을 Instance명 (마지막 Element만 ','로 분리)
- pdefault_value : 부모 윈도우에서 넘어오는 값
- pcheck_yn : 선택형 팝업창인지 아닌지를 체크
-
- function rpbfOpenPopUpList(pwindow_name, pcontrol_name, precv_list, pdefault_value, pcheck_yn) {
- */
-
- rpbfOpenPopUpList("SPRTR00301", ipt_soclvoluntract, "soclvoluntract,soclvoluntracttm", "ipt_soclvoluntracttm,ipt_soclvoluntract,cmb_trngflag","N");
- model.refresh();
- ]]>
- </script>
- </button>
- <input id="ipt_soclvoluntracttm" ref="/root/main/gnrldata/gnrlinfo/soclvoluntracttm" class="input_search" visibility="hidden" maxlength="40" appearance="input" style="left:1155px; top:40px; width:27px; height:19px; "/>
- <input id="ipt_soclvoluntract" ref="/root/main/gnrldata/gnrlinfo/soclvoluntract" class="input_search" visibility="hidden" maxlength="40" appearance="input" style="left:1150px; top:15px; width:30px; height:19px; "/>
- <select1 id="cmb_compulincissinst" ref="/root/main/gnrldata/gnrlinfo/compulinc" class="combo_default" appearance="minimal" style="left:370px; top:162px; width:140px; height:19px; ">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </select1>
- <caption id="caption130" class="cell_1" style="left:517px; top:80px; width:110px; height:23px; text-align:center; vertical-align:middle; ">복지부번호1</caption>
- <caption id="caption131" class="cell_1" style="left:775px; top:80px; width:110px; height:23px; text-align:center; vertical-align:middle; ">복지부등록일1</caption>
- <caption id="caption132" class="cell_1" style="left:517px; top:104px; width:110px; height:23px; text-align:center; vertical-align:middle; ">복지부번호2</caption>
- <caption id="caption133" class="cell_1" style="left:775px; top:104px; width:110px; height:23px; text-align:center; vertical-align:middle; ">복지부등록일2</caption>
- <input id="input12" ref="/root/main/gnrldata/gnrlinfo/welfprtno1" style="left:630px; top:81px; width:140px; height:19px; "/>
- <input id="input18" ref="/root/main/gnrldata/gnrlinfo/welfprtno2" style="left:630px; top:105px; width:140px; height:19px; "/>
- <input id="input22" ref="/root/main/gnrldata/gnrlinfo/welfprtno1regtdd" inputtype="date" style="left:890px; top:81px; width:140px; height:19px; "/>
- <input id="input49" ref="/root/main/gnrldata/gnrlinfo/welfprtno2regtdd" inputtype="date" style="left:890px; top:105px; width:140px; height:19px; "/>
- </group>
- <group id="grp_resi" style="left:0px; top:0; width:1185px; height:260px; ">
- <caption id="caption1" class="tit_2" style="left:10px; top:10px; width:140px; height:13px; ">레지던트 채용성적</caption>
- <input id="input3" ref="/root/main/gnrldata/gnrlinfo/resinatiexamtotpnt" class="input_search" navindex="101" showmask="true" appearance="input" style="left:113px; top:33px; width:210; height:19px; "/>
- <caption id="caption2" class="cell_1" style="left:111px; top:55px; width:110px; height:23px; text-align:center; vertical-align:middle; ">총점</caption>
- <line id="line1" class="line_1" style="x1:0px; y1:28px; x2:1000; y2:27px; "/>
- <input id="input5" ref="/root/main/gnrldata/gnrlinfo/intnperscore" class="input_search" navindex="103" maxlength="8" showmask="true" appearance="input" style="left:223px; top:82; width:100px; height:19px; "/>
- <output id="output3" ref="/root/main/gnrldata/gnrlinfo/resitaknnotechgpnt" class="output_search" format="####.00" appearance="output" style="left:440px; top:33px; width:318; height:19px; "/>
- <output id="output4" ref="/root/main/gnrldata/gnrlinfo/intnjudgchgpnt" class="output_search" appearance="output" style="left:878px; top:82; width:100px; height:19px; "/>
- <caption id="caption3" class="cell_1" style="left:763px; top:79; width:110px; height:23px; text-align:center; vertical-align:middle; ">판정 환산점수</caption>
- <input id="input11" ref="/root/main/gnrldata/gnrlinfo/intntotpnt" class="input_search" navindex="102" maxlength="8" showmask="true" appearance="input" style="left:223px; top:57px; width:100px; height:19px; "/>
- <line id="line2" class="line_1" style="x1:0px; y1:111px; x2:1000; y2:110px; "/>
- <caption id="caption5" class="cell_1" style="left:0px; top:211px; width:110px; height:23px; text-align:center; vertical-align:middle; ">면접 점수</caption>
- <output id="output7" ref="/root/main/gnrldata/gnrlinfo/resiintvpnt" class="output_search" format="####.##" showmask="true" appearance="output" style="left:113px; top:213px; width:210; height:19px; "/>
- <caption id="caption7" class="cell_1" style="left:327px; top:211px; width:110px; height:23px; text-align:center; vertical-align:middle; ">실기 점수</caption>
- <output id="output8" ref="/root/main/gnrldata/gnrlinfo/resipracpnt" class="output_search" format="####.##" showmask="true" appearance="output" style="left:440px; top:213px; width:100; height:19px; "/>
- <caption id="caption8" class="cell_1" style="left:0px; top:31px; width:110px; height:23px; text-align:center; vertical-align:middle; ">필기점수</caption>
- <caption id="caption10" class="cell_1" style="left:0px; top:55px; width:110px; height:47px; text-align:center; vertical-align:middle; ">인턴성적</caption>
- <caption id="caption31" class="cell_1" style="left:327px; top:31px; width:110px; height:23px; text-align:center; vertical-align:middle; ">필기 환산점수</caption>
- <caption id="caption32" class="cell_1" style="left:0px; top:114px; width:25px; height:72px; text-align:center; vertical-align:middle; ">선택평가</caption>
- <caption id="caption33" class="cell_1" style="left:26px; top:114px; width:84px; height:48px; text-align:center; vertical-align:middle; ">의대성적</caption>
- <caption id="caption35" class="cell_1" style="left:26px; top:163px; width:84px; height:23px; text-align:center; vertical-align:middle; ">봉사활동</caption>
- <caption id="caption38" class="cell_1" style="left:327px; top:115px; width:110px; height:23px; text-align:center; vertical-align:middle; ">등급</caption>
- <button id="button2" class="icon_search" style="left:545px; top:165px; width:16px; height:16px; ">
- <caption/>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- //필수 입력 항목 체크(공통 ftHelper.js)
- if ( !isRequiredControls("ipt_apntyy", "cmb_supinfqurtyyflag", "cmb_fstlattrmflag", "cmb_trngflag", "cmb_dentyn", "cnb_scrngflag") ) {
- return false;
- }
- /*
- pwindow_name : Open할 window명
- pcontrol_name : OPEN하는 Control명(Grid,Input.....)
- precv_list: 리턴받을 Instance명 (마지막 Element만 ','로 분리)
- pdefault_value : 부모 윈도우에서 넘어오는 값
- pcheck_yn : 선택형 팝업창인지 아닌지를 체크
-
- function rpbfOpenPopUpList(pwindow_name, pcontrol_name, precv_list, pdefault_value, pcheck_yn) {
- */
-
- rpbfOpenPopUpList("SPRTR00301", ipt_resisoclvoluntract, "resisoclvoluntract,resisoclvoluntracttm", "ipt_resisoclvoluntracttm,ipt_resisoclvoluntract,cmb_trngflag","N");
- model.refresh();
- ]]>
- </script>
- </button>
- <caption id="caption106" class="cell_1" style="left:111px; top:79; width:110px; height:23px; text-align:center; vertical-align:middle; ">만점</caption>
- <caption id="caption108" class="cell_1" style="left:327px; top:79; width:110px; height:23px; text-align:center; vertical-align:middle; ">인원</caption>
- <input id="input36" ref="/root/main/gnrldata/gnrlinfo/intnrank" class="input_search" navindex="104" maxlength="4" showmask="true" appearance="input" style="left:440px; top:57px; width:100px; height:19px; "/>
- <caption id="caption109" class="cell_1" style="left:327px; top:55px; width:110px; height:23px; text-align:center; vertical-align:middle; ">석차</caption>
- <input id="input38" ref="/root/main/gnrldata/gnrlinfo/intnpsnno" class="input_search" navindex="105" maxlength="4" showmask="true" appearance="input" style="left:440px; top:82; width:100px; height:19px; "/>
- <caption id="caption112" class="cell_1" style="left:544px; top:79; width:110px; height:23px; text-align:center; vertical-align:middle; ">판정</caption>
- <caption id="caption115" class="cell_1" style="left:544px; top:55px; width:110px; height:23px; text-align:center; vertical-align:middle; ">등급</caption>
- <input id="input39" ref="/root/main/gnrldata/gnrlinfo/intngrde" class="input_search" navindex="106" imemode="alpha" maxlength="1" appearance="input" style="left:658px; top:57px; width:100px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- // 2007-11-18 채용성적 등급에 대문자만 입력 acwon수정
- var refpath = "/root/main/gnrldata/gnrlinfo/intngrde";
- var str = model.getValue(refpath);
- var keycode = str.charCodeAt(0);
-
- if ( (keycode >= 65 && keycode <= 90) || (keycode >= 97 && keycode <= 122) )
- {
- if (keycode >= 97 && keycode <= 122)
- keycode -= 32;
-
- model.setValue(refpath, String.fromCharCode(keycode));
- }
- else
- {
- model.setValue(refpath, "");
- model.setFocus("input39");
- messageBox("유효하지 않은 입력입니다.", "E", "");
- }
- input39.refresh();
- ]]>
- </script>
- </input>
- <input id="input41" ref="/root/main/gnrldata/gnrlinfo/intnjudg" class="output_search" navindex="107" maxlength="1" appearance="input" style="left:658px; top:82; width:100px; height:19px; "/>
- <caption id="caption125" class="cell_1" style="left:111px; top:139px; width:110px; height:23px; text-align:center; vertical-align:middle; ">인원</caption>
- <caption id="caption126" class="cell_1" style="left:111px; top:115px; width:110px; height:23px; text-align:center; vertical-align:middle; ">석차</caption>
- <input id="input42" ref="/root/main/gnrldata/gnrlinfo/resibngschoolrank" class="input_search" navindex="108" showmask="true" appearance="input" style="left:223px; top:116px; width:100px; height:19px; "/>
- <input id="input46" ref="/root/main/gnrldata/gnrlinfo/resibngschoolpsnno" class="input_search" navindex="109" showmask="true" appearance="input" style="left:223px; top:140px; width:100; height:19px; "/>
- <caption id="caption36" class="cell_1" style="left:327px; top:139px; width:110px; height:23px; text-align:center; vertical-align:middle; ">의대 환산점수</caption>
- <input id="input19" ref="/root/main/gnrldata/gnrlinfo/resisoclvoluntractnm" class="output_search" navindex="110" editable="false" maxlength="40" appearance="input" style="left:113px; top:165px; width:427px; height:19px; "/>
- <caption id="caption16" class="cell_1" style="left:0px; top:187px; width:110px; height:23px; text-align:center; vertical-align:middle; ">선택평가 합계</caption>
- <output id="input1" ref="/root/main/gnrldata/gnrlinfo/resibngschoolgrde" class="output_search" format="9999" showmask="true" appearance="output" style="left:440px; top:116px; width:100; height:19px; "/>
- <output id="input2" ref="/root/main/gnrldata/gnrlinfo/resibngschoolchgpnt" class="output_search" format="####.##" showmask="true" appearance="output" style="left:440px; top:140px; width:100; height:19px; "/>
- <output id="output5" ref="/root/main/gnrldata/gnrlinfo/resichoivaluechgpnt" class="output_search" format="####.##" showmask="true" appearance="output" style="left:113px; top:190px; width:427px; height:19px; "/>
- <input id="ipt_resisoclvoluntracttm" ref="/root/main/gnrldata/gnrlinfo/resisoclvoluntracttm" class="input_search" visibility="hidden" maxlength="40" appearance="input" style="left:1075px; top:235px; width:95px; height:19px; "/>
- <input id="ipt_resisoclvoluntract" ref="/root/main/gnrldata/gnrlinfo/resisoclvoluntract" class="input_search" visibility="hidden" maxlength="40" appearance="input" style="left:1075px; top:210px; width:105px; height:19px; "/>
- <output id="output6" ref="/root/main/gnrldata/gnrlinfo/intnavgpnt" class="output_search" format="####.##" appearance="output" style="left:878px; top:58px; width:100px; height:19px; "/>
- <caption id="caption34" class="cell_1" style="left:763px; top:55px; width:110px; height:23px; text-align:center; vertical-align:middle; ">평점</caption>
- <caption id="caption52" class="cell_1" style="left:545px; top:139px; width:110px; height:23px; text-align:center; vertical-align:middle; ">복지부번호2</caption>
- <caption id="caption127" class="cell_1" style="left:545px; top:115px; width:110px; height:23px; text-align:center; vertical-align:middle; ">복지부번호1</caption>
- <input id="ipt_welfprtno1" ref="/root/main/gnrldata/gnrlinfo/welfprtno1" style="left:658px; top:116px; width:100px; height:19px; "/>
- <input id="ipt_welfprtno2" ref="/root/main/gnrldata/gnrlinfo/welfprtno2" style="left:658px; top:140px; width:100px; height:19px; "/>
- <caption id="caption128" class="cell_1" style="left:763px; top:115px; width:110px; height:23px; text-align:center; vertical-align:middle; ">복지부등록일1</caption>
- <caption id="caption129" class="cell_1" style="left:763px; top:139px; width:110px; height:23px; text-align:center; vertical-align:middle; ">복지부등록일2</caption>
- <input id="ipt_welfprtno1regtdd" ref="/root/main/gnrldata/gnrlinfo/welfprtno1regtdd" inputtype="date" style="left:878px; top:116px; width:100px; height:19px; "/>
- <input id="ipt_welfprtno2regtdd" ref="/root/main/gnrldata/gnrlinfo/welfprtno2regtdd" inputtype="date" style="left:878px; top:140px; width:100px; height:19px; "/>
- </group>
- </case>
- <case id="case2">
- <datagrid id="grd_famyrellist" nodeset="/root/main/famyrellist" caption="관계^성명^주민등록번호^학력^직업^회사명^직책^피부양자^동거여부^장애여부^장애등급^장애번호^진료비감면" colsep="^" colwidth="100, 80, 94, 100, 100, 140, 110, 80, 80, 90, 90, 90, 100, 0, 0, 0" mergecellsfixedrows="bycolrec" rowheader="update" rowsep="|" style="left:0px; top:30px; width:1193px; height:230px; ">
- <col ref="famyrel" type="combo" style="text-align:center; ">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </col>
- <col ref="name" type="input" style="text-align:center; "/>
- <col ref="famyrgstno" type="input" format="999999-9999999" showmask="true" style="text-align:center; "/>
- <col ref="scholcd" type="combo" visibility="hidden" style="text-align:center; ">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </col>
- <col ref="jobcd" type="combo">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </col>
- <col ref="cmpynm" type="input"/>
- <col ref="jobresp" type="input"/>
- <col ref="healcareinsuyn" type="combo">
- <choices>
- <item>
- <label>예</label>
- <value>Y</value>
- </item>
- <item>
- <label>아니요</label>
- <value>N</value>
- </item>
- </choices>
- </col>
- <col ref="lvnsmhoseyn" type="combo" style="text-align:center; ">
- <choices>
- <item>
- <label>예</label>
- <value>Y</value>
- </item>
- <item>
- <label>아니요</label>
- <value>N</value>
- </item>
- </choices>
- </col>
- <col ref="handcapyn" type="combo" style="text-align:center; ">
- <choices>
- <item>
- <label>예</label>
- <value>Y</value>
- </item>
- <item>
- <label>아니요</label>
- <value>N</value>
- </item>
- </choices>
- </col>
- <col ref="handcapgrde" type="combo" style="text-align:center; ">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </col>
- <col ref="handcapno" type="input"/>
- <col ref="ordamtreductyn" type="combo">
- <choices>
- <item>
- <label>예</label>
- <value>Y</value>
- </item>
- <item>
- <label>아니요</label>
- <value>N</value>
- </item>
- </choices>
- </col>
- <col ref="apntinfono" visibility="hidden"/>
- <col ref="rregno" visibility="hidden"/>
- <col ref="seqno" visibility="hidden"/>
- </datagrid>
- <line id="line62" class="line_1" style="x1:0px; y1:25px; x2:1193px; y2:25px; "/>
- <button id="button79" class="btn2_letter3" style="left:1075px; top:4px; width:53px; height:19px; ">
- <caption>행추가</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- misfGridIUD(grd_famyrellist, "A");
-
- ]]>
- </script>
- </button>
- <button id="button80" class="btn2_letter3" style="left:1135px; top:4px; width:53px; height:19px; ">
- <caption>행삭제</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- misfGridIUD(grd_famyrellist, "D");
- model.refresh();
- ]]>
- </script>
- </button>
- <caption id="caption79" class="tit_2" style="left:10px; top:10px; width:117px; height:13px; ">가족 관계</caption>
- </case>
- <case id="case3">
- <line id="line63" class="line_3" style="width:1193; x1:0px; y1:205px; x2:1085px; y2:205px; "/>
- <line id="line64" class="line_2" style="width:1193; x1:0px; y1:181px; x2:1085px; y2:181px; "/>
- <line id="line65" class="line_2" style="width:1193; x1:0px; y1:157px; x2:1085px; y2:157px; "/>
- <line id="line66" class="line_1" style="width:1193; x1:0px; y1:25px; x2:1185px; y2:25px; "/>
- <line id="line67" class="line_1" style="width:1193; x1:0px; y1:130px; x2:1085; y2:130px; "/>
- <caption id="caption80" class="tit_2" style="left:10; top:10; width:117px; height:14px; ">종교</caption>
- <caption id="caption81" class="tit_2" style="left:10px; top:115px; width:117px; height:13px; ">병역</caption>
- <input id="cmb_bodygrde" ref="/root/main/gnrldata/gnrlinfo/bodygrde" class="combo_default" appearance="minimal" style="left:107px; top:137px; width:162px; height:19px; font-size:10pt; "/>
- <caption id="caption82" class="cell_1" style="left:0px; top:135px; width:105px; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">신체등급</caption>
- <select1 id="cmb_armyclscd" ref="/root/main/gnrldata/gnrlinfo/armyclscd" class="combo_default" appearance="minimal" style="left:107px; top:161px; width:162px; height:19px; font-size:10pt; ">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </select1>
- <caption id="caption83" class="cell_1" style="left:0px; top:159px; width:105px; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">군별</caption>
- <caption id="caption84" class="cell_1" style="left:0px; top:183px; width:105px; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">입대일</caption>
- <select1 id="cmb_clssvcstatcd" ref="/root/main/gnrldata/gnrlinfo/clssvcstatcd" class="combo_default" appearance="minimal" style="left:379px; top:137px; width:162px; height:19px; font-size:10pt; ">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </select1>
- <caption id="caption85" class="cell_1" style="left:272px; top:135px; width:105px; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">역종구분</caption>
- <select1 id="cmb_brnhmiltsrvccd" ref="/root/main/gnrldata/gnrlinfo/brnhmiltsrvccd" class="combo_default" appearance="minimal" style="left:379px; top:161px; width:162px; height:19px; font-size:10pt; ">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </select1>
- <caption id="caption86" class="cell_1" style="left:272px; top:159px; width:105px; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">병과</caption>
- <caption id="caption87" class="cell_1" style="left:272px; top:183px; width:105px; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">제대일</caption>
- <input id="input53" ref="/root/main/gnrldata/gnrlinfo/sn" class="input_default" style="left:651px; top:137px; width:162px; height:19px; font-size:10pt; "/>
- <select1 id="cmb_mltrflag" ref="/root/main/gnrldata/gnrlinfo/mltrflag" class="combo_default" appearance="minimal" style="left:651px; top:161px; width:162px; height:19px; font-size:10pt; ">
- <choices>
- <item>
- <label>현역</label>
- <value>1</value>
- </item>
- <item>
- <label>공중보건의</label>
- <value>2</value>
- </item>
- </choices>
- </select1>
- <caption id="caption88" class="cell_1" style="left:544px; top:135px; width:105px; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">군번</caption>
- <caption id="caption89" class="cell_1" style="left:544px; top:159px; width:105px; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">복무구분</caption>
- <select1 id="cmb_classcd" ref="/root/main/gnrldata/gnrlinfo/classcd" class="combo_default" appearance="minimal" style="left:923px; top:137px; width:162px; height:19px; font-size:10pt; ">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </select1>
- <caption id="caption91" class="cell_1" style="left:816px; top:135px; width:105px; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">계급</caption>
- <select1 id="cmb_dembztflag" ref="/root/main/gnrldata/gnrlinfo/dembztflag" class="combo_default" appearance="minimal" style="left:923px; top:161px; width:162px; height:19px; font-size:10pt; ">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </select1>
- <caption id="caption92" class="cell_1" style="left:816px; top:159px; width:105px; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">제대구분</caption>
- <input id="input58" ref="/root/main/gnrldata/gnrlinfo/srvarmtermfromdd" class="input_s_essential" inputtype="date" style="left:107px; top:185px; width:162px; height:19px; "/>
- <input id="input59" ref="/root/main/gnrldata/gnrlinfo/srvarmtermtodd" class="input_s_essential" inputtype="date" style="left:379px; top:185px; width:162px; height:19px; "/>
- <input id="input24" ref="/root/main/gnrldata/gnrlinfo/baptdd" class="input_default" inputtype="date" style="left:108px; top:56px; width:162px; height:19px; font-size:10pt; "/>
- <caption id="caption53" class="cell_1" style="left:1px; top:30px; width:105px; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">종교</caption>
- <caption id="caption55" class="cell_1" style="left:1px; top:54px; width:105px; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">세례일자</caption>
- <input id="input27" ref="/root/main/gnrldata/gnrlinfo/chrchnm" class="input_default" style="left:380px; top:32px; width:162px; height:19px; font-size:10pt; "/>
- <line id="line4" class="line_2" style="width:1193; x1:0px; y1:52px; x2:815px; y2:52px; "/>
- <input id="input28" ref="/root/main/gnrldata/gnrlinfo/fairnmdd" class="input_default" inputtype="date" style="left:380px; top:56px; width:162px; height:19px; font-size:10pt; "/>
- <input id="input29" ref="/root/main/gnrldata/gnrlinfo/baptnm" class="input_default" style="left:652px; top:32px; width:162px; height:19px; font-size:10pt; "/>
- <caption id="caption59" class="cell_1" style="left:273px; top:30px; width:105px; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">교회명</caption>
- <caption id="caption62" class="cell_1" style="left:273px; top:54px; width:105px; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">영명일</caption>
- <input id="input32" ref="/root/main/gnrldata/gnrlinfo/rtconfmdd" class="input_default" inputtype="date" style="left:652px; top:56px; width:162px; height:19px; font-size:10pt; "/>
- <caption id="caption65" class="cell_1" style="left:545px; top:30px; width:105px; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">세례명</caption>
- <caption id="caption66" class="cell_1" style="left:545px; top:54px; width:105px; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">견진일자</caption>
- <select1 id="cmb_religncd" ref="/root/main/gnrldata/gnrlinfo/religncd" class="combo_default" appearance="minimal" style="left:108px; top:32px; width:162px; height:19px; font-size:10pt; ">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </select1>
- <input id="input34" ref="/root/main/gnrldata/gnrlinfo/armyupdateyn" class="combo_default" visibility="hidden" appearance="minimal" style="left:860px; top:40px; width:162px; height:19px; font-size:10pt; "/>
- </case>
- <case id="case4">
- <datagrid id="grd_schollist" nodeset="/root/main/schollist" caption="학력구분^학교명^학교명^년한^이수^입학일^졸업일^전공^전공^학위^학위번호" colsep="^" colwidth="127, 20, 132, 46, 104, 114, 116, 20, 153, 140, 104, 0, 0, 0" mergecellsfixedrows="bycolrec" rowheader="update" rowsep="|" style="left:0px; top:30px; width:1193px; height:230px; ">
- <col ref="schflag" type="combo">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </col>
- <col ref="schcd" type="inputbutton"/>
- <col ref="schnm" type="output"/>
- <col ref="lesnfixyearpd" type="input" format="9" showmask="true"/>
- <col ref="cmpltcursstdyflag" type="combo">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </col>
- <col ref="admischooldd" type="inputdate"/>
- <col ref="gradutndd" type="inputdate"/>
- <col ref="frmrmert" type="inputbutton"/>
- <col ref="schfrmrmertnm" type="output"/>
- <col ref="acdmydgcd" type="combo">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </col>
- <col ref="acdmydgno" type="input"/>
- <col ref="apntinfono" visibility="hidden"/>
- <col ref="rregno" visibility="hidden"/>
- <col ref="seqno" visibility="hidden"/>
- <script type="javascript" ev:event="onbuttonclick">
- <![CDATA[
- // 학력사항 학교명
- if (grd_schollist.col == 2) {
- misfOpenPopUpList("03", grd_schollist, "R0141", "schcd,schnm");
- model.refresh()
- }
-
- // 학력사항 전공
- if (grd_schollist.col == 8) {
- misfOpenPopUpList("03", grd_schollist, "R0089", "frmrmert,schfrmrmertnm");
- model.refresh()
- }
- ]]>
- </script>
- </datagrid>
- <line id="line68" class="line_1" style="x1:0px; y1:25; x2:1193; y2:25; "/>
- <caption id="caption93" class="tit_2" style="left:10; top:10; width:117px; height:14px; ">학력</caption>
- <button id="button83" class="btn2_letter3" style="left:1075px; top:4px; width:53px; height:19px; ">
- <caption>행추가</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- misfGridIUD(grd_schollist, "A");
- ]]>
- </script>
- </button>
- <button id="button84" class="btn2_letter3" style="left:1130px; top:4px; width:53px; height:19px; ">
- <caption>행삭제</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- misfGridIUD(grd_schollist, "D");
- model.refresh();
- ]]>
- </script>
- </button>
- </case>
- <case id="case5">
- <datagrid id="grd_carerfactlist" nodeset="/root/main/carerfactlist" caption="기관^입사일^퇴사일^부서^직책^직위^주요업무^퇴직사유" colsep="^" colwidth="172, 125, 111, 149, 103, 89, 211, 198, 0, 0, 0" mergecellsfixedrows="bycolrec" rowheader="update" rowsep="|" style="left:0px; top:30px; width:1193px; height:230px; ">
- <col ref="dutplceinst" type="input"/>
- <col ref="duttermfromdd" type="inputdate"/>
- <col ref="duttermtodd" type="inputdate"/>
- <col ref="deptnm" type="input"/>
- <col ref="jobrespnm" type="input"/>
- <col ref="jobposnm" type="input"/>
- <col ref="mainbiz" type="input"/>
- <col ref="retireresn" type="input"/>
- <col ref="apntinfono" visibility="hidden"/>
- <col ref="rregno" visibility="hidden"/>
- <col ref="seqno" visibility="hidden"/>
- </datagrid>
- <line id="line69" class="line_1" style="x1:0px; y1:25; x2:1193; y2:25; "/>
- <caption id="caption94" class="tit_2" style="left:10; top:10; width:117px; height:14px; ">경력</caption>
- <button id="button86" class="btn2_letter3" style="left:1075px; top:4px; width:53px; height:19px; ">
- <caption>행추가</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- misfGridIUD(grd_carerfactlist, "A");
-
- ]]>
- </script>
- </button>
- <button id="button87" class="btn2_letter3" style="left:1130px; top:4px; width:53px; height:19px; ">
- <caption>행삭제</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- misfGridIUD(grd_carerfactlist, "D");
- model.refresh();
- ]]>
- </script>
- </button>
- </case>
- <case id="case6">
- <datagrid id="grd_forelangfactlist" nodeset="/root/main/forelangfactlist" caption="외국어명^시험명^점수^응시일^시험 수험번호^caption1" colsep="^" colwidth="130, 130, 120, 120, 130, 0, 0, 0" mergecellsfixedrows="bycolrec" rowheader="update" rowsep="|" style="left:0px; top:30px; width:1193px; height:230px; ">
- <col ref="forgnlangcd" type="combo" format="####" showmask="true" style="text-align:center; ">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </col>
- <col ref="examcd" type="combo">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </col>
- <col imemode="disabled" ref="examscor" type="input" format="####" maxlength="4" showmask="true" style="text-align:center; "/>
- <col ref="examdd" type="inputdate" style="text-align:center; "/>
- <col ref="examno" type="input" style="text-align:center; "/>
- <col ref="apntinfono" visibility="hidden"/>
- <col ref="rregno"/>
- <col ref="seqno"/>
- </datagrid>
- <line id="line70" class="line_1" style="x1:0px; y1:25; x2:1193; y2:25; "/>
- <caption id="caption95" class="tit_2" style="left:10; top:10; width:117px; height:14px; ">외국어</caption>
- <button id="button89" class="btn2_letter3" style="left:1075px; top:4px; width:53px; height:19px; ">
- <caption>행추가</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- misfGridIUD(grd_forelangfactlist, "A");
-
- ]]>
- </script>
- </button>
- <button id="button90" class="btn2_letter3" style="left:1130px; top:4px; width:53px; height:19px; ">
- <caption>행삭제</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- misfGridIUD(grd_forelangfactlist, "D");
- model.refresh();
- ]]>
- </script>
- </button>
- </case>
- <case id="case7">
- <datagrid id="grd_trngspeclist" nodeset="/root/main/trngspeclist" caption="수련구분^수련기관코드^수련기관명^수련시작일^수련종료일^전공과목^수료번호^수료일자^수련포기사유^caption1^caption2^caption3" colsep="^" colwidth="100, 90, 130, 100, 100, 100, 100, 100, 316, 0, 0, 0" mergecellsfixedrows="bycolrec" rowheader="update" rowsep="|" style="left:0px; top:30px; width:1193px; height:230px; ">
- <col ref="trngflag" type="combo">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </col>
- <col ref="cmpltinstcd" type="inputbutton"/>
- <col ref="cmpltinstnm" type="output"/>
- <col ref="trngfromdd" type="inputdate"/>
- <col ref="trngenddd" type="inputdate"/>
- <col ref="frmrmert" type="combo">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </col>
- <col ref="trngno" type="input"/>
- <col ref="trngdd" type="inputdate"/>
- <col ref="trnggivupresn" type="input"/>
- <col ref="apntinfono" visibility="hidden"/>
- <col ref="rregno" visibility="hidden"/>
- <col ref="seqno" visibility="hidden"/>
- <script type="javascript" ev:event="onbuttonclick">
- <![CDATA[
- if (grd_trngspeclist.col == 2) {
- misfOpenPopUpList("03", grd_trngspeclist, "R0277", "cmpltinstcd,cmpltinstnm");
- model.refresh()
- }
- ]]>
- </script>
- </datagrid>
- <button id="button91" class="btn2_letter3" style="left:1070px; top:4px; width:53px; height:19px; ">
- <caption>행추가</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- misfGridIUD(grd_trngspeclist, "A");
- ]]>
- </script>
- </button>
- <button id="button92" class="btn2_letter3" style="left:1130px; top:4px; width:53px; height:19px; ">
- <caption>행삭제</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- misfGridIUD(grd_trngspeclist, "D");
- model.refresh();
- ]]>
- </script>
- </button>
- <line id="line71" class="line_1" style="x1:0px; y1:25; x2:1193; y2:25; "/>
- <caption id="caption96" class="tit_2" style="left:10; top:10; width:117px; height:13px; ">수련</caption>
- </case>
- <case id="case1" selected="true">
- <datagrid id="grd_hopeorddeptlist" nodeset="/root/main/hopeorddeptlist" caption="희망차수^지원과" colsep="^" colwidth="114, 221, 0, 0, 0" mergecellsfixedrows="bycolrec" rowheader="update" rowsep="|" style="left:0px; top:30px; width:585px; height:230px; ">
- <col ref="hopedg"/>
- <col ref="hopecd" type="combo">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </col>
- <col ref="apntinfono" visibility="hidden"/>
- <col ref="rregno" visibility="hidden"/>
- <col ref="hopeflag" visibility="hidden"/>
- </datagrid>
- <datagrid id="grd_resihopeorddeptlist" nodeset="/root/main/resihopeorddeptlist" caption="지망차수^지원과^합격학과" colsep="^" colwidth="100, 203, 100, 0, 0" mergecellsfixedrows="bycolrec" rowheader="update" rowsep="|" style="left:0px; top:30px; width:585px; height:230px; ">
- <col ref="hopeorddeptdg"/>
- <col ref="hopeorddeptcd" type="combo">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </col>
- <col ref="passsbjcd" visibility="hidden"/>
- <col ref="apntinfono" visibility="hidden"/>
- <col ref="rregno" visibility="hidden"/>
- <script type="javascript" ev:event="onrowchanged">
- <![CDATA[
- grd_resihopeorddeptlist.dispatch("onmouseup");
- model.setValue("/root/send/detailInfo/hopeorddeptdg", grd_resihopeorddeptlist.valueMatrix( grd_resihopeorddeptlist.row, grd_resihopeorddeptlist.colRef("hopeorddeptdg")));
- submit("TRRTR00315");
- ]]>
- </script>
- </datagrid>
- <button id="button69" class="btn2_letter3" style="left:1130px; top:5px; width:53px; height:19px; ">
- <caption>행삭제</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- if ( "I" == model.getValue("/root/send/trngflag") ) {
- misfGridIUD(grd_hopehosplist, "D");
- model.refresh();
- } else {
- misfGridIUD(grd_resihopehosplist, "D");
- model.refresh();
- }
- ]]>
- </script>
- </button>
- <button id="button74" class="btn2_letter3" style="left:1075px; top:5px; width:53px; height:19px; ">
- <caption>행추가</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- if ( "I" == model.getValue("/root/send/trngflag") ) {
- misfGridIUD(grd_hopehosplist, "A");
- grd_hopehosplist.valueMatrix( grd_hopehosplist.row, grd_hopehosplist.colRef("hopeflag") ) = "1";
- } else {
- misfGridIUD(grd_resihopehosplist, "A");
- grd_resihopehosplist.valueMatrix( grd_resihopehosplist.row,grd_resihopehosplist.colRef("hopeorddeptdg")) = grd_resihopeorddeptlist.valueMatrix( grd_resihopeorddeptlist.row,grd_resihopeorddeptlist.colRef("hopeorddeptdg"));
- grd_resihopehosplist.valueMatrix( grd_resihopehosplist.row,grd_resihopehosplist.colRef("hopeorddeptnm")) = grd_resihopeorddeptlist.labelMatrix( grd_resihopeorddeptlist.row,grd_resihopeorddeptlist.colRef("hopeorddeptcd"));
- }
- ]]>
- </script>
- </button>
- <datagrid id="grd_hopehosplist" nodeset="/root/main/hopehosplist" caption="차수^주교육병원" colsep="^" colwidth="70, 264, 0, 0, 0" mergecellsfixedrows="bycolrec" rowheader="update" rowsep="|" style="left:590px; top:30px; width:595px; height:230px; ">
- <col ref="hopedg" type="combo">
- <choices>
- <item>
- <label>1지망</label>
- <value>1</value>
- </item>
- <item>
- <label>2지망</label>
- <value>2</value>
- </item>
- <item>
- <label>3지망</label>
- <value>3</value>
- </item>
- <item>
- <label>4지망</label>
- <value>4</value>
- </item>
- </choices>
- </col>
- <col ref="hopecd" type="combo">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </col>
- <col ref="apntinfono" visibility="hidden"/>
- <col ref="rregno" visibility="hidden"/>
- <col ref="hopeflag" visibility="hidden"/>
- </datagrid>
- <caption id="caption77" class="tit_2" style="left:610px; top:10px; width:165px; height:13px; ">지원과별 주교육병원</caption>
- <button id="button71" class="btn2_letter3" style="left:475px; top:5px; width:53px; height:19px; ">
- <caption>행추가</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- if ( "I" == model.getValue("/root/send/trngflag") ) {
- misfGridIUD(grd_hopeorddeptlist, "A");
- grd_hopeorddeptlist.valueMatrix( grd_hopeorddeptlist.row, grd_hopeorddeptlist.colRef("hopeflag") ) = "2";
- } else {
- switch (grd_resihopeorddeptlist.rows) {
- case 1: // 1 지망
- misfGridIUD(grd_resihopeorddeptlist, "A");
- grd_resihopeorddeptlist.valueMatrix( grd_resihopeorddeptlist.row, grd_resihopeorddeptlist.colRef("hopeorddeptdg")) = "1";
- break;
- case 2: // 2 지망
- misfGridIUD(grd_resihopeorddeptlist, "A");
- grd_resihopeorddeptlist.valueMatrix( grd_resihopeorddeptlist.row, grd_resihopeorddeptlist.colRef("hopeorddeptdg")) = "2";
- break;
-
- default:
- messageBox("레지던트 근무 희망과는 2개 이상 입력할 수","I004");
- break;
- }
- }
- ]]>
- </script>
- </button>
- <button id="button72" class="btn2_letter3" style="left:530px; top:5px; width:53px; height:19px; ">
- <caption>행삭제</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- if ( "I" == model.getValue("/root/send/trngflag") ) {
- misfGridIUD(grd_hopeorddeptlist, "D");
- model.refresh();
- } else {
- misfGridIUD(grd_resihopeorddeptlist, "D");
- model.refresh();
- }
- ]]>
- </script>
- </button>
- <line id="line60" class="line_1" style="x1:0px; y1:25px; x2:584px; y2:25px; "/>
- <line id="line61" class="line_1" style="x1:590px; y1:25px; x2:1193px; y2:25px; "/>
- <caption id="caption78" class="tit_2" style="left:8px; top:11px; width:117px; height:13px; ">지원과</caption>
- <datagrid id="grd_resihopehosplist" nodeset="/root/main/resihopehosplist" visibility="hidden" caption="지원과^차수^근무희망병원" colsep="^" colwidth="203, 80, 264, 0, 0, 0" mergecellsfixedrows="bycolrec" rowheader="update" rowsep="|" style="left:590px; top:30px; width:595px; height:230px; ">
- <col ref="hopeorddeptnm" type="output"/>
- <col ref="hopehospdg" type="output"/>
- <col ref="hopehospcd" type="combo">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </col>
- <col ref="apntinfono" visibility="hidden"/>
- <col ref="rregno" visibility="hidden"/>
- <col ref="hopeorddeptdg" visibility="hidden"/>
- </datagrid>
- </case>
- <case id="case8">
- <datagrid id="grd_prizrpmdlist" nodeset="/root/main/prizrpmdlist" caption="상벌 구분^상벌명^상벌기관^수여자^추천자^발생일^내용^상벌번호" colsep="^" colwidth="102, 176, 149, 114, 113, 121, 259, 109, 0, 0, 0" mergecellsfixedrows="bycolrec" rowheader="update" rowsep="|" style="left:0px; top:30; width:1193px; height:230px; ">
- <col ref="prizrpmdflag" type="combo">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </col>
- <col ref="prizrpmdcd" type="combo">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </col>
- <col ref="prizrpmdinstnm" type="input"/>
- <col ref="cnfmtpsnnm" type="input"/>
- <col ref="recmpsnnm" type="input"/>
- <col ref="genrdd" type="inputdate"/>
- <col ref="prizrpmdcnts" type="input"/>
- <col ref="prizrpmdno" type="input"/>
- <col ref="apntinfono" visibility="hidden"/>
- <col ref="rregno" visibility="hidden"/>
- <col ref="seqno" visibility="hidden"/>
- </datagrid>
- <button id="button94" class="btn2_letter3" style="left:1075px; top:4px; width:53px; height:19px; ">
- <caption>행추가</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- misfGridIUD(grd_prizrpmdlist, "A");
- ]]>
- </script>
- </button>
- <button id="button95" class="btn2_letter3" style="left:1130px; top:4px; width:53px; height:19px; ">
- <caption>행삭제</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- misfGridIUD(grd_prizrpmdlist, "D");
- model.refresh();
- ]]>
- </script>
- </button>
- <line id="line72" class="line_1" style="x1:0px; y1:25; x2:1193; y2:25; "/>
- <caption id="caption97" class="tit_2" style="left:10; top:10; width:117px; height:13px; ">상벌</caption>
- </case>
- <case id="case9" style="left:0px; top:0px; width:1193px; height:278px; ">
- <datagrid id="grd_scinccmntspeclist" nodeset="/root/main/scinccmntspeclist" caption="기관/단체^기관^학술 활동 명^내용^시작일^종료일" colsep="^" colwidth="100, 158, 235, 405, 122, 120, 0, 0, 0" mergecellsfixedrows="bycolrec" rowheader="update" rowsep="|" style="left:0px; top:30px; width:1193px; height:230px; ">
- <col ref="scinccmntflag" type="combo">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </col>
- <col ref="scinccmntinstnm" type="input"/>
- <col ref="scinccmntactnm" type="input"/>
- <col ref="scinccmntactcnts" type="input"/>
- <col ref="scinccmntactfromdd" type="inputdate"/>
- <col ref="scinccmntactenddd" type="inputdate"/>
- <col ref="apntinfono" visibility="hidden"/>
- <col ref="rregno" visibility="hidden"/>
- <col ref="seqno" visibility="hidden"/>
- </datagrid>
- <line id="line73" class="line_1" style="x1:0px; y1:25; x2:1193; y2:25; "/>
- <button id="button97" class="btn2_letter3" style="left:1075px; top:4px; width:53px; height:19px; ">
- <caption>행추가</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- misfGridIUD(grd_scinccmntspeclist, "A");
- ]]>
- </script>
- </button>
- <button id="button98" class="btn2_letter3" style="left:1130px; top:4px; width:53px; height:19px; ">
- <caption>행삭제</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- misfGridIUD(grd_scinccmntspeclist, "D");
- model.refresh();
- ]]>
- </script>
- </button>
- <caption id="caption98" class="tit_2" style="left:10; top:10; width:117px; height:13px; ">학술</caption>
- </case>
- <case id="case10" style="left:0px; top:0px; width:1193px; height:219px; ">
- <caption id="caption99" class="tit_2" style="left:10; top:10; width:117px; height:13px; ">신원보증인</caption>
- <datagrid id="grd_grntorlist" nodeset="/root/main/grntorlist" caption="보증인명^주민등록번호^관계^보증인주소^보증인주소^보증인주소^보증인주소^직장^직위^연락처|보증인명^주민등록번호^관계^우편번호1^우편번호2^주소^상세주소^직장^직위^연락처" colsep="^" colwidth="70, 90, 90, 70, 70, 230, 231, 110, 99, 100, 0, 0, 0, 0" mergecellsfixedrows="bycolrec" rowheader="update" rowsep="|" style="left:0px; top:30px; width:1185px; height:180px; ">
- <col ref="grntpsnnm" type="input"/>
- <col ref="grntpsnrregno" type="input" format="999999-9999999" showmask="true"/>
- <col ref="grntpsnrela" type="combo">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </col>
- <col ref="zipcd1" type="input" format="999" showmask="true"/>
- <col ref="zipcd2" type="inputbutton" format="999" showmask="true"/>
- <col ref="infaddr1" type="input"/>
- <col ref="infaddr2" type="input"/>
- <col ref="grntpsnworkplce" type="input"/>
- <col ref="grntpsnjobpos" type="input"/>
- <col ref="grntpsntel" type="input"/>
- <col ref="apntinfono" visibility="hidden"/>
- <col ref="rregno" visibility="hidden"/>
- <col ref="seqno" visibility="hidden"/>
- <col ref="zipcdseq" visibility="hidden"/>
- <script type="javascript" ev:event="onbuttonclick">
- <![CDATA[
- // 우편번호
- if (grd_grntorlist.col == 5) {
- alert(grd_grntorlist.getNode(0,'zipcd1'));
- var recv_list = "grd_grntorlist.get(0,'zipcd1'),grd_grntorlist.get(0,'zipcd2'),grd_grntorlist.get(0,'infaddr1')";
- rpbfOpenZipCdHelp(grd_grntorlist.get(0,'zipcd1'), recv_list);
- model.refresh();
-
- }
-
-
- ]]>
- </script>
- </datagrid>
- <line id="line74" class="line_1" style="x1:0px; y1:25; x2:1193; y2:25; "/>
- <button id="button101" class="btn2_letter3" style="left:1075px; top:4px; width:53px; height:19px; ">
- <caption>행추가</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- if (grd_grntorlist.rows < 3) {
- misfGridIUD(grd_grntorlist, "A");
- } else {
- messageBox("신원보증인은 한명 이상 입력할 수","I004");
- }
- ]]>
- </script>
- </button>
- <button id="button102" class="btn2_letter3" style="left:1130px; top:4px; width:53px; height:19px; ">
- <caption>행삭제</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- misfGridIUD(grd_grntorlist, "D");
- model.refresh();
- ]]>
- </script>
- </button>
- </case>
- </switch>
- <input id="ipt_acntno" ref="/root/main/gnrldata/gnrlinfo/acntno" class="combo_default" maxlength="20" appearance="minimal" style="left:908px; top:366px; width:141px; height:19px; font-size:10pt; "/>
- <input id="ipt_domizipcd1" ref="/root/main/gnrldata/gnrlinfo/domizipcd1" class="input_default" disabled="true" editable="false" appearance="input" style="left:660px; top:415px; width:42px; height:19px; "/>
- <input id="ipt_domizipcd2" ref="/root/main/gnrldata/gnrlinfo/domizipcd2" class="input_default" disabled="true" editable="false" appearance="input" style="left:718px; top:415px; width:42px; height:19px; "/>
- <caption id="caption90" style="left:705px; top:415px; width:10px; height:20px; ">-</caption>
- <input id="ipt_infaddr2" ref="/root/main/gnrldata/gnrlinfo/infaddr2" class="input_default" style="left:995px; top:390px; width:195px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- /* 우편번호 Validation Check
- misfValidationCheck(Validation 종류(부서코드, 공통코드, 우편번호...), 공통코드군, 자료를 받을 Instance Node(콤마로 분류해서 넘기면됨)) */
- misfValidationCheck("04", "", "zipcd1,zipcd2,infaddr1" );
- model.refresh();
- ]]>
- </script>
- </input>
- <input id="ipt_domiinfaddr2" ref="/root/main/gnrldata/gnrlinfo/domiinfaddr2" class="input_default" style="left:995px; top:415px; width:195px; height:19px; "/>
- <button id="btn_rcptcncl" class="btn5_letter4" style="left:1120px; top:75px; width:64px; height:19px; ">
- <caption>수납취소</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var apntstat = model.getValue("/root/main/gnrldata/gnrlinfo/rcptstatupdtyn");
- if ( apntstat == 'N' ) {
- messageBox("이미 합격/불합격 처리가 되었습니다. 수납취소를","E001");
- return;
- }
-
- var retMes = messageBox("수납취소 하시겠습니까?", "Q999");
- if ( retMes != 6) {
- return;
- }
-
- // 수납취소
- model.setValue("/root/send/detailInfo/rcptflag", "1");
- misfSave("TXRTR00304");
- // 지원자리스트
- submit("TRRTR00301");
- ]]>
- </script>
- </button>
- <caption id="caption101" class="cell_1" style="left:830px; top:319px; width:90px; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">혈액형</caption>
- <select1 id="cmb_btypeabo" ref="/root/main/gnrldata/gnrlinfo/btypeabo" class="combo_default" appearance="minimal" style="left:1020px; top:320px; width:87; height:19px; font-size:10pt; ">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </select1>
- <select1 id="cmb_btyperh" ref="/root/main/gnrldata/gnrlinfo/btyperh" class="combo_default" appearance="minimal" style="left:924px; top:320px; width:87px; height:19px; font-size:10pt; ">
- <choices>
- <itemset>
- <label/>
- <value/>
- </itemset>
- </choices>
- </select1>
- <caption id="caption41" class="cell_1" style="left:663; top:149px; width:77; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">생일구분</caption>
- <select1 id="combo1" ref="/root/main/gnrldata/gnrlinfo/brthflag" class="combo_default" appearance="minimal" style="left:745px; top:153px; width:80px; height:19px; font-size:10pt; ">
- <choices>
- <item>
- <label>양력</label>
- <value>S</value>
- </item>
- <item>
- <label>음력</label>
- <value>M</value>
- </item>
- </choices>
- </select1>
- <caption id="caption45" class="cell_1" style="left:490px; top:221px; width:77; height:23px; font-size:10pt; text-align:left; vertical-align:middle; ">성별</caption>
- <select1 id="cmb_gndr" ref="/root/main/gnrldata/gnrlinfo/gndr" class="combo_default" appearance="minimal" style="left:569; top:223px; width:91; height:19px; font-size:10pt; ">
- <choices>
- <item>
- <label>남자</label>
- <value>M</value>
- </item>
- <item>
- <label>여자</label>
- <value>F</value>
- </item>
- </choices>
- </select1>
- <output id="output9" ref="/root/main/gnrldata/gnrlinfo/rcptstatupdtyn" class="input_default" visibility="hidden" appearance="output" style="left:1060px; top:445px; width:87px; height:19px; font-size:10pt; "/>
- <button id="btn_suppprn" class="btn5_letter5" visibility="hidden" style="left:325px; top:75; width:75px; height:19px; vertical-align:middle; ">
- <caption>지원서 출력</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- if(grd_apntvolntlist.rows - grd_apntvolntlist.fixedRows == 0)
- {
- messageBox("지원자가 ", "I004");
- return;
- }
- grp_prnflag.visible = true;
- cmb_prnflag.select(0);
- ]]>
- </script>
- </button>
- <button id="btn_examprn" class="btn5_letter5" visibility="hidden" style="left:405px; top:75px; width:42px; height:19px; vertical-align:middle; ">
- <caption>수험표 출력</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- if(grd_apntvolntlist.rows - grd_apntvolntlist.fixedRows == 0)
- {
- messageBox("지원자가 ", "I004");
- return;
- }
- for(var i = grd_apntvolntlist.fixedRows ; i < grd_apntvolntlist.rows ; i ++)
- {
- grd_apntvolntlist.row = i;
- grd_apntvolntlist.col = grd_apntvolntlist.colRef("examprn");
- fExamSetting(1);
- //grd_apntvolntlist.dispatch("onbuttonclick");
- }
- ]]>
- </script>
- </button>
- <caption id="caption49" class="hand" visibility="hidden" style="left:235px; top:78px; width:90px; height:13px; font-size:10pt; ">일괄 출력 :</caption>
- <group id="grp_prnflag" visibility="hidden" style="left:305px; top:95px; width:180px; height:75px; ">
- <select1 id="cmb_prnflag" ref="/root/send/prnflag" appearance="minimal" style="left:90px; top:15px; width:85px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/prnflag">
- <label ref="label"/>
- <value ref="value"/>
- </itemset>
- </choices>
- </select1>
- <caption id="cap_prnflag" class="search_name" style="left:5px; top:15px; width:90px; height:17px; ">출력형식 :</caption>
- <button id="button3" class="btn5_letter3" style="left:60px; top:40px; width:53px; height:19px; ">
- <caption>출 력</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- for(var i = grd_apntvolntlist.fixedRows ; i < grd_apntvolntlist.rows ; i ++)
- {
- grd_apntvolntlist.row = i;
- grd_apntvolntlist.col = grd_apntvolntlist.colRef("supp");
- fSuppSetting(1);
- //grd_apntvolntlist.dispatch("onbuttonclick");
- }
- ]]>
- </script>
- </button>
- <button id="button4" class="btn5_letter3" style="left:120px; top:40px; width:53px; height:19px; ">
- <caption>취 소</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- grp_prnflag.visible = false;
- return;
- ]]>
- </script>
- </button>
- <shape id="rectangle1" appearance="rectangle" style="left:0px; top:0px; width:180px; height:75px; "/>
- </group>
- <select id="chk_careryn" ref="/root/main/gnrldata/gnrlinfo/careryn" overflow="visible" appearance="full" style="left:1150px; top:320px; width:35px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <input id="ipt_etcemailaddr" ref="/root/main/gnrldata/gnrlinfo/etcemailaddr" class="input_default" style="left:1053; top:343px; width:135; height:19px; font-size:10pt; "/>
- </group>
- </xhtml:body>
- </xhtml:html>
|