NodeProcesser.r1-print 180 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524
  1. <DocRoot>
  2. <Parameters />
  3. <DataSources>
  4. <Reference name="title" alias.zh_CN="标题" alias.en="" alias.zh_TW="標題" alias="#1" desc.zh_TW="標題" desc.en="" desc.zh_CN="标题" desc="#1" info="title.bos-query" />
  5. <Reference name="tabHead" alias.zh_CN="表头" alias.en="" alias.zh_TW="表頭" alias="#1" desc.zh_TW="表頭" desc.en="" desc.zh_CN="表头" desc="#1" info="tabHead.bos-query" />
  6. <Reference name="tabCols" alias.zh_CN="实际列数" alias.en="" alias.zh_TW="實際列數" alias="#1" desc.zh_TW="實際列數" desc.en="" desc.zh_CN="实际列数" desc="#1" info="tabCols.bos-query" />
  7. <Reference name="tabEntry1" alias.zh_CN="表体1" alias.en="" alias.zh_TW="表體中的表頭和評語" alias="#1" desc.zh_TW="表體中的表頭和評語" desc.en="" desc.zh_CN="表体中的表头和评语" desc="#1" info="tabEntry1.bos-query" />
  8. <Reference name="tabEntry2" alias.zh_CN="表体2" alias.en="" alias.zh_TW="表體中的表頭和評語" alias="#1" desc.zh_TW="表體中的表頭和評語" desc.en="" desc.zh_CN="表体中的表头和评语" desc="#1" info="tabEntry2.bos-query" />
  9. <Reference name="tabHeadAndEnd" alias.zh_CN="表头和表尾" alias.en="" alias.zh_TW="表體中的表頭和評語" alias="#1" desc.zh_TW="表體中的表頭和評語" desc.en="" desc.zh_CN="表体中的表头和评语" desc="#1" info="tabHeadAndEnd.bos-query" />
  10. <Reference name="tabEntry3" alias.zh_CN="表体3" alias.en="" alias.zh_TW="表體3" alias="#1" desc.zh_TW="表體3" desc.en="" desc.zh_CN="表体3" desc="#1" info="tabEntry3.bos-query" />
  11. <Reference name="tabEntry6" alias.zh_CN="表体6" alias.en="" alias.zh_TW="表體6" alias="#1" desc.zh_TW="表體6" desc.en="" desc.zh_CN="表体6" desc="#1" info="tabEntry6.bos-query" />
  12. <Reference name="tabEntry4" alias.zh_CN="表体4" alias.en="" alias.zh_TW="表體4" alias="#1" desc.zh_TW="表體4" desc.en="" desc.zh_CN="表体4" desc="#1" info="tabEntry4.bos-query" />
  13. <Reference name="tabEntry5" alias.zh_CN="表体5" alias.en="" alias.zh_TW="表體5" alias="#1" desc.zh_TW="表體5" desc.en="" desc.zh_CN="表体5" desc="#1" info="tabEntry5.bos-query" />
  14. <Reference name="tabEntry7" alias.zh_CN="表体7" alias.en="" alias.zh_TW="表體7" alias="#1" desc.zh_TW="表體7" desc.en="" desc.zh_CN="表体7" desc="#1" info="tabEntry7.bos-query" />
  15. <Reference name="tabEntry8" alias.zh_CN="表体8" alias.en="" alias.zh_TW="表體8" alias="#1" desc.zh_TW="表體8" desc.en="" desc.zh_CN="表体8" desc="#1" info="tabEntry8.bos-query" />
  16. <Reference name="tabEntry9" alias.zh_CN="表体9" alias.en="" alias.zh_TW="表體9" alias="#1" desc.zh_TW="表體9" desc.en="" desc.zh_CN="表体9" desc="#1" info="tabEntry9.bos-query" />
  17. <Reference name="tabEntry10" alias.zh_CN="表体10" alias.en="" alias.zh_TW="表體10" alias="#1" desc.zh_TW="表體10" desc.en="" desc.zh_CN="表体10" desc="#1" info="tabEntry10.bos-query" />
  18. <Reference name="tabEntry11" alias.zh_CN="表体11" alias.en="" alias.zh_TW="表體11" alias="#1" desc.zh_TW="表體11" desc.en="" desc.zh_CN="表体11" desc="#1" info="tabEntry11.bos-query" />
  19. <Reference name="tabEntry12" alias.zh_CN="表体12" alias.en="" alias.zh_TW="表體12" alias="#1" desc.zh_TW="表體12" desc.en="" desc.zh_CN="表体12" desc="#1" info="tabEntry12.bos-query" />
  20. <Reference name="tabEntry13" alias.zh_CN="表体13" alias.en="" alias.zh_TW="表體13" alias="#1" desc.zh_TW="表體13" desc.en="" desc.zh_CN="表体13" desc="#1" info="tabEntry13.bos-query" />
  21. <Reference name="tabEntry14" alias.zh_CN="表体14" alias.en="" alias.zh_TW="表體14" alias="#1" desc.zh_TW="表體14" desc.en="" desc.zh_CN="表体14" desc="#1" info="tabEntry14.bos-query" />
  22. <Reference name="tabEntry15" alias.zh_CN="表体15" alias.en="" alias.zh_TW="表體15" alias="#1" desc.zh_TW="表體15" desc.en="" desc.zh_CN="表体15" desc="#1" info="tabEntry15.bos-query" />
  23. <Reference name="tabEntry16" alias.zh_CN="表体16" alias.en="" alias.zh_TW="表體16" alias="#1" desc.zh_TW="表體16" desc.en="" desc.zh_CN="表体16" desc="#1" info="tabEntry16.bos-query" />
  24. <Reference name="tabEntry17" alias.zh_CN="表体17" alias.en="" alias.zh_TW="表體17" alias="#1" desc.zh_TW="表體17" desc.en="" desc.zh_CN="表体17" desc="#1" info="tabEntry17.bos-query" />
  25. <Reference name="tabEntry18" alias.zh_CN="表体18" alias.en="" alias.zh_TW="表體18" alias="#1" desc.zh_TW="表體18" desc.en="" desc.zh_CN="表体18" desc="#1" info="tabEntry18.bos-query" />
  26. <Reference name="tabEntry19" alias.zh_CN="表体19" alias.en="" alias.zh_TW="表體19" alias="#1" desc.zh_TW="表體19" desc.en="" desc.zh_CN="表体19" desc="#1" info="tabEntry19.bos-query" />
  27. <Reference name="tabEntry20" alias.zh_CN="表体20" alias.en="" alias.zh_TW="表體20" alias="#1" desc.zh_TW="表體20" desc.en="" desc.zh_CN="表体20" desc="#1" info="tabEntry20.bos-query" />
  28. </DataSources>
  29. <Styles version="1.0">
  30. <Style id="3">
  31. <Borders>
  32. <Border position="left" lineStyle="NullLine" />
  33. <Border position="top" lineStyle="NullLine" />
  34. <Border position="right" lineStyle="NullLine" />
  35. <Border position="bottom" lineStyle="NullLine" />
  36. </Borders>
  37. <Alignment horizontal="left" wrapText="true" />
  38. </Style>
  39. <Style id="7">
  40. <Font size="9" />
  41. <Alignment wrapText="true" shrink="true" />
  42. </Style>
  43. <Style id="18">
  44. <Font fontName="宋体" size="9" color="#000000" bold="false" underline="false" italic="false" strikethrough="false" weight="400.0" />
  45. <Borders>
  46. <Border position="left" lineStyle="NullLine" />
  47. <Border position="top" lineStyle="NullLine" />
  48. <Border position="right" lineStyle="NullLine" />
  49. <Border position="bottom" lineStyle="NullLine" />
  50. <Border position="diagonalleft" lineStyle="NullLine" />
  51. <Border position="diagonalright" lineStyle="NullLine" />
  52. </Borders>
  53. <Interior color="#ffffff00" pattern="None" patternColor="#000000" />
  54. <Alignment horizontal="left" vertical="bottom" wrapText="false" rotate="0" shrink="false" lineSpace="0.0" padding="1,1,1,1" clip="true" />
  55. <Protection hidden="false" locked="false" />
  56. </Style>
  57. <Style id="2">
  58. <Borders>
  59. <Border position="left" lineStyle="Single" penStyle="Solid" color="#000000" />
  60. <Border position="top" lineStyle="Single" penStyle="Solid" color="#000000" />
  61. <Border position="right" lineStyle="Single" penStyle="Solid" color="#000000" />
  62. <Border position="bottom" lineStyle="Single" penStyle="Solid" color="#000000" />
  63. </Borders>
  64. </Style>
  65. <Style id="0" />
  66. <Style id="17">
  67. <Font fontName="宋体" size="9" color="#000000" bold="false" underline="false" italic="false" strikethrough="false" weight="400.0" />
  68. <Borders>
  69. <Border position="left" lineStyle="NullLine" />
  70. <Border position="top" lineStyle="NullLine" />
  71. <Border position="right" lineStyle="NullLine" />
  72. <Border position="bottom" lineStyle="NullLine" />
  73. <Border position="diagonalleft" lineStyle="NullLine" />
  74. <Border position="diagonalright" lineStyle="NullLine" />
  75. </Borders>
  76. <Interior color="#ffffff00" pattern="None" patternColor="#000000" />
  77. <Alignment horizontal="left" vertical="bottom" wrapText="false" rotate="0" shrink="false" lineSpace="0.0" padding="1,1,1,1" clip="true" />
  78. <Protection hidden="false" locked="false" />
  79. </Style>
  80. <Style id="14">
  81. <Font fontName="宋体" size="9" color="#000000" bold="false" underline="false" italic="false" strikethrough="false" weight="400.0" />
  82. <Borders>
  83. <Border position="left" lineStyle="NullLine" />
  84. <Border position="top" lineStyle="NullLine" />
  85. <Border position="right" lineStyle="NullLine" />
  86. <Border position="bottom" lineStyle="NullLine" />
  87. <Border position="diagonalleft" lineStyle="NullLine" />
  88. <Border position="diagonalright" lineStyle="NullLine" />
  89. </Borders>
  90. <Interior color="#ffffff00" pattern="None" patternColor="#000000" />
  91. <Alignment horizontal="left" vertical="bottom" wrapText="false" rotate="0" shrink="false" lineSpace="0.0" padding="1,1,1,1" clip="true" />
  92. <Protection hidden="false" locked="false" />
  93. </Style>
  94. <Style id="1">
  95. <Font fontName="宋体" size="14" color="#000000" bold="false" underline="false" italic="false" strikethrough="false" weight="400.0" />
  96. <Borders>
  97. <Border position="left" lineStyle="NullLine" />
  98. <Border position="top" lineStyle="NullLine" />
  99. <Border position="right" lineStyle="NullLine" />
  100. <Border position="bottom" lineStyle="NullLine" />
  101. <Border position="diagonalleft" lineStyle="NullLine" />
  102. <Border position="diagonalright" lineStyle="NullLine" />
  103. </Borders>
  104. <Interior color="#ffffff00" pattern="None" patternColor="#000000" />
  105. <Alignment horizontal="center" vertical="middle" wrapText="false" rotate="0" shrink="false" lineSpace="0.0" padding="1,1,1,1" clip="true" />
  106. <Protection hidden="false" locked="false" />
  107. </Style>
  108. <Style id="6">
  109. <Font fontName="宋体" size="9" color="#000000" bold="false" underline="false" italic="false" strikethrough="false" weight="400.0" />
  110. <Borders>
  111. <Border position="left" lineStyle="NullLine" />
  112. <Border position="top" lineStyle="NullLine" />
  113. <Border position="right" lineStyle="NullLine" />
  114. <Border position="bottom" lineStyle="NullLine" />
  115. <Border position="diagonalleft" lineStyle="NullLine" />
  116. <Border position="diagonalright" lineStyle="NullLine" />
  117. </Borders>
  118. <Interior color="#ffffff00" pattern="None" patternColor="#000000" />
  119. <Alignment horizontal="left" vertical="bottom" wrapText="false" rotate="0" shrink="false" lineSpace="0.0" padding="1,1,1,1" clip="true" />
  120. <Protection hidden="false" locked="false" />
  121. </Style>
  122. <Style id="10">
  123. <Borders>
  124. <Border position="left" lineStyle="Single" penStyle="Solid" color="#000000" />
  125. <Border position="top" lineStyle="Single" penStyle="Solid" color="#000000" />
  126. <Border position="right" lineStyle="Single" penStyle="Solid" color="#000000" />
  127. <Border position="bottom" lineStyle="Single" penStyle="Solid" color="#000000" />
  128. </Borders>
  129. <Alignment horizontal="left" wrapText="true" shrink="true" />
  130. </Style>
  131. <Style id="5">
  132. <Alignment wrapText="true" shrink="true" />
  133. </Style>
  134. <Style id="16">
  135. <Font fontName="宋体" size="9" color="#000000" bold="false" underline="false" italic="false" strikethrough="false" weight="400.0" />
  136. <Borders>
  137. <Border position="left" lineStyle="NullLine" />
  138. <Border position="top" lineStyle="NullLine" />
  139. <Border position="right" lineStyle="NullLine" />
  140. <Border position="bottom" lineStyle="NullLine" />
  141. <Border position="diagonalleft" lineStyle="NullLine" />
  142. <Border position="diagonalright" lineStyle="NullLine" />
  143. </Borders>
  144. <Interior color="#ffffff00" pattern="None" patternColor="#000000" />
  145. <Alignment horizontal="left" vertical="bottom" wrapText="false" rotate="0" shrink="false" lineSpace="0.0" padding="1,1,1,1" clip="true" />
  146. <Protection hidden="false" locked="false" />
  147. </Style>
  148. <Style id="13">
  149. <Font fontName="宋体" size="9" color="#000000" bold="false" underline="false" italic="false" strikethrough="false" weight="400.0" />
  150. <Borders>
  151. <Border position="left" lineStyle="NullLine" />
  152. <Border position="top" lineStyle="NullLine" />
  153. <Border position="right" lineStyle="NullLine" />
  154. <Border position="bottom" lineStyle="NullLine" />
  155. <Border position="diagonalleft" lineStyle="NullLine" />
  156. <Border position="diagonalright" lineStyle="NullLine" />
  157. </Borders>
  158. <Interior color="#ffffff00" pattern="None" patternColor="#000000" />
  159. <Alignment horizontal="left" vertical="bottom" wrapText="false" rotate="0" shrink="false" lineSpace="0.0" padding="1,1,1,1" clip="true" />
  160. <Protection hidden="false" locked="false" />
  161. </Style>
  162. <Style id="15">
  163. <Font fontName="宋体" size="9" color="#000000" bold="false" underline="false" italic="false" strikethrough="false" weight="400.0" />
  164. <Borders>
  165. <Border position="left" lineStyle="NullLine" />
  166. <Border position="top" lineStyle="NullLine" />
  167. <Border position="right" lineStyle="NullLine" />
  168. <Border position="bottom" lineStyle="NullLine" />
  169. <Border position="diagonalleft" lineStyle="NullLine" />
  170. <Border position="diagonalright" lineStyle="NullLine" />
  171. </Borders>
  172. <Interior color="#ffffff00" pattern="None" patternColor="#000000" />
  173. <Alignment horizontal="left" vertical="bottom" wrapText="false" rotate="0" shrink="false" lineSpace="0.0" padding="1,1,1,1" clip="true" />
  174. <Protection hidden="false" locked="false" />
  175. </Style>
  176. <Style id="9">
  177. <Font size="9" />
  178. <Borders>
  179. <Border position="left" lineStyle="Single" penStyle="Solid" color="#000000" />
  180. <Border position="top" lineStyle="Single" penStyle="Solid" color="#000000" />
  181. <Border position="right" lineStyle="Single" penStyle="Solid" color="#000000" />
  182. <Border position="bottom" lineStyle="Single" penStyle="Solid" color="#000000" />
  183. </Borders>
  184. <Alignment wrapText="true" shrink="true" />
  185. </Style>
  186. <Style id="11">
  187. <Font fontName="宋体" size="9" color="#000000" bold="false" underline="false" italic="false" strikethrough="false" weight="400.0" />
  188. <Borders>
  189. <Border position="left" lineStyle="NullLine" />
  190. <Border position="top" lineStyle="NullLine" />
  191. <Border position="right" lineStyle="NullLine" />
  192. <Border position="bottom" lineStyle="NullLine" />
  193. <Border position="diagonalleft" lineStyle="NullLine" />
  194. <Border position="diagonalright" lineStyle="NullLine" />
  195. </Borders>
  196. <Interior color="#ffffff00" pattern="None" patternColor="#000000" />
  197. <Alignment horizontal="left" vertical="bottom" wrapText="false" rotate="0" shrink="false" lineSpace="0.0" padding="1,1,1,1" clip="true" />
  198. <Protection hidden="false" locked="false" />
  199. </Style>
  200. <Style id="4">
  201. <Alignment shrink="true" />
  202. </Style>
  203. <Style id="19">
  204. <Borders>
  205. <Border position="left" lineStyle="Single" penStyle="Solid" color="#000000" />
  206. <Border position="top" lineStyle="Single" penStyle="Solid" color="#000000" />
  207. <Border position="right" lineStyle="Single" penStyle="Solid" color="#000000" />
  208. <Border position="bottom" lineStyle="Single" penStyle="Solid" color="#000000" />
  209. </Borders>
  210. <Alignment horizontal="left" />
  211. </Style>
  212. <Style id="8">
  213. <Alignment shrink="false" />
  214. </Style>
  215. <Style id="12">
  216. <Font fontName="宋体" size="9" color="#000000" bold="false" underline="false" italic="false" strikethrough="false" weight="400.0" />
  217. <Borders>
  218. <Border position="left" lineStyle="NullLine" />
  219. <Border position="top" lineStyle="NullLine" />
  220. <Border position="right" lineStyle="NullLine" />
  221. <Border position="bottom" lineStyle="NullLine" />
  222. <Border position="diagonalleft" lineStyle="NullLine" />
  223. <Border position="diagonalright" lineStyle="NullLine" />
  224. </Borders>
  225. <Interior color="#ffffff00" pattern="None" patternColor="#000000" />
  226. <Alignment horizontal="left" vertical="bottom" wrapText="false" rotate="0" shrink="false" lineSpace="0.0" padding="1,1,1,1" clip="true" />
  227. <Protection hidden="false" locked="false" />
  228. </Style>
  229. </Styles>
  230. <Report type="r1-print" version="6.2.0">
  231. <Page id="page1" width="1720" height="7000" heightSyncFromPaper="false">
  232. <Sub-objects>
  233. <PrintLayoutGrid id="layoutGrid1" styleId="0" x="4" y="7">
  234. <Data />
  235. <Col width="1695" id="column1" />
  236. <TR height="95" id="row1">
  237. <TD id="cell1" styleId="0">
  238. <Sub-objects>
  239. <Text id="text1" styleId="1" x="0" y="0" width="1693" height="93" horizontalFill="true" verticalFill="true">
  240. <Data dataSource="title" bindField="title" />
  241. </Text>
  242. </Sub-objects>
  243. </TD>
  244. </TR>
  245. </PrintLayoutGrid>
  246. <PrintLayoutGrid id="layoutGrid2" styleId="0" x="4" y="110">
  247. <Data />
  248. <Col width="1695" id="column2" />
  249. <TR height="794" id="row2" styleId="0" autoAdjustHeight="true">
  250. <TD id="cell2" styleId="0">
  251. <Sub-objects>
  252. <DynamicList id="dynamicList2" styleId="2" x="0" y="0" width="1693" height="792" horizontalFill="true" verticalFill="true" orientation="horizontal" adjustHeight="true" useOutWidth="true">
  253. <Data dataSource="tabHead">
  254. <Transpose>
  255. <Field name="1" alias="1" />
  256. <Field name="2" alias="2" />
  257. <Field name="3" alias="3" />
  258. <Field name="4" alias="4" />
  259. <Field name="5" alias="5" />
  260. <Field name="6" alias="6" />
  261. <Field name="7" alias="7" />
  262. <Field name="8" alias="8" />
  263. <Field name="9" alias="9" />
  264. <Field name="10" alias="10" />
  265. <Field name="11" alias="11" />
  266. <Field name="12" alias="12" />
  267. <Field name="13" alias="13" />
  268. <Field name="14" alias="14" />
  269. <Field name="15" alias="15" />
  270. <Field name="16" alias="16" />
  271. <Field name="17" alias="17" />
  272. <Field name="18" alias="18" />
  273. <Field name="19" alias="19" />
  274. <Field name="20" alias="20" />
  275. <Field name="21" alias="21" />
  276. <Field name="22" alias="22" />
  277. <Field name="23" alias="23" />
  278. <Field name="24" alias="24" />
  279. <Field name="25" alias="25" />
  280. <Field name="26" alias="26" />
  281. <Field name="27" alias="27" />
  282. <Field name="28" alias="28" />
  283. <Field name="29" alias="29" />
  284. <Field name="30" alias="30" />
  285. <Field name="31" alias="31" />
  286. <Field name="32" alias="32" />
  287. <Field name="33" alias="33" />
  288. <Field name="34" alias="34" />
  289. <Field name="35" alias="35" />
  290. <Field name="36" alias="35" />
  291. <Field name="37" alias="37" />
  292. <Field name="38" alias="38" />
  293. <Field name="39" alias="39" />
  294. <Field name="40" alias="40" />
  295. <Field name="41" alias="41" />
  296. <Field name="42" alias="42" />
  297. <Field name="43" alias="43" />
  298. <Field name="44" alias="44" />
  299. <Field name="45" alias="45" />
  300. <Field name="46" alias="46" />
  301. <Field name="47" alias="47" />
  302. <Field name="48" alias="48" />
  303. <Field name="49" alias="49" />
  304. <Field name="50" alias="50" />
  305. <Field name="51" alias="51" />
  306. <Field name="52" alias="52" />
  307. <Field name="53" alias="53" />
  308. <Field name="54" alias="54" />
  309. <Field name="55" alias="55" />
  310. <Field name="56" alias="56" />
  311. <Field name="57" alias="57" />
  312. <Field name="58" alias="58" />
  313. <Field name="59" alias="59" />
  314. <Field name="60" alias="60" />
  315. <Field name="61" alias="61" />
  316. <Field name="62" alias="62" />
  317. <Field name="63" alias="63" />
  318. <Field name="64" alias="63" />
  319. <Field name="65" alias="65" />
  320. <Field name="66" alias="66" />
  321. <Field name="67" alias="67" />
  322. <Field name="68" alias="68" />
  323. </Transpose>
  324. </Data>
  325. <DynamicUnit id="dynamicUnit2" styleId="0" width="281" height="67">
  326. <PreScript><![CDATA[getFieldValue("itemName")]]></PreScript>
  327. <Sub-objects>
  328. <PrintLayoutGrid id="layoutGrid3" styleId="0" x="0" y="0" horizontalFill="true" verticalFill="true">
  329. <Data />
  330. <Col width="281" id="column3" />
  331. <TR height="67" id="row11">
  332. <TD id="cell3" styleId="3">
  333. <Script><![CDATA[setValue(getFieldValue("itemValue"));]]></Script>
  334. <Value type="text" />
  335. </TD>
  336. </TR>
  337. </PrintLayoutGrid>
  338. </Sub-objects>
  339. </DynamicUnit>
  340. </DynamicList>
  341. </Sub-objects>
  342. </TD>
  343. </TR>
  344. <TR height="295" id="row3" styleId="4" autoAdjustHeight="true">
  345. <PreScript><![CDATA[var trueSize = getFieldValue("tabCols","trueSize");
  346. var width = 1695 / trueSize;
  347. set("varVisibleColIdx", trueSize);
  348. set("varWidth",toInt(width));
  349. setHide(getFieldValue("tabHeadAndEnd","1") == null);]]></PreScript>
  350. <TD id="cell5" styleId="5">
  351. <Sub-objects>
  352. <PrintLayoutGrid id="layoutGrid4" styleId="5" x="0" y="0" horizontalFill="true">
  353. <Data />
  354. <Col width="1693" id="column24" />
  355. <TR height="80" id="row4" styleId="0" autoAdjustHeight="true">
  356. <TD id="cell8" styleId="5">
  357. <Sub-objects>
  358. <Text id="text4" styleId="6" x="0" y="0" width="1691" height="78" horizontalFill="true" verticalFill="true">
  359. <Data dataSource="tabHeadAndEnd" bindField="1" />
  360. </Text>
  361. </Sub-objects>
  362. </TD>
  363. </TR>
  364. <TR height="140" id="row6" styleId="0" autoAdjustHeight="true">
  365. <TD id="cell13" styleId="5">
  366. <Sub-objects>
  367. <PrintDataGrid id="dataGrid2" styleId="7" x="0" y="20" horizontalFill="true">
  368. <Data dataSource="tabEntry1" />
  369. <Col width="114" id="column25" styleId="0">
  370. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  371. </Col>
  372. <Col width="85" id="column4" styleId="0">
  373. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  374. </Col>
  375. <Col width="98" id="column5" styleId="0">
  376. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  377. </Col>
  378. <Col width="89" id="column6" styleId="0">
  379. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  380. <Script><![CDATA[if(get("varVisibleColIdx") < 4)
  381. {
  382. setHide(true)
  383. }
  384. ]]></Script>
  385. </Col>
  386. <Col width="101" id="column7" styleId="0">
  387. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  388. <Script><![CDATA[if(get("varVisibleColIdx") < 5)
  389. {
  390. setHide(true)
  391. }
  392. ]]></Script>
  393. </Col>
  394. <Col width="101" id="column8" styleId="0">
  395. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  396. <Script><![CDATA[if(get("varVisibleColIdx") < 6)
  397. {
  398. setHide(true)
  399. }
  400. ]]></Script>
  401. </Col>
  402. <Col width="81" id="column9" styleId="0">
  403. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  404. <Script><![CDATA[if(get("varVisibleColIdx") < 7)
  405. {
  406. setHide(true)
  407. }
  408. ]]></Script>
  409. </Col>
  410. <Col width="84" id="column10" styleId="0">
  411. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  412. <Script><![CDATA[if(get("varVisibleColIdx") < 8)
  413. {
  414. setHide(true)
  415. }
  416. ]]></Script>
  417. </Col>
  418. <Col width="94" id="column11" styleId="0">
  419. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  420. <Script><![CDATA[if(get("varVisibleColIdx") < 9)
  421. {
  422. setHide(true)
  423. }
  424. ]]></Script>
  425. </Col>
  426. <Col width="80" id="column12" styleId="0">
  427. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  428. <Script><![CDATA[if(get("varVisibleColIdx") < 10)
  429. {
  430. setHide(true)
  431. }
  432. ]]></Script>
  433. </Col>
  434. <Col width="86" id="column13" styleId="0">
  435. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  436. <Script><![CDATA[if(get("varVisibleColIdx") < 11)
  437. {
  438. setHide(true)
  439. }
  440. ]]></Script>
  441. </Col>
  442. <Col width="81" id="column14" styleId="0">
  443. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  444. <Script><![CDATA[if(get("varVisibleColIdx") < 12)
  445. {
  446. setHide(true)
  447. }
  448. ]]></Script>
  449. </Col>
  450. <Col width="84" id="column15" styleId="0">
  451. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  452. <Script><![CDATA[if(get("varVisibleColIdx") < 13)
  453. {
  454. setHide(true)
  455. }
  456. ]]></Script>
  457. </Col>
  458. <Col width="79" id="column16" styleId="0">
  459. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  460. <Script><![CDATA[if(get("varVisibleColIdx") < 14)
  461. {
  462. setHide(true)
  463. }
  464. ]]></Script>
  465. </Col>
  466. <Col width="86" id="column17" styleId="0">
  467. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  468. <Script><![CDATA[if(get("varVisibleColIdx") < 15)
  469. {
  470. setHide(true)
  471. }
  472. ]]></Script>
  473. </Col>
  474. <Col width="82" id="column18" styleId="0">
  475. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  476. <Script><![CDATA[if(get("varVisibleColIdx") < 16)
  477. {
  478. setHide(true)
  479. }
  480. ]]></Script>
  481. </Col>
  482. <Col width="83" id="column19" styleId="0">
  483. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  484. <Script><![CDATA[if(get("varVisibleColIdx") < 17)
  485. {
  486. setHide(true)
  487. }
  488. ]]></Script>
  489. </Col>
  490. <Col width="66" id="column20" styleId="0">
  491. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  492. <Script><![CDATA[if(get("varVisibleColIdx") < 18)
  493. {
  494. setHide(true)
  495. }
  496. ]]></Script>
  497. </Col>
  498. <Col width="61" id="column21" styleId="0">
  499. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  500. <Script><![CDATA[if(get("varVisibleColIdx") < 19)
  501. {
  502. setHide(true)
  503. }
  504. ]]></Script>
  505. </Col>
  506. <Col width="56" id="column22" styleId="0">
  507. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  508. <Script><![CDATA[if(get("varVisibleColIdx") < 20)
  509. {
  510. setHide(true)
  511. }
  512. if(cell6.getValue()=="节点")
  513. {
  514. setProperty("style.border-right-width", 0);
  515. setProperty("style.border-left-width", 0);
  516. setProperty("style.border-top-width", 0);
  517. }
  518. ]]></Script>
  519. </Col>
  520. <TR height="93" type="detail" autoAdjustHeight="true" id="row9" styleId="8">
  521. <TD id="cell11" styleId="9">
  522. <Value type="field">cell1</Value>
  523. </TD>
  524. <TD id="cell4" styleId="9">
  525. <Script><![CDATA[if(cell11.getValue()=="合计" || cell11.getValue()=="绩效等级" || cell4.getValue()=="评语")
  526. {
  527. setProperty("style.border-right-width", 0);
  528. setProperty("style.border-left-width", 0);
  529. }
  530. if(cell6.getValue()=="节点")
  531. {
  532. setProperty("style.border-right-width", 0);
  533. setProperty("style.border-left-width", 0);
  534. setProperty("style.border-top-width", 0);
  535. setProperty("style.font-size", 0);
  536. }]]></Script>
  537. <Value type="field">cell2</Value>
  538. </TD>
  539. <TD id="cell6" styleId="9">
  540. <Script><![CDATA[if(cell11.getValue()=="合计" || cell11.getValue()=="绩效等级" || cell4.getValue()=="评语")
  541. { if(get("varVisibleColIdx") == 3)
  542. {
  543. setProperty("style.border-left-width", 0);
  544. }
  545. else
  546. {
  547. setProperty("style.border-right-width", 0);
  548. setProperty("style.border-left-width", 0);
  549. }
  550. }
  551. if(cell6.getValue()=="节点")
  552. {
  553. setProperty("style.border-right-width", 0);
  554. setProperty("style.border-left-width", 0);
  555. setProperty("style.border-top-width", 0);
  556. }]]></Script>
  557. <Value type="field">cell3</Value>
  558. </TD>
  559. <TD id="cell7" styleId="9">
  560. <Script><![CDATA[if(cell11.getValue()=="合计" || cell11.getValue()=="绩效等级" || cell4.getValue()=="评语")
  561. {
  562. if(get("varVisibleColIdx") == 4)
  563. {
  564. setProperty("style.border-left-width", 0);
  565. }
  566. else
  567. {
  568. setProperty("style.border-right-width", 0);
  569. setProperty("style.border-left-width", 0);
  570. }
  571. }
  572. if(cell6.getValue()=="节点")
  573. {
  574. setProperty("style.border-right-width", 0);
  575. setProperty("style.border-left-width", 0);
  576. setProperty("style.border-top-width", 0);
  577. }]]></Script>
  578. <Value type="field">cell4</Value>
  579. </TD>
  580. <TD id="cell9" styleId="9">
  581. <Script><![CDATA[if(cell11.getValue()=="合计" || cell11.getValue()=="绩效等级" || cell4.getValue()=="评语")
  582. { if(get("varVisibleColIdx") == 5)
  583. {
  584. setProperty("style.border-left-width", 0);
  585. }
  586. else
  587. {
  588. setProperty("style.border-right-width", 0);
  589. setProperty("style.border-left-width", 0);
  590. }
  591. }
  592. if(cell6.getValue()=="节点")
  593. {
  594. setProperty("style.border-right-width", 0);
  595. setProperty("style.border-left-width", 0);
  596. setProperty("style.border-top-width", 0);
  597. }]]></Script>
  598. <Value type="field">cell5</Value>
  599. </TD>
  600. <TD id="cell10" styleId="9">
  601. <Script><![CDATA[if(cell11.getValue()=="合计" || cell11.getValue()=="绩效等级" || cell4.getValue()=="评语")
  602. { if(get("varVisibleColIdx") == 6)
  603. {
  604. setProperty("style.border-left-width", 0);
  605. }
  606. else
  607. {
  608. setProperty("style.border-right-width", 0);
  609. setProperty("style.border-left-width", 0);
  610. }
  611. }
  612. if(cell6.getValue()=="节点")
  613. {
  614. setProperty("style.border-right-width", 0);
  615. setProperty("style.border-left-width", 0);
  616. setProperty("style.border-top-width", 0);
  617. }]]></Script>
  618. <Value type="field">cell6</Value>
  619. </TD>
  620. <TD id="cell12" styleId="9">
  621. <Script><![CDATA[if(cell11.getValue()=="合计" || cell11.getValue()=="绩效等级" || cell4.getValue()=="评语")
  622. {
  623. if(get("varVisibleColIdx") == 7)
  624. {
  625. setProperty("style.border-left-width", 0);
  626. }
  627. else
  628. {
  629. setProperty("style.border-right-width", 0);
  630. setProperty("style.border-left-width", 0);
  631. }
  632. }
  633. if(cell6.getValue()=="节点")
  634. {
  635. setProperty("style.border-right-width", 0);
  636. setProperty("style.border-left-width", 0);
  637. setProperty("style.border-top-width", 0);
  638. }]]></Script>
  639. <Value type="field">cell7</Value>
  640. </TD>
  641. <TD id="cell14" styleId="9">
  642. <Script><![CDATA[if(cell11.getValue()=="合计" || cell11.getValue()=="绩效等级" || cell4.getValue()=="评语")
  643. {
  644. if(get("varVisibleColIdx") == 8)
  645. {
  646. setProperty("style.border-left-width", 0);
  647. }
  648. else
  649. {
  650. setProperty("style.border-right-width", 0);
  651. setProperty("style.border-left-width", 0);
  652. }
  653. }
  654. if(cell6.getValue()=="节点")
  655. {
  656. setProperty("style.border-right-width", 0);
  657. setProperty("style.border-left-width", 0);
  658. setProperty("style.border-top-width", 0);
  659. }]]></Script>
  660. <Value type="field">cell8</Value>
  661. </TD>
  662. <TD id="cell15" styleId="9">
  663. <Script><![CDATA[if(cell11.getValue()=="合计" || cell11.getValue()=="绩效等级" || cell4.getValue()=="评语")
  664. {
  665. if(get("varVisibleColIdx") == 9)
  666. {
  667. setProperty("style.border-left-width", 0);
  668. }
  669. else
  670. {
  671. setProperty("style.border-right-width", 0);
  672. setProperty("style.border-left-width", 0);
  673. }
  674. }
  675. if(cell6.getValue()=="节点")
  676. {
  677. setProperty("style.border-right-width", 0);
  678. setProperty("style.border-left-width", 0);
  679. setProperty("style.border-top-width", 0);
  680. }]]></Script>
  681. <Value type="field">cell9</Value>
  682. </TD>
  683. <TD id="cell16" styleId="9">
  684. <Script><![CDATA[if(cell11.getValue()=="合计" || cell11.getValue()=="绩效等级" || cell4.getValue()=="评语")
  685. {
  686. if(get("varVisibleColIdx") == 10)
  687. {
  688. setProperty("style.border-left-width", 0);
  689. }
  690. else
  691. {
  692. setProperty("style.border-right-width", 0);
  693. setProperty("style.border-left-width", 0);
  694. }
  695. }
  696. if(cell6.getValue()=="节点")
  697. {
  698. setProperty("style.border-right-width", 0);
  699. setProperty("style.border-left-width", 0);
  700. setProperty("style.border-top-width", 0);
  701. }]]></Script>
  702. <Value type="field">cell10</Value>
  703. </TD>
  704. <TD id="cell18" styleId="9">
  705. <Script><![CDATA[if(cell11.getValue()=="合计" || cell11.getValue()=="绩效等级" || cell4.getValue()=="评语")
  706. {
  707. if(get("varVisibleColIdx") == 11)
  708. {
  709. setProperty("style.border-left-width", 0);
  710. }
  711. else
  712. {
  713. setProperty("style.border-right-width", 0);
  714. setProperty("style.border-left-width", 0);
  715. }
  716. }
  717. if(cell6.getValue()=="节点")
  718. {
  719. setProperty("style.border-right-width", 0);
  720. setProperty("style.border-left-width", 0);
  721. setProperty("style.border-top-width", 0);
  722. }]]></Script>
  723. <Value type="field">cell11</Value>
  724. </TD>
  725. <TD id="cell19" styleId="9">
  726. <Script><![CDATA[if(cell11.getValue()=="合计" || cell11.getValue()=="绩效等级" || cell4.getValue()=="评语")
  727. {
  728. if(get("varVisibleColIdx") == 12)
  729. {
  730. setProperty("style.border-left-width", 0);
  731. }
  732. else
  733. {
  734. setProperty("style.border-right-width", 0);
  735. setProperty("style.border-left-width", 0);
  736. }
  737. }
  738. if(cell6.getValue()=="节点")
  739. {
  740. setProperty("style.border-right-width", 0);
  741. setProperty("style.border-left-width", 0);
  742. setProperty("style.border-top-width", 0);
  743. }]]></Script>
  744. <Value type="field">cell12</Value>
  745. </TD>
  746. <TD id="cell20" styleId="9">
  747. <Script><![CDATA[if(cell11.getValue()=="合计" || cell11.getValue()=="绩效等级" || cell4.getValue()=="评语")
  748. { if(get("varVisibleColIdx") == 13)
  749. {
  750. setProperty("style.border-left-width", 0);
  751. }
  752. else
  753. {
  754. setProperty("style.border-right-width", 0);
  755. setProperty("style.border-left-width", 0);
  756. }
  757. }
  758. if(cell6.getValue()=="节点")
  759. {
  760. setProperty("style.border-right-width", 0);
  761. setProperty("style.border-left-width", 0);
  762. setProperty("style.border-top-width", 0);
  763. }]]></Script>
  764. <Value type="field">cell13</Value>
  765. </TD>
  766. <TD id="cell21" styleId="9">
  767. <Script><![CDATA[if(cell11.getValue()=="合计" || cell11.getValue()=="绩效等级" || cell4.getValue()=="评语")
  768. {
  769. if(get("varVisibleColIdx") == 14)
  770. {
  771. setProperty("style.border-left-width", 0);
  772. }
  773. else
  774. {
  775. setProperty("style.border-right-width", 0);
  776. setProperty("style.border-left-width", 0);
  777. }
  778. }
  779. if(cell6.getValue()=="节点")
  780. {
  781. setProperty("style.border-right-width", 0);
  782. setProperty("style.border-left-width", 0);
  783. setProperty("style.border-top-width", 0);
  784. }]]></Script>
  785. <Value type="field">cell14</Value>
  786. </TD>
  787. <TD id="cell22" styleId="9">
  788. <Script><![CDATA[if(cell11.getValue()=="合计" || cell11.getValue()=="绩效等级" || cell4.getValue()=="评语")
  789. {
  790. if(get("varVisibleColIdx") == 15)
  791. {
  792. setProperty("style.border-left-width", 0);
  793. }
  794. else
  795. {
  796. setProperty("style.border-right-width", 0);
  797. setProperty("style.border-left-width", 0);
  798. }
  799. }
  800. if(cell6.getValue()=="节点")
  801. {
  802. setProperty("style.border-right-width", 0);
  803. setProperty("style.border-left-width", 0);
  804. setProperty("style.border-top-width", 0);
  805. }]]></Script>
  806. <Value type="field">cell15</Value>
  807. </TD>
  808. <TD id="cell23" styleId="9">
  809. <Script><![CDATA[if(cell11.getValue()=="合计" || cell11.getValue()=="绩效等级" || cell4.getValue()=="评语")
  810. {
  811. if(get("varVisibleColIdx") == 16)
  812. {
  813. setProperty("style.border-left-width", 0);
  814. }
  815. else
  816. {
  817. setProperty("style.border-right-width", 0);
  818. setProperty("style.border-left-width", 0);
  819. }
  820. }
  821. if(cell6.getValue()=="节点")
  822. {
  823. setProperty("style.border-right-width", 0);
  824. setProperty("style.border-left-width", 0);
  825. setProperty("style.border-top-width", 0);
  826. }]]></Script>
  827. <Value type="field">cell16</Value>
  828. </TD>
  829. <TD id="cell24" styleId="9">
  830. <Script><![CDATA[if(cell11.getValue()=="合计" || cell11.getValue()=="绩效等级" || cell4.getValue()=="评语")
  831. {
  832. if(get("varVisibleColIdx") == 17)
  833. {
  834. setProperty("style.border-left-width", 0);
  835. }
  836. else
  837. {
  838. setProperty("style.border-right-width", 0);
  839. setProperty("style.border-left-width", 0);
  840. }
  841. }
  842. if(cell6.getValue()=="节点")
  843. {
  844. setProperty("style.border-right-width", 0);
  845. setProperty("style.border-left-width", 0);
  846. setProperty("style.border-top-width", 0);
  847. }]]></Script>
  848. <Value type="field">cell17</Value>
  849. </TD>
  850. <TD id="cell25" styleId="9">
  851. <Script><![CDATA[if(cell11.getValue()=="合计" || cell11.getValue()=="绩效等级" || cell4.getValue()=="评语")
  852. {
  853. if(get("varVisibleColIdx") == 18)
  854. {
  855. setProperty("style.border-left-width", 0);
  856. }
  857. else
  858. {
  859. setProperty("style.border-right-width", 0);
  860. setProperty("style.border-left-width", 0);
  861. }
  862. }
  863. if(cell6.getValue()=="节点")
  864. {
  865. setProperty("style.border-right-width", 0);
  866. setProperty("style.border-left-width", 0);
  867. setProperty("style.border-top-width", 0);
  868. }]]></Script>
  869. <Value type="field">cell18</Value>
  870. </TD>
  871. <TD id="cell26" styleId="9">
  872. <Script><![CDATA[if(cell11.getValue()=="合计" || cell11.getValue()=="绩效等级" || cell4.getValue()=="评语")
  873. {
  874. if(get("varVisibleColIdx") == 19)
  875. {
  876. setProperty("style.border-left-width", 0);
  877. }
  878. else
  879. {
  880. setProperty("style.border-right-width", 0);
  881. setProperty("style.border-left-width", 0);
  882. }
  883. }
  884. if(cell6.getValue()=="节点")
  885. {
  886. setProperty("style.border-right-width", 0);
  887. setProperty("style.border-left-width", 0);
  888. setProperty("style.border-top-width", 0);
  889. }]]></Script>
  890. <Value type="field">cell19</Value>
  891. </TD>
  892. <TD id="cell27" styleId="9">
  893. <Script><![CDATA[if(cell11.getValue()=="合计" || cell11.getValue()=="绩效等级" || cell4.getValue()=="评语")
  894. {
  895. setProperty("style.border-left-width", 0);
  896. }
  897. if(cell6.getValue()=="节点")
  898. {
  899. setProperty("style.border-right-width", 0);
  900. setProperty("style.border-left-width", 0);
  901. setProperty("style.border-top-width", 0);
  902. }]]></Script>
  903. <Value type="field">cell20</Value>
  904. </TD>
  905. </TR>
  906. </PrintDataGrid>
  907. </Sub-objects>
  908. </TD>
  909. </TR>
  910. <TR height="80" id="row8" styleId="0" autoAdjustHeight="true">
  911. <TD id="cell17" styleId="10">
  912. <Value type="field" dataSource="tabHeadAndEnd">2</Value>
  913. </TD>
  914. </TR>
  915. </PrintLayoutGrid>
  916. </Sub-objects>
  917. </TD>
  918. </TR>
  919. <TR height="295" id="row5" styleId="5" autoAdjustHeight="true">
  920. <PreScript><![CDATA[setHide(getFieldValue("tabHeadAndEnd","3")==null);]]></PreScript>
  921. <TD id="cell28" styleId="5">
  922. <Sub-objects>
  923. <PrintLayoutGrid id="layoutGrid5" styleId="5" x="0" y="0" horizontalFill="true">
  924. <Data />
  925. <Col width="1693" id="column45" />
  926. <TR height="80" id="row10" styleId="0" autoAdjustHeight="true">
  927. <TD id="cell29" styleId="5">
  928. <Sub-objects>
  929. <Text id="text3" styleId="11" x="0" y="0" width="1691" height="78" horizontalFill="true" verticalFill="true">
  930. <Data dataSource="tabHeadAndEnd" bindField="3" />
  931. </Text>
  932. </Sub-objects>
  933. </TD>
  934. </TR>
  935. <TR height="140" id="row12" styleId="0" autoAdjustHeight="true">
  936. <TD id="cell30" styleId="5">
  937. <Sub-objects>
  938. <PrintDataGrid id="dataGrid1" styleId="7" x="0" y="20" horizontalFill="true">
  939. <Data dataSource="tabEntry2" />
  940. <Col width="114" id="column23" styleId="0">
  941. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  942. </Col>
  943. <Col width="85" id="column26" styleId="0">
  944. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  945. </Col>
  946. <Col width="98" id="column27" styleId="0">
  947. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  948. </Col>
  949. <Col width="89" id="column28" styleId="0">
  950. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  951. <Script><![CDATA[if(get("varVisibleColIdx") < 4)
  952. {
  953. setHide(true)
  954. }
  955. ]]></Script>
  956. </Col>
  957. <Col width="101" id="column29" styleId="0">
  958. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  959. <Script><![CDATA[if(get("varVisibleColIdx") < 5)
  960. {
  961. setHide(true)
  962. }
  963. ]]></Script>
  964. </Col>
  965. <Col width="101" id="column30" styleId="0">
  966. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  967. <Script><![CDATA[if(get("varVisibleColIdx") < 6)
  968. {
  969. setHide(true)
  970. }
  971. ]]></Script>
  972. </Col>
  973. <Col width="81" id="column31" styleId="0">
  974. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  975. <Script><![CDATA[if(get("varVisibleColIdx") < 7)
  976. {
  977. setHide(true)
  978. }
  979. ]]></Script>
  980. </Col>
  981. <Col width="84" id="column32" styleId="0">
  982. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  983. <Script><![CDATA[if(get("varVisibleColIdx") < 8)
  984. {
  985. setHide(true)
  986. }
  987. ]]></Script>
  988. </Col>
  989. <Col width="94" id="column33" styleId="0">
  990. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  991. <Script><![CDATA[if(get("varVisibleColIdx") < 9)
  992. {
  993. setHide(true)
  994. }
  995. ]]></Script>
  996. </Col>
  997. <Col width="80" id="column34" styleId="0">
  998. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  999. <Script><![CDATA[if(get("varVisibleColIdx") < 10)
  1000. {
  1001. setHide(true)
  1002. }
  1003. ]]></Script>
  1004. </Col>
  1005. <Col width="86" id="column35" styleId="0">
  1006. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  1007. <Script><![CDATA[if(get("varVisibleColIdx") < 11)
  1008. {
  1009. setHide(true)
  1010. }
  1011. ]]></Script>
  1012. </Col>
  1013. <Col width="81" id="column36" styleId="0">
  1014. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  1015. <Script><![CDATA[if(get("varVisibleColIdx") < 12)
  1016. {
  1017. setHide(true)
  1018. }
  1019. ]]></Script>
  1020. </Col>
  1021. <Col width="84" id="column37" styleId="0">
  1022. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  1023. <Script><![CDATA[if(get("varVisibleColIdx") < 13)
  1024. {
  1025. setHide(true)
  1026. }
  1027. ]]></Script>
  1028. </Col>
  1029. <Col width="79" id="column38" styleId="0">
  1030. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  1031. <Script><![CDATA[if(get("varVisibleColIdx") < 14)
  1032. {
  1033. setHide(true)
  1034. }
  1035. ]]></Script>
  1036. </Col>
  1037. <Col width="86" id="column39" styleId="0">
  1038. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  1039. <Script><![CDATA[if(get("varVisibleColIdx") < 15)
  1040. {
  1041. setHide(true)
  1042. }
  1043. ]]></Script>
  1044. </Col>
  1045. <Col width="82" id="column40" styleId="0">
  1046. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  1047. <Script><![CDATA[if(get("varVisibleColIdx") < 16)
  1048. {
  1049. setHide(true)
  1050. }
  1051. ]]></Script>
  1052. </Col>
  1053. <Col width="83" id="column41" styleId="0">
  1054. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  1055. <Script><![CDATA[if(get("varVisibleColIdx") < 17)
  1056. {
  1057. setHide(true)
  1058. }
  1059. ]]></Script>
  1060. </Col>
  1061. <Col width="66" id="column42" styleId="0">
  1062. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  1063. <Script><![CDATA[if(get("varVisibleColIdx") < 18)
  1064. {
  1065. setHide(true)
  1066. }
  1067. ]]></Script>
  1068. </Col>
  1069. <Col width="61" id="column43" styleId="0">
  1070. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  1071. <Script><![CDATA[if(get("varVisibleColIdx") < 19)
  1072. {
  1073. setHide(true)
  1074. }
  1075. ]]></Script>
  1076. </Col>
  1077. <Col width="56" id="column44" styleId="0">
  1078. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  1079. <Script><![CDATA[if(get("varVisibleColIdx") < 20)
  1080. {
  1081. setHide(true)
  1082. }
  1083. if(cell6.getValue()=="节点")
  1084. {
  1085. setProperty("style.border-right-width", 0);
  1086. setProperty("style.border-left-width", 0);
  1087. setProperty("style.border-top-width", 0);
  1088. }
  1089. ]]></Script>
  1090. </Col>
  1091. <TR height="93" type="detail" autoAdjustHeight="true" id="row7" styleId="8">
  1092. <TD id="cell31" styleId="9">
  1093. <Value type="field">cell1</Value>
  1094. </TD>
  1095. <TD id="cell32" styleId="9">
  1096. <Script><![CDATA[if(cell31.getValue()=="合计" || cell31.getValue()=="绩效等级" || cell4.getValue()=="评语")
  1097. {
  1098. setProperty("style.border-right-width", 0);
  1099. setProperty("style.border-left-width", 0);
  1100. }
  1101. if(cell6.getValue()=="节点")
  1102. {
  1103. setProperty("style.border-right-width", 0);
  1104. setProperty("style.border-left-width", 0);
  1105. setProperty("style.border-top-width", 0);
  1106. setProperty("style.font-size", 0);
  1107. }]]></Script>
  1108. <Value type="field">cell2</Value>
  1109. </TD>
  1110. <TD id="cell33" styleId="9">
  1111. <Script><![CDATA[if(cell31.getValue()=="合计" || cell31.getValue()=="绩效等级" || cell4.getValue()=="评语")
  1112. { if(get("varVisibleColIdx") == 3)
  1113. {
  1114. setProperty("style.border-left-width", 0);
  1115. }
  1116. else
  1117. {
  1118. setProperty("style.border-right-width", 0);
  1119. setProperty("style.border-left-width", 0);
  1120. }
  1121. }
  1122. if(cell6.getValue()=="节点")
  1123. {
  1124. setProperty("style.border-right-width", 0);
  1125. setProperty("style.border-left-width", 0);
  1126. setProperty("style.border-top-width", 0);
  1127. }]]></Script>
  1128. <Value type="field">cell3</Value>
  1129. </TD>
  1130. <TD id="cell34" styleId="9">
  1131. <Script><![CDATA[if(cell31.getValue()=="合计" || cell31.getValue()=="绩效等级" || cell4.getValue()=="评语")
  1132. {
  1133. if(get("varVisibleColIdx") == 4)
  1134. {
  1135. setProperty("style.border-left-width", 0);
  1136. }
  1137. else
  1138. {
  1139. setProperty("style.border-right-width", 0);
  1140. setProperty("style.border-left-width", 0);
  1141. }
  1142. }
  1143. if(cell6.getValue()=="节点")
  1144. {
  1145. setProperty("style.border-right-width", 0);
  1146. setProperty("style.border-left-width", 0);
  1147. setProperty("style.border-top-width", 0);
  1148. }]]></Script>
  1149. <Value type="field">cell4</Value>
  1150. </TD>
  1151. <TD id="cell35" styleId="9">
  1152. <Script><![CDATA[if(cell31.getValue()=="合计" || cell31.getValue()=="绩效等级" || cell4.getValue()=="评语")
  1153. { if(get("varVisibleColIdx") == 5)
  1154. {
  1155. setProperty("style.border-left-width", 0);
  1156. }
  1157. else
  1158. {
  1159. setProperty("style.border-right-width", 0);
  1160. setProperty("style.border-left-width", 0);
  1161. }
  1162. }
  1163. if(cell6.getValue()=="节点")
  1164. {
  1165. setProperty("style.border-right-width", 0);
  1166. setProperty("style.border-left-width", 0);
  1167. setProperty("style.border-top-width", 0);
  1168. }]]></Script>
  1169. <Value type="field">cell5</Value>
  1170. </TD>
  1171. <TD id="cell36" styleId="9">
  1172. <Script><![CDATA[if(cell31.getValue()=="合计" || cell31.getValue()=="绩效等级" || cell4.getValue()=="评语")
  1173. { if(get("varVisibleColIdx") == 6)
  1174. {
  1175. setProperty("style.border-left-width", 0);
  1176. }
  1177. else
  1178. {
  1179. setProperty("style.border-right-width", 0);
  1180. setProperty("style.border-left-width", 0);
  1181. }
  1182. }
  1183. if(cell6.getValue()=="节点")
  1184. {
  1185. setProperty("style.border-right-width", 0);
  1186. setProperty("style.border-left-width", 0);
  1187. setProperty("style.border-top-width", 0);
  1188. }]]></Script>
  1189. <Value type="field">cell6</Value>
  1190. </TD>
  1191. <TD id="cell37" styleId="9">
  1192. <Script><![CDATA[if(cell31.getValue()=="合计" || cell31.getValue()=="绩效等级" || cell4.getValue()=="评语")
  1193. {
  1194. if(get("varVisibleColIdx") == 7)
  1195. {
  1196. setProperty("style.border-left-width", 0);
  1197. }
  1198. else
  1199. {
  1200. setProperty("style.border-right-width", 0);
  1201. setProperty("style.border-left-width", 0);
  1202. }
  1203. }
  1204. if(cell6.getValue()=="节点")
  1205. {
  1206. setProperty("style.border-right-width", 0);
  1207. setProperty("style.border-left-width", 0);
  1208. setProperty("style.border-top-width", 0);
  1209. }]]></Script>
  1210. <Value type="field">cell7</Value>
  1211. </TD>
  1212. <TD id="cell38" styleId="9">
  1213. <Script><![CDATA[if(cell31.getValue()=="合计" || cell31.getValue()=="绩效等级" || cell4.getValue()=="评语")
  1214. {
  1215. if(get("varVisibleColIdx") == 8)
  1216. {
  1217. setProperty("style.border-left-width", 0);
  1218. }
  1219. else
  1220. {
  1221. setProperty("style.border-right-width", 0);
  1222. setProperty("style.border-left-width", 0);
  1223. }
  1224. }
  1225. if(cell6.getValue()=="节点")
  1226. {
  1227. setProperty("style.border-right-width", 0);
  1228. setProperty("style.border-left-width", 0);
  1229. setProperty("style.border-top-width", 0);
  1230. }]]></Script>
  1231. <Value type="field">cell8</Value>
  1232. </TD>
  1233. <TD id="cell39" styleId="9">
  1234. <Script><![CDATA[if(cell31.getValue()=="合计" || cell31.getValue()=="绩效等级" || cell4.getValue()=="评语")
  1235. {
  1236. if(get("varVisibleColIdx") == 9)
  1237. {
  1238. setProperty("style.border-left-width", 0);
  1239. }
  1240. else
  1241. {
  1242. setProperty("style.border-right-width", 0);
  1243. setProperty("style.border-left-width", 0);
  1244. }
  1245. }
  1246. if(cell6.getValue()=="节点")
  1247. {
  1248. setProperty("style.border-right-width", 0);
  1249. setProperty("style.border-left-width", 0);
  1250. setProperty("style.border-top-width", 0);
  1251. }]]></Script>
  1252. <Value type="field">cell9</Value>
  1253. </TD>
  1254. <TD id="cell40" styleId="9">
  1255. <Script><![CDATA[if(cell31.getValue()=="合计" || cell31.getValue()=="绩效等级" || cell4.getValue()=="评语")
  1256. {
  1257. if(get("varVisibleColIdx") == 10)
  1258. {
  1259. setProperty("style.border-left-width", 0);
  1260. }
  1261. else
  1262. {
  1263. setProperty("style.border-right-width", 0);
  1264. setProperty("style.border-left-width", 0);
  1265. }
  1266. }
  1267. if(cell6.getValue()=="节点")
  1268. {
  1269. setProperty("style.border-right-width", 0);
  1270. setProperty("style.border-left-width", 0);
  1271. setProperty("style.border-top-width", 0);
  1272. }]]></Script>
  1273. <Value type="field">cell10</Value>
  1274. </TD>
  1275. <TD id="cell41" styleId="9">
  1276. <Script><![CDATA[if(cell31.getValue()=="合计" || cell31.getValue()=="绩效等级" || cell4.getValue()=="评语")
  1277. {
  1278. if(get("varVisibleColIdx") == 11)
  1279. {
  1280. setProperty("style.border-left-width", 0);
  1281. }
  1282. else
  1283. {
  1284. setProperty("style.border-right-width", 0);
  1285. setProperty("style.border-left-width", 0);
  1286. }
  1287. }
  1288. if(cell6.getValue()=="节点")
  1289. {
  1290. setProperty("style.border-right-width", 0);
  1291. setProperty("style.border-left-width", 0);
  1292. setProperty("style.border-top-width", 0);
  1293. }]]></Script>
  1294. <Value type="field">cell11</Value>
  1295. </TD>
  1296. <TD id="cell42" styleId="9">
  1297. <Script><![CDATA[if(cell31.getValue()=="合计" || cell31.getValue()=="绩效等级" || cell4.getValue()=="评语")
  1298. {
  1299. if(get("varVisibleColIdx") == 12)
  1300. {
  1301. setProperty("style.border-left-width", 0);
  1302. }
  1303. else
  1304. {
  1305. setProperty("style.border-right-width", 0);
  1306. setProperty("style.border-left-width", 0);
  1307. }
  1308. }
  1309. if(cell6.getValue()=="节点")
  1310. {
  1311. setProperty("style.border-right-width", 0);
  1312. setProperty("style.border-left-width", 0);
  1313. setProperty("style.border-top-width", 0);
  1314. }]]></Script>
  1315. <Value type="field">cell12</Value>
  1316. </TD>
  1317. <TD id="cell43" styleId="9">
  1318. <Script><![CDATA[if(cell31.getValue()=="合计" || cell31.getValue()=="绩效等级" || cell4.getValue()=="评语")
  1319. { if(get("varVisibleColIdx") == 13)
  1320. {
  1321. setProperty("style.border-left-width", 0);
  1322. }
  1323. else
  1324. {
  1325. setProperty("style.border-right-width", 0);
  1326. setProperty("style.border-left-width", 0);
  1327. }
  1328. }
  1329. if(cell6.getValue()=="节点")
  1330. {
  1331. setProperty("style.border-right-width", 0);
  1332. setProperty("style.border-left-width", 0);
  1333. setProperty("style.border-top-width", 0);
  1334. }]]></Script>
  1335. <Value type="field">cell13</Value>
  1336. </TD>
  1337. <TD id="cell44" styleId="9">
  1338. <Script><![CDATA[if(cell31.getValue()=="合计" || cell31.getValue()=="绩效等级" || cell4.getValue()=="评语")
  1339. {
  1340. if(get("varVisibleColIdx") == 14)
  1341. {
  1342. setProperty("style.border-left-width", 0);
  1343. }
  1344. else
  1345. {
  1346. setProperty("style.border-right-width", 0);
  1347. setProperty("style.border-left-width", 0);
  1348. }
  1349. }
  1350. if(cell6.getValue()=="节点")
  1351. {
  1352. setProperty("style.border-right-width", 0);
  1353. setProperty("style.border-left-width", 0);
  1354. setProperty("style.border-top-width", 0);
  1355. }]]></Script>
  1356. <Value type="field">cell14</Value>
  1357. </TD>
  1358. <TD id="cell45" styleId="9">
  1359. <Script><![CDATA[if(cell31.getValue()=="合计" || cell31.getValue()=="绩效等级" || cell4.getValue()=="评语")
  1360. {
  1361. if(get("varVisibleColIdx") == 15)
  1362. {
  1363. setProperty("style.border-left-width", 0);
  1364. }
  1365. else
  1366. {
  1367. setProperty("style.border-right-width", 0);
  1368. setProperty("style.border-left-width", 0);
  1369. }
  1370. }
  1371. if(cell6.getValue()=="节点")
  1372. {
  1373. setProperty("style.border-right-width", 0);
  1374. setProperty("style.border-left-width", 0);
  1375. setProperty("style.border-top-width", 0);
  1376. }]]></Script>
  1377. <Value type="field">cell15</Value>
  1378. </TD>
  1379. <TD id="cell46" styleId="9">
  1380. <Script><![CDATA[if(cell31.getValue()=="合计" || cell31.getValue()=="绩效等级" || cell4.getValue()=="评语")
  1381. { if(get("varVisibleColIdx") == 16)
  1382. {
  1383. setProperty("style.border-left-width", 0);
  1384. }
  1385. else
  1386. {
  1387. setProperty("style.border-right-width", 0);
  1388. setProperty("style.border-left-width", 0);
  1389. }
  1390. }
  1391. if(cell6.getValue()=="节点")
  1392. {
  1393. setProperty("style.border-right-width", 0);
  1394. setProperty("style.border-left-width", 0);
  1395. setProperty("style.border-top-width", 0);
  1396. }]]></Script>
  1397. <Value type="field">cell16</Value>
  1398. </TD>
  1399. <TD id="cell47" styleId="9">
  1400. <Script><![CDATA[if(cell31.getValue()=="合计" || cell31.getValue()=="绩效等级" || cell4.getValue()=="评语")
  1401. {
  1402. if(get("varVisibleColIdx") == 17)
  1403. {
  1404. setProperty("style.border-left-width", 0);
  1405. }
  1406. else
  1407. {
  1408. setProperty("style.border-right-width", 0);
  1409. setProperty("style.border-left-width", 0);
  1410. }
  1411. }
  1412. if(cell6.getValue()=="节点")
  1413. {
  1414. setProperty("style.border-right-width", 0);
  1415. setProperty("style.border-left-width", 0);
  1416. setProperty("style.border-top-width", 0);
  1417. }]]></Script>
  1418. <Value type="field">cell17</Value>
  1419. </TD>
  1420. <TD id="cell48" styleId="9">
  1421. <Script><![CDATA[if(cell31.getValue()=="合计" || cell31.getValue()=="绩效等级" || cell4.getValue()=="评语")
  1422. {
  1423. if(get("varVisibleColIdx") == 18)
  1424. {
  1425. setProperty("style.border-left-width", 0);
  1426. }
  1427. else
  1428. {
  1429. setProperty("style.border-right-width", 0);
  1430. setProperty("style.border-left-width", 0);
  1431. }
  1432. }
  1433. if(cell6.getValue()=="节点")
  1434. {
  1435. setProperty("style.border-right-width", 0);
  1436. setProperty("style.border-left-width", 0);
  1437. setProperty("style.border-top-width", 0);
  1438. }]]></Script>
  1439. <Value type="field">cell18</Value>
  1440. </TD>
  1441. <TD id="cell49" styleId="9">
  1442. <Script><![CDATA[if(cell31.getValue()=="合计" || cell31.getValue()=="绩效等级" || cell4.getValue()=="评语")
  1443. {
  1444. if(get("varVisibleColIdx") == 19)
  1445. {
  1446. setProperty("style.border-left-width", 0);
  1447. }
  1448. else
  1449. {
  1450. setProperty("style.border-right-width", 0);
  1451. setProperty("style.border-left-width", 0);
  1452. }
  1453. }
  1454. if(cell6.getValue()=="节点")
  1455. {
  1456. setProperty("style.border-right-width", 0);
  1457. setProperty("style.border-left-width", 0);
  1458. setProperty("style.border-top-width", 0);
  1459. }]]></Script>
  1460. <Value type="field">cell19</Value>
  1461. </TD>
  1462. <TD id="cell50" styleId="9">
  1463. <Script><![CDATA[if(cell31.getValue()=="合计" || cell31.getValue()=="绩效等级" || cell4.getValue()=="评语")
  1464. {
  1465. setProperty("style.border-left-width", 0);
  1466. }
  1467. if(cell6.getValue()=="节点")
  1468. {
  1469. setProperty("style.border-right-width", 0);
  1470. setProperty("style.border-left-width", 0);
  1471. setProperty("style.border-top-width", 0);
  1472. }]]></Script>
  1473. <Value type="field">cell20</Value>
  1474. </TD>
  1475. </TR>
  1476. </PrintDataGrid>
  1477. </Sub-objects>
  1478. </TD>
  1479. </TR>
  1480. <TR height="80" id="row13" styleId="0" autoAdjustHeight="true">
  1481. <TD id="cell51" styleId="10">
  1482. <Value type="field" dataSource="tabHeadAndEnd">4</Value>
  1483. </TD>
  1484. </TR>
  1485. </PrintLayoutGrid>
  1486. </Sub-objects>
  1487. </TD>
  1488. </TR>
  1489. <TR height="295" id="row15" styleId="5" autoAdjustHeight="true">
  1490. <PreScript><![CDATA[setHide(getFieldValue("tabHeadAndEnd","5")==null);]]></PreScript>
  1491. <TD id="cell53" styleId="5">
  1492. <Sub-objects>
  1493. <PrintLayoutGrid id="layoutGrid6" styleId="5" x="0" y="0" horizontalFill="true">
  1494. <Data />
  1495. <Col width="1693" id="column66" />
  1496. <TR height="80" id="row17" styleId="0" autoAdjustHeight="true">
  1497. <TD id="cell54" styleId="5">
  1498. <Sub-objects>
  1499. <Text id="text6" styleId="12" x="0" y="0" width="1691" height="78" horizontalFill="true" verticalFill="true">
  1500. <Data dataSource="tabHeadAndEnd" bindField="5" />
  1501. </Text>
  1502. </Sub-objects>
  1503. </TD>
  1504. </TR>
  1505. <TR height="140" id="row18" styleId="0" autoAdjustHeight="true">
  1506. <TD id="cell55" styleId="5">
  1507. <Sub-objects>
  1508. <PrintDataGrid id="dataGrid3" styleId="7" x="0" y="20" horizontalFill="true">
  1509. <Data dataSource="tabEntry3" />
  1510. <Col width="114" id="column46" styleId="0">
  1511. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  1512. </Col>
  1513. <Col width="85" id="column47" styleId="0">
  1514. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  1515. </Col>
  1516. <Col width="98" id="column48" styleId="0">
  1517. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  1518. </Col>
  1519. <Col width="89" id="column49" styleId="0">
  1520. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  1521. <Script><![CDATA[if(get("varVisibleColIdx") < 4)
  1522. {
  1523. setHide(true)
  1524. }
  1525. ]]></Script>
  1526. </Col>
  1527. <Col width="101" id="column50" styleId="0">
  1528. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  1529. <Script><![CDATA[if(get("varVisibleColIdx") < 5)
  1530. {
  1531. setHide(true)
  1532. }
  1533. ]]></Script>
  1534. </Col>
  1535. <Col width="101" id="column51" styleId="0">
  1536. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  1537. <Script><![CDATA[if(get("varVisibleColIdx") < 6)
  1538. {
  1539. setHide(true)
  1540. }
  1541. ]]></Script>
  1542. </Col>
  1543. <Col width="81" id="column52" styleId="0">
  1544. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  1545. <Script><![CDATA[if(get("varVisibleColIdx") < 7)
  1546. {
  1547. setHide(true)
  1548. }
  1549. ]]></Script>
  1550. </Col>
  1551. <Col width="84" id="column53" styleId="0">
  1552. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  1553. <Script><![CDATA[if(get("varVisibleColIdx") < 8)
  1554. {
  1555. setHide(true)
  1556. }
  1557. ]]></Script>
  1558. </Col>
  1559. <Col width="94" id="column54" styleId="0">
  1560. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  1561. <Script><![CDATA[if(get("varVisibleColIdx") < 9)
  1562. {
  1563. setHide(true)
  1564. }
  1565. ]]></Script>
  1566. </Col>
  1567. <Col width="80" id="column55" styleId="0">
  1568. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  1569. <Script><![CDATA[if(get("varVisibleColIdx") < 10)
  1570. {
  1571. setHide(true)
  1572. }
  1573. ]]></Script>
  1574. </Col>
  1575. <Col width="86" id="column56" styleId="0">
  1576. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  1577. <Script><![CDATA[if(get("varVisibleColIdx") < 11)
  1578. {
  1579. setHide(true)
  1580. }
  1581. ]]></Script>
  1582. </Col>
  1583. <Col width="81" id="column57" styleId="0">
  1584. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  1585. <Script><![CDATA[if(get("varVisibleColIdx") < 12)
  1586. {
  1587. setHide(true)
  1588. }
  1589. ]]></Script>
  1590. </Col>
  1591. <Col width="84" id="column58" styleId="0">
  1592. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  1593. <Script><![CDATA[if(get("varVisibleColIdx") < 13)
  1594. {
  1595. setHide(true)
  1596. }
  1597. ]]></Script>
  1598. </Col>
  1599. <Col width="79" id="column59" styleId="0">
  1600. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  1601. <Script><![CDATA[if(get("varVisibleColIdx") < 14)
  1602. {
  1603. setHide(true)
  1604. }
  1605. ]]></Script>
  1606. </Col>
  1607. <Col width="86" id="column60" styleId="0">
  1608. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  1609. <Script><![CDATA[if(get("varVisibleColIdx") < 15)
  1610. {
  1611. setHide(true)
  1612. }
  1613. ]]></Script>
  1614. </Col>
  1615. <Col width="82" id="column61" styleId="0">
  1616. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  1617. <Script><![CDATA[if(get("varVisibleColIdx") < 16)
  1618. {
  1619. setHide(true)
  1620. }
  1621. ]]></Script>
  1622. </Col>
  1623. <Col width="83" id="column62" styleId="0">
  1624. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  1625. <Script><![CDATA[if(get("varVisibleColIdx") < 17)
  1626. {
  1627. setHide(true)
  1628. }
  1629. ]]></Script>
  1630. </Col>
  1631. <Col width="66" id="column63" styleId="0">
  1632. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  1633. <Script><![CDATA[if(get("varVisibleColIdx") < 18)
  1634. {
  1635. setHide(true)
  1636. }
  1637. ]]></Script>
  1638. </Col>
  1639. <Col width="61" id="column64" styleId="0">
  1640. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  1641. <Script><![CDATA[if(get("varVisibleColIdx") < 19)
  1642. {
  1643. setHide(true)
  1644. }
  1645. ]]></Script>
  1646. </Col>
  1647. <Col width="56" id="column65" styleId="0">
  1648. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  1649. <Script><![CDATA[if(get("varVisibleColIdx") < 20)
  1650. {
  1651. setHide(true)
  1652. }
  1653. if(cell6.getValue()=="节点")
  1654. {
  1655. setProperty("style.border-right-width", 0);
  1656. setProperty("style.border-left-width", 0);
  1657. setProperty("style.border-top-width", 0);
  1658. }
  1659. ]]></Script>
  1660. </Col>
  1661. <TR height="93" type="detail" autoAdjustHeight="true" id="row16" styleId="8">
  1662. <TD id="cell56" styleId="9">
  1663. <Value type="field">cell1</Value>
  1664. </TD>
  1665. <TD id="cell57" styleId="9">
  1666. <Script><![CDATA[if(cell56.getValue()=="合计" || cell56.getValue()=="绩效等级" || cell4.getValue()=="评语")
  1667. {
  1668. setProperty("style.border-right-width", 0);
  1669. setProperty("style.border-left-width", 0);
  1670. }
  1671. if(cell6.getValue()=="节点")
  1672. {
  1673. setProperty("style.border-right-width", 0);
  1674. setProperty("style.border-left-width", 0);
  1675. setProperty("style.border-top-width", 0);
  1676. setProperty("style.font-size", 0);
  1677. }]]></Script>
  1678. <Value type="field">cell2</Value>
  1679. </TD>
  1680. <TD id="cell58" styleId="9">
  1681. <Script><![CDATA[if(cell56.getValue()=="合计" || cell56.getValue()=="绩效等级" || cell4.getValue()=="评语")
  1682. { if(get("varVisibleColIdx") == 3)
  1683. {
  1684. setProperty("style.border-left-width", 0);
  1685. }
  1686. else
  1687. {
  1688. setProperty("style.border-right-width", 0);
  1689. setProperty("style.border-left-width", 0);
  1690. }
  1691. }
  1692. if(cell6.getValue()=="节点")
  1693. {
  1694. setProperty("style.border-right-width", 0);
  1695. setProperty("style.border-left-width", 0);
  1696. setProperty("style.border-top-width", 0);
  1697. }]]></Script>
  1698. <Value type="field">cell3</Value>
  1699. </TD>
  1700. <TD id="cell59" styleId="9">
  1701. <Script><![CDATA[if(cell56.getValue()=="合计" || cell56.getValue()=="绩效等级" || cell4.getValue()=="评语")
  1702. {
  1703. if(get("varVisibleColIdx") == 4)
  1704. {
  1705. setProperty("style.border-left-width", 0);
  1706. }
  1707. else
  1708. {
  1709. setProperty("style.border-right-width", 0);
  1710. setProperty("style.border-left-width", 0);
  1711. }
  1712. }
  1713. if(cell6.getValue()=="节点")
  1714. {
  1715. setProperty("style.border-right-width", 0);
  1716. setProperty("style.border-left-width", 0);
  1717. setProperty("style.border-top-width", 0);
  1718. }]]></Script>
  1719. <Value type="field">cell4</Value>
  1720. </TD>
  1721. <TD id="cell60" styleId="9">
  1722. <Script><![CDATA[if(cell56.getValue()=="合计" || cell56.getValue()=="绩效等级" || cell4.getValue()=="评语")
  1723. { if(get("varVisibleColIdx") == 5)
  1724. {
  1725. setProperty("style.border-left-width", 0);
  1726. }
  1727. else
  1728. {
  1729. setProperty("style.border-right-width", 0);
  1730. setProperty("style.border-left-width", 0);
  1731. }
  1732. }
  1733. if(cell6.getValue()=="节点")
  1734. {
  1735. setProperty("style.border-right-width", 0);
  1736. setProperty("style.border-left-width", 0);
  1737. setProperty("style.border-top-width", 0);
  1738. }]]></Script>
  1739. <Value type="field">cell5</Value>
  1740. </TD>
  1741. <TD id="cell61" styleId="9">
  1742. <Script><![CDATA[if(cell56.getValue()=="合计" || cell56.getValue()=="绩效等级" || cell4.getValue()=="评语")
  1743. { if(get("varVisibleColIdx") == 6)
  1744. {
  1745. setProperty("style.border-left-width", 0);
  1746. }
  1747. else
  1748. {
  1749. setProperty("style.border-right-width", 0);
  1750. setProperty("style.border-left-width", 0);
  1751. }
  1752. }
  1753. if(cell6.getValue()=="节点")
  1754. {
  1755. setProperty("style.border-right-width", 0);
  1756. setProperty("style.border-left-width", 0);
  1757. setProperty("style.border-top-width", 0);
  1758. }]]></Script>
  1759. <Value type="field">cell6</Value>
  1760. </TD>
  1761. <TD id="cell62" styleId="9">
  1762. <Script><![CDATA[if(cell56.getValue()=="合计" || cell56.getValue()=="绩效等级" || cell4.getValue()=="评语")
  1763. {
  1764. if(get("varVisibleColIdx") == 7)
  1765. {
  1766. setProperty("style.border-left-width", 0);
  1767. }
  1768. else
  1769. {
  1770. setProperty("style.border-right-width", 0);
  1771. setProperty("style.border-left-width", 0);
  1772. }
  1773. }
  1774. if(cell6.getValue()=="节点")
  1775. {
  1776. setProperty("style.border-right-width", 0);
  1777. setProperty("style.border-left-width", 0);
  1778. setProperty("style.border-top-width", 0);
  1779. }]]></Script>
  1780. <Value type="field">cell7</Value>
  1781. </TD>
  1782. <TD id="cell63" styleId="9">
  1783. <Script><![CDATA[if(cell56.getValue()=="合计" || cell56.getValue()=="绩效等级" || cell4.getValue()=="评语")
  1784. {
  1785. if(get("varVisibleColIdx") == 8)
  1786. {
  1787. setProperty("style.border-left-width", 0);
  1788. }
  1789. else
  1790. {
  1791. setProperty("style.border-right-width", 0);
  1792. setProperty("style.border-left-width", 0);
  1793. }
  1794. }
  1795. if(cell6.getValue()=="节点")
  1796. {
  1797. setProperty("style.border-right-width", 0);
  1798. setProperty("style.border-left-width", 0);
  1799. setProperty("style.border-top-width", 0);
  1800. }]]></Script>
  1801. <Value type="field">cell8</Value>
  1802. </TD>
  1803. <TD id="cell64" styleId="9">
  1804. <Script><![CDATA[if(cell56.getValue()=="合计" || cell56.getValue()=="绩效等级" || cell4.getValue()=="评语")
  1805. {
  1806. if(get("varVisibleColIdx") == 9)
  1807. {
  1808. setProperty("style.border-left-width", 0);
  1809. }
  1810. else
  1811. {
  1812. setProperty("style.border-right-width", 0);
  1813. setProperty("style.border-left-width", 0);
  1814. }
  1815. }
  1816. if(cell6.getValue()=="节点")
  1817. {
  1818. setProperty("style.border-right-width", 0);
  1819. setProperty("style.border-left-width", 0);
  1820. setProperty("style.border-top-width", 0);
  1821. }]]></Script>
  1822. <Value type="field">cell9</Value>
  1823. </TD>
  1824. <TD id="cell65" styleId="9">
  1825. <Script><![CDATA[if(cell56.getValue()=="合计" || cell56.getValue()=="绩效等级" || cell4.getValue()=="评语")
  1826. {
  1827. if(get("varVisibleColIdx") == 10)
  1828. {
  1829. setProperty("style.border-left-width", 0);
  1830. }
  1831. else
  1832. {
  1833. setProperty("style.border-right-width", 0);
  1834. setProperty("style.border-left-width", 0);
  1835. }
  1836. }
  1837. if(cell6.getValue()=="节点")
  1838. {
  1839. setProperty("style.border-right-width", 0);
  1840. setProperty("style.border-left-width", 0);
  1841. setProperty("style.border-top-width", 0);
  1842. }]]></Script>
  1843. <Value type="field">cell10</Value>
  1844. </TD>
  1845. <TD id="cell66" styleId="9">
  1846. <Script><![CDATA[if(cell56.getValue()=="合计" || cell56.getValue()=="绩效等级" || cell4.getValue()=="评语")
  1847. {
  1848. if(get("varVisibleColIdx") == 11)
  1849. {
  1850. setProperty("style.border-left-width", 0);
  1851. }
  1852. else
  1853. {
  1854. setProperty("style.border-right-width", 0);
  1855. setProperty("style.border-left-width", 0);
  1856. }
  1857. }
  1858. if(cell6.getValue()=="节点")
  1859. {
  1860. setProperty("style.border-right-width", 0);
  1861. setProperty("style.border-left-width", 0);
  1862. setProperty("style.border-top-width", 0);
  1863. }]]></Script>
  1864. <Value type="field">cell11</Value>
  1865. </TD>
  1866. <TD id="cell67" styleId="9">
  1867. <Script><![CDATA[if(cell56.getValue()=="合计" || cell56.getValue()=="绩效等级" || cell4.getValue()=="评语")
  1868. {
  1869. if(get("varVisibleColIdx") == 12)
  1870. {
  1871. setProperty("style.border-left-width", 0);
  1872. }
  1873. else
  1874. {
  1875. setProperty("style.border-right-width", 0);
  1876. setProperty("style.border-left-width", 0);
  1877. }
  1878. }
  1879. if(cell6.getValue()=="节点")
  1880. {
  1881. setProperty("style.border-right-width", 0);
  1882. setProperty("style.border-left-width", 0);
  1883. setProperty("style.border-top-width", 0);
  1884. }]]></Script>
  1885. <Value type="field">cell12</Value>
  1886. </TD>
  1887. <TD id="cell68" styleId="9">
  1888. <Script><![CDATA[if(cell56.getValue()=="合计" || cell56.getValue()=="绩效等级" || cell4.getValue()=="评语")
  1889. { if(get("varVisibleColIdx") == 13)
  1890. {
  1891. setProperty("style.border-left-width", 0);
  1892. }
  1893. else
  1894. {
  1895. setProperty("style.border-right-width", 0);
  1896. setProperty("style.border-left-width", 0);
  1897. }
  1898. }
  1899. if(cell6.getValue()=="节点")
  1900. {
  1901. setProperty("style.border-right-width", 0);
  1902. setProperty("style.border-left-width", 0);
  1903. setProperty("style.border-top-width", 0);
  1904. }]]></Script>
  1905. <Value type="field">cell13</Value>
  1906. </TD>
  1907. <TD id="cell69" styleId="9">
  1908. <Script><![CDATA[if(cell56.getValue()=="合计" || cell56.getValue()=="绩效等级" || cell4.getValue()=="评语")
  1909. {
  1910. if(get("varVisibleColIdx") == 14)
  1911. {
  1912. setProperty("style.border-left-width", 0);
  1913. }
  1914. else
  1915. {
  1916. setProperty("style.border-right-width", 0);
  1917. setProperty("style.border-left-width", 0);
  1918. }
  1919. }
  1920. if(cell6.getValue()=="节点")
  1921. {
  1922. setProperty("style.border-right-width", 0);
  1923. setProperty("style.border-left-width", 0);
  1924. setProperty("style.border-top-width", 0);
  1925. }]]></Script>
  1926. <Value type="field">cell14</Value>
  1927. </TD>
  1928. <TD id="cell70" styleId="9">
  1929. <Script><![CDATA[if(cell56.getValue()=="合计" || cell56.getValue()=="绩效等级" || cell4.getValue()=="评语")
  1930. {
  1931. if(get("varVisibleColIdx") == 15)
  1932. {
  1933. setProperty("style.border-left-width", 0);
  1934. }
  1935. else
  1936. {
  1937. setProperty("style.border-right-width", 0);
  1938. setProperty("style.border-left-width", 0);
  1939. }
  1940. }
  1941. if(cell6.getValue()=="节点")
  1942. {
  1943. setProperty("style.border-right-width", 0);
  1944. setProperty("style.border-left-width", 0);
  1945. setProperty("style.border-top-width", 0);
  1946. }]]></Script>
  1947. <Value type="field">cell15</Value>
  1948. </TD>
  1949. <TD id="cell71" styleId="9">
  1950. <Script><![CDATA[if(cell56.getValue()=="合计" || cell56.getValue()=="绩效等级" || cell4.getValue()=="评语")
  1951. { if(get("varVisibleColIdx") == 16)
  1952. {
  1953. setProperty("style.border-left-width", 0);
  1954. }
  1955. else
  1956. {
  1957. setProperty("style.border-right-width", 0);
  1958. setProperty("style.border-left-width", 0);
  1959. }
  1960. }
  1961. if(cell6.getValue()=="节点")
  1962. {
  1963. setProperty("style.border-right-width", 0);
  1964. setProperty("style.border-left-width", 0);
  1965. setProperty("style.border-top-width", 0);
  1966. }]]></Script>
  1967. <Value type="field">cell16</Value>
  1968. </TD>
  1969. <TD id="cell72" styleId="9">
  1970. <Script><![CDATA[if(cell56.getValue()=="合计" || cell56.getValue()=="绩效等级" || cell4.getValue()=="评语")
  1971. {
  1972. if(get("varVisibleColIdx") == 17)
  1973. {
  1974. setProperty("style.border-left-width", 0);
  1975. }
  1976. else
  1977. {
  1978. setProperty("style.border-right-width", 0);
  1979. setProperty("style.border-left-width", 0);
  1980. }
  1981. }
  1982. if(cell6.getValue()=="节点")
  1983. {
  1984. setProperty("style.border-right-width", 0);
  1985. setProperty("style.border-left-width", 0);
  1986. setProperty("style.border-top-width", 0);
  1987. }]]></Script>
  1988. <Value type="field">cell17</Value>
  1989. </TD>
  1990. <TD id="cell73" styleId="9">
  1991. <Script><![CDATA[if(cell56.getValue()=="合计" || cell56.getValue()=="绩效等级" || cell4.getValue()=="评语")
  1992. {
  1993. if(get("varVisibleColIdx") == 18)
  1994. {
  1995. setProperty("style.border-left-width", 0);
  1996. }
  1997. else
  1998. {
  1999. setProperty("style.border-right-width", 0);
  2000. setProperty("style.border-left-width", 0);
  2001. }
  2002. }
  2003. if(cell6.getValue()=="节点")
  2004. {
  2005. setProperty("style.border-right-width", 0);
  2006. setProperty("style.border-left-width", 0);
  2007. setProperty("style.border-top-width", 0);
  2008. }]]></Script>
  2009. <Value type="field">cell18</Value>
  2010. </TD>
  2011. <TD id="cell74" styleId="9">
  2012. <Script><![CDATA[if(cell56.getValue()=="合计" || cell56.getValue()=="绩效等级" || cell4.getValue()=="评语")
  2013. {
  2014. if(get("varVisibleColIdx") == 19)
  2015. {
  2016. setProperty("style.border-left-width", 0);
  2017. }
  2018. else
  2019. {
  2020. setProperty("style.border-right-width", 0);
  2021. setProperty("style.border-left-width", 0);
  2022. }
  2023. }
  2024. if(cell6.getValue()=="节点")
  2025. {
  2026. setProperty("style.border-right-width", 0);
  2027. setProperty("style.border-left-width", 0);
  2028. setProperty("style.border-top-width", 0);
  2029. }]]></Script>
  2030. <Value type="field">cell19</Value>
  2031. </TD>
  2032. <TD id="cell75" styleId="9">
  2033. <Script><![CDATA[if(cell56.getValue()=="合计" || cell56.getValue()=="绩效等级" || cell4.getValue()=="评语")
  2034. {
  2035. setProperty("style.border-left-width", 0);
  2036. }
  2037. if(cell6.getValue()=="节点")
  2038. {
  2039. setProperty("style.border-right-width", 0);
  2040. setProperty("style.border-left-width", 0);
  2041. setProperty("style.border-top-width", 0);
  2042. }]]></Script>
  2043. <Value type="field">cell20</Value>
  2044. </TD>
  2045. </TR>
  2046. </PrintDataGrid>
  2047. </Sub-objects>
  2048. </TD>
  2049. </TR>
  2050. <TR height="80" id="row19" styleId="0" autoAdjustHeight="true">
  2051. <TD id="cell76" styleId="10">
  2052. <Value type="field" dataSource="tabHeadAndEnd">6</Value>
  2053. </TD>
  2054. </TR>
  2055. </PrintLayoutGrid>
  2056. </Sub-objects>
  2057. </TD>
  2058. </TR>
  2059. <TR height="295" id="row14" styleId="5" autoAdjustHeight="true">
  2060. <PreScript><![CDATA[setHide(getFieldValue("tabHeadAndEnd","7")==null);]]></PreScript>
  2061. <TD id="cell52" styleId="5">
  2062. <Sub-objects>
  2063. <PrintLayoutGrid id="layoutGrid7" styleId="5" x="0" y="0" horizontalFill="true">
  2064. <Data />
  2065. <Col width="1693" id="column87" />
  2066. <TR height="80" id="row21" styleId="0" autoAdjustHeight="true">
  2067. <TD id="cell77" styleId="5">
  2068. <Sub-objects>
  2069. <Text id="text8" styleId="13" x="0" y="0" width="1691" height="78" horizontalFill="true" verticalFill="true">
  2070. <Data dataSource="tabHeadAndEnd" bindField="7" />
  2071. </Text>
  2072. </Sub-objects>
  2073. </TD>
  2074. </TR>
  2075. <TR height="140" id="row22" styleId="0" autoAdjustHeight="true">
  2076. <TD id="cell78" styleId="5">
  2077. <Sub-objects>
  2078. <PrintDataGrid id="dataGrid4" styleId="7" x="0" y="20" horizontalFill="true">
  2079. <Data dataSource="tabEntry4" />
  2080. <Col width="114" id="column67" styleId="0">
  2081. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  2082. </Col>
  2083. <Col width="85" id="column68" styleId="0">
  2084. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  2085. </Col>
  2086. <Col width="98" id="column69" styleId="0">
  2087. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  2088. </Col>
  2089. <Col width="89" id="column70" styleId="0">
  2090. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  2091. <Script><![CDATA[if(get("varVisibleColIdx") < 4)
  2092. {
  2093. setHide(true)
  2094. }
  2095. ]]></Script>
  2096. </Col>
  2097. <Col width="101" id="column71" styleId="0">
  2098. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  2099. <Script><![CDATA[if(get("varVisibleColIdx") < 5)
  2100. {
  2101. setHide(true)
  2102. }
  2103. ]]></Script>
  2104. </Col>
  2105. <Col width="101" id="column72" styleId="0">
  2106. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  2107. <Script><![CDATA[if(get("varVisibleColIdx") < 6)
  2108. {
  2109. setHide(true)
  2110. }
  2111. ]]></Script>
  2112. </Col>
  2113. <Col width="81" id="column73" styleId="0">
  2114. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  2115. <Script><![CDATA[if(get("varVisibleColIdx") < 7)
  2116. {
  2117. setHide(true)
  2118. }
  2119. ]]></Script>
  2120. </Col>
  2121. <Col width="84" id="column74" styleId="0">
  2122. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  2123. <Script><![CDATA[if(get("varVisibleColIdx") < 8)
  2124. {
  2125. setHide(true)
  2126. }
  2127. ]]></Script>
  2128. </Col>
  2129. <Col width="94" id="column75" styleId="0">
  2130. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  2131. <Script><![CDATA[if(get("varVisibleColIdx") < 9)
  2132. {
  2133. setHide(true)
  2134. }
  2135. ]]></Script>
  2136. </Col>
  2137. <Col width="80" id="column76" styleId="0">
  2138. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  2139. <Script><![CDATA[if(get("varVisibleColIdx") < 10)
  2140. {
  2141. setHide(true)
  2142. }
  2143. ]]></Script>
  2144. </Col>
  2145. <Col width="86" id="column77" styleId="0">
  2146. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  2147. <Script><![CDATA[if(get("varVisibleColIdx") < 11)
  2148. {
  2149. setHide(true)
  2150. }
  2151. ]]></Script>
  2152. </Col>
  2153. <Col width="81" id="column78" styleId="0">
  2154. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  2155. <Script><![CDATA[if(get("varVisibleColIdx") < 12)
  2156. {
  2157. setHide(true)
  2158. }
  2159. ]]></Script>
  2160. </Col>
  2161. <Col width="84" id="column79" styleId="0">
  2162. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  2163. <Script><![CDATA[if(get("varVisibleColIdx") < 13)
  2164. {
  2165. setHide(true)
  2166. }
  2167. ]]></Script>
  2168. </Col>
  2169. <Col width="79" id="column80" styleId="0">
  2170. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  2171. <Script><![CDATA[if(get("varVisibleColIdx") < 14)
  2172. {
  2173. setHide(true)
  2174. }
  2175. ]]></Script>
  2176. </Col>
  2177. <Col width="86" id="column81" styleId="0">
  2178. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  2179. <Script><![CDATA[if(get("varVisibleColIdx") < 15)
  2180. {
  2181. setHide(true)
  2182. }
  2183. ]]></Script>
  2184. </Col>
  2185. <Col width="82" id="column82" styleId="0">
  2186. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  2187. <Script><![CDATA[if(get("varVisibleColIdx") < 16)
  2188. {
  2189. setHide(true)
  2190. }
  2191. ]]></Script>
  2192. </Col>
  2193. <Col width="83" id="column83" styleId="0">
  2194. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  2195. <Script><![CDATA[if(get("varVisibleColIdx") < 17)
  2196. {
  2197. setHide(true)
  2198. }
  2199. ]]></Script>
  2200. </Col>
  2201. <Col width="66" id="column84" styleId="0">
  2202. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  2203. <Script><![CDATA[if(get("varVisibleColIdx") < 18)
  2204. {
  2205. setHide(true)
  2206. }
  2207. ]]></Script>
  2208. </Col>
  2209. <Col width="61" id="column85" styleId="0">
  2210. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  2211. <Script><![CDATA[if(get("varVisibleColIdx") < 19)
  2212. {
  2213. setHide(true)
  2214. }
  2215. ]]></Script>
  2216. </Col>
  2217. <Col width="56" id="column86" styleId="0">
  2218. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  2219. <Script><![CDATA[if(get("varVisibleColIdx") < 20)
  2220. {
  2221. setHide(true)
  2222. }
  2223. if(cell6.getValue()=="节点")
  2224. {
  2225. setProperty("style.border-right-width", 0);
  2226. setProperty("style.border-left-width", 0);
  2227. setProperty("style.border-top-width", 0);
  2228. }
  2229. ]]></Script>
  2230. </Col>
  2231. <TR height="93" type="detail" autoAdjustHeight="true" id="row20" styleId="8">
  2232. <TD id="cell79" styleId="9">
  2233. <Value type="field">cell1</Value>
  2234. </TD>
  2235. <TD id="cell80" styleId="9">
  2236. <Script><![CDATA[if(cell79.getValue()=="合计" || cell79.getValue()=="绩效等级" || cell4.getValue()=="评语")
  2237. {
  2238. setProperty("style.border-right-width", 0);
  2239. setProperty("style.border-left-width", 0);
  2240. }
  2241. if(cell6.getValue()=="节点")
  2242. {
  2243. setProperty("style.border-right-width", 0);
  2244. setProperty("style.border-left-width", 0);
  2245. setProperty("style.border-top-width", 0);
  2246. setProperty("style.font-size", 0);
  2247. }]]></Script>
  2248. <Value type="field">cell2</Value>
  2249. </TD>
  2250. <TD id="cell81" styleId="9">
  2251. <Script><![CDATA[if(cell79.getValue()=="合计" || cell79.getValue()=="绩效等级" || cell4.getValue()=="评语")
  2252. { if(get("varVisibleColIdx") == 3)
  2253. {
  2254. setProperty("style.border-left-width", 0);
  2255. }
  2256. else
  2257. {
  2258. setProperty("style.border-right-width", 0);
  2259. setProperty("style.border-left-width", 0);
  2260. }
  2261. }
  2262. if(cell6.getValue()=="节点")
  2263. {
  2264. setProperty("style.border-right-width", 0);
  2265. setProperty("style.border-left-width", 0);
  2266. setProperty("style.border-top-width", 0);
  2267. }]]></Script>
  2268. <Value type="field">cell3</Value>
  2269. </TD>
  2270. <TD id="cell82" styleId="9">
  2271. <Script><![CDATA[if(cell79.getValue()=="合计" || cell79.getValue()=="绩效等级" || cell4.getValue()=="评语")
  2272. { if(get("varVisibleColIdx") == 4)
  2273. {
  2274. setProperty("style.border-left-width", 0);
  2275. }
  2276. else
  2277. {
  2278. setProperty("style.border-right-width", 0);
  2279. setProperty("style.border-left-width", 0);
  2280. }
  2281. }
  2282. if(cell6.getValue()=="节点")
  2283. {
  2284. setProperty("style.border-right-width", 0);
  2285. setProperty("style.border-left-width", 0);
  2286. setProperty("style.border-top-width", 0);
  2287. }]]></Script>
  2288. <Value type="field">cell4</Value>
  2289. </TD>
  2290. <TD id="cell83" styleId="9">
  2291. <Script><![CDATA[if(cell79.getValue()=="合计" || cell79.getValue()=="绩效等级" || cell4.getValue()=="评语")
  2292. { if(get("varVisibleColIdx") == 5)
  2293. {
  2294. setProperty("style.border-left-width", 0);
  2295. }
  2296. else
  2297. {
  2298. setProperty("style.border-right-width", 0);
  2299. setProperty("style.border-left-width", 0);
  2300. }
  2301. }
  2302. if(cell6.getValue()=="节点")
  2303. {
  2304. setProperty("style.border-right-width", 0);
  2305. setProperty("style.border-left-width", 0);
  2306. setProperty("style.border-top-width", 0);
  2307. }]]></Script>
  2308. <Value type="field">cell5</Value>
  2309. </TD>
  2310. <TD id="cell84" styleId="9">
  2311. <Script><![CDATA[if(cell79.getValue()=="合计" || cell79.getValue()=="绩效等级" || cell4.getValue()=="评语")
  2312. { if(get("varVisibleColIdx") == 6)
  2313. {
  2314. setProperty("style.border-left-width", 0);
  2315. }
  2316. else
  2317. {
  2318. setProperty("style.border-right-width", 0);
  2319. setProperty("style.border-left-width", 0);
  2320. }
  2321. }
  2322. if(cell6.getValue()=="节点")
  2323. {
  2324. setProperty("style.border-right-width", 0);
  2325. setProperty("style.border-left-width", 0);
  2326. setProperty("style.border-top-width", 0);
  2327. }]]></Script>
  2328. <Value type="field">cell6</Value>
  2329. </TD>
  2330. <TD id="cell85" styleId="9">
  2331. <Script><![CDATA[if(cell79.getValue()=="合计" || cell79.getValue()=="绩效等级" || cell4.getValue()=="评语")
  2332. {
  2333. if(get("varVisibleColIdx") == 7)
  2334. {
  2335. setProperty("style.border-left-width", 0);
  2336. }
  2337. else
  2338. {
  2339. setProperty("style.border-right-width", 0);
  2340. setProperty("style.border-left-width", 0);
  2341. }
  2342. }
  2343. if(cell6.getValue()=="节点")
  2344. {
  2345. setProperty("style.border-right-width", 0);
  2346. setProperty("style.border-left-width", 0);
  2347. setProperty("style.border-top-width", 0);
  2348. }]]></Script>
  2349. <Value type="field">cell7</Value>
  2350. </TD>
  2351. <TD id="cell86" styleId="9">
  2352. <Script><![CDATA[if(cell79.getValue()=="合计" || cell79.getValue()=="绩效等级" || cell4.getValue()=="评语")
  2353. {
  2354. if(get("varVisibleColIdx") == 8)
  2355. {
  2356. setProperty("style.border-left-width", 0);
  2357. }
  2358. else
  2359. {
  2360. setProperty("style.border-right-width", 0);
  2361. setProperty("style.border-left-width", 0);
  2362. }
  2363. }
  2364. if(cell6.getValue()=="节点")
  2365. {
  2366. setProperty("style.border-right-width", 0);
  2367. setProperty("style.border-left-width", 0);
  2368. setProperty("style.border-top-width", 0);
  2369. }]]></Script>
  2370. <Value type="field">cell8</Value>
  2371. </TD>
  2372. <TD id="cell87" styleId="9">
  2373. <Script><![CDATA[if(cell79.getValue()=="合计" || cell79.getValue()=="绩效等级" || cell4.getValue()=="评语")
  2374. {
  2375. if(get("varVisibleColIdx") == 9)
  2376. {
  2377. setProperty("style.border-left-width", 0);
  2378. }
  2379. else
  2380. {
  2381. setProperty("style.border-right-width", 0);
  2382. setProperty("style.border-left-width", 0);
  2383. }
  2384. }
  2385. if(cell6.getValue()=="节点")
  2386. {
  2387. setProperty("style.border-right-width", 0);
  2388. setProperty("style.border-left-width", 0);
  2389. setProperty("style.border-top-width", 0);
  2390. }]]></Script>
  2391. <Value type="field">cell9</Value>
  2392. </TD>
  2393. <TD id="cell88" styleId="9">
  2394. <Script><![CDATA[if(cell79.getValue()=="合计" || cell79.getValue()=="绩效等级" || cell4.getValue()=="评语")
  2395. {
  2396. if(get("varVisibleColIdx") == 10)
  2397. {
  2398. setProperty("style.border-left-width", 0);
  2399. }
  2400. else
  2401. {
  2402. setProperty("style.border-right-width", 0);
  2403. setProperty("style.border-left-width", 0);
  2404. }
  2405. }
  2406. if(cell6.getValue()=="节点")
  2407. {
  2408. setProperty("style.border-right-width", 0);
  2409. setProperty("style.border-left-width", 0);
  2410. setProperty("style.border-top-width", 0);
  2411. }]]></Script>
  2412. <Value type="field">cell10</Value>
  2413. </TD>
  2414. <TD id="cell89" styleId="9">
  2415. <Script><![CDATA[if(cell79.getValue()=="合计" || cell79.getValue()=="绩效等级" || cell4.getValue()=="评语")
  2416. {
  2417. if(get("varVisibleColIdx") == 11)
  2418. {
  2419. setProperty("style.border-left-width", 0);
  2420. }
  2421. else
  2422. {
  2423. setProperty("style.border-right-width", 0);
  2424. setProperty("style.border-left-width", 0);
  2425. }
  2426. }
  2427. if(cell6.getValue()=="节点")
  2428. {
  2429. setProperty("style.border-right-width", 0);
  2430. setProperty("style.border-left-width", 0);
  2431. setProperty("style.border-top-width", 0);
  2432. }]]></Script>
  2433. <Value type="field">cell11</Value>
  2434. </TD>
  2435. <TD id="cell90" styleId="9">
  2436. <Script><![CDATA[if(cell79.getValue()=="合计" || cell79.getValue()=="绩效等级" || cell4.getValue()=="评语")
  2437. {
  2438. if(get("varVisibleColIdx") == 12)
  2439. {
  2440. setProperty("style.border-left-width", 0);
  2441. }
  2442. else
  2443. {
  2444. setProperty("style.border-right-width", 0);
  2445. setProperty("style.border-left-width", 0);
  2446. }
  2447. }
  2448. if(cell6.getValue()=="节点")
  2449. {
  2450. setProperty("style.border-right-width", 0);
  2451. setProperty("style.border-left-width", 0);
  2452. setProperty("style.border-top-width", 0);
  2453. }]]></Script>
  2454. <Value type="field">cell12</Value>
  2455. </TD>
  2456. <TD id="cell91" styleId="9">
  2457. <Script><![CDATA[if(cell79.getValue()=="合计" || cell79.getValue()=="绩效等级" || cell4.getValue()=="评语")
  2458. { if(get("varVisibleColIdx") == 13)
  2459. {
  2460. setProperty("style.border-left-width", 0);
  2461. }
  2462. else
  2463. {
  2464. setProperty("style.border-right-width", 0);
  2465. setProperty("style.border-left-width", 0);
  2466. }
  2467. }
  2468. if(cell6.getValue()=="节点")
  2469. {
  2470. setProperty("style.border-right-width", 0);
  2471. setProperty("style.border-left-width", 0);
  2472. setProperty("style.border-top-width", 0);
  2473. }]]></Script>
  2474. <Value type="field">cell13</Value>
  2475. </TD>
  2476. <TD id="cell92" styleId="9">
  2477. <Script><![CDATA[if(cell79.getValue()=="合计" || cell79.getValue()=="绩效等级" || cell4.getValue()=="评语")
  2478. {
  2479. if(get("varVisibleColIdx") == 14)
  2480. {
  2481. setProperty("style.border-left-width", 0);
  2482. }
  2483. else
  2484. {
  2485. setProperty("style.border-right-width", 0);
  2486. setProperty("style.border-left-width", 0);
  2487. }
  2488. }
  2489. if(cell6.getValue()=="节点")
  2490. {
  2491. setProperty("style.border-right-width", 0);
  2492. setProperty("style.border-left-width", 0);
  2493. setProperty("style.border-top-width", 0);
  2494. }]]></Script>
  2495. <Value type="field">cell14</Value>
  2496. </TD>
  2497. <TD id="cell93" styleId="9">
  2498. <Script><![CDATA[if(cell79.getValue()=="合计" || cell79.getValue()=="绩效等级" || cell4.getValue()=="评语")
  2499. {
  2500. if(get("varVisibleColIdx") == 15)
  2501. {
  2502. setProperty("style.border-left-width", 0);
  2503. }
  2504. else
  2505. {
  2506. setProperty("style.border-right-width", 0);
  2507. setProperty("style.border-left-width", 0);
  2508. }
  2509. }
  2510. if(cell6.getValue()=="节点")
  2511. {
  2512. setProperty("style.border-right-width", 0);
  2513. setProperty("style.border-left-width", 0);
  2514. setProperty("style.border-top-width", 0);
  2515. }]]></Script>
  2516. <Value type="field">cell15</Value>
  2517. </TD>
  2518. <TD id="cell94" styleId="9">
  2519. <Script><![CDATA[if(cell79.getValue()=="合计" || cell79.getValue()=="绩效等级" || cell4.getValue()=="评语")
  2520. { if(get("varVisibleColIdx") == 16)
  2521. {
  2522. setProperty("style.border-left-width", 0);
  2523. }
  2524. else
  2525. {
  2526. setProperty("style.border-right-width", 0);
  2527. setProperty("style.border-left-width", 0);
  2528. }
  2529. }
  2530. if(cell6.getValue()=="节点")
  2531. {
  2532. setProperty("style.border-right-width", 0);
  2533. setProperty("style.border-left-width", 0);
  2534. setProperty("style.border-top-width", 0);
  2535. }]]></Script>
  2536. <Value type="field">cell16</Value>
  2537. </TD>
  2538. <TD id="cell95" styleId="9">
  2539. <Script><![CDATA[if(cell79.getValue()=="合计" || cell79.getValue()=="绩效等级" || cell4.getValue()=="评语")
  2540. {
  2541. if(get("varVisibleColIdx") == 17)
  2542. {
  2543. setProperty("style.border-left-width", 0);
  2544. }
  2545. else
  2546. {
  2547. setProperty("style.border-right-width", 0);
  2548. setProperty("style.border-left-width", 0);
  2549. }
  2550. }
  2551. if(cell6.getValue()=="节点")
  2552. {
  2553. setProperty("style.border-right-width", 0);
  2554. setProperty("style.border-left-width", 0);
  2555. setProperty("style.border-top-width", 0);
  2556. }]]></Script>
  2557. <Value type="field">cell17</Value>
  2558. </TD>
  2559. <TD id="cell96" styleId="9">
  2560. <Script><![CDATA[if(cell79.getValue()=="合计" || cell79.getValue()=="绩效等级" || cell4.getValue()=="评语")
  2561. {
  2562. if(get("varVisibleColIdx") == 18)
  2563. {
  2564. setProperty("style.border-left-width", 0);
  2565. }
  2566. else
  2567. {
  2568. setProperty("style.border-right-width", 0);
  2569. setProperty("style.border-left-width", 0);
  2570. }
  2571. }
  2572. if(cell6.getValue()=="节点")
  2573. {
  2574. setProperty("style.border-right-width", 0);
  2575. setProperty("style.border-left-width", 0);
  2576. setProperty("style.border-top-width", 0);
  2577. }]]></Script>
  2578. <Value type="field">cell18</Value>
  2579. </TD>
  2580. <TD id="cell97" styleId="9">
  2581. <Script><![CDATA[if(cell79.getValue()=="合计" || cell79.getValue()=="绩效等级" || cell4.getValue()=="评语")
  2582. {
  2583. if(get("varVisibleColIdx") == 19)
  2584. {
  2585. setProperty("style.border-left-width", 0);
  2586. }
  2587. else
  2588. {
  2589. setProperty("style.border-right-width", 0);
  2590. setProperty("style.border-left-width", 0);
  2591. }
  2592. }
  2593. if(cell6.getValue()=="节点")
  2594. {
  2595. setProperty("style.border-right-width", 0);
  2596. setProperty("style.border-left-width", 0);
  2597. setProperty("style.border-top-width", 0);
  2598. }]]></Script>
  2599. <Value type="field">cell19</Value>
  2600. </TD>
  2601. <TD id="cell98" styleId="9">
  2602. <Script><![CDATA[if(cell79.getValue()=="合计" || cell79.getValue()=="绩效等级" || cell4.getValue()=="评语")
  2603. {
  2604. setProperty("style.border-left-width", 0);
  2605. }
  2606. if(cell6.getValue()=="节点")
  2607. {
  2608. setProperty("style.border-right-width", 0);
  2609. setProperty("style.border-left-width", 0);
  2610. setProperty("style.border-top-width", 0);
  2611. }]]></Script>
  2612. <Value type="field">cell20</Value>
  2613. </TD>
  2614. </TR>
  2615. </PrintDataGrid>
  2616. </Sub-objects>
  2617. </TD>
  2618. </TR>
  2619. <TR height="80" id="row23" styleId="0" autoAdjustHeight="true">
  2620. <TD id="cell99" styleId="10">
  2621. <Value type="field" dataSource="tabHeadAndEnd">8</Value>
  2622. </TD>
  2623. </TR>
  2624. </PrintLayoutGrid>
  2625. </Sub-objects>
  2626. </TD>
  2627. </TR>
  2628. <TR height="295" id="row26" styleId="5" autoAdjustHeight="true">
  2629. <PreScript><![CDATA[setHide(getFieldValue("tabHeadAndEnd","9")==null);]]></PreScript>
  2630. <TD id="cell102" styleId="5">
  2631. <Sub-objects>
  2632. <PrintLayoutGrid id="layoutGrid8" styleId="5" x="0" y="0" horizontalFill="true">
  2633. <Data />
  2634. <Col width="1693" id="column108" />
  2635. <TR height="80" id="row28" styleId="0" autoAdjustHeight="true">
  2636. <TD id="cell103" styleId="5">
  2637. <Sub-objects>
  2638. <Text id="text10" styleId="14" x="0" y="0" width="1691" height="78" horizontalFill="true" verticalFill="true">
  2639. <Data dataSource="tabHeadAndEnd" bindField="9" />
  2640. </Text>
  2641. </Sub-objects>
  2642. </TD>
  2643. </TR>
  2644. <TR height="140" id="row29" styleId="0" autoAdjustHeight="true">
  2645. <TD id="cell104" styleId="5">
  2646. <Sub-objects>
  2647. <PrintDataGrid id="dataGrid5" styleId="7" x="0" y="20" horizontalFill="true">
  2648. <Data dataSource="tabEntry5" />
  2649. <Col width="114" id="column88" styleId="0">
  2650. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  2651. </Col>
  2652. <Col width="85" id="column89" styleId="0">
  2653. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  2654. </Col>
  2655. <Col width="98" id="column90" styleId="0">
  2656. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  2657. </Col>
  2658. <Col width="89" id="column91" styleId="0">
  2659. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  2660. <Script><![CDATA[if(get("varVisibleColIdx") < 4)
  2661. {
  2662. setHide(true)
  2663. }
  2664. ]]></Script>
  2665. </Col>
  2666. <Col width="101" id="column92" styleId="0">
  2667. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  2668. <Script><![CDATA[if(get("varVisibleColIdx") < 5)
  2669. {
  2670. setHide(true)
  2671. }
  2672. ]]></Script>
  2673. </Col>
  2674. <Col width="101" id="column93" styleId="0">
  2675. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  2676. <Script><![CDATA[if(get("varVisibleColIdx") < 6)
  2677. {
  2678. setHide(true)
  2679. }
  2680. ]]></Script>
  2681. </Col>
  2682. <Col width="81" id="column94" styleId="0">
  2683. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  2684. <Script><![CDATA[if(get("varVisibleColIdx") < 7)
  2685. {
  2686. setHide(true)
  2687. }
  2688. ]]></Script>
  2689. </Col>
  2690. <Col width="84" id="column95" styleId="0">
  2691. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  2692. <Script><![CDATA[if(get("varVisibleColIdx") < 8)
  2693. {
  2694. setHide(true)
  2695. }
  2696. ]]></Script>
  2697. </Col>
  2698. <Col width="94" id="column96" styleId="0">
  2699. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  2700. <Script><![CDATA[if(get("varVisibleColIdx") < 9)
  2701. {
  2702. setHide(true)
  2703. }
  2704. ]]></Script>
  2705. </Col>
  2706. <Col width="80" id="column97" styleId="0">
  2707. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  2708. <Script><![CDATA[if(get("varVisibleColIdx") < 10)
  2709. {
  2710. setHide(true)
  2711. }
  2712. ]]></Script>
  2713. </Col>
  2714. <Col width="86" id="column98" styleId="0">
  2715. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  2716. <Script><![CDATA[if(get("varVisibleColIdx") < 11)
  2717. {
  2718. setHide(true)
  2719. }
  2720. ]]></Script>
  2721. </Col>
  2722. <Col width="81" id="column99" styleId="0">
  2723. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  2724. <Script><![CDATA[if(get("varVisibleColIdx") < 12)
  2725. {
  2726. setHide(true)
  2727. }
  2728. ]]></Script>
  2729. </Col>
  2730. <Col width="84" id="column100" styleId="0">
  2731. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  2732. <Script><![CDATA[if(get("varVisibleColIdx") < 13)
  2733. {
  2734. setHide(true)
  2735. }
  2736. ]]></Script>
  2737. </Col>
  2738. <Col width="79" id="column101" styleId="0">
  2739. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  2740. <Script><![CDATA[if(get("varVisibleColIdx") < 14)
  2741. {
  2742. setHide(true)
  2743. }
  2744. ]]></Script>
  2745. </Col>
  2746. <Col width="86" id="column102" styleId="0">
  2747. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  2748. <Script><![CDATA[if(get("varVisibleColIdx") < 15)
  2749. {
  2750. setHide(true)
  2751. }
  2752. ]]></Script>
  2753. </Col>
  2754. <Col width="82" id="column103" styleId="0">
  2755. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  2756. <Script><![CDATA[if(get("varVisibleColIdx") < 16)
  2757. {
  2758. setHide(true)
  2759. }
  2760. ]]></Script>
  2761. </Col>
  2762. <Col width="83" id="column104" styleId="0">
  2763. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  2764. <Script><![CDATA[if(get("varVisibleColIdx") < 17)
  2765. {
  2766. setHide(true)
  2767. }
  2768. ]]></Script>
  2769. </Col>
  2770. <Col width="66" id="column105" styleId="0">
  2771. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  2772. <Script><![CDATA[if(get("varVisibleColIdx") < 18)
  2773. {
  2774. setHide(true)
  2775. }
  2776. ]]></Script>
  2777. </Col>
  2778. <Col width="61" id="column106" styleId="0">
  2779. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  2780. <Script><![CDATA[if(get("varVisibleColIdx") < 19)
  2781. {
  2782. setHide(true)
  2783. }
  2784. ]]></Script>
  2785. </Col>
  2786. <Col width="56" id="column107" styleId="0">
  2787. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  2788. <Script><![CDATA[if(get("varVisibleColIdx") < 20)
  2789. {
  2790. setHide(true)
  2791. }
  2792. if(cell6.getValue()=="节点")
  2793. {
  2794. setProperty("style.border-right-width", 0);
  2795. setProperty("style.border-left-width", 0);
  2796. setProperty("style.border-top-width", 0);
  2797. }
  2798. ]]></Script>
  2799. </Col>
  2800. <TR height="93" type="detail" autoAdjustHeight="true" id="row27" styleId="8">
  2801. <TD id="cell105" styleId="9">
  2802. <Value type="field">cell1</Value>
  2803. </TD>
  2804. <TD id="cell106" styleId="9">
  2805. <Script><![CDATA[if(cell105.getValue()=="合计" || cell105.getValue()=="绩效等级" || cell4.getValue()=="评语")
  2806. {
  2807. setProperty("style.border-right-width", 0);
  2808. setProperty("style.border-left-width", 0);
  2809. }
  2810. if(cell6.getValue()=="节点")
  2811. {
  2812. setProperty("style.border-right-width", 0);
  2813. setProperty("style.border-left-width", 0);
  2814. setProperty("style.border-top-width", 0);
  2815. setProperty("style.font-size", 0);
  2816. }]]></Script>
  2817. <Value type="field">cell2</Value>
  2818. </TD>
  2819. <TD id="cell107" styleId="9">
  2820. <Script><![CDATA[if(cell105.getValue()=="合计" || cell105.getValue()=="绩效等级" || cell4.getValue()=="评语")
  2821. { if(get("varVisibleColIdx") == 3)
  2822. {
  2823. setProperty("style.border-left-width", 0);
  2824. }
  2825. else
  2826. {
  2827. setProperty("style.border-right-width", 0);
  2828. setProperty("style.border-left-width", 0);
  2829. }
  2830. }
  2831. if(cell6.getValue()=="节点")
  2832. {
  2833. setProperty("style.border-right-width", 0);
  2834. setProperty("style.border-left-width", 0);
  2835. setProperty("style.border-top-width", 0);
  2836. }]]></Script>
  2837. <Value type="field">cell3</Value>
  2838. </TD>
  2839. <TD id="cell108" styleId="9">
  2840. <Script><![CDATA[if(cell105.getValue()=="合计" || cell105.getValue()=="绩效等级" || cell4.getValue()=="评语")
  2841. {
  2842. if(get("varVisibleColIdx") == 4)
  2843. {
  2844. setProperty("style.border-left-width", 0);
  2845. }
  2846. else
  2847. {
  2848. setProperty("style.border-right-width", 0);
  2849. setProperty("style.border-left-width", 0);
  2850. }
  2851. }
  2852. if(cell6.getValue()=="节点")
  2853. {
  2854. setProperty("style.border-right-width", 0);
  2855. setProperty("style.border-left-width", 0);
  2856. setProperty("style.border-top-width", 0);
  2857. }]]></Script>
  2858. <Value type="field">cell4</Value>
  2859. </TD>
  2860. <TD id="cell109" styleId="9">
  2861. <Script><![CDATA[if(cell105.getValue()=="合计" || cell105.getValue()=="绩效等级" || cell4.getValue()=="评语")
  2862. { if(get("varVisibleColIdx") == 5)
  2863. {
  2864. setProperty("style.border-left-width", 0);
  2865. }
  2866. else
  2867. {
  2868. setProperty("style.border-right-width", 0);
  2869. setProperty("style.border-left-width", 0);
  2870. }
  2871. }
  2872. if(cell6.getValue()=="节点")
  2873. {
  2874. setProperty("style.border-right-width", 0);
  2875. setProperty("style.border-left-width", 0);
  2876. setProperty("style.border-top-width", 0);
  2877. }]]></Script>
  2878. <Value type="field">cell5</Value>
  2879. </TD>
  2880. <TD id="cell110" styleId="9">
  2881. <Script><![CDATA[if(cell105.getValue()=="合计" || cell105.getValue()=="绩效等级" || cell4.getValue()=="评语")
  2882. { if(get("varVisibleColIdx") == 6)
  2883. {
  2884. setProperty("style.border-left-width", 0);
  2885. }
  2886. else
  2887. {
  2888. setProperty("style.border-right-width", 0);
  2889. setProperty("style.border-left-width", 0);
  2890. }
  2891. }
  2892. if(cell6.getValue()=="节点")
  2893. {
  2894. setProperty("style.border-right-width", 0);
  2895. setProperty("style.border-left-width", 0);
  2896. setProperty("style.border-top-width", 0);
  2897. }]]></Script>
  2898. <Value type="field">cell6</Value>
  2899. </TD>
  2900. <TD id="cell111" styleId="9">
  2901. <Script><![CDATA[if(cell105.getValue()=="合计" || cell105.getValue()=="绩效等级" || cell4.getValue()=="评语")
  2902. {
  2903. if(get("varVisibleColIdx") == 7)
  2904. {
  2905. setProperty("style.border-left-width", 0);
  2906. }
  2907. else
  2908. {
  2909. setProperty("style.border-right-width", 0);
  2910. setProperty("style.border-left-width", 0);
  2911. }
  2912. }
  2913. if(cell6.getValue()=="节点")
  2914. {
  2915. setProperty("style.border-right-width", 0);
  2916. setProperty("style.border-left-width", 0);
  2917. setProperty("style.border-top-width", 0);
  2918. }]]></Script>
  2919. <Value type="field">cell7</Value>
  2920. </TD>
  2921. <TD id="cell112" styleId="9">
  2922. <Script><![CDATA[if(cell105.getValue()=="合计" || cell105.getValue()=="绩效等级" || cell4.getValue()=="评语")
  2923. {
  2924. if(get("varVisibleColIdx") == 8)
  2925. {
  2926. setProperty("style.border-left-width", 0);
  2927. }
  2928. else
  2929. {
  2930. setProperty("style.border-right-width", 0);
  2931. setProperty("style.border-left-width", 0);
  2932. }
  2933. }
  2934. if(cell6.getValue()=="节点")
  2935. {
  2936. setProperty("style.border-right-width", 0);
  2937. setProperty("style.border-left-width", 0);
  2938. setProperty("style.border-top-width", 0);
  2939. }]]></Script>
  2940. <Value type="field">cell8</Value>
  2941. </TD>
  2942. <TD id="cell113" styleId="9">
  2943. <Script><![CDATA[if(cell105.getValue()=="合计" || cell105.getValue()=="绩效等级" || cell4.getValue()=="评语")
  2944. {
  2945. if(get("varVisibleColIdx") == 9)
  2946. {
  2947. setProperty("style.border-left-width", 0);
  2948. }
  2949. else
  2950. {
  2951. setProperty("style.border-right-width", 0);
  2952. setProperty("style.border-left-width", 0);
  2953. }
  2954. }
  2955. if(cell6.getValue()=="节点")
  2956. {
  2957. setProperty("style.border-right-width", 0);
  2958. setProperty("style.border-left-width", 0);
  2959. setProperty("style.border-top-width", 0);
  2960. }]]></Script>
  2961. <Value type="field">cell9</Value>
  2962. </TD>
  2963. <TD id="cell114" styleId="9">
  2964. <Script><![CDATA[if(cell105.getValue()=="合计" || cell105.getValue()=="绩效等级" || cell4.getValue()=="评语")
  2965. {
  2966. if(get("varVisibleColIdx") == 10)
  2967. {
  2968. setProperty("style.border-left-width", 0);
  2969. }
  2970. else
  2971. {
  2972. setProperty("style.border-right-width", 0);
  2973. setProperty("style.border-left-width", 0);
  2974. }
  2975. }
  2976. if(cell6.getValue()=="节点")
  2977. {
  2978. setProperty("style.border-right-width", 0);
  2979. setProperty("style.border-left-width", 0);
  2980. setProperty("style.border-top-width", 0);
  2981. }]]></Script>
  2982. <Value type="field">cell10</Value>
  2983. </TD>
  2984. <TD id="cell115" styleId="9">
  2985. <Script><![CDATA[if(cell105.getValue()=="合计" || cell105.getValue()=="绩效等级" || cell4.getValue()=="评语")
  2986. {
  2987. if(get("varVisibleColIdx") == 11)
  2988. {
  2989. setProperty("style.border-left-width", 0);
  2990. }
  2991. else
  2992. {
  2993. setProperty("style.border-right-width", 0);
  2994. setProperty("style.border-left-width", 0);
  2995. }
  2996. }
  2997. if(cell6.getValue()=="节点")
  2998. {
  2999. setProperty("style.border-right-width", 0);
  3000. setProperty("style.border-left-width", 0);
  3001. setProperty("style.border-top-width", 0);
  3002. }]]></Script>
  3003. <Value type="field">cell11</Value>
  3004. </TD>
  3005. <TD id="cell116" styleId="9">
  3006. <Script><![CDATA[if(cell105.getValue()=="合计" || cell105.getValue()=="绩效等级" || cell4.getValue()=="评语")
  3007. {
  3008. if(get("varVisibleColIdx") == 12)
  3009. {
  3010. setProperty("style.border-left-width", 0);
  3011. }
  3012. else
  3013. {
  3014. setProperty("style.border-right-width", 0);
  3015. setProperty("style.border-left-width", 0);
  3016. }
  3017. }
  3018. if(cell6.getValue()=="节点")
  3019. {
  3020. setProperty("style.border-right-width", 0);
  3021. setProperty("style.border-left-width", 0);
  3022. setProperty("style.border-top-width", 0);
  3023. }]]></Script>
  3024. <Value type="field">cell12</Value>
  3025. </TD>
  3026. <TD id="cell117" styleId="9">
  3027. <Script><![CDATA[if(cell105.getValue()=="合计" || cell105.getValue()=="绩效等级" || cell4.getValue()=="评语")
  3028. { if(get("varVisibleColIdx") == 13)
  3029. {
  3030. setProperty("style.border-left-width", 0);
  3031. }
  3032. else
  3033. {
  3034. setProperty("style.border-right-width", 0);
  3035. setProperty("style.border-left-width", 0);
  3036. }
  3037. }
  3038. if(cell6.getValue()=="节点")
  3039. {
  3040. setProperty("style.border-right-width", 0);
  3041. setProperty("style.border-left-width", 0);
  3042. setProperty("style.border-top-width", 0);
  3043. }]]></Script>
  3044. <Value type="field">cell13</Value>
  3045. </TD>
  3046. <TD id="cell118" styleId="9">
  3047. <Script><![CDATA[if(cell105.getValue()=="合计" || cell105.getValue()=="绩效等级" || cell4.getValue()=="评语")
  3048. { if(get("varVisibleColIdx") == 14)
  3049. {
  3050. setProperty("style.border-left-width", 0);
  3051. }
  3052. else
  3053. {
  3054. setProperty("style.border-right-width", 0);
  3055. setProperty("style.border-left-width", 0);
  3056. }
  3057. }
  3058. if(cell6.getValue()=="节点")
  3059. {
  3060. setProperty("style.border-right-width", 0);
  3061. setProperty("style.border-left-width", 0);
  3062. setProperty("style.border-top-width", 0);
  3063. }]]></Script>
  3064. <Value type="field">cell14</Value>
  3065. </TD>
  3066. <TD id="cell119" styleId="9">
  3067. <Script><![CDATA[if(cell105.getValue()=="合计" || cell105.getValue()=="绩效等级" || cell4.getValue()=="评语")
  3068. {
  3069. if(get("varVisibleColIdx") == 15)
  3070. {
  3071. setProperty("style.border-left-width", 0);
  3072. }
  3073. else
  3074. {
  3075. setProperty("style.border-right-width", 0);
  3076. setProperty("style.border-left-width", 0);
  3077. }
  3078. }
  3079. if(cell6.getValue()=="节点")
  3080. {
  3081. setProperty("style.border-right-width", 0);
  3082. setProperty("style.border-left-width", 0);
  3083. setProperty("style.border-top-width", 0);
  3084. }]]></Script>
  3085. <Value type="field">cell15</Value>
  3086. </TD>
  3087. <TD id="cell120" styleId="9">
  3088. <Script><![CDATA[if(cell105.getValue()=="合计" || cell105.getValue()=="绩效等级" || cell4.getValue()=="评语")
  3089. {
  3090. if(get("varVisibleColIdx") == 16)
  3091. {
  3092. setProperty("style.border-left-width", 0);
  3093. }
  3094. else
  3095. {
  3096. setProperty("style.border-right-width", 0);
  3097. setProperty("style.border-left-width", 0);
  3098. }
  3099. }
  3100. if(cell6.getValue()=="节点")
  3101. {
  3102. setProperty("style.border-right-width", 0);
  3103. setProperty("style.border-left-width", 0);
  3104. setProperty("style.border-top-width", 0);
  3105. }]]></Script>
  3106. <Value type="field">cell16</Value>
  3107. </TD>
  3108. <TD id="cell121" styleId="9">
  3109. <Script><![CDATA[if(cell105.getValue()=="合计" || cell105.getValue()=="绩效等级" || cell4.getValue()=="评语")
  3110. { if(get("varVisibleColIdx") == 17)
  3111. {
  3112. setProperty("style.border-left-width", 0);
  3113. }
  3114. else
  3115. {
  3116. setProperty("style.border-right-width", 0);
  3117. setProperty("style.border-left-width", 0);
  3118. }
  3119. }
  3120. if(cell6.getValue()=="节点")
  3121. {
  3122. setProperty("style.border-right-width", 0);
  3123. setProperty("style.border-left-width", 0);
  3124. setProperty("style.border-top-width", 0);
  3125. }]]></Script>
  3126. <Value type="field">cell17</Value>
  3127. </TD>
  3128. <TD id="cell122" styleId="9">
  3129. <Script><![CDATA[if(cell105.getValue()=="合计" || cell105.getValue()=="绩效等级" || cell4.getValue()=="评语")
  3130. {
  3131. if(get("varVisibleColIdx") == 18)
  3132. {
  3133. setProperty("style.border-left-width", 0);
  3134. }
  3135. else
  3136. {
  3137. setProperty("style.border-right-width", 0);
  3138. setProperty("style.border-left-width", 0);
  3139. }
  3140. }
  3141. if(cell6.getValue()=="节点")
  3142. {
  3143. setProperty("style.border-right-width", 0);
  3144. setProperty("style.border-left-width", 0);
  3145. setProperty("style.border-top-width", 0);
  3146. }]]></Script>
  3147. <Value type="field">cell18</Value>
  3148. </TD>
  3149. <TD id="cell123" styleId="9">
  3150. <Script><![CDATA[if(cell105.getValue()=="合计" || cell105.getValue()=="绩效等级" || cell4.getValue()=="评语")
  3151. {
  3152. if(get("varVisibleColIdx") == 19)
  3153. {
  3154. setProperty("style.border-left-width", 0);
  3155. }
  3156. else
  3157. {
  3158. setProperty("style.border-right-width", 0);
  3159. setProperty("style.border-left-width", 0);
  3160. }
  3161. }
  3162. if(cell6.getValue()=="节点")
  3163. {
  3164. setProperty("style.border-right-width", 0);
  3165. setProperty("style.border-left-width", 0);
  3166. setProperty("style.border-top-width", 0);
  3167. }]]></Script>
  3168. <Value type="field">cell19</Value>
  3169. </TD>
  3170. <TD id="cell124" styleId="9">
  3171. <Script><![CDATA[if(cell105.getValue()=="合计" || cell105.getValue()=="绩效等级" || cell4.getValue()=="评语")
  3172. {
  3173. setProperty("style.border-left-width", 0);
  3174. }
  3175. if(cell6.getValue()=="节点")
  3176. {
  3177. setProperty("style.border-right-width", 0);
  3178. setProperty("style.border-left-width", 0);
  3179. setProperty("style.border-top-width", 0);
  3180. }]]></Script>
  3181. <Value type="field">cell20</Value>
  3182. </TD>
  3183. </TR>
  3184. </PrintDataGrid>
  3185. </Sub-objects>
  3186. </TD>
  3187. </TR>
  3188. <TR height="80" id="row30" styleId="0" autoAdjustHeight="true">
  3189. <TD id="cell125" styleId="10">
  3190. <Value type="field" dataSource="tabHeadAndEnd">10</Value>
  3191. </TD>
  3192. </TR>
  3193. </PrintLayoutGrid>
  3194. </Sub-objects>
  3195. </TD>
  3196. </TR>
  3197. <TR height="295" id="row25" styleId="5" autoAdjustHeight="true">
  3198. <PreScript><![CDATA[setHide(getFieldValue("tabHeadAndEnd","11")==null);]]></PreScript>
  3199. <TD id="cell101" styleId="5">
  3200. <Sub-objects>
  3201. <PrintLayoutGrid id="layoutGrid9" styleId="5" x="0" y="0" horizontalFill="true">
  3202. <Data />
  3203. <Col width="1693" id="column129" />
  3204. <TR height="80" id="row32" styleId="0" autoAdjustHeight="true">
  3205. <TD id="cell126" styleId="5">
  3206. <Sub-objects>
  3207. <Text id="text12" styleId="15" x="0" y="0" width="1691" height="78" horizontalFill="true" verticalFill="true">
  3208. <Data dataSource="tabHeadAndEnd" bindField="11" />
  3209. </Text>
  3210. </Sub-objects>
  3211. </TD>
  3212. </TR>
  3213. <TR height="140" id="row33" styleId="0" autoAdjustHeight="true">
  3214. <TD id="cell127" styleId="5">
  3215. <Sub-objects>
  3216. <PrintDataGrid id="dataGrid6" styleId="7" x="0" y="20" horizontalFill="true">
  3217. <Data dataSource="tabEntry6" />
  3218. <Col width="114" id="column109" styleId="0">
  3219. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  3220. </Col>
  3221. <Col width="85" id="column110" styleId="0">
  3222. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  3223. </Col>
  3224. <Col width="98" id="column111" styleId="0">
  3225. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  3226. </Col>
  3227. <Col width="89" id="column112" styleId="0">
  3228. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  3229. <Script><![CDATA[if(get("varVisibleColIdx") < 4)
  3230. {
  3231. setHide(true)
  3232. }
  3233. ]]></Script>
  3234. </Col>
  3235. <Col width="101" id="column113" styleId="0">
  3236. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  3237. <Script><![CDATA[if(get("varVisibleColIdx") < 5)
  3238. {
  3239. setHide(true)
  3240. }
  3241. ]]></Script>
  3242. </Col>
  3243. <Col width="101" id="column114" styleId="0">
  3244. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  3245. <Script><![CDATA[if(get("varVisibleColIdx") < 6)
  3246. {
  3247. setHide(true)
  3248. }
  3249. ]]></Script>
  3250. </Col>
  3251. <Col width="81" id="column115" styleId="0">
  3252. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  3253. <Script><![CDATA[if(get("varVisibleColIdx") < 7)
  3254. {
  3255. setHide(true)
  3256. }
  3257. ]]></Script>
  3258. </Col>
  3259. <Col width="84" id="column116" styleId="0">
  3260. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  3261. <Script><![CDATA[if(get("varVisibleColIdx") < 8)
  3262. {
  3263. setHide(true)
  3264. }
  3265. ]]></Script>
  3266. </Col>
  3267. <Col width="94" id="column117" styleId="0">
  3268. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  3269. <Script><![CDATA[if(get("varVisibleColIdx") < 9)
  3270. {
  3271. setHide(true)
  3272. }
  3273. ]]></Script>
  3274. </Col>
  3275. <Col width="80" id="column118" styleId="0">
  3276. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  3277. <Script><![CDATA[if(get("varVisibleColIdx") < 10)
  3278. {
  3279. setHide(true)
  3280. }
  3281. ]]></Script>
  3282. </Col>
  3283. <Col width="86" id="column119" styleId="0">
  3284. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  3285. <Script><![CDATA[if(get("varVisibleColIdx") < 11)
  3286. {
  3287. setHide(true)
  3288. }
  3289. ]]></Script>
  3290. </Col>
  3291. <Col width="81" id="column120" styleId="0">
  3292. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  3293. <Script><![CDATA[if(get("varVisibleColIdx") < 12)
  3294. {
  3295. setHide(true)
  3296. }
  3297. ]]></Script>
  3298. </Col>
  3299. <Col width="84" id="column121" styleId="0">
  3300. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  3301. <Script><![CDATA[if(get("varVisibleColIdx") < 13)
  3302. {
  3303. setHide(true)
  3304. }
  3305. ]]></Script>
  3306. </Col>
  3307. <Col width="79" id="column122" styleId="0">
  3308. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  3309. <Script><![CDATA[if(get("varVisibleColIdx") < 14)
  3310. {
  3311. setHide(true)
  3312. }
  3313. ]]></Script>
  3314. </Col>
  3315. <Col width="86" id="column123" styleId="0">
  3316. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  3317. <Script><![CDATA[if(get("varVisibleColIdx") < 15)
  3318. {
  3319. setHide(true)
  3320. }
  3321. ]]></Script>
  3322. </Col>
  3323. <Col width="82" id="column124" styleId="0">
  3324. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  3325. <Script><![CDATA[if(get("varVisibleColIdx") < 16)
  3326. {
  3327. setHide(true)
  3328. }
  3329. ]]></Script>
  3330. </Col>
  3331. <Col width="83" id="column125" styleId="0">
  3332. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  3333. <Script><![CDATA[if(get("varVisibleColIdx") < 17)
  3334. {
  3335. setHide(true)
  3336. }
  3337. ]]></Script>
  3338. </Col>
  3339. <Col width="66" id="column126" styleId="0">
  3340. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  3341. <Script><![CDATA[if(get("varVisibleColIdx") < 18)
  3342. {
  3343. setHide(true)
  3344. }
  3345. ]]></Script>
  3346. </Col>
  3347. <Col width="61" id="column127" styleId="0">
  3348. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  3349. <Script><![CDATA[if(get("varVisibleColIdx") < 19)
  3350. {
  3351. setHide(true)
  3352. }
  3353. ]]></Script>
  3354. </Col>
  3355. <Col width="56" id="column128" styleId="0">
  3356. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  3357. <Script><![CDATA[if(get("varVisibleColIdx") < 20)
  3358. {
  3359. setHide(true)
  3360. }
  3361. if(cell6.getValue()=="节点")
  3362. {
  3363. setProperty("style.border-right-width", 0);
  3364. setProperty("style.border-left-width", 0);
  3365. setProperty("style.border-top-width", 0);
  3366. }
  3367. ]]></Script>
  3368. </Col>
  3369. <TR height="93" type="detail" autoAdjustHeight="true" id="row31" styleId="8">
  3370. <TD id="cell128" styleId="9">
  3371. <Value type="field">cell1</Value>
  3372. </TD>
  3373. <TD id="cell129" styleId="9">
  3374. <Script><![CDATA[if(cell128.getValue()=="合计" || cell128.getValue()=="绩效等级" || cell4.getValue()=="评语")
  3375. {
  3376. setProperty("style.border-right-width", 0);
  3377. setProperty("style.border-left-width", 0);
  3378. }
  3379. if(cell6.getValue()=="节点")
  3380. {
  3381. setProperty("style.border-right-width", 0);
  3382. setProperty("style.border-left-width", 0);
  3383. setProperty("style.border-top-width", 0);
  3384. setProperty("style.font-size", 0);
  3385. }]]></Script>
  3386. <Value type="field">cell2</Value>
  3387. </TD>
  3388. <TD id="cell130" styleId="9">
  3389. <Script><![CDATA[if(cell128.getValue()=="合计" || cell128.getValue()=="绩效等级" || cell4.getValue()=="评语")
  3390. { if(get("varVisibleColIdx") == 3)
  3391. {
  3392. setProperty("style.border-left-width", 0);
  3393. }
  3394. else
  3395. {
  3396. setProperty("style.border-right-width", 0);
  3397. setProperty("style.border-left-width", 0);
  3398. }
  3399. }
  3400. if(cell6.getValue()=="节点")
  3401. {
  3402. setProperty("style.border-right-width", 0);
  3403. setProperty("style.border-left-width", 0);
  3404. setProperty("style.border-top-width", 0);
  3405. }]]></Script>
  3406. <Value type="field">cell3</Value>
  3407. </TD>
  3408. <TD id="cell131" styleId="9">
  3409. <Script><![CDATA[if(cell128.getValue()=="合计" || cell128.getValue()=="绩效等级" || cell4.getValue()=="评语")
  3410. {
  3411. if(get("varVisibleColIdx") == 4)
  3412. {
  3413. setProperty("style.border-left-width", 0);
  3414. }
  3415. else
  3416. {
  3417. setProperty("style.border-right-width", 0);
  3418. setProperty("style.border-left-width", 0);
  3419. }
  3420. }
  3421. if(cell6.getValue()=="节点")
  3422. {
  3423. setProperty("style.border-right-width", 0);
  3424. setProperty("style.border-left-width", 0);
  3425. setProperty("style.border-top-width", 0);
  3426. }]]></Script>
  3427. <Value type="field">cell4</Value>
  3428. </TD>
  3429. <TD id="cell132" styleId="9">
  3430. <Script><![CDATA[if(cell128.getValue()=="合计" || cell128.getValue()=="绩效等级" || cell4.getValue()=="评语")
  3431. { if(get("varVisibleColIdx") == 5)
  3432. {
  3433. setProperty("style.border-left-width", 0);
  3434. }
  3435. else
  3436. {
  3437. setProperty("style.border-right-width", 0);
  3438. setProperty("style.border-left-width", 0);
  3439. }
  3440. }
  3441. if(cell6.getValue()=="节点")
  3442. {
  3443. setProperty("style.border-right-width", 0);
  3444. setProperty("style.border-left-width", 0);
  3445. setProperty("style.border-top-width", 0);
  3446. }]]></Script>
  3447. <Value type="field">cell5</Value>
  3448. </TD>
  3449. <TD id="cell133" styleId="9">
  3450. <Script><![CDATA[if(cell128.getValue()=="合计" || cell128.getValue()=="绩效等级" || cell4.getValue()=="评语")
  3451. { if(get("varVisibleColIdx") == 6)
  3452. {
  3453. setProperty("style.border-left-width", 0);
  3454. }
  3455. else
  3456. {
  3457. setProperty("style.border-right-width", 0);
  3458. setProperty("style.border-left-width", 0);
  3459. }
  3460. }
  3461. if(cell6.getValue()=="节点")
  3462. {
  3463. setProperty("style.border-right-width", 0);
  3464. setProperty("style.border-left-width", 0);
  3465. setProperty("style.border-top-width", 0);
  3466. }]]></Script>
  3467. <Value type="field">cell6</Value>
  3468. </TD>
  3469. <TD id="cell134" styleId="9">
  3470. <Script><![CDATA[if(cell128.getValue()=="合计" || cell128.getValue()=="绩效等级" || cell4.getValue()=="评语")
  3471. {
  3472. if(get("varVisibleColIdx") == 7)
  3473. {
  3474. setProperty("style.border-left-width", 0);
  3475. }
  3476. else
  3477. {
  3478. setProperty("style.border-right-width", 0);
  3479. setProperty("style.border-left-width", 0);
  3480. }
  3481. }
  3482. if(cell6.getValue()=="节点")
  3483. {
  3484. setProperty("style.border-right-width", 0);
  3485. setProperty("style.border-left-width", 0);
  3486. setProperty("style.border-top-width", 0);
  3487. }]]></Script>
  3488. <Value type="field">cell7</Value>
  3489. </TD>
  3490. <TD id="cell135" styleId="9">
  3491. <Script><![CDATA[if(cell128.getValue()=="合计" || cell128.getValue()=="绩效等级" || cell4.getValue()=="评语")
  3492. {
  3493. if(get("varVisibleColIdx") == 8)
  3494. {
  3495. setProperty("style.border-left-width", 0);
  3496. }
  3497. else
  3498. {
  3499. setProperty("style.border-right-width", 0);
  3500. setProperty("style.border-left-width", 0);
  3501. }
  3502. }
  3503. if(cell6.getValue()=="节点")
  3504. {
  3505. setProperty("style.border-right-width", 0);
  3506. setProperty("style.border-left-width", 0);
  3507. setProperty("style.border-top-width", 0);
  3508. }]]></Script>
  3509. <Value type="field">cell8</Value>
  3510. </TD>
  3511. <TD id="cell136" styleId="9">
  3512. <Script><![CDATA[if(cell128.getValue()=="合计" || cell128.getValue()=="绩效等级" || cell4.getValue()=="评语")
  3513. {
  3514. if(get("varVisibleColIdx") == 9)
  3515. {
  3516. setProperty("style.border-left-width", 0);
  3517. }
  3518. else
  3519. {
  3520. setProperty("style.border-right-width", 0);
  3521. setProperty("style.border-left-width", 0);
  3522. }
  3523. }
  3524. if(cell6.getValue()=="节点")
  3525. {
  3526. setProperty("style.border-right-width", 0);
  3527. setProperty("style.border-left-width", 0);
  3528. setProperty("style.border-top-width", 0);
  3529. }]]></Script>
  3530. <Value type="field">cell9</Value>
  3531. </TD>
  3532. <TD id="cell137" styleId="9">
  3533. <Script><![CDATA[if(cell128.getValue()=="合计" || cell128.getValue()=="绩效等级" || cell4.getValue()=="评语")
  3534. {
  3535. if(get("varVisibleColIdx") == 10)
  3536. {
  3537. setProperty("style.border-left-width", 0);
  3538. }
  3539. else
  3540. {
  3541. setProperty("style.border-right-width", 0);
  3542. setProperty("style.border-left-width", 0);
  3543. }
  3544. }
  3545. if(cell6.getValue()=="节点")
  3546. {
  3547. setProperty("style.border-right-width", 0);
  3548. setProperty("style.border-left-width", 0);
  3549. setProperty("style.border-top-width", 0);
  3550. }]]></Script>
  3551. <Value type="field">cell10</Value>
  3552. </TD>
  3553. <TD id="cell138" styleId="9">
  3554. <Script><![CDATA[if(cell128.getValue()=="合计" || cell128.getValue()=="绩效等级" || cell4.getValue()=="评语")
  3555. {
  3556. if(get("varVisibleColIdx") == 11)
  3557. {
  3558. setProperty("style.border-left-width", 0);
  3559. }
  3560. else
  3561. {
  3562. setProperty("style.border-right-width", 0);
  3563. setProperty("style.border-left-width", 0);
  3564. }
  3565. }
  3566. if(cell6.getValue()=="节点")
  3567. {
  3568. setProperty("style.border-right-width", 0);
  3569. setProperty("style.border-left-width", 0);
  3570. setProperty("style.border-top-width", 0);
  3571. }]]></Script>
  3572. <Value type="field">cell11</Value>
  3573. </TD>
  3574. <TD id="cell139" styleId="9">
  3575. <Script><![CDATA[if(cell128.getValue()=="合计" || cell128.getValue()=="绩效等级" || cell4.getValue()=="评语")
  3576. {
  3577. if(get("varVisibleColIdx") == 12)
  3578. {
  3579. setProperty("style.border-left-width", 0);
  3580. }
  3581. else
  3582. {
  3583. setProperty("style.border-right-width", 0);
  3584. setProperty("style.border-left-width", 0);
  3585. }
  3586. }
  3587. if(cell6.getValue()=="节点")
  3588. {
  3589. setProperty("style.border-right-width", 0);
  3590. setProperty("style.border-left-width", 0);
  3591. setProperty("style.border-top-width", 0);
  3592. }]]></Script>
  3593. <Value type="field">cell12</Value>
  3594. </TD>
  3595. <TD id="cell140" styleId="9">
  3596. <Script><![CDATA[if(cell128.getValue()=="合计" || cell128.getValue()=="绩效等级" || cell4.getValue()=="评语")
  3597. { if(get("varVisibleColIdx") == 13)
  3598. {
  3599. setProperty("style.border-left-width", 0);
  3600. }
  3601. else
  3602. {
  3603. setProperty("style.border-right-width", 0);
  3604. setProperty("style.border-left-width", 0);
  3605. }
  3606. }
  3607. if(cell6.getValue()=="节点")
  3608. {
  3609. setProperty("style.border-right-width", 0);
  3610. setProperty("style.border-left-width", 0);
  3611. setProperty("style.border-top-width", 0);
  3612. }]]></Script>
  3613. <Value type="field">cell13</Value>
  3614. </TD>
  3615. <TD id="cell141" styleId="9">
  3616. <Script><![CDATA[if(cell128.getValue()=="合计" || cell128.getValue()=="绩效等级" || cell4.getValue()=="评语")
  3617. {
  3618. if(get("varVisibleColIdx") == 14)
  3619. {
  3620. setProperty("style.border-left-width", 0);
  3621. }
  3622. else
  3623. {
  3624. setProperty("style.border-right-width", 0);
  3625. setProperty("style.border-left-width", 0);
  3626. }
  3627. }
  3628. if(cell6.getValue()=="节点")
  3629. {
  3630. setProperty("style.border-right-width", 0);
  3631. setProperty("style.border-left-width", 0);
  3632. setProperty("style.border-top-width", 0);
  3633. }]]></Script>
  3634. <Value type="field">cell14</Value>
  3635. </TD>
  3636. <TD id="cell142" styleId="9">
  3637. <Script><![CDATA[if(cell128.getValue()=="合计" || cell128.getValue()=="绩效等级" || cell4.getValue()=="评语")
  3638. {
  3639. if(get("varVisibleColIdx") == 15)
  3640. {
  3641. setProperty("style.border-left-width", 0);
  3642. }
  3643. else
  3644. {
  3645. setProperty("style.border-right-width", 0);
  3646. setProperty("style.border-left-width", 0);
  3647. }
  3648. }
  3649. if(cell6.getValue()=="节点")
  3650. {
  3651. setProperty("style.border-right-width", 0);
  3652. setProperty("style.border-left-width", 0);
  3653. setProperty("style.border-top-width", 0);
  3654. }]]></Script>
  3655. <Value type="field">cell15</Value>
  3656. </TD>
  3657. <TD id="cell143" styleId="9">
  3658. <Script><![CDATA[if(cell128.getValue()=="合计" || cell128.getValue()=="绩效等级" || cell4.getValue()=="评语")
  3659. {
  3660. if(get("varVisibleColIdx") == 16)
  3661. {
  3662. setProperty("style.border-left-width", 0);
  3663. }
  3664. else
  3665. {
  3666. setProperty("style.border-right-width", 0);
  3667. setProperty("style.border-left-width", 0);
  3668. }
  3669. }
  3670. if(cell6.getValue()=="节点")
  3671. {
  3672. setProperty("style.border-right-width", 0);
  3673. setProperty("style.border-left-width", 0);
  3674. setProperty("style.border-top-width", 0);
  3675. }]]></Script>
  3676. <Value type="field">cell16</Value>
  3677. </TD>
  3678. <TD id="cell144" styleId="9">
  3679. <Script><![CDATA[if(cell128.getValue()=="合计" || cell128.getValue()=="绩效等级" || cell4.getValue()=="评语")
  3680. {
  3681. if(get("varVisibleColIdx") == 17)
  3682. {
  3683. setProperty("style.border-left-width", 0);
  3684. }
  3685. else
  3686. {
  3687. setProperty("style.border-right-width", 0);
  3688. setProperty("style.border-left-width", 0);
  3689. }
  3690. }
  3691. if(cell6.getValue()=="节点")
  3692. {
  3693. setProperty("style.border-right-width", 0);
  3694. setProperty("style.border-left-width", 0);
  3695. setProperty("style.border-top-width", 0);
  3696. }]]></Script>
  3697. <Value type="field">cell17</Value>
  3698. </TD>
  3699. <TD id="cell145" styleId="9">
  3700. <Script><![CDATA[if(cell128.getValue()=="合计" || cell128.getValue()=="绩效等级" || cell4.getValue()=="评语")
  3701. {
  3702. if(get("varVisibleColIdx") == 18)
  3703. {
  3704. setProperty("style.border-left-width", 0);
  3705. }
  3706. else
  3707. {
  3708. setProperty("style.border-right-width", 0);
  3709. setProperty("style.border-left-width", 0);
  3710. }
  3711. }
  3712. if(cell6.getValue()=="节点")
  3713. {
  3714. setProperty("style.border-right-width", 0);
  3715. setProperty("style.border-left-width", 0);
  3716. setProperty("style.border-top-width", 0);
  3717. }]]></Script>
  3718. <Value type="field">cell18</Value>
  3719. </TD>
  3720. <TD id="cell146" styleId="9">
  3721. <Script><![CDATA[if(cell128.getValue()=="合计" || cell128.getValue()=="绩效等级" || cell4.getValue()=="评语")
  3722. {
  3723. if(get("varVisibleColIdx") == 19)
  3724. {
  3725. setProperty("style.border-left-width", 0);
  3726. }
  3727. else
  3728. {
  3729. setProperty("style.border-right-width", 0);
  3730. setProperty("style.border-left-width", 0);
  3731. }
  3732. }
  3733. if(cell6.getValue()=="节点")
  3734. {
  3735. setProperty("style.border-right-width", 0);
  3736. setProperty("style.border-left-width", 0);
  3737. setProperty("style.border-top-width", 0);
  3738. }]]></Script>
  3739. <Value type="field">cell19</Value>
  3740. </TD>
  3741. <TD id="cell147" styleId="9">
  3742. <Script><![CDATA[if(cell128.getValue()=="合计" || cell128.getValue()=="绩效等级" || cell4.getValue()=="评语")
  3743. {
  3744. setProperty("style.border-left-width", 0);
  3745. }
  3746. if(cell6.getValue()=="节点")
  3747. {
  3748. setProperty("style.border-right-width", 0);
  3749. setProperty("style.border-left-width", 0);
  3750. setProperty("style.border-top-width", 0);
  3751. }]]></Script>
  3752. <Value type="field">cell20</Value>
  3753. </TD>
  3754. </TR>
  3755. </PrintDataGrid>
  3756. </Sub-objects>
  3757. </TD>
  3758. </TR>
  3759. <TR height="80" id="row34" styleId="0" autoAdjustHeight="true">
  3760. <TD id="cell148" styleId="10">
  3761. <Value type="field" dataSource="tabHeadAndEnd">12</Value>
  3762. </TD>
  3763. </TR>
  3764. </PrintLayoutGrid>
  3765. </Sub-objects>
  3766. </TD>
  3767. </TR>
  3768. <TR height="295" id="row24" styleId="5" autoAdjustHeight="true">
  3769. <PreScript><![CDATA[setHide(getFieldValue("tabHeadAndEnd","13")==null);]]></PreScript>
  3770. <TD id="cell100" styleId="5">
  3771. <Sub-objects>
  3772. <PrintLayoutGrid id="layoutGrid10" styleId="5" x="0" y="0" horizontalFill="true">
  3773. <Data />
  3774. <Col width="1693" id="column150" />
  3775. <TR height="80" id="row36" styleId="0" autoAdjustHeight="true">
  3776. <TD id="cell149" styleId="5">
  3777. <Sub-objects>
  3778. <Text id="text14" styleId="16" x="0" y="0" width="1691" height="78" horizontalFill="true" verticalFill="true">
  3779. <Data dataSource="tabHeadAndEnd" bindField="13" />
  3780. </Text>
  3781. </Sub-objects>
  3782. </TD>
  3783. </TR>
  3784. <TR height="140" id="row37" styleId="0" autoAdjustHeight="true">
  3785. <TD id="cell150" styleId="5">
  3786. <Sub-objects>
  3787. <PrintDataGrid id="dataGrid7" styleId="7" x="0" y="20" horizontalFill="true">
  3788. <Data dataSource="tabEntry7" />
  3789. <Col width="114" id="column130" styleId="0">
  3790. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  3791. </Col>
  3792. <Col width="85" id="column131" styleId="0">
  3793. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  3794. </Col>
  3795. <Col width="98" id="column132" styleId="0">
  3796. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  3797. </Col>
  3798. <Col width="89" id="column133" styleId="0">
  3799. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  3800. <Script><![CDATA[if(get("varVisibleColIdx") < 4)
  3801. {
  3802. setHide(true)
  3803. }
  3804. ]]></Script>
  3805. </Col>
  3806. <Col width="101" id="column134" styleId="0">
  3807. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  3808. <Script><![CDATA[if(get("varVisibleColIdx") < 5)
  3809. {
  3810. setHide(true)
  3811. }
  3812. ]]></Script>
  3813. </Col>
  3814. <Col width="101" id="column135" styleId="0">
  3815. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  3816. <Script><![CDATA[if(get("varVisibleColIdx") < 6)
  3817. {
  3818. setHide(true)
  3819. }
  3820. ]]></Script>
  3821. </Col>
  3822. <Col width="81" id="column136" styleId="0">
  3823. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  3824. <Script><![CDATA[if(get("varVisibleColIdx") < 7)
  3825. {
  3826. setHide(true)
  3827. }
  3828. ]]></Script>
  3829. </Col>
  3830. <Col width="84" id="column137" styleId="0">
  3831. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  3832. <Script><![CDATA[if(get("varVisibleColIdx") < 8)
  3833. {
  3834. setHide(true)
  3835. }
  3836. ]]></Script>
  3837. </Col>
  3838. <Col width="94" id="column138" styleId="0">
  3839. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  3840. <Script><![CDATA[if(get("varVisibleColIdx") < 9)
  3841. {
  3842. setHide(true)
  3843. }
  3844. ]]></Script>
  3845. </Col>
  3846. <Col width="80" id="column139" styleId="0">
  3847. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  3848. <Script><![CDATA[if(get("varVisibleColIdx") < 10)
  3849. {
  3850. setHide(true)
  3851. }
  3852. ]]></Script>
  3853. </Col>
  3854. <Col width="86" id="column140" styleId="0">
  3855. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  3856. <Script><![CDATA[if(get("varVisibleColIdx") < 11)
  3857. {
  3858. setHide(true)
  3859. }
  3860. ]]></Script>
  3861. </Col>
  3862. <Col width="81" id="column141" styleId="0">
  3863. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  3864. <Script><![CDATA[if(get("varVisibleColIdx") < 12)
  3865. {
  3866. setHide(true)
  3867. }
  3868. ]]></Script>
  3869. </Col>
  3870. <Col width="84" id="column142" styleId="0">
  3871. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  3872. <Script><![CDATA[if(get("varVisibleColIdx") < 13)
  3873. {
  3874. setHide(true)
  3875. }
  3876. ]]></Script>
  3877. </Col>
  3878. <Col width="79" id="column143" styleId="0">
  3879. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  3880. <Script><![CDATA[if(get("varVisibleColIdx") < 14)
  3881. {
  3882. setHide(true)
  3883. }
  3884. ]]></Script>
  3885. </Col>
  3886. <Col width="86" id="column144" styleId="0">
  3887. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  3888. <Script><![CDATA[if(get("varVisibleColIdx") < 15)
  3889. {
  3890. setHide(true)
  3891. }
  3892. ]]></Script>
  3893. </Col>
  3894. <Col width="82" id="column145" styleId="0">
  3895. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  3896. <Script><![CDATA[if(get("varVisibleColIdx") < 16)
  3897. {
  3898. setHide(true)
  3899. }
  3900. ]]></Script>
  3901. </Col>
  3902. <Col width="83" id="column146" styleId="0">
  3903. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  3904. <Script><![CDATA[if(get("varVisibleColIdx") < 17)
  3905. {
  3906. setHide(true)
  3907. }
  3908. ]]></Script>
  3909. </Col>
  3910. <Col width="66" id="column147" styleId="0">
  3911. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  3912. <Script><![CDATA[if(get("varVisibleColIdx") < 18)
  3913. {
  3914. setHide(true)
  3915. }
  3916. ]]></Script>
  3917. </Col>
  3918. <Col width="61" id="column148" styleId="0">
  3919. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  3920. <Script><![CDATA[if(get("varVisibleColIdx") < 19)
  3921. {
  3922. setHide(true)
  3923. }
  3924. ]]></Script>
  3925. </Col>
  3926. <Col width="56" id="column149" styleId="0">
  3927. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  3928. <Script><![CDATA[if(get("varVisibleColIdx") < 20)
  3929. {
  3930. setHide(true)
  3931. }
  3932. if(cell6.getValue()=="节点")
  3933. {
  3934. setProperty("style.border-right-width", 0);
  3935. setProperty("style.border-left-width", 0);
  3936. setProperty("style.border-top-width", 0);
  3937. }
  3938. ]]></Script>
  3939. </Col>
  3940. <TR height="93" type="detail" autoAdjustHeight="true" id="row35" styleId="8">
  3941. <TD id="cell151" styleId="9">
  3942. <Value type="field">cell1</Value>
  3943. </TD>
  3944. <TD id="cell152" styleId="9">
  3945. <Script><![CDATA[if(cell151.getValue()=="合计" || cell151.getValue()=="绩效等级" || cell4.getValue()=="评语")
  3946. {
  3947. setProperty("style.border-right-width", 0);
  3948. setProperty("style.border-left-width", 0);
  3949. }
  3950. if(cell6.getValue()=="节点")
  3951. {
  3952. setProperty("style.border-right-width", 0);
  3953. setProperty("style.border-left-width", 0);
  3954. setProperty("style.border-top-width", 0);
  3955. setProperty("style.font-size", 0);
  3956. }]]></Script>
  3957. <Value type="field">cell2</Value>
  3958. </TD>
  3959. <TD id="cell153" styleId="9">
  3960. <Script><![CDATA[if(cell151.getValue()=="合计" || cell151.getValue()=="绩效等级" || cell4.getValue()=="评语")
  3961. { if(get("varVisibleColIdx") == 3)
  3962. {
  3963. setProperty("style.border-left-width", 0);
  3964. }
  3965. else
  3966. {
  3967. setProperty("style.border-right-width", 0);
  3968. setProperty("style.border-left-width", 0);
  3969. }
  3970. }
  3971. if(cell6.getValue()=="节点")
  3972. {
  3973. setProperty("style.border-right-width", 0);
  3974. setProperty("style.border-left-width", 0);
  3975. setProperty("style.border-top-width", 0);
  3976. }]]></Script>
  3977. <Value type="field">cell3</Value>
  3978. </TD>
  3979. <TD id="cell154" styleId="9">
  3980. <Script><![CDATA[if(cell151.getValue()=="合计" || cell151.getValue()=="绩效等级" || cell4.getValue()=="评语")
  3981. {
  3982. if(get("varVisibleColIdx") == 4)
  3983. {
  3984. setProperty("style.border-left-width", 0);
  3985. }
  3986. else
  3987. {
  3988. setProperty("style.border-right-width", 0);
  3989. setProperty("style.border-left-width", 0);
  3990. }
  3991. }
  3992. if(cell6.getValue()=="节点")
  3993. {
  3994. setProperty("style.border-right-width", 0);
  3995. setProperty("style.border-left-width", 0);
  3996. setProperty("style.border-top-width", 0);
  3997. }]]></Script>
  3998. <Value type="field">cell4</Value>
  3999. </TD>
  4000. <TD id="cell155" styleId="9">
  4001. <Script><![CDATA[if(cell151.getValue()=="合计" || cell151.getValue()=="绩效等级" || cell4.getValue()=="评语")
  4002. { if(get("varVisibleColIdx") == 5)
  4003. {
  4004. setProperty("style.border-left-width", 0);
  4005. }
  4006. else
  4007. {
  4008. setProperty("style.border-right-width", 0);
  4009. setProperty("style.border-left-width", 0);
  4010. }
  4011. }
  4012. if(cell6.getValue()=="节点")
  4013. {
  4014. setProperty("style.border-right-width", 0);
  4015. setProperty("style.border-left-width", 0);
  4016. setProperty("style.border-top-width", 0);
  4017. }]]></Script>
  4018. <Value type="field">cell5</Value>
  4019. </TD>
  4020. <TD id="cell156" styleId="9">
  4021. <Script><![CDATA[if(cell151.getValue()=="合计" || cell151.getValue()=="绩效等级" || cell4.getValue()=="评语")
  4022. { if(get("varVisibleColIdx") == 6)
  4023. {
  4024. setProperty("style.border-left-width", 0);
  4025. }
  4026. else
  4027. {
  4028. setProperty("style.border-right-width", 0);
  4029. setProperty("style.border-left-width", 0);
  4030. }
  4031. }
  4032. if(cell6.getValue()=="节点")
  4033. {
  4034. setProperty("style.border-right-width", 0);
  4035. setProperty("style.border-left-width", 0);
  4036. setProperty("style.border-top-width", 0);
  4037. }]]></Script>
  4038. <Value type="field">cell6</Value>
  4039. </TD>
  4040. <TD id="cell157" styleId="9">
  4041. <Script><![CDATA[if(cell151.getValue()=="合计" || cell151.getValue()=="绩效等级" || cell4.getValue()=="评语")
  4042. {
  4043. if(get("varVisibleColIdx") == 7)
  4044. {
  4045. setProperty("style.border-left-width", 0);
  4046. }
  4047. else
  4048. {
  4049. setProperty("style.border-right-width", 0);
  4050. setProperty("style.border-left-width", 0);
  4051. }
  4052. }
  4053. if(cell6.getValue()=="节点")
  4054. {
  4055. setProperty("style.border-right-width", 0);
  4056. setProperty("style.border-left-width", 0);
  4057. setProperty("style.border-top-width", 0);
  4058. }]]></Script>
  4059. <Value type="field">cell7</Value>
  4060. </TD>
  4061. <TD id="cell158" styleId="9">
  4062. <Script><![CDATA[if(cell151.getValue()=="合计" || cell151.getValue()=="绩效等级" || cell4.getValue()=="评语")
  4063. {
  4064. if(get("varVisibleColIdx") == 8)
  4065. {
  4066. setProperty("style.border-left-width", 0);
  4067. }
  4068. else
  4069. {
  4070. setProperty("style.border-right-width", 0);
  4071. setProperty("style.border-left-width", 0);
  4072. }
  4073. }
  4074. if(cell6.getValue()=="节点")
  4075. {
  4076. setProperty("style.border-right-width", 0);
  4077. setProperty("style.border-left-width", 0);
  4078. setProperty("style.border-top-width", 0);
  4079. }]]></Script>
  4080. <Value type="field">cell8</Value>
  4081. </TD>
  4082. <TD id="cell159" styleId="9">
  4083. <Script><![CDATA[if(cell151.getValue()=="合计" || cell151.getValue()=="绩效等级" || cell4.getValue()=="评语")
  4084. {
  4085. if(get("varVisibleColIdx") == 9)
  4086. {
  4087. setProperty("style.border-left-width", 0);
  4088. }
  4089. else
  4090. {
  4091. setProperty("style.border-right-width", 0);
  4092. setProperty("style.border-left-width", 0);
  4093. }
  4094. }
  4095. if(cell6.getValue()=="节点")
  4096. {
  4097. setProperty("style.border-right-width", 0);
  4098. setProperty("style.border-left-width", 0);
  4099. setProperty("style.border-top-width", 0);
  4100. }]]></Script>
  4101. <Value type="field">cell9</Value>
  4102. </TD>
  4103. <TD id="cell160" styleId="9">
  4104. <Script><![CDATA[if(cell151.getValue()=="合计" || cell151.getValue()=="绩效等级" || cell4.getValue()=="评语")
  4105. {
  4106. if(get("varVisibleColIdx") == 10)
  4107. {
  4108. setProperty("style.border-left-width", 0);
  4109. }
  4110. else
  4111. {
  4112. setProperty("style.border-right-width", 0);
  4113. setProperty("style.border-left-width", 0);
  4114. }
  4115. }
  4116. if(cell6.getValue()=="节点")
  4117. {
  4118. setProperty("style.border-right-width", 0);
  4119. setProperty("style.border-left-width", 0);
  4120. setProperty("style.border-top-width", 0);
  4121. }]]></Script>
  4122. <Value type="field">cell10</Value>
  4123. </TD>
  4124. <TD id="cell161" styleId="9">
  4125. <Script><![CDATA[if(cell151.getValue()=="合计" || cell151.getValue()=="绩效等级" || cell4.getValue()=="评语")
  4126. {
  4127. if(get("varVisibleColIdx") == 11)
  4128. {
  4129. setProperty("style.border-left-width", 0);
  4130. }
  4131. else
  4132. {
  4133. setProperty("style.border-right-width", 0);
  4134. setProperty("style.border-left-width", 0);
  4135. }
  4136. }
  4137. if(cell6.getValue()=="节点")
  4138. {
  4139. setProperty("style.border-right-width", 0);
  4140. setProperty("style.border-left-width", 0);
  4141. setProperty("style.border-top-width", 0);
  4142. }]]></Script>
  4143. <Value type="field">cell11</Value>
  4144. </TD>
  4145. <TD id="cell162" styleId="9">
  4146. <Script><![CDATA[if(cell151.getValue()=="合计" || cell151.getValue()=="绩效等级" || cell4.getValue()=="评语")
  4147. {
  4148. if(get("varVisibleColIdx") == 12)
  4149. {
  4150. setProperty("style.border-left-width", 0);
  4151. }
  4152. else
  4153. {
  4154. setProperty("style.border-right-width", 0);
  4155. setProperty("style.border-left-width", 0);
  4156. }
  4157. }
  4158. if(cell6.getValue()=="节点")
  4159. {
  4160. setProperty("style.border-right-width", 0);
  4161. setProperty("style.border-left-width", 0);
  4162. setProperty("style.border-top-width", 0);
  4163. }]]></Script>
  4164. <Value type="field">cell12</Value>
  4165. </TD>
  4166. <TD id="cell163" styleId="9">
  4167. <Script><![CDATA[if(cell151.getValue()=="合计" || cell151.getValue()=="绩效等级" || cell4.getValue()=="评语")
  4168. { if(get("varVisibleColIdx") == 13)
  4169. {
  4170. setProperty("style.border-left-width", 0);
  4171. }
  4172. else
  4173. {
  4174. setProperty("style.border-right-width", 0);
  4175. setProperty("style.border-left-width", 0);
  4176. }
  4177. }
  4178. if(cell6.getValue()=="节点")
  4179. {
  4180. setProperty("style.border-right-width", 0);
  4181. setProperty("style.border-left-width", 0);
  4182. setProperty("style.border-top-width", 0);
  4183. }]]></Script>
  4184. <Value type="field">cell13</Value>
  4185. </TD>
  4186. <TD id="cell164" styleId="9">
  4187. <Script><![CDATA[if(cell151.getValue()=="合计" || cell151.getValue()=="绩效等级" || cell4.getValue()=="评语")
  4188. {
  4189. if(get("varVisibleColIdx") == 14)
  4190. {
  4191. setProperty("style.border-left-width", 0);
  4192. }
  4193. else
  4194. {
  4195. setProperty("style.border-right-width", 0);
  4196. setProperty("style.border-left-width", 0);
  4197. }
  4198. }
  4199. if(cell6.getValue()=="节点")
  4200. {
  4201. setProperty("style.border-right-width", 0);
  4202. setProperty("style.border-left-width", 0);
  4203. setProperty("style.border-top-width", 0);
  4204. }]]></Script>
  4205. <Value type="field">cell14</Value>
  4206. </TD>
  4207. <TD id="cell165" styleId="9">
  4208. <Script><![CDATA[if(cell151.getValue()=="合计" || cell151.getValue()=="绩效等级" || cell4.getValue()=="评语")
  4209. { if(get("varVisibleColIdx") == 15)
  4210. {
  4211. setProperty("style.border-left-width", 0);
  4212. }
  4213. else
  4214. {
  4215. setProperty("style.border-right-width", 0);
  4216. setProperty("style.border-left-width", 0);
  4217. }
  4218. }
  4219. if(cell6.getValue()=="节点")
  4220. {
  4221. setProperty("style.border-right-width", 0);
  4222. setProperty("style.border-left-width", 0);
  4223. setProperty("style.border-top-width", 0);
  4224. }]]></Script>
  4225. <Value type="field">cell15</Value>
  4226. </TD>
  4227. <TD id="cell166" styleId="9">
  4228. <Script><![CDATA[if(cell151.getValue()=="合计" || cell151.getValue()=="绩效等级" || cell4.getValue()=="评语")
  4229. { if(get("varVisibleColIdx") == 16)
  4230. {
  4231. setProperty("style.border-left-width", 0);
  4232. }
  4233. else
  4234. {
  4235. setProperty("style.border-right-width", 0);
  4236. setProperty("style.border-left-width", 0);
  4237. }
  4238. }
  4239. if(cell6.getValue()=="节点")
  4240. {
  4241. setProperty("style.border-right-width", 0);
  4242. setProperty("style.border-left-width", 0);
  4243. setProperty("style.border-top-width", 0);
  4244. }]]></Script>
  4245. <Value type="field">cell16</Value>
  4246. </TD>
  4247. <TD id="cell167" styleId="9">
  4248. <Script><![CDATA[if(cell151.getValue()=="合计" || cell151.getValue()=="绩效等级" || cell4.getValue()=="评语")
  4249. {
  4250. if(get("varVisibleColIdx") == 17)
  4251. {
  4252. setProperty("style.border-left-width", 0);
  4253. }
  4254. else
  4255. {
  4256. setProperty("style.border-right-width", 0);
  4257. setProperty("style.border-left-width", 0);
  4258. }
  4259. }
  4260. if(cell6.getValue()=="节点")
  4261. {
  4262. setProperty("style.border-right-width", 0);
  4263. setProperty("style.border-left-width", 0);
  4264. setProperty("style.border-top-width", 0);
  4265. }]]></Script>
  4266. <Value type="field">cell17</Value>
  4267. </TD>
  4268. <TD id="cell168" styleId="9">
  4269. <Script><![CDATA[if(cell151.getValue()=="合计" || cell151.getValue()=="绩效等级" || cell4.getValue()=="评语")
  4270. {
  4271. if(get("varVisibleColIdx") == 18)
  4272. {
  4273. setProperty("style.border-left-width", 0);
  4274. }
  4275. else
  4276. {
  4277. setProperty("style.border-right-width", 0);
  4278. setProperty("style.border-left-width", 0);
  4279. }
  4280. }
  4281. if(cell6.getValue()=="节点")
  4282. {
  4283. setProperty("style.border-right-width", 0);
  4284. setProperty("style.border-left-width", 0);
  4285. setProperty("style.border-top-width", 0);
  4286. }]]></Script>
  4287. <Value type="field">cell18</Value>
  4288. </TD>
  4289. <TD id="cell169" styleId="9">
  4290. <Script><![CDATA[if(cell151.getValue()=="合计" || cell151.getValue()=="绩效等级" || cell4.getValue()=="评语")
  4291. {
  4292. if(get("varVisibleColIdx") == 19)
  4293. {
  4294. setProperty("style.border-left-width", 0);
  4295. }
  4296. else
  4297. {
  4298. setProperty("style.border-right-width", 0);
  4299. setProperty("style.border-left-width", 0);
  4300. }
  4301. }
  4302. if(cell6.getValue()=="节点")
  4303. {
  4304. setProperty("style.border-right-width", 0);
  4305. setProperty("style.border-left-width", 0);
  4306. setProperty("style.border-top-width", 0);
  4307. }]]></Script>
  4308. <Value type="field">cell19</Value>
  4309. </TD>
  4310. <TD id="cell170" styleId="9">
  4311. <Script><![CDATA[if(cell151.getValue()=="合计" || cell151.getValue()=="绩效等级" || cell4.getValue()=="评语")
  4312. {
  4313. setProperty("style.border-left-width", 0);
  4314. }
  4315. if(cell6.getValue()=="节点")
  4316. {
  4317. setProperty("style.border-right-width", 0);
  4318. setProperty("style.border-left-width", 0);
  4319. setProperty("style.border-top-width", 0);
  4320. }]]></Script>
  4321. <Value type="field">cell20</Value>
  4322. </TD>
  4323. </TR>
  4324. </PrintDataGrid>
  4325. </Sub-objects>
  4326. </TD>
  4327. </TR>
  4328. <TR height="80" id="row38" styleId="0" autoAdjustHeight="true">
  4329. <TD id="cell171" styleId="10">
  4330. <Value type="field" dataSource="tabHeadAndEnd">14</Value>
  4331. </TD>
  4332. </TR>
  4333. </PrintLayoutGrid>
  4334. </Sub-objects>
  4335. </TD>
  4336. </TR>
  4337. <TR height="295" id="row41" styleId="5" autoAdjustHeight="true">
  4338. <PreScript><![CDATA[setHide(getFieldValue("tabHeadAndEnd","15")==null);]]></PreScript>
  4339. <TD id="cell174" styleId="5">
  4340. <Sub-objects>
  4341. <PrintLayoutGrid id="layoutGrid11" styleId="5" x="0" y="0" horizontalFill="true">
  4342. <Data />
  4343. <Col width="1693" id="column171" />
  4344. <TR height="80" id="row43" styleId="0" autoAdjustHeight="true">
  4345. <TD id="cell175" styleId="5">
  4346. <Sub-objects>
  4347. <Text id="text16" styleId="17" x="0" y="0" width="1691" height="78" horizontalFill="true" verticalFill="true">
  4348. <Data dataSource="tabHeadAndEnd" bindField="15" />
  4349. </Text>
  4350. </Sub-objects>
  4351. </TD>
  4352. </TR>
  4353. <TR height="140" id="row44" styleId="0" autoAdjustHeight="true">
  4354. <TD id="cell176" styleId="5">
  4355. <Sub-objects>
  4356. <PrintDataGrid id="dataGrid8" styleId="7" x="0" y="20" horizontalFill="true">
  4357. <Data dataSource="tabEntry8" />
  4358. <Col width="114" id="column151" styleId="0">
  4359. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  4360. </Col>
  4361. <Col width="85" id="column152" styleId="0">
  4362. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  4363. </Col>
  4364. <Col width="98" id="column153" styleId="0">
  4365. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  4366. </Col>
  4367. <Col width="89" id="column154" styleId="0">
  4368. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  4369. <Script><![CDATA[if(get("varVisibleColIdx") < 4)
  4370. {
  4371. setHide(true)
  4372. }
  4373. ]]></Script>
  4374. </Col>
  4375. <Col width="101" id="column155" styleId="0">
  4376. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  4377. <Script><![CDATA[if(get("varVisibleColIdx") < 5)
  4378. {
  4379. setHide(true)
  4380. }
  4381. ]]></Script>
  4382. </Col>
  4383. <Col width="101" id="column156" styleId="0">
  4384. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  4385. <Script><![CDATA[if(get("varVisibleColIdx") < 6)
  4386. {
  4387. setHide(true)
  4388. }
  4389. ]]></Script>
  4390. </Col>
  4391. <Col width="81" id="column157" styleId="0">
  4392. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  4393. <Script><![CDATA[if(get("varVisibleColIdx") < 7)
  4394. {
  4395. setHide(true)
  4396. }
  4397. ]]></Script>
  4398. </Col>
  4399. <Col width="84" id="column158" styleId="0">
  4400. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  4401. <Script><![CDATA[if(get("varVisibleColIdx") < 8)
  4402. {
  4403. setHide(true)
  4404. }
  4405. ]]></Script>
  4406. </Col>
  4407. <Col width="94" id="column159" styleId="0">
  4408. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  4409. <Script><![CDATA[if(get("varVisibleColIdx") < 9)
  4410. {
  4411. setHide(true)
  4412. }
  4413. ]]></Script>
  4414. </Col>
  4415. <Col width="80" id="column160" styleId="0">
  4416. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  4417. <Script><![CDATA[if(get("varVisibleColIdx") < 10)
  4418. {
  4419. setHide(true)
  4420. }
  4421. ]]></Script>
  4422. </Col>
  4423. <Col width="86" id="column161" styleId="0">
  4424. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  4425. <Script><![CDATA[if(get("varVisibleColIdx") < 11)
  4426. {
  4427. setHide(true)
  4428. }
  4429. ]]></Script>
  4430. </Col>
  4431. <Col width="81" id="column162" styleId="0">
  4432. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  4433. <Script><![CDATA[if(get("varVisibleColIdx") < 12)
  4434. {
  4435. setHide(true)
  4436. }
  4437. ]]></Script>
  4438. </Col>
  4439. <Col width="84" id="column163" styleId="0">
  4440. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  4441. <Script><![CDATA[if(get("varVisibleColIdx") < 13)
  4442. {
  4443. setHide(true)
  4444. }
  4445. ]]></Script>
  4446. </Col>
  4447. <Col width="79" id="column164" styleId="0">
  4448. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  4449. <Script><![CDATA[if(get("varVisibleColIdx") < 14)
  4450. {
  4451. setHide(true)
  4452. }
  4453. ]]></Script>
  4454. </Col>
  4455. <Col width="86" id="column165" styleId="0">
  4456. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  4457. <Script><![CDATA[if(get("varVisibleColIdx") < 15)
  4458. {
  4459. setHide(true)
  4460. }
  4461. ]]></Script>
  4462. </Col>
  4463. <Col width="82" id="column166" styleId="0">
  4464. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  4465. <Script><![CDATA[if(get("varVisibleColIdx") < 16)
  4466. {
  4467. setHide(true)
  4468. }
  4469. ]]></Script>
  4470. </Col>
  4471. <Col width="83" id="column167" styleId="0">
  4472. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  4473. <Script><![CDATA[if(get("varVisibleColIdx") < 17)
  4474. {
  4475. setHide(true)
  4476. }
  4477. ]]></Script>
  4478. </Col>
  4479. <Col width="66" id="column168" styleId="0">
  4480. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  4481. <Script><![CDATA[if(get("varVisibleColIdx") < 18)
  4482. {
  4483. setHide(true)
  4484. }
  4485. ]]></Script>
  4486. </Col>
  4487. <Col width="61" id="column169" styleId="0">
  4488. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  4489. <Script><![CDATA[if(get("varVisibleColIdx") < 19)
  4490. {
  4491. setHide(true)
  4492. }
  4493. ]]></Script>
  4494. </Col>
  4495. <Col width="56" id="column170" styleId="0">
  4496. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  4497. <Script><![CDATA[if(get("varVisibleColIdx") < 20)
  4498. {
  4499. setHide(true)
  4500. }
  4501. if(cell6.getValue()=="节点")
  4502. {
  4503. setProperty("style.border-right-width", 0);
  4504. setProperty("style.border-left-width", 0);
  4505. setProperty("style.border-top-width", 0);
  4506. }
  4507. ]]></Script>
  4508. </Col>
  4509. <TR height="93" type="detail" autoAdjustHeight="true" id="row42" styleId="8">
  4510. <TD id="cell177" styleId="9">
  4511. <Value type="field">cell1</Value>
  4512. </TD>
  4513. <TD id="cell178" styleId="9">
  4514. <Script><![CDATA[if(cell177.getValue()=="合计" || cell177.getValue()=="绩效等级" || cell4.getValue()=="评语")
  4515. {
  4516. setProperty("style.border-right-width", 0);
  4517. setProperty("style.border-left-width", 0);
  4518. }
  4519. if(cell6.getValue()=="节点")
  4520. {
  4521. setProperty("style.border-right-width", 0);
  4522. setProperty("style.border-left-width", 0);
  4523. setProperty("style.border-top-width", 0);
  4524. setProperty("style.font-size", 0);
  4525. }]]></Script>
  4526. <Value type="field">cell2</Value>
  4527. </TD>
  4528. <TD id="cell179" styleId="9">
  4529. <Script><![CDATA[if(cell177.getValue()=="合计" || cell177.getValue()=="绩效等级" || cell4.getValue()=="评语")
  4530. { if(get("varVisibleColIdx") == 3)
  4531. {
  4532. setProperty("style.border-left-width", 0);
  4533. }
  4534. else
  4535. {
  4536. setProperty("style.border-right-width", 0);
  4537. setProperty("style.border-left-width", 0);
  4538. }
  4539. }
  4540. if(cell6.getValue()=="节点")
  4541. {
  4542. setProperty("style.border-right-width", 0);
  4543. setProperty("style.border-left-width", 0);
  4544. setProperty("style.border-top-width", 0);
  4545. }]]></Script>
  4546. <Value type="field">cell3</Value>
  4547. </TD>
  4548. <TD id="cell180" styleId="9">
  4549. <Script><![CDATA[if(cell177.getValue()=="合计" || cell177.getValue()=="绩效等级" || cell4.getValue()=="评语")
  4550. { if(get("varVisibleColIdx") == 4)
  4551. {
  4552. setProperty("style.border-left-width", 0);
  4553. }
  4554. else
  4555. {
  4556. setProperty("style.border-right-width", 0);
  4557. setProperty("style.border-left-width", 0);
  4558. }
  4559. }
  4560. if(cell6.getValue()=="节点")
  4561. {
  4562. setProperty("style.border-right-width", 0);
  4563. setProperty("style.border-left-width", 0);
  4564. setProperty("style.border-top-width", 0);
  4565. }]]></Script>
  4566. <Value type="field">cell4</Value>
  4567. </TD>
  4568. <TD id="cell181" styleId="9">
  4569. <Script><![CDATA[if(cell177.getValue()=="合计" || cell177.getValue()=="绩效等级" || cell4.getValue()=="评语")
  4570. { if(get("varVisibleColIdx") == 5)
  4571. {
  4572. setProperty("style.border-left-width", 0);
  4573. }
  4574. else
  4575. {
  4576. setProperty("style.border-right-width", 0);
  4577. setProperty("style.border-left-width", 0);
  4578. }
  4579. }
  4580. if(cell6.getValue()=="节点")
  4581. {
  4582. setProperty("style.border-right-width", 0);
  4583. setProperty("style.border-left-width", 0);
  4584. setProperty("style.border-top-width", 0);
  4585. }]]></Script>
  4586. <Value type="field">cell5</Value>
  4587. </TD>
  4588. <TD id="cell182" styleId="9">
  4589. <Script><![CDATA[if(cell177.getValue()=="合计" || cell177.getValue()=="绩效等级" || cell4.getValue()=="评语")
  4590. { if(get("varVisibleColIdx") == 6)
  4591. {
  4592. setProperty("style.border-left-width", 0);
  4593. }
  4594. else
  4595. {
  4596. setProperty("style.border-right-width", 0);
  4597. setProperty("style.border-left-width", 0);
  4598. }
  4599. }
  4600. if(cell6.getValue()=="节点")
  4601. {
  4602. setProperty("style.border-right-width", 0);
  4603. setProperty("style.border-left-width", 0);
  4604. setProperty("style.border-top-width", 0);
  4605. }]]></Script>
  4606. <Value type="field">cell6</Value>
  4607. </TD>
  4608. <TD id="cell183" styleId="9">
  4609. <Script><![CDATA[if(cell177.getValue()=="合计" || cell177.getValue()=="绩效等级" || cell4.getValue()=="评语")
  4610. {
  4611. if(get("varVisibleColIdx") == 7)
  4612. {
  4613. setProperty("style.border-left-width", 0);
  4614. }
  4615. else
  4616. {
  4617. setProperty("style.border-right-width", 0);
  4618. setProperty("style.border-left-width", 0);
  4619. }
  4620. }
  4621. if(cell6.getValue()=="节点")
  4622. {
  4623. setProperty("style.border-right-width", 0);
  4624. setProperty("style.border-left-width", 0);
  4625. setProperty("style.border-top-width", 0);
  4626. }]]></Script>
  4627. <Value type="field">cell7</Value>
  4628. </TD>
  4629. <TD id="cell184" styleId="9">
  4630. <Script><![CDATA[if(cell177.getValue()=="合计" || cell177.getValue()=="绩效等级" || cell4.getValue()=="评语")
  4631. {
  4632. if(get("varVisibleColIdx") == 8)
  4633. {
  4634. setProperty("style.border-left-width", 0);
  4635. }
  4636. else
  4637. {
  4638. setProperty("style.border-right-width", 0);
  4639. setProperty("style.border-left-width", 0);
  4640. }
  4641. }
  4642. if(cell6.getValue()=="节点")
  4643. {
  4644. setProperty("style.border-right-width", 0);
  4645. setProperty("style.border-left-width", 0);
  4646. setProperty("style.border-top-width", 0);
  4647. }]]></Script>
  4648. <Value type="field">cell8</Value>
  4649. </TD>
  4650. <TD id="cell185" styleId="9">
  4651. <Script><![CDATA[if(cell177.getValue()=="合计" || cell177.getValue()=="绩效等级" || cell4.getValue()=="评语")
  4652. {
  4653. if(get("varVisibleColIdx") == 9)
  4654. {
  4655. setProperty("style.border-left-width", 0);
  4656. }
  4657. else
  4658. {
  4659. setProperty("style.border-right-width", 0);
  4660. setProperty("style.border-left-width", 0);
  4661. }
  4662. }
  4663. if(cell6.getValue()=="节点")
  4664. {
  4665. setProperty("style.border-right-width", 0);
  4666. setProperty("style.border-left-width", 0);
  4667. setProperty("style.border-top-width", 0);
  4668. }]]></Script>
  4669. <Value type="field">cell9</Value>
  4670. </TD>
  4671. <TD id="cell186" styleId="9">
  4672. <Script><![CDATA[if(cell177.getValue()=="合计" || cell177.getValue()=="绩效等级" || cell4.getValue()=="评语")
  4673. {
  4674. if(get("varVisibleColIdx") == 10)
  4675. {
  4676. setProperty("style.border-left-width", 0);
  4677. }
  4678. else
  4679. {
  4680. setProperty("style.border-right-width", 0);
  4681. setProperty("style.border-left-width", 0);
  4682. }
  4683. }
  4684. if(cell6.getValue()=="节点")
  4685. {
  4686. setProperty("style.border-right-width", 0);
  4687. setProperty("style.border-left-width", 0);
  4688. setProperty("style.border-top-width", 0);
  4689. }]]></Script>
  4690. <Value type="field">cell10</Value>
  4691. </TD>
  4692. <TD id="cell187" styleId="9">
  4693. <Script><![CDATA[if(cell177.getValue()=="合计" || cell177.getValue()=="绩效等级" || cell4.getValue()=="评语")
  4694. { if(get("varVisibleColIdx") == 11)
  4695. {
  4696. setProperty("style.border-left-width", 0);
  4697. }
  4698. else
  4699. {
  4700. setProperty("style.border-right-width", 0);
  4701. setProperty("style.border-left-width", 0);
  4702. }
  4703. }
  4704. if(cell6.getValue()=="节点")
  4705. {
  4706. setProperty("style.border-right-width", 0);
  4707. setProperty("style.border-left-width", 0);
  4708. setProperty("style.border-top-width", 0);
  4709. }]]></Script>
  4710. <Value type="field">cell11</Value>
  4711. </TD>
  4712. <TD id="cell188" styleId="9">
  4713. <Script><![CDATA[if(cell177.getValue()=="合计" || cell177.getValue()=="绩效等级" || cell4.getValue()=="评语")
  4714. {
  4715. if(get("varVisibleColIdx") == 12)
  4716. {
  4717. setProperty("style.border-left-width", 0);
  4718. }
  4719. else
  4720. {
  4721. setProperty("style.border-right-width", 0);
  4722. setProperty("style.border-left-width", 0);
  4723. }
  4724. }
  4725. if(cell6.getValue()=="节点")
  4726. {
  4727. setProperty("style.border-right-width", 0);
  4728. setProperty("style.border-left-width", 0);
  4729. setProperty("style.border-top-width", 0);
  4730. }]]></Script>
  4731. <Value type="field">cell12</Value>
  4732. </TD>
  4733. <TD id="cell189" styleId="9">
  4734. <Script><![CDATA[if(cell177.getValue()=="合计" || cell177.getValue()=="绩效等级" || cell4.getValue()=="评语")
  4735. { if(get("varVisibleColIdx") == 13)
  4736. {
  4737. setProperty("style.border-left-width", 0);
  4738. }
  4739. else
  4740. {
  4741. setProperty("style.border-right-width", 0);
  4742. setProperty("style.border-left-width", 0);
  4743. }
  4744. }
  4745. if(cell6.getValue()=="节点")
  4746. {
  4747. setProperty("style.border-right-width", 0);
  4748. setProperty("style.border-left-width", 0);
  4749. setProperty("style.border-top-width", 0);
  4750. }]]></Script>
  4751. <Value type="field">cell13</Value>
  4752. </TD>
  4753. <TD id="cell190" styleId="9">
  4754. <Script><![CDATA[if(cell177.getValue()=="合计" || cell177.getValue()=="绩效等级" || cell4.getValue()=="评语")
  4755. {
  4756. if(get("varVisibleColIdx") == 14)
  4757. {
  4758. setProperty("style.border-left-width", 0);
  4759. }
  4760. else
  4761. {
  4762. setProperty("style.border-right-width", 0);
  4763. setProperty("style.border-left-width", 0);
  4764. }
  4765. }
  4766. if(cell6.getValue()=="节点")
  4767. {
  4768. setProperty("style.border-right-width", 0);
  4769. setProperty("style.border-left-width", 0);
  4770. setProperty("style.border-top-width", 0);
  4771. }]]></Script>
  4772. <Value type="field">cell14</Value>
  4773. </TD>
  4774. <TD id="cell191" styleId="9">
  4775. <Script><![CDATA[if(cell177.getValue()=="合计" || cell177.getValue()=="绩效等级" || cell4.getValue()=="评语")
  4776. { if(get("varVisibleColIdx") == 15)
  4777. {
  4778. setProperty("style.border-left-width", 0);
  4779. }
  4780. else
  4781. {
  4782. setProperty("style.border-right-width", 0);
  4783. setProperty("style.border-left-width", 0);
  4784. }
  4785. }
  4786. if(cell6.getValue()=="节点")
  4787. {
  4788. setProperty("style.border-right-width", 0);
  4789. setProperty("style.border-left-width", 0);
  4790. setProperty("style.border-top-width", 0);
  4791. }]]></Script>
  4792. <Value type="field">cell15</Value>
  4793. </TD>
  4794. <TD id="cell192" styleId="9">
  4795. <Script><![CDATA[if(cell177.getValue()=="合计" || cell177.getValue()=="绩效等级" || cell4.getValue()=="评语")
  4796. { if(get("varVisibleColIdx") == 16)
  4797. {
  4798. setProperty("style.border-left-width", 0);
  4799. }
  4800. else
  4801. {
  4802. setProperty("style.border-right-width", 0);
  4803. setProperty("style.border-left-width", 0);
  4804. }
  4805. }
  4806. if(cell6.getValue()=="节点")
  4807. {
  4808. setProperty("style.border-right-width", 0);
  4809. setProperty("style.border-left-width", 0);
  4810. setProperty("style.border-top-width", 0);
  4811. }]]></Script>
  4812. <Value type="field">cell16</Value>
  4813. </TD>
  4814. <TD id="cell193" styleId="9">
  4815. <Script><![CDATA[if(cell177.getValue()=="合计" || cell177.getValue()=="绩效等级" || cell4.getValue()=="评语")
  4816. { if(get("varVisibleColIdx") == 17)
  4817. {
  4818. setProperty("style.border-left-width", 0);
  4819. }
  4820. else
  4821. {
  4822. setProperty("style.border-right-width", 0);
  4823. setProperty("style.border-left-width", 0);
  4824. }
  4825. }
  4826. if(cell6.getValue()=="节点")
  4827. {
  4828. setProperty("style.border-right-width", 0);
  4829. setProperty("style.border-left-width", 0);
  4830. setProperty("style.border-top-width", 0);
  4831. }]]></Script>
  4832. <Value type="field">cell17</Value>
  4833. </TD>
  4834. <TD id="cell194" styleId="9">
  4835. <Script><![CDATA[if(cell177.getValue()=="合计" || cell177.getValue()=="绩效等级" || cell4.getValue()=="评语")
  4836. {
  4837. if(get("varVisibleColIdx") == 18)
  4838. {
  4839. setProperty("style.border-left-width", 0);
  4840. }
  4841. else
  4842. {
  4843. setProperty("style.border-right-width", 0);
  4844. setProperty("style.border-left-width", 0);
  4845. }
  4846. }
  4847. if(cell6.getValue()=="节点")
  4848. {
  4849. setProperty("style.border-right-width", 0);
  4850. setProperty("style.border-left-width", 0);
  4851. setProperty("style.border-top-width", 0);
  4852. }]]></Script>
  4853. <Value type="field">cell18</Value>
  4854. </TD>
  4855. <TD id="cell195" styleId="9">
  4856. <Script><![CDATA[if(cell177.getValue()=="合计" || cell177.getValue()=="绩效等级" || cell4.getValue()=="评语")
  4857. {
  4858. if(get("varVisibleColIdx") == 19)
  4859. {
  4860. setProperty("style.border-left-width", 0);
  4861. }
  4862. else
  4863. {
  4864. setProperty("style.border-right-width", 0);
  4865. setProperty("style.border-left-width", 0);
  4866. }
  4867. }
  4868. if(cell6.getValue()=="节点")
  4869. {
  4870. setProperty("style.border-right-width", 0);
  4871. setProperty("style.border-left-width", 0);
  4872. setProperty("style.border-top-width", 0);
  4873. }]]></Script>
  4874. <Value type="field">cell19</Value>
  4875. </TD>
  4876. <TD id="cell196" styleId="9">
  4877. <Script><![CDATA[if(cell177.getValue()=="合计" || cell177.getValue()=="绩效等级" || cell4.getValue()=="评语")
  4878. {
  4879. setProperty("style.border-left-width", 0);
  4880. }
  4881. if(cell6.getValue()=="节点")
  4882. {
  4883. setProperty("style.border-right-width", 0);
  4884. setProperty("style.border-left-width", 0);
  4885. setProperty("style.border-top-width", 0);
  4886. }]]></Script>
  4887. <Value type="field">cell20</Value>
  4888. </TD>
  4889. </TR>
  4890. </PrintDataGrid>
  4891. </Sub-objects>
  4892. </TD>
  4893. </TR>
  4894. <TR height="80" id="row45" styleId="0" autoAdjustHeight="true">
  4895. <TD id="cell197" styleId="10">
  4896. <Value type="field" dataSource="tabHeadAndEnd">16</Value>
  4897. </TD>
  4898. </TR>
  4899. </PrintLayoutGrid>
  4900. </Sub-objects>
  4901. </TD>
  4902. </TR>
  4903. <TR height="295" id="row40" styleId="5" autoAdjustHeight="true">
  4904. <PreScript><![CDATA[setHide(getFieldValue("tabHeadAndEnd","17")==null);]]></PreScript>
  4905. <TD id="cell173" styleId="5">
  4906. <Sub-objects>
  4907. <PrintLayoutGrid id="layoutGrid12" styleId="5" x="0" y="0" horizontalFill="true">
  4908. <Data />
  4909. <Col width="1693" id="column192" />
  4910. <TR height="80" id="row47" styleId="0" autoAdjustHeight="true">
  4911. <TD id="cell198" styleId="5">
  4912. <Sub-objects>
  4913. <Text id="text18" styleId="18" x="0" y="0" width="1691" height="78" horizontalFill="true" verticalFill="true">
  4914. <Data dataSource="tabHeadAndEnd" bindField="17" />
  4915. </Text>
  4916. </Sub-objects>
  4917. </TD>
  4918. </TR>
  4919. <TR height="140" id="row48" styleId="0" autoAdjustHeight="true">
  4920. <TD id="cell199" styleId="5">
  4921. <Sub-objects>
  4922. <PrintDataGrid id="dataGrid9" styleId="7" x="0" y="20" horizontalFill="true">
  4923. <Data dataSource="tabEntry9" />
  4924. <Col width="114" id="column172" styleId="0">
  4925. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  4926. </Col>
  4927. <Col width="85" id="column173" styleId="0">
  4928. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  4929. </Col>
  4930. <Col width="98" id="column174" styleId="0">
  4931. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  4932. </Col>
  4933. <Col width="89" id="column175" styleId="0">
  4934. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  4935. <Script><![CDATA[if(get("varVisibleColIdx") < 4)
  4936. {
  4937. setHide(true)
  4938. }
  4939. ]]></Script>
  4940. </Col>
  4941. <Col width="101" id="column176" styleId="0">
  4942. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  4943. <Script><![CDATA[if(get("varVisibleColIdx") < 5)
  4944. {
  4945. setHide(true)
  4946. }
  4947. ]]></Script>
  4948. </Col>
  4949. <Col width="101" id="column177" styleId="0">
  4950. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  4951. <Script><![CDATA[if(get("varVisibleColIdx") < 6)
  4952. {
  4953. setHide(true)
  4954. }
  4955. ]]></Script>
  4956. </Col>
  4957. <Col width="81" id="column178" styleId="0">
  4958. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  4959. <Script><![CDATA[if(get("varVisibleColIdx") < 7)
  4960. {
  4961. setHide(true)
  4962. }
  4963. ]]></Script>
  4964. </Col>
  4965. <Col width="84" id="column179" styleId="0">
  4966. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  4967. <Script><![CDATA[if(get("varVisibleColIdx") < 8)
  4968. {
  4969. setHide(true)
  4970. }
  4971. ]]></Script>
  4972. </Col>
  4973. <Col width="94" id="column180" styleId="0">
  4974. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  4975. <Script><![CDATA[if(get("varVisibleColIdx") < 9)
  4976. {
  4977. setHide(true)
  4978. }
  4979. ]]></Script>
  4980. </Col>
  4981. <Col width="80" id="column181" styleId="0">
  4982. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  4983. <Script><![CDATA[if(get("varVisibleColIdx") < 10)
  4984. {
  4985. setHide(true)
  4986. }
  4987. ]]></Script>
  4988. </Col>
  4989. <Col width="86" id="column182" styleId="0">
  4990. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  4991. <Script><![CDATA[if(get("varVisibleColIdx") < 11)
  4992. {
  4993. setHide(true)
  4994. }
  4995. ]]></Script>
  4996. </Col>
  4997. <Col width="81" id="column183" styleId="0">
  4998. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  4999. <Script><![CDATA[if(get("varVisibleColIdx") < 12)
  5000. {
  5001. setHide(true)
  5002. }
  5003. ]]></Script>
  5004. </Col>
  5005. <Col width="84" id="column184" styleId="0">
  5006. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  5007. <Script><![CDATA[if(get("varVisibleColIdx") < 13)
  5008. {
  5009. setHide(true)
  5010. }
  5011. ]]></Script>
  5012. </Col>
  5013. <Col width="79" id="column185" styleId="0">
  5014. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  5015. <Script><![CDATA[if(get("varVisibleColIdx") < 14)
  5016. {
  5017. setHide(true)
  5018. }
  5019. ]]></Script>
  5020. </Col>
  5021. <Col width="86" id="column186" styleId="0">
  5022. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  5023. <Script><![CDATA[if(get("varVisibleColIdx") < 15)
  5024. {
  5025. setHide(true)
  5026. }
  5027. ]]></Script>
  5028. </Col>
  5029. <Col width="82" id="column187" styleId="0">
  5030. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  5031. <Script><![CDATA[if(get("varVisibleColIdx") < 16)
  5032. {
  5033. setHide(true)
  5034. }
  5035. ]]></Script>
  5036. </Col>
  5037. <Col width="83" id="column188" styleId="0">
  5038. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  5039. <Script><![CDATA[if(get("varVisibleColIdx") < 17)
  5040. {
  5041. setHide(true)
  5042. }
  5043. ]]></Script>
  5044. </Col>
  5045. <Col width="66" id="column189" styleId="0">
  5046. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  5047. <Script><![CDATA[if(get("varVisibleColIdx") < 18)
  5048. {
  5049. setHide(true)
  5050. }
  5051. ]]></Script>
  5052. </Col>
  5053. <Col width="61" id="column190" styleId="0">
  5054. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  5055. <Script><![CDATA[if(get("varVisibleColIdx") < 19)
  5056. {
  5057. setHide(true)
  5058. }
  5059. ]]></Script>
  5060. </Col>
  5061. <Col width="56" id="column191" styleId="0">
  5062. <PreScript><![CDATA[setWidth(get("varWidth"));]]></PreScript>
  5063. <Script><![CDATA[if(get("varVisibleColIdx") < 20)
  5064. {
  5065. setHide(true)
  5066. }
  5067. if(cell6.getValue()=="节点")
  5068. {
  5069. setProperty("style.border-right-width", 0);
  5070. setProperty("style.border-left-width", 0);
  5071. setProperty("style.border-top-width", 0);
  5072. }
  5073. ]]></Script>
  5074. </Col>
  5075. <TR height="93" type="detail" autoAdjustHeight="true" id="row46" styleId="8">
  5076. <TD id="cell200" styleId="9">
  5077. <Value type="field">cell1</Value>
  5078. </TD>
  5079. <TD id="cell201" styleId="9">
  5080. <Script><![CDATA[if(cell200.getValue()=="合计" || cell200.getValue()=="绩效等级" || cell4.getValue()=="评语")
  5081. {
  5082. setProperty("style.border-right-width", 0);
  5083. setProperty("style.border-left-width", 0);
  5084. }
  5085. if(cell6.getValue()=="节点")
  5086. {
  5087. setProperty("style.border-right-width", 0);
  5088. setProperty("style.border-left-width", 0);
  5089. setProperty("style.border-top-width", 0);
  5090. setProperty("style.font-size", 0);
  5091. }]]></Script>
  5092. <Value type="field">cell2</Value>
  5093. </TD>
  5094. <TD id="cell202" styleId="9">
  5095. <Script><![CDATA[if(cell200.getValue()=="合计" || cell200.getValue()=="绩效等级" || cell4.getValue()=="评语")
  5096. { if(get("varVisibleColIdx") == 3)
  5097. {
  5098. setProperty("style.border-left-width", 0);
  5099. }
  5100. else
  5101. {
  5102. setProperty("style.border-right-width", 0);
  5103. setProperty("style.border-left-width", 0);
  5104. }
  5105. }
  5106. if(cell6.getValue()=="节点")
  5107. {
  5108. setProperty("style.border-right-width", 0);
  5109. setProperty("style.border-left-width", 0);
  5110. setProperty("style.border-top-width", 0);
  5111. }]]></Script>
  5112. <Value type="field">cell3</Value>
  5113. </TD>
  5114. <TD id="cell203" styleId="9">
  5115. <Script><![CDATA[if(cell200.getValue()=="合计" || cell200.getValue()=="绩效等级" || cell4.getValue()=="评语")
  5116. { if(get("varVisibleColIdx") == 4)
  5117. {
  5118. setProperty("style.border-left-width", 0);
  5119. }
  5120. else
  5121. {
  5122. setProperty("style.border-right-width", 0);
  5123. setProperty("style.border-left-width", 0);
  5124. }
  5125. }
  5126. if(cell6.getValue()=="节点")
  5127. {
  5128. setProperty("style.border-right-width", 0);
  5129. setProperty("style.border-left-width", 0);
  5130. setProperty("style.border-top-width", 0);
  5131. }]]></Script>
  5132. <Value type="field">cell4</Value>
  5133. </TD>
  5134. <TD id="cell204" styleId="9">
  5135. <Script><![CDATA[if(cell200.getValue()=="合计" || cell200.getValue()=="绩效等级" || cell4.getValue()=="评语")
  5136. { if(get("varVisibleColIdx") == 5)
  5137. {
  5138. setProperty("style.border-left-width", 0);
  5139. }
  5140. else
  5141. {
  5142. setProperty("style.border-right-width", 0);
  5143. setProperty("style.border-left-width", 0);
  5144. }
  5145. }
  5146. if(cell6.getValue()=="节点")
  5147. {
  5148. setProperty("style.border-right-width", 0);
  5149. setProperty("style.border-left-width", 0);
  5150. setProperty("style.border-top-width", 0);
  5151. }]]></Script>
  5152. <Value type="field">cell5</Value>
  5153. </TD>
  5154. <TD id="cell205" styleId="9">
  5155. <Script><![CDATA[if(cell200.getValue()=="合计" || cell200.getValue()=="绩效等级" || cell4.getValue()=="评语")
  5156. { if(get("varVisibleColIdx") == 6)
  5157. {
  5158. setProperty("style.border-left-width", 0);
  5159. }
  5160. else
  5161. {
  5162. setProperty("style.border-right-width", 0);
  5163. setProperty("style.border-left-width", 0);
  5164. }
  5165. }
  5166. if(cell6.getValue()=="节点")
  5167. {
  5168. setProperty("style.border-right-width", 0);
  5169. setProperty("style.border-left-width", 0);
  5170. setProperty("style.border-top-width", 0);
  5171. }]]></Script>
  5172. <Value type="field">cell6</Value>
  5173. </TD>
  5174. <TD id="cell206" styleId="9">
  5175. <Script><![CDATA[if(cell200.getValue()=="合计" || cell200.getValue()=="绩效等级" || cell4.getValue()=="评语")
  5176. {
  5177. if(get("varVisibleColIdx") == 7)
  5178. {
  5179. setProperty("style.border-left-width", 0);
  5180. }
  5181. else
  5182. {
  5183. setProperty("style.border-right-width", 0);
  5184. setProperty("style.border-left-width", 0);
  5185. }
  5186. }
  5187. if(cell6.getValue()=="节点")
  5188. {
  5189. setProperty("style.border-right-width", 0);
  5190. setProperty("style.border-left-width", 0);
  5191. setProperty("style.border-top-width", 0);
  5192. }]]></Script>
  5193. <Value type="field">cell7</Value>
  5194. </TD>
  5195. <TD id="cell207" styleId="9">
  5196. <Script><![CDATA[if(cell200.getValue()=="合计" || cell200.getValue()=="绩效等级" || cell4.getValue()=="评语")
  5197. {
  5198. if(get("varVisibleColIdx") == 8)
  5199. {
  5200. setProperty("style.border-left-width", 0);
  5201. }
  5202. else
  5203. {
  5204. setProperty("style.border-right-width", 0);
  5205. setProperty("style.border-left-width", 0);
  5206. }
  5207. }
  5208. if(cell6.getValue()=="节点")
  5209. {
  5210. setProperty("style.border-right-width", 0);
  5211. setProperty("style.border-left-width", 0);
  5212. setProperty("style.border-top-width", 0);
  5213. }]]></Script>
  5214. <Value type="field">cell8</Value>
  5215. </TD>
  5216. <TD id="cell208" styleId="9">
  5217. <Script><![CDATA[if(cell200.getValue()=="合计" || cell200.getValue()=="绩效等级" || cell4.getValue()=="评语")
  5218. {
  5219. if(get("varVisibleColIdx") == 9)
  5220. {
  5221. setProperty("style.border-left-width", 0);
  5222. }
  5223. else
  5224. {
  5225. setProperty("style.border-right-width", 0);
  5226. setProperty("style.border-left-width", 0);
  5227. }
  5228. }
  5229. if(cell6.getValue()=="节点")
  5230. {
  5231. setProperty("style.border-right-width", 0);
  5232. setProperty("style.border-left-width", 0);
  5233. setProperty("style.border-top-width", 0);
  5234. }]]></Script>
  5235. <Value type="field">cell9</Value>
  5236. </TD>
  5237. <TD id="cell209" styleId="9">
  5238. <Script><![CDATA[if(cell200.getValue()=="合计" || cell200.getValue()=="绩效等级" || cell4.getValue()=="评语")
  5239. { if(get("varVisibleColIdx") == 10)
  5240. {
  5241. setProperty("style.border-left-width", 0);
  5242. }
  5243. else
  5244. {
  5245. setProperty("style.border-right-width", 0);
  5246. setProperty("style.border-left-width", 0);
  5247. }
  5248. }
  5249. if(cell6.getValue()=="节点")
  5250. {
  5251. setProperty("style.border-right-width", 0);
  5252. setProperty("style.border-left-width", 0);
  5253. setProperty("style.border-top-width", 0);
  5254. }]]></Script>
  5255. <Value type="field">cell10</Value>
  5256. </TD>
  5257. <TD id="cell210" styleId="9">
  5258. <Script><![CDATA[if(cell200.getValue()=="合计" || cell200.getValue()=="绩效等级" || cell4.getValue()=="评语")
  5259. {
  5260. if(get("varVisibleColIdx") == 11)
  5261. {
  5262. setProperty("style.border-left-width", 0);
  5263. }
  5264. else
  5265. {
  5266. setProperty("style.border-right-width", 0);
  5267. setProperty("style.border-left-width", 0);
  5268. }
  5269. }
  5270. if(cell6.getValue()=="节点")
  5271. {
  5272. setProperty("style.border-right-width", 0);
  5273. setProperty("style.border-left-width", 0);
  5274. setProperty("style.border-top-width", 0);
  5275. }]]></Script>
  5276. <Value type="field">cell11</Value>
  5277. </TD>
  5278. <TD id="cell211" styleId="9">
  5279. <Script><![CDATA[if(cell200.getValue()=="合计" || cell200.getValue()=="绩效等级" || cell4.getValue()=="评语")
  5280. { if(get("varVisibleColIdx") == 12)
  5281. {
  5282. setProperty("style.border-left-width", 0);
  5283. }
  5284. else
  5285. {
  5286. setProperty("style.border-right-width", 0);
  5287. setProperty("style.border-left-width", 0);
  5288. }
  5289. }
  5290. if(cell6.getValue()=="节点")
  5291. {
  5292. setProperty("style.border-right-width", 0);
  5293. setProperty("style.border-left-width", 0);
  5294. setProperty("style.border-top-width", 0);
  5295. }]]></Script>
  5296. <Value type="field">cell12</Value>
  5297. </TD>
  5298. <TD id="cell212" styleId="9">
  5299. <Script><![CDATA[if(cell200.getValue()=="合计" || cell200.getValue()=="绩效等级" || cell4.getValue()=="评语")
  5300. { if(get("varVisibleColIdx") == 13)
  5301. {
  5302. setProperty("style.border-left-width", 0);
  5303. }
  5304. else
  5305. {
  5306. setProperty("style.border-right-width", 0);
  5307. setProperty("style.border-left-width", 0);
  5308. }
  5309. }
  5310. if(cell6.getValue()=="节点")
  5311. {
  5312. setProperty("style.border-right-width", 0);
  5313. setProperty("style.border-left-width", 0);
  5314. setProperty("style.border-top-width", 0);
  5315. }]]></Script>
  5316. <Value type="field">cell13</Value>
  5317. </TD>
  5318. <TD id="cell213" styleId="9">
  5319. <Script><![CDATA[if(cell200.getValue()=="合计" || cell200.getValue()=="绩效等级" || cell4.getValue()=="评语")
  5320. {
  5321. if(get("varVisibleColIdx") == 14)
  5322. {
  5323. setProperty("style.border-left-width", 0);
  5324. }
  5325. else
  5326. {
  5327. setProperty("style.border-right-width", 0);
  5328. setProperty("style.border-left-width", 0);
  5329. }
  5330. }
  5331. if(cell6.getValue()=="节点")
  5332. {
  5333. setProperty("style.border-right-width", 0);
  5334. setProperty("style.border-left-width", 0);
  5335. setProperty("style.border-top-width", 0);
  5336. }]]></Script>
  5337. <Value type="field">cell14</Value>
  5338. </TD>
  5339. <TD id="cell214" styleId="9">
  5340. <Script><![CDATA[if(cell200.getValue()=="合计" || cell200.getValue()=="绩效等级" || cell4.getValue()=="评语")
  5341. {
  5342. if(get("varVisibleColIdx") == 15)
  5343. {
  5344. setProperty("style.border-left-width", 0);
  5345. }
  5346. else
  5347. {
  5348. setProperty("style.border-right-width", 0);
  5349. setProperty("style.border-left-width", 0);
  5350. }
  5351. }
  5352. if(cell6.getValue()=="节点")
  5353. {
  5354. setProperty("style.border-right-width", 0);
  5355. setProperty("style.border-left-width", 0);
  5356. setProperty("style.border-top-width", 0);
  5357. }]]></Script>
  5358. <Value type="field">cell15</Value>
  5359. </TD>
  5360. <TD id="cell215" styleId="9">
  5361. <Script><![CDATA[if(cell200.getValue()=="合计" || cell200.getValue()=="绩效等级" || cell4.getValue()=="评语")
  5362. {
  5363. if(get("varVisibleColIdx") == 16)
  5364. {
  5365. setProperty("style.border-left-width", 0);
  5366. }
  5367. else
  5368. {
  5369. setProperty("style.border-right-width", 0);
  5370. setProperty("style.border-left-width", 0);
  5371. }
  5372. }
  5373. if(cell6.getValue()=="节点")
  5374. {
  5375. setProperty("style.border-right-width", 0);
  5376. setProperty("style.border-left-width", 0);
  5377. setProperty("style.border-top-width", 0);
  5378. }]]></Script>
  5379. <Value type="field">cell16</Value>
  5380. </TD>
  5381. <TD id="cell216" styleId="9">
  5382. <Script><![CDATA[if(cell200.getValue()=="合计" || cell200.getValue()=="绩效等级" || cell4.getValue()=="评语")
  5383. { if(get("varVisibleColIdx") == 17)
  5384. {
  5385. setProperty("style.border-left-width", 0);
  5386. }
  5387. else
  5388. {
  5389. setProperty("style.border-right-width", 0);
  5390. setProperty("style.border-left-width", 0);
  5391. }
  5392. }
  5393. if(cell6.getValue()=="节点")
  5394. {
  5395. setProperty("style.border-right-width", 0);
  5396. setProperty("style.border-left-width", 0);
  5397. setProperty("style.border-top-width", 0);
  5398. }]]></Script>
  5399. <Value type="field">cell17</Value>
  5400. </TD>
  5401. <TD id="cell217" styleId="9">
  5402. <Script><![CDATA[if(cell200.getValue()=="合计" || cell200.getValue()=="绩效等级" || cell4.getValue()=="评语")
  5403. { if(get("varVisibleColIdx") == 18)
  5404. {
  5405. setProperty("style.border-left-width", 0);
  5406. }
  5407. else
  5408. {
  5409. setProperty("style.border-right-width", 0);
  5410. setProperty("style.border-left-width", 0);
  5411. }
  5412. }
  5413. if(cell6.getValue()=="节点")
  5414. {
  5415. setProperty("style.border-right-width", 0);
  5416. setProperty("style.border-left-width", 0);
  5417. setProperty("style.border-top-width", 0);
  5418. }]]></Script>
  5419. <Value type="field">cell18</Value>
  5420. </TD>
  5421. <TD id="cell218" styleId="9">
  5422. <Script><![CDATA[if(cell200.getValue()=="合计" || cell200.getValue()=="绩效等级" || cell4.getValue()=="评语")
  5423. {
  5424. if(get("varVisibleColIdx") == 19)
  5425. {
  5426. setProperty("style.border-left-width", 0);
  5427. }
  5428. else
  5429. {
  5430. setProperty("style.border-right-width", 0);
  5431. setProperty("style.border-left-width", 0);
  5432. }
  5433. }
  5434. if(cell6.getValue()=="节点")
  5435. {
  5436. setProperty("style.border-right-width", 0);
  5437. setProperty("style.border-left-width", 0);
  5438. setProperty("style.border-top-width", 0);
  5439. }]]></Script>
  5440. <Value type="field">cell19</Value>
  5441. </TD>
  5442. <TD id="cell219" styleId="9">
  5443. <Script><![CDATA[if(cell200.getValue()=="合计" || cell200.getValue()=="绩效等级" || cell4.getValue()=="评语")
  5444. {
  5445. setProperty("style.border-left-width", 0);
  5446. }
  5447. if(cell6.getValue()=="节点")
  5448. {
  5449. setProperty("style.border-right-width", 0);
  5450. setProperty("style.border-left-width", 0);
  5451. setProperty("style.border-top-width", 0);
  5452. }]]></Script>
  5453. <Value type="field">cell20</Value>
  5454. </TD>
  5455. </TR>
  5456. </PrintDataGrid>
  5457. </Sub-objects>
  5458. </TD>
  5459. </TR>
  5460. <TR height="80" id="row49" styleId="0" autoAdjustHeight="true">
  5461. <TD id="cell220" styleId="10">
  5462. <Value type="field" dataSource="tabHeadAndEnd">18</Value>
  5463. </TD>
  5464. </TR>
  5465. </PrintLayoutGrid>
  5466. </Sub-objects>
  5467. </TD>
  5468. </TR>
  5469. <TR height="229" id="row39" styleId="0" autoAdjustHeight="true">
  5470. <PreScript><![CDATA[setHide(getFieldValue("tabCols","evaluFormDesc")==null);]]></PreScript>
  5471. <TD id="cell172" styleId="19">
  5472. <Value type="field" dataSource="tabCols">evaluFormDesc</Value>
  5473. </TD>
  5474. </TR>
  5475. </PrintLayoutGrid>
  5476. </Sub-objects>
  5477. </Page>
  5478. </Report>
  5479. <PrintInfo>
  5480. <PaperSetup>
  5481. <Paper>iso-a4</Paper>
  5482. <Orientation>PORTRAIT</Orientation>
  5483. <PageMargin left="190" right="190" top="250" bottom="250" />
  5484. <Header height="150" margin="100" />
  5485. <Footer height="150" margin="100" />
  5486. </PaperSetup>
  5487. <PrinterSetup>
  5488. <DynamicPaper>false</DynamicPaper>
  5489. <EconomizePaper>false</EconomizePaper>
  5490. </PrinterSetup>
  5491. <PreviewSetup>
  5492. <BackgroundPicture>false</BackgroundPicture>
  5493. </PreviewSetup>
  5494. </PrintInfo>
  5495. </DocRoot>