2d636a36-5fe7-4963-ab38-9cf1b41223e3.xml 272 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <dataSource name="dbconta">
  3. <database-model serializer="dbm" dbms="MYSQL" family-id="MYSQL" format-version="4.52">
  4. <root id="1">
  5. <DefaultCasing>exact</DefaultCasing>
  6. <DefaultEngine>InnoDB</DefaultEngine>
  7. <DefaultTmpEngine>InnoDB</DefaultTmpEngine>
  8. <Grants>|root||debian-sys-maint|localhost|ALTER|G
  9. |root||dexter||ALTER|G
  10. |root||root||ALTER|G
  11. |root||root|localhost|ALTER|G
  12. |root||sistemas||ALTER|G
  13. |root||debian-sys-maint|localhost|ALTER ROUTINE|G
  14. |root||dexter||ALTER ROUTINE|G
  15. |root||root||ALTER ROUTINE|G
  16. |root||root|localhost|ALTER ROUTINE|G
  17. |root||sistemas||ALTER ROUTINE|G
  18. |root||debian-sys-maint|localhost|CREATE|G
  19. |root||dexter||CREATE|G
  20. |root||root||CREATE|G
  21. |root||root|localhost|CREATE|G
  22. |root||sistemas||CREATE|G
  23. |root||debian-sys-maint|localhost|CREATE ROUTINE|G
  24. |root||dexter||CREATE ROUTINE|G
  25. |root||root||CREATE ROUTINE|G
  26. |root||root|localhost|CREATE ROUTINE|G
  27. |root||sistemas||CREATE ROUTINE|G
  28. |root||debian-sys-maint|localhost|CREATE TABLESPACE|G
  29. |root||dexter||CREATE TABLESPACE|G
  30. |root||root||CREATE TABLESPACE|G
  31. |root||root|localhost|CREATE TABLESPACE|G
  32. |root||sistemas||CREATE TABLESPACE|G
  33. |root||debian-sys-maint|localhost|CREATE TEMPORARY TABLES|G
  34. |root||dexter||CREATE TEMPORARY TABLES|G
  35. |root||root||CREATE TEMPORARY TABLES|G
  36. |root||root|localhost|CREATE TEMPORARY TABLES|G
  37. |root||sistemas||CREATE TEMPORARY TABLES|G
  38. |root||debian-sys-maint|localhost|CREATE USER|G
  39. |root||dexter||CREATE USER|G
  40. |root||root||CREATE USER|G
  41. |root||root|localhost|CREATE USER|G
  42. |root||sistemas||CREATE USER|G
  43. |root||debian-sys-maint|localhost|CREATE VIEW|G
  44. |root||dexter||CREATE VIEW|G
  45. |root||root||CREATE VIEW|G
  46. |root||root|localhost|CREATE VIEW|G
  47. |root||sistemas||CREATE VIEW|G
  48. |root||debian-sys-maint|localhost|DELETE|G
  49. |root||dexter||DELETE|G
  50. |root||root||DELETE|G
  51. |root||root|localhost|DELETE|G
  52. |root||sistemas||DELETE|G
  53. |root||debian-sys-maint|localhost|DROP|G
  54. |root||dexter||DROP|G
  55. |root||root||DROP|G
  56. |root||root|localhost|DROP|G
  57. |root||sistemas||DROP|G
  58. |root||debian-sys-maint|localhost|EVENT|G
  59. |root||dexter||EVENT|G
  60. |root||root||EVENT|G
  61. |root||root|localhost|EVENT|G
  62. |root||sistemas||EVENT|G
  63. |root||debian-sys-maint|localhost|EXECUTE|G
  64. |root||dexter||EXECUTE|G
  65. |root||root||EXECUTE|G
  66. |root||root|localhost|EXECUTE|G
  67. |root||sistemas||EXECUTE|G
  68. |root||debian-sys-maint|localhost|FILE|G
  69. |root||dexter||FILE|G
  70. |root||root||FILE|G
  71. |root||root|localhost|FILE|G
  72. |root||sistemas||FILE|G
  73. |root||debian-sys-maint|localhost|INDEX|G
  74. |root||dexter||INDEX|G
  75. |root||root||INDEX|G
  76. |root||root|localhost|INDEX|G
  77. |root||sistemas||INDEX|G
  78. |root||debian-sys-maint|localhost|INSERT|G
  79. |root||dexter||INSERT|G
  80. |root||root||INSERT|G
  81. |root||root|localhost|INSERT|G
  82. |root||sistemas||INSERT|G
  83. |root||debian-sys-maint|localhost|LOCK TABLES|G
  84. |root||dexter||LOCK TABLES|G
  85. |root||root||LOCK TABLES|G
  86. |root||root|localhost|LOCK TABLES|G
  87. |root||sistemas||LOCK TABLES|G
  88. |root||debian-sys-maint|localhost|PROCESS|G
  89. |root||dexter||PROCESS|G
  90. |root||root||PROCESS|G
  91. |root||root|localhost|PROCESS|G
  92. |root||sistemas||PROCESS|G
  93. |root||debian-sys-maint|localhost|REFERENCES|G
  94. |root||dexter||REFERENCES|G
  95. |root||root||REFERENCES|G
  96. |root||root|localhost|REFERENCES|G
  97. |root||sistemas||REFERENCES|G
  98. |root||debian-sys-maint|localhost|RELOAD|G
  99. |root||dexter||RELOAD|G
  100. |root||root||RELOAD|G
  101. |root||root|localhost|RELOAD|G
  102. |root||sistemas||RELOAD|G
  103. |root||debian-sys-maint|localhost|REPLICATION CLIENT|G
  104. |root||dexter||REPLICATION CLIENT|G
  105. |root||root||REPLICATION CLIENT|G
  106. |root||root|localhost|REPLICATION CLIENT|G
  107. |root||sistemas||REPLICATION CLIENT|G
  108. |root||debian-sys-maint|localhost|REPLICATION SLAVE|G
  109. |root||dexter||REPLICATION SLAVE|G
  110. |root||root||REPLICATION SLAVE|G
  111. |root||root|localhost|REPLICATION SLAVE|G
  112. |root||sistemas||REPLICATION SLAVE|G
  113. |root||debian-sys-maint|localhost|SELECT|G
  114. |root||dexter||SELECT|G
  115. |root||root||SELECT|G
  116. |root||root|localhost|SELECT|G
  117. |root||sistemas||SELECT|G
  118. |root||debian-sys-maint|localhost|SHOW DATABASES|G
  119. |root||dexter||SHOW DATABASES|G
  120. |root||root||SHOW DATABASES|G
  121. |root||root|localhost|SHOW DATABASES|G
  122. |root||sistemas||SHOW DATABASES|G
  123. |root||debian-sys-maint|localhost|SHOW VIEW|G
  124. |root||dexter||SHOW VIEW|G
  125. |root||root||SHOW VIEW|G
  126. |root||root|localhost|SHOW VIEW|G
  127. |root||sistemas||SHOW VIEW|G
  128. |root||debian-sys-maint|localhost|SHUTDOWN|G
  129. |root||dexter||SHUTDOWN|G
  130. |root||root||SHUTDOWN|G
  131. |root||root|localhost|SHUTDOWN|G
  132. |root||sistemas||SHUTDOWN|G
  133. |root||debian-sys-maint|localhost|SUPER|G
  134. |root||dexter||SUPER|G
  135. |root||mysql.session|localhost|SUPER|G
  136. |root||root||SUPER|G
  137. |root||root|localhost|SUPER|G
  138. |root||sistemas||SUPER|G
  139. |root||debian-sys-maint|localhost|TRIGGER|G
  140. |root||dexter||TRIGGER|G
  141. |root||root||TRIGGER|G
  142. |root||root|localhost|TRIGGER|G
  143. |root||sistemas||TRIGGER|G
  144. |root||debian-sys-maint|localhost|UPDATE|G
  145. |root||dexter||UPDATE|G
  146. |root||root||UPDATE|G
  147. |root||root|localhost|UPDATE|G
  148. |root||sistemas||UPDATE|G
  149. |root||debian-sys-maint|localhost|grant option|G
  150. |root||dexter||grant option|G
  151. |root||root||grant option|G
  152. |root||root|localhost|grant option|G
  153. |root||sistemas||grant option|G
  154. %|schema||dexter||ALTER|G
  155. %|schema||sistemas||ALTER|G
  156. %|schema||dexter||ALTER ROUTINE|G
  157. %|schema||sistemas||ALTER ROUTINE|G
  158. %|schema||dexter||CREATE|G
  159. %|schema||sistemas||CREATE|G
  160. %|schema||dexter||CREATE ROUTINE|G
  161. %|schema||sistemas||CREATE ROUTINE|G
  162. %|schema||dexter||CREATE TEMPORARY TABLES|G
  163. %|schema||sistemas||CREATE TEMPORARY TABLES|G
  164. %|schema||dexter||CREATE VIEW|G
  165. %|schema||sistemas||CREATE VIEW|G
  166. %|schema||dexter||DELETE|G
  167. %|schema||sistemas||DELETE|G
  168. %|schema||dexter||DROP|G
  169. %|schema||sistemas||DROP|G
  170. %|schema||dexter||EVENT|G
  171. %|schema||sistemas||EVENT|G
  172. %|schema||dexter||EXECUTE|G
  173. %|schema||sistemas||EXECUTE|G
  174. %|schema||dexter||INDEX|G
  175. %|schema||sistemas||INDEX|G
  176. %|schema||dexter||INSERT|G
  177. %|schema||sistemas||INSERT|G
  178. %|schema||dexter||LOCK TABLES|G
  179. %|schema||sistemas||LOCK TABLES|G
  180. %|schema||dexter||REFERENCES|G
  181. %|schema||sistemas||REFERENCES|G
  182. %|schema||dexter||SELECT|G
  183. %|schema||sistemas||SELECT|G
  184. %|schema||dexter||SHOW VIEW|G
  185. %|schema||sistemas||SHOW VIEW|G
  186. %|schema||dexter||TRIGGER|G
  187. %|schema||sistemas||TRIGGER|G
  188. %|schema||dexter||UPDATE|G
  189. %|schema||sistemas||UPDATE|G
  190. %|schema||dexter||grant option|G
  191. %|schema||sistemas||grant option|G
  192. performance_schema|schema||mysql.session|localhost|SELECT|G
  193. phpmyadmin|schema||phpmyadmin|localhost|ALTER|G
  194. phpmyadmin|schema||phpmyadmin|localhost|ALTER ROUTINE|G
  195. phpmyadmin|schema||phpmyadmin|localhost|CREATE|G
  196. phpmyadmin|schema||phpmyadmin|localhost|CREATE ROUTINE|G
  197. phpmyadmin|schema||phpmyadmin|localhost|CREATE TEMPORARY TABLES|G
  198. phpmyadmin|schema||phpmyadmin|localhost|CREATE VIEW|G
  199. phpmyadmin|schema||phpmyadmin|localhost|DELETE|G
  200. phpmyadmin|schema||phpmyadmin|localhost|DROP|G
  201. phpmyadmin|schema||phpmyadmin|localhost|EVENT|G
  202. phpmyadmin|schema||phpmyadmin|localhost|EXECUTE|G
  203. phpmyadmin|schema||phpmyadmin|localhost|INDEX|G
  204. phpmyadmin|schema||phpmyadmin|localhost|INSERT|G
  205. phpmyadmin|schema||phpmyadmin|localhost|LOCK TABLES|G
  206. phpmyadmin|schema||phpmyadmin|localhost|REFERENCES|G
  207. phpmyadmin|schema||phpmyadmin|localhost|SELECT|G
  208. phpmyadmin|schema||phpmyadmin|localhost|SHOW VIEW|G
  209. phpmyadmin|schema||phpmyadmin|localhost|TRIGGER|G
  210. phpmyadmin|schema||phpmyadmin|localhost|UPDATE|G
  211. sys|schema||mysql.sys|localhost|TRIGGER|G</Grants>
  212. <ServerVersion>5.7.44</ServerVersion>
  213. </root>
  214. <collation id="2" parent="1" name="armscii8_bin">
  215. <Charset>armscii8</Charset>
  216. </collation>
  217. <collation id="3" parent="1" name="armscii8_general_ci">
  218. <Charset>armscii8</Charset>
  219. <DefaultForCharset>1</DefaultForCharset>
  220. </collation>
  221. <collation id="4" parent="1" name="ascii_bin">
  222. <Charset>ascii</Charset>
  223. </collation>
  224. <collation id="5" parent="1" name="ascii_general_ci">
  225. <Charset>ascii</Charset>
  226. <DefaultForCharset>1</DefaultForCharset>
  227. </collation>
  228. <collation id="6" parent="1" name="big5_bin">
  229. <Charset>big5</Charset>
  230. </collation>
  231. <collation id="7" parent="1" name="big5_chinese_ci">
  232. <Charset>big5</Charset>
  233. <DefaultForCharset>1</DefaultForCharset>
  234. </collation>
  235. <collation id="8" parent="1" name="binary">
  236. <Charset>binary</Charset>
  237. <DefaultForCharset>1</DefaultForCharset>
  238. </collation>
  239. <collation id="9" parent="1" name="cp1250_bin">
  240. <Charset>cp1250</Charset>
  241. </collation>
  242. <collation id="10" parent="1" name="cp1250_croatian_ci">
  243. <Charset>cp1250</Charset>
  244. </collation>
  245. <collation id="11" parent="1" name="cp1250_czech_cs">
  246. <Charset>cp1250</Charset>
  247. </collation>
  248. <collation id="12" parent="1" name="cp1250_general_ci">
  249. <Charset>cp1250</Charset>
  250. <DefaultForCharset>1</DefaultForCharset>
  251. </collation>
  252. <collation id="13" parent="1" name="cp1250_polish_ci">
  253. <Charset>cp1250</Charset>
  254. </collation>
  255. <collation id="14" parent="1" name="cp1251_bin">
  256. <Charset>cp1251</Charset>
  257. </collation>
  258. <collation id="15" parent="1" name="cp1251_bulgarian_ci">
  259. <Charset>cp1251</Charset>
  260. </collation>
  261. <collation id="16" parent="1" name="cp1251_general_ci">
  262. <Charset>cp1251</Charset>
  263. <DefaultForCharset>1</DefaultForCharset>
  264. </collation>
  265. <collation id="17" parent="1" name="cp1251_general_cs">
  266. <Charset>cp1251</Charset>
  267. </collation>
  268. <collation id="18" parent="1" name="cp1251_ukrainian_ci">
  269. <Charset>cp1251</Charset>
  270. </collation>
  271. <collation id="19" parent="1" name="cp1256_bin">
  272. <Charset>cp1256</Charset>
  273. </collation>
  274. <collation id="20" parent="1" name="cp1256_general_ci">
  275. <Charset>cp1256</Charset>
  276. <DefaultForCharset>1</DefaultForCharset>
  277. </collation>
  278. <collation id="21" parent="1" name="cp1257_bin">
  279. <Charset>cp1257</Charset>
  280. </collation>
  281. <collation id="22" parent="1" name="cp1257_general_ci">
  282. <Charset>cp1257</Charset>
  283. <DefaultForCharset>1</DefaultForCharset>
  284. </collation>
  285. <collation id="23" parent="1" name="cp1257_lithuanian_ci">
  286. <Charset>cp1257</Charset>
  287. </collation>
  288. <collation id="24" parent="1" name="cp850_bin">
  289. <Charset>cp850</Charset>
  290. </collation>
  291. <collation id="25" parent="1" name="cp850_general_ci">
  292. <Charset>cp850</Charset>
  293. <DefaultForCharset>1</DefaultForCharset>
  294. </collation>
  295. <collation id="26" parent="1" name="cp852_bin">
  296. <Charset>cp852</Charset>
  297. </collation>
  298. <collation id="27" parent="1" name="cp852_general_ci">
  299. <Charset>cp852</Charset>
  300. <DefaultForCharset>1</DefaultForCharset>
  301. </collation>
  302. <collation id="28" parent="1" name="cp866_bin">
  303. <Charset>cp866</Charset>
  304. </collation>
  305. <collation id="29" parent="1" name="cp866_general_ci">
  306. <Charset>cp866</Charset>
  307. <DefaultForCharset>1</DefaultForCharset>
  308. </collation>
  309. <collation id="30" parent="1" name="cp932_bin">
  310. <Charset>cp932</Charset>
  311. </collation>
  312. <collation id="31" parent="1" name="cp932_japanese_ci">
  313. <Charset>cp932</Charset>
  314. <DefaultForCharset>1</DefaultForCharset>
  315. </collation>
  316. <collation id="32" parent="1" name="dec8_bin">
  317. <Charset>dec8</Charset>
  318. </collation>
  319. <collation id="33" parent="1" name="dec8_swedish_ci">
  320. <Charset>dec8</Charset>
  321. <DefaultForCharset>1</DefaultForCharset>
  322. </collation>
  323. <collation id="34" parent="1" name="eucjpms_bin">
  324. <Charset>eucjpms</Charset>
  325. </collation>
  326. <collation id="35" parent="1" name="eucjpms_japanese_ci">
  327. <Charset>eucjpms</Charset>
  328. <DefaultForCharset>1</DefaultForCharset>
  329. </collation>
  330. <collation id="36" parent="1" name="euckr_bin">
  331. <Charset>euckr</Charset>
  332. </collation>
  333. <collation id="37" parent="1" name="euckr_korean_ci">
  334. <Charset>euckr</Charset>
  335. <DefaultForCharset>1</DefaultForCharset>
  336. </collation>
  337. <collation id="38" parent="1" name="gb18030_bin">
  338. <Charset>gb18030</Charset>
  339. </collation>
  340. <collation id="39" parent="1" name="gb18030_chinese_ci">
  341. <Charset>gb18030</Charset>
  342. <DefaultForCharset>1</DefaultForCharset>
  343. </collation>
  344. <collation id="40" parent="1" name="gb18030_unicode_520_ci">
  345. <Charset>gb18030</Charset>
  346. </collation>
  347. <collation id="41" parent="1" name="gb2312_bin">
  348. <Charset>gb2312</Charset>
  349. </collation>
  350. <collation id="42" parent="1" name="gb2312_chinese_ci">
  351. <Charset>gb2312</Charset>
  352. <DefaultForCharset>1</DefaultForCharset>
  353. </collation>
  354. <collation id="43" parent="1" name="gbk_bin">
  355. <Charset>gbk</Charset>
  356. </collation>
  357. <collation id="44" parent="1" name="gbk_chinese_ci">
  358. <Charset>gbk</Charset>
  359. <DefaultForCharset>1</DefaultForCharset>
  360. </collation>
  361. <collation id="45" parent="1" name="geostd8_bin">
  362. <Charset>geostd8</Charset>
  363. </collation>
  364. <collation id="46" parent="1" name="geostd8_general_ci">
  365. <Charset>geostd8</Charset>
  366. <DefaultForCharset>1</DefaultForCharset>
  367. </collation>
  368. <collation id="47" parent="1" name="greek_bin">
  369. <Charset>greek</Charset>
  370. </collation>
  371. <collation id="48" parent="1" name="greek_general_ci">
  372. <Charset>greek</Charset>
  373. <DefaultForCharset>1</DefaultForCharset>
  374. </collation>
  375. <collation id="49" parent="1" name="hebrew_bin">
  376. <Charset>hebrew</Charset>
  377. </collation>
  378. <collation id="50" parent="1" name="hebrew_general_ci">
  379. <Charset>hebrew</Charset>
  380. <DefaultForCharset>1</DefaultForCharset>
  381. </collation>
  382. <collation id="51" parent="1" name="hp8_bin">
  383. <Charset>hp8</Charset>
  384. </collation>
  385. <collation id="52" parent="1" name="hp8_english_ci">
  386. <Charset>hp8</Charset>
  387. <DefaultForCharset>1</DefaultForCharset>
  388. </collation>
  389. <collation id="53" parent="1" name="keybcs2_bin">
  390. <Charset>keybcs2</Charset>
  391. </collation>
  392. <collation id="54" parent="1" name="keybcs2_general_ci">
  393. <Charset>keybcs2</Charset>
  394. <DefaultForCharset>1</DefaultForCharset>
  395. </collation>
  396. <collation id="55" parent="1" name="koi8r_bin">
  397. <Charset>koi8r</Charset>
  398. </collation>
  399. <collation id="56" parent="1" name="koi8r_general_ci">
  400. <Charset>koi8r</Charset>
  401. <DefaultForCharset>1</DefaultForCharset>
  402. </collation>
  403. <collation id="57" parent="1" name="koi8u_bin">
  404. <Charset>koi8u</Charset>
  405. </collation>
  406. <collation id="58" parent="1" name="koi8u_general_ci">
  407. <Charset>koi8u</Charset>
  408. <DefaultForCharset>1</DefaultForCharset>
  409. </collation>
  410. <collation id="59" parent="1" name="latin1_bin">
  411. <Charset>latin1</Charset>
  412. </collation>
  413. <collation id="60" parent="1" name="latin1_danish_ci">
  414. <Charset>latin1</Charset>
  415. </collation>
  416. <collation id="61" parent="1" name="latin1_general_ci">
  417. <Charset>latin1</Charset>
  418. </collation>
  419. <collation id="62" parent="1" name="latin1_general_cs">
  420. <Charset>latin1</Charset>
  421. </collation>
  422. <collation id="63" parent="1" name="latin1_german1_ci">
  423. <Charset>latin1</Charset>
  424. </collation>
  425. <collation id="64" parent="1" name="latin1_german2_ci">
  426. <Charset>latin1</Charset>
  427. </collation>
  428. <collation id="65" parent="1" name="latin1_spanish_ci">
  429. <Charset>latin1</Charset>
  430. </collation>
  431. <collation id="66" parent="1" name="latin1_swedish_ci">
  432. <Charset>latin1</Charset>
  433. <DefaultForCharset>1</DefaultForCharset>
  434. </collation>
  435. <collation id="67" parent="1" name="latin2_bin">
  436. <Charset>latin2</Charset>
  437. </collation>
  438. <collation id="68" parent="1" name="latin2_croatian_ci">
  439. <Charset>latin2</Charset>
  440. </collation>
  441. <collation id="69" parent="1" name="latin2_czech_cs">
  442. <Charset>latin2</Charset>
  443. </collation>
  444. <collation id="70" parent="1" name="latin2_general_ci">
  445. <Charset>latin2</Charset>
  446. <DefaultForCharset>1</DefaultForCharset>
  447. </collation>
  448. <collation id="71" parent="1" name="latin2_hungarian_ci">
  449. <Charset>latin2</Charset>
  450. </collation>
  451. <collation id="72" parent="1" name="latin5_bin">
  452. <Charset>latin5</Charset>
  453. </collation>
  454. <collation id="73" parent="1" name="latin5_turkish_ci">
  455. <Charset>latin5</Charset>
  456. <DefaultForCharset>1</DefaultForCharset>
  457. </collation>
  458. <collation id="74" parent="1" name="latin7_bin">
  459. <Charset>latin7</Charset>
  460. </collation>
  461. <collation id="75" parent="1" name="latin7_estonian_cs">
  462. <Charset>latin7</Charset>
  463. </collation>
  464. <collation id="76" parent="1" name="latin7_general_ci">
  465. <Charset>latin7</Charset>
  466. <DefaultForCharset>1</DefaultForCharset>
  467. </collation>
  468. <collation id="77" parent="1" name="latin7_general_cs">
  469. <Charset>latin7</Charset>
  470. </collation>
  471. <collation id="78" parent="1" name="macce_bin">
  472. <Charset>macce</Charset>
  473. </collation>
  474. <collation id="79" parent="1" name="macce_general_ci">
  475. <Charset>macce</Charset>
  476. <DefaultForCharset>1</DefaultForCharset>
  477. </collation>
  478. <collation id="80" parent="1" name="macroman_bin">
  479. <Charset>macroman</Charset>
  480. </collation>
  481. <collation id="81" parent="1" name="macroman_general_ci">
  482. <Charset>macroman</Charset>
  483. <DefaultForCharset>1</DefaultForCharset>
  484. </collation>
  485. <collation id="82" parent="1" name="sjis_bin">
  486. <Charset>sjis</Charset>
  487. </collation>
  488. <collation id="83" parent="1" name="sjis_japanese_ci">
  489. <Charset>sjis</Charset>
  490. <DefaultForCharset>1</DefaultForCharset>
  491. </collation>
  492. <collation id="84" parent="1" name="swe7_bin">
  493. <Charset>swe7</Charset>
  494. </collation>
  495. <collation id="85" parent="1" name="swe7_swedish_ci">
  496. <Charset>swe7</Charset>
  497. <DefaultForCharset>1</DefaultForCharset>
  498. </collation>
  499. <collation id="86" parent="1" name="tis620_bin">
  500. <Charset>tis620</Charset>
  501. </collation>
  502. <collation id="87" parent="1" name="tis620_thai_ci">
  503. <Charset>tis620</Charset>
  504. <DefaultForCharset>1</DefaultForCharset>
  505. </collation>
  506. <collation id="88" parent="1" name="ucs2_bin">
  507. <Charset>ucs2</Charset>
  508. </collation>
  509. <collation id="89" parent="1" name="ucs2_croatian_ci">
  510. <Charset>ucs2</Charset>
  511. </collation>
  512. <collation id="90" parent="1" name="ucs2_czech_ci">
  513. <Charset>ucs2</Charset>
  514. </collation>
  515. <collation id="91" parent="1" name="ucs2_danish_ci">
  516. <Charset>ucs2</Charset>
  517. </collation>
  518. <collation id="92" parent="1" name="ucs2_esperanto_ci">
  519. <Charset>ucs2</Charset>
  520. </collation>
  521. <collation id="93" parent="1" name="ucs2_estonian_ci">
  522. <Charset>ucs2</Charset>
  523. </collation>
  524. <collation id="94" parent="1" name="ucs2_general_ci">
  525. <Charset>ucs2</Charset>
  526. <DefaultForCharset>1</DefaultForCharset>
  527. </collation>
  528. <collation id="95" parent="1" name="ucs2_general_mysql500_ci">
  529. <Charset>ucs2</Charset>
  530. </collation>
  531. <collation id="96" parent="1" name="ucs2_german2_ci">
  532. <Charset>ucs2</Charset>
  533. </collation>
  534. <collation id="97" parent="1" name="ucs2_hungarian_ci">
  535. <Charset>ucs2</Charset>
  536. </collation>
  537. <collation id="98" parent="1" name="ucs2_icelandic_ci">
  538. <Charset>ucs2</Charset>
  539. </collation>
  540. <collation id="99" parent="1" name="ucs2_latvian_ci">
  541. <Charset>ucs2</Charset>
  542. </collation>
  543. <collation id="100" parent="1" name="ucs2_lithuanian_ci">
  544. <Charset>ucs2</Charset>
  545. </collation>
  546. <collation id="101" parent="1" name="ucs2_persian_ci">
  547. <Charset>ucs2</Charset>
  548. </collation>
  549. <collation id="102" parent="1" name="ucs2_polish_ci">
  550. <Charset>ucs2</Charset>
  551. </collation>
  552. <collation id="103" parent="1" name="ucs2_roman_ci">
  553. <Charset>ucs2</Charset>
  554. </collation>
  555. <collation id="104" parent="1" name="ucs2_romanian_ci">
  556. <Charset>ucs2</Charset>
  557. </collation>
  558. <collation id="105" parent="1" name="ucs2_sinhala_ci">
  559. <Charset>ucs2</Charset>
  560. </collation>
  561. <collation id="106" parent="1" name="ucs2_slovak_ci">
  562. <Charset>ucs2</Charset>
  563. </collation>
  564. <collation id="107" parent="1" name="ucs2_slovenian_ci">
  565. <Charset>ucs2</Charset>
  566. </collation>
  567. <collation id="108" parent="1" name="ucs2_spanish2_ci">
  568. <Charset>ucs2</Charset>
  569. </collation>
  570. <collation id="109" parent="1" name="ucs2_spanish_ci">
  571. <Charset>ucs2</Charset>
  572. </collation>
  573. <collation id="110" parent="1" name="ucs2_swedish_ci">
  574. <Charset>ucs2</Charset>
  575. </collation>
  576. <collation id="111" parent="1" name="ucs2_turkish_ci">
  577. <Charset>ucs2</Charset>
  578. </collation>
  579. <collation id="112" parent="1" name="ucs2_unicode_520_ci">
  580. <Charset>ucs2</Charset>
  581. </collation>
  582. <collation id="113" parent="1" name="ucs2_unicode_ci">
  583. <Charset>ucs2</Charset>
  584. </collation>
  585. <collation id="114" parent="1" name="ucs2_vietnamese_ci">
  586. <Charset>ucs2</Charset>
  587. </collation>
  588. <collation id="115" parent="1" name="ujis_bin">
  589. <Charset>ujis</Charset>
  590. </collation>
  591. <collation id="116" parent="1" name="ujis_japanese_ci">
  592. <Charset>ujis</Charset>
  593. <DefaultForCharset>1</DefaultForCharset>
  594. </collation>
  595. <collation id="117" parent="1" name="utf16_bin">
  596. <Charset>utf16</Charset>
  597. </collation>
  598. <collation id="118" parent="1" name="utf16_croatian_ci">
  599. <Charset>utf16</Charset>
  600. </collation>
  601. <collation id="119" parent="1" name="utf16_czech_ci">
  602. <Charset>utf16</Charset>
  603. </collation>
  604. <collation id="120" parent="1" name="utf16_danish_ci">
  605. <Charset>utf16</Charset>
  606. </collation>
  607. <collation id="121" parent="1" name="utf16_esperanto_ci">
  608. <Charset>utf16</Charset>
  609. </collation>
  610. <collation id="122" parent="1" name="utf16_estonian_ci">
  611. <Charset>utf16</Charset>
  612. </collation>
  613. <collation id="123" parent="1" name="utf16_general_ci">
  614. <Charset>utf16</Charset>
  615. <DefaultForCharset>1</DefaultForCharset>
  616. </collation>
  617. <collation id="124" parent="1" name="utf16_german2_ci">
  618. <Charset>utf16</Charset>
  619. </collation>
  620. <collation id="125" parent="1" name="utf16_hungarian_ci">
  621. <Charset>utf16</Charset>
  622. </collation>
  623. <collation id="126" parent="1" name="utf16_icelandic_ci">
  624. <Charset>utf16</Charset>
  625. </collation>
  626. <collation id="127" parent="1" name="utf16_latvian_ci">
  627. <Charset>utf16</Charset>
  628. </collation>
  629. <collation id="128" parent="1" name="utf16_lithuanian_ci">
  630. <Charset>utf16</Charset>
  631. </collation>
  632. <collation id="129" parent="1" name="utf16_persian_ci">
  633. <Charset>utf16</Charset>
  634. </collation>
  635. <collation id="130" parent="1" name="utf16_polish_ci">
  636. <Charset>utf16</Charset>
  637. </collation>
  638. <collation id="131" parent="1" name="utf16_roman_ci">
  639. <Charset>utf16</Charset>
  640. </collation>
  641. <collation id="132" parent="1" name="utf16_romanian_ci">
  642. <Charset>utf16</Charset>
  643. </collation>
  644. <collation id="133" parent="1" name="utf16_sinhala_ci">
  645. <Charset>utf16</Charset>
  646. </collation>
  647. <collation id="134" parent="1" name="utf16_slovak_ci">
  648. <Charset>utf16</Charset>
  649. </collation>
  650. <collation id="135" parent="1" name="utf16_slovenian_ci">
  651. <Charset>utf16</Charset>
  652. </collation>
  653. <collation id="136" parent="1" name="utf16_spanish2_ci">
  654. <Charset>utf16</Charset>
  655. </collation>
  656. <collation id="137" parent="1" name="utf16_spanish_ci">
  657. <Charset>utf16</Charset>
  658. </collation>
  659. <collation id="138" parent="1" name="utf16_swedish_ci">
  660. <Charset>utf16</Charset>
  661. </collation>
  662. <collation id="139" parent="1" name="utf16_turkish_ci">
  663. <Charset>utf16</Charset>
  664. </collation>
  665. <collation id="140" parent="1" name="utf16_unicode_520_ci">
  666. <Charset>utf16</Charset>
  667. </collation>
  668. <collation id="141" parent="1" name="utf16_unicode_ci">
  669. <Charset>utf16</Charset>
  670. </collation>
  671. <collation id="142" parent="1" name="utf16_vietnamese_ci">
  672. <Charset>utf16</Charset>
  673. </collation>
  674. <collation id="143" parent="1" name="utf16le_bin">
  675. <Charset>utf16le</Charset>
  676. </collation>
  677. <collation id="144" parent="1" name="utf16le_general_ci">
  678. <Charset>utf16le</Charset>
  679. <DefaultForCharset>1</DefaultForCharset>
  680. </collation>
  681. <collation id="145" parent="1" name="utf32_bin">
  682. <Charset>utf32</Charset>
  683. </collation>
  684. <collation id="146" parent="1" name="utf32_croatian_ci">
  685. <Charset>utf32</Charset>
  686. </collation>
  687. <collation id="147" parent="1" name="utf32_czech_ci">
  688. <Charset>utf32</Charset>
  689. </collation>
  690. <collation id="148" parent="1" name="utf32_danish_ci">
  691. <Charset>utf32</Charset>
  692. </collation>
  693. <collation id="149" parent="1" name="utf32_esperanto_ci">
  694. <Charset>utf32</Charset>
  695. </collation>
  696. <collation id="150" parent="1" name="utf32_estonian_ci">
  697. <Charset>utf32</Charset>
  698. </collation>
  699. <collation id="151" parent="1" name="utf32_general_ci">
  700. <Charset>utf32</Charset>
  701. <DefaultForCharset>1</DefaultForCharset>
  702. </collation>
  703. <collation id="152" parent="1" name="utf32_german2_ci">
  704. <Charset>utf32</Charset>
  705. </collation>
  706. <collation id="153" parent="1" name="utf32_hungarian_ci">
  707. <Charset>utf32</Charset>
  708. </collation>
  709. <collation id="154" parent="1" name="utf32_icelandic_ci">
  710. <Charset>utf32</Charset>
  711. </collation>
  712. <collation id="155" parent="1" name="utf32_latvian_ci">
  713. <Charset>utf32</Charset>
  714. </collation>
  715. <collation id="156" parent="1" name="utf32_lithuanian_ci">
  716. <Charset>utf32</Charset>
  717. </collation>
  718. <collation id="157" parent="1" name="utf32_persian_ci">
  719. <Charset>utf32</Charset>
  720. </collation>
  721. <collation id="158" parent="1" name="utf32_polish_ci">
  722. <Charset>utf32</Charset>
  723. </collation>
  724. <collation id="159" parent="1" name="utf32_roman_ci">
  725. <Charset>utf32</Charset>
  726. </collation>
  727. <collation id="160" parent="1" name="utf32_romanian_ci">
  728. <Charset>utf32</Charset>
  729. </collation>
  730. <collation id="161" parent="1" name="utf32_sinhala_ci">
  731. <Charset>utf32</Charset>
  732. </collation>
  733. <collation id="162" parent="1" name="utf32_slovak_ci">
  734. <Charset>utf32</Charset>
  735. </collation>
  736. <collation id="163" parent="1" name="utf32_slovenian_ci">
  737. <Charset>utf32</Charset>
  738. </collation>
  739. <collation id="164" parent="1" name="utf32_spanish2_ci">
  740. <Charset>utf32</Charset>
  741. </collation>
  742. <collation id="165" parent="1" name="utf32_spanish_ci">
  743. <Charset>utf32</Charset>
  744. </collation>
  745. <collation id="166" parent="1" name="utf32_swedish_ci">
  746. <Charset>utf32</Charset>
  747. </collation>
  748. <collation id="167" parent="1" name="utf32_turkish_ci">
  749. <Charset>utf32</Charset>
  750. </collation>
  751. <collation id="168" parent="1" name="utf32_unicode_520_ci">
  752. <Charset>utf32</Charset>
  753. </collation>
  754. <collation id="169" parent="1" name="utf32_unicode_ci">
  755. <Charset>utf32</Charset>
  756. </collation>
  757. <collation id="170" parent="1" name="utf32_vietnamese_ci">
  758. <Charset>utf32</Charset>
  759. </collation>
  760. <collation id="171" parent="1" name="utf8_bin">
  761. <Charset>utf8</Charset>
  762. </collation>
  763. <collation id="172" parent="1" name="utf8_croatian_ci">
  764. <Charset>utf8</Charset>
  765. </collation>
  766. <collation id="173" parent="1" name="utf8_czech_ci">
  767. <Charset>utf8</Charset>
  768. </collation>
  769. <collation id="174" parent="1" name="utf8_danish_ci">
  770. <Charset>utf8</Charset>
  771. </collation>
  772. <collation id="175" parent="1" name="utf8_esperanto_ci">
  773. <Charset>utf8</Charset>
  774. </collation>
  775. <collation id="176" parent="1" name="utf8_estonian_ci">
  776. <Charset>utf8</Charset>
  777. </collation>
  778. <collation id="177" parent="1" name="utf8_general_ci">
  779. <Charset>utf8</Charset>
  780. <DefaultForCharset>1</DefaultForCharset>
  781. </collation>
  782. <collation id="178" parent="1" name="utf8_general_mysql500_ci">
  783. <Charset>utf8</Charset>
  784. </collation>
  785. <collation id="179" parent="1" name="utf8_german2_ci">
  786. <Charset>utf8</Charset>
  787. </collation>
  788. <collation id="180" parent="1" name="utf8_hungarian_ci">
  789. <Charset>utf8</Charset>
  790. </collation>
  791. <collation id="181" parent="1" name="utf8_icelandic_ci">
  792. <Charset>utf8</Charset>
  793. </collation>
  794. <collation id="182" parent="1" name="utf8_latvian_ci">
  795. <Charset>utf8</Charset>
  796. </collation>
  797. <collation id="183" parent="1" name="utf8_lithuanian_ci">
  798. <Charset>utf8</Charset>
  799. </collation>
  800. <collation id="184" parent="1" name="utf8_persian_ci">
  801. <Charset>utf8</Charset>
  802. </collation>
  803. <collation id="185" parent="1" name="utf8_polish_ci">
  804. <Charset>utf8</Charset>
  805. </collation>
  806. <collation id="186" parent="1" name="utf8_roman_ci">
  807. <Charset>utf8</Charset>
  808. </collation>
  809. <collation id="187" parent="1" name="utf8_romanian_ci">
  810. <Charset>utf8</Charset>
  811. </collation>
  812. <collation id="188" parent="1" name="utf8_sinhala_ci">
  813. <Charset>utf8</Charset>
  814. </collation>
  815. <collation id="189" parent="1" name="utf8_slovak_ci">
  816. <Charset>utf8</Charset>
  817. </collation>
  818. <collation id="190" parent="1" name="utf8_slovenian_ci">
  819. <Charset>utf8</Charset>
  820. </collation>
  821. <collation id="191" parent="1" name="utf8_spanish2_ci">
  822. <Charset>utf8</Charset>
  823. </collation>
  824. <collation id="192" parent="1" name="utf8_spanish_ci">
  825. <Charset>utf8</Charset>
  826. </collation>
  827. <collation id="193" parent="1" name="utf8_swedish_ci">
  828. <Charset>utf8</Charset>
  829. </collation>
  830. <collation id="194" parent="1" name="utf8_turkish_ci">
  831. <Charset>utf8</Charset>
  832. </collation>
  833. <collation id="195" parent="1" name="utf8_unicode_520_ci">
  834. <Charset>utf8</Charset>
  835. </collation>
  836. <collation id="196" parent="1" name="utf8_unicode_ci">
  837. <Charset>utf8</Charset>
  838. </collation>
  839. <collation id="197" parent="1" name="utf8_vietnamese_ci">
  840. <Charset>utf8</Charset>
  841. </collation>
  842. <collation id="198" parent="1" name="utf8mb4_bin">
  843. <Charset>utf8mb4</Charset>
  844. </collation>
  845. <collation id="199" parent="1" name="utf8mb4_croatian_ci">
  846. <Charset>utf8mb4</Charset>
  847. </collation>
  848. <collation id="200" parent="1" name="utf8mb4_czech_ci">
  849. <Charset>utf8mb4</Charset>
  850. </collation>
  851. <collation id="201" parent="1" name="utf8mb4_danish_ci">
  852. <Charset>utf8mb4</Charset>
  853. </collation>
  854. <collation id="202" parent="1" name="utf8mb4_esperanto_ci">
  855. <Charset>utf8mb4</Charset>
  856. </collation>
  857. <collation id="203" parent="1" name="utf8mb4_estonian_ci">
  858. <Charset>utf8mb4</Charset>
  859. </collation>
  860. <collation id="204" parent="1" name="utf8mb4_general_ci">
  861. <Charset>utf8mb4</Charset>
  862. <DefaultForCharset>1</DefaultForCharset>
  863. </collation>
  864. <collation id="205" parent="1" name="utf8mb4_german2_ci">
  865. <Charset>utf8mb4</Charset>
  866. </collation>
  867. <collation id="206" parent="1" name="utf8mb4_hungarian_ci">
  868. <Charset>utf8mb4</Charset>
  869. </collation>
  870. <collation id="207" parent="1" name="utf8mb4_icelandic_ci">
  871. <Charset>utf8mb4</Charset>
  872. </collation>
  873. <collation id="208" parent="1" name="utf8mb4_latvian_ci">
  874. <Charset>utf8mb4</Charset>
  875. </collation>
  876. <collation id="209" parent="1" name="utf8mb4_lithuanian_ci">
  877. <Charset>utf8mb4</Charset>
  878. </collation>
  879. <collation id="210" parent="1" name="utf8mb4_persian_ci">
  880. <Charset>utf8mb4</Charset>
  881. </collation>
  882. <collation id="211" parent="1" name="utf8mb4_polish_ci">
  883. <Charset>utf8mb4</Charset>
  884. </collation>
  885. <collation id="212" parent="1" name="utf8mb4_roman_ci">
  886. <Charset>utf8mb4</Charset>
  887. </collation>
  888. <collation id="213" parent="1" name="utf8mb4_romanian_ci">
  889. <Charset>utf8mb4</Charset>
  890. </collation>
  891. <collation id="214" parent="1" name="utf8mb4_sinhala_ci">
  892. <Charset>utf8mb4</Charset>
  893. </collation>
  894. <collation id="215" parent="1" name="utf8mb4_slovak_ci">
  895. <Charset>utf8mb4</Charset>
  896. </collation>
  897. <collation id="216" parent="1" name="utf8mb4_slovenian_ci">
  898. <Charset>utf8mb4</Charset>
  899. </collation>
  900. <collation id="217" parent="1" name="utf8mb4_spanish2_ci">
  901. <Charset>utf8mb4</Charset>
  902. </collation>
  903. <collation id="218" parent="1" name="utf8mb4_spanish_ci">
  904. <Charset>utf8mb4</Charset>
  905. </collation>
  906. <collation id="219" parent="1" name="utf8mb4_swedish_ci">
  907. <Charset>utf8mb4</Charset>
  908. </collation>
  909. <collation id="220" parent="1" name="utf8mb4_turkish_ci">
  910. <Charset>utf8mb4</Charset>
  911. </collation>
  912. <collation id="221" parent="1" name="utf8mb4_unicode_520_ci">
  913. <Charset>utf8mb4</Charset>
  914. </collation>
  915. <collation id="222" parent="1" name="utf8mb4_unicode_ci">
  916. <Charset>utf8mb4</Charset>
  917. </collation>
  918. <collation id="223" parent="1" name="utf8mb4_vietnamese_ci">
  919. <Charset>utf8mb4</Charset>
  920. </collation>
  921. <schema id="224" parent="1" name="caprecosmos">
  922. <CollationName>latin1_swedish_ci</CollationName>
  923. </schema>
  924. <schema id="225" parent="1" name="cosmodas2022">
  925. <CollationName>latin1_swedish_ci</CollationName>
  926. </schema>
  927. <schema id="226" parent="1" name="cr_debug">
  928. <CollationName>utf8_general_ci</CollationName>
  929. </schema>
  930. <schema id="227" parent="1" name="dbcontabilidad">
  931. <Current>1</Current>
  932. <LastIntrospectionLocalTimestamp>2025-06-30.17:06:43</LastIntrospectionLocalTimestamp>
  933. <CollationName>latin1_swedish_ci</CollationName>
  934. </schema>
  935. <schema id="228" parent="1" name="dbcontabilidad2014">
  936. <CollationName>latin1_swedish_ci</CollationName>
  937. </schema>
  938. <schema id="229" parent="1" name="dbcontabilidad2015">
  939. <CollationName>latin1_swedish_ci</CollationName>
  940. </schema>
  941. <schema id="230" parent="1" name="dbcontabilidad2016">
  942. <CollationName>latin1_swedish_ci</CollationName>
  943. </schema>
  944. <schema id="231" parent="1" name="dbcontabilidad2017">
  945. <CollationName>latin1_swedish_ci</CollationName>
  946. </schema>
  947. <schema id="232" parent="1" name="dbcontabilidad2018">
  948. <CollationName>latin1_swedish_ci</CollationName>
  949. </schema>
  950. <schema id="233" parent="1" name="dbcontabilidad2019">
  951. <CollationName>latin1_swedish_ci</CollationName>
  952. </schema>
  953. <schema id="234" parent="1" name="dbcontabilidad2020">
  954. <CollationName>latin1_swedish_ci</CollationName>
  955. </schema>
  956. <schema id="235" parent="1" name="dbcontabilidad2021">
  957. <CollationName>latin1_swedish_ci</CollationName>
  958. </schema>
  959. <schema id="236" parent="1" name="dbcontabilidad2022">
  960. <CollationName>latin1_swedish_ci</CollationName>
  961. </schema>
  962. <schema id="237" parent="1" name="dbcontabilidad2023">
  963. <CollationName>latin1_swedish_ci</CollationName>
  964. </schema>
  965. <schema id="238" parent="1" name="dbcontabilidad2024">
  966. <CollationName>latin1_swedish_ci</CollationName>
  967. </schema>
  968. <schema id="239" parent="1" name="dbcontabilidadt">
  969. <CollationName>latin1_swedish_ci</CollationName>
  970. </schema>
  971. <schema id="240" parent="1" name="dbcosmodas">
  972. <CollationName>latin1_swedish_ci</CollationName>
  973. </schema>
  974. <schema id="241" parent="1" name="dbcosmodas2001">
  975. <CollationName>latin1_swedish_ci</CollationName>
  976. </schema>
  977. <schema id="242" parent="1" name="dbcosmodas2002">
  978. <CollationName>latin1_swedish_ci</CollationName>
  979. </schema>
  980. <schema id="243" parent="1" name="dbcosmodas2010">
  981. <CollationName>latin1_swedish_ci</CollationName>
  982. </schema>
  983. <schema id="244" parent="1" name="dbcosmodas2011">
  984. <CollationName>latin1_swedish_ci</CollationName>
  985. </schema>
  986. <schema id="245" parent="1" name="dbcosmodas2012">
  987. <CollationName>latin1_swedish_ci</CollationName>
  988. </schema>
  989. <schema id="246" parent="1" name="dbcosmodas2013">
  990. <CollationName>latin1_swedish_ci</CollationName>
  991. </schema>
  992. <schema id="247" parent="1" name="dbcosmodas2014">
  993. <CollationName>latin1_swedish_ci</CollationName>
  994. </schema>
  995. <schema id="248" parent="1" name="dbcosmodas2015">
  996. <CollationName>latin1_swedish_ci</CollationName>
  997. </schema>
  998. <schema id="249" parent="1" name="dbcosmodas2016">
  999. <CollationName>latin1_swedish_ci</CollationName>
  1000. </schema>
  1001. <schema id="250" parent="1" name="dbcosmodas2017">
  1002. <CollationName>latin1_swedish_ci</CollationName>
  1003. </schema>
  1004. <schema id="251" parent="1" name="dbcosmodas2018">
  1005. <CollationName>latin1_swedish_ci</CollationName>
  1006. </schema>
  1007. <schema id="252" parent="1" name="dbcosmodas2019">
  1008. <CollationName>latin1_swedish_ci</CollationName>
  1009. </schema>
  1010. <schema id="253" parent="1" name="dbcosmodas2020">
  1011. <CollationName>latin1_swedish_ci</CollationName>
  1012. </schema>
  1013. <schema id="254" parent="1" name="dbcosmodas2021">
  1014. <CollationName>latin1_swedish_ci</CollationName>
  1015. </schema>
  1016. <schema id="255" parent="1" name="dbcosmodas2022">
  1017. <CollationName>latin1_swedish_ci</CollationName>
  1018. </schema>
  1019. <schema id="256" parent="1" name="dbcosmodas2023">
  1020. <CollationName>latin1_swedish_ci</CollationName>
  1021. </schema>
  1022. <schema id="257" parent="1" name="dbcosmodas2024">
  1023. <CollationName>latin1_swedish_ci</CollationName>
  1024. </schema>
  1025. <schema id="258" parent="1" name="dbcosmodasg">
  1026. <CollationName>latin1_swedish_ci</CollationName>
  1027. </schema>
  1028. <schema id="259" parent="1" name="dbcosmodasr">
  1029. <CollationName>latin1_swedish_ci</CollationName>
  1030. </schema>
  1031. <schema id="260" parent="1" name="dbcosmodast">
  1032. <CollationName>latin1_swedish_ci</CollationName>
  1033. </schema>
  1034. <schema id="261" parent="1" name="dbcosnet">
  1035. <CollationName>latin1_swedish_ci</CollationName>
  1036. </schema>
  1037. <schema id="262" parent="1" name="dbimportplus">
  1038. <CollationName>latin1_swedish_ci</CollationName>
  1039. </schema>
  1040. <schema id="263" parent="1" name="dbimportplus2017">
  1041. <CollationName>latin1_swedish_ci</CollationName>
  1042. </schema>
  1043. <schema id="264" parent="1" name="dbimportplus2018">
  1044. <CollationName>latin1_swedish_ci</CollationName>
  1045. </schema>
  1046. <schema id="265" parent="1" name="dbimportplus2019">
  1047. <CollationName>latin1_swedish_ci</CollationName>
  1048. </schema>
  1049. <schema id="266" parent="1" name="dbimportplus2020">
  1050. <CollationName>latin1_swedish_ci</CollationName>
  1051. </schema>
  1052. <schema id="267" parent="1" name="dbinventario">
  1053. <CollationName>latin1_swedish_ci</CollationName>
  1054. </schema>
  1055. <schema id="268" parent="1" name="dbmarcaciones">
  1056. <CollationName>latin1_swedish_ci</CollationName>
  1057. </schema>
  1058. <schema id="269" parent="1" name="dbsmsenvios">
  1059. <CollationName>latin1_swedish_ci</CollationName>
  1060. </schema>
  1061. <schema id="270" parent="1" name="dte">
  1062. <CollationName>latin1_swedish_ci</CollationName>
  1063. </schema>
  1064. <schema id="271" parent="1" name="information_schema">
  1065. <CollationName>utf8_general_ci</CollationName>
  1066. </schema>
  1067. <schema id="272" parent="1" name="ingress">
  1068. <CollationName>latin1_swedish_ci</CollationName>
  1069. </schema>
  1070. <schema id="273" parent="1" name="inventariodb">
  1071. <CollationName>latin1_swedish_ci</CollationName>
  1072. </schema>
  1073. <schema id="274" parent="1" name="mysql">
  1074. <CollationName>latin1_swedish_ci</CollationName>
  1075. </schema>
  1076. <schema id="275" parent="1" name="openfire">
  1077. <CollationName>latin1_swedish_ci</CollationName>
  1078. </schema>
  1079. <schema id="276" parent="1" name="performance_schema">
  1080. <CollationName>utf8_general_ci</CollationName>
  1081. </schema>
  1082. <schema id="277" parent="1" name="phpmyadmin">
  1083. <CollationName>latin1_swedish_ci</CollationName>
  1084. </schema>
  1085. <schema id="278" parent="1" name="sys">
  1086. <CollationName>utf8_general_ci</CollationName>
  1087. </schema>
  1088. <user id="279" parent="1" name="debian-sys-maint">
  1089. <Host>localhost</Host>
  1090. </user>
  1091. <user id="280" parent="1" name="dexter"/>
  1092. <user id="281" parent="1" name="gexpacho"/>
  1093. <user id="282" parent="1" name="mysql.session">
  1094. <Host>localhost</Host>
  1095. </user>
  1096. <user id="283" parent="1" name="mysql.sys">
  1097. <Host>localhost</Host>
  1098. </user>
  1099. <user id="284" parent="1" name="phpmyadmin">
  1100. <Host>localhost</Host>
  1101. </user>
  1102. <user id="285" parent="1" name="root"/>
  1103. <user id="286" parent="1" name="root">
  1104. <Host>localhost</Host>
  1105. </user>
  1106. <user id="287" parent="1" name="sistemas"/>
  1107. <routine id="288" parent="227" name="borrar_hora">
  1108. <Definer>sistemas@%</Definer>
  1109. <RoutineKind>procedure</RoutineKind>
  1110. <SourceTextLength>77</SourceTextLength>
  1111. </routine>
  1112. <routine id="289" parent="227" name="calculo_horas_extra_sumas">
  1113. <Definer>sistemas@%</Definer>
  1114. <RoutineKind>procedure</RoutineKind>
  1115. <SourceTextLength>417</SourceTextLength>
  1116. </routine>
  1117. <routine id="290" parent="227" name="calculo_horas_sumas_p">
  1118. <Definer>sistemas@%</Definer>
  1119. <RoutineKind>procedure</RoutineKind>
  1120. <SourceTextLength>407</SourceTextLength>
  1121. </routine>
  1122. <routine id="291" parent="227" name="cargos_mes">
  1123. <Definer>sistemas@%</Definer>
  1124. <RoutineKind>function</RoutineKind>
  1125. <SourceTextLength>251</SourceTextLength>
  1126. </routine>
  1127. <routine id="292" parent="227" name="decimal2out">
  1128. <Definer>sistemas@%</Definer>
  1129. <RoutineKind>function</RoutineKind>
  1130. <SourceTextLength>83</SourceTextLength>
  1131. </routine>
  1132. <routine id="293" parent="227" name="ficha_hora_empleado">
  1133. <Definer>sistemas@%</Definer>
  1134. <RoutineKind>procedure</RoutineKind>
  1135. <SourceTextLength>1624</SourceTextLength>
  1136. </routine>
  1137. <routine id="294" parent="227" name="in_break">
  1138. <Definer>sistemas@%</Definer>
  1139. <RoutineKind>function</RoutineKind>
  1140. <SourceTextLength>256</SourceTextLength>
  1141. </routine>
  1142. <routine id="295" parent="227" name="in_work">
  1143. <Definer>sistemas@%</Definer>
  1144. <RoutineKind>function</RoutineKind>
  1145. <SourceTextLength>257</SourceTextLength>
  1146. </routine>
  1147. <routine id="296" parent="227" name="ingresar_hora_eventual">
  1148. <Definer>sistemas@%</Definer>
  1149. <RoutineKind>procedure</RoutineKind>
  1150. <SourceTextLength>1466</SourceTextLength>
  1151. </routine>
  1152. <routine id="297" parent="227" name="ingresar_hora_eventual2">
  1153. <Definer>sistemas@%</Definer>
  1154. <RoutineKind>procedure</RoutineKind>
  1155. <SourceTextLength>1464</SourceTextLength>
  1156. </routine>
  1157. <routine id="298" parent="227" name="ingresar_hora_eventual3">
  1158. <Definer>sistemas@%</Definer>
  1159. <RoutineKind>procedure</RoutineKind>
  1160. <SourceTextLength>1464</SourceTextLength>
  1161. </routine>
  1162. <routine id="299" parent="227" name="ingresar_hora_extra">
  1163. <Definer>sistemas@%</Definer>
  1164. <RoutineKind>procedure</RoutineKind>
  1165. <SourceTextLength>1600</SourceTextLength>
  1166. </routine>
  1167. <routine id="300" parent="227" name="nuevo_empleado_cod">
  1168. <Definer>sistemas@%</Definer>
  1169. <RoutineKind>function</RoutineKind>
  1170. <SourceTextLength>485</SourceTextLength>
  1171. </routine>
  1172. <routine id="301" parent="227" name="obtener_afp">
  1173. <Definer>sistemas@%</Definer>
  1174. <RoutineKind>function</RoutineKind>
  1175. <SourceTextLength>316</SourceTextLength>
  1176. </routine>
  1177. <routine id="302" parent="227" name="obtener_horas">
  1178. <Definer>sistemas@%</Definer>
  1179. <RoutineKind>procedure</RoutineKind>
  1180. <SourceTextLength>324</SourceTextLength>
  1181. </routine>
  1182. <routine id="303" parent="227" name="obtener_horas_extras_em">
  1183. <Definer>sistemas@%</Definer>
  1184. <RoutineKind>procedure</RoutineKind>
  1185. <SourceTextLength>352</SourceTextLength>
  1186. </routine>
  1187. <routine id="304" parent="227" name="obtener_horas_id_pago">
  1188. <Definer>sistemas@%</Definer>
  1189. <RoutineKind>procedure</RoutineKind>
  1190. <SourceTextLength>324</SourceTextLength>
  1191. </routine>
  1192. <routine id="305" parent="227" name="obtener_horas_total">
  1193. <Definer>sistemas@%</Definer>
  1194. <RoutineKind>function</RoutineKind>
  1195. <SourceTextLength>1283</SourceTextLength>
  1196. </routine>
  1197. <routine id="306" parent="227" name="obtener_isss">
  1198. <Definer>sistemas@%</Definer>
  1199. <RoutineKind>function</RoutineKind>
  1200. <SourceTextLength>443</SourceTextLength>
  1201. </routine>
  1202. <routine id="307" parent="227" name="obtener_isss_actual">
  1203. <Definer>sistemas@%</Definer>
  1204. <RoutineKind>function</RoutineKind>
  1205. <SourceTextLength>1040</SourceTextLength>
  1206. </routine>
  1207. <routine id="308" parent="227" name="obtener_pagos_n">
  1208. <Definer>sistemas@%</Definer>
  1209. <RoutineKind>procedure</RoutineKind>
  1210. <SourceTextLength>133</SourceTextLength>
  1211. </routine>
  1212. <routine id="309" parent="227" name="obtener_pagos_p">
  1213. <Definer>sistemas@%</Definer>
  1214. <RoutineKind>procedure</RoutineKind>
  1215. <SourceTextLength>113</SourceTextLength>
  1216. </routine>
  1217. <routine id="310" parent="227" name="obtener_renta">
  1218. <Definer>sistemas@%</Definer>
  1219. <RoutineKind>function</RoutineKind>
  1220. <SourceTextLength>3668</SourceTextLength>
  1221. </routine>
  1222. <routine id="311" parent="227" name="out_break">
  1223. <Definer>sistemas@%</Definer>
  1224. <RoutineKind>function</RoutineKind>
  1225. <SourceTextLength>256</SourceTextLength>
  1226. </routine>
  1227. <routine id="312" parent="227" name="out_work">
  1228. <Definer>sistemas@%</Definer>
  1229. <RoutineKind>function</RoutineKind>
  1230. <SourceTextLength>256</SourceTextLength>
  1231. </routine>
  1232. <table id="313" parent="227" name="Equipos">
  1233. <Engine>InnoDB</Engine>
  1234. <CollationName>latin1_swedish_ci</CollationName>
  1235. </table>
  1236. <table id="314" parent="227" name="MovimientosEquipos">
  1237. <Engine>InnoDB</Engine>
  1238. <CollationName>latin1_swedish_ci</CollationName>
  1239. </table>
  1240. <table id="315" parent="227" name="amonesta_evalua">
  1241. <Engine>MyISAM</Engine>
  1242. <CollationName>latin1_swedish_ci</CollationName>
  1243. </table>
  1244. <table id="316" parent="227" name="bancos">
  1245. <Engine>MyISAM</Engine>
  1246. <CollationName>latin1_swedish_ci</CollationName>
  1247. </table>
  1248. <table id="317" parent="227" name="berror">
  1249. <Engine>MyISAM</Engine>
  1250. <CollationName>latin1_swedish_ci</CollationName>
  1251. </table>
  1252. <table id="318" parent="227" name="bitacora">
  1253. <Engine>MyISAM</Engine>
  1254. <CollationName>latin1_swedish_ci</CollationName>
  1255. </table>
  1256. <table id="319" parent="227" name="c_grupos_usuarios">
  1257. <Engine>InnoDB</Engine>
  1258. <CollationName>latin1_swedish_ci</CollationName>
  1259. </table>
  1260. <table id="320" parent="227" name="c_opciones">
  1261. <Engine>InnoDB</Engine>
  1262. <CollationName>latin1_swedish_ci</CollationName>
  1263. </table>
  1264. <table id="321" parent="227" name="c_opciones_grupos">
  1265. <Engine>InnoDB</Engine>
  1266. <CollationName>latin1_swedish_ci</CollationName>
  1267. </table>
  1268. <table id="322" parent="227" name="c_usuarios">
  1269. <Engine>InnoDB</Engine>
  1270. <CollationName>utf8_general_ci</CollationName>
  1271. </table>
  1272. <table id="323" parent="227" name="cargos">
  1273. <Engine>MyISAM</Engine>
  1274. <CollationName>latin1_swedish_ci</CollationName>
  1275. </table>
  1276. <table id="324" parent="227" name="cargos_abonos">
  1277. <Engine>MyISAM</Engine>
  1278. <CollationName>latin1_swedish_ci</CollationName>
  1279. </table>
  1280. <table id="325" parent="227" name="catalogo">
  1281. <Engine>MyISAM</Engine>
  1282. <CollationName>latin1_swedish_ci</CollationName>
  1283. </table>
  1284. <table id="326" parent="227" name="catalogo_v">
  1285. <Engine>MyISAM</Engine>
  1286. <CollationName>latin1_swedish_ci</CollationName>
  1287. </table>
  1288. <table id="327" parent="227" name="categoria">
  1289. <Engine>MyISAM</Engine>
  1290. <CollationName>latin1_swedish_ci</CollationName>
  1291. </table>
  1292. <table id="328" parent="227" name="cheques">
  1293. <Engine>MyISAM</Engine>
  1294. <CollationName>latin1_swedish_ci</CollationName>
  1295. </table>
  1296. <table id="329" parent="227" name="comisiones">
  1297. <Engine>MyISAM</Engine>
  1298. <CollationName>latin1_swedish_ci</CollationName>
  1299. </table>
  1300. <table id="330" parent="227" name="compras">
  1301. <Engine>MyISAM</Engine>
  1302. <CollationName>latin1_swedish_ci</CollationName>
  1303. </table>
  1304. <table id="331" parent="227" name="con_anios">
  1305. <Engine>InnoDB</Engine>
  1306. <CollationName>latin1_swedish_ci</CollationName>
  1307. </table>
  1308. <table id="332" parent="227" name="con_catalogo_cuentas">
  1309. <Engine>InnoDB</Engine>
  1310. <CollationName>latin1_swedish_ci</CollationName>
  1311. </table>
  1312. <table id="333" parent="227" name="con_detalle_catalogo_cuentas">
  1313. <Engine>InnoDB</Engine>
  1314. <CollationName>latin1_swedish_ci</CollationName>
  1315. </table>
  1316. <table id="334" parent="227" name="con_detalle_partidas">
  1317. <Engine>InnoDB</Engine>
  1318. <CollationName>latin1_swedish_ci</CollationName>
  1319. </table>
  1320. <table id="335" parent="227" name="con_partidas">
  1321. <Engine>InnoDB</Engine>
  1322. <CollationName>latin1_swedish_ci</CollationName>
  1323. </table>
  1324. <table id="336" parent="227" name="consolidado">
  1325. <Engine>MyISAM</Engine>
  1326. <CollationName>latin1_swedish_ci</CollationName>
  1327. </table>
  1328. <table id="337" parent="227" name="consolidado_saldos">
  1329. <Engine>MyISAM</Engine>
  1330. <CollationName>latin1_swedish_ci</CollationName>
  1331. </table>
  1332. <table id="338" parent="227" name="contratos">
  1333. <Engine>MyISAM</Engine>
  1334. <CollationName>latin1_swedish_ci</CollationName>
  1335. </table>
  1336. <table id="339" parent="227" name="contribuyente">
  1337. <Engine>MyISAM</Engine>
  1338. <CollationName>latin1_swedish_ci</CollationName>
  1339. </table>
  1340. <table id="340" parent="227" name="cooperativa">
  1341. <Engine>MyISAM</Engine>
  1342. <CollationName>latin1_swedish_ci</CollationName>
  1343. </table>
  1344. <table id="341" parent="227" name="cooperativa_descuentos">
  1345. <Engine>MyISAM</Engine>
  1346. <CollationName>latin1_swedish_ci</CollationName>
  1347. </table>
  1348. <table id="342" parent="227" name="cuentas">
  1349. <Engine>MyISAM</Engine>
  1350. <CollationName>latin1_swedish_ci</CollationName>
  1351. </table>
  1352. <table id="343" parent="227" name="cuentas_bancos">
  1353. <Engine>MyISAM</Engine>
  1354. <CollationName>latin1_swedish_ci</CollationName>
  1355. </table>
  1356. <table id="344" parent="227" name="cuentas_v">
  1357. <Engine>MyISAM</Engine>
  1358. <CollationName>latin1_swedish_ci</CollationName>
  1359. </table>
  1360. <table id="345" parent="227" name="datos_contrato">
  1361. <Engine>MyISAM</Engine>
  1362. <CollationName>latin1_swedish_ci</CollationName>
  1363. </table>
  1364. <table id="346" parent="227" name="datos_empleados">
  1365. <Engine>MyISAM</Engine>
  1366. <CollationName>latin1_swedish_ci</CollationName>
  1367. </table>
  1368. <table id="347" parent="227" name="datos_generales_contrato">
  1369. <Engine>MyISAM</Engine>
  1370. <CollationName>latin1_swedish_ci</CollationName>
  1371. </table>
  1372. <table id="348" parent="227" name="datosdet">
  1373. <Engine>InnoDB</Engine>
  1374. <CollationName>latin1_swedish_ci</CollationName>
  1375. </table>
  1376. <table id="349" parent="227" name="departamentos">
  1377. <Engine>MyISAM</Engine>
  1378. <CollationName>latin1_swedish_ci</CollationName>
  1379. </table>
  1380. <table id="350" parent="227" name="dependientes">
  1381. <Engine>MyISAM</Engine>
  1382. <CollationName>latin1_swedish_ci</CollationName>
  1383. </table>
  1384. <table id="351" parent="227" name="depreciacion">
  1385. <Engine>MyISAM</Engine>
  1386. <CollationName>latin1_swedish_ci</CollationName>
  1387. </table>
  1388. <table id="352" parent="227" name="descuentos">
  1389. <Engine>MyISAM</Engine>
  1390. <CollationName>latin1_swedish_ci</CollationName>
  1391. </table>
  1392. <table id="353" parent="227" name="detalle_compra">
  1393. <Engine>MyISAM</Engine>
  1394. <CollationName>latin1_swedish_ci</CollationName>
  1395. </table>
  1396. <table id="354" parent="227" name="detalle_notac">
  1397. <Engine>MyISAM</Engine>
  1398. <CollationName>latin1_swedish_ci</CollationName>
  1399. </table>
  1400. <table id="355" parent="227" name="detalle_partida">
  1401. <Engine>InnoDB</Engine>
  1402. <CollationName>latin1_swedish_ci</CollationName>
  1403. </table>
  1404. <table id="356" parent="227" name="disponibilidad">
  1405. <Engine>MyISAM</Engine>
  1406. <CollationName>latin1_swedish_ci</CollationName>
  1407. </table>
  1408. <table id="357" parent="227" name="ejecutivos">
  1409. <Engine>MyISAM</Engine>
  1410. <CollationName>latin1_swedish_ci</CollationName>
  1411. </table>
  1412. <table id="358" parent="227" name="empleado_herramientas">
  1413. <Engine>MyISAM</Engine>
  1414. <CollationName>latin1_swedish_ci</CollationName>
  1415. </table>
  1416. <table id="359" parent="227" name="empleados">
  1417. <Engine>MyISAM</Engine>
  1418. <CollationName>latin1_swedish_ci</CollationName>
  1419. </table>
  1420. <table id="360" parent="227" name="estado_cuenta">
  1421. <Engine>MyISAM</Engine>
  1422. <CollationName>latin1_swedish_ci</CollationName>
  1423. </table>
  1424. <table id="361" parent="227" name="evaluaciones">
  1425. <Engine>InnoDB</Engine>
  1426. <CollationName>latin1_swedish_ci</CollationName>
  1427. </table>
  1428. <table id="362" parent="227" name="familiares">
  1429. <Engine>MyISAM</Engine>
  1430. <CollationName>latin1_swedish_ci</CollationName>
  1431. </table>
  1432. <table id="363" parent="227" name="gastos">
  1433. <Engine>InnoDB</Engine>
  1434. <CollationName>latin1_swedish_ci</CollationName>
  1435. </table>
  1436. <table id="364" parent="227" name="generales">
  1437. <Engine>MyISAM</Engine>
  1438. <CollationName>latin1_swedish_ci</CollationName>
  1439. </table>
  1440. <table id="365" parent="227" name="h_horas_de_trabajo_temporal">
  1441. <Engine>MyISAM</Engine>
  1442. <CollationName>latin1_swedish_ci</CollationName>
  1443. </table>
  1444. <table id="366" parent="227" name="h_pago_temporales">
  1445. <Engine>MyISAM</Engine>
  1446. <CollationName>latin1_swedish_ci</CollationName>
  1447. </table>
  1448. <table id="367" parent="227" name="hcatalogo">
  1449. <Engine>MyISAM</Engine>
  1450. <CollationName>latin1_swedish_ci</CollationName>
  1451. </table>
  1452. <table id="368" parent="227" name="hdetalle_partida">
  1453. <Engine>InnoDB</Engine>
  1454. <CollationName>latin1_swedish_ci</CollationName>
  1455. </table>
  1456. <table id="369" parent="227" name="historial_contratos">
  1457. <Engine>InnoDB</Engine>
  1458. <CollationName>latin1_swedish_ci</CollationName>
  1459. </table>
  1460. <table id="370" parent="227" name="historial_pagos_planilla">
  1461. <Engine>InnoDB</Engine>
  1462. <CollationName>latin1_swedish_ci</CollationName>
  1463. </table>
  1464. <table id="371" parent="227" name="historial_salarial">
  1465. <Engine>MyISAM</Engine>
  1466. <CollationName>latin1_swedish_ci</CollationName>
  1467. </table>
  1468. <table id="372" parent="227" name="hoja_empleado">
  1469. <Engine>MyISAM</Engine>
  1470. <CollationName>latin1_swedish_ci</CollationName>
  1471. </table>
  1472. <table id="373" parent="227" name="hoja_vida">
  1473. <Engine>MyISAM</Engine>
  1474. <CollationName>latin1_swedish_ci</CollationName>
  1475. </table>
  1476. <table id="374" parent="227" name="hoja_vida_temporal">
  1477. <Engine>MyISAM</Engine>
  1478. <CollationName>latin1_swedish_ci</CollationName>
  1479. </table>
  1480. <table id="375" parent="227" name="horas_anticipo">
  1481. <Engine>MyISAM</Engine>
  1482. <CollationName>latin1_swedish_ci</CollationName>
  1483. </table>
  1484. <table id="376" parent="227" name="horas_de_trabajo_temporal">
  1485. <Engine>MyISAM</Engine>
  1486. <CollationName>latin1_swedish_ci</CollationName>
  1487. </table>
  1488. <table id="377" parent="227" name="horas_eventuales">
  1489. <Engine>MyISAM</Engine>
  1490. <CollationName>latin1_swedish_ci</CollationName>
  1491. </table>
  1492. <table id="378" parent="227" name="horas_extras">
  1493. <Engine>MyISAM</Engine>
  1494. <CollationName>latin1_swedish_ci</CollationName>
  1495. </table>
  1496. <table id="379" parent="227" name="horas_extras_personal">
  1497. <Engine>MyISAM</Engine>
  1498. <CollationName>latin1_swedish_ci</CollationName>
  1499. </table>
  1500. <table id="380" parent="227" name="hpartida">
  1501. <Engine>InnoDB</Engine>
  1502. <CollationName>latin1_swedish_ci</CollationName>
  1503. </table>
  1504. <table id="381" parent="227" name="incapacidades">
  1505. <Engine>MyISAM</Engine>
  1506. <CollationName>latin1_swedish_ci</CollationName>
  1507. </table>
  1508. <table id="382" parent="227" name="letras">
  1509. <Engine>MyISAM</Engine>
  1510. <CollationName>latin1_swedish_ci</CollationName>
  1511. </table>
  1512. <table id="383" parent="227" name="marca_mobiliario_sistemas">
  1513. <Comment>marcas de mobiliario de sistemas</Comment>
  1514. <Engine>InnoDB</Engine>
  1515. <CollationName>latin1_swedish_ci</CollationName>
  1516. </table>
  1517. <table id="384" parent="227" name="marcacion">
  1518. <Engine>InnoDB</Engine>
  1519. <CollationName>latin1_swedish_ci</CollationName>
  1520. </table>
  1521. <table id="385" parent="227" name="marcaciones">
  1522. <Engine>InnoDB</Engine>
  1523. <CollationName>latin1_swedish_ci</CollationName>
  1524. </table>
  1525. <table id="386" parent="227" name="metas">
  1526. <Engine>MyISAM</Engine>
  1527. <CollationName>latin1_swedish_ci</CollationName>
  1528. </table>
  1529. <table id="387" parent="227" name="mobiliario">
  1530. <Engine>InnoDB</Engine>
  1531. <CollationName>latin1_swedish_ci</CollationName>
  1532. </table>
  1533. <table id="388" parent="227" name="mobiliario_sistemas">
  1534. <Engine>InnoDB</Engine>
  1535. <CollationName>latin1_swedish_ci</CollationName>
  1536. </table>
  1537. <table id="389" parent="227" name="movimiento_mobiliario">
  1538. <Engine>MyISAM</Engine>
  1539. <CollationName>latin1_swedish_ci</CollationName>
  1540. </table>
  1541. <table id="390" parent="227" name="msalario">
  1542. <Engine>MyISAM</Engine>
  1543. <CollationName>latin1_swedish_ci</CollationName>
  1544. </table>
  1545. <table id="391" parent="227" name="nota_credito">
  1546. <Engine>MyISAM</Engine>
  1547. <CollationName>latin1_swedish_ci</CollationName>
  1548. </table>
  1549. <table id="392" parent="227" name="opcion_menu">
  1550. <Engine>MyISAM</Engine>
  1551. <CollationName>latin1_swedish_ci</CollationName>
  1552. </table>
  1553. <table id="393" parent="227" name="ordenes">
  1554. <Engine>MyISAM</Engine>
  1555. <CollationName>latin1_swedish_ci</CollationName>
  1556. </table>
  1557. <table id="394" parent="227" name="otraretencion">
  1558. <Engine>InnoDB</Engine>
  1559. <CollationName>latin1_swedish_ci</CollationName>
  1560. </table>
  1561. <table id="395" parent="227" name="otras_personas">
  1562. <Engine>InnoDB</Engine>
  1563. <CollationName>latin1_swedish_ci</CollationName>
  1564. </table>
  1565. <table id="396" parent="227" name="otros_descuentos_empleados">
  1566. <Engine>InnoDB</Engine>
  1567. <CollationName>latin1_swedish_ci</CollationName>
  1568. </table>
  1569. <table id="397" parent="227" name="otros_descuentos_planilla">
  1570. <Engine>InnoDB</Engine>
  1571. <CollationName>latin1_swedish_ci</CollationName>
  1572. </table>
  1573. <table id="398" parent="227" name="pago_comisiones">
  1574. <Engine>MyISAM</Engine>
  1575. <CollationName>latin1_swedish_ci</CollationName>
  1576. </table>
  1577. <table id="399" parent="227" name="pago_temporales">
  1578. <Engine>MyISAM</Engine>
  1579. <CollationName>latin1_swedish_ci</CollationName>
  1580. </table>
  1581. <table id="400" parent="227" name="pago_temporales_totales">
  1582. <Engine>MyISAM</Engine>
  1583. <CollationName>latin1_swedish_ci</CollationName>
  1584. </table>
  1585. <table id="401" parent="227" name="pagos">
  1586. <Engine>MyISAM</Engine>
  1587. <CollationName>latin1_swedish_ci</CollationName>
  1588. </table>
  1589. <table id="402" parent="227" name="partida">
  1590. <Engine>InnoDB</Engine>
  1591. <CollationName>latin1_swedish_ci</CollationName>
  1592. </table>
  1593. <table id="403" parent="227" name="partida_mobiliario">
  1594. <Engine>MyISAM</Engine>
  1595. <CollationName>latin1_swedish_ci</CollationName>
  1596. </table>
  1597. <table id="404" parent="227" name="permiso_incapacidad">
  1598. <Engine>MyISAM</Engine>
  1599. <CollationName>latin1_swedish_ci</CollationName>
  1600. </table>
  1601. <table id="405" parent="227" name="permisos">
  1602. <Engine>MyISAM</Engine>
  1603. <CollationName>latin1_swedish_ci</CollationName>
  1604. </table>
  1605. <table id="406" parent="227" name="permisos_empleados">
  1606. <Engine>MyISAM</Engine>
  1607. <CollationName>latin1_swedish_ci</CollationName>
  1608. </table>
  1609. <table id="407" parent="227" name="permisosempleados">
  1610. <Engine>InnoDB</Engine>
  1611. <CollationName>latin1_swedish_ci</CollationName>
  1612. </table>
  1613. <table id="408" parent="227" name="personal">
  1614. <Engine>InnoDB</Engine>
  1615. <CollationName>latin1_swedish_ci</CollationName>
  1616. </table>
  1617. <table id="409" parent="227" name="personal_asignado">
  1618. <Engine>InnoDB</Engine>
  1619. <CollationName>latin1_swedish_ci</CollationName>
  1620. </table>
  1621. <table id="410" parent="227" name="planipartida">
  1622. <Engine>MyISAM</Engine>
  1623. <CollationName>latin1_swedish_ci</CollationName>
  1624. </table>
  1625. <table id="411" parent="227" name="proveedores">
  1626. <Engine>MyISAM</Engine>
  1627. <CollationName>latin1_swedish_ci</CollationName>
  1628. </table>
  1629. <table id="412" parent="227" name="puntaje">
  1630. <Engine>InnoDB</Engine>
  1631. <CollationName>latin1_swedish_ci</CollationName>
  1632. </table>
  1633. <table id="413" parent="227" name="quedan">
  1634. <Engine>MyISAM</Engine>
  1635. <CollationName>latin1_swedish_ci</CollationName>
  1636. </table>
  1637. <table id="414" parent="227" name="remesas">
  1638. <Engine>MyISAM</Engine>
  1639. <CollationName>latin1_swedish_ci</CollationName>
  1640. </table>
  1641. <table id="415" parent="227" name="retenciones">
  1642. <Engine>MyISAM</Engine>
  1643. <CollationName>latin1_swedish_ci</CollationName>
  1644. </table>
  1645. <table id="416" parent="227" name="salarios_eventuales">
  1646. <Engine>InnoDB</Engine>
  1647. <CollationName>latin1_swedish_ci</CollationName>
  1648. </table>
  1649. <table id="417" parent="227" name="seminario">
  1650. <Engine>MyISAM</Engine>
  1651. <CollationName>latin1_swedish_ci</CollationName>
  1652. </table>
  1653. <table id="418" parent="227" name="sucursales">
  1654. <Engine>MyISAM</Engine>
  1655. <CollationName>latin1_swedish_ci</CollationName>
  1656. </table>
  1657. <table id="419" parent="227" name="super">
  1658. <Engine>MyISAM</Engine>
  1659. <CollationName>latin1_swedish_ci</CollationName>
  1660. </table>
  1661. <table id="420" parent="227" name="temp_concilia">
  1662. <Engine>MyISAM</Engine>
  1663. <CollationName>latin1_swedish_ci</CollationName>
  1664. </table>
  1665. <table id="421" parent="227" name="temporal">
  1666. <Engine>MyISAM</Engine>
  1667. <CollationName>latin1_swedish_ci</CollationName>
  1668. </table>
  1669. <table id="422" parent="227" name="tipo">
  1670. <Engine>InnoDB</Engine>
  1671. <CollationName>latin1_swedish_ci</CollationName>
  1672. </table>
  1673. <table id="423" parent="227" name="tipo_mobiliario">
  1674. <Engine>MyISAM</Engine>
  1675. <CollationName>latin1_swedish_ci</CollationName>
  1676. </table>
  1677. <table id="424" parent="227" name="tipo_mobiliario_sistemas">
  1678. <Engine>InnoDB</Engine>
  1679. <CollationName>latin1_swedish_ci</CollationName>
  1680. </table>
  1681. <table id="425" parent="227" name="tipopermisos">
  1682. <Engine>InnoDB</Engine>
  1683. <CollationName>latin1_swedish_ci</CollationName>
  1684. </table>
  1685. <table id="426" parent="227" name="tplanilla">
  1686. <Engine>MyISAM</Engine>
  1687. <CollationName>latin1_swedish_ci</CollationName>
  1688. </table>
  1689. <table id="427" parent="227" name="transferencias">
  1690. <Engine>MyISAM</Engine>
  1691. <CollationName>latin1_swedish_ci</CollationName>
  1692. </table>
  1693. <table id="428" parent="227" name="usuario">
  1694. <Engine>MyISAM</Engine>
  1695. <CollationName>latin1_swedish_ci</CollationName>
  1696. </table>
  1697. <table id="429" parent="227" name="vacaciones">
  1698. <Engine>MyISAM</Engine>
  1699. <CollationName>latin1_swedish_ci</CollationName>
  1700. </table>
  1701. <table id="430" parent="227" name="voucher">
  1702. <Engine>InnoDB</Engine>
  1703. <Options>row_format
  1704. DYNAMIC</Options>
  1705. <CollationName>latin1_swedish_ci</CollationName>
  1706. </table>
  1707. <table id="431" parent="227" name="wdescuento">
  1708. <Engine>InnoDB</Engine>
  1709. <CollationName>latin1_swedish_ci</CollationName>
  1710. </table>
  1711. <view id="432" parent="227" name="vCalculo_horas_sumas">
  1712. <Definer>sistemas@%</Definer>
  1713. <SourceTextLength>649</SourceTextLength>
  1714. </view>
  1715. <view id="433" parent="227" name="vEmpleados_eventuales">
  1716. <Definer>sistemas@%</Definer>
  1717. <SourceTextLength>188</SourceTextLength>
  1718. </view>
  1719. <view id="434" parent="227" name="vEmpleados_fijos">
  1720. <Definer>sistemas@%</Definer>
  1721. <SourceTextLength>615</SourceTextLength>
  1722. </view>
  1723. <view id="435" parent="227" name="vEmpleados_supervisoras">
  1724. <Definer>sistemas@%</Definer>
  1725. <SourceTextLength>229</SourceTextLength>
  1726. </view>
  1727. <view id="436" parent="227" name="vMarcacionesFace">
  1728. <Definer>sistemas@%</Definer>
  1729. <SourceTextLength>236</SourceTextLength>
  1730. </view>
  1731. <view id="437" parent="227" name="vPagoEventual">
  1732. <Definer>sistemas@%</Definer>
  1733. <SourceTextLength>894</SourceTextLength>
  1734. </view>
  1735. <view id="438" parent="227" name="vcuentasvs">
  1736. <Definer>sistemas@%</Definer>
  1737. <SourceTextLength>471</SourceTextLength>
  1738. </view>
  1739. <view id="439" parent="227" name="vdependientes">
  1740. <Definer>sistemas@%</Definer>
  1741. <SourceTextLength>492</SourceTextLength>
  1742. </view>
  1743. <argument id="440" parent="288" name="ad">
  1744. <DasType>varchar(6)|0s</DasType>
  1745. <Position>1</Position>
  1746. </argument>
  1747. <argument id="441" parent="289" name="codEm">
  1748. <DasType>varchar(3)|0s</DasType>
  1749. <Position>1</Position>
  1750. </argument>
  1751. <argument id="442" parent="289" name="fechIn">
  1752. <DasType>date|0s</DasType>
  1753. <Position>2</Position>
  1754. </argument>
  1755. <argument id="443" parent="289" name="fechOu">
  1756. <DasType>date|0s</DasType>
  1757. <Position>3</Position>
  1758. </argument>
  1759. <argument id="444" parent="290" name="codEm">
  1760. <DasType>varchar(3)|0s</DasType>
  1761. <Position>1</Position>
  1762. </argument>
  1763. <argument id="445" parent="290" name="fech">
  1764. <DasType>date|0s</DasType>
  1765. <Position>2</Position>
  1766. </argument>
  1767. <argument id="446" parent="291">
  1768. <ArgumentDirection>R</ArgumentDirection>
  1769. <DasType>double|0s</DasType>
  1770. </argument>
  1771. <argument id="447" parent="291" name="codCon">
  1772. <DasType>varchar(6)|0s</DasType>
  1773. <Position>1</Position>
  1774. </argument>
  1775. <argument id="448" parent="292">
  1776. <ArgumentDirection>R</ArgumentDirection>
  1777. <DasType>decimal(6,2 digit)|0s</DasType>
  1778. </argument>
  1779. <argument id="449" parent="292" name="inday">
  1780. <DasType>decimal(10,9 digit)|0s</DasType>
  1781. <Position>1</Position>
  1782. </argument>
  1783. <argument id="450" parent="293" name="codEm">
  1784. <DasType>varchar(6)|0s</DasType>
  1785. <Position>1</Position>
  1786. </argument>
  1787. <argument id="451" parent="293" name="fechaCons">
  1788. <DasType>date|0s</DasType>
  1789. <Position>2</Position>
  1790. </argument>
  1791. <argument id="452" parent="294">
  1792. <ArgumentDirection>R</ArgumentDirection>
  1793. <DasType>time|0s</DasType>
  1794. </argument>
  1795. <argument id="453" parent="294" name="codEmp">
  1796. <DasType>varchar(50)|0s</DasType>
  1797. <Position>1</Position>
  1798. </argument>
  1799. <argument id="454" parent="294" name="fecha_cons">
  1800. <DasType>date|0s</DasType>
  1801. <Position>2</Position>
  1802. </argument>
  1803. <argument id="455" parent="295">
  1804. <ArgumentDirection>R</ArgumentDirection>
  1805. <DasType>time|0s</DasType>
  1806. </argument>
  1807. <argument id="456" parent="295" name="codEmp">
  1808. <DasType>varchar(50)|0s</DasType>
  1809. <Position>1</Position>
  1810. </argument>
  1811. <argument id="457" parent="295" name="fecha_cons">
  1812. <DasType>date|0s</DasType>
  1813. <Position>2</Position>
  1814. </argument>
  1815. <argument id="458" parent="296" name="codEm">
  1816. <DasType>varchar(3)|0s</DasType>
  1817. <Position>1</Position>
  1818. </argument>
  1819. <argument id="459" parent="296" name="fechIni">
  1820. <DasType>datetime|0s</DasType>
  1821. <Position>2</Position>
  1822. </argument>
  1823. <argument id="460" parent="296" name="fechFin">
  1824. <DasType>datetime|0s</DasType>
  1825. <Position>3</Position>
  1826. </argument>
  1827. <argument id="461" parent="296" name="corr">
  1828. <DasType>tinyint(1)|0s</DasType>
  1829. <Position>4</Position>
  1830. </argument>
  1831. <argument id="462" parent="297" name="codEm">
  1832. <DasType>varchar(3)|0s</DasType>
  1833. <Position>1</Position>
  1834. </argument>
  1835. <argument id="463" parent="297" name="fechIni">
  1836. <DasType>datetime|0s</DasType>
  1837. <Position>2</Position>
  1838. </argument>
  1839. <argument id="464" parent="297" name="fechFin">
  1840. <DasType>datetime|0s</DasType>
  1841. <Position>3</Position>
  1842. </argument>
  1843. <argument id="465" parent="297" name="corr">
  1844. <DasType>tinyint(1)|0s</DasType>
  1845. <Position>4</Position>
  1846. </argument>
  1847. <argument id="466" parent="298" name="codEm">
  1848. <DasType>varchar(3)|0s</DasType>
  1849. <Position>1</Position>
  1850. </argument>
  1851. <argument id="467" parent="298" name="fechIni">
  1852. <DasType>datetime|0s</DasType>
  1853. <Position>2</Position>
  1854. </argument>
  1855. <argument id="468" parent="298" name="fechFin">
  1856. <DasType>datetime|0s</DasType>
  1857. <Position>3</Position>
  1858. </argument>
  1859. <argument id="469" parent="298" name="corr">
  1860. <DasType>tinyint(1)|0s</DasType>
  1861. <Position>4</Position>
  1862. </argument>
  1863. <argument id="470" parent="299" name="codEm">
  1864. <DasType>varchar(3)|0s</DasType>
  1865. <Position>1</Position>
  1866. </argument>
  1867. <argument id="471" parent="299" name="fechIni">
  1868. <DasType>datetime|0s</DasType>
  1869. <Position>2</Position>
  1870. </argument>
  1871. <argument id="472" parent="299" name="fechFin">
  1872. <DasType>datetime|0s</DasType>
  1873. <Position>3</Position>
  1874. </argument>
  1875. <argument id="473" parent="299" name="observa">
  1876. <DasType>text|0s</DasType>
  1877. <Position>4</Position>
  1878. </argument>
  1879. <argument id="474" parent="300">
  1880. <ArgumentDirection>R</ArgumentDirection>
  1881. <DasType>varchar(4)|0s</DasType>
  1882. </argument>
  1883. <argument id="475" parent="300" name="codEmp">
  1884. <DasType>varchar(100)|0s</DasType>
  1885. <Position>1</Position>
  1886. </argument>
  1887. <argument id="476" parent="301">
  1888. <ArgumentDirection>R</ArgumentDirection>
  1889. <DasType>decimal(6,2 digit)|0s</DasType>
  1890. </argument>
  1891. <argument id="477" parent="301" name="empCod">
  1892. <DasType>varchar(6)|0s</DasType>
  1893. <Position>1</Position>
  1894. </argument>
  1895. <argument id="478" parent="301" name="extras">
  1896. <DasType>double(6,2 digit)|0s</DasType>
  1897. <Position>2</Position>
  1898. </argument>
  1899. <argument id="479" parent="302" name="codEm">
  1900. <DasType>varchar(3)|0s</DasType>
  1901. <Position>1</Position>
  1902. </argument>
  1903. <argument id="480" parent="303" name="codEm">
  1904. <DasType>varchar(3)|0s</DasType>
  1905. <Position>1</Position>
  1906. </argument>
  1907. <argument id="481" parent="304" name="idpag">
  1908. <DasType>varchar(45)|0s</DasType>
  1909. <Position>1</Position>
  1910. </argument>
  1911. <argument id="482" parent="305">
  1912. <ArgumentDirection>R</ArgumentDirection>
  1913. <DasType>decimal(10,2 digit)|0s</DasType>
  1914. </argument>
  1915. <argument id="483" parent="305" name="empCod">
  1916. <DasType>varchar(6)|0s</DasType>
  1917. <Position>1</Position>
  1918. </argument>
  1919. <argument id="484" parent="305" name="fects">
  1920. <DasType>date|0s</DasType>
  1921. <Position>2</Position>
  1922. </argument>
  1923. <argument id="485" parent="306">
  1924. <ArgumentDirection>R</ArgumentDirection>
  1925. <DasType>double|0s</DasType>
  1926. </argument>
  1927. <argument id="486" parent="306" name="empCod">
  1928. <DasType>varchar(6)|0s</DasType>
  1929. <Position>1</Position>
  1930. </argument>
  1931. <argument id="487" parent="306" name="extras">
  1932. <DasType>double(6,2 digit)|0s</DasType>
  1933. <Position>2</Position>
  1934. </argument>
  1935. <argument id="488" parent="307">
  1936. <ArgumentDirection>R</ArgumentDirection>
  1937. <DasType>decimal(6,2 digit)|0s</DasType>
  1938. </argument>
  1939. <argument id="489" parent="307" name="empCod">
  1940. <DasType>varchar(6)|0s</DasType>
  1941. <Position>1</Position>
  1942. </argument>
  1943. <argument id="490" parent="307" name="extras">
  1944. <DasType>double(6,2 digit)|0s</DasType>
  1945. <Position>2</Position>
  1946. </argument>
  1947. <argument id="491" parent="307" name="fects">
  1948. <DasType>date|0s</DasType>
  1949. <Position>3</Position>
  1950. </argument>
  1951. <argument id="492" parent="308" name="mes">
  1952. <DasType>date|0s</DasType>
  1953. <Position>1</Position>
  1954. </argument>
  1955. <argument id="493" parent="308" name="sucu">
  1956. <DasType>varchar(2)|0s</DasType>
  1957. <Position>2</Position>
  1958. </argument>
  1959. <argument id="494" parent="309" name="mes">
  1960. <DasType>date|0s</DasType>
  1961. <Position>1</Position>
  1962. </argument>
  1963. <argument id="495" parent="310">
  1964. <ArgumentDirection>R</ArgumentDirection>
  1965. <DasType>decimal(10,2 digit)|0s</DasType>
  1966. </argument>
  1967. <argument id="496" parent="310" name="empCod">
  1968. <DasType>varchar(6)|0s</DasType>
  1969. <Position>1</Position>
  1970. </argument>
  1971. <argument id="497" parent="310" name="fects">
  1972. <DasType>date|0s</DasType>
  1973. <Position>2</Position>
  1974. </argument>
  1975. <argument id="498" parent="311">
  1976. <ArgumentDirection>R</ArgumentDirection>
  1977. <DasType>time|0s</DasType>
  1978. </argument>
  1979. <argument id="499" parent="311" name="codEmp">
  1980. <DasType>varchar(50)|0s</DasType>
  1981. <Position>1</Position>
  1982. </argument>
  1983. <argument id="500" parent="311" name="fecha_cons">
  1984. <DasType>date|0s</DasType>
  1985. <Position>2</Position>
  1986. </argument>
  1987. <argument id="501" parent="312">
  1988. <ArgumentDirection>R</ArgumentDirection>
  1989. <DasType>time|0s</DasType>
  1990. </argument>
  1991. <argument id="502" parent="312" name="codEmp">
  1992. <DasType>varchar(50)|0s</DasType>
  1993. <Position>1</Position>
  1994. </argument>
  1995. <argument id="503" parent="312" name="fecha_cons">
  1996. <DasType>date|0s</DasType>
  1997. <Position>2</Position>
  1998. </argument>
  1999. <column id="504" parent="313" name="id">
  2000. <AutoIncrement>3</AutoIncrement>
  2001. <DasType>int(10) unsigned|0s</DasType>
  2002. <NotNull>1</NotNull>
  2003. <Position>1</Position>
  2004. </column>
  2005. <column id="505" parent="313" name="TIPO">
  2006. <DasType>varchar(45)|0s</DasType>
  2007. <NotNull>1</NotNull>
  2008. <Position>2</Position>
  2009. </column>
  2010. <column id="506" parent="313" name="FECHA_COMPRA">
  2011. <DasType>datetime|0s</DasType>
  2012. <NotNull>1</NotNull>
  2013. <Position>3</Position>
  2014. </column>
  2015. <column id="507" parent="313" name="DEPARTAMENTO">
  2016. <DasType>varchar(45)|0s</DasType>
  2017. <NotNull>1</NotNull>
  2018. <Position>4</Position>
  2019. </column>
  2020. <column id="508" parent="313" name="USUARIO">
  2021. <DasType>varchar(45)|0s</DasType>
  2022. <NotNull>1</NotNull>
  2023. <Position>5</Position>
  2024. </column>
  2025. <column id="509" parent="313" name="OBSERVACION">
  2026. <DasType>varchar(45)|0s</DasType>
  2027. <NotNull>1</NotNull>
  2028. <Position>6</Position>
  2029. </column>
  2030. <column id="510" parent="313" name="ESTADO">
  2031. <DasType>varchar(45)|0s</DasType>
  2032. <NotNull>1</NotNull>
  2033. <Position>7</Position>
  2034. </column>
  2035. <column id="511" parent="313" name="codigo">
  2036. <DasType>varchar(15)|0s</DasType>
  2037. <NotNull>1</NotNull>
  2038. <Position>8</Position>
  2039. </column>
  2040. <index id="512" parent="313" name="PRIMARY">
  2041. <ColNames>id</ColNames>
  2042. <Type>btree</Type>
  2043. <Unique>1</Unique>
  2044. </index>
  2045. <key id="513" parent="313" name="PRIMARY">
  2046. <NameSurrogate>1</NameSurrogate>
  2047. <Primary>1</Primary>
  2048. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  2049. </key>
  2050. <column id="514" parent="314" name="id">
  2051. <AutoIncrement>1</AutoIncrement>
  2052. <DasType>int(10) unsigned|0s</DasType>
  2053. <NotNull>1</NotNull>
  2054. <Position>1</Position>
  2055. </column>
  2056. <column id="515" parent="314" name="codigo">
  2057. <DasType>varchar(15)|0s</DasType>
  2058. <NotNull>1</NotNull>
  2059. <Position>2</Position>
  2060. </column>
  2061. <column id="516" parent="314" name="observacion">
  2062. <DasType>varchar(45)|0s</DasType>
  2063. <NotNull>1</NotNull>
  2064. <Position>3</Position>
  2065. </column>
  2066. <column id="517" parent="314" name="estado">
  2067. <DasType>varchar(45)|0s</DasType>
  2068. <NotNull>1</NotNull>
  2069. <Position>4</Position>
  2070. </column>
  2071. <column id="518" parent="314" name="fecha">
  2072. <DasType>varchar(45)|0s</DasType>
  2073. <NotNull>1</NotNull>
  2074. <Position>5</Position>
  2075. </column>
  2076. <index id="519" parent="314" name="PRIMARY">
  2077. <ColNames>id</ColNames>
  2078. <Type>btree</Type>
  2079. <Unique>1</Unique>
  2080. </index>
  2081. <key id="520" parent="314" name="PRIMARY">
  2082. <NameSurrogate>1</NameSurrogate>
  2083. <Primary>1</Primary>
  2084. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  2085. </key>
  2086. <column id="521" parent="315" name="codigo_empleado">
  2087. <DasType>char(3)|0s</DasType>
  2088. <DefaultExpression>&apos;&apos;</DefaultExpression>
  2089. <NotNull>1</NotNull>
  2090. <Position>1</Position>
  2091. </column>
  2092. <column id="522" parent="315" name="tipo_amonestacion">
  2093. <DasType>char(1)|0s</DasType>
  2094. <NotNull>1</NotNull>
  2095. <Position>2</Position>
  2096. </column>
  2097. <column id="523" parent="315" name="fecha_amonestacion">
  2098. <DasType>date|0s</DasType>
  2099. <NotNull>1</NotNull>
  2100. <Position>3</Position>
  2101. </column>
  2102. <column id="524" parent="315" name="puntos">
  2103. <DasType>char(4)|0s</DasType>
  2104. <NotNull>1</NotNull>
  2105. <Position>4</Position>
  2106. </column>
  2107. <column id="525" parent="315" name="observacion_amonestacion">
  2108. <DasType>longtext|0s</DasType>
  2109. <Position>5</Position>
  2110. </column>
  2111. <index id="526" parent="315" name="PRIMARY">
  2112. <ColNames>codigo_empleado
  2113. fecha_amonestacion
  2114. puntos</ColNames>
  2115. <Type>btree</Type>
  2116. <Unique>1</Unique>
  2117. </index>
  2118. <key id="527" parent="315" name="PRIMARY">
  2119. <NameSurrogate>1</NameSurrogate>
  2120. <Primary>1</Primary>
  2121. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  2122. </key>
  2123. <column id="528" parent="316" name="codigo_banco">
  2124. <DasType>char(2)|0s</DasType>
  2125. <NotNull>1</NotNull>
  2126. <Position>1</Position>
  2127. </column>
  2128. <column id="529" parent="316" name="nombre_banco">
  2129. <DasType>char(40)|0s</DasType>
  2130. <NotNull>1</NotNull>
  2131. <Position>2</Position>
  2132. </column>
  2133. <index id="530" parent="316" name="PRIMARY">
  2134. <ColNames>codigo_banco</ColNames>
  2135. <Type>btree</Type>
  2136. <Unique>1</Unique>
  2137. </index>
  2138. <key id="531" parent="316" name="PRIMARY">
  2139. <NameSurrogate>1</NameSurrogate>
  2140. <Primary>1</Primary>
  2141. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  2142. </key>
  2143. <column id="532" parent="317" name="error_numero">
  2144. <DasType>char(5)|0s</DasType>
  2145. <NotNull>1</NotNull>
  2146. <Position>1</Position>
  2147. </column>
  2148. <column id="533" parent="317" name="mensaje">
  2149. <DasType>char(100)|0s</DasType>
  2150. <NotNull>1</NotNull>
  2151. <Position>2</Position>
  2152. </column>
  2153. <column id="534" parent="317" name="linea_codigo">
  2154. <DasType>char(150)|0s</DasType>
  2155. <NotNull>1</NotNull>
  2156. <Position>3</Position>
  2157. </column>
  2158. <column id="535" parent="317" name="numero_linea">
  2159. <DasType>char(4)|0s</DasType>
  2160. <NotNull>1</NotNull>
  2161. <Position>4</Position>
  2162. </column>
  2163. <column id="536" parent="317" name="programa_error">
  2164. <DasType>char(80)|0s</DasType>
  2165. <NotNull>1</NotNull>
  2166. <Position>5</Position>
  2167. </column>
  2168. <column id="537" parent="317" name="usuario_codigo">
  2169. <DasType>char(3)|0s</DasType>
  2170. <NotNull>1</NotNull>
  2171. <Position>6</Position>
  2172. </column>
  2173. <column id="538" parent="317" name="fecha">
  2174. <DasType>datetime|0s</DasType>
  2175. <NotNull>1</NotNull>
  2176. <Position>7</Position>
  2177. </column>
  2178. <column id="539" parent="317" name="equipo">
  2179. <DasType>char(40)|0s</DasType>
  2180. <NotNull>1</NotNull>
  2181. <Position>8</Position>
  2182. </column>
  2183. <column id="540" parent="318" name="usuario">
  2184. <DasType>char(3)|0s</DasType>
  2185. <NotNull>1</NotNull>
  2186. <Position>1</Position>
  2187. </column>
  2188. <column id="541" parent="318" name="formular">
  2189. <DasType>char(50)|0s</DasType>
  2190. <NotNull>1</NotNull>
  2191. <Position>2</Position>
  2192. </column>
  2193. <column id="542" parent="318" name="fecha">
  2194. <DasType>datetime|0s</DasType>
  2195. <NotNull>1</NotNull>
  2196. <Position>3</Position>
  2197. </column>
  2198. <column id="543" parent="318" name="equipo">
  2199. <DasType>char(70)|0s</DasType>
  2200. <NotNull>1</NotNull>
  2201. <Position>4</Position>
  2202. </column>
  2203. <column id="544" parent="318" name="descripc">
  2204. <DasType>char(50)|0s</DasType>
  2205. <NotNull>1</NotNull>
  2206. <Position>5</Position>
  2207. </column>
  2208. <column id="545" parent="318" name="accion">
  2209. <DasType>char(1)|0s</DasType>
  2210. <NotNull>1</NotNull>
  2211. <Position>6</Position>
  2212. </column>
  2213. <column id="546" parent="319" name="id_grupos_usuarios">
  2214. <AutoIncrement>4</AutoIncrement>
  2215. <DasType>int(3) unsigned zerofill|0s</DasType>
  2216. <NotNull>1</NotNull>
  2217. <Position>1</Position>
  2218. </column>
  2219. <column id="547" parent="319" name="nombre_grupos_usuarios">
  2220. <DasType>varchar(45)|0s</DasType>
  2221. <NotNull>1</NotNull>
  2222. <Position>2</Position>
  2223. </column>
  2224. <column id="548" parent="319" name="accion_grupos_usuarios">
  2225. <DasType>int(1)|0s</DasType>
  2226. <Position>3</Position>
  2227. </column>
  2228. <column id="549" parent="319" name="tipo_grupos_usuarios">
  2229. <DasType>tinyint(1)|0s</DasType>
  2230. <DefaultExpression>0</DefaultExpression>
  2231. <Position>4</Position>
  2232. </column>
  2233. <index id="550" parent="319" name="PRIMARY">
  2234. <ColNames>id_grupos_usuarios</ColNames>
  2235. <Type>btree</Type>
  2236. <Unique>1</Unique>
  2237. </index>
  2238. <key id="551" parent="319" name="PRIMARY">
  2239. <NameSurrogate>1</NameSurrogate>
  2240. <Primary>1</Primary>
  2241. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  2242. </key>
  2243. <column id="552" parent="320" name="id_opcion">
  2244. <AutoIncrement>39</AutoIncrement>
  2245. <DasType>int(4) unsigned zerofill|0s</DasType>
  2246. <NotNull>1</NotNull>
  2247. <Position>1</Position>
  2248. </column>
  2249. <column id="553" parent="320" name="nombre_opcion">
  2250. <DasType>varchar(45)|0s</DasType>
  2251. <Position>2</Position>
  2252. </column>
  2253. <column id="554" parent="320" name="estado_opcion">
  2254. <DasType>tinyint(1)|0s</DasType>
  2255. <DefaultExpression>0</DefaultExpression>
  2256. <Position>3</Position>
  2257. </column>
  2258. <column id="555" parent="320" name="url">
  2259. <DasType>varchar(200)|0s</DasType>
  2260. <Position>4</Position>
  2261. </column>
  2262. <column id="556" parent="320" name="tipo_menu">
  2263. <DasType>tinyint(1)|0s</DasType>
  2264. <Position>5</Position>
  2265. </column>
  2266. <column id="557" parent="320" name="sub_menu_id">
  2267. <DasType>int(4) unsigned zerofill|0s</DasType>
  2268. <Position>6</Position>
  2269. </column>
  2270. <column id="558" parent="320" name="icono">
  2271. <DasType>varchar(100)|0s</DasType>
  2272. <Position>7</Position>
  2273. </column>
  2274. <index id="559" parent="320" name="PRIMARY">
  2275. <ColNames>id_opcion</ColNames>
  2276. <Type>btree</Type>
  2277. <Unique>1</Unique>
  2278. </index>
  2279. <key id="560" parent="320" name="PRIMARY">
  2280. <NameSurrogate>1</NameSurrogate>
  2281. <Primary>1</Primary>
  2282. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  2283. </key>
  2284. <column id="561" parent="321" name="id_grupo">
  2285. <DasType>int(3) unsigned zerofill|0s</DasType>
  2286. <NotNull>1</NotNull>
  2287. <Position>1</Position>
  2288. </column>
  2289. <column id="562" parent="321" name="id_opcion">
  2290. <DasType>int(4) unsigned zerofill|0s</DasType>
  2291. <NotNull>1</NotNull>
  2292. <Position>2</Position>
  2293. </column>
  2294. <column id="563" parent="321" name="otros">
  2295. <DasType>int(3)|0s</DasType>
  2296. <Position>3</Position>
  2297. </column>
  2298. <foreign-key id="564" parent="321" name="fk_co_opciones_grupos_2">
  2299. <ColNames>id_grupo</ColNames>
  2300. <RefColNames>id_grupos_usuarios</RefColNames>
  2301. <RefTableName>c_grupos_usuarios</RefTableName>
  2302. </foreign-key>
  2303. <foreign-key id="565" parent="321" name="fk_co_opciones_grupos_1">
  2304. <ColNames>id_opcion</ColNames>
  2305. <RefColNames>id_opcion</RefColNames>
  2306. <RefTableName>c_opciones</RefTableName>
  2307. </foreign-key>
  2308. <index id="566" parent="321" name="PRIMARY">
  2309. <ColNames>id_grupo
  2310. id_opcion</ColNames>
  2311. <Type>btree</Type>
  2312. <Unique>1</Unique>
  2313. </index>
  2314. <index id="567" parent="321" name="fk_co_opciones_grupos_1_idx">
  2315. <ColNames>id_opcion</ColNames>
  2316. <Type>btree</Type>
  2317. </index>
  2318. <key id="568" parent="321" name="PRIMARY">
  2319. <NameSurrogate>1</NameSurrogate>
  2320. <Primary>1</Primary>
  2321. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  2322. </key>
  2323. <column id="569" parent="322" name="usuario_nombre">
  2324. <DasType>varchar(15)|0s</DasType>
  2325. <NotNull>1</NotNull>
  2326. <Position>1</Position>
  2327. </column>
  2328. <column id="570" parent="322" name="usuario_codigo">
  2329. <DasType>varchar(3)|0s</DasType>
  2330. <NotNull>1</NotNull>
  2331. <Position>2</Position>
  2332. </column>
  2333. <column id="571" parent="322" name="contrasenia">
  2334. <DasType>varchar(100)|0s</DasType>
  2335. <NotNull>1</NotNull>
  2336. <Position>3</Position>
  2337. </column>
  2338. <column id="572" parent="322" name="nombre_empleado">
  2339. <DasType>varchar(45)|0s</DasType>
  2340. <NotNull>1</NotNull>
  2341. <Position>4</Position>
  2342. </column>
  2343. <column id="573" parent="322" name="correo">
  2344. <DasType>varchar(45)|0s</DasType>
  2345. <NotNull>1</NotNull>
  2346. <Position>5</Position>
  2347. </column>
  2348. <column id="574" parent="322" name="dui">
  2349. <DasType>varchar(10)|0s</DasType>
  2350. <NotNull>1</NotNull>
  2351. <Position>6</Position>
  2352. </column>
  2353. <column id="575" parent="322" name="logueado">
  2354. <DasType>tinyint(1)|0s</DasType>
  2355. <DefaultExpression>0</DefaultExpression>
  2356. <NotNull>1</NotNull>
  2357. <Position>7</Position>
  2358. </column>
  2359. <column id="576" parent="322" name="grupo_usuario">
  2360. <DasType>int(3) unsigned zerofill|0s</DasType>
  2361. <NotNull>1</NotNull>
  2362. <Position>8</Position>
  2363. </column>
  2364. <foreign-key id="577" parent="322" name="fk_co_usuarios_1">
  2365. <ColNames>grupo_usuario</ColNames>
  2366. <RefColNames>id_grupos_usuarios</RefColNames>
  2367. <RefTableName>c_grupos_usuarios</RefTableName>
  2368. </foreign-key>
  2369. <index id="578" parent="322" name="PRIMARY">
  2370. <ColNames>usuario_codigo</ColNames>
  2371. <Type>btree</Type>
  2372. <Unique>1</Unique>
  2373. </index>
  2374. <index id="579" parent="322" name="fk_co_usuarios_1_idx">
  2375. <ColNames>grupo_usuario</ColNames>
  2376. <Type>btree</Type>
  2377. </index>
  2378. <key id="580" parent="322" name="PRIMARY">
  2379. <NameSurrogate>1</NameSurrogate>
  2380. <Primary>1</Primary>
  2381. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  2382. </key>
  2383. <column id="581" parent="323" name="codigo_cargo">
  2384. <DasType>char(2)|0s</DasType>
  2385. <NotNull>1</NotNull>
  2386. <Position>1</Position>
  2387. </column>
  2388. <column id="582" parent="323" name="nombre_cargo">
  2389. <DasType>varchar(50)|0s</DasType>
  2390. <NotNull>1</NotNull>
  2391. <Position>2</Position>
  2392. </column>
  2393. <column id="583" parent="323" name="tipo_cargo">
  2394. <DasType>char(15)|0s</DasType>
  2395. <NotNull>1</NotNull>
  2396. <Position>3</Position>
  2397. </column>
  2398. <column id="584" parent="323" name="departamento">
  2399. <DasType>char(20)|0s</DasType>
  2400. <NotNull>1</NotNull>
  2401. <Position>4</Position>
  2402. </column>
  2403. <column id="585" parent="323" name="obligaciones">
  2404. <DasType>longtext|0s</DasType>
  2405. <NotNull>1</NotNull>
  2406. <Position>5</Position>
  2407. </column>
  2408. <index id="586" parent="323" name="PRIMARY">
  2409. <ColNames>codigo_cargo</ColNames>
  2410. <Type>btree</Type>
  2411. <Unique>1</Unique>
  2412. </index>
  2413. <key id="587" parent="323" name="PRIMARY">
  2414. <NameSurrogate>1</NameSurrogate>
  2415. <Primary>1</Primary>
  2416. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  2417. </key>
  2418. <column id="588" parent="324" name="cargo">
  2419. <DasType>char(1)|0s</DasType>
  2420. <NotNull>1</NotNull>
  2421. <Position>1</Position>
  2422. </column>
  2423. <column id="589" parent="324" name="fecha">
  2424. <DasType>date|0s</DasType>
  2425. <NotNull>1</NotNull>
  2426. <Position>2</Position>
  2427. </column>
  2428. <column id="590" parent="324" name="monto">
  2429. <DasType>decimal(8,2 digit)|0s</DasType>
  2430. <NotNull>1</NotNull>
  2431. <Position>3</Position>
  2432. </column>
  2433. <column id="591" parent="324" name="concepto">
  2434. <DasType>char(40)|0s</DasType>
  2435. <NotNull>1</NotNull>
  2436. <Position>4</Position>
  2437. </column>
  2438. <column id="592" parent="324" name="cuenta">
  2439. <DasType>char(2)|0s</DasType>
  2440. <NotNull>1</NotNull>
  2441. <Position>5</Position>
  2442. </column>
  2443. <column id="593" parent="324" name="verficado">
  2444. <DasType>char(1)|0s</DasType>
  2445. <NotNull>1</NotNull>
  2446. <Position>6</Position>
  2447. </column>
  2448. <column id="594" parent="324" name="id">
  2449. <AutoIncrement>34</AutoIncrement>
  2450. <DasType>int(11)|0s</DasType>
  2451. <NotNull>1</NotNull>
  2452. <Position>7</Position>
  2453. </column>
  2454. <index id="595" parent="324" name="PRIMARY">
  2455. <ColNames>id</ColNames>
  2456. <Type>btree</Type>
  2457. <Unique>1</Unique>
  2458. </index>
  2459. <key id="596" parent="324" name="PRIMARY">
  2460. <NameSurrogate>1</NameSurrogate>
  2461. <Primary>1</Primary>
  2462. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  2463. </key>
  2464. <column id="597" parent="325" name="codicuenta">
  2465. <DasType>char(14)|0s</DasType>
  2466. <NotNull>1</NotNull>
  2467. <Position>1</Position>
  2468. </column>
  2469. <column id="598" parent="325" name="nombcuenta">
  2470. <DasType>char(80)|0s</DasType>
  2471. <NotNull>1</NotNull>
  2472. <Position>2</Position>
  2473. </column>
  2474. <column id="599" parent="325" name="debe_haber">
  2475. <DasType>decimal(2)|0s</DasType>
  2476. <NotNull>1</NotNull>
  2477. <Position>3</Position>
  2478. </column>
  2479. <column id="600" parent="325" name="nivel">
  2480. <DasType>decimal(2)|0s</DasType>
  2481. <NotNull>1</NotNull>
  2482. <Position>4</Position>
  2483. </column>
  2484. <column id="601" parent="325" name="detalle">
  2485. <DasType>char(1)|0s</DasType>
  2486. <NotNull>1</NotNull>
  2487. <Position>5</Position>
  2488. </column>
  2489. <column id="602" parent="325" name="general">
  2490. <DasType>char(14)|0s</DasType>
  2491. <NotNull>1</NotNull>
  2492. <Position>6</Position>
  2493. </column>
  2494. <column id="603" parent="325" name="bal_inicio">
  2495. <DasType>decimal(14,2 digit)|0s</DasType>
  2496. <NotNull>1</NotNull>
  2497. <Position>7</Position>
  2498. </column>
  2499. <column id="604" parent="325" name="cargos">
  2500. <DasType>decimal(14,2 digit)|0s</DasType>
  2501. <NotNull>1</NotNull>
  2502. <Position>8</Position>
  2503. </column>
  2504. <column id="605" parent="325" name="abonos">
  2505. <DasType>decimal(14,2 digit)|0s</DasType>
  2506. <NotNull>1</NotNull>
  2507. <Position>9</Position>
  2508. </column>
  2509. <column id="606" parent="325" name="caraux">
  2510. <DasType>decimal(14,2 digit)|0s</DasType>
  2511. <NotNull>1</NotNull>
  2512. <Position>10</Position>
  2513. </column>
  2514. <column id="607" parent="325" name="aboaux">
  2515. <DasType>decimal(14,2 digit)|0s</DasType>
  2516. <NotNull>1</NotNull>
  2517. <Position>11</Position>
  2518. </column>
  2519. <column id="608" parent="325" name="centro">
  2520. <DasType>char(1)|0s</DasType>
  2521. <NotNull>1</NotNull>
  2522. <Position>12</Position>
  2523. </column>
  2524. <column id="609" parent="325" name="fecinic">
  2525. <DasType>date|0s</DasType>
  2526. <Position>13</Position>
  2527. </column>
  2528. <column id="610" parent="325" name="fecultop">
  2529. <DasType>date|0s</DasType>
  2530. <NotNull>1</NotNull>
  2531. <Position>14</Position>
  2532. </column>
  2533. <column id="611" parent="325" name="bg">
  2534. <DasType>char(1)|0s</DasType>
  2535. <NotNull>1</NotNull>
  2536. <Position>15</Position>
  2537. </column>
  2538. <column id="612" parent="325" name="orden">
  2539. <DasType>char(1)|0s</DasType>
  2540. <NotNull>1</NotNull>
  2541. <Position>16</Position>
  2542. </column>
  2543. <index id="613" parent="325" name="PRIMARY">
  2544. <ColNames>codicuenta</ColNames>
  2545. <Type>btree</Type>
  2546. <Unique>1</Unique>
  2547. </index>
  2548. <key id="614" parent="325" name="PRIMARY">
  2549. <NameSurrogate>1</NameSurrogate>
  2550. <Primary>1</Primary>
  2551. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  2552. </key>
  2553. <column id="615" parent="326" name="codicuenta">
  2554. <DasType>char(14)|0s</DasType>
  2555. <NotNull>1</NotNull>
  2556. <Position>1</Position>
  2557. </column>
  2558. <column id="616" parent="326" name="nombcuenta">
  2559. <DasType>char(80)|0s</DasType>
  2560. <NotNull>1</NotNull>
  2561. <Position>2</Position>
  2562. </column>
  2563. <column id="617" parent="326" name="debe_haber">
  2564. <DasType>decimal(2)|0s</DasType>
  2565. <NotNull>1</NotNull>
  2566. <Position>3</Position>
  2567. </column>
  2568. <column id="618" parent="326" name="nivel">
  2569. <DasType>decimal(2)|0s</DasType>
  2570. <NotNull>1</NotNull>
  2571. <Position>4</Position>
  2572. </column>
  2573. <column id="619" parent="326" name="detalle">
  2574. <DasType>tinyint(4)|0s</DasType>
  2575. <NotNull>1</NotNull>
  2576. <Position>5</Position>
  2577. </column>
  2578. <column id="620" parent="326" name="general">
  2579. <DasType>char(14)|0s</DasType>
  2580. <NotNull>1</NotNull>
  2581. <Position>6</Position>
  2582. </column>
  2583. <column id="621" parent="326" name="bal_inicio">
  2584. <DasType>decimal(14,2 digit)|0s</DasType>
  2585. <NotNull>1</NotNull>
  2586. <Position>7</Position>
  2587. </column>
  2588. <column id="622" parent="326" name="cargos">
  2589. <DasType>decimal(14,2 digit)|0s</DasType>
  2590. <NotNull>1</NotNull>
  2591. <Position>8</Position>
  2592. </column>
  2593. <column id="623" parent="326" name="abonos">
  2594. <DasType>decimal(14,2 digit)|0s</DasType>
  2595. <NotNull>1</NotNull>
  2596. <Position>9</Position>
  2597. </column>
  2598. <column id="624" parent="326" name="caraux">
  2599. <DasType>decimal(14,2 digit)|0s</DasType>
  2600. <NotNull>1</NotNull>
  2601. <Position>10</Position>
  2602. </column>
  2603. <column id="625" parent="326" name="aboaux">
  2604. <DasType>decimal(14,2 digit)|0s</DasType>
  2605. <NotNull>1</NotNull>
  2606. <Position>11</Position>
  2607. </column>
  2608. <column id="626" parent="326" name="centro">
  2609. <DasType>tinyint(4)|0s</DasType>
  2610. <NotNull>1</NotNull>
  2611. <Position>12</Position>
  2612. </column>
  2613. <column id="627" parent="326" name="fecinic">
  2614. <DasType>date|0s</DasType>
  2615. <NotNull>1</NotNull>
  2616. <Position>13</Position>
  2617. </column>
  2618. <column id="628" parent="326" name="fecultop">
  2619. <DasType>date|0s</DasType>
  2620. <NotNull>1</NotNull>
  2621. <Position>14</Position>
  2622. </column>
  2623. <column id="629" parent="327" name="categoria">
  2624. <DasType>char(6)|0s</DasType>
  2625. <NotNull>1</NotNull>
  2626. <Position>1</Position>
  2627. </column>
  2628. <column id="630" parent="327" name="bonificacion">
  2629. <DasType>decimal(12,2 digit)|0s</DasType>
  2630. <NotNull>1</NotNull>
  2631. <Position>2</Position>
  2632. </column>
  2633. <column id="631" parent="327" name="inscripcion">
  2634. <DasType>decimal(4)|0s</DasType>
  2635. <NotNull>1</NotNull>
  2636. <Position>3</Position>
  2637. </column>
  2638. <column id="632" parent="327" name="comision">
  2639. <DasType>decimal(4,2 digit)|0s</DasType>
  2640. <NotNull>1</NotNull>
  2641. <Position>4</Position>
  2642. </column>
  2643. <column id="633" parent="327" name="nefec">
  2644. <DasType>decimal(4)|0s</DasType>
  2645. <NotNull>1</NotNull>
  2646. <Position>5</Position>
  2647. </column>
  2648. <column id="634" parent="328" name="numero_cheque">
  2649. <DasType>char(9)|0s</DasType>
  2650. <NotNull>1</NotNull>
  2651. <Position>1</Position>
  2652. </column>
  2653. <column id="635" parent="328" name="cuenta_banco">
  2654. <DasType>char(2)|0s</DasType>
  2655. <NotNull>1</NotNull>
  2656. <Position>2</Position>
  2657. </column>
  2658. <column id="636" parent="328" name="anulado">
  2659. <DasType>char(1)|0s</DasType>
  2660. <NotNull>1</NotNull>
  2661. <Position>3</Position>
  2662. </column>
  2663. <column id="637" parent="328" name="paguese_a">
  2664. <DasType>char(80)|0s</DasType>
  2665. <NotNull>1</NotNull>
  2666. <Position>4</Position>
  2667. </column>
  2668. <column id="638" parent="328" name="fecha_emision">
  2669. <DasType>date|0s</DasType>
  2670. <NotNull>1</NotNull>
  2671. <Position>5</Position>
  2672. </column>
  2673. <column id="639" parent="328" name="monto">
  2674. <DasType>decimal(8,2 digit)|0s</DasType>
  2675. <NotNull>1</NotNull>
  2676. <Position>6</Position>
  2677. </column>
  2678. <column id="640" parent="328" name="comentario">
  2679. <DasType>longtext|0s</DasType>
  2680. <NotNull>1</NotNull>
  2681. <Position>7</Position>
  2682. </column>
  2683. <column id="641" parent="328" name="fecha_digitacion">
  2684. <DasType>datetime|0s</DasType>
  2685. <NotNull>1</NotNull>
  2686. <Position>8</Position>
  2687. </column>
  2688. <column id="642" parent="328" name="procesado">
  2689. <DasType>char(1)|0s</DasType>
  2690. <NotNull>1</NotNull>
  2691. <Position>9</Position>
  2692. </column>
  2693. <column id="643" parent="328" name="codigo_proveedor">
  2694. <DasType>char(4)|0s</DasType>
  2695. <NotNull>1</NotNull>
  2696. <Position>10</Position>
  2697. </column>
  2698. <column id="644" parent="328" name="partidanum">
  2699. <DasType>char(7)|0s</DasType>
  2700. <NotNull>1</NotNull>
  2701. <Position>11</Position>
  2702. </column>
  2703. <column id="645" parent="328" name="verificado">
  2704. <DasType>char(1)|0s</DasType>
  2705. <NotNull>1</NotNull>
  2706. <Position>12</Position>
  2707. </column>
  2708. <index id="646" parent="328" name="PRIMARY">
  2709. <ColNames>numero_cheque
  2710. cuenta_banco
  2711. anulado</ColNames>
  2712. <Type>btree</Type>
  2713. <Unique>1</Unique>
  2714. </index>
  2715. <key id="647" parent="328" name="PRIMARY">
  2716. <NameSurrogate>1</NameSurrogate>
  2717. <Primary>1</Primary>
  2718. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  2719. </key>
  2720. <column id="648" parent="329" name="territorio">
  2721. <DasType>char(2)|0s</DasType>
  2722. <NotNull>1</NotNull>
  2723. <Position>1</Position>
  2724. </column>
  2725. <column id="649" parent="329" name="venta">
  2726. <DasType>decimal(12,2 digit)|0s</DasType>
  2727. <NotNull>1</NotNull>
  2728. <Position>2</Position>
  2729. </column>
  2730. <column id="650" parent="329" name="meta">
  2731. <DasType>decimal(12,2 digit)|0s</DasType>
  2732. <NotNull>1</NotNull>
  2733. <Position>3</Position>
  2734. </column>
  2735. <column id="651" parent="329" name="cobros">
  2736. <DasType>decimal(12,2 digit)|0s</DasType>
  2737. <NotNull>1</NotNull>
  2738. <Position>4</Position>
  2739. </column>
  2740. <column id="652" parent="329" name="mora">
  2741. <DasType>decimal(10,2 digit)|0s</DasType>
  2742. <NotNull>1</NotNull>
  2743. <Position>5</Position>
  2744. </column>
  2745. <column id="653" parent="329" name="cobro_neto">
  2746. <DasType>decimal(12,2 digit)|0s</DasType>
  2747. <NotNull>1</NotNull>
  2748. <Position>6</Position>
  2749. </column>
  2750. <column id="654" parent="329" name="mporcentaje">
  2751. <DasType>decimal(5,4 digit)|0s</DasType>
  2752. <NotNull>1</NotNull>
  2753. <Position>7</Position>
  2754. </column>
  2755. <column id="655" parent="329" name="inscripciones">
  2756. <DasType>decimal(2)|0s</DasType>
  2757. <NotNull>1</NotNull>
  2758. <Position>8</Position>
  2759. </column>
  2760. <column id="656" parent="329" name="efectividad">
  2761. <DasType>decimal(4)|0s</DasType>
  2762. <Position>9</Position>
  2763. </column>
  2764. <column id="657" parent="329" name="porcentaje">
  2765. <DasType>decimal(5,3 digit)|0s</DasType>
  2766. <Position>10</Position>
  2767. </column>
  2768. <column id="658" parent="329" name="ingresoaux">
  2769. <DasType>decimal(5)|0s</DasType>
  2770. <NotNull>1</NotNull>
  2771. <Position>11</Position>
  2772. </column>
  2773. <column id="659" parent="329" name="comision">
  2774. <DasType>decimal(12,2 digit)|0s</DasType>
  2775. <NotNull>1</NotNull>
  2776. <Position>12</Position>
  2777. </column>
  2778. <column id="660" parent="329" name="porefectividad">
  2779. <DasType>decimal(5,2 digit)|0s</DasType>
  2780. <NotNull>1</NotNull>
  2781. <Position>13</Position>
  2782. </column>
  2783. <column id="661" parent="329" name="pormora">
  2784. <DasType>decimal(5,2 digit) unsigned|0s</DasType>
  2785. <NotNull>1</NotNull>
  2786. <Position>14</Position>
  2787. </column>
  2788. <column id="662" parent="329" name="mes">
  2789. <DasType>varchar(2)|0s</DasType>
  2790. <NotNull>1</NotNull>
  2791. <Position>15</Position>
  2792. </column>
  2793. <column id="663" parent="329" name="nmora">
  2794. <DasType>decimal(4) unsigned|0s</DasType>
  2795. <NotNull>1</NotNull>
  2796. <Position>16</Position>
  2797. </column>
  2798. <column id="664" parent="329" name="otros_cobros">
  2799. <DasType>decimal(12,2 digit)|0s</DasType>
  2800. <NotNull>1</NotNull>
  2801. <Position>17</Position>
  2802. </column>
  2803. <index id="665" parent="329" name="PRIMARY">
  2804. <ColNames>territorio</ColNames>
  2805. <Type>btree</Type>
  2806. <Unique>1</Unique>
  2807. </index>
  2808. <key id="666" parent="329" name="PRIMARY">
  2809. <NameSurrogate>1</NameSurrogate>
  2810. <Primary>1</Primary>
  2811. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  2812. </key>
  2813. <column id="667" parent="330" name="codigo_compra">
  2814. <DasType>char(6)|0s</DasType>
  2815. <NotNull>1</NotNull>
  2816. <Position>1</Position>
  2817. </column>
  2818. <column id="668" parent="330" name="factura_numero">
  2819. <DasType>char(16)|0s</DasType>
  2820. <NotNull>1</NotNull>
  2821. <Position>2</Position>
  2822. </column>
  2823. <column id="669" parent="330" name="codigo_proveedor">
  2824. <DasType>char(4)|0s</DasType>
  2825. <NotNull>1</NotNull>
  2826. <Position>3</Position>
  2827. </column>
  2828. <column id="670" parent="330" name="factura_fecha">
  2829. <DasType>date|0s</DasType>
  2830. <NotNull>1</NotNull>
  2831. <Position>4</Position>
  2832. </column>
  2833. <column id="671" parent="330" name="factura_monto">
  2834. <DasType>decimal(9,2 digit)|0s</DasType>
  2835. <NotNull>1</NotNull>
  2836. <Position>5</Position>
  2837. </column>
  2838. <column id="672" parent="330" name="factura_concepto">
  2839. <DasType>longtext|0s</DasType>
  2840. <NotNull>1</NotNull>
  2841. <Position>6</Position>
  2842. </column>
  2843. <column id="673" parent="330" name="pendiente_pago">
  2844. <DasType>decimal(9,2 digit)|0s</DasType>
  2845. <NotNull>1</NotNull>
  2846. <Position>7</Position>
  2847. </column>
  2848. <column id="674" parent="330" name="procesado">
  2849. <DasType>char(1)|0s</DasType>
  2850. <NotNull>1</NotNull>
  2851. <Position>8</Position>
  2852. </column>
  2853. <column id="675" parent="330" name="partidanum">
  2854. <DasType>char(7)|0s</DasType>
  2855. <NotNull>1</NotNull>
  2856. <Position>9</Position>
  2857. </column>
  2858. <column id="676" parent="330" name="generar">
  2859. <DasType>char(1)|0s</DasType>
  2860. <NotNull>1</NotNull>
  2861. <Position>10</Position>
  2862. </column>
  2863. <column id="677" parent="330" name="factura_iva">
  2864. <DasType>decimal(8,2 digit)|0s</DasType>
  2865. <NotNull>1</NotNull>
  2866. <Position>11</Position>
  2867. </column>
  2868. <column id="678" parent="330" name="factura_retencion">
  2869. <DasType>decimal(8,2 digit)|0s</DasType>
  2870. <NotNull>1</NotNull>
  2871. <Position>12</Position>
  2872. </column>
  2873. <column id="679" parent="330" name="mes">
  2874. <DasType>char(10)|0s</DasType>
  2875. <NotNull>1</NotNull>
  2876. <Position>13</Position>
  2877. </column>
  2878. <column id="680" parent="330" name="importacion">
  2879. <DasType>char(1)|0s</DasType>
  2880. <NotNull>1</NotNull>
  2881. <Position>14</Position>
  2882. </column>
  2883. <column id="681" parent="330" name="fovial">
  2884. <DasType>decimal(8,2 digit)|0s</DasType>
  2885. <NotNull>1</NotNull>
  2886. <Position>15</Position>
  2887. </column>
  2888. <column id="682" parent="330" name="renta">
  2889. <DasType>decimal(8,2 digit)|0s</DasType>
  2890. <NotNull>1</NotNull>
  2891. <Position>16</Position>
  2892. </column>
  2893. <column id="683" parent="330" name="exento">
  2894. <DasType>decimal(10,2 digit) unsigned zerofill|0s</DasType>
  2895. <NotNull>1</NotNull>
  2896. <Position>17</Position>
  2897. </column>
  2898. <column id="684" parent="330" name="resolucion">
  2899. <DasType>varchar(25)|0s</DasType>
  2900. <Position>18</Position>
  2901. </column>
  2902. <column id="685" parent="330" name="serie">
  2903. <DasType>varchar(15)|0s</DasType>
  2904. <NotNull>1</NotNull>
  2905. <Position>19</Position>
  2906. </column>
  2907. <column id="686" parent="330" name="tipodoc">
  2908. <DasType>varchar(1)|0s</DasType>
  2909. <DefaultExpression>&apos;1&apos;</DefaultExpression>
  2910. <NotNull>1</NotNull>
  2911. <Position>20</Position>
  2912. </column>
  2913. <index id="687" parent="330" name="PRIMARY">
  2914. <ColNames>codigo_compra</ColNames>
  2915. <Type>btree</Type>
  2916. <Unique>1</Unique>
  2917. </index>
  2918. <key id="688" parent="330" name="PRIMARY">
  2919. <NameSurrogate>1</NameSurrogate>
  2920. <Primary>1</Primary>
  2921. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  2922. </key>
  2923. <column id="689" parent="331" name="idcon_anios">
  2924. <DasType>int(5)|0s</DasType>
  2925. <NotNull>1</NotNull>
  2926. <Position>1</Position>
  2927. </column>
  2928. <column id="690" parent="331" name="fecha">
  2929. <DasType>date|0s</DasType>
  2930. <Position>2</Position>
  2931. </column>
  2932. <index id="691" parent="331" name="PRIMARY">
  2933. <ColNames>idcon_anios</ColNames>
  2934. <Type>btree</Type>
  2935. <Unique>1</Unique>
  2936. </index>
  2937. <key id="692" parent="331" name="PRIMARY">
  2938. <NameSurrogate>1</NameSurrogate>
  2939. <Primary>1</Primary>
  2940. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  2941. </key>
  2942. <column id="693" parent="332" name="numero_cuenta">
  2943. <DasType>varchar(15)|0s</DasType>
  2944. <NotNull>1</NotNull>
  2945. <Position>1</Position>
  2946. </column>
  2947. <column id="694" parent="332" name="nombre_cuenta">
  2948. <DasType>varchar(300)|0s</DasType>
  2949. <Position>2</Position>
  2950. </column>
  2951. <column id="695" parent="332" name="debe_haber">
  2952. <DasType>tinyint(1)|0s</DasType>
  2953. <Position>3</Position>
  2954. </column>
  2955. <column id="696" parent="332" name="sub_cuenta_pertenece">
  2956. <DasType>varchar(15)|0s</DasType>
  2957. <Position>4</Position>
  2958. </column>
  2959. <column id="697" parent="332" name="cuenta_detalle">
  2960. <DasType>tinyint(1)|0s</DasType>
  2961. <Position>5</Position>
  2962. </column>
  2963. <index id="698" parent="332" name="PRIMARY">
  2964. <ColNames>numero_cuenta</ColNames>
  2965. <Type>btree</Type>
  2966. <Unique>1</Unique>
  2967. </index>
  2968. <key id="699" parent="332" name="PRIMARY">
  2969. <NameSurrogate>1</NameSurrogate>
  2970. <Primary>1</Primary>
  2971. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  2972. </key>
  2973. <column id="700" parent="333" name="id_detalle_catalogo_cuentas">
  2974. <AutoIncrement>1</AutoIncrement>
  2975. <DasType>int(11)|0s</DasType>
  2976. <NotNull>1</NotNull>
  2977. <Position>1</Position>
  2978. </column>
  2979. <column id="701" parent="333" name="numero_cuenta">
  2980. <DasType>varchar(15)|0s</DasType>
  2981. <Position>2</Position>
  2982. </column>
  2983. <column id="702" parent="333" name="cargo">
  2984. <DasType>decimal(15,2 digit)|0s</DasType>
  2985. <Position>3</Position>
  2986. </column>
  2987. <column id="703" parent="333" name="abono">
  2988. <DasType>decimal(15,2 digit)|0s</DasType>
  2989. <Position>4</Position>
  2990. </column>
  2991. <column id="704" parent="333" name="balance">
  2992. <DasType>decimal(15,2 digit)|0s</DasType>
  2993. <Position>5</Position>
  2994. </column>
  2995. <column id="705" parent="333" name="fecha_creado">
  2996. <DasType>date|0s</DasType>
  2997. <Position>6</Position>
  2998. </column>
  2999. <column id="706" parent="333" name="fecha_actualizacion">
  3000. <DasType>date|0s</DasType>
  3001. <Position>7</Position>
  3002. </column>
  3003. <column id="707" parent="333" name="mes_anio">
  3004. <DasType>varchar(7)|0s</DasType>
  3005. <Position>8</Position>
  3006. </column>
  3007. <foreign-key id="708" parent="333" name="fk_detalle_catalogo_cuentas_1">
  3008. <ColNames>numero_cuenta</ColNames>
  3009. <RefColNames>numero_cuenta</RefColNames>
  3010. <RefTableName>con_catalogo_cuentas</RefTableName>
  3011. </foreign-key>
  3012. <index id="709" parent="333" name="PRIMARY">
  3013. <ColNames>id_detalle_catalogo_cuentas</ColNames>
  3014. <Type>btree</Type>
  3015. <Unique>1</Unique>
  3016. </index>
  3017. <index id="710" parent="333" name="fk_detalle_catalogo_cuentas_1_idx">
  3018. <ColNames>numero_cuenta</ColNames>
  3019. <Type>btree</Type>
  3020. </index>
  3021. <key id="711" parent="333" name="PRIMARY">
  3022. <NameSurrogate>1</NameSurrogate>
  3023. <Primary>1</Primary>
  3024. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  3025. </key>
  3026. <column id="712" parent="334" name="id_detalle_partidas">
  3027. <AutoIncrement>1</AutoIncrement>
  3028. <DasType>int(11)|0s</DasType>
  3029. <NotNull>1</NotNull>
  3030. <Position>1</Position>
  3031. </column>
  3032. <column id="713" parent="334" name="numero_cuenta">
  3033. <DasType>varchar(15)|0s</DasType>
  3034. <NotNull>1</NotNull>
  3035. <Position>2</Position>
  3036. </column>
  3037. <column id="714" parent="334" name="numero_partida">
  3038. <DasType>varchar(10)|0s</DasType>
  3039. <NotNull>1</NotNull>
  3040. <Position>3</Position>
  3041. </column>
  3042. <column id="715" parent="334" name="anio_partida">
  3043. <DasType>varchar(4)|0s</DasType>
  3044. <NotNull>1</NotNull>
  3045. <Position>4</Position>
  3046. </column>
  3047. <column id="716" parent="334" name="cargo_detalle">
  3048. <DasType>decimal(15,2 digit)|0s</DasType>
  3049. <Position>5</Position>
  3050. </column>
  3051. <column id="717" parent="334" name="abono_detalle">
  3052. <DasType>decimal(15,2 digit)|0s</DasType>
  3053. <Position>6</Position>
  3054. </column>
  3055. <column id="718" parent="334" name="nota">
  3056. <DasType>text|0s</DasType>
  3057. <Position>7</Position>
  3058. </column>
  3059. <index id="719" parent="334" name="PRIMARY">
  3060. <ColNames>id_detalle_partidas</ColNames>
  3061. <Type>btree</Type>
  3062. <Unique>1</Unique>
  3063. </index>
  3064. <key id="720" parent="334" name="PRIMARY">
  3065. <NameSurrogate>1</NameSurrogate>
  3066. <Primary>1</Primary>
  3067. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  3068. </key>
  3069. <column id="721" parent="335" name="numero_partida">
  3070. <DasType>varchar(10)|0s</DasType>
  3071. <NotNull>1</NotNull>
  3072. <Position>1</Position>
  3073. </column>
  3074. <column id="722" parent="335" name="anio_partida">
  3075. <DasType>varchar(4)|0s</DasType>
  3076. <NotNull>1</NotNull>
  3077. <Position>2</Position>
  3078. </column>
  3079. <column id="723" parent="335" name="cargo_partida">
  3080. <DasType>decimal(15,2 digit)|0s</DasType>
  3081. <Position>3</Position>
  3082. </column>
  3083. <column id="724" parent="335" name="abono_partida">
  3084. <DasType>decimal(15,2 digit)|0s</DasType>
  3085. <Position>4</Position>
  3086. </column>
  3087. <column id="725" parent="335" name="fecha_partida">
  3088. <DasType>date|0s</DasType>
  3089. <Position>5</Position>
  3090. </column>
  3091. <column id="726" parent="335" name="concepto">
  3092. <DasType>text|0s</DasType>
  3093. <Position>6</Position>
  3094. </column>
  3095. <column id="727" parent="335" name="fecha_modificacion">
  3096. <DasType>date|0s</DasType>
  3097. <Position>7</Position>
  3098. </column>
  3099. <column id="728" parent="335" name="usuario_modifica">
  3100. <DasType>varchar(3)|0s</DasType>
  3101. <Position>8</Position>
  3102. </column>
  3103. <index id="729" parent="335" name="PRIMARY">
  3104. <ColNames>numero_partida
  3105. anio_partida</ColNames>
  3106. <Type>btree</Type>
  3107. <Unique>1</Unique>
  3108. </index>
  3109. <key id="730" parent="335" name="PRIMARY">
  3110. <NameSurrogate>1</NameSurrogate>
  3111. <Primary>1</Primary>
  3112. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  3113. </key>
  3114. <column id="731" parent="336" name="numero_cheque">
  3115. <DasType>char(20)|0s</DasType>
  3116. <NotNull>1</NotNull>
  3117. <Position>1</Position>
  3118. </column>
  3119. <column id="732" parent="336" name="fecha_consolidado">
  3120. <DasType>date|0s</DasType>
  3121. <NotNull>1</NotNull>
  3122. <Position>2</Position>
  3123. </column>
  3124. <column id="733" parent="336" name="consolidado">
  3125. <DasType>tinyint(4)|0s</DasType>
  3126. <NotNull>1</NotNull>
  3127. <Position>3</Position>
  3128. </column>
  3129. <column id="734" parent="336" name="cuenta_banco">
  3130. <DasType>char(20)|0s</DasType>
  3131. <NotNull>1</NotNull>
  3132. <Position>4</Position>
  3133. </column>
  3134. <column id="735" parent="337" name="codigo_cuenta">
  3135. <DasType>char(14)|0s</DasType>
  3136. <NotNull>1</NotNull>
  3137. <Position>1</Position>
  3138. </column>
  3139. <column id="736" parent="337" name="monto">
  3140. <DasType>decimal(10,2 digit)|0s</DasType>
  3141. <NotNull>1</NotNull>
  3142. <Position>2</Position>
  3143. </column>
  3144. <column id="737" parent="337" name="sucursal">
  3145. <DasType>char(2)|0s</DasType>
  3146. <NotNull>1</NotNull>
  3147. <Position>3</Position>
  3148. </column>
  3149. <column id="738" parent="337" name="tipo">
  3150. <DasType>char(1)|0s</DasType>
  3151. <NotNull>1</NotNull>
  3152. <Position>4</Position>
  3153. </column>
  3154. <column id="739" parent="337" name="documento">
  3155. <DasType>char(1)|0s</DasType>
  3156. <NotNull>1</NotNull>
  3157. <Position>5</Position>
  3158. </column>
  3159. <column id="740" parent="337" name="abono">
  3160. <DasType>char(1)|0s</DasType>
  3161. <NotNull>1</NotNull>
  3162. <Position>6</Position>
  3163. </column>
  3164. <column id="741" parent="337" name="tipo_partida">
  3165. <DasType>char(1)|0s</DasType>
  3166. <NotNull>1</NotNull>
  3167. <Position>7</Position>
  3168. </column>
  3169. <index id="742" parent="337" name="PRIMARY">
  3170. <ColNames>codigo_cuenta
  3171. sucursal
  3172. documento</ColNames>
  3173. <Type>btree</Type>
  3174. <Unique>1</Unique>
  3175. </index>
  3176. <key id="743" parent="337" name="PRIMARY">
  3177. <NameSurrogate>1</NameSurrogate>
  3178. <Primary>1</Primary>
  3179. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  3180. </key>
  3181. <column id="744" parent="338" name="codigo_empleado">
  3182. <DasType>char(3)|0s</DasType>
  3183. <NotNull>1</NotNull>
  3184. <Position>1</Position>
  3185. </column>
  3186. <column id="745" parent="338" name="fecha_nuevo">
  3187. <DasType>date|0s</DasType>
  3188. <NotNull>1</NotNull>
  3189. <Position>2</Position>
  3190. </column>
  3191. <column id="746" parent="338" name="fecha_fin">
  3192. <DasType>date|0s</DasType>
  3193. <Position>3</Position>
  3194. </column>
  3195. <index id="747" parent="338" name="PRIMARY">
  3196. <ColNames>codigo_empleado
  3197. fecha_nuevo</ColNames>
  3198. <Type>btree</Type>
  3199. <Unique>1</Unique>
  3200. </index>
  3201. <key id="748" parent="338" name="PRIMARY">
  3202. <NameSurrogate>1</NameSurrogate>
  3203. <Primary>1</Primary>
  3204. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  3205. </key>
  3206. <column id="749" parent="339" name="codigo_proveedor">
  3207. <DasType>char(4)|0s</DasType>
  3208. <NotNull>1</NotNull>
  3209. <Position>1</Position>
  3210. </column>
  3211. <column id="750" parent="339" name="mes">
  3212. <DasType>char(10)|0s</DasType>
  3213. <NotNull>1</NotNull>
  3214. <Position>2</Position>
  3215. </column>
  3216. <column id="751" parent="339" name="gran_contribuyente">
  3217. <DasType>char(1)|0s</DasType>
  3218. <NotNull>1</NotNull>
  3219. <Position>3</Position>
  3220. </column>
  3221. <column id="752" parent="340" name="fecha">
  3222. <DasType>date|0s</DasType>
  3223. <NotNull>1</NotNull>
  3224. <Position>1</Position>
  3225. </column>
  3226. <column id="753" parent="340" name="codigo_empleado">
  3227. <DasType>char(3)|0s</DasType>
  3228. <NotNull>1</NotNull>
  3229. <Position>2</Position>
  3230. </column>
  3231. <column id="754" parent="340" name="cooperativa">
  3232. <DasType>decimal(10,2 digit)|0s</DasType>
  3233. <NotNull>1</NotNull>
  3234. <Position>3</Position>
  3235. </column>
  3236. <column id="755" parent="340" name="mercaderia">
  3237. <DasType>decimal(8,2 digit)|0s</DasType>
  3238. <NotNull>1</NotNull>
  3239. <Position>4</Position>
  3240. </column>
  3241. <column id="756" parent="340" name="uniformes">
  3242. <DasType>decimal(8,2 digit)|0s</DasType>
  3243. <NotNull>1</NotNull>
  3244. <Position>5</Position>
  3245. </column>
  3246. <column id="757" parent="340" name="embargo">
  3247. <DasType>decimal(8,2 digit)|0s</DasType>
  3248. <NotNull>1</NotNull>
  3249. <Position>6</Position>
  3250. </column>
  3251. <column id="758" parent="341" name="codigo_empleado">
  3252. <DasType>char(3)|0s</DasType>
  3253. <NotNull>1</NotNull>
  3254. <Position>1</Position>
  3255. </column>
  3256. <column id="759" parent="341" name="aportacion">
  3257. <DasType>decimal(6,2 digit)|0s</DasType>
  3258. <NotNull>1</NotNull>
  3259. <Position>2</Position>
  3260. </column>
  3261. <column id="760" parent="341" name="prestamo">
  3262. <DasType>decimal(8,2 digit)|0s</DasType>
  3263. <NotNull>1</NotNull>
  3264. <Position>3</Position>
  3265. </column>
  3266. <column id="761" parent="341" name="pfecha">
  3267. <DasType>date|0s</DasType>
  3268. <Position>4</Position>
  3269. </column>
  3270. <column id="762" parent="341" name="optica">
  3271. <DasType>decimal(8,2 digit)|0s</DasType>
  3272. <NotNull>1</NotNull>
  3273. <Position>5</Position>
  3274. </column>
  3275. <column id="763" parent="341" name="ofecha">
  3276. <DasType>date|0s</DasType>
  3277. <Position>6</Position>
  3278. </column>
  3279. <column id="764" parent="341" name="embargo">
  3280. <DasType>decimal(8,2 digit)|0s</DasType>
  3281. <NotNull>1</NotNull>
  3282. <Position>7</Position>
  3283. </column>
  3284. <column id="765" parent="341" name="efecha">
  3285. <DasType>date|0s</DasType>
  3286. <Position>8</Position>
  3287. </column>
  3288. <column id="766" parent="341" name="uniforme">
  3289. <DasType>decimal(8,2 digit)|0s</DasType>
  3290. <NotNull>1</NotNull>
  3291. <Position>9</Position>
  3292. </column>
  3293. <column id="767" parent="341" name="ufecha">
  3294. <DasType>date|0s</DasType>
  3295. <Position>10</Position>
  3296. </column>
  3297. <column id="768" parent="341" name="seguro">
  3298. <DasType>decimal(8,2 digit)|0s</DasType>
  3299. <NotNull>1</NotNull>
  3300. <Position>11</Position>
  3301. </column>
  3302. <column id="769" parent="342" name="correlativo">
  3303. <DasType>char(2)|0s</DasType>
  3304. <NotNull>1</NotNull>
  3305. <Position>1</Position>
  3306. </column>
  3307. <column id="770" parent="342" name="descripcion_cuenta">
  3308. <DasType>char(30)|0s</DasType>
  3309. <NotNull>1</NotNull>
  3310. <Position>2</Position>
  3311. </column>
  3312. <column id="771" parent="343" name="codigo_banco">
  3313. <DasType>char(2)|0s</DasType>
  3314. <NotNull>1</NotNull>
  3315. <Position>1</Position>
  3316. </column>
  3317. <column id="772" parent="343" name="correlativo">
  3318. <DasType>char(2)|0s</DasType>
  3319. <NotNull>1</NotNull>
  3320. <Position>2</Position>
  3321. </column>
  3322. <column id="773" parent="343" name="tipo_cuenta">
  3323. <DasType>char(1)|0s</DasType>
  3324. <NotNull>1</NotNull>
  3325. <Position>3</Position>
  3326. </column>
  3327. <column id="774" parent="343" name="descripcion_cuenta">
  3328. <DasType>char(30)|0s</DasType>
  3329. <NotNull>1</NotNull>
  3330. <Position>4</Position>
  3331. </column>
  3332. <column id="775" parent="343" name="numero_cuenta">
  3333. <DasType>char(20)|0s</DasType>
  3334. <NotNull>1</NotNull>
  3335. <Position>5</Position>
  3336. </column>
  3337. <column id="776" parent="343" name="inicio_talonario">
  3338. <DasType>char(9)|0s</DasType>
  3339. <NotNull>1</NotNull>
  3340. <Position>6</Position>
  3341. </column>
  3342. <column id="777" parent="343" name="fin_talonario">
  3343. <DasType>char(9)|0s</DasType>
  3344. <NotNull>1</NotNull>
  3345. <Position>7</Position>
  3346. </column>
  3347. <column id="778" parent="343" name="numeracion_siguiente">
  3348. <DasType>char(9)|0s</DasType>
  3349. <NotNull>1</NotNull>
  3350. <Position>8</Position>
  3351. </column>
  3352. <column id="779" parent="343" name="cuenta_contable">
  3353. <DasType>char(14)|0s</DasType>
  3354. <NotNull>1</NotNull>
  3355. <Position>9</Position>
  3356. </column>
  3357. <index id="780" parent="343" name="PRIMARY">
  3358. <ColNames>correlativo</ColNames>
  3359. <Type>btree</Type>
  3360. <Unique>1</Unique>
  3361. </index>
  3362. <key id="781" parent="343" name="PRIMARY">
  3363. <NameSurrogate>1</NameSurrogate>
  3364. <Primary>1</Primary>
  3365. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  3366. </key>
  3367. <column id="782" parent="344" name="codigo_banco">
  3368. <DasType>char(2)|0s</DasType>
  3369. <NotNull>1</NotNull>
  3370. <Position>1</Position>
  3371. </column>
  3372. <column id="783" parent="344" name="correlativo">
  3373. <DasType>char(2)|0s</DasType>
  3374. <NotNull>1</NotNull>
  3375. <Position>2</Position>
  3376. </column>
  3377. <column id="784" parent="344" name="tipo_cuenta">
  3378. <DasType>char(1)|0s</DasType>
  3379. <NotNull>1</NotNull>
  3380. <Position>3</Position>
  3381. </column>
  3382. <column id="785" parent="344" name="descripcion_cuenta">
  3383. <DasType>char(30)|0s</DasType>
  3384. <NotNull>1</NotNull>
  3385. <Position>4</Position>
  3386. </column>
  3387. <column id="786" parent="345" name="codigo_empleado">
  3388. <DasType>char(3)|0s</DasType>
  3389. <NotNull>1</NotNull>
  3390. <Position>1</Position>
  3391. </column>
  3392. <column id="787" parent="345" name="profesion">
  3393. <DasType>char(25)|0s</DasType>
  3394. <NotNull>1</NotNull>
  3395. <Position>2</Position>
  3396. </column>
  3397. <column id="788" parent="345" name="sexo">
  3398. <DasType>char(10)|0s</DasType>
  3399. <NotNull>1</NotNull>
  3400. <Position>3</Position>
  3401. </column>
  3402. <column id="789" parent="345" name="residencia">
  3403. <DasType>char(25)|0s</DasType>
  3404. <NotNull>1</NotNull>
  3405. <Position>4</Position>
  3406. </column>
  3407. <column id="790" parent="345" name="nacionalid">
  3408. <DasType>char(25)|0s</DasType>
  3409. <NotNull>1</NotNull>
  3410. <Position>5</Position>
  3411. </column>
  3412. <column id="791" parent="345" name="expedicion_dui">
  3413. <DasType>char(25)|0s</DasType>
  3414. <NotNull>1</NotNull>
  3415. <Position>6</Position>
  3416. </column>
  3417. <column id="792" parent="345" name="fecha_dui">
  3418. <DasType>date|0s</DasType>
  3419. <NotNull>1</NotNull>
  3420. <Position>7</Position>
  3421. </column>
  3422. <column id="793" parent="345" name="tipo_pago">
  3423. <DasType>char(30)|0s</DasType>
  3424. <NotNull>1</NotNull>
  3425. <Position>8</Position>
  3426. </column>
  3427. <column id="794" parent="345" name="otras_estipulaciones">
  3428. <DasType>longtext|0s</DasType>
  3429. <NotNull>1</NotNull>
  3430. <Position>9</Position>
  3431. </column>
  3432. <column id="795" parent="345" name="fecha_contrato">
  3433. <DasType>date|0s</DasType>
  3434. <NotNull>1</NotNull>
  3435. <Position>10</Position>
  3436. </column>
  3437. <column id="796" parent="345" name="otros_datos_identificacion">
  3438. <DasType>longtext|0s</DasType>
  3439. <NotNull>1</NotNull>
  3440. <Position>11</Position>
  3441. </column>
  3442. <column id="797" parent="345" name="observacion_duracion">
  3443. <DasType>longtext|0s</DasType>
  3444. <NotNull>1</NotNull>
  3445. <Position>12</Position>
  3446. </column>
  3447. <column id="798" parent="345" name="fecha_inicio">
  3448. <DasType>date|0s</DasType>
  3449. <NotNull>1</NotNull>
  3450. <Position>13</Position>
  3451. </column>
  3452. <column id="799" parent="345" name="duracion_contrato">
  3453. <DasType>char(30)|0s</DasType>
  3454. <NotNull>1</NotNull>
  3455. <Position>14</Position>
  3456. </column>
  3457. <column id="800" parent="345" name="salario">
  3458. <DasType>decimal(8,2 digit)|0s</DasType>
  3459. <NotNull>1</NotNull>
  3460. <Position>15</Position>
  3461. </column>
  3462. <column id="801" parent="345" name="cargo">
  3463. <DasType>char(2)|0s</DasType>
  3464. <NotNull>1</NotNull>
  3465. <Position>16</Position>
  3466. </column>
  3467. <column id="802" parent="345" name="estado_civil">
  3468. <DasType>char(10)|0s</DasType>
  3469. <NotNull>1</NotNull>
  3470. <Position>17</Position>
  3471. </column>
  3472. <index id="803" parent="345" name="PRIMARY">
  3473. <ColNames>codigo_empleado
  3474. fecha_inicio
  3475. fecha_dui</ColNames>
  3476. <Type>btree</Type>
  3477. <Unique>1</Unique>
  3478. </index>
  3479. <key id="804" parent="345" name="PRIMARY">
  3480. <NameSurrogate>1</NameSurrogate>
  3481. <Primary>1</Primary>
  3482. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  3483. </key>
  3484. <column id="805" parent="346" name="codigo_empleado">
  3485. <DasType>char(3)|0s</DasType>
  3486. <NotNull>1</NotNull>
  3487. <Position>1</Position>
  3488. </column>
  3489. <column id="806" parent="346" name="sexo">
  3490. <DasType>char(10)|0s</DasType>
  3491. <NotNull>1</NotNull>
  3492. <Position>2</Position>
  3493. </column>
  3494. <column id="807" parent="346" name="estado_civil">
  3495. <DasType>char(10)|0s</DasType>
  3496. <NotNull>1</NotNull>
  3497. <Position>3</Position>
  3498. </column>
  3499. <column id="808" parent="346" name="profesion">
  3500. <DasType>char(25)|0s</DasType>
  3501. <NotNull>1</NotNull>
  3502. <Position>4</Position>
  3503. </column>
  3504. <column id="809" parent="346" name="domicilio">
  3505. <DasType>char(20)|0s</DasType>
  3506. <NotNull>1</NotNull>
  3507. <Position>5</Position>
  3508. </column>
  3509. <column id="810" parent="346" name="residencia">
  3510. <DasType>char(30)|0s</DasType>
  3511. <NotNull>1</NotNull>
  3512. <Position>6</Position>
  3513. </column>
  3514. <column id="811" parent="346" name="nacionalidad">
  3515. <DasType>char(12)|0s</DasType>
  3516. <NotNull>1</NotNull>
  3517. <Position>7</Position>
  3518. </column>
  3519. <column id="812" parent="346" name="dui">
  3520. <DasType>char(10)|0s</DasType>
  3521. <NotNull>1</NotNull>
  3522. <Position>8</Position>
  3523. </column>
  3524. <column id="813" parent="346" name="expedicion_dui">
  3525. <DasType>char(10)|0s</DasType>
  3526. <NotNull>1</NotNull>
  3527. <Position>9</Position>
  3528. </column>
  3529. <column id="814" parent="346" name="fecha_dui">
  3530. <DasType>date|0s</DasType>
  3531. <NotNull>1</NotNull>
  3532. <Position>10</Position>
  3533. </column>
  3534. <column id="815" parent="347" name="lugar_pago">
  3535. <DasType>char(30)|0s</DasType>
  3536. <NotNull>1</NotNull>
  3537. <Position>1</Position>
  3538. </column>
  3539. <column id="816" parent="347" name="forma_pago">
  3540. <DasType>char(30)|0s</DasType>
  3541. <NotNull>1</NotNull>
  3542. <Position>2</Position>
  3543. </column>
  3544. <column id="817" parent="347" name="ciudad_contrato">
  3545. <DasType>char(25)|0s</DasType>
  3546. <NotNull>1</NotNull>
  3547. <Position>3</Position>
  3548. </column>
  3549. <column id="818" parent="347" name="dias_reclamo">
  3550. <DasType>char(50)|0s</DasType>
  3551. <NotNull>1</NotNull>
  3552. <Position>4</Position>
  3553. </column>
  3554. <column id="819" parent="347" name="nombrep">
  3555. <DasType>char(30)|0s</DasType>
  3556. <NotNull>1</NotNull>
  3557. <Position>5</Position>
  3558. </column>
  3559. <column id="820" parent="347" name="apellidop">
  3560. <DasType>char(30)|0s</DasType>
  3561. <NotNull>1</NotNull>
  3562. <Position>6</Position>
  3563. </column>
  3564. <column id="821" parent="347" name="estado_civilp">
  3565. <DasType>char(1)|0s</DasType>
  3566. <NotNull>1</NotNull>
  3567. <Position>7</Position>
  3568. </column>
  3569. <column id="822" parent="347" name="profesionp">
  3570. <DasType>char(25)|0s</DasType>
  3571. <NotNull>1</NotNull>
  3572. <Position>8</Position>
  3573. </column>
  3574. <column id="823" parent="347" name="domiciliop">
  3575. <DasType>char(40)|0s</DasType>
  3576. <NotNull>1</NotNull>
  3577. <Position>9</Position>
  3578. </column>
  3579. <column id="824" parent="347" name="residenciap">
  3580. <DasType>char(40)|0s</DasType>
  3581. <NotNull>1</NotNull>
  3582. <Position>10</Position>
  3583. </column>
  3584. <column id="825" parent="347" name="nacionalidadp">
  3585. <DasType>char(25)|0s</DasType>
  3586. <NotNull>1</NotNull>
  3587. <Position>11</Position>
  3588. </column>
  3589. <column id="826" parent="347" name="duip">
  3590. <DasType>char(10)|0s</DasType>
  3591. <NotNull>1</NotNull>
  3592. <Position>12</Position>
  3593. </column>
  3594. <column id="827" parent="347" name="dui_expedicion">
  3595. <DasType>char(25)|0s</DasType>
  3596. <NotNull>1</NotNull>
  3597. <Position>13</Position>
  3598. </column>
  3599. <column id="828" parent="347" name="dui_fecha">
  3600. <DasType>date|0s</DasType>
  3601. <NotNull>1</NotNull>
  3602. <Position>14</Position>
  3603. </column>
  3604. <column id="829" parent="347" name="otros_datos_identificacionp">
  3605. <DasType>longtext|0s</DasType>
  3606. <NotNull>1</NotNull>
  3607. <Position>15</Position>
  3608. </column>
  3609. <column id="830" parent="347" name="fecha_nacimientop">
  3610. <DasType>date|0s</DasType>
  3611. <NotNull>1</NotNull>
  3612. <Position>16</Position>
  3613. </column>
  3614. <index id="831" parent="347" name="PRIMARY">
  3615. <ColNames>nombrep</ColNames>
  3616. <Type>btree</Type>
  3617. <Unique>1</Unique>
  3618. </index>
  3619. <key id="832" parent="347" name="PRIMARY">
  3620. <NameSurrogate>1</NameSurrogate>
  3621. <Primary>1</Primary>
  3622. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  3623. </key>
  3624. <column id="833" parent="348" name="Codigo">
  3625. <DasType>varchar(2)|0s</DasType>
  3626. <NotNull>1</NotNull>
  3627. <Position>1</Position>
  3628. </column>
  3629. <column id="834" parent="348" name="SerieFiscal">
  3630. <DasType>varchar(13)|0s</DasType>
  3631. <NotNull>1</NotNull>
  3632. <Position>2</Position>
  3633. </column>
  3634. <column id="835" parent="348" name="Resolucion">
  3635. <DasType>varchar(25)|0s</DasType>
  3636. <NotNull>1</NotNull>
  3637. <Position>3</Position>
  3638. </column>
  3639. <column id="836" parent="348" name="TipoDocumento">
  3640. <DasType>varchar(45)|0s</DasType>
  3641. <NotNull>1</NotNull>
  3642. <Position>4</Position>
  3643. </column>
  3644. <column id="837" parent="348" name="Sala">
  3645. <DasType>varchar(2)|0s</DasType>
  3646. <NotNull>1</NotNull>
  3647. <Position>5</Position>
  3648. </column>
  3649. <column id="838" parent="348" name="Serie">
  3650. <DasType>varchar(2)|0s</DasType>
  3651. <NotNull>1</NotNull>
  3652. <Position>6</Position>
  3653. </column>
  3654. <index id="839" parent="348" name="PRIMARY">
  3655. <ColNames>Codigo</ColNames>
  3656. <Type>btree</Type>
  3657. <Unique>1</Unique>
  3658. </index>
  3659. <key id="840" parent="348" name="PRIMARY">
  3660. <NameSurrogate>1</NameSurrogate>
  3661. <Primary>1</Primary>
  3662. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  3663. </key>
  3664. <column id="841" parent="349" name="codigo_departamento">
  3665. <DasType>char(2)|0s</DasType>
  3666. <NotNull>1</NotNull>
  3667. <Position>1</Position>
  3668. </column>
  3669. <column id="842" parent="349" name="nombre_departamento">
  3670. <DasType>char(25)|0s</DasType>
  3671. <NotNull>1</NotNull>
  3672. <Position>2</Position>
  3673. </column>
  3674. <index id="843" parent="349" name="PRIMARY">
  3675. <ColNames>codigo_departamento</ColNames>
  3676. <Type>btree</Type>
  3677. <Unique>1</Unique>
  3678. </index>
  3679. <key id="844" parent="349" name="PRIMARY">
  3680. <NameSurrogate>1</NameSurrogate>
  3681. <Primary>1</Primary>
  3682. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  3683. </key>
  3684. <column id="845" parent="350" name="codigo_empleado">
  3685. <DasType>char(3)|0s</DasType>
  3686. <NotNull>1</NotNull>
  3687. <Position>1</Position>
  3688. </column>
  3689. <column id="846" parent="350" name="nombres">
  3690. <DasType>char(25)|0s</DasType>
  3691. <NotNull>1</NotNull>
  3692. <Position>2</Position>
  3693. </column>
  3694. <column id="847" parent="350" name="apellidos">
  3695. <DasType>char(30)|0s</DasType>
  3696. <NotNull>1</NotNull>
  3697. <Position>3</Position>
  3698. </column>
  3699. <column id="848" parent="350" name="direccion">
  3700. <DasType>char(50)|0s</DasType>
  3701. <Position>4</Position>
  3702. </column>
  3703. <column id="849" parent="350" name="edad">
  3704. <DasType>char(10)|0s</DasType>
  3705. <NotNull>1</NotNull>
  3706. <Position>5</Position>
  3707. </column>
  3708. <column id="850" parent="350" name="id">
  3709. <AutoIncrement>87</AutoIncrement>
  3710. <DasType>int(11)|0s</DasType>
  3711. <NotNull>1</NotNull>
  3712. <Position>6</Position>
  3713. </column>
  3714. <index id="851" parent="350" name="PRIMARY">
  3715. <ColNames>id</ColNames>
  3716. <Type>btree</Type>
  3717. <Unique>1</Unique>
  3718. </index>
  3719. <key id="852" parent="350" name="PRIMARY">
  3720. <NameSurrogate>1</NameSurrogate>
  3721. <Primary>1</Primary>
  3722. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  3723. </key>
  3724. <column id="853" parent="351" name="correlativo_depre">
  3725. <DasType>char(4)|0s</DasType>
  3726. <NotNull>1</NotNull>
  3727. <Position>1</Position>
  3728. </column>
  3729. <column id="854" parent="351" name="fecha_uso">
  3730. <DasType>decimal(4)|0s</DasType>
  3731. <NotNull>1</NotNull>
  3732. <Position>2</Position>
  3733. </column>
  3734. <column id="855" parent="351" name="mes_concepto">
  3735. <DasType>char(10)|0s</DasType>
  3736. <NotNull>1</NotNull>
  3737. <Position>3</Position>
  3738. </column>
  3739. <column id="856" parent="351" name="valor_depre">
  3740. <DasType>decimal(8,2 digit)|0s</DasType>
  3741. <NotNull>1</NotNull>
  3742. <Position>4</Position>
  3743. </column>
  3744. <column id="857" parent="351" name="mensual_depre">
  3745. <DasType>decimal(8,2 digit)|0s</DasType>
  3746. <NotNull>1</NotNull>
  3747. <Position>5</Position>
  3748. </column>
  3749. <column id="858" parent="351" name="acumulada_depre">
  3750. <DasType>decimal(8,2 digit)|0s</DasType>
  3751. <NotNull>1</NotNull>
  3752. <Position>6</Position>
  3753. </column>
  3754. <column id="859" parent="351" name="saldo_depre">
  3755. <DasType>decimal(8,2 digit)|0s</DasType>
  3756. <NotNull>1</NotNull>
  3757. <Position>7</Position>
  3758. </column>
  3759. <column id="860" parent="351" name="anual_depre">
  3760. <DasType>decimal(8,2 digit)|0s</DasType>
  3761. <NotNull>1</NotNull>
  3762. <Position>8</Position>
  3763. </column>
  3764. <column id="861" parent="351" name="mes_depre">
  3765. <DasType>decimal(8,2 digit)|0s</DasType>
  3766. <NotNull>1</NotNull>
  3767. <Position>9</Position>
  3768. </column>
  3769. <column id="862" parent="351" name="fecha_ingreso">
  3770. <DasType>date|0s</DasType>
  3771. <NotNull>1</NotNull>
  3772. <Position>10</Position>
  3773. </column>
  3774. <column id="863" parent="351" name="depre_activa">
  3775. <DasType>char(1)|0s</DasType>
  3776. <NotNull>1</NotNull>
  3777. <Position>11</Position>
  3778. </column>
  3779. <column id="864" parent="351" name="cuenta_depre">
  3780. <DasType>char(10)|0s</DasType>
  3781. <NotNull>1</NotNull>
  3782. <Position>12</Position>
  3783. </column>
  3784. <column id="865" parent="352" name="isss">
  3785. <DasType>decimal(6,2 digit)|0s</DasType>
  3786. <NotNull>1</NotNull>
  3787. <Position>1</Position>
  3788. </column>
  3789. <column id="866" parent="352" name="hora_diurna">
  3790. <DasType>decimal(6,2 digit)|0s</DasType>
  3791. <NotNull>1</NotNull>
  3792. <Position>2</Position>
  3793. </column>
  3794. <column id="867" parent="352" name="hora_nocturna">
  3795. <DasType>decimal(6,2 digit)|0s</DasType>
  3796. <NotNull>1</NotNull>
  3797. <Position>3</Position>
  3798. </column>
  3799. <column id="868" parent="352" name="limite_isss">
  3800. <DasType>decimal(6,2 digit)|0s</DasType>
  3801. <NotNull>1</NotNull>
  3802. <Position>4</Position>
  3803. </column>
  3804. <column id="869" parent="352" name="afp">
  3805. <DasType>decimal(6,2 digit)|0s</DasType>
  3806. <NotNull>1</NotNull>
  3807. <Position>5</Position>
  3808. </column>
  3809. <column id="870" parent="352" name="ipfa">
  3810. <DasType>decimal(6,2 digit)|0s</DasType>
  3811. <NotNull>1</NotNull>
  3812. <Position>6</Position>
  3813. </column>
  3814. <column id="871" parent="352" name="vialidad">
  3815. <DasType>decimal(6,2 digit)|0s</DasType>
  3816. <NotNull>1</NotNull>
  3817. <Position>7</Position>
  3818. </column>
  3819. <column id="872" parent="352" name="limite_afp">
  3820. <DasType>decimal(10,2 digit)|0s</DasType>
  3821. <NotNull>1</NotNull>
  3822. <Position>8</Position>
  3823. </column>
  3824. <column id="873" parent="352" name="limite_ipsfa">
  3825. <DasType>decimal(10,2 digit)|0s</DasType>
  3826. <NotNull>1</NotNull>
  3827. <Position>9</Position>
  3828. </column>
  3829. <column id="874" parent="352" name="id">
  3830. <DasType>int(1)|0s</DasType>
  3831. <NotNull>1</NotNull>
  3832. <Position>10</Position>
  3833. </column>
  3834. <index id="875" parent="352" name="PRIMARY">
  3835. <ColNames>id</ColNames>
  3836. <Type>btree</Type>
  3837. <Unique>1</Unique>
  3838. </index>
  3839. <key id="876" parent="352" name="PRIMARY">
  3840. <NameSurrogate>1</NameSurrogate>
  3841. <Primary>1</Primary>
  3842. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  3843. </key>
  3844. <column id="877" parent="353" name="codigo_compra">
  3845. <DasType>char(6)|0s</DasType>
  3846. <NotNull>1</NotNull>
  3847. <Position>1</Position>
  3848. </column>
  3849. <column id="878" parent="353" name="cuenta">
  3850. <DasType>char(14)|0s</DasType>
  3851. <NotNull>1</NotNull>
  3852. <Position>2</Position>
  3853. </column>
  3854. <column id="879" parent="353" name="monto">
  3855. <DasType>decimal(14,2 digit)|0s</DasType>
  3856. <NotNull>1</NotNull>
  3857. <Position>3</Position>
  3858. </column>
  3859. <column id="880" parent="353" name="nota">
  3860. <DasType>longtext|0s</DasType>
  3861. <NotNull>1</NotNull>
  3862. <Position>4</Position>
  3863. </column>
  3864. <column id="881" parent="354" name="codigo_nota">
  3865. <DasType>char(4)|0s</DasType>
  3866. <NotNull>1</NotNull>
  3867. <Position>1</Position>
  3868. </column>
  3869. <column id="882" parent="354" name="cuenta">
  3870. <DasType>char(14)|0s</DasType>
  3871. <NotNull>1</NotNull>
  3872. <Position>2</Position>
  3873. </column>
  3874. <column id="883" parent="354" name="monto">
  3875. <DasType>decimal(10,2 digit)|0s</DasType>
  3876. <NotNull>1</NotNull>
  3877. <Position>3</Position>
  3878. </column>
  3879. <column id="884" parent="354" name="nota">
  3880. <DasType>char(100)|0s</DasType>
  3881. <NotNull>1</NotNull>
  3882. <Position>4</Position>
  3883. </column>
  3884. <column id="885" parent="355" name="partidanum">
  3885. <DasType>char(7)|0s</DasType>
  3886. <NotNull>1</NotNull>
  3887. <Position>1</Position>
  3888. </column>
  3889. <column id="886" parent="355" name="codicuenta">
  3890. <DasType>char(14)|0s</DasType>
  3891. <NotNull>1</NotNull>
  3892. <Position>2</Position>
  3893. </column>
  3894. <column id="887" parent="355" name="abono">
  3895. <DasType>decimal(12,2 digit)|0s</DasType>
  3896. <NotNull>1</NotNull>
  3897. <Position>3</Position>
  3898. </column>
  3899. <column id="888" parent="355" name="cargo">
  3900. <DasType>decimal(12,2 digit)|0s</DasType>
  3901. <NotNull>1</NotNull>
  3902. <Position>4</Position>
  3903. </column>
  3904. <column id="889" parent="355" name="nota">
  3905. <DasType>varchar(1000)|0s</DasType>
  3906. <NotNull>1</NotNull>
  3907. <Position>5</Position>
  3908. </column>
  3909. <foreign-key id="890" parent="355" name="FK_detalle_partida_1">
  3910. <ColNames>partidanum</ColNames>
  3911. <OnDelete>cascade</OnDelete>
  3912. <OnUpdate>cascade</OnUpdate>
  3913. <RefColNames>partidanum</RefColNames>
  3914. <RefTableName>partida</RefTableName>
  3915. </foreign-key>
  3916. <index id="891" parent="355" name="FK_detalle_partida_1">
  3917. <ColNames>partidanum</ColNames>
  3918. <Type>btree</Type>
  3919. </index>
  3920. <column id="892" parent="356" name="fecha_central">
  3921. <DasType>date|0s</DasType>
  3922. <NotNull>1</NotNull>
  3923. <Position>1</Position>
  3924. </column>
  3925. <column id="893" parent="356" name="caja">
  3926. <DasType>decimal(16,2 digit)|0s</DasType>
  3927. <NotNull>1</NotNull>
  3928. <Position>2</Position>
  3929. </column>
  3930. <column id="894" parent="356" name="cuscatlan_ahorro">
  3931. <DasType>decimal(16,2 digit)|0s</DasType>
  3932. <NotNull>1</NotNull>
  3933. <Position>3</Position>
  3934. </column>
  3935. <column id="895" parent="356" name="cuscatlan_corriente">
  3936. <DasType>decimal(16,2 digit)|0s</DasType>
  3937. <NotNull>1</NotNull>
  3938. <Position>4</Position>
  3939. </column>
  3940. <column id="896" parent="356" name="agricola_corriente1">
  3941. <DasType>decimal(16,2 digit)|0s</DasType>
  3942. <NotNull>1</NotNull>
  3943. <Position>5</Position>
  3944. </column>
  3945. <column id="897" parent="356" name="agricola_ahorro">
  3946. <DasType>decimal(16,2 digit)|0s</DasType>
  3947. <NotNull>1</NotNull>
  3948. <Position>6</Position>
  3949. </column>
  3950. <column id="898" parent="356" name="agricola_corriente2">
  3951. <DasType>decimal(16,2 digit)|0s</DasType>
  3952. <NotNull>1</NotNull>
  3953. <Position>7</Position>
  3954. </column>
  3955. <column id="899" parent="356" name="fomento_corriente">
  3956. <DasType>decimal(16,2 digit)|0s</DasType>
  3957. <NotNull>1</NotNull>
  3958. <Position>8</Position>
  3959. </column>
  3960. <column id="900" parent="356" name="salvadoreño_corriente">
  3961. <DasType>decimal(16,2 digit)|0s</DasType>
  3962. <NotNull>1</NotNull>
  3963. <Position>9</Position>
  3964. </column>
  3965. <column id="901" parent="356" name="comercio_corriente">
  3966. <DasType>decimal(16,2 digit)|0s</DasType>
  3967. <NotNull>1</NotNull>
  3968. <Position>10</Position>
  3969. </column>
  3970. <column id="902" parent="356" name="promerica_corriente">
  3971. <DasType>decimal(16,2 digit)|0s</DasType>
  3972. <NotNull>1</NotNull>
  3973. <Position>11</Position>
  3974. </column>
  3975. <column id="903" parent="356" name="promerica_integra">
  3976. <DasType>decimal(16,2 digit)|0s</DasType>
  3977. <NotNull>1</NotNull>
  3978. <Position>12</Position>
  3979. </column>
  3980. <column id="904" parent="356" name="procredit_corriente">
  3981. <DasType>decimal(16,2 digit)|0s</DasType>
  3982. <NotNull>1</NotNull>
  3983. <Position>13</Position>
  3984. </column>
  3985. <column id="905" parent="356" name="bac">
  3986. <DasType>decimal(16,2 digit)|0s</DasType>
  3987. <NotNull>1</NotNull>
  3988. <Position>14</Position>
  3989. </column>
  3990. <column id="906" parent="356" name="fecha_salai">
  3991. <DasType>date|0s</DasType>
  3992. <NotNull>1</NotNull>
  3993. <Position>15</Position>
  3994. </column>
  3995. <column id="907" parent="356" name="fecha_salaf">
  3996. <DasType>date|0s</DasType>
  3997. <NotNull>1</NotNull>
  3998. <Position>16</Position>
  3999. </column>
  4000. <column id="908" parent="356" name="azul_corriente">
  4001. <DasType>decimal(16,2 digit)|0s</DasType>
  4002. <NotNull>1</NotNull>
  4003. <Position>17</Position>
  4004. </column>
  4005. <column id="909" parent="356" name="tigo">
  4006. <DasType>decimal(16,2 digit)|0s</DasType>
  4007. <DefaultExpression>0.00</DefaultExpression>
  4008. <NotNull>1</NotNull>
  4009. <Position>18</Position>
  4010. </column>
  4011. <column id="910" parent="356" name="tarjeta">
  4012. <DasType>decimal(16,2 digit)|0s</DasType>
  4013. <DefaultExpression>0.00</DefaultExpression>
  4014. <NotNull>1</NotNull>
  4015. <Position>19</Position>
  4016. </column>
  4017. <column id="911" parent="356" name="pago_linea">
  4018. <DasType>decimal(16,2 digit)|0s</DasType>
  4019. <DefaultExpression>0.00</DefaultExpression>
  4020. <NotNull>1</NotNull>
  4021. <Position>20</Position>
  4022. </column>
  4023. <index id="912" parent="356" name="PRIMARY">
  4024. <ColNames>fecha_central</ColNames>
  4025. <Type>btree</Type>
  4026. <Unique>1</Unique>
  4027. </index>
  4028. <key id="913" parent="356" name="PRIMARY">
  4029. <NameSurrogate>1</NameSurrogate>
  4030. <Primary>1</Primary>
  4031. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  4032. </key>
  4033. <column id="914" parent="357" name="codigo_empleado">
  4034. <DasType>char(3)|0s</DasType>
  4035. <NotNull>1</NotNull>
  4036. <Position>1</Position>
  4037. </column>
  4038. <column id="915" parent="357" name="territorio_codigo">
  4039. <DasType>char(2)|0s</DasType>
  4040. <NotNull>1</NotNull>
  4041. <Position>2</Position>
  4042. </column>
  4043. <column id="916" parent="357" name="depreciacion">
  4044. <DasType>decimal(12,2 digit)|0s</DasType>
  4045. <NotNull>1</NotNull>
  4046. <Position>3</Position>
  4047. </column>
  4048. <column id="917" parent="357" name="sueldo_base">
  4049. <DasType>decimal(12,2 digit)|0s</DasType>
  4050. <NotNull>1</NotNull>
  4051. <Position>4</Position>
  4052. </column>
  4053. <column id="918" parent="357" name="categoría">
  4054. <DasType>char(10)|0s</DasType>
  4055. <NotNull>1</NotNull>
  4056. <Position>5</Position>
  4057. </column>
  4058. <column id="919" parent="357" name="combustible">
  4059. <DasType>decimal(12,2 digit)|0s</DasType>
  4060. <NotNull>1</NotNull>
  4061. <Position>6</Position>
  4062. </column>
  4063. <column id="920" parent="357" name="bonificacion">
  4064. <DasType>decimal(12,2 digit)|0s</DasType>
  4065. <NotNull>1</NotNull>
  4066. <Position>7</Position>
  4067. </column>
  4068. <column id="921" parent="357" name="descuento">
  4069. <DasType>decimal(10,2 digit)|0s</DasType>
  4070. <NotNull>1</NotNull>
  4071. <Position>8</Position>
  4072. </column>
  4073. <column id="922" parent="357" name="seguro">
  4074. <DasType>decimal(10,2 digit)|0s</DasType>
  4075. <NotNull>1</NotNull>
  4076. <Position>9</Position>
  4077. </column>
  4078. <column id="923" parent="357" name="fseguro">
  4079. <DasType>date|0s</DasType>
  4080. <NotNull>1</NotNull>
  4081. <Position>10</Position>
  4082. </column>
  4083. <index id="924" parent="357" name="PRIMARY">
  4084. <ColNames>territorio_codigo</ColNames>
  4085. <Type>btree</Type>
  4086. <Unique>1</Unique>
  4087. </index>
  4088. <key id="925" parent="357" name="PRIMARY">
  4089. <NameSurrogate>1</NameSurrogate>
  4090. <Primary>1</Primary>
  4091. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  4092. </key>
  4093. <column id="926" parent="358" name="codigo_empleado">
  4094. <DasType>char(3)|0s</DasType>
  4095. <NotNull>1</NotNull>
  4096. <Position>1</Position>
  4097. </column>
  4098. <column id="927" parent="358" name="herramienta">
  4099. <DasType>char(30)|0s</DasType>
  4100. <NotNull>1</NotNull>
  4101. <Position>2</Position>
  4102. </column>
  4103. <column id="928" parent="359" name="codigo_empleado">
  4104. <DasType>char(3)|0s</DasType>
  4105. <NotNull>1</NotNull>
  4106. <Position>1</Position>
  4107. </column>
  4108. <column id="929" parent="359" name="nombre_empleado">
  4109. <DasType>varchar(30)|0s</DasType>
  4110. <NotNull>1</NotNull>
  4111. <Position>2</Position>
  4112. </column>
  4113. <column id="930" parent="359" name="apellido_empleado">
  4114. <DasType>varchar(30)|0s</DasType>
  4115. <NotNull>1</NotNull>
  4116. <Position>3</Position>
  4117. </column>
  4118. <column id="931" parent="359" name="sueldo_mensual">
  4119. <DasType>decimal(8,2 digit) unsigned|0s</DasType>
  4120. <NotNull>1</NotNull>
  4121. <Position>4</Position>
  4122. </column>
  4123. <column id="932" parent="359" name="cargo">
  4124. <DasType>char(2)|0s</DasType>
  4125. <NotNull>1</NotNull>
  4126. <Position>5</Position>
  4127. </column>
  4128. <column id="933" parent="359" name="fecha_ingreso">
  4129. <DasType>date|0s</DasType>
  4130. <NotNull>1</NotNull>
  4131. <Position>6</Position>
  4132. </column>
  4133. <column id="934" parent="359" name="fecha_ncontrato">
  4134. <DasType>date|0s</DasType>
  4135. <NotNull>1</NotNull>
  4136. <Position>7</Position>
  4137. </column>
  4138. <column id="935" parent="359" name="fecha_nacimiento">
  4139. <DasType>date|0s</DasType>
  4140. <NotNull>1</NotNull>
  4141. <Position>8</Position>
  4142. </column>
  4143. <column id="936" parent="359" name="sala">
  4144. <DasType>varchar(14)|0s</DasType>
  4145. <NotNull>1</NotNull>
  4146. <Position>9</Position>
  4147. </column>
  4148. <column id="937" parent="359" name="consultor">
  4149. <DasType>varchar(5)|0s</DasType>
  4150. <NotNull>1</NotNull>
  4151. <Position>10</Position>
  4152. </column>
  4153. <column id="938" parent="359" name="tipo_pension">
  4154. <DasType>varchar(11)|0s</DasType>
  4155. <NotNull>1</NotNull>
  4156. <Position>11</Position>
  4157. </column>
  4158. <column id="939" parent="359" name="departamento">
  4159. <DasType>varchar(2)|0s</DasType>
  4160. <Position>12</Position>
  4161. </column>
  4162. <column id="940" parent="359" name="cuenta">
  4163. <DasType>varchar(14)|0s</DasType>
  4164. <NotNull>1</NotNull>
  4165. <Position>13</Position>
  4166. </column>
  4167. <column id="941" parent="359" name="inactivo">
  4168. <DasType>char(1)|0s</DasType>
  4169. <NotNull>1</NotNull>
  4170. <Position>14</Position>
  4171. </column>
  4172. <index id="942" parent="359" name="PRIMARY">
  4173. <ColNames>codigo_empleado</ColNames>
  4174. <Type>btree</Type>
  4175. <Unique>1</Unique>
  4176. </index>
  4177. <key id="943" parent="359" name="PRIMARY">
  4178. <NameSurrogate>1</NameSurrogate>
  4179. <Primary>1</Primary>
  4180. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  4181. </key>
  4182. <column id="944" parent="360" name="cheque">
  4183. <DasType>char(9)|0s</DasType>
  4184. <NotNull>1</NotNull>
  4185. <Position>1</Position>
  4186. </column>
  4187. <column id="945" parent="360" name="monto">
  4188. <DasType>decimal(12,2 digit)|0s</DasType>
  4189. <NotNull>1</NotNull>
  4190. <Position>2</Position>
  4191. </column>
  4192. <column id="946" parent="360" name="fecha">
  4193. <DasType>date|0s</DasType>
  4194. <NotNull>1</NotNull>
  4195. <Position>3</Position>
  4196. </column>
  4197. <column id="947" parent="360" name="cuenta_banco">
  4198. <DasType>char(2)|0s</DasType>
  4199. <NotNull>1</NotNull>
  4200. <Position>4</Position>
  4201. </column>
  4202. <column id="948" parent="360" name="mes">
  4203. <DasType>char(2)|0s</DasType>
  4204. <NotNull>1</NotNull>
  4205. <Position>5</Position>
  4206. </column>
  4207. <column id="949" parent="361" name="codigoe">
  4208. <DasType>varchar(3)|0s</DasType>
  4209. <NotNull>1</NotNull>
  4210. <Position>1</Position>
  4211. </column>
  4212. <column id="950" parent="361" name="fecha">
  4213. <DasType>date|0s</DasType>
  4214. <NotNull>1</NotNull>
  4215. <Position>2</Position>
  4216. </column>
  4217. <column id="951" parent="361" name="pregunta1">
  4218. <DasType>varchar(1)|0s</DasType>
  4219. <NotNull>1</NotNull>
  4220. <Position>3</Position>
  4221. </column>
  4222. <column id="952" parent="361" name="pregunta2">
  4223. <DasType>varchar(1)|0s</DasType>
  4224. <NotNull>1</NotNull>
  4225. <Position>4</Position>
  4226. </column>
  4227. <column id="953" parent="361" name="pregunta3">
  4228. <DasType>varchar(1)|0s</DasType>
  4229. <NotNull>1</NotNull>
  4230. <Position>5</Position>
  4231. </column>
  4232. <column id="954" parent="361" name="pregunta4">
  4233. <DasType>varchar(1)|0s</DasType>
  4234. <Position>6</Position>
  4235. </column>
  4236. <column id="955" parent="361" name="pregunta5">
  4237. <DasType>varchar(1)|0s</DasType>
  4238. <NotNull>1</NotNull>
  4239. <Position>7</Position>
  4240. </column>
  4241. <column id="956" parent="361" name="pregunta6">
  4242. <DasType>varchar(1)|0s</DasType>
  4243. <NotNull>1</NotNull>
  4244. <Position>8</Position>
  4245. </column>
  4246. <column id="957" parent="361" name="pregunta7">
  4247. <DasType>varchar(1)|0s</DasType>
  4248. <NotNull>1</NotNull>
  4249. <Position>9</Position>
  4250. </column>
  4251. <column id="958" parent="361" name="pregunta8">
  4252. <DasType>varchar(1)|0s</DasType>
  4253. <NotNull>1</NotNull>
  4254. <Position>10</Position>
  4255. </column>
  4256. <column id="959" parent="361" name="pregunta9">
  4257. <DasType>varchar(1)|0s</DasType>
  4258. <NotNull>1</NotNull>
  4259. <Position>11</Position>
  4260. </column>
  4261. <column id="960" parent="361" name="pregunta10">
  4262. <DasType>varchar(1)|0s</DasType>
  4263. <NotNull>1</NotNull>
  4264. <Position>12</Position>
  4265. </column>
  4266. <column id="961" parent="361" name="pregunta11">
  4267. <DasType>varchar(1)|0s</DasType>
  4268. <NotNull>1</NotNull>
  4269. <Position>13</Position>
  4270. </column>
  4271. <column id="962" parent="361" name="pregunta12">
  4272. <DasType>varchar(1)|0s</DasType>
  4273. <NotNull>1</NotNull>
  4274. <Position>14</Position>
  4275. </column>
  4276. <column id="963" parent="361" name="pregunta13">
  4277. <DasType>varchar(1)|0s</DasType>
  4278. <NotNull>1</NotNull>
  4279. <Position>15</Position>
  4280. </column>
  4281. <column id="964" parent="361" name="observacion">
  4282. <DasType>varchar(250)|0s</DasType>
  4283. <NotNull>1</NotNull>
  4284. <Position>16</Position>
  4285. </column>
  4286. <index id="965" parent="361" name="PRIMARY">
  4287. <ColNames>codigoe
  4288. fecha</ColNames>
  4289. <Type>btree</Type>
  4290. <Unique>1</Unique>
  4291. </index>
  4292. <key id="966" parent="361" name="PRIMARY">
  4293. <NameSurrogate>1</NameSurrogate>
  4294. <Primary>1</Primary>
  4295. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  4296. </key>
  4297. <column id="967" parent="362" name="codigo_empleado">
  4298. <DasType>char(3)|0s</DasType>
  4299. <NotNull>1</NotNull>
  4300. <Position>1</Position>
  4301. </column>
  4302. <column id="968" parent="362" name="parentesco">
  4303. <DasType>char(1)|0s</DasType>
  4304. <NotNull>1</NotNull>
  4305. <Position>2</Position>
  4306. </column>
  4307. <column id="969" parent="362" name="nombre">
  4308. <DasType>char(40)|0s</DasType>
  4309. <NotNull>1</NotNull>
  4310. <Position>3</Position>
  4311. </column>
  4312. <column id="970" parent="362" name="fecha_nacimiento">
  4313. <DasType>date|0s</DasType>
  4314. <NotNull>1</NotNull>
  4315. <Position>4</Position>
  4316. </column>
  4317. <column id="971" parent="362" name="sexo">
  4318. <DasType>char(1)|0s</DasType>
  4319. <NotNull>1</NotNull>
  4320. <Position>5</Position>
  4321. </column>
  4322. <index id="972" parent="362" name="PRIMARY">
  4323. <ColNames>codigo_empleado
  4324. parentesco
  4325. nombre</ColNames>
  4326. <Type>btree</Type>
  4327. <Unique>1</Unique>
  4328. </index>
  4329. <key id="973" parent="362" name="PRIMARY">
  4330. <NameSurrogate>1</NameSurrogate>
  4331. <Primary>1</Primary>
  4332. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  4333. </key>
  4334. <column id="974" parent="363" name="codigo_gasto">
  4335. <DasType>varchar(10)|0s</DasType>
  4336. <NotNull>1</NotNull>
  4337. <Position>1</Position>
  4338. </column>
  4339. <column id="975" parent="363" name="nombre_gasto">
  4340. <DasType>varchar(60)|0s</DasType>
  4341. <NotNull>1</NotNull>
  4342. <Position>2</Position>
  4343. </column>
  4344. <column id="976" parent="363" name="rubro">
  4345. <DasType>varchar(45)|0s</DasType>
  4346. <NotNull>1</NotNull>
  4347. <Position>3</Position>
  4348. </column>
  4349. <column id="977" parent="363" name="tipo">
  4350. <DasType>varchar(15)|0s</DasType>
  4351. <NotNull>1</NotNull>
  4352. <Position>4</Position>
  4353. </column>
  4354. <column id="978" parent="363" name="monto">
  4355. <DasType>decimal(14,2 digit)|0s</DasType>
  4356. <NotNull>1</NotNull>
  4357. <Position>5</Position>
  4358. </column>
  4359. <column id="979" parent="363" name="cuenta_contable">
  4360. <DasType>varchar(45)|0s</DasType>
  4361. <NotNull>1</NotNull>
  4362. <Position>6</Position>
  4363. </column>
  4364. <index id="980" parent="363" name="PRIMARY">
  4365. <ColNames>codigo_gasto</ColNames>
  4366. <Type>btree</Type>
  4367. <Unique>1</Unique>
  4368. </index>
  4369. <key id="981" parent="363" name="PRIMARY">
  4370. <NameSurrogate>1</NameSurrogate>
  4371. <Primary>1</Primary>
  4372. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  4373. </key>
  4374. <column id="982" parent="364" name="mwucierre">
  4375. <DasType>decimal(2)|0s</DasType>
  4376. <NotNull>1</NotNull>
  4377. <Position>1</Position>
  4378. </column>
  4379. <column id="983" parent="364" name="mwpcierre">
  4380. <DasType>decimal(2)|0s</DasType>
  4381. <NotNull>1</NotNull>
  4382. <Position>2</Position>
  4383. </column>
  4384. <column id="984" parent="364" name="utilidad">
  4385. <DasType>decimal(14,2 digit)|0s</DasType>
  4386. <NotNull>1</NotNull>
  4387. <Position>3</Position>
  4388. </column>
  4389. <column id="985" parent="364" name="AGO">
  4390. <DasType>decimal(3)|0s</DasType>
  4391. <DefaultExpression>0</DefaultExpression>
  4392. <Position>4</Position>
  4393. </column>
  4394. <column id="986" parent="364" name="MAR">
  4395. <DasType>decimal(3)|0s</DasType>
  4396. <DefaultExpression>0</DefaultExpression>
  4397. <Position>5</Position>
  4398. </column>
  4399. <column id="987" parent="364" name="DIC">
  4400. <DasType>decimal(3)|0s</DasType>
  4401. <DefaultExpression>0</DefaultExpression>
  4402. <Position>6</Position>
  4403. </column>
  4404. <column id="988" parent="364" name="retencion">
  4405. <DasType>varchar(6)|0s</DasType>
  4406. <NotNull>1</NotNull>
  4407. <Position>7</Position>
  4408. </column>
  4409. <index id="989" parent="364" name="PRIMARY">
  4410. <ColNames>mwucierre</ColNames>
  4411. <Type>btree</Type>
  4412. <Unique>1</Unique>
  4413. </index>
  4414. <key id="990" parent="364" name="PRIMARY">
  4415. <NameSurrogate>1</NameSurrogate>
  4416. <Primary>1</Primary>
  4417. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  4418. </key>
  4419. <column id="991" parent="365" name="id">
  4420. <AutoIncrement>1912</AutoIncrement>
  4421. <DasType>int(11)|0s</DasType>
  4422. <NotNull>1</NotNull>
  4423. <Position>1</Position>
  4424. </column>
  4425. <column id="992" parent="365" name="id_pago">
  4426. <DasType>varchar(45)|0s</DasType>
  4427. <Position>2</Position>
  4428. </column>
  4429. <column id="993" parent="365" name="emp_cod">
  4430. <DasType>char(3)|0s</DasType>
  4431. <NotNull>1</NotNull>
  4432. <Position>3</Position>
  4433. </column>
  4434. <column id="994" parent="365" name="inicio_hora">
  4435. <DasType>datetime|0s</DasType>
  4436. <NotNull>1</NotNull>
  4437. <Position>4</Position>
  4438. </column>
  4439. <column id="995" parent="365" name="fin_hora">
  4440. <DasType>datetime|0s</DasType>
  4441. <NotNull>1</NotNull>
  4442. <Position>5</Position>
  4443. </column>
  4444. <column id="996" parent="365" name="total_horas">
  4445. <DasType>time|0s</DasType>
  4446. <NotNull>1</NotNull>
  4447. <Position>6</Position>
  4448. </column>
  4449. <column id="997" parent="365" name="horas_diurnas">
  4450. <DasType>time|0s</DasType>
  4451. <NotNull>1</NotNull>
  4452. <Position>7</Position>
  4453. </column>
  4454. <column id="998" parent="365" name="horas_nocturnas">
  4455. <DasType>time|0s</DasType>
  4456. <NotNull>1</NotNull>
  4457. <Position>8</Position>
  4458. </column>
  4459. <column id="999" parent="365" name="fecha">
  4460. <DasType>date|0s</DasType>
  4461. <Position>9</Position>
  4462. </column>
  4463. <column id="1000" parent="365" name="corrido">
  4464. <DasType>tinyint(1)|0s</DasType>
  4465. <Position>10</Position>
  4466. </column>
  4467. <column id="1001" parent="365" name="fecha_ingreso">
  4468. <DasType>date|0s</DasType>
  4469. <Position>11</Position>
  4470. </column>
  4471. <column id="1002" parent="365" name="revisado">
  4472. <DasType>tinyint(1)|0s</DasType>
  4473. <Position>12</Position>
  4474. </column>
  4475. <index id="1003" parent="365" name="PRIMARY">
  4476. <ColNames>id</ColNames>
  4477. <Type>btree</Type>
  4478. <Unique>1</Unique>
  4479. </index>
  4480. <key id="1004" parent="365" name="PRIMARY">
  4481. <NameSurrogate>1</NameSurrogate>
  4482. <Primary>1</Primary>
  4483. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  4484. </key>
  4485. <column id="1005" parent="366" name="emp_cod">
  4486. <DasType>char(4)|0s</DasType>
  4487. <NotNull>1</NotNull>
  4488. <Position>1</Position>
  4489. </column>
  4490. <column id="1006" parent="366" name="pago_turno">
  4491. <DasType>decimal(8,3 digit)|0s</DasType>
  4492. <NotNull>1</NotNull>
  4493. <Position>2</Position>
  4494. </column>
  4495. <column id="1007" parent="366" name="pago_diurno">
  4496. <DasType>decimal(8,3 digit)|0s</DasType>
  4497. <NotNull>1</NotNull>
  4498. <Position>3</Position>
  4499. </column>
  4500. <column id="1008" parent="366" name="pago_minutos">
  4501. <DasType>decimal(8,3 digit)|0s</DasType>
  4502. <NotNull>1</NotNull>
  4503. <Position>4</Position>
  4504. </column>
  4505. <column id="1009" parent="366" name="pago_nocturno">
  4506. <DasType>decimal(8,3 digit)|0s</DasType>
  4507. <NotNull>1</NotNull>
  4508. <Position>5</Position>
  4509. </column>
  4510. <column id="1010" parent="366" name="sub_total">
  4511. <DasType>decimal(8,2 digit)|0s</DasType>
  4512. <NotNull>1</NotNull>
  4513. <Position>6</Position>
  4514. </column>
  4515. <column id="1011" parent="366" name="renta">
  4516. <DasType>decimal(8,2 digit)|0s</DasType>
  4517. <NotNull>1</NotNull>
  4518. <Position>7</Position>
  4519. </column>
  4520. <column id="1012" parent="366" name="total_pago">
  4521. <DasType>decimal(8,2 digit)|0s</DasType>
  4522. <NotNull>1</NotNull>
  4523. <Position>8</Position>
  4524. </column>
  4525. <column id="1013" parent="366" name="fecha">
  4526. <DasType>date|0s</DasType>
  4527. <NotNull>1</NotNull>
  4528. <Position>9</Position>
  4529. </column>
  4530. <column id="1014" parent="366" name="autorizado">
  4531. <DasType>tinyint(1)|0s</DasType>
  4532. <Position>10</Position>
  4533. </column>
  4534. <column id="1015" parent="366" name="pagado">
  4535. <DasType>tinyint(1)|0s</DasType>
  4536. <Position>11</Position>
  4537. </column>
  4538. <column id="1016" parent="366" name="id_de_pago">
  4539. <DasType>varchar(45)|0s</DasType>
  4540. <Position>12</Position>
  4541. </column>
  4542. <column id="1017" parent="366" name="sucursal">
  4543. <DasType>varchar(2)|0s</DasType>
  4544. <NotNull>1</NotNull>
  4545. <Position>13</Position>
  4546. </column>
  4547. <index id="1018" parent="366" name="PRIMARY">
  4548. <ColNames>pago_diurno
  4549. emp_cod
  4550. fecha</ColNames>
  4551. <Type>btree</Type>
  4552. <Unique>1</Unique>
  4553. </index>
  4554. <key id="1019" parent="366" name="PRIMARY">
  4555. <NameSurrogate>1</NameSurrogate>
  4556. <Primary>1</Primary>
  4557. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  4558. </key>
  4559. <column id="1020" parent="367" name="codicuenta">
  4560. <DasType>char(14)|0s</DasType>
  4561. <NotNull>1</NotNull>
  4562. <Position>1</Position>
  4563. </column>
  4564. <column id="1021" parent="367" name="nombcuenta">
  4565. <DasType>char(80)|0s</DasType>
  4566. <NotNull>1</NotNull>
  4567. <Position>2</Position>
  4568. </column>
  4569. <column id="1022" parent="367" name="debe_haber">
  4570. <DasType>decimal(2)|0s</DasType>
  4571. <NotNull>1</NotNull>
  4572. <Position>3</Position>
  4573. </column>
  4574. <column id="1023" parent="367" name="nivel">
  4575. <DasType>decimal(2)|0s</DasType>
  4576. <NotNull>1</NotNull>
  4577. <Position>4</Position>
  4578. </column>
  4579. <column id="1024" parent="367" name="detalle">
  4580. <DasType>char(1)|0s</DasType>
  4581. <NotNull>1</NotNull>
  4582. <Position>5</Position>
  4583. </column>
  4584. <column id="1025" parent="367" name="general">
  4585. <DasType>char(14)|0s</DasType>
  4586. <NotNull>1</NotNull>
  4587. <Position>6</Position>
  4588. </column>
  4589. <column id="1026" parent="367" name="bal_ini1">
  4590. <DasType>decimal(14,2 digit)|0s</DasType>
  4591. <NotNull>1</NotNull>
  4592. <Position>7</Position>
  4593. </column>
  4594. <column id="1027" parent="367" name="bal_ini2">
  4595. <DasType>decimal(14,2 digit)|0s</DasType>
  4596. <NotNull>1</NotNull>
  4597. <Position>8</Position>
  4598. </column>
  4599. <column id="1028" parent="367" name="bal_ini3">
  4600. <DasType>decimal(14,2 digit)|0s</DasType>
  4601. <NotNull>1</NotNull>
  4602. <Position>9</Position>
  4603. </column>
  4604. <column id="1029" parent="367" name="bal_ini4">
  4605. <DasType>decimal(14,2 digit)|0s</DasType>
  4606. <NotNull>1</NotNull>
  4607. <Position>10</Position>
  4608. </column>
  4609. <column id="1030" parent="367" name="bal_ini5">
  4610. <DasType>decimal(14,2 digit)|0s</DasType>
  4611. <NotNull>1</NotNull>
  4612. <Position>11</Position>
  4613. </column>
  4614. <column id="1031" parent="367" name="bal_ini6">
  4615. <DasType>decimal(14,2 digit)|0s</DasType>
  4616. <NotNull>1</NotNull>
  4617. <Position>12</Position>
  4618. </column>
  4619. <column id="1032" parent="367" name="bal_ini7">
  4620. <DasType>decimal(14,2 digit)|0s</DasType>
  4621. <NotNull>1</NotNull>
  4622. <Position>13</Position>
  4623. </column>
  4624. <column id="1033" parent="367" name="bal_ini8">
  4625. <DasType>decimal(14,2 digit)|0s</DasType>
  4626. <NotNull>1</NotNull>
  4627. <Position>14</Position>
  4628. </column>
  4629. <column id="1034" parent="367" name="bal_ini9">
  4630. <DasType>decimal(14,2 digit)|0s</DasType>
  4631. <NotNull>1</NotNull>
  4632. <Position>15</Position>
  4633. </column>
  4634. <column id="1035" parent="367" name="bal_ini10">
  4635. <DasType>decimal(14,2 digit)|0s</DasType>
  4636. <NotNull>1</NotNull>
  4637. <Position>16</Position>
  4638. </column>
  4639. <column id="1036" parent="367" name="bal_ini11">
  4640. <DasType>decimal(14,2 digit)|0s</DasType>
  4641. <NotNull>1</NotNull>
  4642. <Position>17</Position>
  4643. </column>
  4644. <column id="1037" parent="367" name="bal_ini12">
  4645. <DasType>decimal(14,2 digit)|0s</DasType>
  4646. <NotNull>1</NotNull>
  4647. <Position>18</Position>
  4648. </column>
  4649. <column id="1038" parent="367" name="cargos">
  4650. <DasType>decimal(14,2 digit)|0s</DasType>
  4651. <NotNull>1</NotNull>
  4652. <Position>19</Position>
  4653. </column>
  4654. <column id="1039" parent="367" name="abonos">
  4655. <DasType>decimal(14,2 digit)|0s</DasType>
  4656. <NotNull>1</NotNull>
  4657. <Position>20</Position>
  4658. </column>
  4659. <column id="1040" parent="367" name="caraux">
  4660. <DasType>decimal(14,2 digit)|0s</DasType>
  4661. <NotNull>1</NotNull>
  4662. <Position>21</Position>
  4663. </column>
  4664. <column id="1041" parent="367" name="aboaux">
  4665. <DasType>decimal(14,2 digit)|0s</DasType>
  4666. <NotNull>1</NotNull>
  4667. <Position>22</Position>
  4668. </column>
  4669. <column id="1042" parent="367" name="centro">
  4670. <DasType>tinyint(1) unsigned|0s</DasType>
  4671. <NotNull>1</NotNull>
  4672. <Position>23</Position>
  4673. </column>
  4674. <column id="1043" parent="367" name="fecinic">
  4675. <DasType>date|0s</DasType>
  4676. <NotNull>1</NotNull>
  4677. <Position>24</Position>
  4678. </column>
  4679. <column id="1044" parent="367" name="fecultop">
  4680. <DasType>date|0s</DasType>
  4681. <NotNull>1</NotNull>
  4682. <Position>25</Position>
  4683. </column>
  4684. <column id="1045" parent="367" name="bg">
  4685. <DasType>char(1)|0s</DasType>
  4686. <NotNull>1</NotNull>
  4687. <Position>26</Position>
  4688. </column>
  4689. <column id="1046" parent="367" name="orden">
  4690. <DasType>char(1)|0s</DasType>
  4691. <NotNull>1</NotNull>
  4692. <Position>27</Position>
  4693. </column>
  4694. <index id="1047" parent="367" name="PRIMARY">
  4695. <ColNames>codicuenta</ColNames>
  4696. <Type>btree</Type>
  4697. <Unique>1</Unique>
  4698. </index>
  4699. <key id="1048" parent="367" name="PRIMARY">
  4700. <NameSurrogate>1</NameSurrogate>
  4701. <Primary>1</Primary>
  4702. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  4703. </key>
  4704. <column id="1049" parent="368" name="partidanum">
  4705. <DasType>char(7)|0s</DasType>
  4706. <NotNull>1</NotNull>
  4707. <Position>1</Position>
  4708. </column>
  4709. <column id="1050" parent="368" name="codicuenta">
  4710. <DasType>char(14)|0s</DasType>
  4711. <NotNull>1</NotNull>
  4712. <Position>2</Position>
  4713. </column>
  4714. <column id="1051" parent="368" name="abono">
  4715. <DasType>decimal(12,2 digit)|0s</DasType>
  4716. <NotNull>1</NotNull>
  4717. <Position>3</Position>
  4718. </column>
  4719. <column id="1052" parent="368" name="cargo">
  4720. <DasType>decimal(12,2 digit)|0s</DasType>
  4721. <NotNull>1</NotNull>
  4722. <Position>4</Position>
  4723. </column>
  4724. <column id="1053" parent="368" name="nota">
  4725. <DasType>varchar(1000)|0s</DasType>
  4726. <NotNull>1</NotNull>
  4727. <Position>5</Position>
  4728. </column>
  4729. <column id="1054" parent="369" name="id">
  4730. <AutoIncrement>500</AutoIncrement>
  4731. <DasType>int(11)|0s</DasType>
  4732. <NotNull>1</NotNull>
  4733. <Position>1</Position>
  4734. </column>
  4735. <column id="1055" parent="369" name="empleado_codigo">
  4736. <DasType>varchar(4)|0s</DasType>
  4737. <Position>2</Position>
  4738. </column>
  4739. <column id="1056" parent="369" name="fecha_inicio_periodo">
  4740. <DasType>date|0s</DasType>
  4741. <Position>3</Position>
  4742. </column>
  4743. <column id="1057" parent="369" name="fecha_fin_periodo">
  4744. <DasType>date|0s</DasType>
  4745. <Position>4</Position>
  4746. </column>
  4747. <index id="1058" parent="369" name="PRIMARY">
  4748. <ColNames>id</ColNames>
  4749. <Type>btree</Type>
  4750. <Unique>1</Unique>
  4751. </index>
  4752. <key id="1059" parent="369" name="PRIMARY">
  4753. <NameSurrogate>1</NameSurrogate>
  4754. <Primary>1</Primary>
  4755. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  4756. </key>
  4757. <column id="1060" parent="370" name="id">
  4758. <AutoIncrement>1</AutoIncrement>
  4759. <DasType>int(11)|0s</DasType>
  4760. <NotNull>1</NotNull>
  4761. <Position>1</Position>
  4762. </column>
  4763. <column id="1061" parent="370" name="empleado_codigo">
  4764. <DasType>varchar(4)|0s</DasType>
  4765. <Position>2</Position>
  4766. </column>
  4767. <column id="1062" parent="370" name="liquido">
  4768. <DasType>decimal(5,2 digit)|0s</DasType>
  4769. <Position>3</Position>
  4770. </column>
  4771. <column id="1063" parent="370" name="isss">
  4772. <DasType>decimal(5,2 digit)|0s</DasType>
  4773. <Position>4</Position>
  4774. </column>
  4775. <column id="1064" parent="370" name="renta">
  4776. <DasType>decimal(5,2 digit)|0s</DasType>
  4777. <Position>5</Position>
  4778. </column>
  4779. <column id="1065" parent="370" name="afp">
  4780. <DasType>decimal(5,2 digit)|0s</DasType>
  4781. <Position>6</Position>
  4782. </column>
  4783. <column id="1066" parent="370" name="cooperativa">
  4784. <DasType>decimal(5,2 digit)|0s</DasType>
  4785. <Position>7</Position>
  4786. </column>
  4787. <column id="1067" parent="370" name="otros_descuentos">
  4788. <DasType>decimal(5,2 digit)|0s</DasType>
  4789. <Position>8</Position>
  4790. </column>
  4791. <column id="1068" parent="370" name="horas_extras">
  4792. <DasType>decimal(5,2 digit)|0s</DasType>
  4793. <Position>9</Position>
  4794. </column>
  4795. <column id="1069" parent="370" name="salario">
  4796. <DasType>decimal(5,2 digit)|0s</DasType>
  4797. <Position>10</Position>
  4798. </column>
  4799. <column id="1070" parent="370" name="tipo_empleado">
  4800. <DasType>int(4)|0s</DasType>
  4801. <Position>11</Position>
  4802. </column>
  4803. <column id="1071" parent="370" name="fecha_pago">
  4804. <DasType>date|0s</DasType>
  4805. <Position>12</Position>
  4806. </column>
  4807. <index id="1072" parent="370" name="PRIMARY">
  4808. <ColNames>id</ColNames>
  4809. <Type>btree</Type>
  4810. <Unique>1</Unique>
  4811. </index>
  4812. <key id="1073" parent="370" name="PRIMARY">
  4813. <NameSurrogate>1</NameSurrogate>
  4814. <Primary>1</Primary>
  4815. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  4816. </key>
  4817. <column id="1074" parent="371" name="codigo_empleado">
  4818. <DasType>char(3)|0s</DasType>
  4819. <NotNull>1</NotNull>
  4820. <Position>1</Position>
  4821. </column>
  4822. <column id="1075" parent="371" name="fecha">
  4823. <DasType>date|0s</DasType>
  4824. <NotNull>1</NotNull>
  4825. <Position>2</Position>
  4826. </column>
  4827. <column id="1076" parent="371" name="salario">
  4828. <DasType>decimal(8,2 digit)|0s</DasType>
  4829. <NotNull>1</NotNull>
  4830. <Position>3</Position>
  4831. </column>
  4832. <column id="1077" parent="371" name="cargo">
  4833. <DasType>char(2)|0s</DasType>
  4834. <NotNull>1</NotNull>
  4835. <Position>4</Position>
  4836. </column>
  4837. <column id="1078" parent="371" name="observacion">
  4838. <DasType>longtext|0s</DasType>
  4839. <NotNull>1</NotNull>
  4840. <Position>5</Position>
  4841. </column>
  4842. <column id="1079" parent="371" name="tipo">
  4843. <DasType>char(1)|0s</DasType>
  4844. <NotNull>1</NotNull>
  4845. <Position>6</Position>
  4846. </column>
  4847. <column id="1080" parent="372" name="departamento">
  4848. <DasType>char(2)|0s</DasType>
  4849. <NotNull>1</NotNull>
  4850. <Position>1</Position>
  4851. </column>
  4852. <column id="1081" parent="372" name="codigo_empleado">
  4853. <DasType>char(3)|0s</DasType>
  4854. <NotNull>1</NotNull>
  4855. <Position>2</Position>
  4856. </column>
  4857. <column id="1082" parent="372" name="estado_civil">
  4858. <DasType>char(1)|0s</DasType>
  4859. <NotNull>1</NotNull>
  4860. <Position>3</Position>
  4861. </column>
  4862. <column id="1083" parent="372" name="domicilio">
  4863. <DasType>char(25)|0s</DasType>
  4864. <NotNull>1</NotNull>
  4865. <Position>4</Position>
  4866. </column>
  4867. <column id="1084" parent="372" name="direccion">
  4868. <DasType>char(100)|0s</DasType>
  4869. <NotNull>1</NotNull>
  4870. <Position>5</Position>
  4871. </column>
  4872. <column id="1085" parent="372" name="telefono">
  4873. <DasType>char(8)|0s</DasType>
  4874. <NotNull>1</NotNull>
  4875. <Position>6</Position>
  4876. </column>
  4877. <column id="1086" parent="372" name="celular">
  4878. <DasType>char(8)|0s</DasType>
  4879. <NotNull>1</NotNull>
  4880. <Position>7</Position>
  4881. </column>
  4882. <column id="1087" parent="372" name="foto">
  4883. <DasType>char(50)|0s</DasType>
  4884. <NotNull>1</NotNull>
  4885. <Position>8</Position>
  4886. </column>
  4887. <column id="1088" parent="372" name="dui">
  4888. <DasType>char(9)|0s</DasType>
  4889. <NotNull>1</NotNull>
  4890. <Position>9</Position>
  4891. </column>
  4892. <column id="1089" parent="372" name="isss">
  4893. <DasType>char(10)|0s</DasType>
  4894. <NotNull>1</NotNull>
  4895. <Position>10</Position>
  4896. </column>
  4897. <column id="1090" parent="372" name="afp">
  4898. <DasType>char(14)|0s</DasType>
  4899. <NotNull>1</NotNull>
  4900. <Position>11</Position>
  4901. </column>
  4902. <column id="1091" parent="372" name="nit">
  4903. <DasType>char(14)|0s</DasType>
  4904. <NotNull>1</NotNull>
  4905. <Position>12</Position>
  4906. </column>
  4907. <column id="1092" parent="372" name="licencia">
  4908. <DasType>char(1)|0s</DasType>
  4909. <NotNull>1</NotNull>
  4910. <Position>13</Position>
  4911. </column>
  4912. <column id="1093" parent="372" name="tipo_licencia">
  4913. <DasType>char(1)|0s</DasType>
  4914. <NotNull>1</NotNull>
  4915. <Position>14</Position>
  4916. </column>
  4917. <column id="1094" parent="372" name="placas">
  4918. <DasType>char(20)|0s</DasType>
  4919. <NotNull>1</NotNull>
  4920. <Position>15</Position>
  4921. </column>
  4922. <column id="1095" parent="372" name="nivel_academico">
  4923. <DasType>char(40)|0s</DasType>
  4924. <NotNull>1</NotNull>
  4925. <Position>16</Position>
  4926. </column>
  4927. <column id="1096" parent="372" name="emergencia_llamar">
  4928. <DasType>char(50)|0s</DasType>
  4929. <NotNull>1</NotNull>
  4930. <Position>17</Position>
  4931. </column>
  4932. <column id="1097" parent="372" name="emergencia_telefono">
  4933. <DasType>char(20)|0s</DasType>
  4934. <NotNull>1</NotNull>
  4935. <Position>18</Position>
  4936. </column>
  4937. <column id="1098" parent="372" name="completo">
  4938. <DasType>char(1)|0s</DasType>
  4939. <NotNull>1</NotNull>
  4940. <Position>19</Position>
  4941. </column>
  4942. <column id="1099" parent="372" name="nombre_empleado">
  4943. <DasType>char(30)|0s</DasType>
  4944. <NotNull>1</NotNull>
  4945. <Position>20</Position>
  4946. </column>
  4947. <column id="1100" parent="372" name="apellido_empleado">
  4948. <DasType>char(30)|0s</DasType>
  4949. <NotNull>1</NotNull>
  4950. <Position>21</Position>
  4951. </column>
  4952. <column id="1101" parent="373" name="codigo_empleado">
  4953. <DasType>char(3)|0s</DasType>
  4954. <NotNull>1</NotNull>
  4955. <Position>1</Position>
  4956. </column>
  4957. <column id="1102" parent="373" name="estado_civil">
  4958. <DasType>varchar(5)|0s</DasType>
  4959. <NotNull>1</NotNull>
  4960. <Position>2</Position>
  4961. </column>
  4962. <column id="1103" parent="373" name="domicilio">
  4963. <DasType>varchar(25)|0s</DasType>
  4964. <NotNull>1</NotNull>
  4965. <Position>3</Position>
  4966. </column>
  4967. <column id="1104" parent="373" name="direccion">
  4968. <DasType>varchar(100)|0s</DasType>
  4969. <NotNull>1</NotNull>
  4970. <Position>4</Position>
  4971. <CollationName>latin1_bin</CollationName>
  4972. </column>
  4973. <column id="1105" parent="373" name="telefono">
  4974. <DasType>varchar(8)|0s</DasType>
  4975. <NotNull>1</NotNull>
  4976. <Position>5</Position>
  4977. </column>
  4978. <column id="1106" parent="373" name="celular">
  4979. <DasType>varchar(8)|0s</DasType>
  4980. <NotNull>1</NotNull>
  4981. <Position>6</Position>
  4982. <CollationName>latin1_bin</CollationName>
  4983. </column>
  4984. <column id="1107" parent="373" name="foto">
  4985. <DasType>varchar(50)|0s</DasType>
  4986. <NotNull>1</NotNull>
  4987. <Position>7</Position>
  4988. </column>
  4989. <column id="1108" parent="373" name="dui">
  4990. <DasType>varchar(9)|0s</DasType>
  4991. <Position>8</Position>
  4992. </column>
  4993. <column id="1109" parent="373" name="isss">
  4994. <DasType>varchar(10)|0s</DasType>
  4995. <NotNull>1</NotNull>
  4996. <Position>9</Position>
  4997. </column>
  4998. <column id="1110" parent="373" name="afp">
  4999. <DasType>varchar(14)|0s</DasType>
  5000. <NotNull>1</NotNull>
  5001. <Position>10</Position>
  5002. </column>
  5003. <column id="1111" parent="373" name="nit">
  5004. <DasType>varchar(14)|0s</DasType>
  5005. <NotNull>1</NotNull>
  5006. <Position>11</Position>
  5007. </column>
  5008. <column id="1112" parent="373" name="licencia">
  5009. <DasType>varchar(5)|0s</DasType>
  5010. <NotNull>1</NotNull>
  5011. <Position>12</Position>
  5012. </column>
  5013. <column id="1113" parent="373" name="tipo_licencia">
  5014. <DasType>char(1)|0s</DasType>
  5015. <NotNull>1</NotNull>
  5016. <Position>13</Position>
  5017. </column>
  5018. <column id="1114" parent="373" name="placas">
  5019. <DasType>varchar(20)|0s</DasType>
  5020. <NotNull>1</NotNull>
  5021. <Position>14</Position>
  5022. </column>
  5023. <column id="1115" parent="373" name="nivel_academico">
  5024. <DasType>varchar(40)|0s</DasType>
  5025. <NotNull>1</NotNull>
  5026. <Position>15</Position>
  5027. </column>
  5028. <column id="1116" parent="373" name="emergencia_llamar">
  5029. <DasType>varchar(50)|0s</DasType>
  5030. <NotNull>1</NotNull>
  5031. <Position>16</Position>
  5032. </column>
  5033. <column id="1117" parent="373" name="emergencia_telefono">
  5034. <DasType>varchar(20)|0s</DasType>
  5035. <NotNull>1</NotNull>
  5036. <Position>17</Position>
  5037. </column>
  5038. <column id="1118" parent="373" name="completo">
  5039. <DasType>varchar(5)|0s</DasType>
  5040. <NotNull>1</NotNull>
  5041. <Position>18</Position>
  5042. </column>
  5043. <index id="1119" parent="373" name="PRIMARY">
  5044. <ColNames>codigo_empleado</ColNames>
  5045. <Type>btree</Type>
  5046. <Unique>1</Unique>
  5047. </index>
  5048. <key id="1120" parent="373" name="PRIMARY">
  5049. <NameSurrogate>1</NameSurrogate>
  5050. <Primary>1</Primary>
  5051. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  5052. </key>
  5053. <column id="1121" parent="374" name="codigo_empleado">
  5054. <DasType>char(3)|0s</DasType>
  5055. <NotNull>1</NotNull>
  5056. <Position>1</Position>
  5057. </column>
  5058. <column id="1122" parent="374" name="domicilio">
  5059. <DasType>varchar(20)|0s</DasType>
  5060. <Position>2</Position>
  5061. </column>
  5062. <column id="1123" parent="374" name="direccion">
  5063. <DasType>varchar(60)|0s</DasType>
  5064. <Position>3</Position>
  5065. </column>
  5066. <column id="1124" parent="374" name="profesion_oficio">
  5067. <DasType>varchar(30)|0s</DasType>
  5068. <NotNull>1</NotNull>
  5069. <Position>4</Position>
  5070. </column>
  5071. <column id="1125" parent="374" name="dui">
  5072. <DasType>varchar(10)|0s</DasType>
  5073. <Position>5</Position>
  5074. </column>
  5075. <column id="1126" parent="374" name="nit">
  5076. <DasType>varchar(14)|0s</DasType>
  5077. <NotNull>1</NotNull>
  5078. <Position>6</Position>
  5079. </column>
  5080. <column id="1127" parent="374" name="nisss">
  5081. <DasType>varchar(9)|0s</DasType>
  5082. <Position>7</Position>
  5083. </column>
  5084. <column id="1128" parent="374" name="persona_responsable">
  5085. <DasType>varchar(30)|0s</DasType>
  5086. <Position>8</Position>
  5087. </column>
  5088. <column id="1129" parent="374" name="telefono_responsable">
  5089. <DasType>varchar(20)|0s</DasType>
  5090. <Position>9</Position>
  5091. </column>
  5092. <column id="1130" parent="374" name="recomendado_por">
  5093. <DasType>varchar(40)|0s</DasType>
  5094. <Position>10</Position>
  5095. </column>
  5096. <column id="1131" parent="374" name="nivel_educacion">
  5097. <DasType>varchar(30)|0s</DasType>
  5098. <Position>11</Position>
  5099. </column>
  5100. <column id="1132" parent="374" name="foto">
  5101. <DasType>varchar(80)|0s</DasType>
  5102. <Position>12</Position>
  5103. </column>
  5104. <column id="1133" parent="374" name="habilidades">
  5105. <DasType>varchar(150)|0s</DasType>
  5106. <NotNull>1</NotNull>
  5107. <Position>13</Position>
  5108. </column>
  5109. <column id="1134" parent="374" name="licencia">
  5110. <DasType>varchar(1)|0s</DasType>
  5111. <NotNull>1</NotNull>
  5112. <Position>14</Position>
  5113. </column>
  5114. <column id="1135" parent="374" name="tipo_licencia">
  5115. <DasType>char(1)|0s</DasType>
  5116. <Position>15</Position>
  5117. </column>
  5118. <column id="1136" parent="374" name="estado_civil">
  5119. <DasType>varchar(1)|0s</DasType>
  5120. <Position>16</Position>
  5121. </column>
  5122. <column id="1137" parent="374" name="numero_hijos">
  5123. <DasType>char(1)|0s</DasType>
  5124. <Position>17</Position>
  5125. </column>
  5126. <column id="1138" parent="374" name="celular">
  5127. <DasType>varchar(9)|0s</DasType>
  5128. <Position>18</Position>
  5129. </column>
  5130. <column id="1139" parent="374" name="telefono">
  5131. <DasType>varchar(9)|0s</DasType>
  5132. <Position>19</Position>
  5133. </column>
  5134. <column id="1140" parent="374" name="fdui">
  5135. <DasType>varchar(60)|0s</DasType>
  5136. <Position>20</Position>
  5137. </column>
  5138. <index id="1141" parent="374" name="PRIMARY">
  5139. <ColNames>codigo_empleado</ColNames>
  5140. <Type>btree</Type>
  5141. <Unique>1</Unique>
  5142. </index>
  5143. <key id="1142" parent="374" name="PRIMARY">
  5144. <NameSurrogate>1</NameSurrogate>
  5145. <Primary>1</Primary>
  5146. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  5147. </key>
  5148. <column id="1143" parent="375" name="codigo_empleado">
  5149. <DasType>char(3)|0s</DasType>
  5150. <NotNull>1</NotNull>
  5151. <Position>1</Position>
  5152. </column>
  5153. <column id="1144" parent="375" name="fecha">
  5154. <DasType>date|0s</DasType>
  5155. <NotNull>1</NotNull>
  5156. <Position>2</Position>
  5157. </column>
  5158. <column id="1145" parent="375" name="horas_diurnas">
  5159. <DasType>decimal(6,2 digit)|0s</DasType>
  5160. <NotNull>1</NotNull>
  5161. <Position>3</Position>
  5162. </column>
  5163. <column id="1146" parent="375" name="horas_nocturnas">
  5164. <DasType>decimal(6,2 digit)|0s</DasType>
  5165. <NotNull>1</NotNull>
  5166. <Position>4</Position>
  5167. </column>
  5168. <column id="1147" parent="375" name="anticipo">
  5169. <DasType>decimal(7,2 digit)|0s</DasType>
  5170. <NotNull>1</NotNull>
  5171. <Position>5</Position>
  5172. </column>
  5173. <column id="1148" parent="375" name="dias_descuento">
  5174. <DasType>decimal(6,4 digit)|0s</DasType>
  5175. <NotNull>1</NotNull>
  5176. <Position>6</Position>
  5177. </column>
  5178. <column id="1149" parent="375" name="turnos">
  5179. <DasType>decimal(10,2 digit) unsigned|0s</DasType>
  5180. <NotNull>1</NotNull>
  5181. <Position>7</Position>
  5182. </column>
  5183. <column id="1150" parent="375" name="fechaxtra">
  5184. <DasType>date|0s</DasType>
  5185. <Position>8</Position>
  5186. </column>
  5187. <column id="1151" parent="375" name="ID">
  5188. <AutoIncrement>3170</AutoIncrement>
  5189. <DasType>int(10) unsigned|0s</DasType>
  5190. <NotNull>1</NotNull>
  5191. <Position>9</Position>
  5192. </column>
  5193. <index id="1152" parent="375" name="PRIMARY">
  5194. <ColNames>ID</ColNames>
  5195. <Type>btree</Type>
  5196. <Unique>1</Unique>
  5197. </index>
  5198. <key id="1153" parent="375" name="PRIMARY">
  5199. <NameSurrogate>1</NameSurrogate>
  5200. <Primary>1</Primary>
  5201. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  5202. </key>
  5203. <column id="1154" parent="376" name="id">
  5204. <AutoIncrement>25221</AutoIncrement>
  5205. <DasType>int(11)|0s</DasType>
  5206. <NotNull>1</NotNull>
  5207. <Position>1</Position>
  5208. </column>
  5209. <column id="1155" parent="376" name="id_pago">
  5210. <DasType>varchar(45)|0s</DasType>
  5211. <Position>2</Position>
  5212. </column>
  5213. <column id="1156" parent="376" name="emp_cod">
  5214. <DasType>char(3)|0s</DasType>
  5215. <NotNull>1</NotNull>
  5216. <Position>3</Position>
  5217. </column>
  5218. <column id="1157" parent="376" name="inicio_hora">
  5219. <DasType>datetime|0s</DasType>
  5220. <NotNull>1</NotNull>
  5221. <Position>4</Position>
  5222. </column>
  5223. <column id="1158" parent="376" name="fin_hora">
  5224. <DasType>datetime|0s</DasType>
  5225. <NotNull>1</NotNull>
  5226. <Position>5</Position>
  5227. </column>
  5228. <column id="1159" parent="376" name="total_horas">
  5229. <DasType>time|0s</DasType>
  5230. <NotNull>1</NotNull>
  5231. <Position>6</Position>
  5232. </column>
  5233. <column id="1160" parent="376" name="horas_diurnas">
  5234. <DasType>time|0s</DasType>
  5235. <NotNull>1</NotNull>
  5236. <Position>7</Position>
  5237. </column>
  5238. <column id="1161" parent="376" name="horas_nocturnas">
  5239. <DasType>time|0s</DasType>
  5240. <NotNull>1</NotNull>
  5241. <Position>8</Position>
  5242. </column>
  5243. <column id="1162" parent="376" name="fecha">
  5244. <DasType>date|0s</DasType>
  5245. <Position>9</Position>
  5246. </column>
  5247. <column id="1163" parent="376" name="corrido">
  5248. <DasType>tinyint(1)|0s</DasType>
  5249. <Position>10</Position>
  5250. </column>
  5251. <column id="1164" parent="376" name="fecha_ingreso">
  5252. <DasType>date|0s</DasType>
  5253. <Position>11</Position>
  5254. </column>
  5255. <column id="1165" parent="376" name="revisado">
  5256. <DasType>tinyint(1)|0s</DasType>
  5257. <Position>12</Position>
  5258. </column>
  5259. <index id="1166" parent="376" name="PRIMARY">
  5260. <ColNames>id</ColNames>
  5261. <Type>btree</Type>
  5262. <Unique>1</Unique>
  5263. </index>
  5264. <key id="1167" parent="376" name="PRIMARY">
  5265. <NameSurrogate>1</NameSurrogate>
  5266. <Primary>1</Primary>
  5267. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  5268. </key>
  5269. <column id="1168" parent="377" name="codigo_empleado">
  5270. <DasType>char(3)|0s</DasType>
  5271. <NotNull>1</NotNull>
  5272. <Position>1</Position>
  5273. </column>
  5274. <column id="1169" parent="377" name="inicio_hora">
  5275. <DasType>char(8)|0s</DasType>
  5276. <NotNull>1</NotNull>
  5277. <Position>2</Position>
  5278. </column>
  5279. <column id="1170" parent="377" name="fin_hora">
  5280. <DasType>char(8)|0s</DasType>
  5281. <NotNull>1</NotNull>
  5282. <Position>3</Position>
  5283. </column>
  5284. <column id="1171" parent="377" name="total_horas">
  5285. <DasType>char(8)|0s</DasType>
  5286. <NotNull>1</NotNull>
  5287. <Position>4</Position>
  5288. </column>
  5289. <column id="1172" parent="377" name="horas_diurnas">
  5290. <DasType>char(5)|0s</DasType>
  5291. <NotNull>1</NotNull>
  5292. <Position>5</Position>
  5293. </column>
  5294. <column id="1173" parent="377" name="horas_nocturnas">
  5295. <DasType>char(5)|0s</DasType>
  5296. <NotNull>1</NotNull>
  5297. <Position>6</Position>
  5298. </column>
  5299. <column id="1174" parent="377" name="turnos_hechos">
  5300. <DasType>decimal(7,2 digit)|0s</DasType>
  5301. <NotNull>1</NotNull>
  5302. <Position>7</Position>
  5303. </column>
  5304. <column id="1175" parent="377" name="fecha">
  5305. <DasType>date|0s</DasType>
  5306. <Position>8</Position>
  5307. </column>
  5308. <column id="1176" parent="377" name="global_diurnas">
  5309. <DasType>char(8)|0s</DasType>
  5310. <NotNull>1</NotNull>
  5311. <Position>9</Position>
  5312. </column>
  5313. <column id="1177" parent="377" name="global_nocturnas">
  5314. <DasType>char(8)|0s</DasType>
  5315. <NotNull>1</NotNull>
  5316. <Position>10</Position>
  5317. </column>
  5318. <column id="1178" parent="377" name="diurna_min">
  5319. <DasType>decimal(8,3 digit)|0s</DasType>
  5320. <NotNull>1</NotNull>
  5321. <Position>11</Position>
  5322. </column>
  5323. <column id="1179" parent="377" name="turnos_extras">
  5324. <DasType>char(4)|0s</DasType>
  5325. <NotNull>1</NotNull>
  5326. <Position>12</Position>
  5327. </column>
  5328. <column id="1180" parent="377" name="id">
  5329. <AutoIncrement>1</AutoIncrement>
  5330. <DasType>int(11)|0s</DasType>
  5331. <NotNull>1</NotNull>
  5332. <Position>13</Position>
  5333. </column>
  5334. <index id="1181" parent="377" name="PRIMARY">
  5335. <ColNames>id</ColNames>
  5336. <Type>btree</Type>
  5337. <Unique>1</Unique>
  5338. </index>
  5339. <key id="1182" parent="377" name="PRIMARY">
  5340. <NameSurrogate>1</NameSurrogate>
  5341. <Primary>1</Primary>
  5342. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  5343. </key>
  5344. <column id="1183" parent="378" name="emp_cod">
  5345. <DasType>char(3)|0s</DasType>
  5346. <NotNull>1</NotNull>
  5347. <Position>1</Position>
  5348. </column>
  5349. <column id="1184" parent="378" name="inicio_hora">
  5350. <DasType>char(8)|0s</DasType>
  5351. <NotNull>1</NotNull>
  5352. <Position>2</Position>
  5353. </column>
  5354. <column id="1185" parent="378" name="fin_hora">
  5355. <DasType>char(8)|0s</DasType>
  5356. <NotNull>1</NotNull>
  5357. <Position>3</Position>
  5358. </column>
  5359. <column id="1186" parent="378" name="total_horas">
  5360. <DasType>char(8)|0s</DasType>
  5361. <NotNull>1</NotNull>
  5362. <Position>4</Position>
  5363. </column>
  5364. <column id="1187" parent="378" name="horas_diurnas">
  5365. <DasType>char(5)|0s</DasType>
  5366. <NotNull>1</NotNull>
  5367. <Position>5</Position>
  5368. </column>
  5369. <column id="1188" parent="378" name="horas_nocturnas">
  5370. <DasType>char(5)|0s</DasType>
  5371. <NotNull>1</NotNull>
  5372. <Position>6</Position>
  5373. </column>
  5374. <column id="1189" parent="378" name="turnos_hechos">
  5375. <DasType>decimal(7,2 digit)|0s</DasType>
  5376. <NotNull>1</NotNull>
  5377. <Position>7</Position>
  5378. </column>
  5379. <column id="1190" parent="378" name="fecha">
  5380. <DasType>date|0s</DasType>
  5381. <Position>8</Position>
  5382. </column>
  5383. <column id="1191" parent="378" name="global_diurnas">
  5384. <DasType>char(8)|0s</DasType>
  5385. <NotNull>1</NotNull>
  5386. <Position>9</Position>
  5387. </column>
  5388. <column id="1192" parent="378" name="global_nocturnas">
  5389. <DasType>char(8)|0s</DasType>
  5390. <NotNull>1</NotNull>
  5391. <Position>10</Position>
  5392. </column>
  5393. <column id="1193" parent="378" name="diurna_min">
  5394. <DasType>decimal(8,3 digit)|0s</DasType>
  5395. <NotNull>1</NotNull>
  5396. <Position>11</Position>
  5397. </column>
  5398. <column id="1194" parent="378" name="turnos_extras">
  5399. <DasType>char(4)|0s</DasType>
  5400. <NotNull>1</NotNull>
  5401. <Position>12</Position>
  5402. </column>
  5403. <column id="1195" parent="378" name="id">
  5404. <AutoIncrement>14668</AutoIncrement>
  5405. <DasType>int(11)|0s</DasType>
  5406. <NotNull>1</NotNull>
  5407. <Position>13</Position>
  5408. </column>
  5409. <index id="1196" parent="378" name="PRIMARY">
  5410. <ColNames>id</ColNames>
  5411. <Type>btree</Type>
  5412. <Unique>1</Unique>
  5413. </index>
  5414. <key id="1197" parent="378" name="PRIMARY">
  5415. <NameSurrogate>1</NameSurrogate>
  5416. <Primary>1</Primary>
  5417. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  5418. </key>
  5419. <column id="1198" parent="379" name="id">
  5420. <AutoIncrement>405</AutoIncrement>
  5421. <DasType>int(11)|0s</DasType>
  5422. <NotNull>1</NotNull>
  5423. <Position>1</Position>
  5424. </column>
  5425. <column id="1199" parent="379" name="id_pago">
  5426. <DasType>varchar(45)|0s</DasType>
  5427. <Position>2</Position>
  5428. </column>
  5429. <column id="1200" parent="379" name="emp_cod">
  5430. <DasType>char(3)|0s</DasType>
  5431. <NotNull>1</NotNull>
  5432. <Position>3</Position>
  5433. </column>
  5434. <column id="1201" parent="379" name="inicio_hora">
  5435. <DasType>datetime|0s</DasType>
  5436. <NotNull>1</NotNull>
  5437. <Position>4</Position>
  5438. </column>
  5439. <column id="1202" parent="379" name="fin_hora">
  5440. <DasType>datetime|0s</DasType>
  5441. <NotNull>1</NotNull>
  5442. <Position>5</Position>
  5443. </column>
  5444. <column id="1203" parent="379" name="total_horas">
  5445. <DasType>time|0s</DasType>
  5446. <NotNull>1</NotNull>
  5447. <Position>6</Position>
  5448. </column>
  5449. <column id="1204" parent="379" name="horas_diurnas">
  5450. <DasType>time|0s</DasType>
  5451. <NotNull>1</NotNull>
  5452. <Position>7</Position>
  5453. </column>
  5454. <column id="1205" parent="379" name="horas_nocturnas">
  5455. <DasType>time|0s</DasType>
  5456. <NotNull>1</NotNull>
  5457. <Position>8</Position>
  5458. </column>
  5459. <column id="1206" parent="379" name="fecha">
  5460. <DasType>date|0s</DasType>
  5461. <Position>9</Position>
  5462. </column>
  5463. <column id="1207" parent="379" name="fecha_ingreso">
  5464. <DasType>date|0s</DasType>
  5465. <Position>10</Position>
  5466. </column>
  5467. <column id="1208" parent="379" name="autorizado">
  5468. <DasType>tinyint(1)|0s</DasType>
  5469. <Position>11</Position>
  5470. </column>
  5471. <column id="1209" parent="379" name="auditado">
  5472. <DasType>tinyint(1)|0s</DasType>
  5473. <Position>12</Position>
  5474. </column>
  5475. <column id="1210" parent="379" name="aplicado">
  5476. <DasType>tinyint(1)|0s</DasType>
  5477. <Position>13</Position>
  5478. </column>
  5479. <column id="1211" parent="379" name="observacion">
  5480. <DasType>text|0s</DasType>
  5481. <Position>14</Position>
  5482. </column>
  5483. <index id="1212" parent="379" name="PRIMARY">
  5484. <ColNames>id</ColNames>
  5485. <Type>btree</Type>
  5486. <Unique>1</Unique>
  5487. </index>
  5488. <key id="1213" parent="379" name="PRIMARY">
  5489. <NameSurrogate>1</NameSurrogate>
  5490. <Primary>1</Primary>
  5491. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  5492. </key>
  5493. <column id="1214" parent="380" name="partidanum">
  5494. <DasType>char(7)|0s</DasType>
  5495. <NotNull>1</NotNull>
  5496. <Position>1</Position>
  5497. </column>
  5498. <column id="1215" parent="380" name="fechaparti">
  5499. <DasType>date|0s</DasType>
  5500. <NotNull>1</NotNull>
  5501. <Position>2</Position>
  5502. </column>
  5503. <column id="1216" parent="380" name="debeparti">
  5504. <DasType>decimal(12,2 digit)|0s</DasType>
  5505. <NotNull>1</NotNull>
  5506. <Position>3</Position>
  5507. </column>
  5508. <column id="1217" parent="380" name="haberparti">
  5509. <DasType>decimal(12,2 digit)|0s</DasType>
  5510. <NotNull>1</NotNull>
  5511. <Position>4</Position>
  5512. </column>
  5513. <column id="1218" parent="380" name="concepto">
  5514. <DasType>text|0s</DasType>
  5515. <Position>5</Position>
  5516. </column>
  5517. <column id="1219" parent="380" name="fechadigi">
  5518. <DasType>datetime|0s</DasType>
  5519. <NotNull>1</NotNull>
  5520. <Position>6</Position>
  5521. </column>
  5522. <column id="1220" parent="380" name="fechamodi">
  5523. <DasType>datetime|0s</DasType>
  5524. <NotNull>1</NotNull>
  5525. <Position>7</Position>
  5526. </column>
  5527. <column id="1221" parent="380" name="programa">
  5528. <DasType>char(3)|0s</DasType>
  5529. <NotNull>1</NotNull>
  5530. <Position>8</Position>
  5531. </column>
  5532. <column id="1222" parent="380" name="liquidacion">
  5533. <DasType>tinyint(1)|0s</DasType>
  5534. <NotNull>1</NotNull>
  5535. <Position>9</Position>
  5536. </column>
  5537. <index id="1223" parent="380" name="PRIMARY">
  5538. <ColNames>partidanum</ColNames>
  5539. <Type>btree</Type>
  5540. <Unique>1</Unique>
  5541. </index>
  5542. <key id="1224" parent="380" name="PRIMARY">
  5543. <NameSurrogate>1</NameSurrogate>
  5544. <Primary>1</Primary>
  5545. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  5546. </key>
  5547. <column id="1225" parent="381" name="codigo_incapacidad">
  5548. <DasType>char(6)|0s</DasType>
  5549. <NotNull>1</NotNull>
  5550. <Position>1</Position>
  5551. </column>
  5552. <column id="1226" parent="381" name="codigo_empleado">
  5553. <DasType>char(3)|0s</DasType>
  5554. <NotNull>1</NotNull>
  5555. <Position>2</Position>
  5556. </column>
  5557. <column id="1227" parent="381" name="numero_documento">
  5558. <DasType>char(12)|0s</DasType>
  5559. <NotNull>1</NotNull>
  5560. <Position>3</Position>
  5561. </column>
  5562. <column id="1228" parent="381" name="fecha_inicio">
  5563. <DasType>date|0s</DasType>
  5564. <NotNull>1</NotNull>
  5565. <Position>4</Position>
  5566. </column>
  5567. <column id="1229" parent="381" name="fecha_fin">
  5568. <DasType>date|0s</DasType>
  5569. <NotNull>1</NotNull>
  5570. <Position>5</Position>
  5571. </column>
  5572. <column id="1230" parent="381" name="fecha_extension">
  5573. <DasType>date|0s</DasType>
  5574. <NotNull>1</NotNull>
  5575. <Position>6</Position>
  5576. </column>
  5577. <index id="1231" parent="381" name="PRIMARY">
  5578. <ColNames>codigo_incapacidad
  5579. codigo_empleado</ColNames>
  5580. <Type>btree</Type>
  5581. <Unique>1</Unique>
  5582. </index>
  5583. <key id="1232" parent="381" name="PRIMARY">
  5584. <NameSurrogate>1</NameSurrogate>
  5585. <Primary>1</Primary>
  5586. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  5587. </key>
  5588. <column id="1233" parent="382" name="letras">
  5589. <DasType>char(30)|0s</DasType>
  5590. <NotNull>1</NotNull>
  5591. <Position>1</Position>
  5592. </column>
  5593. <column id="1234" parent="383" name="cod_marca">
  5594. <AutoIncrement>70</AutoIncrement>
  5595. <DasType>int(10) unsigned|0s</DasType>
  5596. <NotNull>1</NotNull>
  5597. <Position>1</Position>
  5598. </column>
  5599. <column id="1235" parent="383" name="nombre_marca">
  5600. <DasType>varchar(30)|0s</DasType>
  5601. <NotNull>1</NotNull>
  5602. <Position>2</Position>
  5603. </column>
  5604. <column id="1236" parent="383" name="observacion">
  5605. <DasType>varchar(60)|0s</DasType>
  5606. <NotNull>1</NotNull>
  5607. <Position>3</Position>
  5608. </column>
  5609. <index id="1237" parent="383" name="PRIMARY">
  5610. <ColNames>cod_marca</ColNames>
  5611. <Type>btree</Type>
  5612. <Unique>1</Unique>
  5613. </index>
  5614. <key id="1238" parent="383" name="PRIMARY">
  5615. <NameSurrogate>1</NameSurrogate>
  5616. <Primary>1</Primary>
  5617. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  5618. </key>
  5619. <column id="1239" parent="384" name="id_marcacion">
  5620. <AutoIncrement>8452</AutoIncrement>
  5621. <DasType>int(9)|0s</DasType>
  5622. <NotNull>1</NotNull>
  5623. <Position>1</Position>
  5624. </column>
  5625. <column id="1240" parent="384" name="codigo_empleado">
  5626. <DasType>varchar(3)|0s</DasType>
  5627. <Position>2</Position>
  5628. </column>
  5629. <column id="1241" parent="384" name="hora">
  5630. <DasType>datetime|0s</DasType>
  5631. <Position>3</Position>
  5632. </column>
  5633. <column id="1242" parent="384" name="fecha">
  5634. <DasType>date|0s</DasType>
  5635. <NotNull>1</NotNull>
  5636. <Position>4</Position>
  5637. </column>
  5638. <index id="1243" parent="384" name="PRIMARY">
  5639. <ColNames>id_marcacion</ColNames>
  5640. <Type>btree</Type>
  5641. <Unique>1</Unique>
  5642. </index>
  5643. <key id="1244" parent="384" name="PRIMARY">
  5644. <NameSurrogate>1</NameSurrogate>
  5645. <Primary>1</Primary>
  5646. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  5647. </key>
  5648. <column id="1245" parent="385" name="id_marcacion">
  5649. <AutoIncrement>139182</AutoIncrement>
  5650. <DasType>int(10) unsigned|0s</DasType>
  5651. <NotNull>1</NotNull>
  5652. <Position>1</Position>
  5653. </column>
  5654. <column id="1246" parent="385" name="codigo_empleado">
  5655. <DasType>varchar(3)|0s</DasType>
  5656. <NotNull>1</NotNull>
  5657. <Position>2</Position>
  5658. </column>
  5659. <column id="1247" parent="385" name="hora">
  5660. <DasType>datetime|0s</DasType>
  5661. <NotNull>1</NotNull>
  5662. <Position>3</Position>
  5663. </column>
  5664. <column id="1248" parent="385" name="fecha">
  5665. <DasType>date|0s</DasType>
  5666. <NotNull>1</NotNull>
  5667. <Position>4</Position>
  5668. </column>
  5669. <column id="1249" parent="385" name="tipo">
  5670. <DasType>varchar(1)|0s</DasType>
  5671. <NotNull>1</NotNull>
  5672. <Position>5</Position>
  5673. </column>
  5674. <index id="1250" parent="385" name="PRIMARY">
  5675. <ColNames>id_marcacion</ColNames>
  5676. <Type>btree</Type>
  5677. <Unique>1</Unique>
  5678. </index>
  5679. <key id="1251" parent="385" name="PRIMARY">
  5680. <NameSurrogate>1</NameSurrogate>
  5681. <Primary>1</Primary>
  5682. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  5683. </key>
  5684. <column id="1252" parent="386" name="codigo_territorio">
  5685. <DasType>char(2)|0s</DasType>
  5686. <NotNull>1</NotNull>
  5687. <Position>1</Position>
  5688. </column>
  5689. <column id="1253" parent="386" name="enero">
  5690. <DasType>decimal(12,2 digit)|0s</DasType>
  5691. <NotNull>1</NotNull>
  5692. <Position>2</Position>
  5693. </column>
  5694. <column id="1254" parent="386" name="febrero">
  5695. <DasType>decimal(12,2 digit)|0s</DasType>
  5696. <NotNull>1</NotNull>
  5697. <Position>3</Position>
  5698. </column>
  5699. <column id="1255" parent="386" name="marzo">
  5700. <DasType>decimal(12,2 digit)|0s</DasType>
  5701. <NotNull>1</NotNull>
  5702. <Position>4</Position>
  5703. </column>
  5704. <column id="1256" parent="386" name="abril">
  5705. <DasType>decimal(12,2 digit)|0s</DasType>
  5706. <NotNull>1</NotNull>
  5707. <Position>5</Position>
  5708. </column>
  5709. <column id="1257" parent="386" name="mayo">
  5710. <DasType>decimal(12,2 digit)|0s</DasType>
  5711. <NotNull>1</NotNull>
  5712. <Position>6</Position>
  5713. </column>
  5714. <column id="1258" parent="386" name="junio">
  5715. <DasType>decimal(12,2 digit)|0s</DasType>
  5716. <NotNull>1</NotNull>
  5717. <Position>7</Position>
  5718. </column>
  5719. <column id="1259" parent="386" name="julio">
  5720. <DasType>decimal(12,2 digit)|0s</DasType>
  5721. <NotNull>1</NotNull>
  5722. <Position>8</Position>
  5723. </column>
  5724. <column id="1260" parent="386" name="agosto">
  5725. <DasType>decimal(12,2 digit)|0s</DasType>
  5726. <NotNull>1</NotNull>
  5727. <Position>9</Position>
  5728. </column>
  5729. <column id="1261" parent="386" name="septiembre">
  5730. <DasType>decimal(12,2 digit)|0s</DasType>
  5731. <NotNull>1</NotNull>
  5732. <Position>10</Position>
  5733. </column>
  5734. <column id="1262" parent="386" name="octubre">
  5735. <DasType>decimal(12,2 digit)|0s</DasType>
  5736. <NotNull>1</NotNull>
  5737. <Position>11</Position>
  5738. </column>
  5739. <column id="1263" parent="386" name="noviembre">
  5740. <DasType>decimal(12,2 digit)|0s</DasType>
  5741. <NotNull>1</NotNull>
  5742. <Position>12</Position>
  5743. </column>
  5744. <column id="1264" parent="386" name="diciembre">
  5745. <DasType>decimal(12,2 digit)|0s</DasType>
  5746. <NotNull>1</NotNull>
  5747. <Position>13</Position>
  5748. </column>
  5749. <column id="1265" parent="386" name="total">
  5750. <DasType>decimal(12,11 digit)|0s</DasType>
  5751. <NotNull>1</NotNull>
  5752. <Position>14</Position>
  5753. </column>
  5754. <index id="1266" parent="386" name="PRIMARY">
  5755. <ColNames>codigo_territorio</ColNames>
  5756. <Type>btree</Type>
  5757. <Unique>1</Unique>
  5758. </index>
  5759. <key id="1267" parent="386" name="PRIMARY">
  5760. <NameSurrogate>1</NameSurrogate>
  5761. <Primary>1</Primary>
  5762. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  5763. </key>
  5764. <column id="1268" parent="387" name="codigo_mobiliario">
  5765. <DasType>char(4)|0s</DasType>
  5766. <NotNull>1</NotNull>
  5767. <Position>1</Position>
  5768. </column>
  5769. <column id="1269" parent="387" name="descripcion_mobiliario">
  5770. <DasType>char(40)|0s</DasType>
  5771. <NotNull>1</NotNull>
  5772. <Position>2</Position>
  5773. </column>
  5774. <column id="1270" parent="387" name="tipo_mobiliario">
  5775. <DasType>char(2)|0s</DasType>
  5776. <NotNull>1</NotNull>
  5777. <Position>3</Position>
  5778. </column>
  5779. <column id="1271" parent="387" name="numero_inventario">
  5780. <DasType>char(20)|0s</DasType>
  5781. <NotNull>1</NotNull>
  5782. <Position>4</Position>
  5783. </column>
  5784. <column id="1272" parent="387" name="fecha_compra">
  5785. <DasType>date|0s</DasType>
  5786. <NotNull>1</NotNull>
  5787. <Position>5</Position>
  5788. </column>
  5789. <column id="1273" parent="387" name="fecha_ingreso">
  5790. <DasType>date|0s</DasType>
  5791. <NotNull>1</NotNull>
  5792. <Position>6</Position>
  5793. </column>
  5794. <column id="1274" parent="387" name="sala">
  5795. <DasType>char(45)|0s</DasType>
  5796. <NotNull>1</NotNull>
  5797. <Position>7</Position>
  5798. </column>
  5799. <column id="1275" parent="387" name="proveedor">
  5800. <DasType>char(60)|0s</DasType>
  5801. <NotNull>1</NotNull>
  5802. <Position>8</Position>
  5803. </column>
  5804. <column id="1276" parent="387" name="cuenta">
  5805. <DasType>char(50)|0s</DasType>
  5806. <NotNull>1</NotNull>
  5807. <Position>9</Position>
  5808. </column>
  5809. <column id="1277" parent="387" name="sub_cuenta">
  5810. <DasType>char(45)|0s</DasType>
  5811. <NotNull>1</NotNull>
  5812. <Position>10</Position>
  5813. </column>
  5814. <column id="1278" parent="387" name="propiedad">
  5815. <DasType>char(25)|0s</DasType>
  5816. <NotNull>1</NotNull>
  5817. <Position>11</Position>
  5818. </column>
  5819. <column id="1279" parent="387" name="periodo_vida">
  5820. <DasType>char(5)|0s</DasType>
  5821. <NotNull>1</NotNull>
  5822. <Position>12</Position>
  5823. </column>
  5824. <column id="1280" parent="387" name="usuario">
  5825. <DasType>char(30)|0s</DasType>
  5826. <NotNull>1</NotNull>
  5827. <Position>13</Position>
  5828. </column>
  5829. <column id="1281" parent="387" name="observacion">
  5830. <DasType>char(40)|0s</DasType>
  5831. <NotNull>1</NotNull>
  5832. <Position>14</Position>
  5833. </column>
  5834. <column id="1282" parent="387" name="tel_proveedor">
  5835. <DasType>char(8)|0s</DasType>
  5836. <NotNull>1</NotNull>
  5837. <Position>15</Position>
  5838. </column>
  5839. <column id="1283" parent="387" name="precio">
  5840. <DasType>char(8)|0s</DasType>
  5841. <NotNull>1</NotNull>
  5842. <Position>16</Position>
  5843. </column>
  5844. <column id="1284" parent="387" name="departamento">
  5845. <DasType>char(25)|0s</DasType>
  5846. <NotNull>1</NotNull>
  5847. <Position>17</Position>
  5848. </column>
  5849. <index id="1285" parent="387" name="PRIMARY">
  5850. <ColNames>codigo_mobiliario</ColNames>
  5851. <Type>btree</Type>
  5852. <Unique>1</Unique>
  5853. </index>
  5854. <key id="1286" parent="387" name="PRIMARY">
  5855. <NameSurrogate>1</NameSurrogate>
  5856. <Primary>1</Primary>
  5857. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  5858. </key>
  5859. <column id="1287" parent="388" name="codigo_mobiliario">
  5860. <DasType>int(11)|0s</DasType>
  5861. <NotNull>1</NotNull>
  5862. <Position>1</Position>
  5863. </column>
  5864. <column id="1288" parent="388" name="descripcion_mobiliario">
  5865. <DasType>varchar(95)|0s</DasType>
  5866. <NotNull>1</NotNull>
  5867. <Position>2</Position>
  5868. </column>
  5869. <column id="1289" parent="388" name="tipo_mobiliario">
  5870. <DasType>varchar(25)|0s</DasType>
  5871. <NotNull>1</NotNull>
  5872. <Position>3</Position>
  5873. </column>
  5874. <column id="1290" parent="388" name="fecha_compra">
  5875. <DasType>date|0s</DasType>
  5876. <NotNull>1</NotNull>
  5877. <Position>4</Position>
  5878. </column>
  5879. <column id="1291" parent="388" name="fecha_ingreso">
  5880. <DasType>date|0s</DasType>
  5881. <NotNull>1</NotNull>
  5882. <Position>5</Position>
  5883. </column>
  5884. <column id="1292" parent="388" name="proveedor">
  5885. <DasType>char(60)|0s</DasType>
  5886. <NotNull>1</NotNull>
  5887. <Position>6</Position>
  5888. </column>
  5889. <column id="1293" parent="388" name="marca_mobiliario">
  5890. <DasType>varchar(60)|0s</DasType>
  5891. <NotNull>1</NotNull>
  5892. <Position>7</Position>
  5893. </column>
  5894. <column id="1294" parent="388" name="usuario">
  5895. <DasType>varchar(30)|0s</DasType>
  5896. <NotNull>1</NotNull>
  5897. <Position>8</Position>
  5898. </column>
  5899. <column id="1295" parent="388" name="observacion">
  5900. <DasType>varchar(95)|0s</DasType>
  5901. <Position>9</Position>
  5902. </column>
  5903. <column id="1296" parent="388" name="precio">
  5904. <DasType>decimal(8,2 digit)|0s</DasType>
  5905. <NotNull>1</NotNull>
  5906. <Position>10</Position>
  5907. </column>
  5908. <column id="1297" parent="388" name="departamento">
  5909. <DasType>varchar(25)|0s</DasType>
  5910. <NotNull>1</NotNull>
  5911. <Position>11</Position>
  5912. </column>
  5913. <column id="1298" parent="388" name="codigo_barra">
  5914. <DasType>varchar(13)|0s</DasType>
  5915. <Position>12</Position>
  5916. </column>
  5917. <column id="1299" parent="388" name="estatus">
  5918. <DasType>varchar(1)|0s</DasType>
  5919. <NotNull>1</NotNull>
  5920. <Position>13</Position>
  5921. </column>
  5922. <index id="1300" parent="388" name="PRIMARY">
  5923. <ColNames>codigo_mobiliario</ColNames>
  5924. <Type>btree</Type>
  5925. <Unique>1</Unique>
  5926. </index>
  5927. <key id="1301" parent="388" name="PRIMARY">
  5928. <NameSurrogate>1</NameSurrogate>
  5929. <Primary>1</Primary>
  5930. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  5931. </key>
  5932. <column id="1302" parent="389" name="correlativo">
  5933. <DasType>char(4)|0s</DasType>
  5934. <NotNull>1</NotNull>
  5935. <Position>1</Position>
  5936. </column>
  5937. <column id="1303" parent="389" name="codigo_mobiliario">
  5938. <DasType>char(4)|0s</DasType>
  5939. <NotNull>1</NotNull>
  5940. <Position>2</Position>
  5941. </column>
  5942. <column id="1304" parent="389" name="detalle_movimiento">
  5943. <DasType>char(45)|0s</DasType>
  5944. <NotNull>1</NotNull>
  5945. <Position>3</Position>
  5946. </column>
  5947. <column id="1305" parent="389" name="fecha_movimiento">
  5948. <DasType>date|0s</DasType>
  5949. <Position>4</Position>
  5950. </column>
  5951. <column id="1306" parent="389" name="departamento">
  5952. <DasType>char(2)|0s</DasType>
  5953. <NotNull>1</NotNull>
  5954. <Position>5</Position>
  5955. </column>
  5956. <column id="1307" parent="389" name="usuario">
  5957. <DasType>char(30)|0s</DasType>
  5958. <NotNull>1</NotNull>
  5959. <Position>6</Position>
  5960. </column>
  5961. <column id="1308" parent="389" name="localizacion_final">
  5962. <DasType>char(30)|0s</DasType>
  5963. <NotNull>1</NotNull>
  5964. <Position>7</Position>
  5965. </column>
  5966. <column id="1309" parent="390" name="codigo_empleado">
  5967. <DasType>char(3)|0s</DasType>
  5968. <NotNull>1</NotNull>
  5969. <Position>1</Position>
  5970. </column>
  5971. <column id="1310" parent="390" name="fecha">
  5972. <DasType>date|0s</DasType>
  5973. <Position>2</Position>
  5974. </column>
  5975. <column id="1311" parent="390" name="nuevosalario">
  5976. <DasType>decimal(8,2 digit)|0s</DasType>
  5977. <NotNull>1</NotNull>
  5978. <Position>3</Position>
  5979. </column>
  5980. <column id="1312" parent="390" name="aprobado">
  5981. <DasType>char(1)|0s</DasType>
  5982. <NotNull>1</NotNull>
  5983. <Position>4</Position>
  5984. </column>
  5985. <column id="1313" parent="391" name="codigo_nota">
  5986. <DasType>char(4)|0s</DasType>
  5987. <NotNull>1</NotNull>
  5988. <Position>1</Position>
  5989. </column>
  5990. <column id="1314" parent="391" name="proveedor">
  5991. <DasType>char(4)|0s</DasType>
  5992. <NotNull>1</NotNull>
  5993. <Position>2</Position>
  5994. </column>
  5995. <column id="1315" parent="391" name="factura_numero">
  5996. <DasType>char(10)|0s</DasType>
  5997. <NotNull>1</NotNull>
  5998. <Position>3</Position>
  5999. </column>
  6000. <column id="1316" parent="391" name="monto">
  6001. <DasType>decimal(10,2 digit)|0s</DasType>
  6002. <NotNull>1</NotNull>
  6003. <Position>4</Position>
  6004. </column>
  6005. <column id="1317" parent="391" name="fecha">
  6006. <DasType>date|0s</DasType>
  6007. <Position>5</Position>
  6008. </column>
  6009. <column id="1318" parent="391" name="concepto">
  6010. <DasType>char(60)|0s</DasType>
  6011. <NotNull>1</NotNull>
  6012. <Position>6</Position>
  6013. </column>
  6014. <column id="1319" parent="391" name="mes">
  6015. <DasType>char(10)|0s</DasType>
  6016. <NotNull>1</NotNull>
  6017. <Position>7</Position>
  6018. </column>
  6019. <column id="1320" parent="391" name="generar">
  6020. <DasType>char(1)|0s</DasType>
  6021. <NotNull>1</NotNull>
  6022. <Position>8</Position>
  6023. </column>
  6024. <column id="1321" parent="391" name="procesado">
  6025. <DasType>char(1)|0s</DasType>
  6026. <NotNull>1</NotNull>
  6027. <Position>9</Position>
  6028. </column>
  6029. <column id="1322" parent="391" name="iva">
  6030. <DasType>decimal(8,2 digit)|0s</DasType>
  6031. <Position>10</Position>
  6032. </column>
  6033. <column id="1323" parent="391" name="importacion">
  6034. <DasType>char(1)|0s</DasType>
  6035. <NotNull>1</NotNull>
  6036. <Position>11</Position>
  6037. </column>
  6038. <column id="1324" parent="391" name="partidanum">
  6039. <DasType>char(7)|0s</DasType>
  6040. <NotNull>1</NotNull>
  6041. <Position>12</Position>
  6042. </column>
  6043. <index id="1325" parent="391" name="PRIMARY">
  6044. <ColNames>codigo_nota</ColNames>
  6045. <Type>btree</Type>
  6046. <Unique>1</Unique>
  6047. </index>
  6048. <key id="1326" parent="391" name="PRIMARY">
  6049. <NameSurrogate>1</NameSurrogate>
  6050. <Primary>1</Primary>
  6051. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  6052. </key>
  6053. <column id="1327" parent="392" name="opcion_nombre">
  6054. <DasType>char(30)|0s</DasType>
  6055. <NotNull>1</NotNull>
  6056. <Position>1</Position>
  6057. </column>
  6058. <column id="1328" parent="392" name="opcion_codigo">
  6059. <DasType>char(3)|0s</DasType>
  6060. <NotNull>1</NotNull>
  6061. <Position>2</Position>
  6062. </column>
  6063. <index id="1329" parent="392" name="PRIMARY">
  6064. <ColNames>opcion_codigo</ColNames>
  6065. <Type>btree</Type>
  6066. <Unique>1</Unique>
  6067. </index>
  6068. <key id="1330" parent="392" name="PRIMARY">
  6069. <NameSurrogate>1</NameSurrogate>
  6070. <Primary>1</Primary>
  6071. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  6072. </key>
  6073. <column id="1331" parent="393" name="codigo_orden">
  6074. <DasType>char(6)|0s</DasType>
  6075. <NotNull>1</NotNull>
  6076. <Position>1</Position>
  6077. </column>
  6078. <column id="1332" parent="393" name="empresa">
  6079. <DasType>char(25)|0s</DasType>
  6080. <NotNull>1</NotNull>
  6081. <Position>2</Position>
  6082. </column>
  6083. <column id="1333" parent="393" name="fecha_inicio">
  6084. <DasType>date|0s</DasType>
  6085. <Position>3</Position>
  6086. </column>
  6087. <column id="1334" parent="393" name="fecha_fin">
  6088. <DasType>date|0s</DasType>
  6089. <Position>4</Position>
  6090. </column>
  6091. <column id="1335" parent="393" name="empleado">
  6092. <DasType>char(3)|0s</DasType>
  6093. <NotNull>1</NotNull>
  6094. <Position>5</Position>
  6095. </column>
  6096. <column id="1336" parent="393" name="tipo_descuento">
  6097. <DasType>char(20)|0s</DasType>
  6098. <NotNull>1</NotNull>
  6099. <Position>6</Position>
  6100. </column>
  6101. <column id="1337" parent="393" name="valor">
  6102. <DasType>decimal(9,2 digit)|0s</DasType>
  6103. <NotNull>1</NotNull>
  6104. <Position>7</Position>
  6105. </column>
  6106. <column id="1338" parent="393" name="inactiva">
  6107. <DasType>char(1)|0s</DasType>
  6108. <NotNull>1</NotNull>
  6109. <Position>8</Position>
  6110. </column>
  6111. <index id="1339" parent="393" name="PRIMARY">
  6112. <ColNames>codigo_orden</ColNames>
  6113. <Type>btree</Type>
  6114. <Unique>1</Unique>
  6115. </index>
  6116. <key id="1340" parent="393" name="PRIMARY">
  6117. <NameSurrogate>1</NameSurrogate>
  6118. <Primary>1</Primary>
  6119. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  6120. </key>
  6121. <column id="1341" parent="394" name="nretencion">
  6122. <DasType>char(6)|0s</DasType>
  6123. <NotNull>1</NotNull>
  6124. <Position>1</Position>
  6125. </column>
  6126. <column id="1342" parent="394" name="fecha">
  6127. <DasType>date|0s</DasType>
  6128. <NotNull>1</NotNull>
  6129. <Position>2</Position>
  6130. </column>
  6131. <column id="1343" parent="394" name="proveedor">
  6132. <DasType>char(6)|0s</DasType>
  6133. <NotNull>1</NotNull>
  6134. <Position>3</Position>
  6135. </column>
  6136. <column id="1344" parent="394" name="Monto">
  6137. <DasType>decimal(12,2 digit)|0s</DasType>
  6138. <NotNull>1</NotNull>
  6139. <Position>4</Position>
  6140. </column>
  6141. <column id="1345" parent="394" name="Iva">
  6142. <DasType>decimal(6,2 digit)|0s</DasType>
  6143. <NotNull>1</NotNull>
  6144. <Position>5</Position>
  6145. </column>
  6146. <column id="1346" parent="394" name="Unoxciento">
  6147. <DasType>decimal(5,2 digit)|0s</DasType>
  6148. <NotNull>1</NotNull>
  6149. <Position>6</Position>
  6150. </column>
  6151. <column id="1347" parent="394" name="Total">
  6152. <DasType>decimal(12,2 digit)|0s</DasType>
  6153. <NotNull>1</NotNull>
  6154. <Position>7</Position>
  6155. </column>
  6156. <column id="1348" parent="394" name="mes">
  6157. <DasType>varchar(3)|0s</DasType>
  6158. <NotNull>1</NotNull>
  6159. <Position>8</Position>
  6160. </column>
  6161. <index id="1349" parent="394" name="PRIMARY">
  6162. <ColNames>nretencion
  6163. fecha</ColNames>
  6164. <Type>btree</Type>
  6165. <Unique>1</Unique>
  6166. </index>
  6167. <key id="1350" parent="394" name="PRIMARY">
  6168. <NameSurrogate>1</NameSurrogate>
  6169. <Primary>1</Primary>
  6170. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  6171. </key>
  6172. <column id="1351" parent="395" name="codigo">
  6173. <DasType>varchar(5)|0s</DasType>
  6174. <NotNull>1</NotNull>
  6175. <Position>1</Position>
  6176. </column>
  6177. <column id="1352" parent="395" name="Nombre">
  6178. <DasType>varchar(45)|0s</DasType>
  6179. <NotNull>1</NotNull>
  6180. <Position>2</Position>
  6181. </column>
  6182. <column id="1353" parent="395" name="Apellido">
  6183. <DasType>varchar(45)|0s</DasType>
  6184. <NotNull>1</NotNull>
  6185. <Position>3</Position>
  6186. </column>
  6187. <column id="1354" parent="395" name="NIT">
  6188. <DasType>varchar(45)|0s</DasType>
  6189. <NotNull>1</NotNull>
  6190. <Position>4</Position>
  6191. </column>
  6192. <index id="1355" parent="395" name="PRIMARY">
  6193. <ColNames>codigo</ColNames>
  6194. <Type>btree</Type>
  6195. <Unique>1</Unique>
  6196. </index>
  6197. <key id="1356" parent="395" name="PRIMARY">
  6198. <NameSurrogate>1</NameSurrogate>
  6199. <Primary>1</Primary>
  6200. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  6201. </key>
  6202. <column id="1357" parent="396" name="id">
  6203. <AutoIncrement>205</AutoIncrement>
  6204. <DasType>int(11)|0s</DasType>
  6205. <NotNull>1</NotNull>
  6206. <Position>1</Position>
  6207. </column>
  6208. <column id="1358" parent="396" name="codigo_empleado">
  6209. <DasType>varchar(3)|0s</DasType>
  6210. <Position>2</Position>
  6211. </column>
  6212. <column id="1359" parent="396" name="renta">
  6213. <DasType>decimal(5,2 digit)|0s</DasType>
  6214. <Position>3</Position>
  6215. </column>
  6216. <column id="1360" parent="396" name="isss">
  6217. <DasType>decimal(5,2 digit)|0s</DasType>
  6218. <Position>4</Position>
  6219. </column>
  6220. <column id="1361" parent="396" name="quincena">
  6221. <DasType>int(2)|0s</DasType>
  6222. <Position>5</Position>
  6223. </column>
  6224. <column id="1362" parent="396" name="fecha">
  6225. <DasType>date|0s</DasType>
  6226. <Position>6</Position>
  6227. </column>
  6228. <column id="1363" parent="396" name="sueldo">
  6229. <DasType>decimal(5,2 digit)|0s</DasType>
  6230. <Position>7</Position>
  6231. </column>
  6232. <index id="1364" parent="396" name="PRIMARY">
  6233. <ColNames>id</ColNames>
  6234. <Type>btree</Type>
  6235. <Unique>1</Unique>
  6236. </index>
  6237. <key id="1365" parent="396" name="PRIMARY">
  6238. <NameSurrogate>1</NameSurrogate>
  6239. <Primary>1</Primary>
  6240. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  6241. </key>
  6242. <column id="1366" parent="397" name="id">
  6243. <AutoIncrement>1</AutoIncrement>
  6244. <DasType>int(11)|0s</DasType>
  6245. <NotNull>1</NotNull>
  6246. <Position>1</Position>
  6247. </column>
  6248. <column id="1367" parent="397" name="empleado_codigo">
  6249. <DasType>varchar(4)|0s</DasType>
  6250. <Position>2</Position>
  6251. </column>
  6252. <column id="1368" parent="397" name="fecha_descuento">
  6253. <DasType>date|0s</DasType>
  6254. <Position>3</Position>
  6255. </column>
  6256. <column id="1369" parent="397" name="nombre_descuento">
  6257. <DasType>varchar(100)|0s</DasType>
  6258. <Position>4</Position>
  6259. </column>
  6260. <column id="1370" parent="397" name="descripcion_descuento">
  6261. <DasType>varchar(100)|0s</DasType>
  6262. <Position>5</Position>
  6263. </column>
  6264. <column id="1371" parent="397" name="monto_descuento">
  6265. <DasType>decimal(5,2 digit)|0s</DasType>
  6266. <Position>6</Position>
  6267. </column>
  6268. <index id="1372" parent="397" name="PRIMARY">
  6269. <ColNames>id</ColNames>
  6270. <Type>btree</Type>
  6271. <Unique>1</Unique>
  6272. </index>
  6273. <key id="1373" parent="397" name="PRIMARY">
  6274. <NameSurrogate>1</NameSurrogate>
  6275. <Primary>1</Primary>
  6276. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  6277. </key>
  6278. <column id="1374" parent="398" name="territorio">
  6279. <DasType>char(2)|0s</DasType>
  6280. <NotNull>1</NotNull>
  6281. <Position>1</Position>
  6282. </column>
  6283. <column id="1375" parent="398" name="m01">
  6284. <DasType>decimal(10,2 digit)|0s</DasType>
  6285. <NotNull>1</NotNull>
  6286. <Position>2</Position>
  6287. </column>
  6288. <column id="1376" parent="398" name="m02">
  6289. <DasType>decimal(10,2 digit)|0s</DasType>
  6290. <NotNull>1</NotNull>
  6291. <Position>3</Position>
  6292. </column>
  6293. <column id="1377" parent="398" name="m03">
  6294. <DasType>decimal(10,2 digit)|0s</DasType>
  6295. <NotNull>1</NotNull>
  6296. <Position>4</Position>
  6297. </column>
  6298. <column id="1378" parent="398" name="m04">
  6299. <DasType>decimal(10,2 digit)|0s</DasType>
  6300. <NotNull>1</NotNull>
  6301. <Position>5</Position>
  6302. </column>
  6303. <column id="1379" parent="398" name="m05">
  6304. <DasType>decimal(10,2 digit)|0s</DasType>
  6305. <NotNull>1</NotNull>
  6306. <Position>6</Position>
  6307. </column>
  6308. <column id="1380" parent="398" name="m06">
  6309. <DasType>decimal(10,2 digit)|0s</DasType>
  6310. <NotNull>1</NotNull>
  6311. <Position>7</Position>
  6312. </column>
  6313. <column id="1381" parent="398" name="m07">
  6314. <DasType>decimal(10,2 digit)|0s</DasType>
  6315. <NotNull>1</NotNull>
  6316. <Position>8</Position>
  6317. </column>
  6318. <column id="1382" parent="398" name="m08">
  6319. <DasType>decimal(10,2 digit)|0s</DasType>
  6320. <NotNull>1</NotNull>
  6321. <Position>9</Position>
  6322. </column>
  6323. <column id="1383" parent="398" name="m09">
  6324. <DasType>decimal(10,2 digit)|0s</DasType>
  6325. <NotNull>1</NotNull>
  6326. <Position>10</Position>
  6327. </column>
  6328. <column id="1384" parent="398" name="m10">
  6329. <DasType>decimal(10,2 digit)|0s</DasType>
  6330. <NotNull>1</NotNull>
  6331. <Position>11</Position>
  6332. </column>
  6333. <column id="1385" parent="398" name="m11">
  6334. <DasType>decimal(10,2 digit)|0s</DasType>
  6335. <NotNull>1</NotNull>
  6336. <Position>12</Position>
  6337. </column>
  6338. <column id="1386" parent="398" name="m12">
  6339. <DasType>decimal(10,2 digit)|0s</DasType>
  6340. <NotNull>1</NotNull>
  6341. <Position>13</Position>
  6342. </column>
  6343. <index id="1387" parent="398" name="PRIMARY">
  6344. <ColNames>territorio</ColNames>
  6345. <Type>btree</Type>
  6346. <Unique>1</Unique>
  6347. </index>
  6348. <key id="1388" parent="398" name="PRIMARY">
  6349. <NameSurrogate>1</NameSurrogate>
  6350. <Primary>1</Primary>
  6351. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  6352. </key>
  6353. <column id="1389" parent="399" name="emp_cod">
  6354. <DasType>char(4)|0s</DasType>
  6355. <NotNull>1</NotNull>
  6356. <Position>1</Position>
  6357. </column>
  6358. <column id="1390" parent="399" name="pago_turno">
  6359. <DasType>decimal(8,3 digit)|0s</DasType>
  6360. <NotNull>1</NotNull>
  6361. <Position>2</Position>
  6362. </column>
  6363. <column id="1391" parent="399" name="pago_diurno">
  6364. <DasType>decimal(8,3 digit)|0s</DasType>
  6365. <NotNull>1</NotNull>
  6366. <Position>3</Position>
  6367. </column>
  6368. <column id="1392" parent="399" name="pago_minutos">
  6369. <DasType>decimal(8,3 digit)|0s</DasType>
  6370. <NotNull>1</NotNull>
  6371. <Position>4</Position>
  6372. </column>
  6373. <column id="1393" parent="399" name="pago_nocturno">
  6374. <DasType>decimal(8,3 digit)|0s</DasType>
  6375. <NotNull>1</NotNull>
  6376. <Position>5</Position>
  6377. </column>
  6378. <column id="1394" parent="399" name="sub_total">
  6379. <DasType>decimal(8,2 digit)|0s</DasType>
  6380. <NotNull>1</NotNull>
  6381. <Position>6</Position>
  6382. </column>
  6383. <column id="1395" parent="399" name="renta">
  6384. <DasType>decimal(8,2 digit)|0s</DasType>
  6385. <NotNull>1</NotNull>
  6386. <Position>7</Position>
  6387. </column>
  6388. <column id="1396" parent="399" name="total_pago">
  6389. <DasType>decimal(8,2 digit)|0s</DasType>
  6390. <NotNull>1</NotNull>
  6391. <Position>8</Position>
  6392. </column>
  6393. <column id="1397" parent="399" name="fecha">
  6394. <DasType>date|0s</DasType>
  6395. <NotNull>1</NotNull>
  6396. <Position>9</Position>
  6397. </column>
  6398. <column id="1398" parent="399" name="autorizado">
  6399. <DasType>tinyint(1)|0s</DasType>
  6400. <Position>10</Position>
  6401. </column>
  6402. <column id="1399" parent="399" name="pagado">
  6403. <DasType>tinyint(1)|0s</DasType>
  6404. <Position>11</Position>
  6405. </column>
  6406. <column id="1400" parent="399" name="id_de_pago">
  6407. <DasType>varchar(45)|0s</DasType>
  6408. <Position>12</Position>
  6409. </column>
  6410. <column id="1401" parent="399" name="sucursal">
  6411. <DasType>varchar(2)|0s</DasType>
  6412. <Position>13</Position>
  6413. </column>
  6414. <index id="1402" parent="399" name="PRIMARY">
  6415. <ColNames>pago_diurno
  6416. emp_cod
  6417. fecha</ColNames>
  6418. <Type>btree</Type>
  6419. <Unique>1</Unique>
  6420. </index>
  6421. <key id="1403" parent="399" name="PRIMARY">
  6422. <NameSurrogate>1</NameSurrogate>
  6423. <Primary>1</Primary>
  6424. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  6425. </key>
  6426. <column id="1404" parent="400" name="id">
  6427. <AutoIncrement>1</AutoIncrement>
  6428. <DasType>int(11) unsigned|0s</DasType>
  6429. <NotNull>1</NotNull>
  6430. <Position>1</Position>
  6431. </column>
  6432. <column id="1405" parent="400" name="emp_cod">
  6433. <DasType>char(4)|0s</DasType>
  6434. <NotNull>1</NotNull>
  6435. <Position>2</Position>
  6436. </column>
  6437. <column id="1406" parent="400" name="pago_turno">
  6438. <DasType>decimal(8,3 digit)|0s</DasType>
  6439. <NotNull>1</NotNull>
  6440. <Position>3</Position>
  6441. </column>
  6442. <column id="1407" parent="400" name="pago_diurno">
  6443. <DasType>decimal(8,3 digit)|0s</DasType>
  6444. <NotNull>1</NotNull>
  6445. <Position>4</Position>
  6446. </column>
  6447. <column id="1408" parent="400" name="pago_minutos">
  6448. <DasType>decimal(8,3 digit)|0s</DasType>
  6449. <NotNull>1</NotNull>
  6450. <Position>5</Position>
  6451. </column>
  6452. <column id="1409" parent="400" name="pago_nocturno">
  6453. <DasType>decimal(8,3 digit)|0s</DasType>
  6454. <NotNull>1</NotNull>
  6455. <Position>6</Position>
  6456. </column>
  6457. <column id="1410" parent="400" name="sub_total">
  6458. <DasType>decimal(8,2 digit)|0s</DasType>
  6459. <NotNull>1</NotNull>
  6460. <Position>7</Position>
  6461. </column>
  6462. <column id="1411" parent="400" name="renta">
  6463. <DasType>decimal(8,2 digit)|0s</DasType>
  6464. <NotNull>1</NotNull>
  6465. <Position>8</Position>
  6466. </column>
  6467. <column id="1412" parent="400" name="total_pago">
  6468. <DasType>decimal(8,2 digit)|0s</DasType>
  6469. <NotNull>1</NotNull>
  6470. <Position>9</Position>
  6471. </column>
  6472. <column id="1413" parent="400" name="fecha">
  6473. <DasType>date|0s</DasType>
  6474. <NotNull>1</NotNull>
  6475. <Position>10</Position>
  6476. </column>
  6477. <column id="1414" parent="400" name="autorizado">
  6478. <DasType>tinyint(1)|0s</DasType>
  6479. <Position>11</Position>
  6480. </column>
  6481. <column id="1415" parent="400" name="pagado">
  6482. <DasType>tinyint(1)|0s</DasType>
  6483. <Position>12</Position>
  6484. </column>
  6485. <index id="1416" parent="400" name="PRIMARY">
  6486. <ColNames>id</ColNames>
  6487. <Type>btree</Type>
  6488. <Unique>1</Unique>
  6489. </index>
  6490. <key id="1417" parent="400" name="PRIMARY">
  6491. <NameSurrogate>1</NameSurrogate>
  6492. <Primary>1</Primary>
  6493. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  6494. </key>
  6495. <column id="1418" parent="401" name="codigo_pago">
  6496. <DasType>char(6)|0s</DasType>
  6497. <NotNull>1</NotNull>
  6498. <Position>1</Position>
  6499. </column>
  6500. <column id="1419" parent="401" name="numero_cheque">
  6501. <DasType>char(9)|0s</DasType>
  6502. <NotNull>1</NotNull>
  6503. <Position>2</Position>
  6504. </column>
  6505. <column id="1420" parent="401" name="fecha_pago">
  6506. <DasType>date|0s</DasType>
  6507. <NotNull>1</NotNull>
  6508. <Position>3</Position>
  6509. </column>
  6510. <column id="1421" parent="401" name="factura_pago">
  6511. <DasType>decimal(9,2 digit)|0s</DasType>
  6512. <NotNull>1</NotNull>
  6513. <Position>4</Position>
  6514. </column>
  6515. <column id="1422" parent="401" name="factura_numero">
  6516. <DasType>char(16)|0s</DasType>
  6517. <NotNull>1</NotNull>
  6518. <Position>5</Position>
  6519. </column>
  6520. <column id="1423" parent="401" name="codigo_proveedor">
  6521. <DasType>char(4)|0s</DasType>
  6522. <NotNull>1</NotNull>
  6523. <Position>6</Position>
  6524. </column>
  6525. <column id="1424" parent="401" name="factura_fecha">
  6526. <DasType>date|0s</DasType>
  6527. <NotNull>1</NotNull>
  6528. <Position>7</Position>
  6529. </column>
  6530. <column id="1425" parent="401" name="cuenta_banco">
  6531. <DasType>char(2)|0s</DasType>
  6532. <NotNull>1</NotNull>
  6533. <Position>8</Position>
  6534. </column>
  6535. <column id="1426" parent="401" name="monto_cheque">
  6536. <DasType>decimal(9,2 digit)|0s</DasType>
  6537. <NotNull>1</NotNull>
  6538. <Position>9</Position>
  6539. </column>
  6540. <column id="1427" parent="402" name="partidanum">
  6541. <DasType>char(7)|0s</DasType>
  6542. <NotNull>1</NotNull>
  6543. <Position>1</Position>
  6544. </column>
  6545. <column id="1428" parent="402" name="fechaparti">
  6546. <DasType>date|0s</DasType>
  6547. <Position>2</Position>
  6548. </column>
  6549. <column id="1429" parent="402" name="debeparti">
  6550. <DasType>decimal(12,2 digit)|0s</DasType>
  6551. <NotNull>1</NotNull>
  6552. <Position>3</Position>
  6553. </column>
  6554. <column id="1430" parent="402" name="haberparti">
  6555. <DasType>decimal(12,2 digit)|0s</DasType>
  6556. <NotNull>1</NotNull>
  6557. <Position>4</Position>
  6558. </column>
  6559. <column id="1431" parent="402" name="concepto">
  6560. <DasType>varchar(1000)|0s</DasType>
  6561. <Position>5</Position>
  6562. </column>
  6563. <column id="1432" parent="402" name="fechadigi">
  6564. <DasType>datetime|0s</DasType>
  6565. <Position>6</Position>
  6566. </column>
  6567. <column id="1433" parent="402" name="fechamodi">
  6568. <DasType>datetime|0s</DasType>
  6569. <Position>7</Position>
  6570. </column>
  6571. <column id="1434" parent="402" name="programa">
  6572. <DasType>char(3)|0s</DasType>
  6573. <NotNull>1</NotNull>
  6574. <Position>8</Position>
  6575. </column>
  6576. <column id="1435" parent="402" name="liquidacion">
  6577. <DasType>tinyint(1)|0s</DasType>
  6578. <DefaultExpression>0</DefaultExpression>
  6579. <Position>9</Position>
  6580. </column>
  6581. <index id="1436" parent="402" name="PRIMARY">
  6582. <ColNames>partidanum</ColNames>
  6583. <Type>btree</Type>
  6584. <Unique>1</Unique>
  6585. </index>
  6586. <key id="1437" parent="402" name="PRIMARY">
  6587. <NameSurrogate>1</NameSurrogate>
  6588. <Primary>1</Primary>
  6589. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  6590. </key>
  6591. <column id="1438" parent="403" name="cuenta_mayor">
  6592. <DasType>char(10)|0s</DasType>
  6593. <NotNull>1</NotNull>
  6594. <Position>1</Position>
  6595. </column>
  6596. <column id="1439" parent="403" name="fecha">
  6597. <DasType>date|0s</DasType>
  6598. <Position>2</Position>
  6599. </column>
  6600. <column id="1440" parent="403" name="suma_partida">
  6601. <DasType>char(10)|0s</DasType>
  6602. <NotNull>1</NotNull>
  6603. <Position>3</Position>
  6604. </column>
  6605. <column id="1441" parent="404" name="codigo_empleado">
  6606. <DasType>char(3)|0s</DasType>
  6607. <NotNull>1</NotNull>
  6608. <Position>1</Position>
  6609. </column>
  6610. <column id="1442" parent="404" name="tipo_permiso">
  6611. <DasType>char(1)|0s</DasType>
  6612. <NotNull>1</NotNull>
  6613. <Position>2</Position>
  6614. </column>
  6615. <column id="1443" parent="404" name="fecha_permiso">
  6616. <DasType>date|0s</DasType>
  6617. <Position>3</Position>
  6618. </column>
  6619. <column id="1444" parent="404" name="observacion_permiso">
  6620. <DasType>longtext|0s</DasType>
  6621. <NotNull>1</NotNull>
  6622. <Position>4</Position>
  6623. </column>
  6624. <column id="1445" parent="404" name="fecha_fin">
  6625. <DasType>date|0s</DasType>
  6626. <Position>5</Position>
  6627. </column>
  6628. <column id="1446" parent="404" name="id">
  6629. <AutoIncrement>210</AutoIncrement>
  6630. <DasType>int(11)|0s</DasType>
  6631. <NotNull>1</NotNull>
  6632. <Position>6</Position>
  6633. </column>
  6634. <index id="1447" parent="404" name="PRIMARY">
  6635. <ColNames>id</ColNames>
  6636. <Type>btree</Type>
  6637. <Unique>1</Unique>
  6638. </index>
  6639. <key id="1448" parent="404" name="PRIMARY">
  6640. <NameSurrogate>1</NameSurrogate>
  6641. <Primary>1</Primary>
  6642. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  6643. </key>
  6644. <column id="1449" parent="405" name="opcion_codigo">
  6645. <DasType>char(3)|0s</DasType>
  6646. <NotNull>1</NotNull>
  6647. <Position>1</Position>
  6648. </column>
  6649. <column id="1450" parent="405" name="usuario_codigo">
  6650. <DasType>char(3)|0s</DasType>
  6651. <NotNull>1</NotNull>
  6652. <Position>2</Position>
  6653. </column>
  6654. <column id="1451" parent="405" name="permiso_usuario">
  6655. <DasType>char(1)|0s</DasType>
  6656. <NotNull>1</NotNull>
  6657. <Position>3</Position>
  6658. </column>
  6659. <column id="1452" parent="405" name="nivel_usuario">
  6660. <DasType>char(1)|0s</DasType>
  6661. <NotNull>1</NotNull>
  6662. <Position>4</Position>
  6663. </column>
  6664. <column id="1453" parent="405" name="id">
  6665. <AutoIncrement>1752</AutoIncrement>
  6666. <DasType>int(10) unsigned|0s</DasType>
  6667. <NotNull>1</NotNull>
  6668. <Position>5</Position>
  6669. </column>
  6670. <index id="1454" parent="405" name="PRIMARY">
  6671. <ColNames>id</ColNames>
  6672. <Type>btree</Type>
  6673. <Unique>1</Unique>
  6674. </index>
  6675. <key id="1455" parent="405" name="PRIMARY">
  6676. <NameSurrogate>1</NameSurrogate>
  6677. <Primary>1</Primary>
  6678. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  6679. </key>
  6680. <column id="1456" parent="406" name="codigo_empleado">
  6681. <DasType>char(3)|0s</DasType>
  6682. <NotNull>1</NotNull>
  6683. <Position>1</Position>
  6684. </column>
  6685. <column id="1457" parent="406" name="fecha">
  6686. <DasType>date|0s</DasType>
  6687. <NotNull>1</NotNull>
  6688. <Position>2</Position>
  6689. </column>
  6690. <column id="1458" parent="406" name="duracion">
  6691. <DasType>char(30)|0s</DasType>
  6692. <NotNull>1</NotNull>
  6693. <Position>3</Position>
  6694. </column>
  6695. <column id="1459" parent="406" name="nota">
  6696. <DasType>char(200)|0s</DasType>
  6697. <NotNull>1</NotNull>
  6698. <Position>4</Position>
  6699. </column>
  6700. <column id="1460" parent="406" name="usuario">
  6701. <DasType>char(3)|0s</DasType>
  6702. <NotNull>1</NotNull>
  6703. <Position>5</Position>
  6704. </column>
  6705. <column id="1461" parent="406" name="otorgado_por">
  6706. <DasType>char(30)|0s</DasType>
  6707. <NotNull>1</NotNull>
  6708. <Position>6</Position>
  6709. </column>
  6710. <column id="1462" parent="406" name="tipo">
  6711. <DasType>char(15)|0s</DasType>
  6712. <NotNull>1</NotNull>
  6713. <Position>7</Position>
  6714. </column>
  6715. <index id="1463" parent="406" name="PRIMARY">
  6716. <ColNames>codigo_empleado
  6717. fecha
  6718. duracion
  6719. nota</ColNames>
  6720. <Type>btree</Type>
  6721. <Unique>1</Unique>
  6722. </index>
  6723. <key id="1464" parent="406" name="PRIMARY">
  6724. <NameSurrogate>1</NameSurrogate>
  6725. <Primary>1</Primary>
  6726. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  6727. </key>
  6728. <column id="1465" parent="407" name="idpermisosempleados">
  6729. <AutoIncrement>1</AutoIncrement>
  6730. <DasType>int(5)|0s</DasType>
  6731. <NotNull>1</NotNull>
  6732. <Position>1</Position>
  6733. </column>
  6734. <column id="1466" parent="407" name="observaciones">
  6735. <DasType>varchar(200)|0s</DasType>
  6736. <Position>2</Position>
  6737. </column>
  6738. <column id="1467" parent="407" name="fechapermiso">
  6739. <DasType>date|0s</DasType>
  6740. <Position>3</Position>
  6741. </column>
  6742. <column id="1468" parent="407" name="fecha">
  6743. <DasType>date|0s</DasType>
  6744. <Position>4</Position>
  6745. </column>
  6746. <column id="1469" parent="407" name="duracion">
  6747. <DasType>varchar(30)|0s</DasType>
  6748. <Position>5</Position>
  6749. </column>
  6750. <column id="1470" parent="407" name="otorgadopor">
  6751. <DasType>varchar(30)|0s</DasType>
  6752. <Position>6</Position>
  6753. </column>
  6754. <column id="1471" parent="407" name="horasalida">
  6755. <DasType>datetime|0s</DasType>
  6756. <Position>7</Position>
  6757. </column>
  6758. <column id="1472" parent="407" name="horaregreso">
  6759. <DasType>datetime|0s</DasType>
  6760. <Position>8</Position>
  6761. </column>
  6762. <column id="1473" parent="407" name="tipo">
  6763. <DasType>varchar(15)|0s</DasType>
  6764. <Position>9</Position>
  6765. </column>
  6766. <column id="1474" parent="407" name="usuario_codigo">
  6767. <DasType>char(3)|0s</DasType>
  6768. <Position>10</Position>
  6769. </column>
  6770. <column id="1475" parent="407" name="codigo_empleado">
  6771. <DasType>varchar(3)|0s</DasType>
  6772. <Position>11</Position>
  6773. </column>
  6774. <index id="1476" parent="407" name="PRIMARY">
  6775. <ColNames>idpermisosempleados</ColNames>
  6776. <Type>btree</Type>
  6777. <Unique>1</Unique>
  6778. </index>
  6779. <key id="1477" parent="407" name="PRIMARY">
  6780. <NameSurrogate>1</NameSurrogate>
  6781. <Primary>1</Primary>
  6782. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  6783. </key>
  6784. <column id="1478" parent="408" name="codigo_empleado">
  6785. <DasType>varchar(3)|0s</DasType>
  6786. <NotNull>1</NotNull>
  6787. <Position>1</Position>
  6788. </column>
  6789. <column id="1479" parent="408" name="codigo_anterior">
  6790. <DasType>varchar(3)|0s</DasType>
  6791. <Position>2</Position>
  6792. </column>
  6793. <column id="1480" parent="408" name="nombre_empleado">
  6794. <DasType>varchar(45)|0s</DasType>
  6795. <NotNull>1</NotNull>
  6796. <Position>3</Position>
  6797. </column>
  6798. <column id="1481" parent="408" name="apellido_empleado">
  6799. <DasType>varchar(45)|0s</DasType>
  6800. <NotNull>1</NotNull>
  6801. <Position>4</Position>
  6802. </column>
  6803. <column id="1482" parent="408" name="sueldo_mensual">
  6804. <DasType>decimal(6,2 digit)|0s</DasType>
  6805. <Position>5</Position>
  6806. </column>
  6807. <column id="1483" parent="408" name="cargo_contrato">
  6808. <DasType>varchar(2)|0s</DasType>
  6809. <Position>6</Position>
  6810. </column>
  6811. <column id="1484" parent="408" name="fecha_ingreso">
  6812. <DasType>date|0s</DasType>
  6813. <Position>7</Position>
  6814. </column>
  6815. <column id="1485" parent="408" name="fecha_ncontrato">
  6816. <DasType>date|0s</DasType>
  6817. <Position>8</Position>
  6818. </column>
  6819. <column id="1486" parent="408" name="fecha_nacimiento">
  6820. <DasType>date|0s</DasType>
  6821. <Position>9</Position>
  6822. </column>
  6823. <column id="1487" parent="408" name="sucursal_codigo">
  6824. <DasType>varchar(2)|0s</DasType>
  6825. <Position>10</Position>
  6826. </column>
  6827. <column id="1488" parent="408" name="consultor">
  6828. <DasType>varchar(6)|0s</DasType>
  6829. <Position>11</Position>
  6830. </column>
  6831. <column id="1489" parent="408" name="tipo_pension">
  6832. <DasType>varchar(11)|0s</DasType>
  6833. <Position>12</Position>
  6834. </column>
  6835. <column id="1490" parent="408" name="departamento">
  6836. <DasType>varchar(2)|0s</DasType>
  6837. <Position>13</Position>
  6838. </column>
  6839. <column id="1491" parent="408" name="cuenta">
  6840. <DasType>varchar(50)|0s</DasType>
  6841. <Position>14</Position>
  6842. </column>
  6843. <column id="1492" parent="408" name="inactivo">
  6844. <DasType>tinyint(3) unsigned|0s</DasType>
  6845. <Position>15</Position>
  6846. </column>
  6847. <column id="1493" parent="408" name="profesion">
  6848. <DasType>varchar(50)|0s</DasType>
  6849. <Position>16</Position>
  6850. </column>
  6851. <column id="1494" parent="408" name="sexo">
  6852. <DasType>tinyint(1)|0s</DasType>
  6853. <Position>17</Position>
  6854. </column>
  6855. <column id="1495" parent="408" name="residencia">
  6856. <DasType>varchar(25)|0s</DasType>
  6857. <Position>18</Position>
  6858. </column>
  6859. <column id="1496" parent="408" name="nacionalidad">
  6860. <DasType>varchar(25)|0s</DasType>
  6861. <Position>19</Position>
  6862. </column>
  6863. <column id="1497" parent="408" name="expedicion_dui">
  6864. <DasType>varchar(25)|0s</DasType>
  6865. <Position>20</Position>
  6866. </column>
  6867. <column id="1498" parent="408" name="fecha_dui">
  6868. <DasType>date|0s</DasType>
  6869. <Position>21</Position>
  6870. </column>
  6871. <column id="1499" parent="408" name="tipo_pago">
  6872. <DasType>int(2)|0s</DasType>
  6873. <Position>22</Position>
  6874. </column>
  6875. <column id="1500" parent="408" name="otras_estipulaciones">
  6876. <DasType>longtext|0s</DasType>
  6877. <Position>23</Position>
  6878. </column>
  6879. <column id="1501" parent="408" name="fecha_contrato">
  6880. <DasType>date|0s</DasType>
  6881. <Position>24</Position>
  6882. </column>
  6883. <column id="1502" parent="408" name="otros_datos_identificacion">
  6884. <DasType>longtext|0s</DasType>
  6885. <Position>25</Position>
  6886. </column>
  6887. <column id="1503" parent="408" name="observacion_duracion">
  6888. <DasType>varchar(45)|0s</DasType>
  6889. <Position>26</Position>
  6890. <CollationName>latin1_bin</CollationName>
  6891. </column>
  6892. <column id="1504" parent="408" name="fecha_inicio">
  6893. <DasType>date|0s</DasType>
  6894. <Position>27</Position>
  6895. </column>
  6896. <column id="1505" parent="408" name="duracion_contrato">
  6897. <DasType>varchar(30)|0s</DasType>
  6898. <Position>28</Position>
  6899. </column>
  6900. <column id="1506" parent="408" name="salario">
  6901. <DasType>decimal(6,2 digit)|0s</DasType>
  6902. <Position>29</Position>
  6903. </column>
  6904. <column id="1507" parent="408" name="estado_civil_contrato">
  6905. <DasType>varchar(30)|0s</DasType>
  6906. <Position>30</Position>
  6907. </column>
  6908. <column id="1508" parent="408" name="estado_civil">
  6909. <DasType>varchar(50)|0s</DasType>
  6910. <Position>31</Position>
  6911. </column>
  6912. <column id="1509" parent="408" name="domicilio">
  6913. <DasType>varchar(45)|0s</DasType>
  6914. <Position>32</Position>
  6915. </column>
  6916. <column id="1510" parent="408" name="direccion">
  6917. <DasType>longtext|0s</DasType>
  6918. <Position>33</Position>
  6919. </column>
  6920. <column id="1511" parent="408" name="telefonos">
  6921. <DasType>varchar(50)|0s</DasType>
  6922. <Position>34</Position>
  6923. </column>
  6924. <column id="1512" parent="408" name="celular">
  6925. <DasType>varchar(8)|0s</DasType>
  6926. <Position>35</Position>
  6927. </column>
  6928. <column id="1513" parent="408" name="correo">
  6929. <DasType>varchar(100)|0s</DasType>
  6930. <Position>36</Position>
  6931. </column>
  6932. <column id="1514" parent="408" name="foto">
  6933. <DasType>varchar(50)|0s</DasType>
  6934. <Position>37</Position>
  6935. </column>
  6936. <column id="1515" parent="408" name="dui">
  6937. <DasType>varchar(9)|0s</DasType>
  6938. <Position>38</Position>
  6939. </column>
  6940. <column id="1516" parent="408" name="nit">
  6941. <DasType>varchar(14)|0s</DasType>
  6942. <Position>39</Position>
  6943. </column>
  6944. <column id="1517" parent="408" name="isss">
  6945. <DasType>varchar(10)|0s</DasType>
  6946. <Position>40</Position>
  6947. </column>
  6948. <column id="1518" parent="408" name="afp">
  6949. <DasType>varchar(14)|0s</DasType>
  6950. <Position>41</Position>
  6951. </column>
  6952. <column id="1519" parent="408" name="licencia">
  6953. <DasType>tinyint(1) unsigned|0s</DasType>
  6954. <Position>42</Position>
  6955. </column>
  6956. <column id="1520" parent="408" name="tipo_licencia">
  6957. <DasType>varchar(50)|0s</DasType>
  6958. <Position>43</Position>
  6959. </column>
  6960. <column id="1521" parent="408" name="placas">
  6961. <DasType>varchar(20)|0s</DasType>
  6962. <Position>44</Position>
  6963. </column>
  6964. <column id="1522" parent="408" name="nivel_academico">
  6965. <DasType>varchar(40)|0s</DasType>
  6966. <Position>45</Position>
  6967. </column>
  6968. <column id="1523" parent="408" name="emergencia_llamar">
  6969. <DasType>varchar(50)|0s</DasType>
  6970. <Position>46</Position>
  6971. </column>
  6972. <column id="1524" parent="408" name="emergencia_telefono">
  6973. <DasType>varchar(20)|0s</DasType>
  6974. <Position>47</Position>
  6975. </column>
  6976. <column id="1525" parent="408" name="completo">
  6977. <DasType>varchar(5)|0s</DasType>
  6978. <Position>48</Position>
  6979. </column>
  6980. <column id="1526" parent="408" name="cargo_actual">
  6981. <DasType>varchar(20)|0s</DasType>
  6982. <Position>49</Position>
  6983. </column>
  6984. <column id="1527" parent="408" name="fijo">
  6985. <DasType>tinyint(1)|0s</DasType>
  6986. <DefaultExpression>0</DefaultExpression>
  6987. <Position>50</Position>
  6988. </column>
  6989. <index id="1528" parent="408" name="PRIMARY">
  6990. <ColNames>codigo_empleado</ColNames>
  6991. <Type>btree</Type>
  6992. <Unique>1</Unique>
  6993. </index>
  6994. <key id="1529" parent="408" name="PRIMARY">
  6995. <NameSurrogate>1</NameSurrogate>
  6996. <Primary>1</Primary>
  6997. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  6998. </key>
  6999. <column id="1530" parent="409" name="codigo_usuario">
  7000. <DasType>varchar(3)|0s</DasType>
  7001. <NotNull>1</NotNull>
  7002. <Position>1</Position>
  7003. </column>
  7004. <column id="1531" parent="409" name="empleado_codigo">
  7005. <DasType>varchar(200)|0s</DasType>
  7006. <NotNull>1</NotNull>
  7007. <Position>2</Position>
  7008. </column>
  7009. <column id="1532" parent="409" name="departamento">
  7010. <DasType>varchar(100)|0s</DasType>
  7011. <Position>3</Position>
  7012. </column>
  7013. <column id="1533" parent="409" name="idf">
  7014. <DasType>int(11)|0s</DasType>
  7015. <Position>4</Position>
  7016. </column>
  7017. <index id="1534" parent="409" name="PRIMARY">
  7018. <ColNames>codigo_usuario
  7019. empleado_codigo</ColNames>
  7020. <Type>btree</Type>
  7021. <Unique>1</Unique>
  7022. </index>
  7023. <key id="1535" parent="409" name="PRIMARY">
  7024. <NameSurrogate>1</NameSurrogate>
  7025. <Primary>1</Primary>
  7026. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  7027. </key>
  7028. <column id="1536" parent="410" name="fecha">
  7029. <DasType>date|0s</DasType>
  7030. <NotNull>1</NotNull>
  7031. <Position>1</Position>
  7032. </column>
  7033. <column id="1537" parent="410" name="departamento">
  7034. <DasType>char(15)|0s</DasType>
  7035. <NotNull>1</NotNull>
  7036. <Position>2</Position>
  7037. </column>
  7038. <column id="1538" parent="410" name="codigo">
  7039. <DasType>char(3)|0s</DasType>
  7040. <NotNull>1</NotNull>
  7041. <Position>3</Position>
  7042. </column>
  7043. <column id="1539" parent="410" name="extras">
  7044. <DasType>decimal(12,2 digit)|0s</DasType>
  7045. <NotNull>1</NotNull>
  7046. <Position>4</Position>
  7047. </column>
  7048. <column id="1540" parent="410" name="sueldos">
  7049. <DasType>decimal(12,2 digit)|0s</DasType>
  7050. <NotNull>1</NotNull>
  7051. <Position>5</Position>
  7052. </column>
  7053. <column id="1541" parent="410" name="vacacion">
  7054. <DasType>decimal(10,2 digit)|0s</DasType>
  7055. <NotNull>1</NotNull>
  7056. <Position>6</Position>
  7057. </column>
  7058. <column id="1542" parent="410" name="afp">
  7059. <DasType>decimal(12,2 digit)|0s</DasType>
  7060. <NotNull>1</NotNull>
  7061. <Position>7</Position>
  7062. </column>
  7063. <column id="1543" parent="410" name="isss">
  7064. <DasType>decimal(12,2 digit)|0s</DasType>
  7065. <NotNull>1</NotNull>
  7066. <Position>8</Position>
  7067. </column>
  7068. <column id="1544" parent="410" name="renta">
  7069. <DasType>decimal(12,2 digit)|0s</DasType>
  7070. <NotNull>1</NotNull>
  7071. <Position>9</Position>
  7072. </column>
  7073. <column id="1545" parent="410" name="fsv">
  7074. <DasType>decimal(12,2 digit)|0s</DasType>
  7075. <NotNull>1</NotNull>
  7076. <Position>10</Position>
  7077. </column>
  7078. <column id="1546" parent="410" name="banco">
  7079. <DasType>decimal(12,2 digit)|0s</DasType>
  7080. <NotNull>1</NotNull>
  7081. <Position>11</Position>
  7082. </column>
  7083. <column id="1547" parent="410" name="prestamo">
  7084. <DasType>decimal(12,2 digit)|0s</DasType>
  7085. <NotNull>1</NotNull>
  7086. <Position>12</Position>
  7087. </column>
  7088. <column id="1548" parent="410" name="varios">
  7089. <DasType>decimal(12,2 digit)|0s</DasType>
  7090. <NotNull>1</NotNull>
  7091. <Position>13</Position>
  7092. </column>
  7093. <column id="1549" parent="410" name="coope">
  7094. <DasType>decimal(12,2 digit)|0s</DasType>
  7095. <NotNull>1</NotNull>
  7096. <Position>14</Position>
  7097. </column>
  7098. <column id="1550" parent="410" name="mercaderia">
  7099. <DasType>decimal(12,2 digit)|0s</DasType>
  7100. <NotNull>1</NotNull>
  7101. <Position>15</Position>
  7102. </column>
  7103. <column id="1551" parent="410" name="anticipos">
  7104. <DasType>decimal(12,2 digit)|0s</DasType>
  7105. <NotNull>1</NotNull>
  7106. <Position>16</Position>
  7107. </column>
  7108. <column id="1552" parent="410" name="uniforme">
  7109. <DasType>decimal(12,2 digit)|0s</DasType>
  7110. <NotNull>1</NotNull>
  7111. <Position>17</Position>
  7112. </column>
  7113. <column id="1553" parent="410" name="bonificacion">
  7114. <DasType>decimal(9,2 digit)|0s</DasType>
  7115. <NotNull>1</NotNull>
  7116. <Position>18</Position>
  7117. </column>
  7118. <column id="1554" parent="410" name="depreciacion">
  7119. <DasType>decimal(8,2 digit)|0s</DasType>
  7120. <NotNull>1</NotNull>
  7121. <Position>19</Position>
  7122. </column>
  7123. <column id="1555" parent="410" name="aguinaldo">
  7124. <DasType>decimal(12,2 digit)|0s</DasType>
  7125. <NotNull>1</NotNull>
  7126. <Position>20</Position>
  7127. </column>
  7128. <index id="1556" parent="410" name="PRIMARY">
  7129. <ColNames>fecha
  7130. codigo
  7131. sueldos</ColNames>
  7132. <Type>btree</Type>
  7133. <Unique>1</Unique>
  7134. </index>
  7135. <key id="1557" parent="410" name="PRIMARY">
  7136. <NameSurrogate>1</NameSurrogate>
  7137. <Primary>1</Primary>
  7138. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  7139. </key>
  7140. <column id="1558" parent="411" name="codigo_proveedor">
  7141. <DasType>char(4)|0s</DasType>
  7142. <NotNull>1</NotNull>
  7143. <Position>1</Position>
  7144. </column>
  7145. <column id="1559" parent="411" name="nombre_proveedor">
  7146. <DasType>char(60)|0s</DasType>
  7147. <Position>2</Position>
  7148. </column>
  7149. <column id="1560" parent="411" name="direccion">
  7150. <DasType>char(150)|0s</DasType>
  7151. <Position>3</Position>
  7152. </column>
  7153. <column id="1561" parent="411" name="telefonos">
  7154. <DasType>char(25)|0s</DasType>
  7155. <Position>4</Position>
  7156. </column>
  7157. <column id="1562" parent="411" name="contacto">
  7158. <DasType>char(60)|0s</DasType>
  7159. <Position>5</Position>
  7160. </column>
  7161. <column id="1563" parent="411" name="cuenta_contable">
  7162. <DasType>char(14)|0s</DasType>
  7163. <Position>6</Position>
  7164. </column>
  7165. <column id="1564" parent="411" name="numero_registro">
  7166. <DasType>char(10)|0s</DasType>
  7167. <Position>7</Position>
  7168. </column>
  7169. <column id="1565" parent="411" name="nit">
  7170. <DasType>char(17)|0s</DasType>
  7171. <Position>8</Position>
  7172. </column>
  7173. <column id="1566" parent="411" name="proveedor">
  7174. <DasType>char(1)|0s</DasType>
  7175. <Position>9</Position>
  7176. </column>
  7177. <column id="1567" parent="411" name="razon_social">
  7178. <DasType>char(60)|0s</DasType>
  7179. <Position>10</Position>
  7180. </column>
  7181. <column id="1568" parent="411" name="gran_contribuyente">
  7182. <DasType>char(1)|0s</DasType>
  7183. <Position>11</Position>
  7184. </column>
  7185. <column id="1569" parent="411" name="tipo_servicio">
  7186. <DasType>char(2)|0s</DasType>
  7187. <Position>12</Position>
  7188. </column>
  7189. <column id="1570" parent="411" name="nombre">
  7190. <DasType>char(30)|0s</DasType>
  7191. <Position>13</Position>
  7192. </column>
  7193. <column id="1571" parent="411" name="apellido">
  7194. <DasType>char(30)|0s</DasType>
  7195. <Position>14</Position>
  7196. </column>
  7197. <index id="1572" parent="411" name="PRIMARY">
  7198. <ColNames>codigo_proveedor</ColNames>
  7199. <Type>btree</Type>
  7200. <Unique>1</Unique>
  7201. </index>
  7202. <key id="1573" parent="411" name="PRIMARY">
  7203. <NameSurrogate>1</NameSurrogate>
  7204. <Primary>1</Primary>
  7205. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  7206. </key>
  7207. <column id="1574" parent="412" name="pregunta">
  7208. <DasType>varchar(15)|0s</DasType>
  7209. <NotNull>1</NotNull>
  7210. <Position>1</Position>
  7211. </column>
  7212. <column id="1575" parent="412" name="literala">
  7213. <DasType>decimal(5,2 digit)|0s</DasType>
  7214. <NotNull>1</NotNull>
  7215. <Position>2</Position>
  7216. </column>
  7217. <column id="1576" parent="412" name="literalb">
  7218. <DasType>decimal(5,2 digit)|0s</DasType>
  7219. <NotNull>1</NotNull>
  7220. <Position>3</Position>
  7221. </column>
  7222. <column id="1577" parent="412" name="literalc">
  7223. <DasType>decimal(5,2 digit)|0s</DasType>
  7224. <NotNull>1</NotNull>
  7225. <Position>4</Position>
  7226. </column>
  7227. <column id="1578" parent="412" name="literald">
  7228. <DasType>decimal(5,2 digit)|0s</DasType>
  7229. <NotNull>1</NotNull>
  7230. <Position>5</Position>
  7231. </column>
  7232. <index id="1579" parent="412" name="PRIMARY">
  7233. <ColNames>pregunta</ColNames>
  7234. <Type>btree</Type>
  7235. <Unique>1</Unique>
  7236. </index>
  7237. <key id="1580" parent="412" name="PRIMARY">
  7238. <NameSurrogate>1</NameSurrogate>
  7239. <Primary>1</Primary>
  7240. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  7241. </key>
  7242. <column id="1581" parent="413" name="numero_quedan">
  7243. <DasType>char(6)|0s</DasType>
  7244. <NotNull>1</NotNull>
  7245. <Position>1</Position>
  7246. </column>
  7247. <column id="1582" parent="413" name="proveedor">
  7248. <DasType>char(4)|0s</DasType>
  7249. <NotNull>1</NotNull>
  7250. <Position>2</Position>
  7251. </column>
  7252. <column id="1583" parent="413" name="fecha">
  7253. <DasType>date|0s</DasType>
  7254. <Position>3</Position>
  7255. </column>
  7256. <column id="1584" parent="413" name="valor">
  7257. <DasType>decimal(14,2 digit)|0s</DasType>
  7258. <NotNull>1</NotNull>
  7259. <Position>4</Position>
  7260. </column>
  7261. <column id="1585" parent="413" name="correlativo">
  7262. <DasType>char(5)|0s</DasType>
  7263. <NotNull>1</NotNull>
  7264. <Position>5</Position>
  7265. </column>
  7266. <column id="1586" parent="413" name="fecha_emision">
  7267. <DasType>date|0s</DasType>
  7268. <Position>6</Position>
  7269. </column>
  7270. <column id="1587" parent="413" name="facturas">
  7271. <DasType>char(25)|0s</DasType>
  7272. <NotNull>1</NotNull>
  7273. <Position>7</Position>
  7274. </column>
  7275. <column id="1588" parent="413" name="quedan">
  7276. <DasType>char(1)|0s</DasType>
  7277. <NotNull>1</NotNull>
  7278. <Position>8</Position>
  7279. </column>
  7280. <column id="1589" parent="413" name="concepto">
  7281. <DasType>char(50)|0s</DasType>
  7282. <NotNull>1</NotNull>
  7283. <Position>9</Position>
  7284. </column>
  7285. <column id="1590" parent="414" name="sala">
  7286. <DasType>char(14)|0s</DasType>
  7287. <NotNull>1</NotNull>
  7288. <Position>1</Position>
  7289. </column>
  7290. <column id="1591" parent="414" name="banco">
  7291. <DasType>char(2)|0s</DasType>
  7292. <NotNull>1</NotNull>
  7293. <Position>2</Position>
  7294. </column>
  7295. <column id="1592" parent="414" name="monto">
  7296. <DasType>decimal(16,2 digit)|0s</DasType>
  7297. <NotNull>1</NotNull>
  7298. <Position>3</Position>
  7299. </column>
  7300. <column id="1593" parent="414" name="fecha">
  7301. <DasType>date|0s</DasType>
  7302. <Position>4</Position>
  7303. </column>
  7304. <column id="1594" parent="414" name="codigo_remesa">
  7305. <DasType>char(8)|0s</DasType>
  7306. <NotNull>1</NotNull>
  7307. <Position>5</Position>
  7308. </column>
  7309. <column id="1595" parent="414" name="verificado">
  7310. <DasType>char(1)|0s</DasType>
  7311. <NotNull>1</NotNull>
  7312. <Position>6</Position>
  7313. </column>
  7314. <column id="1596" parent="415" name="codigo">
  7315. <DasType>char(5)|0s</DasType>
  7316. <NotNull>1</NotNull>
  7317. <Position>1</Position>
  7318. </column>
  7319. <column id="1597" parent="415" name="fecha">
  7320. <DasType>date|0s</DasType>
  7321. <NotNull>1</NotNull>
  7322. <Position>2</Position>
  7323. </column>
  7324. <column id="1598" parent="415" name="valor">
  7325. <DasType>decimal(12,2 digit) unsigned|0s</DasType>
  7326. <NotNull>1</NotNull>
  7327. <Position>3</Position>
  7328. </column>
  7329. <column id="1599" parent="415" name="renta">
  7330. <DasType>decimal(8,2 digit)|0s</DasType>
  7331. <NotNull>1</NotNull>
  7332. <Position>4</Position>
  7333. </column>
  7334. <column id="1600" parent="415" name="nota">
  7335. <DasType>varchar(60)|0s</DasType>
  7336. <Position>5</Position>
  7337. </column>
  7338. <index id="1601" parent="415" name="PRIMARY">
  7339. <ColNames>codigo
  7340. fecha</ColNames>
  7341. <Type>btree</Type>
  7342. <Unique>1</Unique>
  7343. </index>
  7344. <key id="1602" parent="415" name="PRIMARY">
  7345. <NameSurrogate>1</NameSurrogate>
  7346. <Primary>1</Primary>
  7347. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  7348. </key>
  7349. <column id="1603" parent="416" name="id">
  7350. <AutoIncrement>2</AutoIncrement>
  7351. <DasType>int(11)|0s</DasType>
  7352. <NotNull>1</NotNull>
  7353. <Position>1</Position>
  7354. </column>
  7355. <column id="1604" parent="416" name="salarios_mensual">
  7356. <DasType>double(6,2 digit)|0s</DasType>
  7357. <Position>2</Position>
  7358. </column>
  7359. <column id="1605" parent="416" name="hora_diurna">
  7360. <DasType>double(6,2 digit)|0s</DasType>
  7361. <Position>3</Position>
  7362. </column>
  7363. <column id="1606" parent="416" name="hora_nocturna">
  7364. <DasType>double(6,2 digit)|0s</DasType>
  7365. <Position>4</Position>
  7366. </column>
  7367. <column id="1607" parent="416" name="turno_extra">
  7368. <DasType>double(6,2 digit)|0s</DasType>
  7369. <Position>5</Position>
  7370. </column>
  7371. <index id="1608" parent="416" name="PRIMARY">
  7372. <ColNames>id</ColNames>
  7373. <Type>btree</Type>
  7374. <Unique>1</Unique>
  7375. </index>
  7376. <key id="1609" parent="416" name="PRIMARY">
  7377. <NameSurrogate>1</NameSurrogate>
  7378. <Primary>1</Primary>
  7379. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  7380. </key>
  7381. <column id="1610" parent="417" name="codigo_empleado">
  7382. <DasType>char(3)|0s</DasType>
  7383. <NotNull>1</NotNull>
  7384. <Position>1</Position>
  7385. </column>
  7386. <column id="1611" parent="417" name="seminario">
  7387. <DasType>longtext|0s</DasType>
  7388. <NotNull>1</NotNull>
  7389. <Position>2</Position>
  7390. </column>
  7391. <column id="1612" parent="417" name="fecha_seminario">
  7392. <DasType>date|0s</DasType>
  7393. <Position>3</Position>
  7394. </column>
  7395. <column id="1613" parent="418" name="sucursal_codigo">
  7396. <DasType>char(2)|0s</DasType>
  7397. <NotNull>1</NotNull>
  7398. <Position>1</Position>
  7399. </column>
  7400. <column id="1614" parent="418" name="sala_nombre">
  7401. <DasType>char(30)|0s</DasType>
  7402. <NotNull>1</NotNull>
  7403. <Position>2</Position>
  7404. </column>
  7405. <column id="1615" parent="418" name="sala_nombre_corto">
  7406. <DasType>char(15)|0s</DasType>
  7407. <Position>3</Position>
  7408. </column>
  7409. <index id="1616" parent="418" name="PRIMARY">
  7410. <ColNames>sucursal_codigo</ColNames>
  7411. <Type>btree</Type>
  7412. <Unique>1</Unique>
  7413. </index>
  7414. <key id="1617" parent="418" name="PRIMARY">
  7415. <NameSurrogate>1</NameSurrogate>
  7416. <Primary>1</Primary>
  7417. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  7418. </key>
  7419. <column id="1618" parent="419" name="territorio_codigo">
  7420. <DasType>char(2)|0s</DasType>
  7421. <NotNull>1</NotNull>
  7422. <Position>1</Position>
  7423. </column>
  7424. <column id="1619" parent="419" name="categoría">
  7425. <DasType>char(10)|0s</DasType>
  7426. <NotNull>1</NotNull>
  7427. <Position>2</Position>
  7428. </column>
  7429. <column id="1620" parent="420" name="cuenta">
  7430. <DasType>char(2)|0s</DasType>
  7431. <NotNull>1</NotNull>
  7432. <Position>1</Position>
  7433. </column>
  7434. <column id="1621" parent="420" name="mes">
  7435. <DasType>char(2)|0s</DasType>
  7436. <NotNull>1</NotNull>
  7437. <Position>2</Position>
  7438. </column>
  7439. <column id="1622" parent="420" name="tchb1">
  7440. <DasType>decimal(12,2 digit)|0s</DasType>
  7441. <NotNull>1</NotNull>
  7442. <Position>3</Position>
  7443. </column>
  7444. <column id="1623" parent="420" name="tchc1">
  7445. <DasType>decimal(12,2 digit)|0s</DasType>
  7446. <NotNull>1</NotNull>
  7447. <Position>4</Position>
  7448. </column>
  7449. <column id="1624" parent="420" name="remesas_faltantes">
  7450. <DasType>decimal(12,2 digit)|0s</DasType>
  7451. <NotNull>1</NotNull>
  7452. <Position>5</Position>
  7453. </column>
  7454. <column id="1625" parent="420" name="cheques_no_cobrados">
  7455. <DasType>decimal(12,2 digit)|0s</DasType>
  7456. <NotNull>1</NotNull>
  7457. <Position>6</Position>
  7458. </column>
  7459. <column id="1626" parent="420" name="abono_por_intereses">
  7460. <DasType>decimal(12,2 digit)|0s</DasType>
  7461. <NotNull>1</NotNull>
  7462. <Position>7</Position>
  7463. </column>
  7464. <column id="1627" parent="420" name="remesas_por_ingresar">
  7465. <DasType>decimal(12,2 digit)|0s</DasType>
  7466. <NotNull>1</NotNull>
  7467. <Position>8</Position>
  7468. </column>
  7469. <column id="1628" parent="420" name="nota_cargo">
  7470. <DasType>decimal(12,2 digit)|0s</DasType>
  7471. <NotNull>1</NotNull>
  7472. <Position>9</Position>
  7473. </column>
  7474. <column id="1629" parent="420" name="trb1">
  7475. <DasType>decimal(12,2 digit)|0s</DasType>
  7476. <NotNull>1</NotNull>
  7477. <Position>10</Position>
  7478. </column>
  7479. <column id="1630" parent="420" name="trc1">
  7480. <DasType>decimal(12,2 digit)|0s</DasType>
  7481. <NotNull>1</NotNull>
  7482. <Position>11</Position>
  7483. </column>
  7484. <column id="1631" parent="420" name="tabb1">
  7485. <DasType>decimal(12,2 digit)|0s</DasType>
  7486. <NotNull>1</NotNull>
  7487. <Position>12</Position>
  7488. </column>
  7489. <column id="1632" parent="420" name="tabc1">
  7490. <DasType>decimal(12,2 digit)|0s</DasType>
  7491. <NotNull>1</NotNull>
  7492. <Position>13</Position>
  7493. </column>
  7494. <column id="1633" parent="420" name="tcb1">
  7495. <DasType>decimal(12,2 digit)|0s</DasType>
  7496. <NotNull>1</NotNull>
  7497. <Position>14</Position>
  7498. </column>
  7499. <column id="1634" parent="420" name="tcc1">
  7500. <DasType>decimal(12,2 digit)|0s</DasType>
  7501. <NotNull>1</NotNull>
  7502. <Position>15</Position>
  7503. </column>
  7504. <column id="1635" parent="421" name="codigo_empleado">
  7505. <DasType>char(3)|0s</DasType>
  7506. <NotNull>1</NotNull>
  7507. <Position>1</Position>
  7508. </column>
  7509. <column id="1636" parent="421" name="afp">
  7510. <DasType>decimal(10,2 digit)|0s</DasType>
  7511. <NotNull>1</NotNull>
  7512. <Position>2</Position>
  7513. </column>
  7514. <column id="1637" parent="421" name="renta">
  7515. <DasType>decimal(10,2 digit)|0s</DasType>
  7516. <NotNull>1</NotNull>
  7517. <Position>3</Position>
  7518. </column>
  7519. <column id="1638" parent="421" name="isss">
  7520. <DasType>decimal(10,2 digit)|0s</DasType>
  7521. <NotNull>1</NotNull>
  7522. <Position>4</Position>
  7523. </column>
  7524. <column id="1639" parent="421" name="extras">
  7525. <DasType>decimal(10,2 digit)|0s</DasType>
  7526. <NotNull>1</NotNull>
  7527. <Position>5</Position>
  7528. </column>
  7529. <column id="1640" parent="421" name="sueldo">
  7530. <DasType>decimal(10,2 digit)|0s</DasType>
  7531. <NotNull>1</NotNull>
  7532. <Position>6</Position>
  7533. </column>
  7534. <column id="1641" parent="421" name="vacacion">
  7535. <DasType>decimal(8,2 digit)|0s</DasType>
  7536. <NotNull>1</NotNull>
  7537. <Position>7</Position>
  7538. </column>
  7539. <column id="1642" parent="421" name="sueldov">
  7540. <DasType>decimal(8,2 digit)|0s</DasType>
  7541. <NotNull>1</NotNull>
  7542. <Position>8</Position>
  7543. </column>
  7544. <column id="1643" parent="421" name="aguinaldo">
  7545. <DasType>decimal(10,2 digit)|0s</DasType>
  7546. <NotNull>1</NotNull>
  7547. <Position>9</Position>
  7548. </column>
  7549. <column id="1644" parent="421" name="fecha">
  7550. <DasType>date|0s</DasType>
  7551. <NotNull>1</NotNull>
  7552. <Position>10</Position>
  7553. </column>
  7554. <column id="1645" parent="421" name="bonificacion">
  7555. <DasType>decimal(10,2 digit)|0s</DasType>
  7556. <NotNull>1</NotNull>
  7557. <Position>11</Position>
  7558. </column>
  7559. <column id="1646" parent="421" name="incentivo">
  7560. <DasType>decimal(8,2 digit)|0s</DasType>
  7561. <NotNull>1</NotNull>
  7562. <Position>12</Position>
  7563. </column>
  7564. <column id="1647" parent="421" name="depreciacion">
  7565. <DasType>decimal(10,2 digit)|0s</DasType>
  7566. <NotNull>1</NotNull>
  7567. <Position>13</Position>
  7568. </column>
  7569. <column id="1648" parent="421" name="comision">
  7570. <DasType>decimal(10,2 digit)|0s</DasType>
  7571. <NotNull>1</NotNull>
  7572. <Position>14</Position>
  7573. </column>
  7574. <index id="1649" parent="421" name="PRIMARY">
  7575. <ColNames>codigo_empleado
  7576. fecha</ColNames>
  7577. <Type>btree</Type>
  7578. <Unique>1</Unique>
  7579. </index>
  7580. <key id="1650" parent="421" name="PRIMARY">
  7581. <NameSurrogate>1</NameSurrogate>
  7582. <Primary>1</Primary>
  7583. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  7584. </key>
  7585. <column id="1651" parent="422" name="id">
  7586. <DasType>varchar(1)|0s</DasType>
  7587. <NotNull>1</NotNull>
  7588. <Position>1</Position>
  7589. </column>
  7590. <column id="1652" parent="422" name="descripcion">
  7591. <DasType>varchar(20)|0s</DasType>
  7592. <NotNull>1</NotNull>
  7593. <Position>2</Position>
  7594. </column>
  7595. <index id="1653" parent="422" name="PRIMARY">
  7596. <ColNames>id</ColNames>
  7597. <Type>btree</Type>
  7598. <Unique>1</Unique>
  7599. </index>
  7600. <key id="1654" parent="422" name="PRIMARY">
  7601. <NameSurrogate>1</NameSurrogate>
  7602. <Primary>1</Primary>
  7603. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  7604. </key>
  7605. <column id="1655" parent="423" name="coditipo_mobiliario">
  7606. <DasType>char(2)|0s</DasType>
  7607. <NotNull>1</NotNull>
  7608. <Position>1</Position>
  7609. </column>
  7610. <column id="1656" parent="423" name="tipmobil_mobiliario">
  7611. <DasType>char(25)|0s</DasType>
  7612. <NotNull>1</NotNull>
  7613. <Position>2</Position>
  7614. </column>
  7615. <column id="1657" parent="423" name="id">
  7616. <AutoIncrement>59</AutoIncrement>
  7617. <DasType>int(10) unsigned|0s</DasType>
  7618. <NotNull>1</NotNull>
  7619. <Position>3</Position>
  7620. </column>
  7621. <index id="1658" parent="423" name="PRIMARY">
  7622. <ColNames>id</ColNames>
  7623. <Type>btree</Type>
  7624. <Unique>1</Unique>
  7625. </index>
  7626. <key id="1659" parent="423" name="PRIMARY">
  7627. <NameSurrogate>1</NameSurrogate>
  7628. <Primary>1</Primary>
  7629. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  7630. </key>
  7631. <column id="1660" parent="424" name="id">
  7632. <AutoIncrement>83</AutoIncrement>
  7633. <DasType>int(10) unsigned|0s</DasType>
  7634. <NotNull>1</NotNull>
  7635. <Position>1</Position>
  7636. </column>
  7637. <column id="1661" parent="424" name="tipmobil_mobiliario">
  7638. <DasType>char(45)|0s</DasType>
  7639. <NotNull>1</NotNull>
  7640. <Position>2</Position>
  7641. </column>
  7642. <index id="1662" parent="424" name="PRIMARY">
  7643. <ColNames>id</ColNames>
  7644. <Type>btree</Type>
  7645. <Unique>1</Unique>
  7646. </index>
  7647. <key id="1663" parent="424" name="PRIMARY">
  7648. <NameSurrogate>1</NameSurrogate>
  7649. <Primary>1</Primary>
  7650. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  7651. </key>
  7652. <column id="1664" parent="425" name="idtipopermisos">
  7653. <DasType>int(2)|0s</DasType>
  7654. <NotNull>1</NotNull>
  7655. <Position>1</Position>
  7656. </column>
  7657. <column id="1665" parent="425" name="nombre">
  7658. <DasType>varchar(40)|0s</DasType>
  7659. <Position>2</Position>
  7660. </column>
  7661. <index id="1666" parent="425" name="PRIMARY">
  7662. <ColNames>idtipopermisos</ColNames>
  7663. <Type>btree</Type>
  7664. <Unique>1</Unique>
  7665. </index>
  7666. <key id="1667" parent="425" name="PRIMARY">
  7667. <NameSurrogate>1</NameSurrogate>
  7668. <Primary>1</Primary>
  7669. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  7670. </key>
  7671. <column id="1668" parent="426" name="Id">
  7672. <AutoIncrement>2763</AutoIncrement>
  7673. <DasType>int(11)|0s</DasType>
  7674. <NotNull>1</NotNull>
  7675. <Position>1</Position>
  7676. </column>
  7677. <column id="1669" parent="426" name="fecha">
  7678. <DasType>date|0s</DasType>
  7679. <NotNull>1</NotNull>
  7680. <Position>2</Position>
  7681. </column>
  7682. <column id="1670" parent="426" name="codigo">
  7683. <DasType>char(3)|0s</DasType>
  7684. <NotNull>1</NotNull>
  7685. <Position>3</Position>
  7686. </column>
  7687. <column id="1671" parent="426" name="departamento">
  7688. <DasType>char(20)|0s</DasType>
  7689. <NotNull>1</NotNull>
  7690. <Position>4</Position>
  7691. </column>
  7692. <column id="1672" parent="426" name="base">
  7693. <DasType>decimal(12,2 digit)|0s</DasType>
  7694. <DefaultExpression>0.00</DefaultExpression>
  7695. <NotNull>1</NotNull>
  7696. <Position>5</Position>
  7697. </column>
  7698. <column id="1673" parent="426" name="comision">
  7699. <DasType>decimal(10,2 digit)|0s</DasType>
  7700. <DefaultExpression>0.00</DefaultExpression>
  7701. <NotNull>1</NotNull>
  7702. <Position>6</Position>
  7703. </column>
  7704. <column id="1674" parent="426" name="bonificacion">
  7705. <DasType>decimal(12,2 digit)|0s</DasType>
  7706. <DefaultExpression>0.00</DefaultExpression>
  7707. <NotNull>1</NotNull>
  7708. <Position>7</Position>
  7709. </column>
  7710. <column id="1675" parent="426" name="depreciacion">
  7711. <DasType>decimal(12,2 digit)|0s</DasType>
  7712. <DefaultExpression>0.00</DefaultExpression>
  7713. <Position>8</Position>
  7714. </column>
  7715. <column id="1676" parent="426" name="isss">
  7716. <DasType>decimal(12,2 digit)|0s</DasType>
  7717. <DefaultExpression>0.00</DefaultExpression>
  7718. <Position>9</Position>
  7719. </column>
  7720. <column id="1677" parent="426" name="afp">
  7721. <DasType>decimal(12,2 digit)|0s</DasType>
  7722. <DefaultExpression>0.00</DefaultExpression>
  7723. <Position>10</Position>
  7724. </column>
  7725. <column id="1678" parent="426" name="renta">
  7726. <DasType>decimal(12,2 digit)|0s</DasType>
  7727. <DefaultExpression>0.00</DefaultExpression>
  7728. <Position>11</Position>
  7729. </column>
  7730. <column id="1679" parent="426" name="aguinaldo">
  7731. <DasType>decimal(12,2 digit) unsigned|0s</DasType>
  7732. <DefaultExpression>0.00</DefaultExpression>
  7733. <Position>12</Position>
  7734. </column>
  7735. <column id="1680" parent="426" name="vacacion">
  7736. <DasType>decimal(12,2 digit)|0s</DasType>
  7737. <DefaultExpression>0.00</DefaultExpression>
  7738. <Position>13</Position>
  7739. </column>
  7740. <column id="1681" parent="426" name="incentivo">
  7741. <DasType>decimal(12,2 digit)|0s</DasType>
  7742. <DefaultExpression>0.00</DefaultExpression>
  7743. <NotNull>1</NotNull>
  7744. <Position>14</Position>
  7745. </column>
  7746. <column id="1682" parent="426" name="indemnizacion">
  7747. <DasType>decimal(12,2 digit)|0s</DasType>
  7748. <DefaultExpression>0.00</DefaultExpression>
  7749. <NotNull>1</NotNull>
  7750. <Position>15</Position>
  7751. </column>
  7752. <index id="1683" parent="426" name="PRIMARY">
  7753. <ColNames>Id
  7754. fecha
  7755. codigo</ColNames>
  7756. <Type>btree</Type>
  7757. <Unique>1</Unique>
  7758. </index>
  7759. <key id="1684" parent="426" name="PRIMARY">
  7760. <NameSurrogate>1</NameSurrogate>
  7761. <Primary>1</Primary>
  7762. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  7763. </key>
  7764. <column id="1685" parent="427" name="codigo_cuenta">
  7765. <DasType>char(2)|0s</DasType>
  7766. <NotNull>1</NotNull>
  7767. <Position>1</Position>
  7768. </column>
  7769. <column id="1686" parent="427" name="monto">
  7770. <DasType>decimal(14,2 digit)|0s</DasType>
  7771. <NotNull>1</NotNull>
  7772. <Position>2</Position>
  7773. </column>
  7774. <column id="1687" parent="427" name="fecha">
  7775. <DasType>date|0s</DasType>
  7776. <NotNull>1</NotNull>
  7777. <Position>3</Position>
  7778. </column>
  7779. <column id="1688" parent="427" name="codigo_transferencia">
  7780. <DasType>char(8)|0s</DasType>
  7781. <NotNull>1</NotNull>
  7782. <Position>4</Position>
  7783. </column>
  7784. <column id="1689" parent="427" name="retiro">
  7785. <DasType>char(1)|0s</DasType>
  7786. <NotNull>1</NotNull>
  7787. <Position>5</Position>
  7788. </column>
  7789. <column id="1690" parent="427" name="concepto">
  7790. <DasType>longtext|0s</DasType>
  7791. <NotNull>1</NotNull>
  7792. <Position>6</Position>
  7793. </column>
  7794. <column id="1691" parent="428" name="usuario_nombre">
  7795. <DasType>char(12)|0s</DasType>
  7796. <NotNull>1</NotNull>
  7797. <Position>1</Position>
  7798. </column>
  7799. <column id="1692" parent="428" name="usuario_codigo">
  7800. <DasType>char(3)|0s</DasType>
  7801. <NotNull>1</NotNull>
  7802. <Position>2</Position>
  7803. </column>
  7804. <column id="1693" parent="428" name="usuario_contraseña">
  7805. <DasType>char(10)|0s</DasType>
  7806. <NotNull>1</NotNull>
  7807. <Position>3</Position>
  7808. </column>
  7809. <column id="1694" parent="428" name="sucursal_codigo">
  7810. <DasType>char(2)|0s</DasType>
  7811. <NotNull>1</NotNull>
  7812. <Position>4</Position>
  7813. </column>
  7814. <column id="1695" parent="428" name="nombre_empleado">
  7815. <DasType>char(50)|0s</DasType>
  7816. <NotNull>1</NotNull>
  7817. <Position>5</Position>
  7818. </column>
  7819. <column id="1696" parent="428" name="departamento">
  7820. <DasType>char(20)|0s</DasType>
  7821. <NotNull>1</NotNull>
  7822. <Position>6</Position>
  7823. </column>
  7824. <index id="1697" parent="428" name="PRIMARY">
  7825. <ColNames>usuario_codigo</ColNames>
  7826. <Type>btree</Type>
  7827. <Unique>1</Unique>
  7828. </index>
  7829. <key id="1698" parent="428" name="PRIMARY">
  7830. <NameSurrogate>1</NameSurrogate>
  7831. <Primary>1</Primary>
  7832. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  7833. </key>
  7834. <column id="1699" parent="429" name="codigo_vacacion">
  7835. <DasType>char(4)|0s</DasType>
  7836. <NotNull>1</NotNull>
  7837. <Position>1</Position>
  7838. </column>
  7839. <column id="1700" parent="429" name="fecha_inicio">
  7840. <DasType>date|0s</DasType>
  7841. <NotNull>1</NotNull>
  7842. <Position>2</Position>
  7843. </column>
  7844. <column id="1701" parent="429" name="fecha_fin">
  7845. <DasType>date|0s</DasType>
  7846. <NotNull>1</NotNull>
  7847. <Position>3</Position>
  7848. </column>
  7849. <column id="1702" parent="429" name="codigo_empleado">
  7850. <DasType>char(3)|0s</DasType>
  7851. <NotNull>1</NotNull>
  7852. <Position>4</Position>
  7853. </column>
  7854. <column id="1703" parent="429" name="dias">
  7855. <DasType>decimal(3)|0s</DasType>
  7856. <NotNull>1</NotNull>
  7857. <Position>5</Position>
  7858. </column>
  7859. <column id="1704" parent="429" name="id">
  7860. <AutoIncrement>667</AutoIncrement>
  7861. <DasType>int(10) unsigned|0s</DasType>
  7862. <NotNull>1</NotNull>
  7863. <Position>6</Position>
  7864. </column>
  7865. <index id="1705" parent="429" name="PRIMARY">
  7866. <ColNames>id</ColNames>
  7867. <Type>btree</Type>
  7868. <Unique>1</Unique>
  7869. </index>
  7870. <key id="1706" parent="429" name="PRIMARY">
  7871. <NameSurrogate>1</NameSurrogate>
  7872. <Primary>1</Primary>
  7873. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  7874. </key>
  7875. <column id="1707" parent="430" name="numero_cheque">
  7876. <DasType>char(9)|0s</DasType>
  7877. <NotNull>1</NotNull>
  7878. <Position>1</Position>
  7879. </column>
  7880. <column id="1708" parent="430" name="cuenta_afecta">
  7881. <DasType>char(14)|0s</DasType>
  7882. <NotNull>1</NotNull>
  7883. <Position>2</Position>
  7884. </column>
  7885. <column id="1709" parent="430" name="debe">
  7886. <DasType>decimal(9,2 digit)|0s</DasType>
  7887. <NotNull>1</NotNull>
  7888. <Position>3</Position>
  7889. </column>
  7890. <column id="1710" parent="430" name="haber">
  7891. <DasType>decimal(9,2 digit)|0s</DasType>
  7892. <NotNull>1</NotNull>
  7893. <Position>4</Position>
  7894. </column>
  7895. <column id="1711" parent="430" name="nota">
  7896. <DasType>varchar(1000)|0s</DasType>
  7897. <Position>5</Position>
  7898. </column>
  7899. <column id="1712" parent="430" name="cuenta_banco">
  7900. <DasType>char(2)|0s</DasType>
  7901. <NotNull>1</NotNull>
  7902. <Position>6</Position>
  7903. </column>
  7904. <column id="1713" parent="430" name="anulado">
  7905. <DasType>char(1)|0s</DasType>
  7906. <NotNull>1</NotNull>
  7907. <Position>7</Position>
  7908. </column>
  7909. <column id="1714" parent="431" name="iddescuento">
  7910. <DasType>int(6)|0s</DasType>
  7911. <NotNull>1</NotNull>
  7912. <Position>1</Position>
  7913. </column>
  7914. <column id="1715" parent="431" name="codigo_empleado">
  7915. <DasType>varchar(3)|0s</DasType>
  7916. <Position>2</Position>
  7917. </column>
  7918. <column id="1716" parent="431" name="descripcion_descuento">
  7919. <DasType>varchar(80)|0s</DasType>
  7920. <Position>3</Position>
  7921. </column>
  7922. <column id="1717" parent="431" name="valor_descuento">
  7923. <DasType>decimal(6,2 digit)|0s</DasType>
  7924. <Position>4</Position>
  7925. </column>
  7926. <column id="1718" parent="431" name="fecha_descuento">
  7927. <DasType>date|0s</DasType>
  7928. <Position>5</Position>
  7929. </column>
  7930. <column id="1719" parent="431" name="usuario_ingresa">
  7931. <DasType>varchar(3)|0s</DasType>
  7932. <Position>6</Position>
  7933. </column>
  7934. <index id="1720" parent="431" name="PRIMARY">
  7935. <ColNames>iddescuento</ColNames>
  7936. <Type>btree</Type>
  7937. <Unique>1</Unique>
  7938. </index>
  7939. <key id="1721" parent="431" name="PRIMARY">
  7940. <NameSurrogate>1</NameSurrogate>
  7941. <Primary>1</Primary>
  7942. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  7943. </key>
  7944. <column id="1722" parent="432" name="id">
  7945. <DasType>bigint(11)|0s</DasType>
  7946. <Position>1</Position>
  7947. </column>
  7948. <column id="1723" parent="432" name="emp_cod">
  7949. <DasType>varchar(3)|0s</DasType>
  7950. <Position>2</Position>
  7951. </column>
  7952. <column id="1724" parent="432" name="total_horas">
  7953. <DasType>time|0s</DasType>
  7954. <Position>3</Position>
  7955. </column>
  7956. <column id="1725" parent="432" name="horas_diurnas">
  7957. <DasType>time|0s</DasType>
  7958. <Position>4</Position>
  7959. </column>
  7960. <column id="1726" parent="432" name="horas_nocturnas">
  7961. <DasType>time|0s</DasType>
  7962. <Position>5</Position>
  7963. </column>
  7964. <column id="1727" parent="432" name="fecha">
  7965. <DasType>date|0s</DasType>
  7966. <Position>6</Position>
  7967. </column>
  7968. <column id="1728" parent="432" name="corrido">
  7969. <DasType>tinyint(1)|0s</DasType>
  7970. <Position>7</Position>
  7971. </column>
  7972. <column id="1729" parent="433" name="codigo_empleado">
  7973. <DasType>char(3)|0s</DasType>
  7974. <NotNull>1</NotNull>
  7975. <Position>1</Position>
  7976. </column>
  7977. <column id="1730" parent="433" name="empleado">
  7978. <DasType>varchar(61)|0s</DasType>
  7979. <Position>2</Position>
  7980. </column>
  7981. <column id="1731" parent="434" name="codigo_empleado">
  7982. <DasType>char(3)|0s</DasType>
  7983. <NotNull>1</NotNull>
  7984. <Position>1</Position>
  7985. </column>
  7986. <column id="1732" parent="434" name="empleado">
  7987. <DasType>varchar(61)|0s</DasType>
  7988. <Position>2</Position>
  7989. </column>
  7990. <column id="1733" parent="434" name="departamento">
  7991. <DasType>varchar(2)|0s</DasType>
  7992. <Position>3</Position>
  7993. </column>
  7994. <column id="1734" parent="434" name="dia_pago">
  7995. <DasType>decimal(9,2 digit)|0s</DasType>
  7996. <Position>4</Position>
  7997. </column>
  7998. <column id="1735" parent="434" name="hora_pago">
  7999. <DasType>decimal(9,2 digit)|0s</DasType>
  8000. <Position>5</Position>
  8001. </column>
  8002. <column id="1736" parent="434" name="hora_extra_diurna">
  8003. <DasType>decimal(10,2 digit)|0s</DasType>
  8004. <Position>6</Position>
  8005. </column>
  8006. <column id="1737" parent="434" name="hora_extra_nocturna">
  8007. <DasType>decimal(12,2 digit)|0s</DasType>
  8008. <Position>7</Position>
  8009. </column>
  8010. <column id="1738" parent="434" name="sueldo_mensual">
  8011. <DasType>decimal(8,2 digit) unsigned|0s</DasType>
  8012. <NotNull>1</NotNull>
  8013. <Position>8</Position>
  8014. </column>
  8015. <column id="1739" parent="435" name="codigo_empleado">
  8016. <DasType>char(3)|0s</DasType>
  8017. <NotNull>1</NotNull>
  8018. <Position>1</Position>
  8019. </column>
  8020. <column id="1740" parent="435" name="sueldo_mensual">
  8021. <DasType>decimal(8,2 digit) unsigned|0s</DasType>
  8022. <NotNull>1</NotNull>
  8023. <Position>2</Position>
  8024. </column>
  8025. <column id="1741" parent="435" name="empleado">
  8026. <DasType>varchar(61)|0s</DasType>
  8027. <Position>3</Position>
  8028. </column>
  8029. <column id="1742" parent="436" name="fecha">
  8030. <DasType>varchar(10)|0s</DasType>
  8031. <NotNull>1</NotNull>
  8032. <Position>1</Position>
  8033. </column>
  8034. <column id="1743" parent="436" name="codigo_empleado">
  8035. <DasType>varchar(3)|0s</DasType>
  8036. <NotNull>1</NotNull>
  8037. <Position>2</Position>
  8038. </column>
  8039. <column id="1744" parent="436" name="nombre_empleado">
  8040. <DasType>varchar(6)|0s</DasType>
  8041. <NotNull>1</NotNull>
  8042. <Position>3</Position>
  8043. </column>
  8044. <column id="1745" parent="436" name="in_work">
  8045. <DasType>varchar(8)|0s</DasType>
  8046. <NotNull>1</NotNull>
  8047. <Position>4</Position>
  8048. </column>
  8049. <column id="1746" parent="436" name="out_break">
  8050. <DasType>varchar(8)|0s</DasType>
  8051. <NotNull>1</NotNull>
  8052. <Position>5</Position>
  8053. </column>
  8054. <column id="1747" parent="436" name="in_break">
  8055. <DasType>varchar(8)|0s</DasType>
  8056. <NotNull>1</NotNull>
  8057. <Position>6</Position>
  8058. </column>
  8059. <column id="1748" parent="436" name="out_work">
  8060. <DasType>varchar(8)|0s</DasType>
  8061. <NotNull>1</NotNull>
  8062. <Position>7</Position>
  8063. </column>
  8064. <column id="1749" parent="436" name="id">
  8065. <DasType>varchar(36)|0s</DasType>
  8066. <NotNull>1</NotNull>
  8067. <Position>8</Position>
  8068. </column>
  8069. <column id="1750" parent="437" name="id">
  8070. <DasType>varchar(26)|0s</DasType>
  8071. <Position>1</Position>
  8072. </column>
  8073. <column id="1751" parent="437" name="emp_cod">
  8074. <DasType>char(4)|0s</DasType>
  8075. <NotNull>1</NotNull>
  8076. <Position>2</Position>
  8077. </column>
  8078. <column id="1752" parent="437" name="nombre">
  8079. <DasType>varchar(61)|0s</DasType>
  8080. <Position>3</Position>
  8081. </column>
  8082. <column id="1753" parent="437" name="nit">
  8083. <DasType>varchar(14)|0s</DasType>
  8084. <Position>4</Position>
  8085. </column>
  8086. <column id="1754" parent="437" name="dui">
  8087. <DasType>varchar(10)|0s</DasType>
  8088. <Position>5</Position>
  8089. </column>
  8090. <column id="1755" parent="437" name="pago_turno">
  8091. <DasType>decimal(8,3 digit)|0s</DasType>
  8092. <NotNull>1</NotNull>
  8093. <Position>6</Position>
  8094. </column>
  8095. <column id="1756" parent="437" name="pago_diurno">
  8096. <DasType>decimal(8,3 digit)|0s</DasType>
  8097. <NotNull>1</NotNull>
  8098. <Position>7</Position>
  8099. </column>
  8100. <column id="1757" parent="437" name="pago_minutos">
  8101. <DasType>decimal(8,3 digit)|0s</DasType>
  8102. <NotNull>1</NotNull>
  8103. <Position>8</Position>
  8104. </column>
  8105. <column id="1758" parent="437" name="pago_nocturno">
  8106. <DasType>decimal(8,3 digit)|0s</DasType>
  8107. <NotNull>1</NotNull>
  8108. <Position>9</Position>
  8109. </column>
  8110. <column id="1759" parent="437" name="sub_total">
  8111. <DasType>decimal(8,2 digit)|0s</DasType>
  8112. <NotNull>1</NotNull>
  8113. <Position>10</Position>
  8114. </column>
  8115. <column id="1760" parent="437" name="renta">
  8116. <DasType>decimal(8,2 digit)|0s</DasType>
  8117. <NotNull>1</NotNull>
  8118. <Position>11</Position>
  8119. </column>
  8120. <column id="1761" parent="437" name="total_pago">
  8121. <DasType>decimal(8,2 digit)|0s</DasType>
  8122. <NotNull>1</NotNull>
  8123. <Position>12</Position>
  8124. </column>
  8125. <column id="1762" parent="437" name="fecha">
  8126. <DasType>date|0s</DasType>
  8127. <NotNull>1</NotNull>
  8128. <Position>13</Position>
  8129. </column>
  8130. <column id="1763" parent="437" name="id_de_pago">
  8131. <DasType>varchar(45)|0s</DasType>
  8132. <Position>14</Position>
  8133. </column>
  8134. <column id="1764" parent="437" name="sucursal">
  8135. <DasType>varchar(2)|0s</DasType>
  8136. <Position>15</Position>
  8137. </column>
  8138. <column id="1765" parent="438" name="partidanum">
  8139. <DasType>char(7)|0s</DasType>
  8140. <NotNull>1</NotNull>
  8141. <Position>1</Position>
  8142. </column>
  8143. <column id="1766" parent="438" name="codicuenta">
  8144. <DasType>char(14)|0s</DasType>
  8145. <NotNull>1</NotNull>
  8146. <Position>2</Position>
  8147. </column>
  8148. <column id="1767" parent="438" name="sum(abono)">
  8149. <DasType>decimal(34,2 digit)|0s</DasType>
  8150. <Position>3</Position>
  8151. </column>
  8152. <column id="1768" parent="438" name="sum(cargo)">
  8153. <DasType>decimal(34,2 digit)|0s</DasType>
  8154. <Position>4</Position>
  8155. </column>
  8156. <column id="1769" parent="438" name="dife">
  8157. <DasType>decimal(35,2 digit)|0s</DasType>
  8158. <Position>5</Position>
  8159. </column>
  8160. <column id="1770" parent="439" name="codigo_empleado">
  8161. <DasType>char(3)|0s</DasType>
  8162. <NotNull>1</NotNull>
  8163. <Position>1</Position>
  8164. </column>
  8165. <column id="1771" parent="439" name="nombres">
  8166. <DasType>char(25)|0s</DasType>
  8167. <NotNull>1</NotNull>
  8168. <Position>2</Position>
  8169. </column>
  8170. <column id="1772" parent="439" name="apellidos">
  8171. <DasType>char(30)|0s</DasType>
  8172. <NotNull>1</NotNull>
  8173. <Position>3</Position>
  8174. </column>
  8175. <column id="1773" parent="439" name="direccion">
  8176. <DasType>char(50)|0s</DasType>
  8177. <Position>4</Position>
  8178. </column>
  8179. <column id="1774" parent="439" name="edad">
  8180. <DasType>char(10)|0s</DasType>
  8181. <NotNull>1</NotNull>
  8182. <Position>5</Position>
  8183. </column>
  8184. <column id="1775" parent="439" name="id">
  8185. <DasType>varchar(40)|0s</DasType>
  8186. <Position>6</Position>
  8187. </column>
  8188. </database-model>
  8189. </dataSource>