GroupsController.cs 631 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642136431364413645136461364713648136491365013651136521365313654136551365613657136581365913660136611366213663136641366513666136671366813669136701367113672136731367413675136761367713678136791368013681136821368313684136851368613687136881368913690136911369213693136941369513696136971369813699137001370113702137031370413705137061370713708137091371013711137121371313714137151371613717137181371913720137211372213723137241372513726137271372813729137301373113732137331373413735137361373713738137391374013741137421374313744137451374613747137481374913750137511375213753137541375513756137571375813759137601376113762137631376413765137661376713768137691377013771137721377313774137751377613777137781377913780137811378213783137841378513786137871378813789137901379113792137931379413795137961379713798137991380013801138021380313804138051380613807138081380913810138111381213813138141381513816138171381813819138201382113822138231382413825138261382713828138291383013831
  1. using Aspose.Cells;
  2. using Aspose.Cells.Drawing.Texts;
  3. using Aspose.Words;
  4. using Aspose.Words.Tables;
  5. using NPOI.Util;
  6. using OASystem.API.OAMethodLib;
  7. using OASystem.API.OAMethodLib.File;
  8. using OASystem.Domain.Dtos.Groups;
  9. using OASystem.Domain.Entities.Groups;
  10. using OASystem.Domain.ViewModels.Groups;
  11. using OASystem.Infrastructure.Repositories.Groups;
  12. using TencentCloud.Ocr.V20181119.Models;
  13. using OASystem.Infrastructure.Tools;
  14. using System.Web;
  15. using System.Data;
  16. using static OASystem.Infrastructure.Repositories.Groups.AirTicketResRepository;
  17. using static OpenAI.GPT3.ObjectModels.SharedModels.IOpenAiModels;
  18. using Cell = Aspose.Words.Tables.Cell;
  19. using Row = Aspose.Words.Tables.Row;
  20. using System.Runtime.Intrinsics.Arm;
  21. using Microsoft.AspNetCore.Mvc.Filters;
  22. using OASystem.Domain.Entities.Customer;
  23. using NPOI.SS.Formula.Functions;
  24. using OASystem.Domain.Dtos.CRM;
  25. using System.Diagnostics;
  26. using MathNet.Numerics.Statistics.Mcmc;
  27. using AlibabaCloud.OpenApiClient.Models;
  28. using System;
  29. using NPOI.HPSF;
  30. using SqlSugar;
  31. using System.Collections;
  32. using Org.BouncyCastle.Ocsp;
  33. using System.Globalization;
  34. using static QRCoder.PayloadGenerator;
  35. using Bookmark = Aspose.Words.Bookmark;
  36. using Aspose.Words.Fields;
  37. using NPOI.POIFS.FileSystem;
  38. using Microsoft.AspNetCore.Mvc.ViewEngines;
  39. using OASystem.Domain.ViewModels.QiYeWeChat;
  40. using OASystem.Domain.Entities.Financial;
  41. using NPOI.POIFS.Crypt.Dsig;
  42. using System.Diagnostics.Eventing.Reader;
  43. using System.IO;
  44. using StackExchange.Redis;
  45. using Org.BouncyCastle.Utilities;
  46. using Aspose.Words.Drawing;
  47. using Aspose.Cells.Charts;
  48. using static NPOI.HSSF.Util.HSSFColor;
  49. using Quartz.Util;
  50. using Google.Protobuf.WellKnownTypes;
  51. using Microsoft.AspNetCore.SignalR;
  52. using OASystem.API.OAMethodLib.Hub.HubClients;
  53. using OASystem.API.OAMethodLib.Hub.Hubs;
  54. using System.Collections.Generic;
  55. using OASystem.API.OAMethodLib.JuHeAPI;
  56. using static Microsoft.EntityFrameworkCore.DbLoggerCategory;
  57. using SixLabors.Fonts.Tables.AdvancedTypographic;
  58. using Microsoft.EntityFrameworkCore;
  59. using System.Security.Cryptography.Xml;
  60. using MathNet.Numerics;
  61. using System.Security.Policy;
  62. using System.Xml;
  63. using OASystem.Domain.Dtos.QiYeWeChat;
  64. using static NPOI.POIFS.Crypt.CryptoFunctions;
  65. using Aspose.Words.Lists;
  66. using OASystem.API.OAMethodLib.YouDaoAPI;
  67. using NPOI.XSSF.Streaming.Values;
  68. using OASystem.API.OAMethodLib.Quartz.Business;
  69. using System.Linq;
  70. using NPOI.POIFS.NIO;
  71. using OASystem.API.OAMethodLib.QiYeWeChatAPI.AppNotice;
  72. using OASystem.Domain.ViewModels.Statistics;
  73. using NPOI.XSSF.Model;
  74. using NetTaste;
  75. using Microsoft.AspNetCore.Http;
  76. using EyeSoft.Collections.Generic;
  77. using NPOI.HSSF.Util;
  78. using NPOI.HSSF.UserModel;
  79. using NPOI.SS.UserModel;
  80. using NPOI.XSSF.UserModel;
  81. using MySqlX.XDevAPI.Relational;
  82. using SqlSugar.Extensions;
  83. using Table = Aspose.Words.Tables.Table;
  84. using Aspose.Cells.Tables;
  85. using NPOI.SS.Util;
  86. using RestSharp.Extensions;
  87. using Microsoft.AspNetCore.WebUtilities;
  88. using K4os.Compression.LZ4.Internal;
  89. using static Pipelines.Sockets.Unofficial.SocketConnection;
  90. using System.Diagnostics.PerformanceData;
  91. using System.Drawing.Printing;
  92. using OASystem.Domain.Dtos.FileDto;
  93. using Microsoft.VisualBasic;
  94. using Microsoft.EntityFrameworkCore.Query.Internal;
  95. namespace OASystem.API.Controllers
  96. {
  97. /// <summary>
  98. /// 团组相关
  99. /// </summary>
  100. //[Authorize]
  101. [Route("api/[controller]/[action]")]
  102. public class GroupsController : ControllerBase
  103. {
  104. private readonly GrpScheduleRepository _grpScheduleRep;
  105. private readonly IMapper _mapper;
  106. private readonly DelegationInfoRepository _groupRepository;
  107. private readonly TaskAssignmentRepository _taskAssignmentRep;
  108. private readonly AirTicketResRepository _airTicketResRep;
  109. private readonly DecreasePaymentsRepository _decreasePaymentsRep;
  110. private readonly InvitationOfficialActivitiesRepository _InvitationOfficialActivitiesRep;
  111. private readonly DelegationEnDataRepository _delegationEnDataRep;
  112. private readonly DelegationVisaRepository _delegationVisaRep;
  113. private readonly VisaPriceRepository _visaPriceRep;
  114. private readonly CarTouristGuideGroundRepository _carTouristGuideGroundRep;
  115. private readonly HotelPriceRepository _hotelPriceRep;
  116. private readonly CustomersRepository _customersRep;
  117. private readonly MessageRepository _message;
  118. private readonly SqlSugarClient _sqlSugar;
  119. private readonly TourClientListRepository _tourClientListRep;
  120. private readonly TeamRateRepository _teamRateRep;
  121. #region 成本相关
  122. private readonly CheckBoxsRepository _checkBoxs;
  123. private readonly GroupCostRepository _GroupCostRepository;
  124. private readonly CostTypeHotelNumberRepository _CostTypeHotelNumberRepository;
  125. private readonly GroupCostParameterRepository _GroupCostParameterRepository;
  126. #endregion
  127. private readonly SetDataRepository _setDataRep;
  128. private string url;
  129. private string path;
  130. private readonly EnterExitCostRepository _enterExitCostRep;
  131. private readonly IHubContext<ChatHub, IChatClient> _hubContext;
  132. private readonly UsersRepository _usersRep;
  133. private readonly IJuHeApiService _juHeApi;
  134. private readonly InvertedListRepository _invertedListRep;
  135. private readonly VisaFeeInfoRepository _visaFeeInfoRep;
  136. private readonly TicketBlackCodeRepository _ticketBlackCodeRep;
  137. private readonly ThreeCodeRepository _threeCodeRepository;
  138. private readonly HotelInquiryRepository _hotelInquiryRep;
  139. private readonly FeeAuditRepository _feeAuditRep;
  140. public GroupsController(IMapper mapper, SqlSugarClient sqlSugar, GrpScheduleRepository grpScheduleRep, DelegationInfoRepository groupRepository,
  141. TaskAssignmentRepository taskAssignmentRep, AirTicketResRepository airTicketResRep, DecreasePaymentsRepository decreasePaymentsRep,
  142. InvitationOfficialActivitiesRepository InvitationOfficialActivitiesRep, DelegationEnDataRepository delegationEnDataRep, EnterExitCostRepository enterExitCostRep
  143. , DelegationVisaRepository delegationVisaRep, MessageRepository message, VisaPriceRepository visaPriceRep, CarTouristGuideGroundRepository carTouristGuideGroundRep,
  144. CheckBoxsRepository checkBoxs, GroupCostRepository GroupCostRepository, CostTypeHotelNumberRepository CostTypeHotelNumberRepository,
  145. GroupCostParameterRepository GroupCostParameterRepository, HotelPriceRepository hotelPriceRep, CustomersRepository customersRep, SetDataRepository setDataRep,
  146. TourClientListRepository tourClientListRep, TeamRateRepository teamRateRep, IHubContext<ChatHub, IChatClient> hubContext, UsersRepository usersRep, IJuHeApiService juHeApi,
  147. InvertedListRepository invertedListRep, VisaFeeInfoRepository visaFeeInfoRep, TicketBlackCodeRepository ticketBlackCodeRep, HotelInquiryRepository hotelInquiryRep,
  148. ThreeCodeRepository threeCodeRepository, FeeAuditRepository feeAuditRep)
  149. {
  150. _mapper = mapper;
  151. _grpScheduleRep = grpScheduleRep;
  152. _groupRepository = groupRepository;
  153. _taskAssignmentRep = taskAssignmentRep;
  154. _airTicketResRep = airTicketResRep;
  155. _sqlSugar = sqlSugar;
  156. url = AppSettingsHelper.Get("ExcelBaseUrl");
  157. path = AppSettingsHelper.Get("ExcelBasePath");
  158. if (!System.IO.Directory.Exists(path))
  159. {
  160. System.IO.Directory.CreateDirectory(path);//不存在就创建文件夹
  161. }
  162. _decreasePaymentsRep = decreasePaymentsRep;
  163. _InvitationOfficialActivitiesRep = InvitationOfficialActivitiesRep;
  164. _delegationEnDataRep = delegationEnDataRep;
  165. _enterExitCostRep = enterExitCostRep;
  166. _delegationVisaRep = delegationVisaRep;
  167. _message = message;
  168. _visaPriceRep = visaPriceRep;
  169. _carTouristGuideGroundRep = carTouristGuideGroundRep;
  170. _checkBoxs = checkBoxs;
  171. _GroupCostRepository = GroupCostRepository;
  172. _CostTypeHotelNumberRepository = CostTypeHotelNumberRepository;
  173. _GroupCostParameterRepository = GroupCostParameterRepository;
  174. _hotelPriceRep = hotelPriceRep;
  175. _customersRep = customersRep;
  176. _setDataRep = setDataRep;
  177. _tourClientListRep = tourClientListRep;
  178. _teamRateRep = teamRateRep;
  179. _hubContext = hubContext;
  180. _usersRep = usersRep;
  181. _juHeApi = juHeApi;
  182. _invertedListRep = invertedListRep;
  183. _visaFeeInfoRep = visaFeeInfoRep;
  184. _ticketBlackCodeRep = ticketBlackCodeRep;
  185. _hotelInquiryRep = hotelInquiryRep;
  186. _threeCodeRepository = threeCodeRepository;
  187. _feeAuditRep = feeAuditRep;
  188. }
  189. #region 流程管控
  190. /// <summary>
  191. /// 获取团组流程管控信息
  192. /// </summary>
  193. /// <param name="paras">参数Json字符串</param>
  194. /// <returns></returns>
  195. [HttpPost]
  196. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  197. public async Task<IActionResult> PostSearchGrpSchedule(JsonDtoBase _jsonDto)
  198. {
  199. if (string.IsNullOrEmpty(_jsonDto.Paras))
  200. {
  201. return Ok(JsonView(false, "参数为空"));
  202. }
  203. Grp_ScheduleDto _ScheduleDto = JsonConvert.DeserializeObject<Grp_ScheduleDto>(_jsonDto.Paras);
  204. if (_ScheduleDto != null)
  205. {
  206. if (_ScheduleDto.SearchType == 2)//获取列表
  207. {
  208. List<Grp_ScheduleView> _grpScheduleViewList = await _grpScheduleRep.GetViewList_GrpSchedule(_ScheduleDto);
  209. return Ok(JsonView(_grpScheduleViewList));
  210. }
  211. else//获取对象
  212. {
  213. Grp_ScheduleCombinView _grpScheduleView = await _grpScheduleRep.GetView_GrpSchedule(_ScheduleDto);
  214. if (_grpScheduleView != null)
  215. {
  216. return Ok(JsonView(_grpScheduleView));
  217. }
  218. }
  219. }
  220. else
  221. {
  222. return Ok(JsonView(false, "参数反序列化失败"));
  223. }
  224. return Ok(JsonView(false, "暂无数据!"));
  225. }
  226. /// <summary>
  227. /// 修改团组流程管控详细表数据
  228. /// </summary>
  229. /// <param name="paras"></param>
  230. /// <returns></returns>
  231. [HttpPost]
  232. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  233. public async Task<IActionResult> PostUpdateGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  234. {
  235. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  236. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  237. .SetColumns(it => it.Duty == _detail.Duty)
  238. .SetColumns(it => it.ExpectBeginDt == _detail.ExpectBeginDt)
  239. .SetColumns(it => it.ExpectEndDt == _detail.ExpectEndDt)
  240. .SetColumns(it => it.JobContent == _detail.JobContent)
  241. .SetColumns(it => it.Remark == _detail.Remark)
  242. .SetColumns(it => it.StepStatus == _detail.StepStatus)
  243. .Where(s => s.Id == dto.Id)
  244. //.UpdateColumns(s => new { s.Duty, s.ExpectBeginDt, s.ExpectEndDt, s.JobContent, s.Remark, s.StepStatus })
  245. .ExecuteCommandAsync();
  246. if (result > 0)
  247. {
  248. return Ok(JsonView(true, "保存成功!"));
  249. }
  250. return Ok(JsonView(false, "保存失败!"));
  251. }
  252. /// <summary>
  253. /// 删除团组流程管控详细表数据,删除人Id请放在Duty
  254. /// </summary>
  255. /// <param name="dto"></param>
  256. /// <returns></returns>
  257. [HttpPost]
  258. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  259. public async Task<ActionResult> PostDeleteGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  260. {
  261. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  262. _detail.IsDel = 1;
  263. _detail.DeleteUserId = dto.Duty;
  264. _detail.DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  265. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  266. .SetColumns(it => it.IsDel == _detail.IsDel)
  267. .SetColumns(it => it.DeleteUserId == _detail.DeleteUserId)
  268. .SetColumns(it => it.DeleteTime == _detail.DeleteTime)
  269. .Where(it => it.Id == dto.Id)
  270. //.UpdateColumns(s => new { s.IsDel, s.DeleteUserId, s.DeleteTime })
  271. //.WhereColumns(s => s.Id == dto.Id)
  272. .ExecuteCommandAsync();
  273. if (result > 0)
  274. {
  275. return Ok(JsonView(true, "删除成功!"));
  276. }
  277. return Ok(JsonView(false, "删除失败!"));
  278. }
  279. /// <summary>
  280. /// 增加团组流程管控详细表数据
  281. /// </summary>
  282. /// <param name="dto"></param>
  283. /// <returns></returns>
  284. [HttpPost]
  285. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  286. public async Task<ActionResult> PostInsertGrpScheduleDetail(Grp_ScheduleDetailInsertDto dto)
  287. {
  288. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  289. if (DateTime.Now < _detail.ExpectBeginDt)
  290. {
  291. _detail.StepStatus = 0;
  292. }
  293. else
  294. {//若大于设置时间,不考虑设置的预计结束日期,统一视为进行中
  295. _detail.StepStatus = 1;
  296. }
  297. var result = await _grpScheduleRep._sqlSugar.Insertable(_detail).ExecuteReturnIdentityAsync();
  298. if (result > 0)
  299. {
  300. Grp_ScheduleDetailView _result = await _grpScheduleRep.GetInsertBackData(result);
  301. return Ok(JsonView(true, "添加成功!", _result));
  302. }
  303. return Ok(JsonView(false, "添加失败!"));
  304. }
  305. #endregion
  306. #region 团组基本信息
  307. /// <summary>
  308. /// 接团信息列表
  309. /// </summary>
  310. /// <param name="dto">团组列表请求dto</param>
  311. /// <returns></returns>
  312. [HttpPost]
  313. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  314. public async Task<IActionResult> GetGroupList(GroupListDto dto)
  315. {
  316. var groupData = await _groupRepository.GetGroupList(dto);
  317. if (groupData.Code != 0)
  318. {
  319. return Ok(JsonView(false, groupData.Msg));
  320. }
  321. return Ok(JsonView(groupData.Data));
  322. }
  323. /// <summary>
  324. /// 接团信息列表 Page
  325. /// </summary>
  326. /// <param name="dto">团组列表请求dto</param>
  327. /// <returns></returns>
  328. [HttpPost]
  329. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  330. public async Task<IActionResult> PostGroupPageList(GroupPageListDto dto)
  331. {
  332. #region 参数验证
  333. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  334. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  335. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  336. #region 页面操作权限验证
  337. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  338. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  339. #endregion
  340. #endregion
  341. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  342. {
  343. string sqlWhere = string.Empty;
  344. if (dto.IsSure == 0) //未完成
  345. {
  346. sqlWhere += string.Format(@" And IsSure = 0");
  347. }
  348. else if (dto.IsSure == 1) //已完成
  349. {
  350. sqlWhere += string.Format(@" And IsSure = 1");
  351. }
  352. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  353. {
  354. string tj = dto.SearchCriteria;
  355. sqlWhere += string.Format(@"And (ssd.Name Like '%{0}%' Or TeamName Like '%{1}%' Or ClientName Like '%{2}%' Or ClientName Like '%{3}%' Or su.CnName Like '%{4}%')",
  356. tj, tj, tj, tj, tj);
  357. }
  358. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  359. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  360. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  361. JietuanOperator,IsSure,CreateTime
  362. From (
  363. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  364. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  365. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  366. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  367. su.CnName JietuanOperator,IsSure,gdi.CreateTime
  368. From Grp_DelegationInfo gdi
  369. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  370. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  371. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  372. Where gdi.IsDel = 0 {0}
  373. ) temp", sqlWhere);
  374. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  375. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  376. #region 处理所属部门
  377. /*
  378. * 1.sq 和 gyy 等显示 市场部
  379. * 2.王鸽和主管及张总还有管理员号统一国交部
  380. * 2-1. 4 管理员 ,21 张海麟
  381. */
  382. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  383. List<int> userIds1 = new List<int>() { 4, 21 };
  384. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  385. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  386. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  387. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  388. .ToList();
  389. foreach (var item in _DelegationList)
  390. {
  391. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  392. }
  393. #endregion
  394. var _view = new
  395. {
  396. PageFuncAuth = pageFunAuthView,
  397. Data = _DelegationList
  398. };
  399. return Ok(JsonView(true, "查询成功!", _view, total));
  400. }
  401. else
  402. {
  403. return Ok(JsonView(false, "查询失败"));
  404. }
  405. }
  406. /// <summary>
  407. /// 团组列表
  408. /// </summary>
  409. /// <returns></returns>
  410. [HttpPost]
  411. public async Task<IActionResult> GetGroupListByWhere(GroupListByWhere dto)
  412. {
  413. #region 参数验证
  414. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  415. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  416. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  417. #region 页面操作权限验证
  418. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  419. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  420. #endregion
  421. #endregion
  422. if (dto.PortType != 1 && dto.PortType != 2)
  423. {
  424. return Ok(JsonView(false, "查询失败!"));
  425. }
  426. string orderbyStr = "order by gdi.CreateTime Desc";
  427. string sqlWhere = string.Empty;
  428. if (dto.IsSure == 0) //未完成
  429. {
  430. sqlWhere += string.Format(@" And IsSure = 0");
  431. }
  432. else if (dto.IsSure == 1) //已完成
  433. {
  434. sqlWhere += string.Format(@" And IsSure = 1");
  435. }
  436. //团组类型
  437. if (dto.TeamDid > 0)
  438. {
  439. sqlWhere += string.Format(@"And TeamDid = {0} ", dto.TeamDid);
  440. }
  441. //团组名称
  442. if (!string.IsNullOrEmpty(dto.TeamName))
  443. {
  444. sqlWhere += string.Format(@"And TeamName Like '%{0}%'", dto.TeamName);
  445. }
  446. //客户名称
  447. if (!string.IsNullOrEmpty(dto.ClientName))
  448. {
  449. sqlWhere += string.Format(@"And ClientName Like '%{0}%'", dto.ClientName);
  450. }
  451. //客户单位
  452. if (!string.IsNullOrEmpty(dto.ClientUnit))
  453. {
  454. sqlWhere += string.Format(@"And ClientUnit Like '%{0}%'", dto.ClientUnit);
  455. }
  456. //出访时间
  457. if (!string.IsNullOrEmpty(dto.visitDataTime))
  458. {
  459. sqlWhere += string.Format(@"And VisitDate >= '{0}'", dto.visitDataTime);
  460. orderbyStr = "order by gdi.VisitDate";
  461. }
  462. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  463. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  464. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  465. JietuanOperator,IsSure,CreateTime
  466. From (
  467. Select row_number() over({0}) as Row_Number,
  468. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  469. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  470. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  471. su.CnName JietuanOperator,IsSure,gdi.CreateTime
  472. From Grp_DelegationInfo gdi
  473. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  474. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  475. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  476. Where gdi.IsDel = 0 {1}
  477. ) temp ", orderbyStr, sqlWhere);
  478. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  479. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  480. #region 处理所属部门
  481. /*
  482. * 1.sq 和 gyy 等显示 市场部
  483. * 2.王鸽和主管及张总还有管理员号统一国交部
  484. * 2-1. 4 管理员 ,21 张海麟
  485. */
  486. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  487. List<int> userIds1 = new List<int>() { 4, 21 };
  488. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  489. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  490. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  491. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  492. .ToList();
  493. foreach (var item in _DelegationList)
  494. {
  495. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  496. }
  497. #endregion
  498. var _view = new
  499. {
  500. PageFuncAuth = pageFunAuthView,
  501. Data = _DelegationList
  502. };
  503. return Ok(JsonView(true, "查询成功!", _view, total));
  504. }
  505. /// <summary>
  506. /// 接团信息详情
  507. /// </summary>
  508. /// <param name="dto">团组info请求dto</param>
  509. /// <returns></returns>
  510. [HttpPost]
  511. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  512. public async Task<IActionResult> GetGroupInfo(GroupInfoDto dto)
  513. {
  514. var groupData = await _groupRepository.GetGroupInfo(dto);
  515. if (groupData.Code != 0)
  516. {
  517. return Ok(JsonView(false, groupData.Msg));
  518. }
  519. return Ok(JsonView(groupData.Data));
  520. }
  521. /// <summary>
  522. /// 接团信息 编辑添加
  523. /// 基础信息数据源
  524. /// </summary>
  525. /// <param name="dto"></param>
  526. /// <returns></returns>
  527. [HttpPost]
  528. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  529. public async Task<IActionResult> GroupEditBasicSource(GroupListDto dto)
  530. {
  531. var groupData = await _groupRepository.GroupEditBasicSource(dto);
  532. if (groupData.Code != 0)
  533. {
  534. return Ok(JsonView(false, groupData.Msg));
  535. }
  536. return Ok(JsonView(groupData.Data));
  537. }
  538. /// <summary>
  539. /// 接团信息 操作(增改)
  540. /// </summary>
  541. /// <param name="dto"></param>
  542. /// <returns></returns>
  543. [HttpPost]
  544. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  545. public async Task<IActionResult> GroupOperation(GroupOperationDto dto)
  546. {
  547. try
  548. {
  549. var groupData = await _groupRepository.GroupOperation(dto);
  550. if (groupData.Code != 0)
  551. {
  552. return Ok(JsonView(false, groupData.Msg));
  553. }
  554. int diId = 0;
  555. //添加时 默认加入团组汇率
  556. if (dto.Status == 1) //添加
  557. {
  558. diId = groupData.Data;
  559. //添加默认币种
  560. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  561. //默认分配权限
  562. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  563. //消息提示 王鸽 主管号
  564. List<int> _managerIds = new List<int>() { 22, 32 };
  565. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  566. if (userIds.Count > 0)
  567. {
  568. userIds.Add(208);
  569. //创建团组管控
  570. GroupStepForDelegation.CreateWorkStep(diId);
  571. //发送消息
  572. string groupName = dto.TeamName;
  573. string createGroupUser = string.Empty;
  574. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  575. if (userInfo != null) createGroupUser = userInfo.CnName;
  576. string title = $"系统通知";
  577. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  578. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  579. }
  580. //默认创建倒推表
  581. await _invertedListRep._Create(dto.UserId, diId);
  582. }
  583. else if (dto.Status == 2)
  584. {
  585. diId = dto.Id;
  586. }
  587. return Ok(JsonView(true, "操作成功!", diId));
  588. }
  589. catch (Exception ex)
  590. {
  591. Logs("[response]" + JsonConvert.SerializeObject(dto));
  592. Logs(ex.Message);
  593. return Ok(JsonView(false, ex.Message));
  594. }
  595. }
  596. /// <summary>
  597. /// 接团流程操作(增改)
  598. /// 安卓端使用 建团时添加客户名单
  599. /// </summary>
  600. /// <param name="dto"></param>
  601. /// <returns></returns>
  602. [HttpPost]
  603. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  604. public async Task<IActionResult> GroupProcessOperation(GroupProcessOperationDto dto)
  605. {
  606. try
  607. {
  608. #region 参数验证
  609. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  610. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  611. #region 页面操作权限验证
  612. //pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 104);
  613. //if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "客户名单您没有添加权限!"));
  614. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 27);
  615. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "团组操作您没有添加权限!"));
  616. #endregion
  617. #endregion
  618. _sqlSugar.BeginTran();
  619. var _dto = new GroupOperationDto();
  620. _dto = _mapper.Map<GroupProcessOperationDto, GroupOperationDto>(dto);
  621. var groupData = await _groupRepository.GroupOperation(_dto);
  622. if (groupData.Code != 0)
  623. {
  624. return Ok(JsonView(false, "团组操作添加失败!" + groupData.Msg));
  625. }
  626. int diId = 0;
  627. //添加时 默认加入团组汇率
  628. if (dto.Status == 1) //添加
  629. {
  630. diId = groupData.Data;
  631. //添加默认币种
  632. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  633. //默认分配权限
  634. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  635. //消息提示 王鸽 主管号
  636. List<int> _managerIds = new List<int>() { 22, 32 };
  637. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  638. if (userIds.Count > 0)
  639. {
  640. userIds.Add(208);
  641. //创建团组管控
  642. GroupStepForDelegation.CreateWorkStep(diId);
  643. //发送消息
  644. string groupName = dto.TeamName;
  645. string createGroupUser = string.Empty;
  646. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  647. if (userInfo != null) createGroupUser = userInfo.CnName;
  648. string title = $"系统通知";
  649. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  650. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  651. }
  652. }
  653. if (dto.Status == 2)
  654. {
  655. diId = dto.Id;
  656. if (diId == 0)
  657. {
  658. return Ok(JsonView(false, "修改失败! 未添加团组id" + groupData.Msg));
  659. }
  660. }
  661. var viewData = await _tourClientListRep.OperMultiple(dto.TourClientListInfos, diId, dto.UserId);
  662. if (viewData.Code != 0)
  663. {
  664. _sqlSugar.RollbackTran();
  665. return Ok(JsonView(false, "客户名单添加失败!" + viewData.Msg));
  666. }
  667. _sqlSugar.CommitTran();
  668. return Ok(JsonView(true, "添加成功"));
  669. }
  670. catch (Exception ex)
  671. {
  672. _sqlSugar.RollbackTran();
  673. return Ok(JsonView(false, ex.Message));
  674. }
  675. }
  676. /// <summary>
  677. /// 接团信息 操作(删除)
  678. /// </summary>
  679. /// <param name="dto"></param>
  680. /// <returns></returns>
  681. [HttpPost]
  682. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  683. public async Task<IActionResult> GroupDel(GroupDelDto dto)
  684. {
  685. try
  686. {
  687. var groupData = await _groupRepository.GroupDel(dto);
  688. if (groupData.Code != 0)
  689. {
  690. return Ok(JsonView(false, groupData.Msg));
  691. }
  692. return Ok(JsonView(true));
  693. }
  694. catch (Exception ex)
  695. {
  696. Logs("[response]" + JsonConvert.SerializeObject(dto));
  697. Logs(ex.Message);
  698. return Ok(JsonView(false, ex.Message));
  699. }
  700. }
  701. /// <summary>
  702. /// 获取团组销售报价号
  703. /// 团组添加时 使用
  704. /// </summary>
  705. /// <returns></returns>
  706. [HttpPost]
  707. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  708. public async Task<IActionResult> GetGroupSalesQuoteNo()
  709. {
  710. var groupData = await _groupRepository.GetGroupSalesQuoteNo();
  711. if (groupData.Code != 0)
  712. {
  713. return Ok(JsonView(false, groupData.Msg));
  714. }
  715. object salesQuoteNo = new
  716. {
  717. SalesQuoteNo = groupData.Data
  718. };
  719. return Ok(JsonView(salesQuoteNo));
  720. }
  721. /// <summary>
  722. /// 设置确认出团
  723. /// </summary>
  724. /// <param name="dto"></param>
  725. /// <returns></returns>
  726. [HttpPost]
  727. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  728. public async Task<IActionResult> SetConfirmationGroup(ConfirmationGroupDto dto)
  729. {
  730. var groupData = await _groupRepository.ConfirmationGroup(dto);
  731. if (groupData.Code != 0)
  732. {
  733. return Ok(JsonView(false, groupData.Msg));
  734. }
  735. var groupInfo = _groupRepository.Query(s => s.Id == dto.GroupId).First();
  736. #region OA消息推送
  737. try
  738. {
  739. string groupName = groupInfo.TeamName;
  740. List<Sys_Users> listUser = _airTicketResRep.Query<Sys_Users>(s => s.DepId == 7 && s.IsDel == 0).ToList();
  741. List<int> userIds = new List<int>();
  742. listUser.ForEach(s => userIds.Add(s.Id));
  743. string title = $"系统通知";
  744. string content = $"团组[{groupName}]已确认出团!";
  745. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, dto.GroupId);
  746. }
  747. catch (Exception ex)
  748. {
  749. }
  750. #endregion
  751. #region 应用推送
  752. try
  753. {
  754. await AppNoticeLibrary.SendChatMsg_GroupStatus_Create(dto.GroupId, QiyeWeChatEnum.CompanyCRMChat);
  755. Sys_Users users = _airTicketResRep.Query<Sys_Users>(s => s.Id == groupInfo.JietuanOperator).First();
  756. Sys_Department department = _airTicketResRep.Query<Sys_Department>(s => s.Id == users.DepId).First();
  757. if (department.Id == 6 && !string.IsNullOrEmpty(users.QiyeChatUserId))
  758. {
  759. List<string> userList = new List<string>() { users.QiyeChatUserId };
  760. await AppNoticeLibrary.SendUserMsg_GroupStatus_Create(dto.GroupId, userList);
  761. }
  762. }
  763. catch (Exception ex)
  764. {
  765. }
  766. #endregion
  767. GroupStepForDelegation.CreateWorkStep(dto.GroupId); //创建管控流程
  768. return Ok(JsonView(true, "操作成功!", groupData.Data));
  769. }
  770. /// <summary>
  771. /// 获取团组名称data And 签证国别Data
  772. /// </summary>
  773. /// <param name="dto"></param>
  774. /// <returns></returns>
  775. [HttpPost]
  776. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  777. public async Task<IActionResult> GetGroupNameAndVisaNationality(GroupNameDto dto)
  778. {
  779. var groupData = await _groupRepository.GetGroupNameAndVisaNationality(dto);
  780. if (groupData.Code != 0)
  781. {
  782. return Ok(JsonView(false, groupData.Msg));
  783. }
  784. return Ok(JsonView(groupData.Data));
  785. }
  786. /// <summary>
  787. /// 根据CTable类型返回对应的团组名称及简单数据(APP端)
  788. /// </summary>
  789. /// <returns></returns>
  790. [HttpPost]
  791. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  792. public async Task<IActionResult> PostGroupNameAndEasy(DecreasePaymentsDto dto)
  793. {
  794. try
  795. {
  796. Result groupData = await _decreasePaymentsRep.PostGroupNameAndEasy(dto);
  797. if (groupData.Code != 0)
  798. {
  799. return Ok(JsonView(false, groupData.Msg));
  800. }
  801. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  802. }
  803. catch (Exception ex)
  804. {
  805. return Ok(JsonView(false, "程序错误!"));
  806. throw;
  807. }
  808. }
  809. #endregion
  810. #region 团组&签证
  811. /// <summary>
  812. /// 根据团组Id获取签证客户信息List
  813. /// </summary>
  814. /// <param name="dto">请求dto</param>
  815. /// <returns></returns>
  816. [HttpPost]
  817. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  818. public async Task<IActionResult> GetCrmByGroupId(ClientByGroupIdDto dto)
  819. {
  820. var groupData = await _groupRepository.GetCrmByGroupId(dto);
  821. if (groupData.Code != 0)
  822. {
  823. return Ok(JsonView(false, groupData.Msg));
  824. }
  825. return Ok(JsonView(groupData.Data));
  826. }
  827. /// <summary>
  828. /// IOS获取团组签证拍照上传进度01(团组列表)
  829. /// </summary>
  830. /// <param name="dto">请求dto</param>
  831. /// <returns></returns>
  832. [HttpPost]
  833. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  834. public async Task<IActionResult> PostIOSVisaProgress(IOS_VisaDto dto)
  835. {
  836. if (dto == null)
  837. {
  838. return Ok(JsonView(false, "参数为空"));
  839. }
  840. DelegationVisaViewList visaList = _delegationVisaRep.GetDelegationList(dto);
  841. return Ok(JsonView(visaList));
  842. }
  843. /// <summary>
  844. /// IOS获取团组签证拍照上传进度02(团组签证详情\人员列表\国家)
  845. /// </summary>
  846. /// <returns></returns>
  847. [HttpPost]
  848. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  849. public async Task<ActionResult> PostIOSVisaProgressContent(IOS_VisaCustomerListDto dto)
  850. {
  851. if (dto == null)
  852. {
  853. return Ok(JsonView(false, "请求错误:"));
  854. }
  855. List<DelegationVisaProgressView> list = _delegationVisaRep.GetDelegationProgressList(dto.diId);
  856. return Ok(JsonView(list));
  857. }
  858. /// <summary>
  859. /// IOS获取团组签证拍照上传进度03(相册)
  860. /// </summary>
  861. /// <returns></returns>
  862. [HttpPost]
  863. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  864. public async Task<ActionResult> PostIOSVisaProgressImageList(IOS_VisaImageListDto dto)
  865. {
  866. if (dto == null)
  867. {
  868. return Ok(JsonView(false, "请求错误:"));
  869. }
  870. List<VisaProgressImageView> list = _delegationVisaRep.GetVisaProgressImageList(dto.visaProgressCustomerId, dto.picType);
  871. string url = AppSettingsHelper.Get("VisaProgressImageBaseUrl") + AppSettingsHelper.Get("VisaProgressImageFtpPath");
  872. list.ForEach(s => s.url = url);
  873. return Ok(JsonView(list));
  874. }
  875. /// <summary>
  876. /// IOS获取团组签证拍照上传进度04(图片上传)
  877. /// </summary>
  878. /// <param name="dto"></param>
  879. /// <returns></returns>
  880. [HttpPost]
  881. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  882. public async Task<ActionResult> PostIOSVisaProgressUploadImage(IOS_VisaUploadImageDto dto)
  883. {
  884. //string result = decodeBase64ToImage(dto.base64DataURL, dto.imageName);
  885. //if (!string.IsNullOrEmpty(result))
  886. //{
  887. //}
  888. //else {
  889. // return Ok(JsonView(false, "上传失败"));
  890. //}
  891. DateTime dt1970 = new DateTime(1970, 1, 1, 0, 0, 0, 0);
  892. int sucNum = 0;
  893. try
  894. {
  895. foreach (var item in dto.base64DataList)
  896. {
  897. string imageName = dto.imageName + ((DateTime.Now.Ticks - dt1970.Ticks) / 10000).ToString();
  898. string result = decodeBase64ToImage(item, imageName);
  899. if (!string.IsNullOrEmpty(result))
  900. {
  901. Grp_VisaProgressCustomerPicture pic = new Grp_VisaProgressCustomerPicture();
  902. pic.CreateUserId = dto.CreateUserId;
  903. pic.PicName = imageName;
  904. pic.PicPath = result;
  905. pic.VisaProgressCustomerId = dto.visaProgressCustomerId;
  906. int insertResult = await _delegationVisaRep.AddAsync<Grp_VisaProgressCustomerPicture>(pic);
  907. if (insertResult > 0)
  908. {
  909. sucNum++;
  910. }
  911. }
  912. }
  913. }
  914. catch (Exception ex)
  915. {
  916. return Ok(JsonView(false, ex.Message));
  917. }
  918. string msg = string.Format(@"成功上传{0}张", sucNum);
  919. return Ok(JsonView(true, msg));
  920. }
  921. private string decodeBase64ToImage(string base64DataURL, string imgName)
  922. {
  923. string filename = "";//声明一个string类型的相对路径
  924. String base64 = base64DataURL.Substring(base64DataURL.IndexOf(",") + 1); //将‘,’以前的多余字符串删除
  925. System.Drawing.Bitmap bitmap = null;//定义一个Bitmap对象,接收转换完成的图片
  926. try//会有异常抛出,try,catch一下
  927. {
  928. byte[] arr = Convert.FromBase64String(base64);//将纯净资源Base64转换成等效的8位无符号整形数组
  929. System.IO.MemoryStream ms = new System.IO.MemoryStream(arr);//转换成无法调整大小的MemoryStream对象
  930. bitmap = new System.Drawing.Bitmap(ms);//将MemoryStream对象转换成Bitmap对象
  931. var fileDir = AppSettingsHelper.Get("VisaProgressImageBasePath");
  932. //文件名称
  933. filename = "VisaProgress_" + DateTime.Now.ToString("yyyyMMddHHmmss") + "_" + imgName + ".jpeg";//所要保存的相对路径及名字
  934. //上传的文件的路径
  935. string filePath = "";
  936. if (!Directory.Exists(fileDir))
  937. {
  938. Directory.CreateDirectory(fileDir);
  939. }
  940. //上传的文件的路径
  941. filePath = fileDir + filename;
  942. //string url = HttpRuntime.AppDomainAppPath.ToString();
  943. //string tmpRootDir = System.Web.HttpContext.Current.Server.MapPath(System.Web.HttpContext.Current.Request.ApplicationPath.ToString()); //获取程序根目录
  944. //string imagesurl2 = tmpRootDir + filename; //转换成绝对路径
  945. bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Jpeg);//保存到服务器路径
  946. //bitmap.Save(filePath + ".bmp", System.Drawing.Imaging.ImageFormat.Bmp);
  947. //bitmap.Save(filePath + ".gif", System.Drawing.Imaging.ImageFormat.Gif);
  948. //bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Png);
  949. ms.Close();//关闭当前流,并释放所有与之关联的资源
  950. bitmap.Dispose();
  951. }
  952. catch (Exception e)
  953. {
  954. string massage = e.Message;
  955. Logs("IOS图片上传Error:" + massage);
  956. //filename = e.Message;
  957. }
  958. return filename;//返回相对路径
  959. }
  960. /// <summary>
  961. /// IOS获取团组签证拍照上传进度05(修改签证状态/通知)
  962. /// </summary>
  963. /// <param name="dto"></param>
  964. /// <returns></returns>
  965. [HttpPost]
  966. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  967. public async Task<ActionResult> PostIOSVisaProgressChangeStatus(IOS_VisaChangeStatusDto dto)
  968. {
  969. if (dto == null)
  970. {
  971. return Ok(JsonView(false, "请求错误:"));
  972. }
  973. string msg = "参数错误";
  974. if (dto.diId > 0 && dto.visaStatus > 0 && dto.visaStatus < 4)
  975. {
  976. try
  977. {
  978. //_delegationVisaRep.BeginTran();
  979. var updCount = await _delegationVisaRep._sqlSugar.Updateable<Grp_VisaProgressCustomer>()
  980. .SetColumns(it => it.WorkStatus == dto.visaStatus)
  981. .Where(s => s.Id == dto.visaProgressCustomerId)
  982. .ExecuteCommandAsync();
  983. if (updCount > 0 && dto.publishCode == 1)
  984. {
  985. _delegationVisaRep.ChangeDataBase(DBEnum.OA2014DB); //切换到新OA后删除
  986. string sqlDelegation = string.Format(@" Select * From DelegationInfo With(Nolock) Where Id = {0} ", dto.diId);
  987. OA2021_DelegationInfo groupData = _sqlSugar.SqlQueryable<OA2021_DelegationInfo>(sqlDelegation).First();
  988. //GroupInfoDto grpDto = new GroupInfoDto() { Id = dto.diId };
  989. //var groupData = await _groupRepository.GetGroupInfo(grpDto);
  990. _delegationVisaRep.ChangeDataBase(DBEnum.OA2023DB); //切换到新OA后删除
  991. if (groupData == null)
  992. {
  993. _delegationVisaRep.RollbackTran();
  994. }
  995. string title = string.Format(@"[签证进度更新]");
  996. string content = string.Format(@"测试文本");
  997. bool rst = await _message.AddMsg(new MessageDto()
  998. {
  999. Type = MessageTypeEnum.GroupVisaProgressUpdate,
  1000. IssuerId = dto.publisher,
  1001. Title = title,
  1002. Content = content,
  1003. ReleaseTime = DateTime.Now,
  1004. UIdList = new List<int> {
  1005. 234
  1006. }
  1007. });
  1008. if (rst)
  1009. {
  1010. return Ok(JsonView(true, "发送通知成功"));
  1011. }
  1012. }
  1013. //_delegationVisaRep.CommitTran();
  1014. }
  1015. catch (Exception)
  1016. {
  1017. //_delegationVisaRep.RollbackTran();
  1018. }
  1019. }
  1020. return Ok(JsonView(true, msg));
  1021. }
  1022. #endregion
  1023. #region 团组任务分配
  1024. /// <summary>
  1025. /// 团组任务分配初始化
  1026. /// </summary>
  1027. /// <param name="dto"></param>
  1028. /// <returns></returns>
  1029. [HttpPost]
  1030. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1031. public async Task<IActionResult> GetTaskAssignmen()
  1032. {
  1033. var groupData = await _taskAssignmentRep.GetTaskAssignmen();
  1034. if (groupData.Code != 0)
  1035. {
  1036. return Ok(JsonView(false, groupData.Msg));
  1037. }
  1038. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1039. }
  1040. /// <summary>
  1041. /// 团组任务分配查询
  1042. /// </summary>
  1043. /// <param name="dto"></param>
  1044. /// <returns></returns>
  1045. [HttpPost]
  1046. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1047. public async Task<IActionResult> TaskAssignmenQuery(TaskAssignmenQueryDto dto)
  1048. {
  1049. var groupData = await _taskAssignmentRep.TaskAssignmenQuery(dto);
  1050. if (groupData.Code != 0)
  1051. {
  1052. return Ok(JsonView(false, groupData.Msg));
  1053. }
  1054. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1055. }
  1056. /// <summary>
  1057. /// 团组任务分配操作
  1058. /// </summary>
  1059. /// <param name="dto"></param>
  1060. /// <returns></returns>
  1061. [HttpPost]
  1062. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1063. public async Task<IActionResult> GetTaskAssignmenOp(TaskAssignmenDto dto)
  1064. {
  1065. Result groupData = await _taskAssignmentRep.GetTaskAssignmenOp(dto);
  1066. if (groupData.Code != 0)
  1067. {
  1068. return Ok(JsonView(false, groupData.Msg));
  1069. }
  1070. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1071. }
  1072. #endregion
  1073. #region 团组费用审核
  1074. /// <summary>
  1075. /// 费用审核
  1076. /// 团组列表 Page
  1077. /// </summary>
  1078. /// <param name="_dto">团组列表请求dto</param>
  1079. /// <returns></returns>
  1080. [HttpPost]
  1081. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1082. public async Task<IActionResult> PostExpenseAuditGroupPageItems(ExpenseAuditGroupPageItemsDto _dto)
  1083. {
  1084. #region 参数验证
  1085. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1086. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1087. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1088. #region 页面操作权限验证
  1089. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1090. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1091. #endregion
  1092. #endregion
  1093. if (_dto.PortType == 1 || _dto.PortType == 2 || _dto.PortType == 2) // web/Android/IOS
  1094. {
  1095. string sqlWhere = string.Empty;
  1096. if (_dto.IsSure == 0) //未完成
  1097. {
  1098. sqlWhere += string.Format(@" And IsSure = 0");
  1099. }
  1100. else if (_dto.IsSure == 1) //已完成
  1101. {
  1102. sqlWhere += string.Format(@" And IsSure = 1");
  1103. }
  1104. if (!string.IsNullOrEmpty(_dto.SearchCriteria))
  1105. {
  1106. string tj = _dto.SearchCriteria;
  1107. sqlWhere += string.Format(@"And (ssd.Name Like '%{0}%' Or TeamName Like '%{1}%' Or ClientName Like '%{2}%' Or ClientName Like '%{3}%' Or su.CnName Like '%{4}%')",
  1108. tj, tj, tj, tj, tj);
  1109. }
  1110. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  1111. TeamName,ClientName,ClientUnit, TeamLevId,TeamLev,VisitDate,
  1112. VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  1113. From (
  1114. Select row_number() over(order by gdi.VisitDate Desc) as Row_Number,
  1115. gdi.Id,SalesQuoteNo,TourCode,ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,
  1116. ClientName,ClientUnit,ssd.Id TeamTypeId, ssd.Name TeamType,VisitDate,
  1117. VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  1118. From Grp_DelegationInfo gdi
  1119. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  1120. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  1121. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  1122. Where gdi.IsDel = 0 {0}
  1123. ) temp ", sqlWhere);
  1124. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  1125. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(_dto.PageIndex, _dto.PageSize, total);//ToPageAsync
  1126. var _view = new
  1127. {
  1128. PageFuncAuth = pageFunAuthView,
  1129. Data = _DelegationList
  1130. };
  1131. return Ok(JsonView(true, "查询成功!", _view, total));
  1132. }
  1133. else
  1134. {
  1135. return Ok(JsonView(false, "查询失败"));
  1136. }
  1137. }
  1138. /// <summary>
  1139. /// 获取团组费用审核
  1140. /// </summary>
  1141. /// <param name="paras">参数Json字符串</param>
  1142. /// <returns></returns>
  1143. [HttpPost]
  1144. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1145. public async Task<IActionResult> PostSearchGrpCreditCardPayment(Search_GrpCreditCardPaymentDto _dto)
  1146. {
  1147. try
  1148. {
  1149. #region 参数验证
  1150. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1151. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1152. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  1153. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1154. #region 页面操作权限验证
  1155. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1156. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1157. #endregion
  1158. #endregion
  1159. Grp_CreditCardPaymentView _view = new Grp_CreditCardPaymentView();
  1160. List<SimplClientInfo> clientNameList = getSimplClientList(_dto.DiId);
  1161. #region 费用清单
  1162. var exp = Expressionable.Create<Grp_CreditCardPayment>();
  1163. exp.AndIF(_dto.AuditStatus != -1, it => it.IsAuditGM == _dto.AuditStatus);
  1164. exp.AndIF(_dto.Label != -1, it => it.CTable == _dto.Label);
  1165. List<Grp_CreditCardPayment> entityList = _groupRepository
  1166. .Query<Grp_CreditCardPayment>(s => s.DIId == _dto.DiId && s.IsDel == 0 && s.CreateUserId > 0)
  1167. .Where(exp.ToExpression())
  1168. .ToList();
  1169. List<Grp_CreditCardPaymentDetailView> detailList = new List<Grp_CreditCardPaymentDetailView>();
  1170. List<CreditCardPaymentCurrencyPriceItem> ccpCurrencyPrices = new List<CreditCardPaymentCurrencyPriceItem>();
  1171. /*
  1172. * 76://酒店预订
  1173. */
  1174. List<Grp_HotelReservations> _HotelReservations = await _groupRepository
  1175. .Query<Grp_HotelReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1176. .ToListAsync();
  1177. List<Grp_HotelReservationsContent> _HotelReservationsContents = await _groupRepository
  1178. .Query<Grp_HotelReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1179. .ToListAsync();
  1180. /*
  1181. * 79://车/导游地接
  1182. */
  1183. List<Grp_CarTouristGuideGroundReservations> _CarTouristGuideGroundReservations = await _groupRepository
  1184. .Query<Grp_CarTouristGuideGroundReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1185. .ToListAsync();
  1186. List<Grp_CarTouristGuideGroundReservationsContent> _CarTouristGuideGroundReservationsContent = await _groupRepository
  1187. .Query<Grp_CarTouristGuideGroundReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1188. .ToListAsync();
  1189. /*
  1190. * 80: //签证
  1191. */
  1192. List<Grp_VisaInfo> _VisaInfos = await _groupRepository
  1193. .Query<Grp_VisaInfo>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1194. .ToListAsync();
  1195. /*
  1196. *81: //邀请/公务活动
  1197. */
  1198. List<Grp_InvitationOfficialActivities> _InvitationOfficialActivities = await _groupRepository
  1199. .Query<Grp_InvitationOfficialActivities>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1200. .ToListAsync();
  1201. /*
  1202. * 82: //团组客户保险
  1203. */
  1204. List<Grp_Customers> _Customers = await _groupRepository.Query<Grp_Customers>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1205. /*
  1206. * Lable = 85 机票预订
  1207. */
  1208. List<Grp_AirTicketReservations> p_AirTicketReservations = await _groupRepository
  1209. .Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1210. .ToListAsync();
  1211. /*
  1212. * 85 机票预定
  1213. */
  1214. List<Grp_AirTicketReservations> _AirTicketReservations = await _groupRepository.Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1215. /*
  1216. * 98 其他款项
  1217. */
  1218. List<Grp_DecreasePayments> _DecreasePayments = await _groupRepository
  1219. .Query<Grp_DecreasePayments>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1220. .ToListAsync();
  1221. /*
  1222. * 285:收款退还
  1223. */
  1224. List<Fin_PaymentRefundAndOtherMoney> _PaymentRefundAndOtherMoneys = await _groupRepository
  1225. .Query<Fin_PaymentRefundAndOtherMoney>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1226. .ToListAsync();
  1227. /*
  1228. * 1015: //超支费用
  1229. */
  1230. List<Fin_GroupExtraCost> _GroupExtraCosts = await _groupRepository.Query<Fin_GroupExtraCost>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1231. /*
  1232. * 币种信息
  1233. */
  1234. var currencyItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 66 && s.IsDel == 0).ToListAsync();
  1235. /*
  1236. * 车/导游地接 费用类型
  1237. */
  1238. var carFeeTypeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 17 && s.IsDel == 0).ToListAsync();
  1239. /*
  1240. * 车/导游地接 费用类型
  1241. */
  1242. var carFeeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 83 && s.IsDel == 0).ToListAsync();
  1243. var initDatas = await _groupRepository.Query<Sys_SetData>(s => s.IsDel == 0).ToListAsync();
  1244. var cityData = await _groupRepository.Query<Grp_NationalTravelFee>(s => s.IsDel == 0).ToListAsync();
  1245. /*
  1246. * 用户信息
  1247. */
  1248. var userItems = await _groupRepository.Query<Sys_Users>(s => s.IsDel == 0).ToListAsync();
  1249. /*
  1250. * 费用模块
  1251. */
  1252. Sys_SetData sdPriceName = _groupRepository.Query<Sys_SetData>(s => s.Id == _dto.Label).First();
  1253. string priceModule = string.Empty;
  1254. if (sdPriceName != null)
  1255. {
  1256. priceModule = sdPriceName.Name;
  1257. }
  1258. /*
  1259. * 成本信息
  1260. */
  1261. var groupCost = _groupRepository.Query<Grp_GroupCostParameter>(s => s.DiId == _dto.DiId && s.IsDel == 0).First();
  1262. decimal _groupRate = 0.0000M;
  1263. string _groupCurrencyCode = "-";
  1264. if (groupCost != null)
  1265. {
  1266. _groupRate = groupCost.Rate;
  1267. if (int.TryParse(groupCost.Currency, out int _currency))
  1268. {
  1269. _groupCurrencyCode = currencyItems.Find(it => it.Id == _currency)?.Name ?? "-";
  1270. }
  1271. else _groupCurrencyCode = groupCost.Currency;
  1272. }
  1273. string costContentSql = $"Select * From Grp_GroupCost";
  1274. var groupCostDetails = _sqlSugar.SqlQueryable<GroupCostAuditView>(costContentSql).Where(x => x.IsDel == 0 && x.Diid == _dto.DiId).ToList();
  1275. //处理日期为空的天数
  1276. for (int i = 0; i < groupCostDetails.Count; i++)
  1277. if (i != 0)
  1278. if (string.IsNullOrEmpty(groupCostDetails[i].Date))
  1279. groupCostDetails[i].Date = groupCostDetails[i - 1].Date;
  1280. /*
  1281. * 处理详情数据
  1282. */
  1283. foreach (var entity in entityList)
  1284. {
  1285. Grp_CreditCardPaymentDetailView _detail = new Grp_CreditCardPaymentDetailView();
  1286. _detail.Id = entity.Id;
  1287. _detail.PriceName = priceModule;
  1288. _detail.PayType = initDatas.Find(it => it.Id == entity.PayDId)?.Name ?? "-";
  1289. _detail.CardType = initDatas.Find(it => it.Id == entity.CTDId)?.Name ?? "-";
  1290. /*
  1291. * 应付款金额
  1292. */
  1293. Sys_SetData sdPaymentCurrency_WaitPay = currencyItems.Where(s => s.Id == entity.PaymentCurrency).FirstOrDefault();
  1294. string PaymentCurrency_WaitPay = "Unknown";
  1295. string hotelCurrncyCode = "Unknown";
  1296. string hotelCurrncyName = "Unknown";
  1297. if (sdPaymentCurrency_WaitPay != null)
  1298. {
  1299. PaymentCurrency_WaitPay = sdPaymentCurrency_WaitPay.Name;
  1300. hotelCurrncyCode = sdPaymentCurrency_WaitPay.Name;
  1301. hotelCurrncyName = sdPaymentCurrency_WaitPay.Remark;
  1302. if (hotelCurrncyCode.Equals("CNY"))
  1303. {
  1304. entity.DayRate = 1.0000M;
  1305. }
  1306. }
  1307. _detail.WaitPay = entity.PayMoney.ConvertToDecimal1().ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1308. /*
  1309. * 此次付款金额
  1310. */
  1311. decimal CurrPayStr = 0;
  1312. if (entity.PayPercentage == 0)
  1313. {
  1314. if (entity.PayThenMoney != 0)
  1315. CurrPayStr = (entity.PayThenMoney * entity.DayRate).ConvertToDecimal1();
  1316. }
  1317. else
  1318. {
  1319. if (entity.PayMoney != 0)
  1320. {
  1321. CurrPayStr = (entity.PayMoney * entity.PayPercentage / 100 * entity.DayRate).ConvertToDecimal1();
  1322. }
  1323. }
  1324. _detail.CurrPay = CurrPayStr.ToString("#0.00") + " CNY";
  1325. /*
  1326. * 剩余尾款
  1327. */
  1328. decimal BalanceStr = 0;
  1329. if (CurrPayStr != 0)
  1330. {
  1331. if (entity.PayMoney - (CurrPayStr / entity.DayRate) < 0.01M)
  1332. BalanceStr = 0;
  1333. else
  1334. BalanceStr = (entity.PayMoney - CurrPayStr / entity.DayRate).ConvertToDecimal1();
  1335. }
  1336. _detail.Balance = BalanceStr.ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1337. /*
  1338. * Bus名称
  1339. */
  1340. _detail.BusName = "待增加";
  1341. /*
  1342. *费用所属
  1343. */
  1344. switch (entity.CTable)
  1345. {
  1346. case 76://酒店预订
  1347. Grp_HotelReservations hotelReservations = _HotelReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1348. if (hotelReservations != null)
  1349. {
  1350. DateTime checkIn = Convert.ToDateTime(hotelReservations.CheckInDate),
  1351. checkOut = Convert.ToDateTime(hotelReservations.CheckOutDate);
  1352. int hotel_days = (int)(checkOut - checkIn).TotalDays;
  1353. string roomFeeStr = "", roomFeestr1 = "";
  1354. //是否比较房型价格
  1355. bool __isSingle = false, __isDouble = false, __isSuite = false, __isOther = false;
  1356. roomFeeStr += $"<br/><span style='width:70px;display: inline-block;'></span>";
  1357. if (hotelReservations.SingleRoomPrice > 0)
  1358. { roomFeestr1 += $"单间:{hotelReservations.SingleRoomPrice.ToString("#0.00")} * {hotelReservations.SingleRoomCount}"; __isSingle = true; }
  1359. if (hotelReservations.DoubleRoomPrice > 0)
  1360. { roomFeestr1 += $"双人间:{hotelReservations.DoubleRoomPrice.ToString("#0.00")} * {hotelReservations.DoubleRoomCount}"; __isDouble = true; }
  1361. if (hotelReservations.SuiteRoomPrice > 0)
  1362. { roomFeestr1 += $"套房:{hotelReservations.SuiteRoomPrice.ToString("#0.00")} * {hotelReservations.SuiteRoomCount}"; __isSuite = true; }
  1363. if (hotelReservations.OtherRoomPrice > 0)
  1364. { roomFeestr1 += $"其他:{hotelReservations.OtherRoomPrice.ToString("#0.00")} * {hotelReservations.OtherRoomCount}"; __isOther = true; }
  1365. if (roomFeestr1.Length > 0) roomFeeStr += roomFeestr1;
  1366. else roomFeeStr += " 0.00 * 0";
  1367. decimal governmentRentFee = 0.00M, cityTaxFee = 0.00M, breakfastFee = 0.00M, roomFee = 0.00M;
  1368. string governmentRentBool = "否", cityTaxBool = "否", breakfastBool = "否", roomBool = "否";
  1369. string governmentRentCode = "", governmentRentName = "", cityTaxCode = "", cityTaxName = "", breakfastCode = "", breakfastName = "", roomCode = "", roomName = "";
  1370. var _HotelReservationsContents1 = _HotelReservationsContents.Where(it => it.HrId == hotelReservations.Id).ToList();
  1371. /*
  1372. * 费用类型
  1373. * 1:房费
  1374. * 2:早餐
  1375. * 3:地税
  1376. * 4:城市税
  1377. * </summary>
  1378. */
  1379. //地税
  1380. var governmentRentData = _HotelReservationsContents1.Find(it => it.PriceType == 3);
  1381. if (governmentRentData != null)
  1382. {
  1383. governmentRentBool = governmentRentData.IsOppay == 1 ? "是" : "否";
  1384. governmentRentFee = governmentRentData.Price;
  1385. var governmentRentCurrData = currencyItems.Find(s => s.Id == governmentRentData.Currency);
  1386. if (governmentRentCurrData != null)
  1387. {
  1388. governmentRentCode = governmentRentCurrData.Name;
  1389. governmentRentName = $"({governmentRentCurrData.Remark})";
  1390. }
  1391. }
  1392. //城市税
  1393. var cityTaxData = _HotelReservationsContents1.Find(it => it.PriceType == 4);
  1394. if (cityTaxData != null)
  1395. {
  1396. cityTaxBool = cityTaxData.IsOppay == 1 ? "是" : "否";
  1397. cityTaxFee = cityTaxData.Price;
  1398. var cityTaxCurrData = currencyItems.Find(s => s.Id == cityTaxData.Currency);
  1399. if (cityTaxCurrData != null)
  1400. {
  1401. cityTaxCode = cityTaxCurrData.Name;
  1402. cityTaxName = $"({cityTaxCurrData.Remark})";
  1403. }
  1404. }
  1405. //酒店早餐
  1406. var breakfastData = _HotelReservationsContents1.Find(it => it.PriceType == 2);
  1407. if (breakfastData != null)
  1408. {
  1409. breakfastBool = breakfastData.IsOppay == 1 ? "是" : "否";
  1410. breakfastFee = breakfastData.Price;
  1411. var breakfastCurrData = currencyItems.Find(s => s.Id == breakfastData.Currency);
  1412. if (breakfastCurrData != null)
  1413. {
  1414. breakfastCode = breakfastCurrData.Name;
  1415. breakfastName = $"({breakfastCurrData.Remark})";
  1416. }
  1417. }
  1418. //房间费用
  1419. var roomData = _HotelReservationsContents1.Find(it => it.PriceType == 1);
  1420. if (roomData != null)
  1421. {
  1422. _detail.PayType = initDatas.Find(it => it.Id == roomData.PayDId)?.Name ?? "-";
  1423. _detail.CardType = initDatas.Find(it => it.Id == roomData.CTDId)?.Name ?? "-";
  1424. roomBool = roomData.IsOppay == 1 ? "是" : "否";
  1425. roomFee = roomData.Price;
  1426. var roomCurrData = currencyItems.Find(s => s.Id == roomData.Currency);
  1427. if (roomCurrData != null)
  1428. {
  1429. roomCode = roomCurrData.Name;
  1430. roomName = $"({roomCurrData.Remark})";
  1431. }
  1432. }
  1433. string hotelCostTitalStr = "<span style='font-weight:800;'>成本信息</span><br/>";
  1434. string hotelCostStr = "";
  1435. decimal hotelCsotTotal = 0.00M;
  1436. if (groupCost != null)
  1437. {
  1438. if (int.TryParse(groupCost.Currency, out int currencyId)) groupCost.Currency = currencyItems.Find(s => s.Id == currencyId)?.Name ?? "-";
  1439. hotelCostStr += $"{groupCost.Currency}(汇率:{groupCost.Rate.ToString("#0.0000")})<br/>";
  1440. }
  1441. if (checkOut > checkIn) checkOut = checkOut.AddDays(-1);
  1442. var hotelCostDetails = groupCostDetails.Where(x => Convert.ToDateTime(x.Date) >= checkIn && Convert.ToDateTime(x.Date) <= checkOut).ToList();
  1443. string hotelCost_day = "";
  1444. var hotelCostDetails1 = hotelCostDetails.GroupBy(x => x.Date);
  1445. foreach (var item in hotelCostDetails1)
  1446. {
  1447. hotelCsotTotal += item.Sum(x => x.HotelSingleRoomFee) + item.Sum(x => x.HotelDoubleRoomFee) + item.Sum(x => x.HotelSuiteRoomFee) + item.Sum(x => x.HotelSuiteFee);
  1448. hotelCost_day += @$"{item.First()?.Date ?? "-"}";
  1449. if (item.Sum(x => x.HotelSingleRoomFee) != 0) hotelCost_day += @$" 单间:{item.Sum(x => x.HotelSingleRoomFee).ToString("#0.00")}";
  1450. else { if (__isSingle) hotelCost_day += @$" 单间:0.00"; }
  1451. if (item.Sum(x => x.HotelDoubleRoomFee) != 0) hotelCost_day += @$" 双人间:{item.Sum(x => x.HotelDoubleRoomFee).ToString("#0.00")}";
  1452. else { if (__isDouble) hotelCost_day += @$" 双人间:0.00"; }
  1453. if (item.Sum(x => x.HotelSuiteRoomFee) != 0) hotelCost_day += @$" 小套房/豪华套房:{item.Sum(x => x.HotelSuiteRoomFee).ToString("#0.00")}";
  1454. else { if (__isSuite) hotelCost_day += @$" 小套房/豪华套房:0.00"; }
  1455. if (item.Sum(x => x.HotelSuiteFee) != 0) hotelCost_day += @$" 套房:{item.Sum(x => x.HotelSuiteFee).ToString("#0.00")}";
  1456. else { if (__isOther) hotelCost_day += @$" 套房:0.00"; }
  1457. hotelCost_day += @$"</br>";
  1458. }
  1459. string hotelBreakfastStr = "", hotelGovernmentRentStr = "", hotelCityTaxStr = "";
  1460. if (breakfastFee > 0) hotelBreakfastStr = $"酒店早餐: {breakfastFee.ToString("#0.00")} {breakfastCode} {breakfastName} 当时汇率 {breakfastData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{breakfastBool}<br/><br/>";
  1461. if (governmentRentFee > 0) hotelGovernmentRentStr = $"地税: {governmentRentFee.ToString("#0.00")} {governmentRentCode} {governmentRentName} 当时汇率 {governmentRentData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{governmentRentBool}<br/><br/>";
  1462. if (cityTaxFee > 0) hotelCityTaxStr = $"城市税: {cityTaxFee.ToString("#0.00")} {cityTaxCode} {cityTaxName} 当时汇率 {cityTaxData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{cityTaxBool}<br/>";
  1463. string hotelCostTotalStr = "";// $"&nbsp;&nbsp;成本合计:{hotelCsotTotal.ToString("#0.00")}<br/>";
  1464. _detail.PriceMsgContent = $"{hotelCostTitalStr}{hotelCostStr}{hotelCostTotalStr}{hotelCost_day}<br/>" +
  1465. $"<span style='font-weight:800;'>{hotelReservations.HotelName} [{hotelReservations.CheckInDate} - {hotelReservations.CheckOutDate}]</span><br/>" +
  1466. $"信用卡金额:{_detail.WaitPay} ({hotelCurrncyName})<br/>" +
  1467. $"房间说明: {hotelReservations.Remark} <br/>" +
  1468. $"房间费用: {roomCode} {roomName} 当时汇率 {roomData?.Rate.ToString("#0.0000")}{roomFeeStr} <br/>是否由地接代付:{roomBool}<br/><br/>" +
  1469. $"{hotelBreakfastStr}" +
  1470. $"{hotelGovernmentRentStr}" +
  1471. $"{hotelCityTaxStr}";
  1472. _detail.PriceNameContent = hotelReservations.HotelName;
  1473. }
  1474. break;
  1475. case 79://车/导游地接
  1476. Grp_CarTouristGuideGroundReservations touristGuideGroundReservations = _CarTouristGuideGroundReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1477. if (touristGuideGroundReservations != null)
  1478. {
  1479. if (!string.IsNullOrEmpty(touristGuideGroundReservations.BusName))
  1480. {
  1481. _detail.BusName = touristGuideGroundReservations.BusName;
  1482. }
  1483. _detail.PriceNameContent = touristGuideGroundReservations.PriceName;
  1484. //bool isInt = int.TryParse(touristGuideGroundReservations.Area, out int cityId);
  1485. //if (isInt)
  1486. //{
  1487. // var cityInfo = cityData.Find(it => it.Id == cityId);
  1488. // if (cityInfo != null)
  1489. // {
  1490. // string nameContent = $@"{cityInfo.Country}-{cityInfo.City}";
  1491. // var carFeeItem = carFeeItems.Find(it => it.Id == touristGuideGroundReservations.PriceType);
  1492. // if (carFeeItem != null)
  1493. // {
  1494. // nameContent += $@"({carFeeItem.Name})";
  1495. // }
  1496. // _detail.PriceNameContent = nameContent;
  1497. // }
  1498. //}
  1499. //else
  1500. //{
  1501. // _detail.PriceNameContent = touristGuideGroundReservations.Area;
  1502. //}
  1503. var touristGuideGroundReservationsContents =
  1504. _CarTouristGuideGroundReservationsContent.Where(s => s.CTGGRId == touristGuideGroundReservations.Id && s.IsDel == 0 && s.Price != 0).ToList();
  1505. string priceMsg = $"<span style='font-weight:800;'>{touristGuideGroundReservations.PriceName}({touristGuideGroundReservations.ServiceStartTime} - {touristGuideGroundReservations.ServiceEndTime})</span><br/>";
  1506. foreach (var item in touristGuideGroundReservationsContents)
  1507. {
  1508. string typeName = "Unknown";
  1509. string carCurrencyCode = "Unknown";
  1510. string carCurrencyName = "Unknown";
  1511. var carTypeData = carFeeTypeItems.Where(s => s.Id == item.SId && s.IsDel == 0).FirstOrDefault();
  1512. if (carTypeData != null) typeName = carTypeData.Name;
  1513. var currencyData = currencyItems.Where(s => s.Id == item.Currency && s.IsDel == 0).FirstOrDefault();
  1514. if (currencyData != null)
  1515. {
  1516. carCurrencyCode = currencyData.Name;
  1517. carCurrencyName = currencyData.Remark;
  1518. }
  1519. string opCostStr = string.Empty;
  1520. decimal opCostTypePrice = 0.00M;
  1521. #region 处理成本各项费用
  1522. var opDate = item.DatePrice?.ToString("yyyy-MM-dd");
  1523. var opCost = groupCostDetails.Where(x => x.Date.Equals(opDate)).ToList();
  1524. if (opCost.Count > 0)
  1525. {
  1526. switch (item.SId)
  1527. {
  1528. case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //91车费
  1529. //case 982: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //982 车超时费 -- 暂无
  1530. case 92: opCostTypePrice = opCost.Sum(x => x.GuideFee); break; //92 导游费
  1531. case 94: opCostTypePrice = opCost.Sum(x => x.GuideScenicFee); break; //94 导游景点费
  1532. case 95: opCostTypePrice = opCost.Sum(x => x.GuideTipFee); break; //95 导游小费
  1533. case 983: opCostTypePrice = opCost.Sum(x => x.GuideMealFee); break; //983 导游餐补
  1534. case 984: opCostTypePrice = opCost.Sum(x => x.GuideMealFee); break; //984 导游房补
  1535. case 985: opCostTypePrice = opCost.Sum(x => x.GuideRoomFee); break; //985 导游交通
  1536. //case 96: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //96 接送机费 -- 暂无
  1537. //case 97: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //97 其他费用 -- 暂无
  1538. case 979: opCostTypePrice = opCost.Sum(x => x.DriverFee); break; //979 司机工资
  1539. case 980: opCostTypePrice = opCost.Sum(x => x.DriverTipFee); break; //980 司机小费
  1540. case 981: opCostTypePrice = opCost.Sum(x => x.DriverMealFee); break; //981 司机餐补
  1541. case 988: opCostTypePrice = opCost.Sum(x => x.ClientBreakfastFee); break; //988 客户早餐费用
  1542. case 93: opCostTypePrice = opCost.Sum(x => x.ClientDinnerFee); break; //93 客户午餐费用
  1543. case 989: opCostTypePrice = opCost.Sum(x => x.ClientLunchFee); break; //989 客户晚餐费用
  1544. case 990: opCostTypePrice = opCost.Sum(x => x.ScenicTicketFee); break; //990 景点门票费
  1545. case 991: opCostTypePrice = opCost.Sum(x => x.DrinkSnackFruitFee); break; //991 饮料/零食/水果
  1546. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //992 住补费用 -- 暂无
  1547. case 994: opCostTypePrice = opCost.Sum(x => x.TranslatorFee); break; //994 翻译费
  1548. case 1059: opCostTypePrice = opCost.Sum(x => x.GuideOverTimeFee); break; //1059 导游超时费用
  1549. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1070 尾款金额
  1550. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1071 其他额外费用
  1551. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1073 翻译超时费
  1552. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1074 早餐超支费用
  1553. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1075 午餐超支费用
  1554. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1076 晚餐超支费用
  1555. }
  1556. opCostStr = $"&nbsp;&nbsp;/&nbsp;&nbsp;成本:{opCostTypePrice.ToString("#0.00")} {_groupCurrencyCode}(汇率:{_groupRate.ToString("#0.0000")})";
  1557. }
  1558. #endregion
  1559. priceMsg += $"日期:{item.DatePrice?.ToString("yyyy-MM-dd") ?? "-"}<br/>" +
  1560. $"{typeName}:{item.Price.ToString("#0.00")} {carCurrencyCode}(汇率:{entity.DayRate.ToString("#0.0000")}) {opCostStr}<br/>" +
  1561. $"明细:{item.PriceContent ?? "-"}<br/>" +
  1562. $"备注:{item.Remark ?? "-"}<br/><br/>";
  1563. }
  1564. _detail.PriceMsgContent = priceMsg;
  1565. }
  1566. break;
  1567. case 80: //签证
  1568. Grp_VisaInfo visaInfo = _VisaInfos.Where(s => s.Id == entity.CId).FirstOrDefault();
  1569. if (visaInfo != null)
  1570. {
  1571. string visaName = getClientNameStr1(clientNameList, visaInfo.VisaClient);
  1572. _detail.PriceNameContent = visaInfo.VisaDescription ;
  1573. _detail.PriceMsgContent = $"签证描述:{visaName}<br/> 备注:{visaInfo.Remark}";
  1574. }
  1575. break;
  1576. case 81: //邀请/公务活动
  1577. Grp_InvitationOfficialActivities _ioa = _InvitationOfficialActivities.Where(s => s.Id == entity.CId).FirstOrDefault();
  1578. if (_ioa != null)
  1579. {
  1580. string inviteCurrName = "Unknown", //邀请费用币种 Name
  1581. inviteCurrCode = "Unknown", //邀请费用币种 Code
  1582. sendCurrName = "Unknown", //快递费用币种 Name
  1583. sendCurrCode = "Unknown", //快递费用币种 Code
  1584. eventsCurrName = "Unknown", //公务活动费币种 Name
  1585. eventsCurrCode = "Unknown", //公务活动费币种 Code
  1586. translateCurrName = "Unknown", //公务翻译费 Name
  1587. translateCurrCode = "Unknown"; //公务翻译费 Code
  1588. #region 处理费用币种
  1589. var inviteCurrData = currencyItems.Where(s => s.Id == _ioa.InviteCurrency && s.IsDel == 0).FirstOrDefault();
  1590. if (inviteCurrData != null)
  1591. {
  1592. inviteCurrName = inviteCurrData.Remark;
  1593. inviteCurrCode = inviteCurrData.Name;
  1594. }
  1595. var sendCurrData = currencyItems.Where(s => s.Id == _ioa.SendCurrency && s.IsDel == 0).FirstOrDefault();
  1596. if (sendCurrData != null)
  1597. {
  1598. sendCurrName = sendCurrData.Remark;
  1599. sendCurrCode = sendCurrData.Name;
  1600. }
  1601. var eventsCurrData = currencyItems.Where(s => s.Id == _ioa.EventsCurrency && s.IsDel == 0).FirstOrDefault();
  1602. if (eventsCurrData != null)
  1603. {
  1604. eventsCurrName = eventsCurrData.Remark;
  1605. eventsCurrCode = eventsCurrData.Name;
  1606. }
  1607. var translateCurrData = currencyItems.Where(s => s.Id == _ioa.TranslateCurrency && s.IsDel == 0).FirstOrDefault();
  1608. if (translateCurrData != null)
  1609. {
  1610. translateCurrName = translateCurrData.Remark;
  1611. translateCurrCode = translateCurrData.Name;
  1612. }
  1613. #endregion
  1614. _detail.PriceNameContent = _ioa.InviterArea;
  1615. _detail.PriceMsgContent = $@"邀请费用:{_ioa.InviteCost.ToString("#0.00")} {inviteCurrCode}({inviteCurrName})<br/>" +
  1616. $@"快递费用:{_ioa.SendCost.ToString("#0.00")} {sendCurrCode}({sendCurrName})<br/>" +
  1617. $@"公务活动费:{_ioa.EventsCost.ToString("#0.00")} {eventsCurrCode}({eventsCurrName})<br/>" +
  1618. $@"公务翻译费:{_ioa.TranslateCost.ToString("#0.00")} {translateCurrCode}({translateCurrName})<br/>" +
  1619. $@"备注:" + _ioa.Remark + "<br/>";
  1620. }
  1621. break;
  1622. case 82: //团组客户保险
  1623. Grp_Customers customers = _Customers.Where(s => s.Id == entity.CId && s.IsDel == 0).FirstOrDefault();
  1624. if (customers != null)
  1625. {
  1626. _detail.PriceNameContent = getClientNameStr(clientNameList, customers.ClientName);
  1627. _detail.PriceMsgContent = "备注:" + customers.Remark + "<br/>";
  1628. }
  1629. break;
  1630. case 85: //机票预订
  1631. Grp_AirTicketReservations jpRes = _AirTicketReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1632. if (jpRes != null)
  1633. {
  1634. string FlightsDescription = jpRes.FlightsDescription;
  1635. string PriceDescription = jpRes.PriceDescription;
  1636. _detail.PriceMsgContent = "航班号:" + jpRes.FlightsCode + "<br/>城市A-B:" + jpRes.FlightsCity + "<br/>航班描述:" + FlightsDescription.Replace("\r\n", "<br />") + "<br/>" + "价格描述:" + PriceDescription;
  1637. _detail.PriceNameContent = "(" + jpRes.FlightsCode + ")";
  1638. }
  1639. break;
  1640. case 98://其他款项
  1641. Grp_DecreasePayments gdpRes = _DecreasePayments.Where(s => s.Id == entity.CId).FirstOrDefault();
  1642. if (gdpRes != null)
  1643. {
  1644. _detail.PriceMsgContent = "备注:" + gdpRes.Remark;
  1645. _detail.PriceNameContent = gdpRes.PriceName;
  1646. }
  1647. break;
  1648. case 285://收款退还
  1649. Fin_PaymentRefundAndOtherMoney refundAndOtherMoney = _PaymentRefundAndOtherMoneys.Where(s => s.Id == entity.CId).FirstOrDefault();
  1650. if (refundAndOtherMoney != null)
  1651. {
  1652. _detail.PriceMsgContent = "备注:" + refundAndOtherMoney.Remark;
  1653. _detail.PriceNameContent = refundAndOtherMoney.PriceName;
  1654. }
  1655. break;
  1656. case 751://酒店早餐
  1657. break;
  1658. case 1015://超支费用
  1659. Fin_GroupExtraCost groupExtraCost = _GroupExtraCosts.Where(s => s.Id == entity.CId).FirstOrDefault();
  1660. if (groupExtraCost != null)
  1661. {
  1662. _detail.PriceNameContent = groupExtraCost.PriceName;
  1663. _detail.PriceMsgContent = "备注:" + groupExtraCost.Remark;
  1664. }
  1665. break;
  1666. default:
  1667. break;
  1668. }
  1669. /*
  1670. * 申请人
  1671. */
  1672. string operatorName = " - ";
  1673. Sys_Users _opUser = userItems.Where(s => s.Id == entity.CreateUserId).FirstOrDefault();
  1674. if (_opUser != null)
  1675. {
  1676. operatorName = _opUser.CnName;
  1677. }
  1678. _detail.OperatorName = operatorName;
  1679. /*
  1680. * 审核人
  1681. */
  1682. string auditOperatorName = "Unknown";
  1683. if (entity.AuditGMOperate == 0)
  1684. auditOperatorName = " - ";
  1685. else if (entity.AuditGMOperate == 4)
  1686. auditOperatorName = "自动审核";
  1687. else
  1688. {
  1689. Sys_Users _adUser = userItems.Where(s => s.Id == entity.AuditGMOperate).FirstOrDefault();
  1690. if (_adUser != null)
  1691. {
  1692. auditOperatorName = _adUser.CnName;
  1693. }
  1694. }
  1695. _detail.AuditOperatorName = auditOperatorName;
  1696. /*
  1697. * 超预算比例
  1698. */
  1699. string overBudgetStr = "";
  1700. if (entity.ExceedBudget == -1)
  1701. overBudgetStr = sdPriceName.Name + "尚无预算";
  1702. else if (entity.ExceedBudget == 0)
  1703. {
  1704. if (entity.CTable == 76 || entity.CTable == 79)
  1705. {
  1706. if (entity.IsAuditGM == 3) overBudgetStr = "未超预算";
  1707. else overBudgetStr = "超预算";
  1708. }
  1709. else
  1710. {
  1711. overBudgetStr = "未超预算";
  1712. }
  1713. }
  1714. else
  1715. overBudgetStr = entity.ExceedBudget.ToString("P");
  1716. _detail.OverBudget = overBudgetStr;
  1717. /*
  1718. * 费用总计
  1719. */
  1720. ccpCurrencyPrices.Add(new CreditCardPaymentCurrencyPriceItem()
  1721. {
  1722. CurrencyId = entity.PaymentCurrency,
  1723. CurrencyName = PaymentCurrency_WaitPay,
  1724. AmountPayable = entity.PayMoney,
  1725. ThisPayment = CurrPayStr,
  1726. BalancePayment = BalanceStr,
  1727. AuditedFunds = CurrPayStr
  1728. });
  1729. _detail.IsAuditGM = entity.IsAuditGM;
  1730. detailList.Add(_detail);
  1731. }
  1732. #endregion
  1733. _view.DetailList = new List<Grp_CreditCardPaymentDetailView>(detailList);
  1734. /*
  1735. * 下方描述处理
  1736. */
  1737. List<CreditCardPaymentCurrencyPriceItem> nonDuplicat = ccpCurrencyPrices.Where((x, i) => ccpCurrencyPrices.FindIndex(z => z.CurrencyId == x.CurrencyId) == i).ToList();//Lambda表达式去重
  1738. CreditCardPaymentCurrencyPriceItem ccpCurrencyPrice = nonDuplicat.Where(it => it.CurrencyId == 836).FirstOrDefault();
  1739. if (ccpCurrencyPrice != null)
  1740. {
  1741. int CNYIndex = nonDuplicat.IndexOf(ccpCurrencyPrice);
  1742. nonDuplicat.MoveItemAtIndexToFront(CNYIndex);
  1743. }
  1744. else
  1745. {
  1746. nonDuplicat.OrderBy(it => it.CurrencyId).ToList();
  1747. }
  1748. string amountPayableStr = string.Format(@"应付款总金额: ");
  1749. string thisPaymentStr = string.Format(@"此次付款总金额: ");
  1750. string balancePaymentStr = string.Format(@"目前剩余尾款总金额: ");
  1751. string auditedFundsStr = string.Format(@"已审费用总额: ");
  1752. foreach (var item in nonDuplicat)
  1753. {
  1754. var strs = ccpCurrencyPrices.Where(it => it.CurrencyId == item.CurrencyId).ToList();
  1755. if (strs.Count > 0)
  1756. {
  1757. decimal amountPayable = strs.Sum(it => it.AmountPayable);
  1758. decimal balancePayment = strs.Sum(it => it.BalancePayment);
  1759. amountPayableStr += string.Format(@"{0}{1}&nbsp;|", amountPayable.ToString("#0.00"), item.CurrencyName);
  1760. //单独处理此次付款金额
  1761. if (item.CurrencyId == 836) //人民币
  1762. {
  1763. decimal thisPayment = ccpCurrencyPrices.Sum(it => it.ThisPayment);
  1764. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", thisPayment.ToString("#0.00"), item.CurrencyName);
  1765. }
  1766. else
  1767. {
  1768. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1769. }
  1770. balancePaymentStr += string.Format(@"{0}{1}&nbsp;|", balancePayment.ToString("#0.00"), item.CurrencyName);
  1771. //单独处理已审核费用
  1772. if (item.CurrencyId == 836) //人民币
  1773. {
  1774. decimal auditedFunds = ccpCurrencyPrices.Sum(it => it.AuditedFunds);
  1775. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", auditedFunds.ToString("#0.00"), item.CurrencyName);
  1776. }
  1777. else
  1778. {
  1779. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1780. }
  1781. }
  1782. }
  1783. _view.TotalStr1 = amountPayableStr.Substring(0, amountPayableStr.Length - 1);
  1784. _view.TotalStr2 = thisPaymentStr.Substring(0, thisPaymentStr.Length - 1);
  1785. _view.TotalStr3 = balancePaymentStr.Substring(0, balancePaymentStr.Length - 1);
  1786. _view.TotalStr4 = auditedFundsStr.Substring(0, auditedFundsStr.Length - 1);
  1787. var _view1 = new
  1788. {
  1789. PageFuncAuth = pageFunAuthView,
  1790. Data = _view
  1791. };
  1792. return Ok(JsonView(_view1));
  1793. }
  1794. catch (Exception ex)
  1795. {
  1796. return Ok(JsonView(false, ex.Message));
  1797. }
  1798. }
  1799. /// <summary>
  1800. /// 费用审核
  1801. /// 修改团组费用审核状态
  1802. /// </summary>
  1803. /// <param name="_dto">参数Json字符串</param>
  1804. /// <returns></returns>
  1805. [HttpPost]
  1806. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1807. public async Task<IActionResult> PostAuditGrpCreditCardPayment(Edit_GrpCreditCardPaymentDto _dto)
  1808. {
  1809. #region 参数验证
  1810. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1811. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1812. #endregion
  1813. #region 页面操作权限验证
  1814. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1815. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1816. if (pageFunAuthView.AuditAuth == 0) return Ok(JsonView(false, "您没有审核权限"));
  1817. #endregion
  1818. List<string> idList = _dto.CreditIdStr.Split(',').ToList();
  1819. Grp_CreditCardPayment _detail = _mapper.Map<Grp_CreditCardPayment>(_dto);
  1820. DateTime dtNow = DateTime.Now;
  1821. _groupRepository.BeginTran();
  1822. int rst = 0;
  1823. var creditDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && idList.Contains(it.Id.ToString())).ToList();
  1824. var creditTypeDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 16).ToList();
  1825. var creditCurrencyDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  1826. var groupDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).ToList();
  1827. List<dynamic> msgDatas = new List<dynamic>();
  1828. Dictionary<int, int> dic_ccp_user = new Dictionary<int, int>() { };
  1829. foreach (var item in idList)
  1830. {
  1831. int CreditId = int.Parse(item);
  1832. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_CreditCardPayment>()
  1833. .SetColumns(it => it.IsAuditGM == _dto.AuditCode)
  1834. .SetColumns(it => it.AuditGMOperate == _dto.UserId)
  1835. .SetColumns(it => it.AuditGMDate == dtNow.ToString("yyyy-MM-dd HH:mm:ss"))
  1836. .Where(s => s.Id == CreditId)
  1837. .ExecuteCommandAsync();
  1838. if (result < 1)
  1839. {
  1840. rst = -1;
  1841. _groupRepository.RollbackTran();
  1842. return Ok(JsonView(false, "操作失败并回滚!"));
  1843. }
  1844. var creditData = creditDatas.Where(it => it.Id == CreditId).FirstOrDefault();
  1845. if (creditData != null)
  1846. {
  1847. #region 应用通知配置
  1848. try
  1849. {
  1850. dic_ccp_user.Add(creditData.Id, creditData.CreateUserId);
  1851. }
  1852. catch (Exception ex)
  1853. {
  1854. }
  1855. #endregion
  1856. string auditStr = _dto.AuditCode == 1 ? "已通过" : _dto.AuditCode == 2 ? "未通过" : "未审核";
  1857. string groupNameStr = string.Empty;
  1858. var groupData = groupDatas.Where(it => it.Id == creditData.DIId).FirstOrDefault();
  1859. if (groupData != null) groupNameStr = groupData.TeamName;
  1860. string creditTypeStr = string.Empty;
  1861. var creditTypeData = creditTypeDatas.Where(it => it.Id == creditData.CTable).FirstOrDefault();
  1862. if (creditTypeData != null) creditTypeStr = creditTypeData.Name;
  1863. string creditCurrency = string.Empty;
  1864. var creditCurrencyData = creditCurrencyDatas.Where(it => it.Id == creditData.PaymentCurrency).FirstOrDefault();
  1865. if (creditCurrencyData != null) creditCurrency = creditCurrencyData.Name;
  1866. if (creditCurrency.Equals("CNY"))
  1867. {
  1868. creditData.DayRate = 1.0000M;
  1869. }
  1870. if (creditData.PayPercentage == 0.00M)
  1871. {
  1872. creditData.PayPercentage = 100M;
  1873. }
  1874. decimal CNYPrice = (creditData.PayMoney * (creditData.PayPercentage / 100)) * creditData.DayRate;
  1875. string msgTitle = $"[{groupNameStr}({creditTypeStr})]的费用申请";
  1876. string msgContent = "";
  1877. if (creditCurrency.Equals("CNY"))
  1878. {
  1879. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY) {auditStr}!";
  1880. }
  1881. else
  1882. {
  1883. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY({creditData.PayMoney.ToString("0.00")} {creditCurrency})) {auditStr}!";
  1884. }
  1885. msgDatas.Add(new { DiId = creditData.DIId, UserId = creditData.CreateUserId, MsgTitle = msgTitle, MsgContent = msgContent });
  1886. }
  1887. }
  1888. if (rst == 0)
  1889. {
  1890. _groupRepository.CommitTran();
  1891. foreach (var item in msgDatas)
  1892. {
  1893. //发送消息
  1894. GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupExpenseAudit, item.MsgTitle, item.MsgContent, new List<int>() { item.UserId }, item.DiId);
  1895. }
  1896. #region 应用推送
  1897. try
  1898. {
  1899. foreach (var ccpId in dic_ccp_user.Keys)
  1900. {
  1901. List<string> templist = new List<string>() { dic_ccp_user[ccpId].ToString() };
  1902. await AppNoticeLibrary.SendUserMsg_GroupStatus_AuditFee(ccpId, templist, QiyeWeChatEnum.CaiWuChat);
  1903. }
  1904. }
  1905. catch (Exception)
  1906. {
  1907. }
  1908. #endregion
  1909. return Ok(JsonView(true, "操作成功!"));
  1910. }
  1911. return Ok(JsonView(false, "操作失败!"));
  1912. }
  1913. #endregion
  1914. #region 机票费用录入
  1915. /// <summary>
  1916. /// 机票录入当前登录人可操作团组
  1917. /// </summary>
  1918. /// <param name="dto"></param>
  1919. /// <returns></returns>
  1920. [HttpPost]
  1921. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1922. public async Task<IActionResult> AirTicketResSelect(AirTicketResDto dto)
  1923. {
  1924. try
  1925. {
  1926. Result groupData = await _airTicketResRep.AirTicketResSelect(dto);
  1927. if (groupData.Code != 0)
  1928. {
  1929. return Ok(JsonView(false, groupData.Msg));
  1930. }
  1931. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1932. }
  1933. catch (Exception ex)
  1934. {
  1935. return Ok(JsonView(false, "程序错误!"));
  1936. throw;
  1937. }
  1938. }
  1939. /// <summary>
  1940. /// 机票费用录入列表
  1941. /// </summary>
  1942. /// <param name="dto"></param>
  1943. /// <returns></returns>
  1944. [HttpPost]
  1945. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1946. public async Task<IActionResult> AirTicketResList(AirTicketResDto dto)
  1947. {
  1948. try
  1949. {
  1950. Result groupData = await _airTicketResRep.AirTicketResList(dto);
  1951. if (groupData.Code != 0)
  1952. {
  1953. return Ok(JsonView(false, groupData.Msg));
  1954. }
  1955. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1956. }
  1957. catch (Exception ex)
  1958. {
  1959. return Ok(JsonView(false, ex.Message));
  1960. throw;
  1961. }
  1962. }
  1963. /// <summary>
  1964. /// 根据id查询费用录入信息
  1965. /// </summary>
  1966. /// <param name="dto"></param>
  1967. /// <returns></returns>
  1968. [HttpPost]
  1969. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1970. public async Task<IActionResult> AirTicketResById(AirTicketResByIdDto dto)
  1971. {
  1972. try
  1973. {
  1974. Result groupData = await _airTicketResRep.AirTicketResById(dto);
  1975. if (groupData.Code != 0)
  1976. {
  1977. return Ok(JsonView(false, groupData.Msg));
  1978. }
  1979. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1980. }
  1981. catch (Exception ex)
  1982. {
  1983. return Ok(JsonView(false, "程序错误!"));
  1984. throw;
  1985. }
  1986. }
  1987. /// <summary>
  1988. /// 机票费用录入操作(Status:1.新增,2.修改)
  1989. /// </summary>
  1990. /// <param name="dto"></param>
  1991. /// <returns></returns>
  1992. [HttpPost]
  1993. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1994. public async Task<IActionResult> OpAirTicketRes(AirTicketResOpDto dto)
  1995. {
  1996. try
  1997. {
  1998. Result groupData = await _airTicketResRep.OpAirTicketRes(dto, _setDataRep.PostCurrencyByDiid);
  1999. if (groupData.Code != 0)
  2000. {
  2001. return Ok(JsonView(false, groupData.Msg));
  2002. }
  2003. #region 应用推送
  2004. try
  2005. {
  2006. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2007. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2008. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2009. }
  2010. catch (Exception ex)
  2011. {
  2012. }
  2013. #endregion
  2014. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2015. }
  2016. catch (Exception ex)
  2017. {
  2018. return Ok(JsonView(false, "程序错误!"));
  2019. throw;
  2020. }
  2021. }
  2022. /// <summary>
  2023. /// 根据舱位类型查询接团客户名单信息
  2024. /// </summary>
  2025. /// <param name="dto"></param>
  2026. /// <returns></returns>
  2027. [HttpPost]
  2028. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2029. public async Task<IActionResult> tankType(AirTicketResByIdDto dto)
  2030. {
  2031. try
  2032. {
  2033. List<Crm_GroupCustomer> crm_Groups = _sqlSugar.Queryable<Crm_GroupCustomer>().Where(a => a.IsDel == 0 && a.AirType == dto.Id).ToList();
  2034. if (crm_Groups.Count != 0)
  2035. {
  2036. List<dynamic> Customer = new List<dynamic>();
  2037. foreach (var item in crm_Groups)
  2038. {
  2039. var data = new
  2040. {
  2041. Id = item.Id,
  2042. Pinyin = item.Pinyin,
  2043. Name = item.LastName + item.FirstName
  2044. };
  2045. Customer.Add(data);
  2046. }
  2047. return Ok(JsonView(true, "查询成功!", Customer));
  2048. }
  2049. return Ok(JsonView(true, "暂无数据", crm_Groups));
  2050. }
  2051. catch (Exception ex)
  2052. {
  2053. return Ok(JsonView(false, "程序错误!"));
  2054. throw;
  2055. }
  2056. }
  2057. /// <summary>
  2058. /// 根据团号获取客户信息
  2059. /// </summary>
  2060. /// <param name="dto"></param>
  2061. /// <returns></returns>
  2062. [HttpPost]
  2063. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2064. public IActionResult QueryClientInfoByDIID(QueryClientInfoByDIIDDto dto)
  2065. {
  2066. var jw = JsonView(false);
  2067. if (dto.DIID < 1)
  2068. {
  2069. jw.Msg += "请输入正确的diid";
  2070. return Ok(jw);
  2071. }
  2072. var arr = getSimplClientList(dto.DIID);
  2073. jw = JsonView(true, "获取成功!", arr);
  2074. return Ok(jw);
  2075. }
  2076. private List<SimplClientInfo> getSimplClientList(int diId)
  2077. {
  2078. string sql = string.Format("select b.Id,b.Pinyin,b.lastName,b.firstName,b.phone from Grp_TourClientList a, Crm_DeleClient b where a.clientid = b.id and a.isdel = 0 and a.diid = {0}", diId);
  2079. List<SimplClientInfo> arr = _sqlSugar.SqlQueryable<SimplClientInfo>(sql).ToList();
  2080. return arr;
  2081. }
  2082. private string getClientNameStr(List<SimplClientInfo> list, string origin)
  2083. {
  2084. string result = origin;
  2085. if (Regex.Match(origin, @"\d+,?").Value.Length > 0)
  2086. {
  2087. string[] temparr = origin.Split(',');
  2088. string fistrStr = temparr[0];
  2089. int count = temparr.Count();
  2090. int tempId;
  2091. bool success = int.TryParse(fistrStr, out tempId);
  2092. if (success)
  2093. {
  2094. SimplClientInfo tempInfo = list.FirstOrDefault(s => s.Id == tempId);
  2095. if (tempInfo != null)
  2096. {
  2097. if (count > 1)
  2098. {
  2099. result = string.Format(@"{0}{1}等{2}人", tempInfo.LastName, tempInfo.FirstName, count);
  2100. }
  2101. else
  2102. {
  2103. result = string.Format(@"{0}{1}", tempInfo.LastName, tempInfo.FirstName);
  2104. }
  2105. }
  2106. }
  2107. }
  2108. return result;
  2109. }
  2110. private string getClientNameStr1(List<SimplClientInfo> list, string origin)
  2111. {
  2112. string result = origin;
  2113. if (Regex.Match(origin, @"\d+,?").Value.Length > 0)
  2114. {
  2115. string[] temparr = origin.Split(',');
  2116. result = "";
  2117. foreach (var item in temparr)
  2118. {
  2119. int tempId;
  2120. bool success = int.TryParse(item, out tempId);
  2121. if (success)
  2122. {
  2123. SimplClientInfo tempInfo = list.FirstOrDefault(s => s.Id == tempId);
  2124. if (tempInfo != null)
  2125. {
  2126. result += string.Format(@"{0}{1}、", tempInfo.LastName, tempInfo.FirstName);
  2127. }
  2128. }
  2129. }
  2130. }
  2131. if (result.Length > 0) result = result.Substring(0, result.Length - 1);
  2132. return result;
  2133. }
  2134. /// <summary>
  2135. /// 机票费用录入,删除
  2136. /// </summary>
  2137. /// <param name="dto"></param>
  2138. /// <returns></returns>
  2139. [HttpPost]
  2140. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2141. public async Task<IActionResult> DelAirTicketRes(DelBaseDto dto)
  2142. {
  2143. try
  2144. {
  2145. var res = await _airTicketResRep.SoftDeleteByIdAsync<Grp_AirTicketReservations>(dto.Id.ToString(), dto.DeleteUserId);
  2146. if (res)
  2147. {
  2148. var result = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.CTable == 85).SetColumns(a => new Grp_CreditCardPayment()
  2149. {
  2150. IsDel = 1,
  2151. DeleteUserId = dto.DeleteUserId,
  2152. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  2153. }).ExecuteCommandAsync();
  2154. return Ok(JsonView(true, "删除成功!"));
  2155. }
  2156. return Ok(JsonView(false, "删除失败!"));
  2157. }
  2158. catch (Exception ex)
  2159. {
  2160. return Ok(JsonView(false, "程序错误!"));
  2161. throw;
  2162. }
  2163. }
  2164. /// <summary>
  2165. /// 导出机票录入报表
  2166. /// </summary>
  2167. /// <param name="dto"></param>
  2168. /// <returns></returns>
  2169. [HttpPost]
  2170. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2171. public async Task<IActionResult> DeriveAirTicketRes(AirTicketResDto dto)
  2172. {
  2173. try
  2174. {
  2175. Result groupData = await _airTicketResRep.DeriveAirTicketRes(dto);
  2176. if (groupData.Code != 0)
  2177. {
  2178. return Ok(JsonView(StatusCodes.Status400BadRequest, groupData.Msg, ""));
  2179. }
  2180. else
  2181. {
  2182. List<AirTicketReservationsPayView> AirTicketReservations = groupData.Data.GetType().GetProperty("AirTicketRes").GetValue(groupData.Data);
  2183. if (AirTicketReservations.Count != 0)
  2184. {
  2185. Grp_DelegationInfo DelegationInfo = groupData.Data.GetType().GetProperty("Delegation").GetValue(groupData.Data);
  2186. Sys_Users _Users = groupData.Data.GetType().GetProperty("Users").GetValue(groupData.Data);
  2187. string diCode = DelegationInfo != null ? DelegationInfo.TourCode : "XXX";
  2188. string diName = DelegationInfo != null ? DelegationInfo.TeamName : "XXX";
  2189. WorkbookDesigner designer = new WorkbookDesigner();
  2190. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/机票预订费用报表模板.xlsx");
  2191. decimal countCost = 0;
  2192. foreach (var item in AirTicketReservations)
  2193. {
  2194. #region 处理客人姓名
  2195. string clientNames = _tourClientListRep._ResolveCustomerName(item.ClientName);
  2196. item.ClientName = clientNames;
  2197. #endregion
  2198. if (item.BankType == "其他")
  2199. {
  2200. item.BankNo = "--";
  2201. }
  2202. else
  2203. {
  2204. if (!string.IsNullOrEmpty(item.BankType))
  2205. {
  2206. item.BankNo = item.BankType + ":" + item.BankNo?.Substring(0, 3);
  2207. }
  2208. }
  2209. item.PrePrice = System.Decimal.Round(item.PrePrice, 2);
  2210. item.Price = System.Decimal.Round(item.Price, 2);
  2211. countCost += Convert.ToDecimal(item.Price);
  2212. }
  2213. designer.SetDataSource("Export", AirTicketReservations);
  2214. designer.SetDataSource("ExportDiCode", diCode);
  2215. designer.SetDataSource("ExportDiName", diName);
  2216. designer.SetDataSource("ExportOpUserName", _Users.CnName);
  2217. designer.SetDataSource("ExportCountCost", countCost + "(" + AirTicketReservations[0].CurrencyStr);
  2218. designer.Process();
  2219. string fileName = ("AirfareStatement/" + diName + "机票费用报表" + "_" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xlsx").Replace(":", "");
  2220. designer.Workbook.Save(AppSettingsHelper.Get("ExcelBasePath") + fileName);
  2221. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  2222. return Ok(JsonView(true, "成功", url = rst));
  2223. }
  2224. else
  2225. {
  2226. return Ok(JsonView(StatusCodes.Status400BadRequest, "暂无数据!", ""));
  2227. }
  2228. }
  2229. }
  2230. catch (Exception ex)
  2231. {
  2232. return Ok(JsonView(StatusCodes.Status400BadRequest, ex.Message, ""));
  2233. throw;
  2234. }
  2235. }
  2236. Dictionary<string, string> transDic = new Dictionary<string, string>();
  2237. /// <summary>
  2238. /// 行程单导出
  2239. /// </summary>
  2240. /// <param name="dto"></param>
  2241. /// <returns></returns>
  2242. [HttpPost]
  2243. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2244. public async Task<IActionResult> ItineraryAirTicketRes(ItineraryAirTicketResDto dto)
  2245. {
  2246. try
  2247. {
  2248. Result groupData = await _airTicketResRep.ItineraryAirTicketRes(dto);
  2249. if (groupData.Code != 0)
  2250. {
  2251. return Ok(JsonView(StatusCodes.Status400BadRequest, groupData.Msg, ""));
  2252. }
  2253. else
  2254. {
  2255. List<AirTicketReservationsView> _AirTicketReservations = groupData.Data;
  2256. if (dto.Language == "CN")
  2257. {
  2258. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_CN.docx");
  2259. DocumentBuilder builder = new DocumentBuilder(doc);
  2260. int tableIndex = 0;//表格索引
  2261. //得到文档中的第一个表格
  2262. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2263. foreach (var item in _AirTicketReservations)
  2264. {
  2265. #region 处理固定数据
  2266. string[] FlightsCode = item.FlightsCode.Split('/');
  2267. if (FlightsCode.Length != 0)
  2268. {
  2269. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2270. if (_AirCompany != null)
  2271. {
  2272. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2273. }
  2274. else
  2275. {
  2276. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2277. }
  2278. }
  2279. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2280. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2281. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2282. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2283. string name = "";
  2284. foreach (string clientName in nameArray)
  2285. {
  2286. if (!name.Contains(clientName))
  2287. {
  2288. name += clientName + ",";
  2289. }
  2290. }
  2291. if (!string.IsNullOrWhiteSpace(name))
  2292. {
  2293. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2294. }
  2295. else
  2296. {
  2297. table.Range.Bookmarks["ClientName"].Text = "--";
  2298. }
  2299. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2300. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2301. table.Range.Bookmarks["JointTicket"].Text = "--";
  2302. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2303. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2304. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2305. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2306. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2307. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2308. #endregion
  2309. #region 循环数据处理
  2310. List<AirInfo> airs = new List<AirInfo>();
  2311. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2312. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2313. for (int i = 0; i < FlightsCode.Length; i++)
  2314. {
  2315. AirInfo air = new AirInfo();
  2316. string[] tempstr = DayArray[i]
  2317. .Replace("\r\n", string.Empty)
  2318. .Replace("\\r\\n", string.Empty)
  2319. .TrimStart().TrimEnd()
  2320. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2321. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2322. string starCity = "";
  2323. if (star_Three != null)
  2324. {
  2325. starCity = star_Three.AirPort;
  2326. }
  2327. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2328. string EndCity = "";
  2329. if (End_Three != null)
  2330. {
  2331. EndCity = End_Three.AirPort;
  2332. }
  2333. air.Destination = starCity + "/" + EndCity;
  2334. air.Flight = FlightsCode[i];
  2335. air.SeatingClass = item.CTypeName;
  2336. string dateTime = tempstr[2];
  2337. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2338. air.FlightDate = DateTemp;
  2339. air.DepartureTime = tempstr[5];
  2340. air.LandingTime = tempstr[6];
  2341. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2342. air.TicketStatus = "--";
  2343. air.Luggage = "--";
  2344. air.DepartureTerminal = "--";
  2345. air.LandingTerminal = "--";
  2346. airs.Add(air);
  2347. }
  2348. int row = 13;
  2349. for (int i = 0; i < airs.Count; i++)
  2350. {
  2351. if (airs.Count > 2)
  2352. {
  2353. for (int j = 0; j < airs.Count - 2; j++)
  2354. {
  2355. var CopyRow = table.Rows[12].Clone(true);
  2356. table.Rows.Add(CopyRow);
  2357. }
  2358. }
  2359. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2360. int index = 0;
  2361. foreach (PropertyInfo property in properties)
  2362. {
  2363. string value = property.GetValue(airs[i]).ToString();
  2364. Cell ishcel0 = table.Rows[row].Cells[index];
  2365. Paragraph p = new Paragraph(doc);
  2366. string s = value;
  2367. p.AppendChild(new Run(doc, s));
  2368. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2369. ishcel0.AppendChild(p);
  2370. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2371. index++;
  2372. }
  2373. row++;
  2374. }
  2375. #endregion
  2376. Paragraph lastParagraph = new Paragraph(doc);
  2377. //第一个表格末尾加段落
  2378. table.ParentNode.InsertAfter(lastParagraph, table);
  2379. //复制第一个表格
  2380. Table cloneTable = (Table)table.Clone(true);
  2381. //在文档末尾段落后面加入复制的表格
  2382. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2383. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2384. {
  2385. int rownewsIndex = 13;
  2386. for (int i = 0; i < 2; i++)
  2387. {
  2388. var CopyRow = table.Rows[12].Clone(true);
  2389. table.Rows.RemoveAt(13);
  2390. table.Rows.Add(CopyRow);
  2391. rownewsIndex++;
  2392. }
  2393. }
  2394. else
  2395. {
  2396. table.Rows.RemoveAt(12);
  2397. }
  2398. cloneTable.Rows.RemoveAt(12);
  2399. }
  2400. if (_AirTicketReservations.Count != 0)
  2401. {
  2402. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2403. if (FlightsCode.Length != 0)
  2404. {
  2405. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2406. if (_AirCompany != null)
  2407. {
  2408. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2409. }
  2410. else
  2411. {
  2412. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2413. }
  2414. }
  2415. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2416. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2417. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2418. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2419. string name = "";
  2420. foreach (string clientName in nameArray)
  2421. {
  2422. if (!name.Contains(clientName))
  2423. {
  2424. name += clientName + ",";
  2425. }
  2426. }
  2427. if (!string.IsNullOrWhiteSpace(name))
  2428. {
  2429. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2430. }
  2431. else
  2432. {
  2433. table.Range.Bookmarks["ClientName"].Text = "--";
  2434. }
  2435. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2436. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2437. table.Range.Bookmarks["JointTicket"].Text = "--";
  2438. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2439. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2440. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2441. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2442. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2443. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2444. }
  2445. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2446. //保存合并后的文档
  2447. string fileName = "AirItinerary/电子客票中文行程单_CN.docx";
  2448. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2449. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2450. return Ok(JsonView(true, "成功!", rst));
  2451. }
  2452. else
  2453. {
  2454. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_EN.docx");
  2455. DocumentBuilder builder = new DocumentBuilder(doc);
  2456. int tableIndex = 0;//表格索引
  2457. //得到文档中的第一个表格
  2458. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2459. List<string> texts = new List<string>();
  2460. foreach (var item in _AirTicketReservations)
  2461. {
  2462. string[] FlightsCode = item.FlightsCode.Split('/');
  2463. if (FlightsCode.Length != 0)
  2464. {
  2465. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2466. if (_AirCompany != null)
  2467. {
  2468. if (!transDic.ContainsKey(_AirCompany.CnName))
  2469. {
  2470. transDic.Add(_AirCompany.CnName, _AirCompany.EnName);
  2471. }
  2472. }
  2473. else
  2474. {
  2475. if (!transDic.ContainsKey("--"))
  2476. {
  2477. transDic.Add("--", "--");
  2478. }
  2479. }
  2480. }
  2481. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2482. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2483. string name = "";
  2484. foreach (string clientName in nameArray)
  2485. {
  2486. name += clientName + ",";
  2487. }
  2488. if (!texts.Contains(name))
  2489. {
  2490. texts.Add(name);
  2491. }
  2492. List<AirInfo> airs = new List<AirInfo>();
  2493. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2494. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2495. for (int i = 0; i < FlightsCode.Length; i++)
  2496. {
  2497. AirInfo air = new AirInfo();
  2498. string[] tempstr = DayArray[i]
  2499. .Replace("\r\n", string.Empty)
  2500. .Replace("\\r\\n", string.Empty)
  2501. .TrimStart().TrimEnd()
  2502. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2503. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2504. if (star_Three != null)
  2505. {
  2506. if (!transDic.ContainsKey(star_Three.AirPort))
  2507. {
  2508. transDic.Add(star_Three.AirPort, star_Three.AirPort_En);
  2509. }
  2510. }
  2511. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2512. if (End_Three != null)
  2513. {
  2514. if (!transDic.ContainsKey(End_Three.AirPort))
  2515. {
  2516. transDic.Add(End_Three.AirPort, End_Three.AirPort_En);
  2517. }
  2518. }
  2519. if (!texts.Contains(item.CTypeName))
  2520. {
  2521. texts.Add(item.CTypeName);
  2522. }
  2523. }
  2524. }
  2525. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  2526. if (transData.Count > 0)
  2527. {
  2528. foreach (TranslateResult item in transData)
  2529. {
  2530. if (!transDic.ContainsKey(item.Query))
  2531. {
  2532. transDic.Add(item.Query, item.Translation);
  2533. }
  2534. }
  2535. }
  2536. foreach (var item in _AirTicketReservations)
  2537. {
  2538. #region 处理固定数据
  2539. string[] FlightsCode = item.FlightsCode.Split('/');
  2540. if (FlightsCode.Length != 0)
  2541. {
  2542. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2543. if (_AirCompany != null)
  2544. {
  2545. string str = "--";
  2546. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2547. if (!string.IsNullOrEmpty(translateResult))
  2548. {
  2549. str = translateResult;
  2550. str = _airTicketResRep.Processing(str);
  2551. }
  2552. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2553. }
  2554. else
  2555. {
  2556. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2557. }
  2558. }
  2559. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2560. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2561. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2562. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2563. string names = "";
  2564. foreach (string clientName in nameArray)
  2565. {
  2566. names += clientName + ",";
  2567. }
  2568. if (!string.IsNullOrWhiteSpace(names))
  2569. {
  2570. string str = "--";
  2571. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2572. if (!string.IsNullOrEmpty(translateResult))
  2573. {
  2574. str = translateResult;
  2575. str = _airTicketResRep.Processing(str);
  2576. }
  2577. table.Range.Bookmarks["ClientName"].Text = str;
  2578. }
  2579. else
  2580. {
  2581. table.Range.Bookmarks["ClientName"].Text = "--";
  2582. }
  2583. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2584. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2585. table.Range.Bookmarks["JointTicket"].Text = "--";
  2586. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2587. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2588. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2589. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2590. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2591. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2592. #endregion
  2593. #region 循环数据处理
  2594. List<AirInfo> airs = new List<AirInfo>();
  2595. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2596. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2597. for (int i = 0; i < FlightsCode.Length; i++)
  2598. {
  2599. AirInfo air = new AirInfo();
  2600. string[] tempstr = DayArray[i]
  2601. .Replace("\r\n", string.Empty)
  2602. .Replace("\\r\\n", string.Empty)
  2603. .TrimStart().TrimEnd()
  2604. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2605. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2606. string starCity = "";
  2607. if (star_Three != null)
  2608. {
  2609. string str2 = "--";
  2610. string translateResult2 = transDic.Where(s => s.Key == star_Three.AirPort).FirstOrDefault().Value;
  2611. if (!string.IsNullOrEmpty(translateResult2))
  2612. {
  2613. str2 = translateResult2;
  2614. str2 = _airTicketResRep.Processing(str2);
  2615. }
  2616. starCity = str2;
  2617. }
  2618. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2619. string EndCity = "";
  2620. if (End_Three != null)
  2621. {
  2622. string str1 = "--";
  2623. string translateResult1 = transDic.Where(s => s.Key == End_Three.AirPort).FirstOrDefault().Value;
  2624. if (!string.IsNullOrEmpty(translateResult1))
  2625. {
  2626. str1 = translateResult1;
  2627. str1 = _airTicketResRep.Processing(str1);
  2628. }
  2629. EndCity = str1;
  2630. }
  2631. air.Destination = starCity + "/" + EndCity;
  2632. air.Flight = FlightsCode[i];
  2633. string str = "--";
  2634. string translateResult = transDic.Where(s => s.Key == item.CTypeName).FirstOrDefault().Value;
  2635. if (!string.IsNullOrEmpty(translateResult))
  2636. {
  2637. str = translateResult;
  2638. str = _airTicketResRep.Processing(str);
  2639. }
  2640. air.SeatingClass = str;
  2641. string dateTime = tempstr[2];
  2642. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2643. air.FlightDate = DateTemp;
  2644. air.DepartureTime = tempstr[5];
  2645. air.LandingTime = tempstr[6];
  2646. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2647. air.TicketStatus = "--";
  2648. air.Luggage = "--";
  2649. air.DepartureTerminal = "--";
  2650. air.LandingTerminal = "--";
  2651. airs.Add(air);
  2652. }
  2653. int row = 13;
  2654. for (int i = 0; i < airs.Count; i++)
  2655. {
  2656. if (airs.Count > 2)
  2657. {
  2658. for (int j = 0; j < airs.Count - 2; j++)
  2659. {
  2660. var CopyRow = table.Rows[12].Clone(true);
  2661. table.Rows.Add(CopyRow);
  2662. }
  2663. }
  2664. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2665. int index = 0;
  2666. foreach (PropertyInfo property in properties)
  2667. {
  2668. string value = property.GetValue(airs[i]).ToString();
  2669. Cell ishcel0 = table.Rows[row].Cells[index];
  2670. Paragraph p = new Paragraph(doc);
  2671. string s = value;
  2672. p.AppendChild(new Run(doc, s));
  2673. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2674. ishcel0.AppendChild(p);
  2675. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2676. //ishcel0.CellFormat.VerticalAlignment=
  2677. index++;
  2678. }
  2679. row++;
  2680. }
  2681. #endregion
  2682. Paragraph lastParagraph = new Paragraph(doc);
  2683. //第一个表格末尾加段落
  2684. table.ParentNode.InsertAfter(lastParagraph, table);
  2685. //复制第一个表格
  2686. Table cloneTable = (Table)table.Clone(true);
  2687. //在文档末尾段落后面加入复制的表格
  2688. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2689. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2690. {
  2691. int rownewsIndex = 13;
  2692. for (int i = 0; i < 2; i++)
  2693. {
  2694. var CopyRow = table.Rows[12].Clone(true);
  2695. table.Rows.RemoveAt(13);
  2696. table.Rows.Add(CopyRow);
  2697. rownewsIndex++;
  2698. }
  2699. }
  2700. else
  2701. {
  2702. table.Rows.RemoveAt(12);
  2703. }
  2704. cloneTable.Rows.RemoveAt(12);
  2705. }
  2706. if (_AirTicketReservations.Count != 0)
  2707. {
  2708. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2709. if (FlightsCode.Length != 0)
  2710. {
  2711. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2712. if (_AirCompany != null)
  2713. {
  2714. string str = "--";
  2715. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2716. if (!string.IsNullOrEmpty(translateResult))
  2717. {
  2718. str = translateResult;
  2719. str = _airTicketResRep.Processing(str);
  2720. }
  2721. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2722. }
  2723. else
  2724. {
  2725. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2726. }
  2727. }
  2728. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2729. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2730. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2731. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2732. string names = "";
  2733. foreach (string clientName in nameArray)
  2734. {
  2735. names += clientName + ",";
  2736. }
  2737. if (!string.IsNullOrWhiteSpace(names))
  2738. {
  2739. string str = "--";
  2740. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2741. if (!string.IsNullOrEmpty(translateResult))
  2742. {
  2743. str = translateResult;
  2744. str = _airTicketResRep.Processing(str);
  2745. }
  2746. table.Range.Bookmarks["ClientName"].Text = str;
  2747. }
  2748. else
  2749. {
  2750. table.Range.Bookmarks["ClientName"].Text = "--";
  2751. }
  2752. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2753. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2754. table.Range.Bookmarks["JointTicket"].Text = "--";
  2755. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2756. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2757. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2758. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2759. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2760. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2761. }
  2762. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2763. //保存合并后的文档
  2764. string fileName = "AirItinerary/电子客票英文行程单_EN.docx";
  2765. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2766. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2767. return Ok(JsonView(true, "成功!", rst));
  2768. }
  2769. }
  2770. }
  2771. catch (Exception ex)
  2772. {
  2773. return Ok(JsonView(StatusCodes.Status400BadRequest, "程序错误!", ""));
  2774. throw;
  2775. }
  2776. }
  2777. #endregion
  2778. #region 团组增减款项 --> 其他款项
  2779. /// <summary>
  2780. /// 团组增减款项下拉框绑定
  2781. /// </summary>
  2782. /// <param name="dto"></param>
  2783. /// <returns></returns>
  2784. [HttpPost]
  2785. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2786. public async Task<IActionResult> DecreasePaymentsSelect(DecreasePaymentsDto dto)
  2787. {
  2788. #region 参数验证
  2789. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2790. if (dto.CTId < 1) return Ok(JsonView(false, "请传入有效的CTId参数!"));
  2791. #endregion
  2792. return Ok(await _decreasePaymentsRep.DecreasePaymentsSelect(dto));
  2793. }
  2794. /// <summary>
  2795. /// 根据团组Id查询团组增减款项
  2796. /// </summary>
  2797. /// <param name="dto"></param>
  2798. /// <returns></returns>
  2799. [HttpPost]
  2800. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2801. public async Task<IActionResult> DecreasePaymentsList(DecreasePaymentsListDto dto)
  2802. {
  2803. #region 参数验证
  2804. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2805. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  2806. #endregion
  2807. return Ok(await _decreasePaymentsRep.DecreasePaymentsList(dto));
  2808. }
  2809. /// <summary>
  2810. /// 团组增减款项操作(Status:1.新增,2.修改)
  2811. /// </summary>
  2812. /// <param name="dto"></param>
  2813. /// <returns></returns>
  2814. [HttpPost]
  2815. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2816. public async Task<IActionResult> OpDecreasePayments(DecreasePaymentsOpDto dto)
  2817. {
  2818. JsonView groupData = await _decreasePaymentsRep.OpDecreasePayments(dto);
  2819. if (groupData.Code != 200)
  2820. {
  2821. return Ok(JsonView(false, groupData.Msg));
  2822. }
  2823. #region 应用推送
  2824. int ccpId = (int)groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2825. int sign = (int)groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2826. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2827. #endregion
  2828. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2829. }
  2830. /// <summary>
  2831. /// 团组增减款项操作 删除
  2832. /// </summary>
  2833. /// <param name="dto"></param>
  2834. /// <returns></returns>
  2835. [HttpPost]
  2836. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2837. public async Task<IActionResult> DelDecreasePayments(DelBaseDto dto)
  2838. {
  2839. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  2840. if (dto.DeleteUserId < 1) return Ok(JsonView(false, "请传入有效的DeleteUserId参数!"));
  2841. var res = await _decreasePaymentsRep._Del(dto.Id, dto.DeleteUserId);
  2842. if (res.Code == 0)
  2843. {
  2844. return Ok(JsonView(true, "删除成功!"));
  2845. }
  2846. return Ok(JsonView(false, "删除失败!"));
  2847. }
  2848. /// <summary>
  2849. /// 根据团组增减款项Id查询
  2850. /// </summary>
  2851. /// <param name="dto"></param>
  2852. /// <returns></returns>
  2853. [HttpPost]
  2854. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2855. public async Task<IActionResult> QueryDecreasePaymentsById(DecreasePaymentsByIdDto dto)
  2856. {
  2857. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的数据Id!"));
  2858. return Ok(await _decreasePaymentsRep.QueryDecreasePaymentsById(dto));
  2859. }
  2860. /// <summary>
  2861. /// 查询供应商名称
  2862. /// </summary>
  2863. /// <param name="dto"></param>
  2864. /// <returns></returns>
  2865. [HttpPost]
  2866. public IActionResult QueryAssociateSupplier(AssociateSupplierDto dto)
  2867. {
  2868. var dbResult = _sqlSugar.Queryable<Grp_DecreasePayments>()
  2869. .Where(x => x.SupplierName.Contains(dto.param) && x.IsDel == 0).ToList()
  2870. ?? new List<Grp_DecreasePayments>();
  2871. dbResult = dbResult.Distinct(new
  2872. ProductComparer()).ToList();
  2873. var jw = JsonView(true, "success", dbResult.OrderByDescending(x => x.Id).Select(x => new
  2874. {
  2875. x.Id,
  2876. x.SupplierAddress,
  2877. x.SupplierArea,
  2878. x.SupplierContact,
  2879. x.SupplierContactNumber,
  2880. x.SupplierEmail,
  2881. x.SupplierName,
  2882. x.SupplierSocialAccount,
  2883. x.SupplierTypeId,
  2884. }).ToList());
  2885. return Ok(jw);
  2886. }
  2887. #endregion
  2888. #region 文件上传、删除
  2889. /// <summary>
  2890. /// region 文件上传 可以带参数
  2891. /// </summary>
  2892. /// <param name="file"></param>
  2893. /// <returns></returns>
  2894. [HttpPost]
  2895. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2896. public async Task<IActionResult> UploadProject(IFormFile file)
  2897. {
  2898. try
  2899. {
  2900. var TypeName = Request.Headers["TypeName"].ToString();
  2901. if (file != null)
  2902. {
  2903. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2904. //文件名称
  2905. string projectFileName = file.FileName;
  2906. //上传的文件的路径
  2907. string filePath = "";
  2908. if (TypeName == "A")//A代表团组增减款项
  2909. {
  2910. if (!Directory.Exists(fileDir))
  2911. {
  2912. Directory.CreateDirectory(fileDir);
  2913. }
  2914. //上传的文件的路径
  2915. filePath = fileDir + $@"\团组增减款项相关文件\{projectFileName}";
  2916. }
  2917. else if (TypeName == "B")//B代表商邀相关文件
  2918. {
  2919. if (!Directory.Exists(fileDir))
  2920. {
  2921. Directory.CreateDirectory(fileDir);
  2922. }
  2923. //上传的文件的路径
  2924. filePath = fileDir + $@"\商邀相关文件\{projectFileName}";
  2925. }
  2926. using (FileStream fs = System.IO.File.Create(filePath))
  2927. {
  2928. file.CopyTo(fs);
  2929. fs.Flush();
  2930. }
  2931. return Ok(JsonView(true, "上传成功!", projectFileName));
  2932. }
  2933. else
  2934. {
  2935. return Ok(JsonView(false, "上传失败!"));
  2936. }
  2937. }
  2938. catch (Exception ex)
  2939. {
  2940. return Ok(JsonView(false, "程序错误!"));
  2941. throw;
  2942. }
  2943. }
  2944. /// <summary>
  2945. /// 删除指定文件
  2946. /// </summary>
  2947. /// <param name="dto"></param>
  2948. /// <returns></returns>
  2949. [HttpPost]
  2950. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2951. public async Task<IActionResult> DelFile(DelFileDto dto)
  2952. {
  2953. try
  2954. {
  2955. var TypeName = Request.Headers["TypeName"].ToString();
  2956. string filePath = "";
  2957. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2958. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  2959. int id = 0;
  2960. if (TypeName == "A")
  2961. {
  2962. filePath = fileDir + "/团组增减款项相关文件/" + dto.fileName;
  2963. // 删除该文件
  2964. System.IO.File.Delete(filePath);
  2965. id = await _sqlSugar.Updateable<Grp_DecreasePayments>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_DecreasePayments { FilePath = "" }).ExecuteCommandAsync();
  2966. }
  2967. else if (TypeName == "B")
  2968. {
  2969. filePath = fileDir + "/商邀相关文件/" + dto.fileName;
  2970. // 删除该文件
  2971. System.IO.File.Delete(filePath);
  2972. id = await _sqlSugar.Updateable<Grp_InvitationOfficialActivities>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_InvitationOfficialActivities { Attachment = "" }).ExecuteCommandAsync();
  2973. }
  2974. if (id != 0)
  2975. {
  2976. return Ok(JsonView(true, "成功!"));
  2977. }
  2978. else
  2979. {
  2980. return Ok(JsonView(false, "失败!"));
  2981. }
  2982. }
  2983. catch (Exception ex)
  2984. {
  2985. return Ok(JsonView(false, "程序错误!"));
  2986. throw;
  2987. }
  2988. }
  2989. #endregion
  2990. #region 商邀费用录入
  2991. /// <summary>
  2992. /// 根据团组Id查询商邀费用列表
  2993. /// </summary>
  2994. /// <param name="dto"></param>
  2995. /// <returns></returns>
  2996. [HttpPost]
  2997. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2998. public async Task<IActionResult> InvitationOfficialActivitiesList(InvitationOfficialActivitiesListDto dto)
  2999. {
  3000. try
  3001. {
  3002. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesList(dto);
  3003. if (groupData.Code != 0)
  3004. {
  3005. return Ok(JsonView(false, groupData.Msg));
  3006. }
  3007. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3008. }
  3009. catch (Exception ex)
  3010. {
  3011. return Ok(JsonView(false, "程序错误!"));
  3012. throw;
  3013. }
  3014. }
  3015. //
  3016. /// <summary>
  3017. /// 商邀费用 Info Page 基础数据源
  3018. /// </summary>
  3019. /// <param name="dto"></param>
  3020. /// <returns></returns>
  3021. [HttpPost]
  3022. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3023. public async Task<IActionResult> InvitationOfficialActivityInitBasicData()
  3024. {
  3025. try
  3026. {
  3027. Result groupData = await _InvitationOfficialActivitiesRep._InitBasicData();
  3028. if (groupData.Code != 0)
  3029. {
  3030. return Ok(JsonView(false, groupData.Msg));
  3031. }
  3032. return Ok(JsonView(true, "操作成功", groupData.Data));
  3033. }
  3034. catch (Exception ex)
  3035. {
  3036. return Ok(JsonView(false, ex.Message));
  3037. throw;
  3038. }
  3039. }
  3040. /// <summary>
  3041. /// 根据商邀费用ID查询C表和商邀费用数据
  3042. /// </summary>
  3043. /// <param name="dto"></param>
  3044. /// <returns></returns>
  3045. [HttpPost]
  3046. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3047. public async Task<IActionResult> InvitationOfficialActivitiesById(InvitationOfficialActivitiesByIdDto dto)
  3048. {
  3049. try
  3050. {
  3051. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesById(dto);
  3052. if (groupData.Code != 0)
  3053. {
  3054. return Ok(JsonView(false, groupData.Msg));
  3055. }
  3056. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3057. }
  3058. catch (Exception ex)
  3059. {
  3060. return Ok(JsonView(false, ex.Message));
  3061. throw;
  3062. }
  3063. }
  3064. /// <summary>
  3065. /// 商邀费用录入操作(Status:1.新增,2.修改)
  3066. /// </summary>
  3067. /// <param name="dto"></param>
  3068. /// <returns></returns>
  3069. [HttpPost]
  3070. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3071. public async Task<IActionResult> OpInvitationOfficialActivities(OpInvitationOfficialActivitiesDto dto)
  3072. {
  3073. try
  3074. {
  3075. Result groupData = await _InvitationOfficialActivitiesRep.OpInvitationOfficialActivities(dto, _setDataRep.PostCurrencyByDiid);
  3076. if (groupData.Code != 0)
  3077. {
  3078. return Ok(JsonView(false, groupData.Msg));
  3079. }
  3080. #region 应用推送
  3081. try
  3082. {
  3083. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  3084. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  3085. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  3086. }
  3087. catch (Exception ex)
  3088. {
  3089. }
  3090. #endregion
  3091. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3092. }
  3093. catch (Exception ex)
  3094. {
  3095. return Ok(JsonView(false, "程序错误!"));
  3096. throw;
  3097. }
  3098. }
  3099. /// <summary>
  3100. /// 商邀删除
  3101. /// </summary>
  3102. /// <param name="dto"></param>
  3103. /// <returns></returns>
  3104. [HttpPost]
  3105. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3106. public async Task<IActionResult> DelInvitationOfficialActivities(DelBaseDto dto)
  3107. {
  3108. try
  3109. {
  3110. _sqlSugar.BeginTran();
  3111. var res1 = _sqlSugar.Updateable<Grp_InvitationOfficialActivities>()
  3112. .SetColumns(it => new Grp_InvitationOfficialActivities()
  3113. {
  3114. IsDel = 1,
  3115. DeleteUserId = dto.DeleteUserId,
  3116. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  3117. })
  3118. .Where(it => it.Id == dto.Id)
  3119. .ExecuteCommand();
  3120. if (res1 > 0)
  3121. {
  3122. int _diId = 0;
  3123. var _ioaInfo = _sqlSugar.Queryable<Grp_InvitationOfficialActivities>().Where(it => it.Id == dto.Id).First();
  3124. if (_ioaInfo != null)
  3125. {
  3126. _diId = _ioaInfo.DiId;
  3127. }
  3128. var res2 = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  3129. .SetColumns(a => new Grp_CreditCardPayment()
  3130. {
  3131. IsDel = 1,
  3132. DeleteUserId = dto.DeleteUserId,
  3133. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  3134. })
  3135. .Where(a => a.CId == dto.Id && a.DIId == _diId && a.CTable == 81)
  3136. .ExecuteCommand();
  3137. if (res2 > 0)
  3138. {
  3139. _sqlSugar.CommitTran();
  3140. return Ok(JsonView(true, "删除成功!"));
  3141. }
  3142. }
  3143. _sqlSugar.RollbackTran();
  3144. return Ok(JsonView(false, "删除失败"));
  3145. }
  3146. catch (Exception ex)
  3147. {
  3148. _sqlSugar.RollbackTran();
  3149. return Ok(JsonView(false, ex.Message));
  3150. }
  3151. }
  3152. /// <summary>
  3153. /// 团组模块文件上传
  3154. /// </summary>
  3155. /// <param name="dto"></param>
  3156. /// <returns></returns>
  3157. [HttpPost]
  3158. public IActionResult CommonSaveFile([FromForm] CommonSaveFileDto dto)
  3159. {
  3160. var jw = JsonView(false);
  3161. long M = 1024 * 1024;
  3162. if (dto.Files == null || dto.Files.Count == 0)
  3163. {
  3164. jw.Msg = "无文件信息!";
  3165. return Ok(jw);
  3166. }
  3167. if (dto.Files.Sum(x=>x.Length) > 20 * M)
  3168. {
  3169. jw.Msg = "文件大小超过20M!";
  3170. return Ok(jw);
  3171. }
  3172. //var nameSp = dto.File.FileName.Split(".");
  3173. //if (nameSp.Length < 2)
  3174. //{
  3175. // jw.Msg = "拓展名称有误!";
  3176. // return Ok(jw);
  3177. //}
  3178. //var existsName = new string[]{ "RAR", "ZIP", "ARJ","GZ","Z","7Z","TAR" };
  3179. //if (!existsName.Contains(nameSp[1].ToUpper()))
  3180. //{
  3181. // jw.Msg = $"请使用指定拓展名!({string.Join("-",existsName)})";
  3182. // return Ok(jw);
  3183. //}
  3184. var Ctable = _sqlSugar.Queryable<Sys_SetData>().First(x => x.STid == 16 && x.IsDel == 0 && x.Id == dto.Ctable);
  3185. if (Ctable == null)
  3186. {
  3187. jw.Msg = "Ctable指向有误!";
  3188. return Ok(jw);
  3189. }
  3190. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  3191. if (groupInfo == null)
  3192. {
  3193. jw.Msg = "团组信息不存在!";
  3194. return Ok(jw);
  3195. }
  3196. Ctable.Name = Regex.Replace(Ctable.Name, @"[^\w\.@-]", "",
  3197. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3198. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3199. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3200. var path = "\\GroupModelFiles\\" + groupInfo.TeamName + "\\" + Ctable.Name;
  3201. var fileBase = AppSettingsHelper.Get("GrpFileBasePath") + path;
  3202. try
  3203. {
  3204. if (!Directory.Exists(fileBase))
  3205. {
  3206. Directory.CreateDirectory(fileBase);
  3207. }
  3208. List<Grp_GroupModelFile> saveArr = new List<Grp_GroupModelFile>();
  3209. foreach (var fileStream in dto.Files)
  3210. {
  3211. var saveFilePath = fileBase + "\\" + fileStream.FileName;
  3212. Grp_GroupModelFile file = new Grp_GroupModelFile()
  3213. {
  3214. Cid = dto.Cid,
  3215. CreateTime = DateTime.Now,
  3216. CreateUserId = dto.Userid,
  3217. Ctable = dto.Ctable,
  3218. Diid = dto.Diid,
  3219. IsDel = 0,
  3220. FilePath = saveFilePath,
  3221. FileName = fileStream.FileName
  3222. };
  3223. using (FileStream fs = System.IO.File.Create(saveFilePath))
  3224. {
  3225. fileStream.CopyTo(fs);
  3226. fs.Flush();
  3227. }
  3228. saveArr.Add(file);
  3229. }
  3230. var addResult = _sqlSugar.Insertable<Grp_GroupModelFile>(saveArr).ExecuteCommand();
  3231. //url = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("GrpFileFtpPath") + path + "\\" + dto.File.FileName
  3232. jw = JsonView(true, "保存成功!", new
  3233. {
  3234. count = addResult,
  3235. filesName = saveArr.Select(x => x.FileName)
  3236. }) ;
  3237. }
  3238. catch (Exception ex)
  3239. {
  3240. jw = JsonView(false, $"保存失败! ({ex.Message}) ", new
  3241. {
  3242. count = 0,
  3243. filesName = new string[0],
  3244. }) ;
  3245. }
  3246. return Ok(jw);
  3247. }
  3248. /// <summary>
  3249. /// 查询各模块已保存文件
  3250. /// </summary>
  3251. /// <param name="dto"></param>
  3252. /// <returns></returns>
  3253. [HttpPost]
  3254. public IActionResult QueryGroupModelFile(QueryGroupModelFileDto dto)
  3255. {
  3256. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>()
  3257. .Where(x => x.IsDel == 0 && x.Cid == dto.Cid && x.Ctable == dto.Ctable && x.Diid == dto.Diid)
  3258. .WhereIF(dto.UserId != -1,x=>x.CreateUserId == dto.UserId)
  3259. .ToList();
  3260. return Ok(JsonView(true, "success", dbQuery.Select(x => new
  3261. {
  3262. x.FileName,
  3263. x.Id,
  3264. Url = AppSettingsHelper.Get("GrpFileBaseUrl") + System.Web.HttpUtility.UrlEncode(x.FilePath.Replace(AppSettingsHelper.Get("GrpFileBasePath"),AppSettingsHelper.Get("GrpFileFtpPath")), System.Text.Encoding.UTF8),
  3265. })));
  3266. }
  3267. /// <summary>
  3268. /// 下载该团组下的所有文件
  3269. /// </summary>
  3270. /// <param name="dto"></param>
  3271. /// <returns></returns>
  3272. [HttpPost]
  3273. public IActionResult ExportGroupZip(ExportGroupZipDto dto)
  3274. {
  3275. var jw = JsonView(false);
  3276. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.IsDel == 0 && x.Id == dto.Diid);
  3277. if (groupInfo == null)
  3278. {
  3279. jw.Msg = "团组信息不存在!";
  3280. return Ok(jw);
  3281. }
  3282. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid).ToList();
  3283. var isModule = Convert.ToBoolean(dto.isModule);
  3284. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  3285. IOOperatorHelper io = new IOOperatorHelper();
  3286. if (isModule)
  3287. {
  3288. var moduleGroup = dbQuery.GroupBy(x => x.Ctable);
  3289. foreach (var moduleArr in moduleGroup)
  3290. {
  3291. var key = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == moduleArr.Key && x.IsDel == 0);
  3292. key.Name = Regex.Replace(key.Name, @"[^\w\.@-]", "",
  3293. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3294. Dictionary<string, Stream> chiZips = new Dictionary<string, Stream>();
  3295. foreach (var item in moduleArr)
  3296. {
  3297. if (System.IO.File.Exists(item.FilePath))
  3298. {
  3299. using (FileStream fileStream = new FileStream(item.FilePath, FileMode.Open, FileAccess.Read))
  3300. {
  3301. byte[] bytes = new byte[fileStream.Length];
  3302. fileStream.Read(bytes, 0, bytes.Length);
  3303. fileStream.Close();
  3304. Stream stream = new MemoryStream(bytes);
  3305. chiZips.Add(item.FileName, stream);
  3306. }
  3307. }
  3308. }
  3309. if (chiZips.Count > 0)
  3310. {
  3311. var byts = io.ConvertZipStream(chiZips);
  3312. Stream stream = new MemoryStream(byts);
  3313. Zips.Add(key.Name+"_.zip", stream);
  3314. }
  3315. }
  3316. }
  3317. else
  3318. {
  3319. foreach (var item in dbQuery)
  3320. {
  3321. using (FileStream fileStream = new FileStream(item.FilePath, FileMode.Open, FileAccess.Read))
  3322. {
  3323. byte[] bytes = new byte[fileStream.Length];
  3324. fileStream.Read(bytes, 0, bytes.Length);
  3325. fileStream.Close();
  3326. Stream stream = new MemoryStream(bytes);
  3327. Zips.Add(item.FileName, stream);
  3328. }
  3329. }
  3330. }
  3331. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3332. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3333. if (Zips.Count > 0)
  3334. {
  3335. var byts = io.ConvertZipStream(Zips);
  3336. var path = "\\GroupModelFiles\\" + groupInfo.TeamName;
  3337. io.ByteToFile(byts, AppSettingsHelper.Get("GrpFileBasePath") + $"{path}\\{groupInfo.TeamName}_.Zip");
  3338. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("GrpFileBaseUrl") + $"{AppSettingsHelper.Get("GrpFileFtpPath")}{path}\\{groupInfo.TeamName}_.zip" });
  3339. }
  3340. else
  3341. {
  3342. jw.Msg = "暂无生成文件!";
  3343. }
  3344. return Ok(jw);
  3345. }
  3346. /// <summary>
  3347. /// 删除该团组下的指定文件
  3348. /// </summary>
  3349. /// <param name="dto"></param>
  3350. /// <returns></returns>
  3351. [HttpPost]
  3352. public IActionResult DeleteGroupFile(DeleteGroupFileDto dto)
  3353. {
  3354. var jw = JsonView(false);
  3355. var sing = _sqlSugar.Queryable<Grp_GroupModelFile>().First(x => x.Id == dto.Id && x.IsDel == 0);
  3356. if (sing == null)
  3357. {
  3358. jw.Msg = "暂无";
  3359. return Ok(jw);
  3360. }
  3361. if (System.IO.File.Exists(sing.FilePath))
  3362. {
  3363. try
  3364. {
  3365. System.IO.File.Delete(sing.FilePath);
  3366. }
  3367. catch (Exception ex)
  3368. {
  3369. jw.Msg = "删除失败!" + ex.Message;
  3370. return Ok(jw);
  3371. }
  3372. }
  3373. sing.IsDel = 1;
  3374. sing.DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  3375. sing.DeleteUserId = dto.UserId;
  3376. _sqlSugar.Updateable<Grp_GroupModelFile>(sing).ExecuteCommand();
  3377. jw = JsonView(true, "删除成功!");
  3378. return Ok(jw);
  3379. }
  3380. #endregion
  3381. #region 团组英文资料
  3382. /// <summary>
  3383. /// 查询团组英文所有资料
  3384. /// </summary>
  3385. /// <param name="dto"></param>
  3386. /// <returns></returns>
  3387. [HttpPost]
  3388. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3389. public async Task<IActionResult> QueryDelegationEnData(QueryDelegationEnDataDto dto)
  3390. {
  3391. try
  3392. {
  3393. Result groupData = await _delegationEnDataRep.QueryDelegationEnData(dto);
  3394. if (groupData.Code != 0)
  3395. {
  3396. return Ok(JsonView(false, groupData.Msg));
  3397. }
  3398. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3399. }
  3400. catch (Exception ex)
  3401. {
  3402. return Ok(JsonView(false, "程序错误!"));
  3403. throw;
  3404. }
  3405. }
  3406. /// <summary>
  3407. /// 团组英文资料操作(Status:1.新增,2.修改)
  3408. /// </summary>
  3409. /// <param name="dto"></param>
  3410. /// <returns></returns>
  3411. [HttpPost]
  3412. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3413. public async Task<IActionResult> OpDelegationEnData(OpDelegationEnDataDto dto)
  3414. {
  3415. try
  3416. {
  3417. Result groupData = await _delegationEnDataRep.OpDelegationEnData(dto);
  3418. if (groupData.Code != 0)
  3419. {
  3420. return Ok(JsonView(false, groupData.Msg));
  3421. }
  3422. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3423. }
  3424. catch (Exception ex)
  3425. {
  3426. return Ok(JsonView(false, "程序错误!"));
  3427. throw;
  3428. }
  3429. }
  3430. /// <summary>
  3431. /// 团组英文资料Id查询数据
  3432. /// </summary>
  3433. /// <param name="dto"></param>
  3434. /// <returns></returns>
  3435. [HttpPost]
  3436. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3437. public async Task<IActionResult> QueryDelegationEnDataById(QueryDelegationEnDataByIdDto dto)
  3438. {
  3439. try
  3440. {
  3441. Grp_DelegationEnData _DelegationEnData = await _sqlSugar.Queryable<Grp_DelegationEnData>().FirstAsync(it => it.Id == dto.Id && it.IsDel == 0);
  3442. if (_DelegationEnData != null)
  3443. {
  3444. return Ok(JsonView(true, "查询成功!", _DelegationEnData));
  3445. }
  3446. return Ok(JsonView(true, "暂无数据!", _DelegationEnData));
  3447. }
  3448. catch (Exception ex)
  3449. {
  3450. return Ok(JsonView(false, "程序错误!"));
  3451. throw;
  3452. }
  3453. }
  3454. /// <summary>
  3455. /// 团组英文资料删除
  3456. /// </summary>
  3457. /// <param name="dto"></param>
  3458. /// <returns></returns>
  3459. [HttpPost]
  3460. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3461. public async Task<IActionResult> DelDelegationEnData(DelBaseDto dto)
  3462. {
  3463. try
  3464. {
  3465. var res = await _delegationEnDataRep.SoftDeleteByIdAsync<Grp_DelegationEnData>(dto.Id.ToString(), dto.DeleteUserId);
  3466. if (!res)
  3467. {
  3468. return Ok(JsonView(false, "删除失败"));
  3469. }
  3470. return Ok(JsonView(true, "删除成功!"));
  3471. }
  3472. catch (Exception ex)
  3473. {
  3474. return Ok(JsonView(false, "程序错误!"));
  3475. throw;
  3476. }
  3477. }
  3478. #endregion
  3479. #region 导出邀请函
  3480. /// <summary>
  3481. /// 导出邀请函页面初始化
  3482. /// </summary>
  3483. /// <param name="dto"></param>
  3484. /// <returns></returns>
  3485. [HttpPost]
  3486. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3487. public async Task<IActionResult> QueryinvitationLetter(DecreasePaymentsListDto dto)
  3488. {
  3489. try
  3490. {
  3491. List<Grp_DelegationInfo> grp_Delegations = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(a => a.IsDel == 0).OrderBy(a => a.Id, OrderByType.Desc).ToList();
  3492. List<Crm_DeleClient> crm_Deles = new List<Crm_DeleClient>();
  3493. if (dto.DiId == 0)
  3494. {
  3495. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == grp_Delegations[0].Id && a.IsDel == 0).ToListAsync();
  3496. }
  3497. else
  3498. {
  3499. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == dto.DiId && a.IsDel == 0).ToListAsync();
  3500. }
  3501. return Ok(JsonView(true, "查询成功!", new
  3502. {
  3503. deleClient = crm_Deles,
  3504. delegations = grp_Delegations
  3505. }));
  3506. }
  3507. catch (Exception ex)
  3508. {
  3509. return Ok(JsonView(false, "程序错误!"));
  3510. throw;
  3511. }
  3512. }
  3513. /// <summary>
  3514. /// 导出邀请函
  3515. /// </summary>
  3516. /// <param name="dto"></param>
  3517. /// <returns></returns>
  3518. [HttpPost]
  3519. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3520. public async Task<IActionResult> invitationLetter(DecreasePaymentsListDto dto)
  3521. {
  3522. #region 参数验证
  3523. //if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  3524. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  3525. #endregion
  3526. try
  3527. {
  3528. Dictionary<string, string> transDic = new Dictionary<string, string>();
  3529. string sql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  3530. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  3531. From Grp_TourClientList tcl
  3532. Left Join
  3533. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  3534. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  3535. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  3536. From Crm_DeleClient dc
  3537. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  3538. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  3539. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  3540. Where dc.IsDel = 0) temp
  3541. On temp.DcId =tcl.ClientId
  3542. Where tcl.IsDel = 0 And tcl.DiId = {0}", dto.DiId);
  3543. var datas = _sqlSugar.SqlQueryable<TourClientListDetailsView>(sql).ToList();
  3544. List<string> texts = new List<string>();
  3545. if (datas.Count != 0)
  3546. {
  3547. foreach (TourClientListDetailsView item in datas)
  3548. {
  3549. if (!string.IsNullOrWhiteSpace(item.Pinyin))
  3550. {
  3551. transDic.Add(item.LastName + item.FirstName, item.Pinyin);
  3552. }
  3553. else
  3554. {
  3555. string name = item.LastName + item.FirstName;
  3556. texts.Add(name);
  3557. }
  3558. if (!string.IsNullOrEmpty(item.Job) && !texts.Contains(item.Job))
  3559. {
  3560. if (!transDic.ContainsKey(item.Job))
  3561. {
  3562. texts.Add(item.Job);
  3563. }
  3564. }
  3565. if (!string.IsNullOrEmpty(item.CompanyFullName))
  3566. {
  3567. texts.Add(item.CompanyFullName);
  3568. }
  3569. }
  3570. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  3571. if (transData.Count > 0)
  3572. {
  3573. foreach (TranslateResult item in transData)
  3574. {
  3575. if (!transDic.ContainsKey(item.Query))
  3576. {
  3577. transDic.Add(item.Query, item.Translation);
  3578. }
  3579. }
  3580. }
  3581. List<GuestList> list = new List<GuestList>();
  3582. foreach (TourClientListDetailsView dele in datas)
  3583. {
  3584. GuestList guestList = new GuestList();
  3585. if (!string.IsNullOrWhiteSpace(dele.Pinyin))
  3586. {
  3587. guestList.Name = dele.Pinyin;
  3588. }
  3589. else
  3590. {
  3591. string Name = transDic.Where(s => s.Key == dele.LastName + dele.FirstName).FirstOrDefault().Value;
  3592. guestList.Name = Name;
  3593. }
  3594. if (dele.Sex == 0)
  3595. {
  3596. guestList.Sex = "Male";
  3597. }
  3598. else if (dele.Sex == 1)
  3599. {
  3600. guestList.Sex = "Female";
  3601. }
  3602. guestList.DOB = dele.BirthDay.Replace('-', '.');
  3603. if (!string.IsNullOrEmpty(dele.Job))
  3604. {
  3605. guestList.Job = dele.Job;
  3606. }
  3607. list.Add(guestList);
  3608. }
  3609. //载入模板
  3610. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/邀请函模板0210.docx");
  3611. DocumentBuilder builder = new DocumentBuilder(doc);
  3612. //获取word里所有表格
  3613. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3614. //获取所填表格的序数
  3615. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  3616. var rowStart = tableOne.Rows[0]; //获取第1行
  3617. //循环赋值
  3618. for (int i = 0; i < list.Count; i++)
  3619. {
  3620. builder.MoveToCell(0, i + 1, 0, 0);
  3621. builder.Write(list[i].Name.ToString());
  3622. builder.MoveToCell(0, i + 1, 1, 0);
  3623. builder.Write(list[i].Sex.ToString());
  3624. builder.MoveToCell(0, i + 1, 2, 0);
  3625. builder.Write(list[i].DOB.ToString());
  3626. builder.MoveToCell(0, i + 1, 3, 0);
  3627. builder.Write(list[i].Job.ToString());
  3628. }
  3629. //删除多余行
  3630. while (tableOne.Rows.Count > list.Count + 1)
  3631. {
  3632. tableOne.Rows.RemoveAt(list.Count + 1);
  3633. }
  3634. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  3635. string fileName = "邀请函" + DateTime.Now.ToString("yyyy-MM-dd") + ".docx";
  3636. string filePath = fileDir + $@"商邀相关文件/{fileName}";
  3637. doc.Save(filePath);
  3638. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/GrpFile/商邀相关文件/" + fileName;
  3639. return Ok(JsonView(true, "操作成功!", Url));
  3640. }
  3641. else
  3642. {
  3643. return Ok(JsonView(false, "该团组客户名单暂未录入!"));
  3644. }
  3645. }
  3646. catch (Exception ex)
  3647. {
  3648. return Ok(JsonView(false, ex.Message));
  3649. throw;
  3650. }
  3651. }
  3652. #endregion
  3653. #region 团组经理模块 出入境费用
  3654. ///// <summary>
  3655. ///// 团组模块 - 出入境费用
  3656. ///// </summary>
  3657. ///// <returns></returns>
  3658. //[HttpPost]
  3659. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3660. //public async Task<IActionResult> SetEnterExitCostCurrencyChange()
  3661. //{
  3662. // try
  3663. // {
  3664. // var data = await _enterExitCostRep.SetEnterExitCostCurrencyChange();
  3665. // if (data.Code != 0)
  3666. // {
  3667. // return Ok(JsonView(false, data.Msg));
  3668. // }
  3669. // return Ok(JsonView(true, "查询成功!"));
  3670. // }
  3671. // catch (Exception ex)
  3672. // {
  3673. // return Ok(JsonView(false, ex.Message));
  3674. // throw;
  3675. // }
  3676. //}
  3677. /// <summary>
  3678. /// 团组模块 - 出入境费用 - 子项 地区更改为 nationalTravelFee 的id
  3679. /// </summary>
  3680. /// <returns></returns>
  3681. [HttpPost]
  3682. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3683. public async Task<IActionResult> SetDayAndCostAreaChange()
  3684. {
  3685. try
  3686. {
  3687. var nationalTravelFee = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  3688. var dayAndCost = await _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0).ToListAsync();
  3689. var unite = dayAndCost.Where(a => nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //交集
  3690. var merge = dayAndCost.Where(a => !nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //差集
  3691. foreach (var item in unite) //处理交集数据
  3692. {
  3693. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault().Id;
  3694. }
  3695. foreach (var item in merge) //处理差集数据
  3696. {
  3697. int nationalTravelFeeId = 0;
  3698. var cityData = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault();
  3699. if (cityData != null) nationalTravelFeeId = cityData.Id;
  3700. else
  3701. {
  3702. var countryData = nationalTravelFee.Where(it => it.Country.Trim() == item.Place.Trim()).FirstOrDefault();
  3703. if (countryData != null) nationalTravelFeeId = countryData.Id;
  3704. }
  3705. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFeeId;
  3706. }
  3707. //只更新dayAndCost 的 nationalTravelFeeId;
  3708. var result = _sqlSugar.Updateable(dayAndCost).UpdateColumns(it => new { it.NationalTravelFeeId }).ExecuteCommand();
  3709. if (result > 0) return Ok(JsonView(true, "nationalTravelFeeId列更新成功!"));
  3710. else return Ok(JsonView(false, "nationalTravelFeeId列更新失败!"));
  3711. }
  3712. catch (Exception ex)
  3713. {
  3714. return Ok(JsonView(false, ex.Message));
  3715. throw;
  3716. }
  3717. }
  3718. /// <summary>
  3719. /// 团组模块 - 出入境费用 - 基础数据源(团组名称/币种类型)
  3720. /// </summary>
  3721. /// <returns></returns>
  3722. [HttpPost]
  3723. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3724. public async Task<IActionResult> GetEnterExitCostDataSource(PortDtoBase dto)
  3725. {
  3726. try
  3727. {
  3728. var groupNameData = await _groupRepository.GetGroupNameList(new GroupNameDto { PortType = dto.PortType });
  3729. string sql = string.Format("Select * From Sys_SetData Where IsDel = 0");
  3730. //SetDataInfoView
  3731. var dataSource = await _sqlSugar.SqlQueryable<Sys_SetData>(sql).ToListAsync();
  3732. var currencyData = dataSource.Where(it => it.STid == 66).ToList(); //所有币种
  3733. List<SetDataInfoView> _CurrencyData = _mapper.Map<List<SetDataInfoView>>(currencyData);
  3734. var wordTypeData = dataSource.Where(it => it.STid == 72).ToList(); //三公费用-Word明细类型
  3735. List<SetDataInfoView> _WordTypeData = _mapper.Map<List<SetDataInfoView>>(wordTypeData);
  3736. var excelTypeData = dataSource.Where(it => it.STid == 73).ToList(); //三公费用-Excel明细类型
  3737. List<SetDataInfoView> _ExcelTypeData = _mapper.Map<List<SetDataInfoView>>(excelTypeData);
  3738. //默认币种显示
  3739. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3740. {
  3741. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 7.5000M },
  3742. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 8.0000M },
  3743. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 9.5000M },
  3744. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0500M },
  3745. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.9500M },
  3746. };
  3747. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3748. if (_currencyRate.Count > 0)
  3749. {
  3750. foreach (var item in _currencyInfos)
  3751. {
  3752. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3753. if (rateInfo != null)
  3754. {
  3755. decimal rate1 = Convert.ToDecimal(rateInfo.FSellPri) / 100.00M;
  3756. rate1 *= 1.035M;
  3757. item.Rate = Convert.ToDecimal(rate1.ToString("#0.00")) + 0.01M;
  3758. }
  3759. }
  3760. }
  3761. return Ok(JsonView(true, "查询成功!", new
  3762. {
  3763. GroupNameData = groupNameData.Data,
  3764. CurrencyData = _CurrencyData,
  3765. WordTypeData = _WordTypeData,
  3766. ExcelTypeData = _ExcelTypeData,
  3767. CurrencyInit = _currencyInfos
  3768. }));
  3769. }
  3770. catch (Exception ex)
  3771. {
  3772. return Ok(JsonView(false, ex.Message));
  3773. throw;
  3774. }
  3775. }
  3776. /// <summary>
  3777. /// 团组模块 - 出入境费用
  3778. /// 实时汇率 tips
  3779. /// 签证费用 tips
  3780. /// </summary>
  3781. /// <returns></returns>
  3782. [HttpPost]
  3783. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3784. public async Task<IActionResult> GetEnterExitCostCorrelationTips(EnterExitCostInfobyDiIdDto dto)
  3785. {
  3786. var groupInfo = await _sqlSugar.Queryable<Grp_DelegationInfo>().FirstAsync(it => it.Id == dto.DiId && it.IsDel == 0);
  3787. //默认币种显示
  3788. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3789. {
  3790. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 7.5000M },
  3791. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 8.0000M },
  3792. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 9.5000M },
  3793. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0500M },
  3794. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.9500M },
  3795. };
  3796. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3797. List<dynamic> reteInfos = new List<dynamic>();
  3798. if (_currencyRate.Count > 0)
  3799. {
  3800. foreach (var item in _currencyInfos)
  3801. {
  3802. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3803. if (rateInfo != null)
  3804. {
  3805. item.Rate = Convert.ToDecimal((Convert.ToDecimal(rateInfo.FSellPri == null ? 0.00M : rateInfo.FSellPri) / 100.00M).ToString("#0.0000"));
  3806. decimal rate1 = item.Rate;
  3807. rate1 *= 1.03M;
  3808. decimal rate2 = Convert.ToDecimal(rate1.ToString("#0.00")) + 0.01M;
  3809. reteInfos.Add(new
  3810. {
  3811. currCode = item.CurrencyCode,
  3812. currName = item.CurrencyName,
  3813. rate = rate2,
  3814. lastUpdateDt = rateInfo.Date + " " + rateInfo.Time
  3815. });
  3816. }
  3817. }
  3818. }
  3819. var visaData = await _visaFeeInfoRep.EntryAndExitTips(dto.DiId);
  3820. var airData = await _ticketBlackCodeRep.EntryAndExitTips(dto.DiId);
  3821. return Ok(JsonView(true, "查询成功!", new
  3822. {
  3823. //GroupNameData = groupNameData.Data,
  3824. visaData = visaData.Data,
  3825. airData = airData.Data,
  3826. reteInfos = reteInfos
  3827. }));
  3828. }
  3829. /// <summary>
  3830. /// 团组模块 - 出入境费用 - Info
  3831. /// </summary>
  3832. /// <returns></returns>
  3833. [HttpPost]
  3834. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3835. public async Task<IActionResult> GetEnterExitCostInfobyDiId(EnterExitCostInfobyDiIdDto dto)
  3836. {
  3837. try
  3838. {
  3839. var data = await _enterExitCostRep.GetEnterExitCostInfoByDiId(dto);
  3840. if (data.Code != 0)
  3841. {
  3842. return Ok(JsonView(false, data.Msg));
  3843. }
  3844. return Ok(JsonView(true, "查询成功!", data.Data));
  3845. }
  3846. catch (Exception ex)
  3847. {
  3848. return Ok(JsonView(false, ex.Message));
  3849. }
  3850. }
  3851. /// <summary>
  3852. /// 团组模块 - 出入境费用 - Add And Update
  3853. /// </summary>
  3854. /// <returns></returns>
  3855. [HttpPost]
  3856. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3857. public async Task<IActionResult> PostEnterExitCostOperate(EnterExitCostOperateDto dto)
  3858. {
  3859. try
  3860. {
  3861. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  3862. if (data.Code != 0)
  3863. {
  3864. return Ok(JsonView(false, data.Msg));
  3865. }
  3866. //生成默认文件pdf并且通知人员
  3867. var fileView = await GeneralMethod.EnterExitCostDownload(new EnterExitCostDownloadDto()
  3868. {
  3869. DiId = dto.DiId,
  3870. ExportType = 1,
  3871. SubTypeId = 1005
  3872. }, "pdf");
  3873. //发送通知
  3874. string fileUrl = (string)fileView.Data.GetType().GetProperty("Url").GetValue(fileView.Data, null);
  3875. int sign = (int)data.Data.GetType().GetProperty("sign").GetValue(data.Data, null);
  3876. string md5Sign = GeneralMethod.Encrypt($"{sign}&fileName={fileUrl}");
  3877. string url = string.Format("http://oa.pan-american-intl.com:4399/#/Sankunginfo?sign={0}&fileName={1}", sign,fileUrl);
  3878. await AppNoticeLibrary.SendUserMsg_GroupShare_ToGM(dto.DiId, new List<string>() { "208","233","21" }, dto.UserId, url);
  3879. return Ok(JsonView(true, data.Msg, data.Data));
  3880. }
  3881. catch (Exception ex)
  3882. {
  3883. return Ok(JsonView(false, ex.Message));
  3884. }
  3885. }
  3886. /// <summary>
  3887. /// 团组模块 - 出入境费用 - Confirm 费用
  3888. /// </summary>
  3889. /// <returns></returns>
  3890. [HttpPost]
  3891. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3892. public async Task<IActionResult> PostEnterExitCostIsConfirm(ConfirmCostDto dto)
  3893. {
  3894. //TODO:测试完毕需把对应的用户ID更改
  3895. //1、数据表添加字段
  3896. //2、更改字段接口()
  3897. var _view = await _enterExitCostRep.ConfirmCost(dto);
  3898. //3、确认成功 给财务发送消息
  3899. if (_view.Code == 200)
  3900. {
  3901. if (dto.Type == 1)
  3902. {
  3903. int diId = _enterExitCostRep._sqlSugar.Queryable<Grp_EnterExitCost>().Where(x => x.IsDel == 0 && x.Id == dto.Id).First()?.DiId ?? 0;
  3904. await AppNoticeLibrary.SendUserMsg_GroupShare_ToFinance(diId);
  3905. }
  3906. }
  3907. return Ok(_view);
  3908. }
  3909. /// <summary>
  3910. /// 团组模块 - 出入境费用 - File downlaod
  3911. /// </summary>
  3912. /// <param name="dto"></param>
  3913. /// <returns></returns>
  3914. [HttpPost]
  3915. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3916. public async Task<IActionResult> PostEnterExitCostDownload(EnterExitCostDownloadDto dto)
  3917. {
  3918. try
  3919. {
  3920. if (dto.DiId < 1)
  3921. {
  3922. return Ok(JsonView(false, "请传入有效的DiId参数;"));
  3923. }
  3924. if (dto.ExportType < 1)
  3925. {
  3926. return Ok(JsonView(false, "请传入有效的ExportType参数; 1 明细表 2 表格"));
  3927. }
  3928. if (dto.SubTypeId < 1)
  3929. {
  3930. return Ok(JsonView(false, @"请传入有效的SubTypeId参数;
  3931. 1 明细表 --> 1005(默认明细表) 1006(因公出国(境)经费测算明细表) 1007(四川省商务厅出国经费财政先行审核表)
  3932. 2 表格 --> 1008(派员单位出(境)任务和预算审批意见表) 1009(省级单位出(境)经费报销单)
  3933. 3 团组成员名单 1 团组成员名单"));
  3934. }
  3935. var _EnterExitCosts = _sqlSugar.Queryable<Grp_EnterExitCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  3936. var _DayAndCosts = _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  3937. if (_EnterExitCosts == null)
  3938. {
  3939. return Ok(JsonView(false, "该团组未填写出入境费用;"));
  3940. }
  3941. //数据源
  3942. List<Grp_DayAndCost> dac1 = _DayAndCosts.Where(it => it.Type == 1).ToList(); //住宿费
  3943. List<Grp_DayAndCost> dac2 = _DayAndCosts.Where(it => it.Type == 2).ToList(); //伙食费
  3944. List<Grp_DayAndCost> dac3 = _DayAndCosts.Where(it => it.Type == 3).ToList(); //公杂费
  3945. List<Grp_DayAndCost> dac4 = _DayAndCosts.Where(it => it.Type == 4).ToList(); //培训费
  3946. var _CurrDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  3947. var _DelegationInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == dto.DiId).First();
  3948. var DeleClientList = _sqlSugar.Queryable<Grp_TourClientList>()
  3949. .LeftJoin<Crm_DeleClient>((tcl, dc) => tcl.ClientId == dc.Id && dc.IsDel == 0)
  3950. .LeftJoin<Crm_CustomerCompany>((tcl, dc, cc) => dc.CrmCompanyId == cc.Id && dc.IsDel == 0)
  3951. .Where((tcl, dc, cc) => tcl.IsDel == 0 && tcl.DiId == dto.DiId)
  3952. .Select((tcl, dc, cc) => new
  3953. {
  3954. Name = dc.LastName + dc.FirstName,
  3955. Sex = dc.Sex,
  3956. Birthday = dc.BirthDay,
  3957. Company = cc.CompanyFullName,
  3958. Job = dc.Job
  3959. })
  3960. .ToList();
  3961. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  3962. var threeCodes = _sqlSugar.Queryable<Res_ThreeCode>().Where(it => it.IsDel == 0).ToList();
  3963. var placeData = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(it => it.IsDel == 0).ToList();
  3964. var rateDatas = await _EnterExitCosts.CurrencyRemark.SplitExchangeRate();
  3965. _DelegationInfo.VisitCountry = _DelegationInfo.VisitCountry.Replace("|", "、");
  3966. if (dto.ExportType == 1) //明细表
  3967. {
  3968. if (dto.SubTypeId == 1005) //1005(默认明细表)
  3969. {
  3970. //获取模板
  3971. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/出入境费用表模板.docx");
  3972. //载入模板
  3973. Document doc = new Document(tempPath);
  3974. DocumentBuilder builder = new DocumentBuilder(doc);
  3975. //利用键值对存放数据
  3976. Dictionary<string, string> dic = new Dictionary<string, string>();
  3977. decimal stayFeeTotal = _DayAndCosts.Where(it => it.Type == 1).Sum(it => it.SubTotal); // 住宿费
  3978. decimal mealsFeeTotal = _DayAndCosts.Where(it => it.Type == 2).Sum(it => it.SubTotal); // 伙食费费
  3979. decimal miscellaneousFeeTotal = _DayAndCosts.Where(it => it.Type == 3).Sum(it => it.SubTotal); // 公杂费
  3980. decimal tainFeeTotal = _DayAndCosts.Where(it => it.Type == 4).Sum(it => it.SubTotal); // 培训费
  3981. decimal insidePayTotal = _EnterExitCosts.InsidePay;
  3982. string row1_1 = "";
  3983. if (_EnterExitCosts.Visa > 0)
  3984. {
  3985. //insidePayTotal += _EnterExitCosts.Visa;
  3986. row1_1 = $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 人民币/人";
  3987. if (!string.IsNullOrEmpty(_EnterExitCosts.VisaRemark))
  3988. {
  3989. row1_1 += $"\t签证费用描述: : {_EnterExitCosts.VisaRemark} 人民币/人";
  3990. }
  3991. }
  3992. string row1_2 = "";
  3993. if (_EnterExitCosts.YiMiao > 0)
  3994. {
  3995. //insidePayTotal += _EnterExitCosts.YiMiao;
  3996. row1_2 += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")} 人民币/人";
  3997. }
  3998. if (_EnterExitCosts.HeSuan > 0)
  3999. {
  4000. //insidePayTotal += _EnterExitCosts.HeSuan;
  4001. row1_2 += $"核酸检测费:{_EnterExitCosts.HeSuan.ToString("#0.00")} 人民币/人";
  4002. }
  4003. if (_EnterExitCosts.Service > 0)
  4004. {
  4005. //insidePayTotal += _EnterExitCosts.Service;
  4006. row1_2 += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")} 人民币/人";
  4007. }
  4008. string row1_3 = "";
  4009. if (_EnterExitCosts.Safe > 0)
  4010. {
  4011. //insidePayTotal += _EnterExitCosts.Safe;
  4012. row1_3 += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")} 人民币/人";
  4013. }
  4014. if (_EnterExitCosts.Ticket > 0)
  4015. {
  4016. //insidePayTotal += _EnterExitCosts.Ticket;
  4017. row1_3 += $"参展门票:{_EnterExitCosts.Ticket.ToString("#0.00")} 人民币/人";
  4018. }
  4019. string row1 = "";
  4020. if (!string.IsNullOrEmpty(row1_1)) row1 += $"{row1_1}\r\n";
  4021. if (!string.IsNullOrEmpty(row1_2)) row1 += $"{row1_2}\r\n";
  4022. if (!string.IsNullOrEmpty(row1_3)) row1 += $"{row1_3}";
  4023. dic.Add("InsidePay", insidePayTotal.ToString("#0.00"));
  4024. dic.Add("Row1Str", row1);
  4025. dic.Add("OutsideJJ", _EnterExitCosts.OutsideJJPay.ToString("#0.00"));
  4026. dic.Add("OutsaideGW", _EnterExitCosts.OutsaideGWPay.ToString("#0.00"));
  4027. dic.Add("AirJJ", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4028. dic.Add("AirGW", _EnterExitCosts.AirGW.ToString("#0.00"));
  4029. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4030. dic.Add("SubZS", stayFeeTotal.ToString("#0.00"));
  4031. dic.Add("SubHS", mealsFeeTotal.ToString("#0.00"));
  4032. string miscellaneousFeeTotalStr = miscellaneousFeeTotal.ToString("#0.00");
  4033. dic.Add("SubGZF", miscellaneousFeeTotalStr);
  4034. //dic.Add("SubPX", tainFeeTotal.ToString("#0.00"));
  4035. decimal subJJC = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal + _EnterExitCosts.OutsideJJPay;
  4036. decimal subGWC = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal + _EnterExitCosts.OutsaideGWPay;
  4037. dic.Add("SubJJC", subJJC.ToString("#0.00"));
  4038. dic.Add("SubGWC", subGWC.ToString("#0.00"));
  4039. #region 填充word模板书签内容
  4040. foreach (var key in dic.Keys)
  4041. {
  4042. builder.MoveToBookmark(key);
  4043. builder.Write(dic[key]);
  4044. }
  4045. #endregion
  4046. #region 填充word表格内容
  4047. ////获读取指定表格方法二
  4048. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4049. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4050. for (int i = 0; i < dac1.Count; i++)
  4051. {
  4052. Grp_DayAndCost dac = dac1[i];
  4053. if (dac == null) continue;
  4054. builder.MoveToCell(0, i, 0, 0);
  4055. builder.Write("第" + dac.Days.ToString() + "晚:");
  4056. builder.MoveToCell(0, i, 1, 0);
  4057. //builder.Write(placeData.Find(it => it.Id == dac.NationalTravelFeeId)?.Country ?? "Unknown");
  4058. //builder.Write(dac.Place == null ? "" : dac.Place);
  4059. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4060. builder.MoveToCell(0, i, 2, 0);
  4061. builder.Write("费用标准:");
  4062. string curr = "";
  4063. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4064. if (currData != null)
  4065. {
  4066. curr = currData.Name;
  4067. }
  4068. builder.MoveToCell(0, i, 3, 0);
  4069. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4070. builder.MoveToCell(0, i, 4, 0);
  4071. builder.Write("费用小计:");
  4072. builder.MoveToCell(0, i, 5, 0);
  4073. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4074. }
  4075. //删除多余行
  4076. while (table1.Rows.Count > dac1.Count)
  4077. {
  4078. table1.Rows.RemoveAt(dac1.Count);
  4079. }
  4080. Aspose.Words.Tables.Table table2 = allTables[1] as Aspose.Words.Tables.Table;
  4081. for (int i = 0; i < dac2.Count; i++)
  4082. {
  4083. Grp_DayAndCost dac = dac2[i];
  4084. if (dac == null) continue;
  4085. builder.MoveToCell(1, i, 0, 0);
  4086. builder.Write("第" + dac.Days.ToString() + "天:");
  4087. builder.MoveToCell(1, i, 1, 0);
  4088. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4089. builder.MoveToCell(1, i, 2, 0);
  4090. builder.Write("费用标准:");
  4091. string curr = "";
  4092. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4093. if (currData != null)
  4094. {
  4095. curr = currData.Name;
  4096. }
  4097. builder.MoveToCell(1, i, 3, 0);
  4098. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4099. builder.MoveToCell(1, i, 4, 0);
  4100. builder.Write("费用小计:");
  4101. builder.MoveToCell(1, i, 5, 0);
  4102. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4103. }
  4104. //删除多余行
  4105. while (table2.Rows.Count > dac2.Count)
  4106. {
  4107. table2.Rows.RemoveAt(dac2.Count);
  4108. }
  4109. Aspose.Words.Tables.Table table3 = allTables[2] as Aspose.Words.Tables.Table;
  4110. for (int i = 0; i < dac3.Count; i++)
  4111. {
  4112. Grp_DayAndCost dac = dac3[i];
  4113. if (dac == null) continue;
  4114. builder.MoveToCell(2, i, 0, 0);
  4115. builder.Write("第" + dac.Days.ToString() + "天:");
  4116. builder.MoveToCell(2, i, 1, 0);
  4117. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4118. builder.MoveToCell(2, i, 2, 0);
  4119. builder.Write("费用标准:");
  4120. string curr = "";
  4121. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4122. if (currData != null)
  4123. {
  4124. curr = currData.Name;
  4125. }
  4126. builder.MoveToCell(2, i, 3, 0);
  4127. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4128. builder.MoveToCell(2, i, 4, 0);
  4129. builder.Write("费用小计:");
  4130. builder.MoveToCell(2, i, 5, 0);
  4131. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4132. }
  4133. //删除多余行
  4134. while (table3.Rows.Count > dac3.Count)
  4135. {
  4136. table3.Rows.RemoveAt(dac3.Count);
  4137. }
  4138. #endregion
  4139. //文件名
  4140. string strFileName = $"{_DelegationInfo.TeamName}出入境费用{Guid.NewGuid().ToString()}.docx";
  4141. AsposeHelper.removewatermark_v2180();
  4142. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4143. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4144. return Ok(JsonView(true, "成功", new { Url = url }));
  4145. }
  4146. else if (dto.SubTypeId == 1006)//1006(因公出国(境)经费测算明细表)
  4147. {
  4148. //获取模板
  4149. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/因公出国(境)经费测算明细表.docx");
  4150. //载入模板
  4151. Document doc = new Document(tempPath);
  4152. DocumentBuilder builder = new DocumentBuilder(doc);
  4153. Dictionary<string, string> dic = new Dictionary<string, string>();
  4154. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4155. {
  4156. List<string> list = new List<string>();
  4157. try
  4158. {
  4159. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4160. foreach (var item in spilitArr)
  4161. {
  4162. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4163. var depCode = spDotandEmpty[2].Substring(0, 3);
  4164. var arrCode = spDotandEmpty[2].Substring(3, 3);
  4165. string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  4166. arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  4167. list.Add(depName);
  4168. list.Add(arrName);
  4169. }
  4170. list = list.Distinct().ToList();
  4171. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4172. }
  4173. catch (Exception)
  4174. {
  4175. dic.Add("ReturnCode", "行程录入不正确!");
  4176. }
  4177. }
  4178. else
  4179. {
  4180. dic.Add("ReturnCode", "未录入行程!");
  4181. }
  4182. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4183. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4184. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4185. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4186. {
  4187. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4188. dic.Add("Day", sp.Days.ToString());
  4189. }
  4190. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4191. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4192. //var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  4193. //dic.Add("Names", Names);
  4194. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4195. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4196. decimal dac1totalPrice = 0.00M;
  4197. int accommodationStartIndex = 6, foodandotherStartIndex = 22;
  4198. foreach (var dac in dac1)
  4199. {
  4200. if (dac.SubTotal == 0.00M)
  4201. {
  4202. continue;
  4203. }
  4204. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  4205. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  4206. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4207. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4208. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  4209. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  4210. builder.Write(currency);//币种
  4211. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  4212. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4213. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  4214. builder.Write("");//人数
  4215. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  4216. builder.Write("");//天数
  4217. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  4218. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4219. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  4220. decimal rate = 0.00M;
  4221. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  4222. builder.Write(rate.ToString("#0.0000"));//汇率
  4223. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4224. decimal rbmPrice = dac.SubTotal;
  4225. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4226. accommodationStartIndex++;
  4227. dac1totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  4228. }
  4229. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4230. for (int i = 21; i > (dac1.Count == 0 ? 1 : dac1.Count) + 6; i--)
  4231. {
  4232. table1.Rows.RemoveAt(i - 1);
  4233. foodandotherStartIndex--;
  4234. }
  4235. if (dac2.Count == dac3.Count)//国家 币种 金额
  4236. {
  4237. for (int i = 0; i < dac2.Count; i++)
  4238. {
  4239. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4240. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4241. }
  4242. }
  4243. decimal dac2totalPrice = 0.00M;
  4244. foreach (var dac in dac2)
  4245. {
  4246. if (dac.SubTotal == 0)
  4247. {
  4248. continue;
  4249. }
  4250. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  4251. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4252. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  4253. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  4254. builder.Write(currency);//币种
  4255. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  4256. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4257. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  4258. builder.Write("");//人数
  4259. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  4260. builder.Write("");//天数
  4261. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  4262. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4263. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  4264. decimal rate = 0.00M;
  4265. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  4266. builder.Write(rate.ToString("#0.0000"));//汇率
  4267. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  4268. decimal rbmPrice = dac.SubTotal;
  4269. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4270. foodandotherStartIndex++;
  4271. dac2totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  4272. }
  4273. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  4274. for (int i = foodandotherStartIndex + (15 - dac2.Count); i > (dac2.Count == 0 ? 1 : 0) + foodandotherStartIndex; i--)
  4275. {
  4276. table1.Rows.RemoveAt(i - 1);
  4277. }
  4278. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4279. string otherFeeStr = "";
  4280. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  4281. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  4282. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  4283. if (otherFeeStr.Length > 0)
  4284. {
  4285. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  4286. otherFeeStr = $"({otherFeeStr})";
  4287. dic.Add("OtherFeeStr", otherFeeStr);
  4288. }
  4289. //总计
  4290. decimal allPrice = dac1totalPrice + dac2totalPrice + _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket;
  4291. //国际旅费
  4292. string outsideJJ = "";
  4293. string allPriceJJ = "";
  4294. if (_EnterExitCosts.SumJJC == 1)
  4295. {
  4296. outsideJJ = string.Format(@"经济舱:{0} 元/人", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4297. allPriceJJ = string.Format(@"经济舱:{0} 元/人", (allPrice + _EnterExitCosts.OutsideJJPay).ToString("#0.00"));
  4298. }
  4299. string outsideGW = "";
  4300. string allPriceGW = "";
  4301. if (_EnterExitCosts.SumGWC == 1)
  4302. {
  4303. outsideGW = string.Format(@"公务舱:{0} 元/人", _EnterExitCosts.AirGW.ToString("#0.00"));
  4304. allPriceGW = string.Format(@"公务舱:{0} 元/人", (allPrice + _EnterExitCosts.OutsaideGWPay).ToString("#0.00"));
  4305. }
  4306. if (_EnterExitCosts.SumJJC == 1 || _EnterExitCosts.SumGWC == 1)
  4307. {
  4308. string InTravelPriceStr = string.Format(@" ({0} {1})", outsideJJ, outsideGW);
  4309. dic.Add("InTravelPrice", InTravelPriceStr);
  4310. string FinalSumPriceStr = string.Format(@" ({0} {1})", allPriceJJ, allPriceGW);
  4311. dic.Add("FinalSumPrice", FinalSumPriceStr);
  4312. }
  4313. //dic.Add("VisaPay", _EnterExitCosts.Visa.ToString("#0.00"));
  4314. //dic.Add("SafePay", _EnterExitCosts.Safe.ToString("#0.00"));
  4315. //dic.Add("YiMiao", _EnterExitCosts.YiMiao.ToString("#0.00"));
  4316. foreach (var key in dic.Keys)
  4317. {
  4318. builder.MoveToBookmark(key);
  4319. builder.Write(dic[key]);
  4320. }
  4321. //模板文件名
  4322. string strFileName = $"{_DelegationInfo.TeamName}因公出国(境)经费测算明细表.docx";
  4323. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4324. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4325. return Ok(JsonView(true, "成功", new { Url = url }));
  4326. }
  4327. else if (dto.SubTypeId == 1007) //1007(四川省商务厅出国经费财政先行审核表)
  4328. {
  4329. //获取模板
  4330. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/四川省商务厅出国经费财政先行审核表.xls");
  4331. //载入模板
  4332. WorkbookDesigner designer = new WorkbookDesigner();
  4333. designer.Workbook = new Workbook(tempPath);
  4334. Dictionary<string, string> dic = new Dictionary<string, string>();
  4335. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4336. {
  4337. List<string> list = new List<string>();
  4338. try
  4339. {
  4340. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4341. foreach (var item in spilitArr)
  4342. {
  4343. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4344. var depCode = spDotandEmpty[2].Substring(0, 3);
  4345. var arrCode = spDotandEmpty[2].Substring(3, 3);
  4346. string depName = threeCodes.Find(it => it.Three.Equals(depCode))?.City ?? "Unknwon",
  4347. arrName = threeCodes.Find(it => it.Three.Equals(arrCode))?.City ?? "Unknown";
  4348. list.Add(depName);
  4349. list.Add(arrName);
  4350. }
  4351. list = list.Distinct().ToList();
  4352. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4353. }
  4354. catch (Exception)
  4355. {
  4356. dic.Add("ReturnCode", "行程录入不正确!");
  4357. }
  4358. }
  4359. else
  4360. {
  4361. dic.Add("ReturnCode", "未录入行程!");
  4362. }
  4363. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4364. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4365. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4366. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4367. {
  4368. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4369. dic.Add("Day", sp.Days.ToString());
  4370. }
  4371. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4372. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4373. var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  4374. designer.SetDataSource("ClientUnit", _DelegationInfo.ClientUnit);
  4375. designer.SetDataSource("VisitCountry", _DelegationInfo.VisitCountry);
  4376. designer.SetDataSource("Group", _DelegationInfo.TeamName);
  4377. designer.SetDataSource("ClientUnitTitle", _DelegationInfo.TeamName);
  4378. designer.SetDataSource("Name", Names);
  4379. designer.SetDataSource("VisitStartDate", dic["VisitStartDate"] + "-" + dic["VisitEndDate"]);
  4380. designer.SetDataSource("Day", dic["Day"] + "天");
  4381. designer.SetDataSource("ReturnCode", dic["ReturnCode"]);
  4382. designer.SetDataSource("ReturnCodeAir", dic["ReturnCodeAir"]);
  4383. int startIndex = 10;
  4384. const int startIndexcopy = 10;
  4385. if (dac2.Count == dac3.Count)//国家 币种 金额
  4386. {
  4387. for (int i = 0; i < dac2.Count; i++)
  4388. {
  4389. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4390. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4391. }
  4392. }
  4393. DataTable dtdac1 = new DataTable();
  4394. List<string> place = new List<string>();
  4395. dtdac1.Columns.AddRange(new DataColumn[] {
  4396. new DataColumn(){ ColumnName = "city"},
  4397. new DataColumn(){ ColumnName = "curr"},
  4398. new DataColumn(){ ColumnName = "criterion"},
  4399. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  4400. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  4401. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  4402. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  4403. new DataColumn(){ ColumnName = "costRMB", DataType = typeof(decimal) },
  4404. });
  4405. DataTable dtdac2 = new DataTable();
  4406. dtdac2.Columns.AddRange(new DataColumn[] {
  4407. new DataColumn(){ ColumnName = "city"},
  4408. new DataColumn(){ ColumnName = "curr"},
  4409. new DataColumn(){ ColumnName = "criterion"},
  4410. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  4411. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  4412. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  4413. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  4414. new DataColumn(){ ColumnName = "costRMB",DataType = typeof(decimal)},
  4415. });
  4416. dtdac1.TableName = "tb1";
  4417. dtdac2.TableName = "tb2";
  4418. decimal dac1totalPrice = 0.00M, dac2totalPrice = 0.00M;
  4419. foreach (var item in dac1)
  4420. {
  4421. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  4422. if (place.Contains(item.Place))
  4423. {
  4424. continue;
  4425. }
  4426. DataRow row = dtdac1.NewRow();
  4427. row["city"] = item.Place;
  4428. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  4429. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4430. row["curr"] = currency;
  4431. row["rate"] = rate.ToString("#0.0000");
  4432. row["criterion"] = item.Cost.ToString("#0.00");
  4433. row["number"] = 1;
  4434. row["day"] = dac1.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  4435. //row["costRMB"] = rbmPrice;
  4436. dtdac1.Rows.Add(row);
  4437. place.Add(item.Place);
  4438. }
  4439. place = new List<string>();
  4440. foreach (var item in dac2)
  4441. {
  4442. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  4443. if (place.Contains(item.Place))
  4444. {
  4445. continue;
  4446. }
  4447. DataRow row = dtdac2.NewRow();
  4448. row["city"] = item.Place;
  4449. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  4450. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4451. row["curr"] = currency;
  4452. row["rate"] = rate.ToString("#0.0000");
  4453. row["criterion"] = item.Cost.ToString("#0.00");
  4454. row["number"] = 1;
  4455. row["day"] = dac2.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  4456. //row["cost"] = item.SubTotal;
  4457. //row["costRMB"] = rbmPrice;
  4458. dtdac2.Rows.Add(row);
  4459. place.Add(item.Place);
  4460. //dac2totalPrice += rbmPrice;
  4461. }
  4462. dac1totalPrice = dac1.Sum(it => it.SubTotal);
  4463. dac2totalPrice = dac2.Sum(it => it.SubTotal);
  4464. designer.SetDataSource("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4465. designer.SetDataSource("dac2totalPrice", dac2totalPrice);
  4466. designer.SetDataSource("cityTranffic", @$"其中:国外城市间机票费: {_EnterExitCosts.CityTranffic.ToString("#0.00")} 元");
  4467. designer.SetDataSource("sumCityTranffic", @$"{_EnterExitCosts.CityTranffic.ToString("#0.00")} ");
  4468. string cell4Str = $" 4.国际旅费:经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 元/人,公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")} 元/人";
  4469. string cellStr = $" 5.其他费用(";
  4470. if (_EnterExitCosts.Visa > 0) cellStr += $"签证费:{_EnterExitCosts.Visa.ToString("#0.00")}元,";
  4471. if (_EnterExitCosts.YiMiao > 0) cellStr += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")}元,";
  4472. if (_EnterExitCosts.HeSuan > 0) cellStr += $"核酸费:{_EnterExitCosts.HeSuan.ToString("#0.00")}元,";
  4473. if (_EnterExitCosts.Safe > 0) cellStr += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")}元,";
  4474. if (_EnterExitCosts.Ticket > 0) cellStr += $"参展门票费:{_EnterExitCosts.Ticket.ToString("#0.00")}元,";
  4475. if (_EnterExitCosts.Service > 0) cellStr += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")}元,";
  4476. if (cellStr.Length > 8)
  4477. {
  4478. cellStr = cellStr.Substring(0, cellStr.Length - 1);
  4479. }
  4480. cellStr += ")";
  4481. decimal otherFee = _EnterExitCosts.Visa + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.Service;
  4482. decimal s = dac1totalPrice + dac2totalPrice + _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay + otherFee;
  4483. decimal pxFee = dac4.Sum(it => it.Cost);
  4484. decimal glvFee = _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay;
  4485. string celllastStr1 = "";
  4486. if (dac1totalPrice > 0) celllastStr1 += $"住宿费 {dac1totalPrice.ToString("#0.00")} 元";
  4487. if (dac2totalPrice > 0) celllastStr1 += $",伙食费和公杂费 {dac2totalPrice.ToString("#0.00")} 元";
  4488. if (pxFee > 0) celllastStr1 += $",培训费 {pxFee.ToString("#0.00")} 元";
  4489. celllastStr1 += $",国际旅费 元";
  4490. if (otherFee > 0) celllastStr1 += $",其他费用 {otherFee.ToString("#0.00")} 元";
  4491. string celllastStr = $" 经审核,{celllastStr1},本次出国经费预算合计为 元。其中:市本级安排 。";
  4492. designer.SetDataSource("cell4Str", cell4Str);
  4493. designer.SetDataSource("cellStr", cellStr);
  4494. designer.SetDataSource("cellSum", (_EnterExitCosts.Visa + _EnterExitCosts.Safe).ToString("#0.00"));
  4495. designer.SetDataSource("cellSum4", (_EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay).ToString("#0.00"));
  4496. designer.SetDataSource("celllastStr", celllastStr);
  4497. Workbook wb = designer.Workbook;
  4498. var sheet = wb.Worksheets[0];
  4499. //绑定datatable数据集
  4500. designer.SetDataSource(dtdac1);
  4501. designer.SetDataSource(dtdac2);
  4502. designer.Process();
  4503. var rowStart = dtdac1.Rows.Count;
  4504. while (rowStart > 0)
  4505. {
  4506. sheet.Cells[startIndex, 8].Formula = $"=G{startIndex + 1} * H{startIndex + 1}";
  4507. sheet.Cells[startIndex, 6].Formula = $"=E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4508. startIndex++;
  4509. rowStart--;
  4510. }
  4511. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + 1}: I{startIndex})";
  4512. startIndex += 1; //总计行
  4513. rowStart = dtdac2.Rows.Count;
  4514. while (rowStart > 0)
  4515. {
  4516. sheet.Cells[startIndex, 8].Formula = $"= G{startIndex + 1} * H{startIndex + 1}";
  4517. sheet.Cells[startIndex, 6].Formula = $"= E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4518. startIndex++;
  4519. rowStart--;
  4520. }
  4521. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + dtdac1.Rows.Count + 2}: I{startIndex})";
  4522. wb.CalculateFormula(true);
  4523. //模板文件名
  4524. string strFileName = $"{_DelegationInfo.TeamName}-四川省商务厅出国经费财政先行审核表{DateTime.Now.ToString("yyyyMMddHHmmss")}.xls"; ;//$".xls";
  4525. designer.Workbook.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4526. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4527. return Ok(JsonView(true, "成功", new { Url = url }));
  4528. }
  4529. else if (dto.SubTypeId == 1066) //成都市因公临时出国任务和预算审批意见表(外专培训团专用)
  4530. {
  4531. //获取模板
  4532. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/成都市因公临时出国任务和预算审批意见表.docx");
  4533. //载入模板
  4534. Document doc = new Document(tempPath);
  4535. DocumentBuilder builder = new DocumentBuilder(doc);
  4536. Dictionary<string, string> dic = new Dictionary<string, string>();
  4537. dic.Add("GroupName", _DelegationInfo.TeamName);
  4538. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4539. string missionLeader = ""; //团负责人默认接团客户名单第一个人
  4540. string missionLeaderJob = "";//负责人job
  4541. int groupNumber = 0; //团人数
  4542. if (DeleClientList.Count > 0)
  4543. {
  4544. missionLeader = DeleClientList[0]?.Name ?? "";
  4545. missionLeaderJob = DeleClientList[0]?.Job ?? "";
  4546. }
  4547. dic.Add("MissionLeader", missionLeader); //团负责人
  4548. dic.Add("MissionLeaderJob", missionLeaderJob); //团负责人job
  4549. dic.Add("GroupNumber", _DelegationInfo.VisitPNumber.ToString()); //团人数
  4550. #region MyRegion
  4551. //if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4552. //{
  4553. // List<string> list = new List<string>();
  4554. // try
  4555. // {
  4556. // var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4557. // foreach (var item in spilitArr)
  4558. // {
  4559. // var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4560. // var depCode = spDotandEmpty[2].Substring(0, 3);
  4561. // var arrCode = spDotandEmpty[2].Substring(3, 3);
  4562. // string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  4563. // arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  4564. // list.Add(depName);
  4565. // list.Add(arrName);
  4566. // }
  4567. // list = list.Distinct().ToList();
  4568. // dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4569. // }
  4570. // catch (Exception)
  4571. // {
  4572. // dic.Add("ReturnCode", "行程录入不正确!");
  4573. // }
  4574. //}
  4575. //else
  4576. //{
  4577. // dic.Add("ReturnCode", "未录入行程!");
  4578. //}
  4579. List<string> countrys = _groupRepository.GroupSplitCountry(_DelegationInfo.VisitCountry);
  4580. dic.Add("ReturnCode", string.Join("、", countrys));
  4581. #endregion
  4582. //dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4583. //dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4584. //dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4585. //if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4586. //{
  4587. // TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4588. // dic.Add("Day", sp.Days.ToString());
  4589. //}
  4590. dic.Add("Day", _DelegationInfo.VisitDays.ToString());
  4591. dic.Add("CultivateDay", dac4.Count.ToString()); //培训天数
  4592. // dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4593. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4594. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4595. //培训人员名单
  4596. int cultivateRowIndex = 7;
  4597. foreach (var item in DeleClientList)
  4598. {
  4599. builder.MoveToCell(0, cultivateRowIndex, 0, 0);
  4600. builder.Write(item.Name);
  4601. builder.MoveToCell(0, cultivateRowIndex, 1, 0);
  4602. builder.Write(item.Sex == 0 ? "男" : item.Sex == 1 ? "女" : "");
  4603. builder.MoveToCell(0, cultivateRowIndex, 2, 0);
  4604. string birthDay = "";
  4605. if (item.Birthday != null)
  4606. {
  4607. DateTime dt = Convert.ToDateTime(item.Birthday);
  4608. birthDay = $"{dt.Year}.{dt.Month}";
  4609. }
  4610. builder.Write(birthDay);
  4611. builder.MoveToCell(0, cultivateRowIndex, 3, 0);
  4612. builder.Write(item.Company);
  4613. builder.MoveToCell(0, cultivateRowIndex, 4, 0);
  4614. builder.Write(item.Job);
  4615. cultivateRowIndex++;
  4616. }
  4617. //删除多余行
  4618. //cultivateRowIndex -= 2;
  4619. int delRows = 10 + 7 - cultivateRowIndex;
  4620. if (delRows > 0)
  4621. {
  4622. for (int i = 0; i < delRows; i++)
  4623. {
  4624. table1.Rows.RemoveAt(cultivateRowIndex);
  4625. //cultivateRowIndex++;
  4626. }
  4627. }
  4628. decimal hotelFeeTotal = dac1.Sum(it => it.SubTotal);//住宿费
  4629. dic.Add("HotelFeeTotal", hotelFeeTotal.ToString("#0.00"));
  4630. decimal mealsFeeTotal = dac2.Sum(it => it.SubTotal);//伙食费
  4631. dic.Add("MealsFeeTotal", mealsFeeTotal.ToString("#0.00"));
  4632. decimal miscellaneousFeeTotal = dac3.Sum(it => it.SubTotal);//公杂费
  4633. dic.Add("MiscellaneousFeeTotal", miscellaneousFeeTotal.ToString("#0.00"));
  4634. decimal trainingFeeTotal = dac4.Sum(it => it.SubTotal);//培训费
  4635. dic.Add("TrainingFeeTotal", trainingFeeTotal.ToString("#0.00"));
  4636. decimal cityTranfficFeeToatal = _EnterExitCosts.CityTranffic; //城市区间交通费
  4637. dic.Add("CityTranfficFeeToatal", cityTranfficFeeToatal.ToString("#0.00"));//
  4638. //其他费用
  4639. decimal otherFeeTotal = _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Service;
  4640. dic.Add("OtherFeeTotal", otherFeeTotal.ToString("#0.00"));
  4641. //其他费用合计
  4642. decimal _otherFeeTotal = hotelFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + trainingFeeTotal + cityTranfficFeeToatal + otherFeeTotal;
  4643. decimal _jjcFeeToatal = _EnterExitCosts.AirJJ + _otherFeeTotal; //经济舱
  4644. decimal _gwcFeeToatal = _EnterExitCosts.AirGW + _otherFeeTotal; //公务舱
  4645. //公务舱合计
  4646. //国际旅费
  4647. string outsideJJ = "";
  4648. string allPriceJJ = "";
  4649. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 0)
  4650. {
  4651. dic.Add("AirFeeTotal", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4652. dic.Add("FeeTotal", _jjcFeeToatal.ToString("#0.00"));
  4653. }
  4654. if (_EnterExitCosts.SumGWC == 1 && _EnterExitCosts.SumJJC == 0)
  4655. {
  4656. dic.Add("AirFeeTotal", _EnterExitCosts.AirGW.ToString("#0.00"));
  4657. dic.Add("FeeTotal", _gwcFeeToatal.ToString("#0.00"));
  4658. }
  4659. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 1)
  4660. {
  4661. string airFeeTotalStr = string.Format(@$"经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")}");
  4662. dic.Add("AirFeeTotal", airFeeTotalStr);
  4663. string feeTotalStr = string.Format(@$"经济舱:{_jjcFeeToatal.ToString("#0.00")} 公务舱:{_gwcFeeToatal.ToString("#0.00")}");
  4664. dic.Add("FeeTotal", feeTotalStr);
  4665. }
  4666. foreach (var key in dic.Keys)
  4667. {
  4668. builder.MoveToBookmark(key);
  4669. builder.Write(dic[key]);
  4670. }
  4671. //模板文件名
  4672. string strFileName = $"{_DelegationInfo.TeamName}-成都市因公临时出国任务和预算审批意见表(外专培训团专用).docx";
  4673. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4674. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4675. return Ok(JsonView(true, "成功", new { Url = url }));
  4676. }
  4677. }
  4678. else if (dto.ExportType == 2) //表格
  4679. {
  4680. //利用键值对存放数据
  4681. Dictionary<string, string> dic = new Dictionary<string, string>();
  4682. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4683. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4684. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4685. dic.Add("Day", sp.Days.ToString());
  4686. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4687. if (dto.SubTypeId == 1008) //1008(派员单位出(境)任务和预算审批意见表)
  4688. {
  4689. //获取模板
  4690. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/派员单位出(境)任务和预算审批意见表.docx");
  4691. //载入模板
  4692. Document doc = new Document(tempPath);
  4693. DocumentBuilder builder = new DocumentBuilder(doc);
  4694. dic.Add("TeamName", _DelegationInfo.TeamName);
  4695. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4696. //dic.Add("TellPhone", _DelegationInfo.TellPhone);
  4697. string missionLeaderName = "",
  4698. missionLeaderJob = "";
  4699. if (DeleClientList.Count > 0)
  4700. {
  4701. missionLeaderName = DeleClientList[0].Name;
  4702. missionLeaderJob = DeleClientList[0].Job;
  4703. }
  4704. dic.Add("MissionLeaderName", missionLeaderName);
  4705. dic.Add("MissionLeaderJob", missionLeaderJob);
  4706. dic.Add("VisitPNumber", _DelegationInfo.VisitPNumber.ToString());
  4707. dic.Add("VisitPurpose", _DelegationInfo.VisitPurpose);
  4708. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4709. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4710. int rowCount = 10;//总人数行
  4711. int startRowIndex = 7; //起始行
  4712. for (int i = 0; i < DeleClientList.Count; i++)
  4713. {
  4714. builder.MoveToCell(0, startRowIndex, 0, 0);
  4715. builder.Write(DeleClientList[i].Name); //出国人员姓名
  4716. builder.MoveToCell(0, startRowIndex, 1, 0);
  4717. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  4718. builder.Write(sex);//性别
  4719. builder.MoveToCell(0, startRowIndex, 2, 0);
  4720. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));//出生年月
  4721. builder.MoveToCell(0, startRowIndex, 3, 0);
  4722. builder.Write(DeleClientList[i].Company);//工作单位
  4723. builder.MoveToCell(0, startRowIndex, 4, 0);
  4724. builder.Write(DeleClientList[i].Job);//职务及级别
  4725. builder.MoveToCell(0, startRowIndex, 5, 0);
  4726. builder.Write("");//人员属性
  4727. builder.MoveToCell(0, startRowIndex, 6, 0);
  4728. builder.Write("");//上次出国时间
  4729. startRowIndex++;
  4730. }
  4731. int nullRow = rowCount - DeleClientList.Count;//空行
  4732. for (int i = 0; i < nullRow; i++)
  4733. {
  4734. table1.Rows.Remove(table1.Rows[startRowIndex]);
  4735. }
  4736. foreach (var key in dic.Keys)
  4737. {
  4738. builder.MoveToBookmark(key);
  4739. builder.Write(dic[key]);
  4740. }
  4741. //模板文件名
  4742. string strFileName = $"派员单位出(境)任务和预算审批意见表.docx";
  4743. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4744. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4745. return Ok(JsonView(true, "成功", new { Url = url }));
  4746. }
  4747. else if (dto.SubTypeId == 1009)//1009(省级单位出(境)经费报销单)
  4748. {
  4749. //获取模板
  4750. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/省级单位出(境)经费报销单.docx");
  4751. //载入模板
  4752. Document doc = new Document(tempPath);
  4753. DocumentBuilder builder = new DocumentBuilder(doc);
  4754. dic.Add("GroupClient", _DelegationInfo.ClientUnit);
  4755. var Names = string.Join("、", DeleClientList.Select(x => x.Name)).TrimEnd('、');
  4756. dic.Add("Names", Names);
  4757. int accommodationRows = 12, foodandotherRows = 12;
  4758. var Dac1currCn = dac1.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4759. var Dac2currCn = dac2.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4760. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4761. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4762. int accommodationStartIndex = 6;
  4763. decimal dac1totalPrice = 0.00M;
  4764. foreach (var dac in dac1)
  4765. {
  4766. if (dac.SubTotal == 0)
  4767. {
  4768. continue;
  4769. }
  4770. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  4771. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  4772. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4773. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  4774. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  4775. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  4776. builder.Write(currency);//币种
  4777. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  4778. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4779. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  4780. builder.Write("");//人数
  4781. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  4782. builder.Write("");//天数
  4783. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  4784. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4785. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  4786. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4787. builder.Write(rate.ToString("#0.0000"));//汇率
  4788. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4789. decimal rbmPrice = rate * dac.SubTotal;
  4790. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4791. accommodationStartIndex++;
  4792. dac1totalPrice += rbmPrice;
  4793. }
  4794. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4795. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4796. builder.Write("小计");
  4797. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4798. builder.Write(dac1totalPrice.ToString("#0.00"));
  4799. accommodationStartIndex++;
  4800. int nullRow = accommodationRows - dac1.Count;
  4801. //删除空行
  4802. //if (nullRow > 0)
  4803. //{
  4804. // int rowIndex = accommodationStartIndex;
  4805. // for (int i = 0; i < nullRow; i++)
  4806. // {
  4807. // Row row = table1.Rows[rowIndex];
  4808. // row.Remove();
  4809. // rowIndex++;
  4810. // }
  4811. //}
  4812. if (dac2.Count == dac3.Count)//国家 币种 金额
  4813. {
  4814. for (int i = 0; i < dac2.Count; i++)
  4815. {
  4816. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4817. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4818. }
  4819. }
  4820. int foodandotherStartIndex = 19;//
  4821. decimal dac2totalPrice = 0.00M;
  4822. foreach (var dac in dac2)
  4823. {
  4824. if (dac.SubTotal == 0)
  4825. {
  4826. continue;
  4827. }
  4828. //foodandotherStartIndex = 12;
  4829. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  4830. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  4831. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  4832. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  4833. builder.Write(currency);//币种
  4834. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  4835. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4836. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  4837. builder.Write("");//人数
  4838. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  4839. builder.Write("");//天数
  4840. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  4841. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4842. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  4843. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4844. builder.Write(rate.ToString("#0.0000"));//汇率
  4845. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  4846. decimal rbmPrice = rate * dac.SubTotal;
  4847. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4848. foodandotherStartIndex++;
  4849. dac2totalPrice += rbmPrice;
  4850. }
  4851. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  4852. //删除空行
  4853. if (dac2.Count < foodandotherRows)
  4854. {
  4855. //int nullRow = accommodationRows - dac2.Count;
  4856. //while (table2.Rows.Count > dac2.Count)
  4857. //{
  4858. // table2.Rows.RemoveAt(dac2.Count);
  4859. //}
  4860. }
  4861. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4862. string otherFeeStr = "";
  4863. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  4864. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  4865. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  4866. if (otherFeeStr.Length > 0)
  4867. {
  4868. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  4869. otherFeeStr = $"({otherFeeStr})";
  4870. dic.Add("OtherFeeStr", otherFeeStr);
  4871. }
  4872. foreach (var key in dic.Keys)
  4873. {
  4874. builder.MoveToBookmark(key);
  4875. builder.Write(dic[key]);
  4876. }
  4877. //模板文件名
  4878. string strFileName = $"省级单位出(境)经费报销单.docx";
  4879. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4880. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4881. return Ok(JsonView(true, "成功", new { Url = url }));
  4882. }
  4883. }
  4884. else if (dto.ExportType == 3)
  4885. {
  4886. if (dto.SubTypeId == 1) //团组成员名单
  4887. {
  4888. if (DeleClientList.Count < 1)
  4889. {
  4890. return Ok(JsonView(false, "团组成员暂未录入!!!"));
  4891. }
  4892. //获取模板
  4893. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/dwon_团组人员列表模板.doc");
  4894. //载入模板
  4895. Document doc = new Document(tempPath);
  4896. DocumentBuilder builder = new DocumentBuilder(doc);
  4897. //获取word里所有表格
  4898. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4899. //获取所填表格的序数
  4900. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  4901. var rowStart = tableOne.Rows[0]; //获取第1行
  4902. //循环赋值
  4903. for (int i = 0; i < DeleClientList.Count; i++)
  4904. {
  4905. builder.MoveToCell(0, i + 1, 0, 0);
  4906. builder.Write(DeleClientList[i].Name);
  4907. builder.MoveToCell(0, i + 1, 1, 0);
  4908. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  4909. builder.Write(sex);
  4910. builder.MoveToCell(0, i + 1, 2, 0);
  4911. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));
  4912. builder.MoveToCell(0, i + 1, 3, 0);
  4913. builder.Write(DeleClientList[i].Company);
  4914. builder.MoveToCell(0, i + 1, 4, 0);
  4915. builder.Write(DeleClientList[i].Job);
  4916. }
  4917. //删除多余行
  4918. while (tableOne.Rows.Count > DeleClientList.Count + 1)
  4919. {
  4920. tableOne.Rows.RemoveAt(DeleClientList.Count + 1);
  4921. }
  4922. string strFileName = $"{_DelegationInfo.TeamName}组团人员名单({DateTime.Now.ToString("yyyyMMddHHmmss")}).doc";
  4923. //C:/Server/File/OA2023/Office/Word/EnterExitCost/File/
  4924. //C:\Server\File\OA2023\Office\Word\EnterExitCost\File\
  4925. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4926. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4927. return Ok(JsonView(true, "成功", new { Url = url }));
  4928. }
  4929. }
  4930. return Ok(JsonView(false, "操作失败!"));
  4931. }
  4932. catch (Exception ex)
  4933. {
  4934. return Ok(JsonView(false, ex.Message));
  4935. }
  4936. }
  4937. /// <summary>
  4938. /// 获取三公费用标准city
  4939. /// </summary>
  4940. /// <param name="placeData"></param>
  4941. /// <param name="nationalTravelFeeId"></param>
  4942. /// <returns></returns>
  4943. private string GetEnterExitCostExportCity(List<Grp_NationalTravelFee> placeData, int nationalTravelFeeId)
  4944. {
  4945. string _city = string.Empty;
  4946. if (placeData.Count < 1) return _city;
  4947. var data = placeData.Find(it => it.Id == nationalTravelFeeId);
  4948. if (data == null) return _city;
  4949. string country = data.Country;
  4950. string city = data.City;
  4951. if (city.Contains("其他城市") || city.Contains("所有城市")) _city = $"{country}-{city}";
  4952. else _city = city;
  4953. return _city;
  4954. }
  4955. /// <summary>
  4956. /// 团组模块 - 出入境费用 - 明细表导出
  4957. /// </summary>
  4958. /// <returns></returns>
  4959. [HttpPost]
  4960. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4961. public async Task<IActionResult> PostEnterExitCostExportDetailsList(EnterExitCostOperateDto dto)
  4962. {
  4963. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  4964. if (data.Code != 0)
  4965. {
  4966. return Ok(JsonView(false, data.Msg));
  4967. }
  4968. return Ok(JsonView(true, data.Msg, data.Data));
  4969. }
  4970. /// <summary>
  4971. /// 团组模块 - 出入境费用 - 一键清空
  4972. /// </summary>
  4973. /// <returns></returns>
  4974. [HttpPost]
  4975. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4976. public async Task<IActionResult> PostEnterExitCostOneClickClear(EnterExitCostOneClickClearDto dto)
  4977. {
  4978. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数;"));
  4979. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数;"));
  4980. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数;"));
  4981. var _view = await _enterExitCostRep._OneClickClear(dto.Id, dto.DiId, dto.UserId);
  4982. if (_view.Code == 0)
  4983. {
  4984. return Ok(JsonView(true, "操作成功"));
  4985. }
  4986. return Ok(JsonView(false, "操作失败"));
  4987. }
  4988. /// <summary>
  4989. /// 团组模块 - 出入境费用 - 子项删除
  4990. /// </summary>
  4991. /// <returns></returns>
  4992. [HttpPost]
  4993. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4994. public async Task<IActionResult> PostEnterExitCostSubItemDel(EnterExitCostSubItemDelDto dto)
  4995. {
  4996. try
  4997. {
  4998. var data = await _enterExitCostRep.PostEnterExitCostSubItemDel(dto);
  4999. if (data.Code != 0)
  5000. {
  5001. return Ok(JsonView(false, data.Msg));
  5002. }
  5003. return Ok(JsonView(true, "操作成功!", data.Data));
  5004. }
  5005. catch (Exception ex)
  5006. {
  5007. return Ok(JsonView(false, ex.Message));
  5008. }
  5009. }
  5010. /// <summary>
  5011. /// 团组模块 - 出入境国家费用标准 List
  5012. /// </summary>
  5013. /// <returns></returns>
  5014. [HttpPost]
  5015. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5016. public async Task<IActionResult> GetNationalTravelFeeData(PortDtoBase dto)
  5017. {
  5018. try
  5019. {
  5020. Stopwatch sw = new Stopwatch();
  5021. sw.Start();
  5022. string nationalTravelFeeSql = string.Format(@"Select ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.* From Grp_NationalTravelFee gntf
  5023. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5024. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5025. Where gntf.Isdel = 0");
  5026. var nationalTravelFeeData = _sqlSugar.SqlQueryable<NationalTravelFeeInfoView>(nationalTravelFeeSql).ToList();
  5027. //var nationalTravel = nationalTravelFeeData.GroupBy(it => it.Country).Select(it1 => it1.FirstOrDefault());
  5028. //List<dynamic> nationalTravelFeeData1 = new List<dynamic>();
  5029. //foreach (var item in nationalTravel)
  5030. //{
  5031. // var cityData = nationalTravelFeeData.Where(it => it.Country == item.Country).ToList();
  5032. // var otherData = cityData.Where(it => it.City.Contains("其他城市")).FirstOrDefault();
  5033. // if (otherData != null)
  5034. // {
  5035. // cityData.Remove(otherData);
  5036. // cityData.Add(otherData);
  5037. // }
  5038. // nationalTravelFeeData1.Add(new
  5039. // {
  5040. // Country = item.Country,
  5041. // CityData = cityData
  5042. // });
  5043. //}
  5044. sw.Stop();
  5045. return Ok(JsonView(true, "查询成功!耗时:" + sw.ElapsedMilliseconds + "ms", nationalTravelFeeData));
  5046. }
  5047. catch (Exception ex)
  5048. {
  5049. return Ok(JsonView(false, ex.Message));
  5050. throw;
  5051. }
  5052. }
  5053. /// <summary>
  5054. /// 团组模块 - 出入境国家费用标准 Page List Data Source
  5055. /// </summary>
  5056. /// <returns></returns>
  5057. [HttpPost]
  5058. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5059. public async Task<IActionResult> GetNationalTravelFeePageDataSource()
  5060. {
  5061. string sql = string.Format(@"Select * From Grp_NationalTravelFee Where Isdel = 0 ");
  5062. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<Grp_NationalTravelFee>(sql).ToListAsync();
  5063. List<string> countryData = new List<string>();
  5064. countryData.AddRange(nationalTravelFeeData.Select(it => it.Country).ToList());
  5065. countryData = countryData.Distinct().ToList();
  5066. List<dynamic> dataSource = new List<dynamic>();
  5067. foreach (var item in countryData)
  5068. {
  5069. List<string> cityData1 = new List<string>();
  5070. cityData1 = nationalTravelFeeData.Where(it => it.Country == item).Select(it => it.City).ToList();
  5071. var countryData2 = new
  5072. {
  5073. CountryName = item,
  5074. CityData = cityData1
  5075. };
  5076. dataSource.Add(countryData2);
  5077. }
  5078. return Ok(JsonView(true, "查询成功!", dataSource));
  5079. }
  5080. /// <summary>
  5081. /// 团组模块 - 出入境国家费用标准 Page List
  5082. /// </summary>
  5083. /// <returns></returns>
  5084. [HttpPost]
  5085. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5086. public async Task<IActionResult> PostNationalTravelFeePage(NationalTravelFeePageDto dto)
  5087. {
  5088. int portId = dto.PortType;
  5089. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  5090. if (dto.PageIndex == 0) return Ok(JsonView(false, "当前页码数不能为0!"));
  5091. if (dto.PageSize == 0) return Ok(JsonView(false, "每页条数不能0!"));
  5092. string whereSql = string.Empty;
  5093. if (!string.IsNullOrEmpty(dto.Country))
  5094. {
  5095. whereSql += string.Format(@" And gntf.Country ='{0}'", dto.Country);
  5096. }
  5097. if (!string.IsNullOrEmpty(dto.City))
  5098. {
  5099. whereSql += string.Format(@" And gntf.City='{0}'", dto.City);
  5100. }
  5101. string pageSql = string.Format(@"Select * From (
  5102. Select row_number() over(order by gntf.LastUpdateTime Desc) as RowNumber,
  5103. ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.*
  5104. From Grp_NationalTravelFee gntf
  5105. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5106. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5107. Where gntf.Isdel = 0 {0} ) temp ", whereSql);
  5108. RefAsync<int> total = 0;
  5109. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeePageInfoView>(pageSql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  5110. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData, (int)total));
  5111. }
  5112. /// <summary>
  5113. /// 团组模块 - 出入境国家费用标准 根据城市查询
  5114. /// </summary>
  5115. /// <returns></returns>
  5116. [HttpPost]
  5117. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5118. public async Task<IActionResult> PostNationalTravelFeeInfoByCountryAndCity(NationalTravelFeeByCountryAndCityDto dto)
  5119. {
  5120. if (dto == null) return Ok(JsonView(false, "请传入参数!"));
  5121. int portId = dto.PortType;
  5122. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  5123. string whereSql = string.Empty;
  5124. if (!string.IsNullOrEmpty(dto.Country))
  5125. {
  5126. whereSql = string.Format(@"And Country = '{0}' ", dto.Country);
  5127. }
  5128. if (!string.IsNullOrEmpty(dto.City))
  5129. {
  5130. whereSql = string.Format(@"And City = '{0}' ", dto.City);
  5131. }
  5132. string sql = string.Format(@"Select gntf.Country,gntf.City,gntf.Currency,ssd.Name as CurrencyCode,
  5133. ssd.Remark as CurrencyName,gntf.RoomCost,gntf.FoodCost,gntf.PublicCost,
  5134. gntf.LastUpdateUserId,su.CnName as LastUpdateUserName,gntf.LastUpdateTime
  5135. From Grp_NationalTravelFee gntf
  5136. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5137. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5138. Where gntf.Isdel = 0 {0} ", whereSql);
  5139. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeeInfoByCountryAndCityView>(sql).FirstAsync();
  5140. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData));
  5141. }
  5142. /// <summary>
  5143. /// 团组模块 - 出入境国家费用标准 - Add Or Update
  5144. /// </summary>
  5145. /// <returns></returns>
  5146. [HttpPost]
  5147. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5148. public async Task<IActionResult> PostNationalTravelFeeOperate(NationalTravelFeeOperateDto dto)
  5149. {
  5150. try
  5151. {
  5152. var data = await _enterExitCostRep.PostNationalTravelFeeOperate(dto);
  5153. if (data.Code != 0)
  5154. {
  5155. return Ok(JsonView(false, data.Msg));
  5156. }
  5157. return Ok(JsonView(true, "操作成功!", data.Data));
  5158. }
  5159. catch (Exception ex)
  5160. {
  5161. return Ok(JsonView(false, ex.Message));
  5162. }
  5163. }
  5164. /// <summary>
  5165. /// 团组模块 - 出入境国家费用标准 - Del
  5166. /// </summary>
  5167. /// <returns></returns>
  5168. [HttpPost]
  5169. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5170. public async Task<IActionResult> PostNationalTravelFeeDel(NationalTravelFeeDelDto dto)
  5171. {
  5172. try
  5173. {
  5174. Grp_NationalTravelFee _nationalTravelFee = new Grp_NationalTravelFee()
  5175. {
  5176. Id = dto.Id,
  5177. DeleteUserId = dto.DeleteUserId,
  5178. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  5179. IsDel = 1
  5180. };
  5181. var delStatus = await _enterExitCostRep._sqlSugar.Updateable<Grp_NationalTravelFee>(_nationalTravelFee)
  5182. .UpdateColumns(it => new { it.DeleteTime, it.DeleteUserId, it.IsDel })
  5183. .WhereColumns(it => new { it.Id })
  5184. .ExecuteCommandAsync();
  5185. if (delStatus <= 0)
  5186. {
  5187. return Ok(JsonView(false, "删除失败!"));
  5188. }
  5189. return Ok(JsonView(true, "操作成功!"));
  5190. }
  5191. catch (Exception ex)
  5192. {
  5193. return Ok(JsonView(false, ex.Message));
  5194. }
  5195. }
  5196. #endregion
  5197. #region 签证费用录入
  5198. /// <summary>
  5199. /// 根据diid查询签证费用列表
  5200. /// </summary>
  5201. /// <param name="dto"></param>
  5202. /// <returns></returns>
  5203. [HttpPost]
  5204. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5205. public async Task<IActionResult> QueryVisaByDiId(VisaPriceDto dto)
  5206. {
  5207. try
  5208. {
  5209. Result groupData = await _visaPriceRep.PostVisaByDiId(dto);
  5210. if (groupData.Code != 0)
  5211. {
  5212. return Ok(JsonView(false, groupData.Msg));
  5213. }
  5214. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5215. }
  5216. catch (Exception ex)
  5217. {
  5218. return Ok(JsonView(false, ex.Message));
  5219. }
  5220. }
  5221. /// <summary>
  5222. /// 根据签证费用Id查询单条数据及c表数据
  5223. /// </summary>
  5224. /// <param name="dto"></param>
  5225. /// <returns></returns>
  5226. [HttpPost]
  5227. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5228. public async Task<IActionResult> QueryVisaById(PostVisaByIdDto dto)
  5229. {
  5230. try
  5231. {
  5232. Result groupData = await _visaPriceRep.PostVisaById(dto);
  5233. if (groupData.Code != 0)
  5234. {
  5235. return Ok(JsonView(false, groupData.Msg));
  5236. }
  5237. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5238. }
  5239. catch (Exception ex)
  5240. {
  5241. return Ok(JsonView(false, ex.Message));
  5242. }
  5243. }
  5244. /// <summary>
  5245. /// 签证费用删除
  5246. /// </summary>
  5247. /// <param name="dto"></param>
  5248. /// <returns></returns>
  5249. [HttpPost]
  5250. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5251. public async Task<IActionResult> DelVisaPrice(DelBaseDto dto)
  5252. {
  5253. _sqlSugar.BeginTran();
  5254. var res = await _visaPriceRep.SoftDeleteByIdAsync<Grp_VisaInfo>(dto.Id.ToString(), dto.DeleteUserId);
  5255. if (!res)
  5256. {
  5257. _sqlSugar.RollbackTran();
  5258. return Ok(JsonView(false, "删除失败"));
  5259. }
  5260. var resSub = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  5261. .Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 80)
  5262. .SetColumns(a => new Grp_CreditCardPayment()
  5263. {
  5264. IsDel = 1,
  5265. DeleteUserId = dto.DeleteUserId,
  5266. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5267. }).ExecuteCommand();
  5268. if (resSub < 1)
  5269. {
  5270. _sqlSugar.RollbackTran();
  5271. return Ok(JsonView(false, "删除失败"));
  5272. }
  5273. _sqlSugar.CommitTran();
  5274. return Ok(JsonView(true, "删除成功!"));
  5275. }
  5276. /// <summary>
  5277. /// 签证费用录入下拉框初始化
  5278. /// </summary>
  5279. /// <returns></returns>
  5280. [HttpPost]
  5281. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5282. public async Task<IActionResult> VisaPriceAddSelect()
  5283. {
  5284. try
  5285. {
  5286. //支付方式
  5287. List<Sys_SetData> Payment = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 14 && a.IsDel == 0).ToList();
  5288. List<SetDataInfoView> _Payment = _mapper.Map<List<SetDataInfoView>>(Payment);
  5289. //币种
  5290. List<Sys_SetData> CurrencyList = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 66 && a.IsDel == 0).ToList();
  5291. List<SetDataInfoView> _CurrencyList = _mapper.Map<List<SetDataInfoView>>(CurrencyList);
  5292. //乘客类型
  5293. List<Sys_SetData> PassengerType = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 69 && a.IsDel == 0).ToList();
  5294. List<SetDataInfoView> _PassengerType = _mapper.Map<List<SetDataInfoView>>(PassengerType);
  5295. //卡类型
  5296. List<Sys_SetData> BankCard = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 15 && a.IsDel == 0).ToList();
  5297. List<SetDataInfoView> _BankCard = _mapper.Map<List<SetDataInfoView>>(BankCard);
  5298. var data = new
  5299. {
  5300. Payment = _Payment,
  5301. CurrencyList = _CurrencyList,
  5302. PassengerType = _PassengerType,
  5303. BankCard = _BankCard
  5304. };
  5305. return Ok(JsonView(true, "查询成功!", data));
  5306. }
  5307. catch (Exception ex)
  5308. {
  5309. return Ok(JsonView(false, "程序错误!"));
  5310. throw;
  5311. }
  5312. }
  5313. /// <summary>
  5314. /// 签证费用录入操作(Status:1.新增,2.修改)
  5315. /// </summary>
  5316. /// <param name="dto"></param>
  5317. /// <returns></returns>
  5318. [HttpPost]
  5319. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5320. public async Task<IActionResult> OpVisaPrice(OpVisaPriceDto dto)
  5321. {
  5322. try
  5323. {
  5324. Result groupData = await _visaPriceRep.OpVisaPrice(dto);
  5325. if (groupData.Code != 0)
  5326. {
  5327. return Ok(JsonView(false, groupData.Msg));
  5328. }
  5329. #region 应用推送
  5330. try
  5331. {
  5332. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  5333. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  5334. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  5335. }
  5336. catch (Exception ex)
  5337. {
  5338. }
  5339. #endregion
  5340. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5341. }
  5342. catch (Exception ex)
  5343. {
  5344. return Ok(JsonView(false, ex.Message));
  5345. }
  5346. }
  5347. #endregion
  5348. #region op费用录入
  5349. /// <summary>
  5350. /// 根据diid查询op费用列表
  5351. /// </summary>
  5352. /// <param name="dto"></param>
  5353. /// <returns></returns>
  5354. [HttpPost]
  5355. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5356. public async Task<IActionResult> QueryCarTouristGuideGroundByDiId(CarTouristGuideGroundDto dto)
  5357. {
  5358. try
  5359. {
  5360. Result groupData = await _carTouristGuideGroundRep.QueryCarTouristGuideGroundByDiId(dto);
  5361. if (groupData.Code != 0)
  5362. {
  5363. return Ok(JsonView(false, groupData.Msg));
  5364. }
  5365. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5366. }
  5367. catch (Exception ex)
  5368. {
  5369. return Ok(JsonView(false, ex.Message));
  5370. }
  5371. }
  5372. /// <summary>
  5373. /// 根据op费用Id查询单条数据及c表数据
  5374. /// </summary>
  5375. /// <param name="dto"></param>
  5376. /// <returns></returns>
  5377. [HttpPost]
  5378. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5379. public async Task<IActionResult> QueryCarTouristGuideGroundById(CarTouristGuideGroundIdDto dto)
  5380. {
  5381. try
  5382. {
  5383. Grp_CarTouristGuideGroundReservations _groupData = await _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().FirstAsync(a => a.Id == dto.Id && a.IsDel == 0);
  5384. Grp_CreditCardPayment _creditCardPayment = await _sqlSugar.Queryable<Grp_CreditCardPayment>().FirstAsync(a => a.CId == dto.Id && a.CTable == 79 && a.IsDel == 0);
  5385. var data = new
  5386. {
  5387. CarTouristGuideGround = _groupData,
  5388. CreditCardPayment = _creditCardPayment
  5389. };
  5390. return Ok(JsonView(true, "查询成功!", data));
  5391. }
  5392. catch (Exception ex)
  5393. {
  5394. return Ok(JsonView(false, "程序错误!"));
  5395. }
  5396. }
  5397. /// <summary>
  5398. /// op费用删除
  5399. /// </summary>
  5400. /// <param name="dto"></param>
  5401. /// <returns></returns>
  5402. [HttpPost]
  5403. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5404. public async Task<IActionResult> DelCarTouristGuideGround(DelBaseDto dto)
  5405. {
  5406. try
  5407. {
  5408. var res = await _carTouristGuideGroundRep.SoftDeleteByIdAsync<Grp_CarTouristGuideGroundReservations>(dto.Id.ToString(), dto.DeleteUserId);
  5409. if (!res)
  5410. {
  5411. return Ok(JsonView(false, "删除失败"));
  5412. }
  5413. var result = await _sqlSugar.Updateable<Grp_CarTouristGuideGroundReservationsContent>().Where(a => a.CTGGRId == dto.Id && a.IsDel == 0).SetColumns(a => new Grp_CarTouristGuideGroundReservationsContent()
  5414. {
  5415. IsDel = 1,
  5416. DeleteUserId = dto.DeleteUserId,
  5417. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5418. }).ExecuteCommandAsync();
  5419. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 79).SetColumns(a => new Grp_CreditCardPayment()
  5420. {
  5421. IsDel = 1,
  5422. DeleteUserId = dto.DeleteUserId,
  5423. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5424. }).ExecuteCommandAsync();
  5425. return Ok(JsonView(true, "删除成功!"));
  5426. }
  5427. catch (Exception ex)
  5428. {
  5429. return Ok(JsonView(false, "程序错误!"));
  5430. throw;
  5431. }
  5432. }
  5433. /// <summary>
  5434. /// op费用录入操作(Status:1.新增,2.修改)
  5435. /// </summary>
  5436. /// <param name="dto"></param>
  5437. /// <returns></returns>
  5438. [HttpPost]
  5439. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5440. public async Task<IActionResult> OpCarTouristGuideGround(OpCarTouristGuideGroundDto dto)
  5441. {
  5442. try
  5443. {
  5444. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGround(dto);
  5445. if (groupData.Code != 0)
  5446. {
  5447. return Ok(JsonView(false, groupData.Msg));
  5448. }
  5449. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5450. }
  5451. catch (Exception ex)
  5452. {
  5453. return Ok(JsonView(false, ex.Message));
  5454. }
  5455. }
  5456. /// <summary>
  5457. /// 填写费用详细页面初始化绑定
  5458. /// </summary>
  5459. /// <param name="dto"></param>
  5460. /// <returns></returns>
  5461. [HttpPost]
  5462. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5463. public IActionResult CarTouristGuideGroundContentInitialize(CarTouristGuideGroundContentDto dto)
  5464. {
  5465. try
  5466. {
  5467. Result groupData = _carTouristGuideGroundRep.CarTouristGuideGroundContent(dto);
  5468. if (groupData.Code != 0)
  5469. {
  5470. return Ok(JsonView(false, groupData.Msg));
  5471. }
  5472. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5473. }
  5474. catch (Exception ex)
  5475. {
  5476. return Ok(JsonView(false, ex.Message));
  5477. }
  5478. }
  5479. /// <summary>
  5480. /// 根据op费用Id查询详细数据
  5481. /// </summary>
  5482. /// <param name="dto"></param>
  5483. /// <returns></returns>
  5484. [HttpPost]
  5485. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5486. public IActionResult OpCarTouristGuideGroundContentById(CarTouristGuideGroundIdDto dto)
  5487. {
  5488. try
  5489. {
  5490. Result groupData = _carTouristGuideGroundRep.OpCarTouristGuideGroundContentById(dto);
  5491. if (groupData.Code != 0)
  5492. {
  5493. return Ok(JsonView(false, groupData.Msg));
  5494. }
  5495. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5496. }
  5497. catch (Exception ex)
  5498. {
  5499. return Ok(JsonView(false, ex.Message));
  5500. }
  5501. }
  5502. /// <summary>
  5503. /// OP费用录入填写详情
  5504. /// </summary>
  5505. /// <param name="dto"></param>
  5506. /// <returns></returns>
  5507. [HttpPost]
  5508. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5509. public async Task<IActionResult> OpCarTouristGuideGroundContent(OpCarTouristGuideGroundContentDto dto)
  5510. {
  5511. try
  5512. {
  5513. #region 参数校验
  5514. if (dto.Currency <= 0) return Ok(JsonView(false, "币种错误!"));
  5515. var di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.DiId && x.IsDel == 0);
  5516. if (di == null) return Ok(JsonView(false, "团组错误!"));
  5517. #endregion
  5518. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGroundContent(dto);
  5519. if (groupData.Code != 0)
  5520. {
  5521. return Ok(JsonView(false, groupData.Msg));
  5522. }
  5523. //自动审核
  5524. await _feeAuditRep.FeeAutomaticAudit(2, dto.DiId, dto.CTGGRId);
  5525. #region 应用推送
  5526. try
  5527. {
  5528. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  5529. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  5530. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  5531. }
  5532. catch (Exception ex)
  5533. {
  5534. }
  5535. #endregion
  5536. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5537. }
  5538. catch (Exception ex)
  5539. {
  5540. return Ok(JsonView(false, ex.Message));
  5541. }
  5542. }
  5543. /// <summary>
  5544. /// 获取三公详细所有城市
  5545. /// </summary>
  5546. /// <returns></returns>
  5547. [HttpGet]
  5548. public IActionResult OpCarCityResult()
  5549. {
  5550. var jw = JsonView(false);
  5551. var data = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(x => x.IsDel == 0).Select(x => new
  5552. {
  5553. x.Id,
  5554. x.Country,
  5555. x.City,
  5556. }).ToList();
  5557. if (data.Count > 0)
  5558. {
  5559. jw = JsonView(true, "获取成功!", data);
  5560. }
  5561. else
  5562. {
  5563. jw.Msg = "城市数据为空!";
  5564. jw.Data = new string[0];
  5565. }
  5566. return Ok(jw);
  5567. }
  5568. /// <summary>
  5569. /// 导出地接费用明细
  5570. /// </summary>
  5571. /// <param name="dto"></param>
  5572. /// <returns></returns>
  5573. [HttpPost]
  5574. public IActionResult ExportLocalGuidePriceDetail(ExportLocalGuidePriceDetailDto dto)
  5575. {
  5576. var jw = JsonView(false);
  5577. if (dto.Diid < 1)
  5578. {
  5579. jw.Msg = "请输入正确的diid!";
  5580. return Ok(jw);
  5581. }
  5582. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  5583. if (group == null)
  5584. {
  5585. jw.Msg = "未找到团组信息!";
  5586. return Ok(jw);
  5587. }
  5588. var localGuideArr = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).ToList();
  5589. if (localGuideArr.Count == 0)
  5590. {
  5591. jw.Msg = "该团组暂无地接信息!";
  5592. return Ok(jw);
  5593. }
  5594. var localGroup = localGuideArr.GroupBy(x => x.Area).ToList();
  5595. var overspendSoure = new Dictionary<int, int>
  5596. {
  5597. { 91, 982 }, //车
  5598. { 92 , 1059} ,//导游
  5599. { 994 , 1073}, //翻译
  5600. { 988 , 1074 }, //早餐
  5601. { 93 , 1075 }, //午餐
  5602. { 989 , 1076 }, //晚餐
  5603. };
  5604. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  5605. foreach (var groupArr in localGroup)
  5606. {
  5607. var keyValue = groupArr.Key;
  5608. if (int.TryParse(keyValue, out int cityid))
  5609. {
  5610. var city = _sqlSugar.Queryable<Grp_NationalTravelFee>().First(x => x.Id == cityid && x.IsDel == 0);
  5611. keyValue = city == null ? keyValue : city.Country + "-" + city.City;
  5612. }
  5613. List<List<Grp_CarTouristGuideGroundReservationsContentExtend>> contentArr = new List<List<Grp_CarTouristGuideGroundReservationsContentExtend>>();
  5614. foreach (var item in groupArr)
  5615. {
  5616. var content = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservationsContent, Sys_SetData>((a, b) => a.SId == b.Id
  5617. ).Where((a, b) => a.CTGGRId == item.Id && a.Price != 0M && a.IsDel == 0 && b.IsDel == 0).Select((a, b) =>
  5618. new Grp_CarTouristGuideGroundReservationsContentExtend
  5619. {
  5620. Count = a.Count,
  5621. CreateTime = a.CreateTime,
  5622. CreateUserId = a.CreateUserId,
  5623. CTGGRId = a.CTGGRId,
  5624. Currency = a.Currency,
  5625. DatePrice = a.DatePrice,
  5626. DeleteTime = a.DeleteTime,
  5627. DeleteUserId = a.DeleteUserId,
  5628. DiId = a.DiId,
  5629. Id = a.Id,
  5630. IsDel = a.IsDel,
  5631. Price = a.Price,
  5632. PriceContent = a.PriceContent,
  5633. Remark = a.Remark,
  5634. SId = a.SId,
  5635. SidName = b.Name,
  5636. Units = a.Units,
  5637. }
  5638. ).ToList();
  5639. if (content.Count > 0)
  5640. {
  5641. contentArr.Add(content);
  5642. }
  5643. }
  5644. //open excel
  5645. //set excel
  5646. //save excel
  5647. try
  5648. {
  5649. string filePath = AppSettingsHelper.Get("ExcelBasePath") + "\\Template\\地接费用明细.xlsx";
  5650. IWorkbook workbook;
  5651. if (Path.GetExtension(filePath).ToLower() == ".xls")
  5652. {
  5653. workbook = new HSSFWorkbook(new FileStream(filePath, FileMode.Open, FileAccess.Read));
  5654. }
  5655. else
  5656. {
  5657. workbook = new XSSFWorkbook(new FileStream(filePath, FileMode.Open, FileAccess.Read));
  5658. }
  5659. ISheet sheet = workbook.GetSheetAt(0);
  5660. var rowStartIndex = 2;
  5661. var clounmCount = 10;
  5662. var initStyleRow = sheet.GetRow(2);
  5663. var arr = contentArr.SelectMany(x => x).OrderBy(x => x.SId).ToList();
  5664. //var overspendArrDetail =
  5665. var existsId = new List<CarCompare>();
  5666. var lastElem = arr.Last();
  5667. var thisSid = -1;
  5668. var curr = arr.Count > 0 ? arr[0].Currency : -1;
  5669. var currObj = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == curr && x.IsDel == 0) ?? new Sys_SetData
  5670. {
  5671. Name = "未知币种!",
  5672. Remark = "未知币种!",
  5673. };
  5674. sheet.GetRow(0).GetCell(1).SetCellValue($"{keyValue}费用明细(货币:{currObj.Remark})");
  5675. Action cloneRowFn = () =>
  5676. {
  5677. rowStartIndex++;
  5678. var cloneRow = sheet.CreateRow(rowStartIndex);
  5679. // 复制样式
  5680. for (int i = initStyleRow.FirstCellNum; i < initStyleRow.LastCellNum; i++)
  5681. {
  5682. ICell sourceCell = initStyleRow.GetCell(i);
  5683. ICell targetCell = cloneRow.GetCell(i) ?? cloneRow.CreateCell(i);
  5684. // 确保单元格存在样式
  5685. if (sourceCell.CellStyle != null)
  5686. {
  5687. targetCell.CellStyle = sourceCell.CellStyle;
  5688. }
  5689. }
  5690. };
  5691. var mergeRow = () =>
  5692. {
  5693. for (int i = 2; i < sheet.LastRowNum; i++)
  5694. {
  5695. var row = sheet.GetRow(i);
  5696. var cellFirst = row.GetCell(0);
  5697. var thisIndex = i + 1;
  5698. while (thisIndex < sheet.LastRowNum)
  5699. {
  5700. var nextRow = sheet.GetRow(thisIndex);
  5701. var nextCellFirst = nextRow.GetCell(0);
  5702. if (cellFirst != null && nextCellFirst != null && cellFirst.ToString().Trim() == nextCellFirst.ToString().Trim())
  5703. {
  5704. thisIndex++;
  5705. }
  5706. else
  5707. {
  5708. break;
  5709. }
  5710. }
  5711. thisIndex--;
  5712. if (thisIndex != i)
  5713. {
  5714. //合并row
  5715. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5716. i, // 起始行索引(0-based)
  5717. thisIndex, // 结束行索引(0-based)
  5718. 0, // 起始列索引(0-based)
  5719. 0 // 结束列索引(0-based)
  5720. );
  5721. sheet.AddMergedRegion(cellRangeAddress);
  5722. i = thisIndex;
  5723. }
  5724. }
  5725. };
  5726. var chaoshiNumber = 0;
  5727. var totalNumber = 0.00M;
  5728. string lastStr = "";
  5729. var queryCarArrByCityAndDiid = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations, Grp_CreditCardPayment>((x, b) => x.Id == b.CId && b.IsDel == 0 && b.CTable == 79)
  5730. .Where(x => x.DiId == dto.Diid && x.Area == groupArr.Key).Select((x, b) => new
  5731. {
  5732. b.IsAuditGM,
  5733. x.Id,
  5734. x.Area,
  5735. b.PayPercentage,
  5736. b.PayMoney,
  5737. }).ToList();
  5738. string yesPayment = "", noPayment = "";
  5739. foreach (var item in queryCarArrByCityAndDiid)
  5740. {
  5741. if (item.IsAuditGM == 1)
  5742. {
  5743. yesPayment += $"已支付团款({(int)item.PayPercentage}%):{item.PayMoney} {currObj.Remark}(如有需要,请在此处填写明细)\r\n";
  5744. }
  5745. else
  5746. {
  5747. noPayment += $"剩余团款:{item.PayMoney}{currObj.Remark}(如有需要,请在此处填写明细)\r\n";
  5748. }
  5749. }
  5750. lastStr = yesPayment + noPayment;
  5751. foreach (var item in arr)
  5752. {
  5753. if (existsId.FirstOrDefault(x => x.Sid == item.SId && DateTime.Compare(x.DataPrice, item.DatePrice.ObjToDate()) == 0) == null && !overspendSoure.Values.Contains(item.SId))
  5754. {
  5755. if (thisSid != item.SId)
  5756. {
  5757. if (thisSid == -1)
  5758. {
  5759. thisSid = item.SId;
  5760. }
  5761. else
  5762. {
  5763. //合并小计行
  5764. //创建合并区域的实例
  5765. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5766. rowStartIndex, // 起始行索引(0-based)
  5767. rowStartIndex, // 结束行索引(0-based)
  5768. 0, // 起始列索引(0-based)
  5769. 3 // 结束列索引(0-based)
  5770. );
  5771. sheet.AddMergedRegion(cellRangeAddress);
  5772. var CellStyle = workbook.CreateCellStyle();
  5773. CellStyle.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5774. CellStyle.FillForegroundColor = IndexedColors.Yellow.Index; // 选择填充颜色
  5775. CellStyle.FillPattern = FillPattern.SolidForeground; // 填充方式
  5776. for (int i = 0; i <= clounmCount; i++)
  5777. {
  5778. if (i > 6)
  5779. {
  5780. var CellStyle1 = workbook.CreateCellStyle();
  5781. CellStyle1.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5782. IFont Font = workbook.CreateFont(); // 创建字体
  5783. Font.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(i).CellStyle.GetFont(workbook));
  5784. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  5785. CellStyle1.SetFont(Font);
  5786. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle1;
  5787. }
  5788. else
  5789. {
  5790. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle;
  5791. }
  5792. }
  5793. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue("合计:");
  5794. sheet.GetRow(rowStartIndex).GetCell(4).SetCellValue(arr.Where(x => x.SId == thisSid).Sum(x => x.Count * x.Price).ToString("F2"));
  5795. //超时合计
  5796. sheet.GetRow(rowStartIndex).GetCell(7).SetCellValue("超时合计:");
  5797. //超时数
  5798. sheet.GetRow(rowStartIndex).GetCell(8).SetCellValue(chaoshiNumber == 0 ? "" : chaoshiNumber.ToString());
  5799. //超时合计费用
  5800. sheet.GetRow(rowStartIndex).GetCell(9).SetCellValue(totalNumber == 0 ? "" : totalNumber.ToString());
  5801. thisSid = item.SId;
  5802. cloneRowFn();
  5803. chaoshiNumber = 0;
  5804. totalNumber = 0;
  5805. }
  5806. }
  5807. IRow row = sheet.GetRow(rowStartIndex);
  5808. var whereForResult = arr.Where(x => x.SId == item.SId && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5809. var isOpenOverspendSoure = overspendSoure.Keys.Contains(item.SId);
  5810. List<Grp_CarTouristGuideGroundReservationsContentExtend> overspendWhereForResult = null;
  5811. if (isOpenOverspendSoure)
  5812. {
  5813. overspendWhereForResult = arr.Where(x => x.SId == overspendSoure[item.SId] && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5814. chaoshiNumber += overspendWhereForResult.Sum(x => x.Count);
  5815. totalNumber += overspendWhereForResult.Sum(x => x.Count * x.Price);
  5816. }
  5817. for (int i = 0; i <= clounmCount; i++)
  5818. {
  5819. var cell = row.GetCell(i);
  5820. var setCellValue = InIndexOutFunction(i, whereForResult, overspendWhereForResult);
  5821. if (cell == null)
  5822. {
  5823. cell = row.CreateCell(i);
  5824. }
  5825. var fontRed = workbook.CreateCellStyle(); // 创建单元格样式
  5826. fontRed.CloneStyleFrom(cell.CellStyle);
  5827. IFont Font = workbook.CreateFont(); // 创建字体
  5828. Font.CloneStyleFrom(cell.CellStyle.GetFont(workbook));
  5829. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  5830. fontRed.SetFont(Font);
  5831. byte[] rgb = new byte[3] { 255, 242, 204 };
  5832. var BackgroundColor255_242_204 = workbook.CreateCellStyle();
  5833. BackgroundColor255_242_204.CloneStyleFrom(cell.CellStyle);
  5834. byte[] rgb1 = new byte[3] { 189, 215, 238 };
  5835. if (workbook is XSSFWorkbook)
  5836. {
  5837. BackgroundColor255_242_204.FillForegroundColor = 0;
  5838. ((XSSFColor)BackgroundColor255_242_204.FillForegroundColorColor).SetRgb(rgb);
  5839. BackgroundColor255_242_204.FillPattern = FillPattern.SolidForeground;
  5840. }
  5841. else
  5842. {
  5843. BackgroundColor255_242_204.FillForegroundColor = (((HSSFWorkbook)workbook).GetCustomPalette().FindSimilarColor(rgb[0], rgb[1], rgb[2])).Indexed;
  5844. }
  5845. if (i == 1 || i > 6)
  5846. {
  5847. if (i > 6)
  5848. {
  5849. fontRed.FillForegroundColor = 0;
  5850. ((XSSFColor)fontRed.FillForegroundColorColor).SetRgb(rgb1);
  5851. fontRed.FillPattern = FillPattern.SolidForeground;
  5852. }
  5853. cell.CellStyle = fontRed;
  5854. }
  5855. if (i > 2 && i < 7)
  5856. {
  5857. cell.CellStyle = BackgroundColor255_242_204;
  5858. }
  5859. cell.SetCellValue(setCellValue); //写入单元格
  5860. }
  5861. if (overspendSoure.ContainsKey(thisSid))
  5862. {
  5863. var overspendId = overspendSoure[thisSid];
  5864. whereForResult = arr.Where(x => x.SId == item.SId && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5865. }
  5866. cloneRowFn();
  5867. existsId.Add(new CarCompare
  5868. {
  5869. DataPrice = item.DatePrice.ObjToDate(),
  5870. Sid = item.SId
  5871. });
  5872. }
  5873. if (item.Equals(lastElem))
  5874. {
  5875. //合并小计行
  5876. //创建合并区域的实例
  5877. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5878. rowStartIndex, // 起始行索引(0-based)
  5879. rowStartIndex, // 结束行索引(0-based)
  5880. 0, // 起始列索引(0-based)
  5881. 3 // 结束列索引(0-based)
  5882. );
  5883. sheet.AddMergedRegion(cellRangeAddress);
  5884. var CellStyle = workbook.CreateCellStyle();
  5885. CellStyle.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5886. CellStyle.FillForegroundColor = IndexedColors.Yellow.Index; // 选择填充颜色
  5887. CellStyle.FillPattern = FillPattern.SolidForeground; // 填充方式
  5888. for (int i = 0; i <= clounmCount; i++)
  5889. {
  5890. if (i > 6)
  5891. {
  5892. var CellStyle1 = workbook.CreateCellStyle();
  5893. CellStyle1.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5894. IFont Font = workbook.CreateFont(); // 创建字体
  5895. Font.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(i).CellStyle.GetFont(workbook));
  5896. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  5897. CellStyle1.SetFont(Font);
  5898. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle1;
  5899. }
  5900. else
  5901. {
  5902. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle;
  5903. }
  5904. }
  5905. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue("合计:");
  5906. sheet.GetRow(rowStartIndex).GetCell(4).SetCellValue(arr.Where(x => x.SId == thisSid).Sum(x => x.Count * x.Price).ToString("F2"));
  5907. //超时合计
  5908. sheet.GetRow(rowStartIndex).GetCell(7).SetCellValue("超时合计:");
  5909. //超时数
  5910. sheet.GetRow(rowStartIndex).GetCell(8).SetCellValue(chaoshiNumber == 0 ? "" : chaoshiNumber.ToString());
  5911. //超时合计费用
  5912. sheet.GetRow(rowStartIndex).GetCell(9).SetCellValue(totalNumber == 0 ? "" : totalNumber.ToString());
  5913. cloneRowFn();
  5914. // 创建合并区域的实例
  5915. cellRangeAddress = new CellRangeAddress(
  5916. rowStartIndex, // 起始行索引(0-based)
  5917. rowStartIndex, // 结束行索引(0-based)
  5918. 0, // 起始列索引(0-based)
  5919. initStyleRow.LastCellNum - 1 // 结束列索引(0-based)
  5920. );
  5921. // 添加合并区域
  5922. sheet.AddMergedRegion(cellRangeAddress);
  5923. sheet.GetRow(rowStartIndex).Height = 30 * 30;
  5924. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue(lastStr);
  5925. }
  5926. }
  5927. mergeRow();
  5928. // 保存修改后的Excel文件到新文件
  5929. //string newFilePath = Path.Combine(Path.GetDirectoryName(filePath), keyValue +"_" + Path.GetFileName(filePath));
  5930. // new FileStream(newFilePath, FileMode.CreateNew)
  5931. using (var stream = new MemoryStream())
  5932. {
  5933. workbook.Write(stream, true);
  5934. stream.Flush();
  5935. stream.Seek(0, SeekOrigin.Begin);
  5936. MemoryStream memoryStream = new MemoryStream();
  5937. stream.CopyTo(memoryStream);
  5938. memoryStream.Seek(0, SeekOrigin.Begin);
  5939. Zips.Add(keyValue + "_" + "费用明细表.xlsx", memoryStream);
  5940. }
  5941. workbook.Close();
  5942. workbook.Dispose();
  5943. }
  5944. catch (Exception ex)
  5945. {
  5946. jw.Msg = "出现异常!" + ex.Message;
  5947. return Ok(jw);
  5948. }
  5949. }
  5950. if (Zips.Count > 0)
  5951. {
  5952. IOOperatorHelper io = new IOOperatorHelper();
  5953. var byts = io.ConvertZipStream(Zips);
  5954. io.ByteToFile(byts, AppSettingsHelper.Get("ExcelBasePath") + $"\\ExportLocalGuidePriceDetail\\{group.TeamName}_地接费用明细.zip");
  5955. //http://132.232.92.186:24/Office/Word/EnterExitCost/File/
  5956. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("OfficeBaseUrl") + $"\\Office\\Excel\\ExportLocalGuidePriceDetail\\{group.TeamName}_地接费用明细.zip" });
  5957. }
  5958. else
  5959. {
  5960. jw.Msg = "暂无生成文件!";
  5961. }
  5962. return Ok(jw);
  5963. }
  5964. private string InIndexOutFunction(int i, List<Grp_CarTouristGuideGroundReservationsContentExtend> arr, List<Grp_CarTouristGuideGroundReservationsContentExtend> arrOverspendSoure)
  5965. {
  5966. string outStr = string.Empty;
  5967. switch (i)
  5968. {
  5969. case 0:
  5970. outStr = arr[0].SidName;
  5971. break;
  5972. case 1:
  5973. outStr = arr[0].DataPriceStr;
  5974. break;
  5975. case 2:
  5976. outStr = string.Join("-", arr.Select(x => x.PriceContent));
  5977. break;
  5978. case 4:
  5979. outStr = arr.Sum(x => x.Subtotal).ToString("F2");
  5980. break;
  5981. case 7:
  5982. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  5983. {
  5984. var curr = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == arrOverspendSoure[0].Currency && x.IsDel == 0);
  5985. var unit = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == arrOverspendSoure[0].Units && x.IsDel == 0);
  5986. outStr = arrOverspendSoure.Sum(x => x.Price).ToString("F2") + curr?.Remark + "/" + unit?.Name;
  5987. }
  5988. break;
  5989. case 8:
  5990. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  5991. {
  5992. outStr = arrOverspendSoure.Sum(x => x.Count).ToString();
  5993. }
  5994. break;
  5995. case 9:
  5996. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  5997. {
  5998. outStr = arrOverspendSoure.Sum(x => x.Count * x.Price).ToString();
  5999. }
  6000. break;
  6001. case 10:
  6002. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6003. {
  6004. outStr = string.Join("-", arrOverspendSoure.Select(x => x.PriceContent));
  6005. }
  6006. break;
  6007. }
  6008. return outStr;
  6009. }
  6010. #region OP行程单
  6011. /// <summary>
  6012. /// OP行程单初始化
  6013. /// </summary>
  6014. /// <param name="dto"></param>
  6015. /// <returns></returns>
  6016. [HttpPost]
  6017. public IActionResult InitOpTravel(InitOpTravelDto dto)
  6018. {
  6019. var jw = JsonView(false);
  6020. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  6021. var group = groupList.First();
  6022. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  6023. if (group == null)
  6024. {
  6025. jw.Msg = "暂无团组!";
  6026. return Ok(jw);
  6027. }
  6028. group = groupList.Find(x => x.Id == diid);
  6029. if (group == null)
  6030. {
  6031. jw.Msg = "请输入正确的团组ID!";
  6032. return Ok(jw);
  6033. }
  6034. string city = string.Empty;
  6035. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(x => x.IsDel == 0 && x.DiId == diid).ToList();
  6036. if (blackCode.Count > 0)
  6037. {
  6038. var black = blackCode.First();
  6039. black.BlackCode = black.BlackCode == null ? "" : black.BlackCode;
  6040. var blackSp = Regex.Split(black.BlackCode, "\\d+\\.", RegexOptions.IgnoreCase).Where(x => !string.IsNullOrWhiteSpace(x)).ToArray();
  6041. if (blackSp.Length > 0)
  6042. {
  6043. try
  6044. {
  6045. var cityArrCode = new List<string>(20);
  6046. foreach (var item in blackSp)
  6047. {
  6048. var itemSp = item.Split(' ').Where(x => !string.IsNullOrWhiteSpace(x)).ToList();
  6049. var IndexSelect = itemSp[2];
  6050. var cityArrCodeLength = cityArrCode.Count - 1;
  6051. var startCity = IndexSelect.Substring(0, 3);
  6052. if (cityArrCodeLength > 0)
  6053. {
  6054. var arrEndCity = cityArrCode[cityArrCodeLength];
  6055. if (arrEndCity != startCity)
  6056. {
  6057. cityArrCode.Add(startCity.ToUpper());
  6058. }
  6059. }
  6060. else
  6061. {
  6062. cityArrCode.Add(startCity.ToUpper());
  6063. }
  6064. var endCity = IndexSelect.Substring(3, 3);
  6065. cityArrCode.Add(endCity.ToUpper());
  6066. }
  6067. var cityThree = string.Empty;
  6068. cityArrCode.ForEach(x => cityThree += "'" + x + "',");
  6069. cityThree = cityThree.TrimEnd(',');
  6070. if (string.IsNullOrWhiteSpace(cityThree))
  6071. {
  6072. throw new
  6073. Exception("error");
  6074. }
  6075. string sql = $"SELECT * FROM Res_ThreeCode rtc WHERE UPPER(rtc.Three) in ({cityThree}) ";
  6076. var cityArr = _sqlSugar.SqlQueryable<Res_ThreeCode>(sql).ToList();
  6077. foreach (var item in cityArrCode)
  6078. {
  6079. var find = cityArr.Find(x => x.Three.ToUpper() == item.ToUpper());
  6080. if (find != null)
  6081. {
  6082. city += find.City + "/";
  6083. }
  6084. else
  6085. {
  6086. city += item + "三字码未收入/";
  6087. }
  6088. }
  6089. city = city.TrimEnd('/');
  6090. }
  6091. catch (Exception e)
  6092. {
  6093. city = "黑屏代码格式不正确!";
  6094. }
  6095. }
  6096. }
  6097. else
  6098. {
  6099. city = "未录入黑屏代码";
  6100. }
  6101. var OpTravelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0).OrderBy(x => x.Days).Select(x => new TravelArrView
  6102. {
  6103. Date = x.Date,
  6104. Days = x.Days,
  6105. Diffgroup = x.Diffgroup,
  6106. Diid = x.Diid,
  6107. Traffic_First = x.Traffic_First,
  6108. Traffic_Second = x.Traffic_Second,
  6109. Trip = x.Trip,
  6110. WeekDay = x.WeekDay,
  6111. Id = x.Id
  6112. }).ToList();
  6113. jw.Data = new
  6114. {
  6115. groupList = groupList.Select(x => new
  6116. {
  6117. x.Id,
  6118. x.TeamName,
  6119. x.TourCode
  6120. }).ToList(),
  6121. groupInfo = new
  6122. {
  6123. group.VisitDays,
  6124. group.TourCode,
  6125. group.VisitPNumber,
  6126. group.TeamName,
  6127. city
  6128. },
  6129. OpTravelList
  6130. };
  6131. jw.Code = 200;
  6132. jw.Msg = "操作成功!";
  6133. return Ok(jw);
  6134. }
  6135. /// <summary>
  6136. /// 删除团组行程单
  6137. /// </summary>
  6138. /// <returns></returns>
  6139. [HttpPost]
  6140. public IActionResult DelTravel(DelOpTravelDto dto)
  6141. {
  6142. var jw = JsonView(false);
  6143. if (dto.UserId <= 0 || dto.Diid <= 0)
  6144. {
  6145. jw.Msg = "请输入正确的参数!";
  6146. return Ok(jw);
  6147. }
  6148. var isTrue = _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Diid == dto.Diid && x.IsDel == 0)
  6149. .SetColumns(x => new Grp_TravelList
  6150. {
  6151. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  6152. DeleteUserId = dto.UserId,
  6153. IsDel = 1,
  6154. }).ExecuteCommand();
  6155. jw = JsonView(true);
  6156. return Ok(jw);
  6157. }
  6158. /// <summary>
  6159. /// 行程单保存
  6160. /// </summary>
  6161. /// <returns></returns>
  6162. [HttpPost]
  6163. public IActionResult TravelSave(TravelSaveDto dto)
  6164. {
  6165. var jw = JsonView(false);
  6166. if (dto.Arr.Count > 0)
  6167. {
  6168. try
  6169. {
  6170. _sqlSugar.BeginTran();
  6171. foreach (var item in dto.Arr)
  6172. {
  6173. if (item.Id == 0)
  6174. {
  6175. throw new Exception("请传入正确的Id");
  6176. }
  6177. _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Id == item.Id)
  6178. .SetColumns(x => new Grp_TravelList
  6179. {
  6180. Trip = item.Trip
  6181. }).ExecuteCommand();
  6182. }
  6183. _sqlSugar.CommitTran();
  6184. jw = JsonView(true);
  6185. }
  6186. catch (Exception ex)
  6187. {
  6188. _sqlSugar.RollbackTran();
  6189. jw.Msg = "程序异常!" + ex.Message;
  6190. }
  6191. }
  6192. else
  6193. {
  6194. jw.Msg = "请传入正确的参数!";
  6195. }
  6196. return Ok(jw);
  6197. }
  6198. /// <summary>
  6199. /// 导出行程单
  6200. /// </summary>
  6201. /// <param name="dto"></param>
  6202. /// <returns></returns>
  6203. [HttpPost]
  6204. public IActionResult ExportTravel(ExportTravelDto dto)
  6205. {
  6206. var jw = JsonView(false);
  6207. jw.Data = "";
  6208. int diid = 0;
  6209. var Find = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid);
  6210. if (Find == null)
  6211. {
  6212. jw.Msg = "请选择正确的团组!";
  6213. return Ok(jw);
  6214. }
  6215. else
  6216. {
  6217. diid = Find.Id;
  6218. }
  6219. //数据源
  6220. List<Grp_TravelList> _travelList = new List<Grp_TravelList>();
  6221. DataTable dtBlack = null;
  6222. try
  6223. {
  6224. dtBlack = GeneralMethod.GetTableByBlackCode(diid);
  6225. }
  6226. catch (Exception)
  6227. {
  6228. jw.Msg = "机票黑屏代码有误!";
  6229. return Ok(jw);
  6230. }
  6231. string CityStr = string.Empty;
  6232. if (dtBlack.Rows.Count == 0)
  6233. {
  6234. jw.Msg = "机票黑屏代码有误!";
  6235. return Ok(jw);
  6236. }
  6237. else
  6238. {
  6239. foreach (DataRow row in dtBlack.Rows)
  6240. {
  6241. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  6242. {
  6243. jw.Msg = "机票黑屏代码有误!" + row["Error"].ToString();
  6244. return Ok(jw);
  6245. }
  6246. }
  6247. CityStr = GeneralMethod.GetGroupCityLine(diid, "/");
  6248. _travelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0 && x.Issel == 1).ToList();
  6249. }
  6250. //创建数据源Table
  6251. DataTable dtSource = new DataTable();
  6252. dtSource.Columns.Add("Days", typeof(string));
  6253. dtSource.Columns.Add("Date", typeof(string));
  6254. dtSource.Columns.Add("Week", typeof(string));
  6255. dtSource.Columns.Add("Traffic", typeof(string));
  6256. dtSource.Columns.Add("Trip", typeof(string));
  6257. //获取数据,放到datatable
  6258. foreach (var item in _travelList)
  6259. {
  6260. DataRow dr = dtSource.NewRow();
  6261. dr["Days"] = item.Days;
  6262. dr["Date"] = item.Date;
  6263. dr["Week"] = item.WeekDay;
  6264. dr["Traffic"] = item.Traffic_First
  6265. + "\r\n"
  6266. + item.Traffic_Second;
  6267. dr["Trip"] = item.Trip;
  6268. dtSource.Rows.Add(dr);
  6269. }
  6270. Dictionary<string, string> dic = new Dictionary<string, string>();
  6271. dic.Add("Dele", Find.TeamName.ToString() + GetNum(Find.VisitDays.ToString()));
  6272. dic.Add("City", CityStr);
  6273. dic.Add("Days", Find.VisitDays.ToString());
  6274. dic.Add("DeleCode", Find.TourCode);
  6275. dic.Add("Pnum", Find.VisitPNumber.ToString());
  6276. //模板路径
  6277. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Travel/日行程3.docx";
  6278. //载入模板
  6279. Document doc = null;
  6280. DocumentBuilder builder = null;
  6281. try
  6282. {
  6283. //载入模板
  6284. doc = new Document(tempPath);
  6285. builder = new DocumentBuilder(doc);
  6286. }
  6287. catch (Exception)
  6288. {
  6289. jw.Msg = "模板位置不存在!";
  6290. return Ok(jw);
  6291. }
  6292. foreach (var key in dic.Keys)
  6293. {
  6294. Bookmark bookmark = doc.Range.Bookmarks[key];
  6295. if (bookmark != null)
  6296. {
  6297. builder.MoveToBookmark(key);
  6298. builder.Write(dic[key]);
  6299. }
  6300. }
  6301. //获取word里所有表格
  6302. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  6303. //获取所填表格的序数
  6304. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  6305. try
  6306. {
  6307. //循环赋值
  6308. for (int i = 0; i < dtSource.Rows.Count; i++)
  6309. {
  6310. builder.MoveToCell(0, i + 1, 0, 0);
  6311. builder.Write(dtSource.Rows[i]["Days"].ToString());
  6312. builder.MoveToCell(0, i + 1, 1, 0);
  6313. builder.Write(dtSource.Rows[i]["Date"].ToString() + "\r\n" + dtSource.Rows[i]["Week"].ToString());
  6314. builder.MoveToCell(0, i + 1, 2, 0);
  6315. builder.Write(dtSource.Rows[i]["Traffic"].ToString());
  6316. var trip = dtSource.Rows[i]["Trip"].ToString();
  6317. builder.MoveToCell(0, i + 1, 3, 0);
  6318. builder.Write(trip);
  6319. var cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 1, true);
  6320. var paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  6321. // 获取特定索引的段落
  6322. Paragraph paragraph = (Paragraph)paragraphs[0];
  6323. Run run = paragraph.Runs[0];
  6324. Aspose.Words.Font font = run.Font;
  6325. font.Name = "黑体";
  6326. //设置双休红色
  6327. cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 3, true);
  6328. paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  6329. paragraph = (Paragraph)paragraphs[1];
  6330. if (paragraph.GetText().Contains("星期六") || paragraph.GetText().Contains("星期日"))
  6331. {
  6332. run = paragraph.Runs[0];
  6333. font = run.Font;
  6334. font.Color = Color.Red;
  6335. }
  6336. }
  6337. }
  6338. catch (Exception ex)
  6339. {
  6340. }
  6341. //删除多余行
  6342. while (tableOne.Rows.Count > 1 + dtSource.Rows.Count)
  6343. {
  6344. tableOne.Rows.RemoveAt(1 + dtSource.Rows.Count);//(1+dtSource.Rows.Count + 1)-1
  6345. }
  6346. string savePath = AppSettingsHelper.Get("WordBasePath") + "Travel/export/";
  6347. if (!Directory.Exists(savePath))
  6348. {
  6349. try
  6350. {
  6351. Directory.CreateDirectory(savePath);
  6352. }
  6353. catch
  6354. {
  6355. }
  6356. }
  6357. string path = savePath + Find.TeamName + "出访日程";
  6358. string ftpPath = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + "Travel/export/" + Find.TeamName + "出访日程";
  6359. try
  6360. {
  6361. Aspose.Words.SaveFormat saveFormat = Aspose.Words.SaveFormat.Doc;
  6362. string postfix = ".docx";
  6363. if (dto.IsPDF == 1)
  6364. {
  6365. saveFormat = Aspose.Words.SaveFormat.Pdf;
  6366. postfix = ".pdf";
  6367. }
  6368. doc.Save(path + postfix, saveFormat);
  6369. jw = JsonView(true, "导出成功", ftpPath + postfix);
  6370. }
  6371. catch (Exception)
  6372. {
  6373. jw = JsonView(false);
  6374. }
  6375. return Ok(jw);
  6376. }
  6377. /// <summary>
  6378. /// 根据大写数字返回小写数字或根据小写数字返回大写数字
  6379. /// </summary>
  6380. /// <param name="num"></param>
  6381. /// <returns></returns>
  6382. string GetNum(string num)
  6383. {
  6384. string str = "";
  6385. switch (num)
  6386. {
  6387. case "1":
  6388. str = "一";
  6389. break;
  6390. case "2":
  6391. str = "二";
  6392. break;
  6393. case "3":
  6394. str = "三";
  6395. break;
  6396. case "4":
  6397. str = "四";
  6398. break;
  6399. case "5":
  6400. str = "五";
  6401. break;
  6402. case "6":
  6403. str = "六";
  6404. break;
  6405. case "7":
  6406. str = "七";
  6407. break;
  6408. case "8":
  6409. str = "八";
  6410. break;
  6411. case "9":
  6412. str = "九";
  6413. break;
  6414. case "10":
  6415. str = "十";
  6416. break;
  6417. case "11":
  6418. str = "十一";
  6419. break;
  6420. case "12":
  6421. str = "十二";
  6422. break;
  6423. case "一":
  6424. str = "1";
  6425. break;
  6426. case "二":
  6427. str = "2";
  6428. break;
  6429. case "三":
  6430. str = "3";
  6431. break;
  6432. case "四":
  6433. str = "4";
  6434. break;
  6435. case "五":
  6436. str = "5";
  6437. break;
  6438. case "六":
  6439. str = "6";
  6440. break;
  6441. case "七":
  6442. str = "7";
  6443. break;
  6444. case "八":
  6445. str = "8";
  6446. break;
  6447. case "九":
  6448. str = "9";
  6449. break;
  6450. case "十":
  6451. str = "10";
  6452. break;
  6453. case "十一":
  6454. str = "11";
  6455. break;
  6456. case "十二":
  6457. str = "12";
  6458. break;
  6459. }
  6460. return str;
  6461. }
  6462. #endregion
  6463. #endregion
  6464. #region 团组成本
  6465. /// <summary>
  6466. /// 团组成本数据初始化
  6467. /// </summary>
  6468. /// <param name="dto"></param>
  6469. /// <returns></returns>
  6470. [HttpPost]
  6471. public async Task<IActionResult> GroupCostInit(GroupCostInItDto dto)
  6472. {
  6473. var groupList = _sqlSugar.SqlQueryable<DelegationInfoAndIsTrueView>($@"
  6474. Select a.Id,TeamName GroupName,b.isTrue From Grp_DelegationInfo a left join (select top 100 percent Diid, CASE
  6475. WHEN COUNT(*) >= 0 THEN 'True'
  6476. ELSE 'False' END as isTrue from Grp_GroupCost where Isdel = 0 and date != '' group by Diid) b on a.Id = b.Diid
  6477. Where TeamName != '' And IsDel = 0 Order By a.Id Desc
  6478. ").ToList(); //团组列表
  6479. int diid = dto.Diid == -1 ? groupList.First().Id : dto.Diid;
  6480. var groupInfo = await _groupRepository.PostShareGroupInfo(new ShareGroupInfoDto { PortType = 1, Id = diid }); //团组信息
  6481. List<Res_CountryFeeCost> visaCountryInfoArr = new List<Res_CountryFeeCost>();
  6482. var groupinfoValue = (groupInfo.Data as Web_ShareGroupInfoView);
  6483. if (groupinfoValue != null)
  6484. {
  6485. var countryArr = groupinfoValue.VisitCountry ??= string.Empty;
  6486. var spArr = new string[1] { countryArr };
  6487. if (countryArr.Contains("|"))
  6488. {
  6489. spArr = countryArr.Split("|");
  6490. }
  6491. else if (countryArr.Contains("、"))
  6492. {
  6493. spArr = countryArr.Split("、");
  6494. }
  6495. foreach (var item in spArr.Where(x => !string.IsNullOrWhiteSpace(x)).ToList())
  6496. {
  6497. var dbQueryCountry = _sqlSugar.Queryable<Res_CountryFeeCost>().First(x => x.VisaCountry.Contains(item));
  6498. if (dbQueryCountry != null)
  6499. {
  6500. visaCountryInfoArr.Add(dbQueryCountry);
  6501. }
  6502. }
  6503. }
  6504. var groupChecks = _checkBoxs.GetCheckBoxsByDiid(diid); //团组选中信息 可枚举
  6505. var groupCost = _GroupCostRepository.GetAllByDiid(diid); //团组列表信息
  6506. var create = _GroupCostRepository.
  6507. CreateGroupCostByBlackCode(dto.Diid);
  6508. if (groupCost.Count == 0 && create.Code == 0)
  6509. {
  6510. groupCost = (create.Data as List<Grp_GroupCost>) ?? new List<Grp_GroupCost>();
  6511. }
  6512. var groupCostMap = _mapper.Map<List<Grp_GroupCostDto>>(groupCost);
  6513. var hotelNumber = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(diid); //酒店数量 可枚举
  6514. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(diid); //成本系数 可枚举
  6515. groupCostMap = groupCostMap.Select(x =>
  6516. {
  6517. if (DateTime.TryParse(x.Date, out DateTime dataForamt))
  6518. {
  6519. x.Date = dataForamt.ToString("yyyy-MM-dd");
  6520. }
  6521. return x;
  6522. }).ToList();
  6523. //GroupCostParameter.Add(new
  6524. // Grp_GroupCostParameter());
  6525. var GroupCostParameterMap = _mapper.Map<List<Grp_GroupCostParameterDto>>(GroupCostParameter);
  6526. bool hotelIsTrue = _sqlSugar.Queryable<Grp_HotelInquiry>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).Count() > 0;
  6527. return Ok(JsonView(new
  6528. {
  6529. groupList,
  6530. groupInfo,
  6531. groupChecks,
  6532. groupCost = groupCostMap,
  6533. hotelNumber,
  6534. GroupCostParameter = GroupCostParameterMap,
  6535. visaCountryInfoArr = visaCountryInfoArr.Select(x => new
  6536. {
  6537. x.VisaCountry,
  6538. x.VisaPrice,
  6539. x.Id,
  6540. }).ToList(),
  6541. baoPi = _GroupCostParameterRepository.GetBaoPi(diid),
  6542. blackCodeIsTrue = create.Code == 0 ? true : false,
  6543. hotelIsTrue = hotelIsTrue,
  6544. }));
  6545. }
  6546. /// <summary>
  6547. /// 团组成本信息保存
  6548. /// </summary>
  6549. /// <param name="dto"></param>
  6550. /// <returns></returns>
  6551. [HttpPost]
  6552. public async Task<IActionResult> SaveGroupCost(GroupCostSavaDto dto)
  6553. {
  6554. if (dto.Diid <= 0 || dto.Userid <= 0)
  6555. {
  6556. return Ok(JsonView(false));
  6557. }
  6558. JsonView jw = null;
  6559. bool isTrue = false;
  6560. #region 复制团组成本
  6561. //if (dto.Diid == 2581)
  6562. //{
  6563. // dto.Diid = 2599;
  6564. // dto.CheckBoxs.ForEach(x =>
  6565. // {
  6566. // x.Diid = 2599;
  6567. // });
  6568. // dto.GroupCosts.ForEach(x =>
  6569. // {
  6570. // x.Diid = 2599;
  6571. // });
  6572. // dto.CostTypeHotelNumbers.ForEach(x =>
  6573. // {
  6574. // x.Diid = 2599;
  6575. // });
  6576. // dto.GroupCostParameters.ForEach(x =>
  6577. // {
  6578. // x.DiId = 2599;
  6579. // });
  6580. //}
  6581. #endregion
  6582. var Grp_groups = _mapper.Map<List<Grp_GroupCost>>(dto.GroupCosts);
  6583. Grp_groups.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; }); //.ToString("yyyy-MM-dd HH:mm:ss")
  6584. var Grp_CheckBoxs = _mapper.Map<List<Grp_CheckBoxs>>(dto.CheckBoxs);
  6585. Grp_CheckBoxs.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; });
  6586. var Grp_HotelNumber = _mapper.Map<List<Grp_CostTypeHotelNumber>>(dto.CostTypeHotelNumbers);
  6587. var Grp_CostParameters = _mapper.Map<List<Grp_GroupCostParameter>>(dto.GroupCostParameters);
  6588. try
  6589. {
  6590. _sqlSugar.BeginTran();
  6591. isTrue = await _GroupCostRepository.
  6592. SaveGroupCostList(Grp_groups, dto.Diid, dto.Userid); //列表
  6593. isTrue = await _checkBoxs.SaveCheckBoxs(Grp_CheckBoxs, dto.Diid); //选中项
  6594. isTrue = await _CostTypeHotelNumberRepository.SaveHotelNumber(Grp_HotelNumber, dto.Userid, dto.Diid); //酒店房间数量
  6595. isTrue = await _GroupCostParameterRepository.SaveAsync(Grp_CostParameters, dto.Userid, dto.Diid); //系数
  6596. _sqlSugar.CommitTran();
  6597. jw = JsonView(true, "保存成功!", isTrue);
  6598. }
  6599. catch (Exception)
  6600. {
  6601. _sqlSugar.RollbackTran();
  6602. jw = JsonView(false);
  6603. }
  6604. return Ok(jw);
  6605. }
  6606. /// <summary>
  6607. /// 司兼导数据
  6608. /// </summary>
  6609. /// <param name="dto"></param>
  6610. /// <returns></returns>
  6611. [HttpPost]
  6612. public IActionResult GetCarGuides(CarGuidesDto dto)
  6613. {
  6614. JsonView jw = null;
  6615. var Data = _sqlSugar.SqlQueryable<Grp_CarGuides>($@" select * from Grp_CarGuides where isdel = 0 ").ToList();
  6616. jw = JsonView(true, "获取成功!", Data);
  6617. return Ok(jw);
  6618. }
  6619. /// <summary>
  6620. /// 导游数据
  6621. /// </summary>
  6622. /// <param name="dto"></param>
  6623. /// <returns></returns>
  6624. [HttpPost]
  6625. public IActionResult GetGuidesInfo(CarGuidesDto dto)
  6626. {
  6627. JsonView jw = null;
  6628. //var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" SELECT* FROM (
  6629. // SELECT*,ROW_NUMBER() OVER (ORDER BY Id) AS RowNumber FROM Grp_GuidesInfo where (city like '%{dto.City}%' or country like '%{dto.City}%' ) and isdel = 0 ) as b
  6630. // where RowNumber BETWEEN {(dto.Page - 1) * dto.Size + 1} and {(dto.Page) * dto.Size}").ToList();
  6631. var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" select * from Grp_GuidesInfo where isdel = 0 ").ToList();
  6632. jw = JsonView(true, "获取成功!", Data);
  6633. return Ok(jw);
  6634. }
  6635. /// <summary>
  6636. /// 成本车数据
  6637. /// </summary>
  6638. /// <param name="dto"></param>
  6639. /// <returns></returns>
  6640. [HttpPost]
  6641. public IActionResult GetCarInfo(CarGuidesDto dto)
  6642. {
  6643. JsonView jw = null;
  6644. var Data = _sqlSugar.SqlQueryable<Grp_CarInfo>($@" select * from Grp_CarInfo where isdel = 0 ").ToList();
  6645. jw = JsonView(true, "获取成功!", Data);
  6646. return Ok(jw);
  6647. }
  6648. /// <summary>
  6649. /// 景点数据
  6650. /// </summary>
  6651. /// <param name="dto"></param>
  6652. /// <returns></returns>
  6653. [HttpPost]
  6654. public IActionResult GetScenicSpotInfo(CarGuidesDto dto)
  6655. {
  6656. var Data = _sqlSugar.SqlQueryable<Grp_ScenicSpotInfo>($@" select * from Grp_ScenicSpotInfo where isdel = 0 ").ToList();
  6657. return Ok(JsonView(true, "获取成功!", Data));
  6658. }
  6659. /// <summary>
  6660. /// 成本通知
  6661. /// </summary>
  6662. /// <param name="dto"></param>
  6663. /// <returns></returns>
  6664. [HttpPost]
  6665. public async Task<IActionResult> GroupIsShare(GroupIsShareDto dto)
  6666. {
  6667. if (dto.Diid < 0)
  6668. {
  6669. return Ok(JsonView(false));
  6670. }
  6671. JsonView jw = null;
  6672. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterMainByDiid(dto.Diid);
  6673. if (GroupCostParameter != null)
  6674. {
  6675. int IsShare = 0;
  6676. if (GroupCostParameter.IsShare == 0) IsShare = 1;
  6677. else if (GroupCostParameter.IsShare == 1) IsShare = 0;
  6678. bool isTrue = await _GroupCostParameterRepository.UpdateIsShareById(GroupCostParameter.Id, IsShare);
  6679. string msg = string.Empty;
  6680. if (isTrue)
  6681. {
  6682. if (IsShare == 0)
  6683. {
  6684. msg = "禁止通知,其他模块操作人员不可见此成本信息!";
  6685. }
  6686. else
  6687. {
  6688. #region 企微通知对应岗位用户
  6689. try
  6690. {
  6691. AppNoticeLibrary.SendUserMsg_GroupShare_ToJob(dto.Diid);
  6692. }
  6693. catch (Exception ex)
  6694. {
  6695. }
  6696. #endregion
  6697. msg = "通知成功,其他模块操作人员可见此成本信息!";
  6698. }
  6699. jw = JsonView(isTrue, msg, new { IsShare });
  6700. }
  6701. else
  6702. {
  6703. msg = "修改失败!";
  6704. jw = JsonView(isTrue, msg);
  6705. }
  6706. }
  6707. else
  6708. {
  6709. jw = JsonView(false, "该团没有数据,请添加数据,保存后再操作!");
  6710. }
  6711. return Ok(jw);
  6712. }
  6713. /// <summary>
  6714. /// 导出报价单
  6715. /// </summary>
  6716. /// <param name="dto"></param>
  6717. /// <returns></returns>
  6718. [HttpPost]
  6719. public async Task<IActionResult> ExportPriceCheckWordFile(GroupCostExportWordFile dto)
  6720. {
  6721. if (dto.Diid == 0)
  6722. {
  6723. return Ok(JsonView(false, "请传递团组id"));
  6724. }
  6725. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  6726. if (deleInfo.Code != 0)
  6727. {
  6728. return Ok(JsonView(false, "团组信息查询失败!"));
  6729. }
  6730. var di = deleInfo.Data as DelegationInfoWebView;
  6731. if (di != null)
  6732. {
  6733. //文件名
  6734. string strFileName = di.TeamName + "-收款账单.doc";
  6735. //获取模板
  6736. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/收款账单(四川)模板.doc");
  6737. //载入模板
  6738. Document doc = new Document(tmppath);
  6739. decimal TotalPrice = 0.00M;
  6740. string itemStr = string.Empty;
  6741. Dictionary<string, string> airSouer = new Dictionary<string, string>();
  6742. //airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  6743. airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  6744. airSouer.Add("JJCSGR", "经济舱及酒店单人间");
  6745. airSouer.Add("GWCSGR", "公务舱及酒店单人间");
  6746. airSouer.Add("GWCJSES", "公务舱及酒店小套房");
  6747. airSouer.Add("GWCSUITE", "公务舱及酒店套房");
  6748. airSouer.Add("JJCSUITE", "经济舱及酒店套房");
  6749. var groupCostType = dto.airs.GroupBy(x => x.costType).OrderBy(x => x.Key);
  6750. foreach (var cost in groupCostType)
  6751. {
  6752. var List = cost.ToList();
  6753. if (cost.Key == "A")
  6754. {
  6755. foreach (var ListItem in List)
  6756. {
  6757. if (ListItem.number > 0)
  6758. {
  6759. if (ListItem.code.Contains("TBR"))
  6760. {
  6761. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6762. }
  6763. else
  6764. {
  6765. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6766. }
  6767. TotalPrice += (ListItem.number * ListItem.price);
  6768. }
  6769. }
  6770. }
  6771. else
  6772. {
  6773. itemStr = itemStr.Insert(0, "A段\r\n");
  6774. itemStr += "B段\r\n";
  6775. foreach (var ListItem in List)
  6776. {
  6777. if (ListItem.number > 0)
  6778. {
  6779. if (ListItem.code.Contains("TBR"))
  6780. {
  6781. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6782. }
  6783. else
  6784. {
  6785. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6786. }
  6787. TotalPrice += (ListItem.number * ListItem.price);
  6788. }
  6789. }
  6790. }
  6791. }
  6792. #region 替换Word模板书签内容
  6793. Dictionary<string, string> marks = new Dictionary<string, string>();
  6794. marks.Add("To", di.ClientUnit);//付款方
  6795. marks.Add("ToTel", di.TellPhone);//付款方电话
  6796. marks.Add("Date", DateTime.Now.ToString("yyyy-MM-dd"));//导出时间
  6797. marks.Add("Team", di.VisitCountry.Replace(" ", "、"));//团队名称
  6798. marks.Add("TontractTime", (di.VisitDate).ToString("yyyy年MM月dd日"));//付款日期
  6799. marks.Add("PayDay", (di.PayDay).ToString());//付款预期
  6800. marks.Add("PaymentMoney", (di.PaymentMoney).ToString("#0.00"));//付款金额
  6801. marks.Add("WeChat", di.WeChatNo ?? "");//微信号
  6802. marks.Add("PayItemContent", itemStr);//详细信息
  6803. marks.Add("Total", TotalPrice.ToString("F2"));//合计
  6804. #endregion
  6805. ////注
  6806. //if (doc.Range.Bookmarks["Attention"] != null)
  6807. //{
  6808. // Bookmark mark = doc.Range.Bookmarks["Attention"];
  6809. // mark.Text = frList[0].Attention;
  6810. //}
  6811. foreach (var item in marks.Keys)
  6812. {
  6813. if (doc.Range.Bookmarks[item] != null)
  6814. {
  6815. Bookmark mark = doc.Range.Bookmarks[item];
  6816. mark.Text = marks[item];
  6817. }
  6818. }
  6819. byte[] bytes = null;
  6820. using (MemoryStream stream = new MemoryStream())
  6821. {
  6822. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  6823. bytes = stream.ToArray();
  6824. }
  6825. //doc.Save((AppSettingsHelper.Get("WordBasePath") + "Template/") + strFileName);
  6826. return Ok(JsonView(true, "", new
  6827. {
  6828. Data = bytes,
  6829. strFileName,
  6830. }));
  6831. }
  6832. else
  6833. {
  6834. return Ok(JsonView(false, "团组信息不存在!"));
  6835. }
  6836. }
  6837. /// <summary>
  6838. /// 导出团组成本
  6839. /// </summary>
  6840. /// <param name="dto"></param>
  6841. /// <returns></returns>
  6842. [HttpPost]
  6843. public async Task<IActionResult> ExportGroupCostExcelFile(GroupCostExportExcelFile dto)
  6844. {
  6845. var jw = JsonView(false);
  6846. if (dto.Diid == 0)
  6847. {
  6848. return Ok(JsonView(false, "请传递团组id"));
  6849. }
  6850. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  6851. if (deleInfo.Code != 0)
  6852. {
  6853. return Ok(JsonView(false, "团组信息查询失败!"));
  6854. }
  6855. var di = deleInfo.Data as DelegationInfoWebView;
  6856. if (di == null)
  6857. {
  6858. return Ok(JsonView(false, "团组信息查询失败!"));
  6859. }
  6860. List<GroupCost_Excel> List_GC1 = new List<GroupCost_Excel>();
  6861. WorkbookDesigner designer = new WorkbookDesigner();
  6862. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + ("Template/团组-成本.xls"));
  6863. var List_GC = _GroupCostRepository.GetAllByDiid(dto.Diid);
  6864. for (int i = 0; i < List_GC.Count; i++)
  6865. {
  6866. GroupCost_Excel gc = new GroupCost_Excel();
  6867. gc.Id = List_GC[i].Id;
  6868. gc.Diid = List_GC[i].Diid.ToString();
  6869. gc.DAY = List_GC[i].DAY;
  6870. string week = "";
  6871. if (!string.IsNullOrEmpty(List_GC[i].Date.Trim()))
  6872. week = CultureInfo.CurrentCulture.DateTimeFormat.GetDayName(Convert.ToDateTime(List_GC[i].Date).DayOfWeek);
  6873. gc.Date = (List_GC[i].Date + "\n" + week).ToString();
  6874. gc.ITIN = List_GC[i].ITIN;
  6875. gc.CarType = List_GC[i].CarType;
  6876. gc.CarTiming = List_GC[i].CarTiming.ToString() == "0" ? "/" : List_GC[i].CarTiming.ToString();
  6877. gc.CarCost = List_GC[i].CarCost.ToString() == "0" ? "/" : List_GC[i].CarCost.ToString();
  6878. gc.CarNumber = List_GC[i].CarNumber.ToString() == "0" ? "/" : List_GC[i].CarNumber.ToString();
  6879. gc.TGS = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGS.ToString();
  6880. gc.TGWH = List_GC[i].TGWH.ToString() == "0" ? "/" : List_GC[i].TGWH.ToString();
  6881. gc.TGN = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGN.ToString();
  6882. gc.TGOF = List_GC[i].TGOF.ToString() == "0" ? "/" : List_GC[i].TGOF.ToString();
  6883. gc.TGM = List_GC[i].TGM.ToString() == "0" ? "/" : List_GC[i].TGM.ToString();
  6884. gc.TGA = List_GC[i].TGA.ToString() == "0" ? "/" : List_GC[i].TGA.ToString();
  6885. gc.TGTF = List_GC[i].TGTF.ToString() == "0" ? "/" : List_GC[i].TGTF.ToString();
  6886. gc.TGEF = List_GC[i].TGEF.ToString() == "0" ? "/" : List_GC[i].TGEF.ToString();
  6887. gc.CFS = List_GC[i].CFS.ToString() == "0" ? "/" : List_GC[i].CFS.ToString();
  6888. gc.CFM = List_GC[i].CFM.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  6889. gc.CFOF = List_GC[i].CFOF.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  6890. gc.B = List_GC[i].B.ToString() == "0" ? "/" : List_GC[i].B.ToString();
  6891. gc.L = List_GC[i].L.ToString() == "0" ? "/" : List_GC[i].L.ToString();
  6892. gc.D = List_GC[i].D.ToString() == "0" ? "/" : List_GC[i].D.ToString();
  6893. gc.TBR = List_GC[i].TBR.ToString() == "0" ? "/" : List_GC[i].TBR.ToString();
  6894. gc.SGR = List_GC[i].SGR.ToString() == "0" ? "/" : List_GC[i].SGR.ToString();
  6895. gc.JS_ES = List_GC[i].JS_ES.ToString() == "0" ? "/" : List_GC[i].JS_ES.ToString();
  6896. gc.Suite = List_GC[i].Suite.ToString() == "0" ? "/" : List_GC[i].Suite.ToString();
  6897. gc.ACCON = List_GC[i].ACCON.ToString() == "0" ? "/" : List_GC[i].ACCON.ToString();
  6898. gc.TV = List_GC[i].TV.ToString() == "0" ? "/" : List_GC[i].TV.ToString();
  6899. gc.iL = List_GC[i].iL.ToString() == "0" ? "/" : List_GC[i].iL.ToString();
  6900. gc.IF = List_GC[i].IF.ToString() == "0" ? "/" : List_GC[i].IF.ToString();
  6901. gc.EF = List_GC[i].EF.ToString() == "0" ? "/" : List_GC[i].EF.ToString();
  6902. gc.B_R_F = List_GC[i].B_R_F.ToString() == "0" ? "/" : List_GC[i].B_R_F.ToString();
  6903. gc.TE = List_GC[i].TE.ToString() == "0" ? "/" : List_GC[i].TE.ToString();
  6904. gc.TGTips = List_GC[i].TGTips.ToString() == "0" ? "/" : List_GC[i].TGTips.ToString();
  6905. gc.DRVTips = List_GC[i].DRVTips.ToString() == "0" ? "/" : List_GC[i].DRVTips.ToString();
  6906. gc.PC = List_GC[i].PC.ToString() == "0" ? "/" : List_GC[i].PC.ToString();
  6907. gc.TLF = List_GC[i].TLF.ToString() == "0" ? "/" : List_GC[i].TLF.ToString();
  6908. gc.ECT = List_GC[i].ECT.ToString() == "0" ? "/" : List_GC[i].ECT.ToString();
  6909. List_GC1.Add(gc);
  6910. }
  6911. var dt = CommonFun.GetDataTableFromIList(List_GC1);
  6912. dt.TableName = "TB";
  6913. //报表标题等不用dt的值
  6914. designer.SetDataSource("TeamName", dto.title.TeamName);
  6915. designer.SetDataSource("Pnumber", dto.title.GroupNumber);
  6916. designer.SetDataSource("Tax", dto.title.Tax);
  6917. //designer.SetDataSource("FFYS", lblHotelCB.Text);
  6918. designer.SetDataSource("Currency", dto.title.Currency);
  6919. //designer.SetDataSource("HotelXS", txtHotelXS.Text);
  6920. designer.SetDataSource("Rate", dto.title.Rate);
  6921. var hotels = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(dto.Diid);
  6922. var Aparams = hotels.Find(x => x.Type == "Default");
  6923. if (Aparams == null)
  6924. {
  6925. return Ok(jw);
  6926. }
  6927. //酒店数量
  6928. var txtSGRNumber = Aparams.SGR.ToString();
  6929. var txtTBRNumber = Aparams.TBR.ToString();
  6930. var txtJSESNumber = Aparams.JSES.ToString();
  6931. var txtSUITENumbe = Aparams.SUITE.ToString();
  6932. if (dto.costType == "B")
  6933. {
  6934. Aparams = hotels.Find(x => x.Type == "A");
  6935. var Bparams = hotels.Find(x => x.Type == "B");
  6936. if (Aparams == null || Bparams == null)
  6937. {
  6938. return Ok(jw);
  6939. }
  6940. txtSGRNumber = "A段人数:" + Aparams.SGR.ToString() + " B段人数:" + Bparams.SGR.ToString();
  6941. txtTBRNumber = "A段人数:" + Aparams.TBR.ToString() + " B段人数:" + Bparams.TBR.ToString();
  6942. txtJSESNumber = "A段人数:" + Aparams.JSES.ToString() + " B段人数:" + Bparams.JSES.ToString();
  6943. txtSUITENumbe = "A段人数:" + Aparams.SUITE.ToString() + " B段人数:" + Bparams.SUITE.ToString();
  6944. }
  6945. designer.SetDataSource("SGRNumber", txtSGRNumber);
  6946. designer.SetDataSource("TBRNumber", txtTBRNumber);
  6947. designer.SetDataSource("JSESNumber", txtJSESNumber);
  6948. designer.SetDataSource("SUITENumber", txtSUITENumbe);
  6949. var ws = designer.Workbook.Worksheets[0];
  6950. int Row = List_GC.Count;
  6951. int startIndex = 11;
  6952. int HideRows = 0;
  6953. List<int> hideRowsList = new List<int>();
  6954. decimal TzZCB2 = 0.00M, TzZLR2 = 0.00M, TzZBJ2 = 0.00M;
  6955. #region A段left数据
  6956. var left = dto.leftInfo.Find(x => x.Type == "A");
  6957. if (left == null)
  6958. {
  6959. return Ok(jw);
  6960. }
  6961. var leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("签证"));
  6962. if (leftBindData != null)
  6963. {
  6964. designer.SetDataSource("VisaDRCB", leftBindData.cb);
  6965. designer.SetDataSource("VisaRS", leftBindData.rs);
  6966. designer.SetDataSource("VisaXS", leftBindData.xs);
  6967. designer.SetDataSource("VisaZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6968. designer.SetDataSource("VisaDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6969. designer.SetDataSource("VisaZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6970. designer.SetDataSource("VisaDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6971. designer.SetDataSource("VisaZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6972. }
  6973. else
  6974. {
  6975. hideRowsList.Add(Row + startIndex + HideRows);
  6976. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6977. }
  6978. HideRows += 2;
  6979. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("保险"));
  6980. if (leftBindData != null)
  6981. {
  6982. designer.SetDataSource("BXDRCB", leftBindData.cb);
  6983. designer.SetDataSource("BXRS", leftBindData.rs);
  6984. designer.SetDataSource("BXXS", leftBindData.xs);
  6985. designer.SetDataSource("BXZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6986. designer.SetDataSource("BXDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6987. designer.SetDataSource("BXZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6988. designer.SetDataSource("BXDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6989. designer.SetDataSource("BXZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6990. }
  6991. else
  6992. {
  6993. hideRowsList.Add(Row + startIndex + HideRows);
  6994. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6995. }
  6996. HideRows += 2;
  6997. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  6998. if (leftBindData != null)
  6999. {
  7000. designer.SetDataSource("HSDRCB", leftBindData.cb);
  7001. designer.SetDataSource("HSRS", leftBindData.rs);
  7002. designer.SetDataSource("HSXS", leftBindData.xs);
  7003. designer.SetDataSource("HSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7004. designer.SetDataSource("HSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7005. designer.SetDataSource("HSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7006. designer.SetDataSource("HSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7007. designer.SetDataSource("HSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7008. }
  7009. else
  7010. {
  7011. hideRowsList.Add(Row + startIndex + HideRows);
  7012. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7013. }
  7014. HideRows += 2;
  7015. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  7016. if (leftBindData != null)
  7017. {
  7018. designer.SetDataSource("JPJJCCB", leftBindData.cb);
  7019. designer.SetDataSource("JPJJCPnum", leftBindData.rs);
  7020. designer.SetDataSource("JPJJCXS", leftBindData.xs);
  7021. designer.SetDataSource("JPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7022. designer.SetDataSource("JPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7023. designer.SetDataSource("JPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7024. designer.SetDataSource("JPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7025. designer.SetDataSource("JPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7026. }
  7027. else
  7028. {
  7029. hideRowsList.Add(Row + startIndex + HideRows);
  7030. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7031. }
  7032. HideRows += 2;
  7033. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  7034. if (leftBindData != null)
  7035. {
  7036. designer.SetDataSource("JPGWCCB", leftBindData.cb);
  7037. designer.SetDataSource("JPGWCPNum", leftBindData.rs);
  7038. designer.SetDataSource("JPGWCXS", leftBindData.xs);
  7039. designer.SetDataSource("JPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7040. designer.SetDataSource("JPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7041. designer.SetDataSource("JPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7042. designer.SetDataSource("JPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7043. designer.SetDataSource("JPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7044. }
  7045. else
  7046. {
  7047. hideRowsList.Add(Row + startIndex + HideRows);
  7048. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7049. }
  7050. HideRows += 2;
  7051. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  7052. if (leftBindData != null)
  7053. {
  7054. ////TBR
  7055. designer.SetDataSource("HotelTBRDRCB", leftBindData.cb);
  7056. designer.SetDataSource("HotelTBRRS", leftBindData.rs);
  7057. designer.SetDataSource("HotelTBRXS", leftBindData.xs);
  7058. designer.SetDataSource("HotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7059. designer.SetDataSource("HotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7060. designer.SetDataSource("HotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7061. designer.SetDataSource("HotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7062. designer.SetDataSource("HotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7063. }
  7064. else
  7065. {
  7066. hideRowsList.Add(Row + startIndex + HideRows);
  7067. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7068. }
  7069. HideRows += 2;
  7070. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  7071. if (leftBindData != null)
  7072. {
  7073. ////SGR
  7074. designer.SetDataSource("HotelSGRDRCB", leftBindData.cb);
  7075. designer.SetDataSource("HotelSGRRS", leftBindData.rs);
  7076. designer.SetDataSource("HotelSGRXS", leftBindData.xs);
  7077. designer.SetDataSource("HotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7078. designer.SetDataSource("HotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7079. designer.SetDataSource("HotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7080. designer.SetDataSource("HotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7081. designer.SetDataSource("HotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7082. }
  7083. else
  7084. {
  7085. hideRowsList.Add(Row + startIndex + HideRows);
  7086. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7087. }
  7088. HideRows += 2;
  7089. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  7090. if (leftBindData != null)
  7091. {
  7092. ////JS/ES
  7093. designer.SetDataSource("HotelJSESDRCB", leftBindData.cb);
  7094. designer.SetDataSource("HotelJSESRS", leftBindData.rs);
  7095. designer.SetDataSource("HotelJSESXS", leftBindData.xs);
  7096. designer.SetDataSource("HotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7097. designer.SetDataSource("HotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7098. designer.SetDataSource("HotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7099. designer.SetDataSource("HotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7100. designer.SetDataSource("HotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7101. }
  7102. else
  7103. {
  7104. hideRowsList.Add(Row + startIndex + HideRows);
  7105. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7106. }
  7107. HideRows += 2;
  7108. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  7109. if (leftBindData != null)
  7110. {
  7111. ////SUITE
  7112. designer.SetDataSource("HotelSUITEDRCB", leftBindData.cb);
  7113. designer.SetDataSource("HotelSUITERS", leftBindData.rs);
  7114. designer.SetDataSource("HotelSUITEXS", leftBindData.xs);
  7115. designer.SetDataSource("HotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7116. designer.SetDataSource("HotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7117. designer.SetDataSource("HotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7118. designer.SetDataSource("HotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7119. designer.SetDataSource("HotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7120. }
  7121. else
  7122. {
  7123. hideRowsList.Add(Row + startIndex + HideRows);
  7124. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7125. }
  7126. HideRows += 2;
  7127. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  7128. if (leftBindData != null)
  7129. {
  7130. designer.SetDataSource("DJDRCB", leftBindData.cb);
  7131. designer.SetDataSource("DJRS", leftBindData.rs);
  7132. designer.SetDataSource("DJXS", leftBindData.xs);
  7133. designer.SetDataSource("DJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7134. designer.SetDataSource("DJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7135. designer.SetDataSource("DJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7136. designer.SetDataSource("DJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7137. designer.SetDataSource("DJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7138. }
  7139. else
  7140. {
  7141. hideRowsList.Add(Row + startIndex + HideRows);
  7142. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7143. }
  7144. HideRows += 2;
  7145. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  7146. if (leftBindData != null)
  7147. {
  7148. designer.SetDataSource("HCPCB", leftBindData.cb);
  7149. designer.SetDataSource("HCPRS", leftBindData.rs);
  7150. designer.SetDataSource("HCPXS", leftBindData.xs);
  7151. designer.SetDataSource("HCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7152. designer.SetDataSource("HCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7153. designer.SetDataSource("HCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7154. designer.SetDataSource("HCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7155. designer.SetDataSource("HCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7156. }
  7157. else
  7158. {
  7159. hideRowsList.Add(Row + startIndex + HideRows);
  7160. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7161. }
  7162. HideRows += 2;
  7163. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  7164. if (leftBindData != null)
  7165. {
  7166. designer.SetDataSource("CPCB", leftBindData.cb);
  7167. designer.SetDataSource("CPRS", leftBindData.rs);
  7168. designer.SetDataSource("CPXS", leftBindData.xs);
  7169. designer.SetDataSource("CPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7170. designer.SetDataSource("CPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7171. designer.SetDataSource("CPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7172. designer.SetDataSource("CPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7173. designer.SetDataSource("CPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7174. }
  7175. else
  7176. {
  7177. hideRowsList.Add(Row + startIndex + HideRows);
  7178. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7179. }
  7180. HideRows += 2;
  7181. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  7182. if (leftBindData != null)
  7183. {
  7184. designer.SetDataSource("GWDRCD", leftBindData.cb);
  7185. designer.SetDataSource("GWRS", leftBindData.rs);
  7186. designer.SetDataSource("GWXS", leftBindData.xs);
  7187. designer.SetDataSource("GWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7188. designer.SetDataSource("GWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7189. designer.SetDataSource("GWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7190. designer.SetDataSource("GWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7191. designer.SetDataSource("GWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7192. }
  7193. else
  7194. {
  7195. hideRowsList.Add(Row + startIndex + HideRows);
  7196. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7197. }
  7198. HideRows += 2;
  7199. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  7200. if (leftBindData != null)
  7201. {
  7202. designer.SetDataSource("LYJDRCB", leftBindData.cb);
  7203. designer.SetDataSource("LYJRS", leftBindData.rs);
  7204. designer.SetDataSource("LYJXS", leftBindData.xs);
  7205. designer.SetDataSource("LYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7206. designer.SetDataSource("LYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7207. designer.SetDataSource("LYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7208. designer.SetDataSource("LYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7209. designer.SetDataSource("LYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7210. }
  7211. else
  7212. {
  7213. hideRowsList.Add(Row + startIndex + HideRows);
  7214. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7215. }
  7216. #endregion
  7217. #region A段Right信息
  7218. var right = dto.rightInfo.Find(x => x.Type == "A");
  7219. if (right == null)
  7220. {
  7221. return Ok(jw);
  7222. }
  7223. HideRows += 4;
  7224. var rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  7225. if (rightBindData != null)
  7226. {
  7227. //经济舱 + 双人间 TBR
  7228. designer.SetDataSource("lblJJCTBRDRCB", rightBindData.cb);
  7229. designer.SetDataSource("txtJJCTBRRS", rightBindData.rs);
  7230. designer.SetDataSource("lblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7231. designer.SetDataSource("lblJJCTBRDRBJ", rightBindData.bj);
  7232. designer.SetDataSource("lblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7233. designer.SetDataSource("lblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7234. designer.SetDataSource("lblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7235. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7236. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7237. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7238. }
  7239. else
  7240. {
  7241. hideRowsList.Add(Row + startIndex + HideRows);
  7242. }
  7243. HideRows += 2;
  7244. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  7245. if (rightBindData != null)
  7246. {
  7247. //经济舱 + 单人间 SGR
  7248. designer.SetDataSource("lblJJCSGRDRCB", rightBindData.cb);
  7249. designer.SetDataSource("txtJJCSGRRS", rightBindData.rs);
  7250. designer.SetDataSource("lblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7251. designer.SetDataSource("lblJJCSGRDRBJ", rightBindData.bj);
  7252. designer.SetDataSource("lblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7253. designer.SetDataSource("lblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7254. designer.SetDataSource("lblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7255. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7256. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7257. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7258. }
  7259. else
  7260. {
  7261. hideRowsList.Add(Row + startIndex + HideRows);
  7262. }
  7263. HideRows += 2;
  7264. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  7265. if (rightBindData != null)
  7266. {
  7267. //公务舱 + 单人间 SGR
  7268. designer.SetDataSource("lblGWCSGRCB", rightBindData.cb);
  7269. designer.SetDataSource("lblGWCSGRRS", rightBindData.rs);
  7270. designer.SetDataSource("lblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7271. designer.SetDataSource("lblGWCSGRDRBJ", rightBindData.bj);
  7272. designer.SetDataSource("lblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7273. designer.SetDataSource("lblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7274. designer.SetDataSource("lblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7275. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7276. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7277. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7278. }
  7279. else
  7280. {
  7281. hideRowsList.Add(Row + startIndex + HideRows);
  7282. }
  7283. HideRows += 2;
  7284. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7285. if (rightBindData != null)
  7286. {
  7287. //公务舱 + 小套房 JSES
  7288. designer.SetDataSource("lblGWCJSESDRCB", rightBindData.cb);
  7289. designer.SetDataSource("txtGWCJSESRS", rightBindData.rs);
  7290. designer.SetDataSource("lblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7291. designer.SetDataSource("lblGWCJSESDRBJ", rightBindData.bj);
  7292. designer.SetDataSource("lblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7293. designer.SetDataSource("lblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7294. designer.SetDataSource("lblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7295. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7296. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7297. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7298. }
  7299. else
  7300. {
  7301. hideRowsList.Add(Row + startIndex + HideRows);
  7302. }
  7303. HideRows += 2;
  7304. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  7305. if (rightBindData != null)
  7306. {
  7307. //公务舱 + 小套房 JSES
  7308. designer.SetDataSource("lblGWCSUITEDRCB", rightBindData.cb);
  7309. designer.SetDataSource("txtGWCSUITERS", rightBindData.rs);
  7310. designer.SetDataSource("lblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7311. designer.SetDataSource("lblGWCSUITEDRBJ", rightBindData.bj);
  7312. designer.SetDataSource("lblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7313. designer.SetDataSource("lblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7314. designer.SetDataSource("lblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7315. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7316. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7317. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7318. }
  7319. else
  7320. {
  7321. hideRowsList.Add(Row + startIndex + HideRows);
  7322. }
  7323. HideRows += 2;
  7324. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7325. if (rightBindData != null)
  7326. {
  7327. //经济舱 + 大套房
  7328. designer.SetDataSource("lblJJCSUITEDRCB", rightBindData.cb);
  7329. designer.SetDataSource("txtJJCSUITERS", rightBindData.rs);
  7330. designer.SetDataSource("lblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7331. designer.SetDataSource("lblJJCSUITEDRBJ", rightBindData.bj);
  7332. designer.SetDataSource("lblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7333. designer.SetDataSource("lblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7334. designer.SetDataSource("lblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7335. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7336. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7337. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7338. }
  7339. else
  7340. {
  7341. hideRowsList.Add(Row + startIndex + HideRows);
  7342. }
  7343. #endregion
  7344. #region B段标题清空
  7345. designer.SetDataSource("CostBDRCB", "");
  7346. designer.SetDataSource("CostBRS", "");
  7347. designer.SetDataSource("CostBXS", "");
  7348. designer.SetDataSource("CostBZCB", "");
  7349. designer.SetDataSource("CostBDRBJ", "");
  7350. designer.SetDataSource("CostBZBJ", "");
  7351. designer.SetDataSource("CostBDRLR", "");
  7352. designer.SetDataSource("CostBZLR", "");
  7353. designer.SetDataSource("CostBDRCBOM", "");
  7354. designer.SetDataSource("CostBRSOM", "");
  7355. designer.SetDataSource("CostBZCBOM", "");
  7356. designer.SetDataSource("CostBDRBJOM", "");
  7357. designer.SetDataSource("CostBZBJOM", "");
  7358. designer.SetDataSource("CostBDRLROM", "");
  7359. designer.SetDataSource("CostBZLROM", "");
  7360. #endregion
  7361. designer.SetDataSource("HotelTBRName", "酒店TBR单间成本(CNY)");
  7362. designer.SetDataSource("HotelSGRName", "酒店SGR单间成本(CNY)");
  7363. designer.SetDataSource("HotelJSESName", "酒店JSES单间成本(CNY)");
  7364. designer.SetDataSource("HotelSUITEName", "酒店SUITE单间成本(CNY)");
  7365. designer.SetDataSource("DJName", "地接(CNY)");
  7366. designer.SetDataSource("HCPName", "地接-火车票(CNY)");
  7367. designer.SetDataSource("CPName", "地接-船票(CNY)");
  7368. designer.SetDataSource("GWName", "公务(CNY)");
  7369. designer.SetDataSource("YQHName", "邀请函(CNY)");
  7370. designer.SetDataSource("LYJName", "零用金(CNY)");
  7371. designer.SetDataSource("HSName", "核酸检测(CNY)");
  7372. designer.SetDataSource("AirGWCName", "机票-公务舱(CNY)");
  7373. designer.SetDataSource("AirJJCName", "机票-经济舱(CNY)");
  7374. designer.SetDataSource("BXName", "保险(CNY)");
  7375. designer.SetDataSource("VisaName", "签证(CNY)");
  7376. #region B段基本数据
  7377. if (dto.costType == "B")
  7378. {
  7379. left = dto.leftInfo.Find(x => x.Type == "B");
  7380. if (left == null)
  7381. {
  7382. return Ok(jw);
  7383. }
  7384. #region B段left数据
  7385. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  7386. if (leftBindData != null)
  7387. {
  7388. designer.SetDataSource("BHSDRCB", leftBindData.cb);
  7389. designer.SetDataSource("BHSRS", leftBindData.rs);
  7390. designer.SetDataSource("BHSXS", leftBindData.xs);
  7391. designer.SetDataSource("BHSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7392. designer.SetDataSource("BHSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7393. designer.SetDataSource("BHSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7394. designer.SetDataSource("BHSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7395. designer.SetDataSource("BHSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7396. }
  7397. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  7398. if (leftBindData != null)
  7399. {
  7400. designer.SetDataSource("BJPJJCCB", leftBindData.cb);
  7401. designer.SetDataSource("BJPJJCPnum", leftBindData.rs);
  7402. designer.SetDataSource("BJPJJCXS", leftBindData.xs);
  7403. designer.SetDataSource("BJPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7404. designer.SetDataSource("BJPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7405. designer.SetDataSource("BJPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7406. designer.SetDataSource("BJPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7407. designer.SetDataSource("BJPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7408. }
  7409. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  7410. if (leftBindData != null)
  7411. {
  7412. designer.SetDataSource("BJPGWCCB", leftBindData.cb);
  7413. designer.SetDataSource("BJPGWCPNum", leftBindData.rs);
  7414. designer.SetDataSource("BJPGWCXS", leftBindData.xs);
  7415. designer.SetDataSource("BJPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7416. designer.SetDataSource("BJPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7417. designer.SetDataSource("BJPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7418. designer.SetDataSource("BJPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7419. designer.SetDataSource("BJPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7420. }
  7421. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  7422. if (leftBindData != null)
  7423. {
  7424. designer.SetDataSource("BHCPCB", leftBindData.cb);
  7425. designer.SetDataSource("BHCPRS", leftBindData.rs);
  7426. designer.SetDataSource("BHCPXS", leftBindData.xs);
  7427. designer.SetDataSource("BHCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7428. designer.SetDataSource("BHCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7429. designer.SetDataSource("BHCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7430. designer.SetDataSource("BHCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7431. designer.SetDataSource("BHCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7432. }
  7433. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  7434. if (leftBindData != null)
  7435. {
  7436. designer.SetDataSource("BCPCB", leftBindData.cb);
  7437. designer.SetDataSource("BCPRS", leftBindData.rs);
  7438. designer.SetDataSource("BCPXS", leftBindData.xs);
  7439. designer.SetDataSource("BCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7440. designer.SetDataSource("BCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7441. designer.SetDataSource("BCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7442. designer.SetDataSource("BCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7443. designer.SetDataSource("BCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7444. }
  7445. //TBR
  7446. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  7447. if (leftBindData != null)
  7448. {
  7449. designer.SetDataSource("BHotelTBRDRCB", leftBindData.cb);
  7450. designer.SetDataSource("BHotelTBRRS", leftBindData.rs);
  7451. designer.SetDataSource("BHotelTBRXS", leftBindData.xs);
  7452. designer.SetDataSource("BHotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7453. designer.SetDataSource("BHotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7454. designer.SetDataSource("BHotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7455. designer.SetDataSource("BHotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7456. designer.SetDataSource("BHotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7457. }
  7458. //SGR
  7459. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  7460. if (leftBindData != null)
  7461. {
  7462. designer.SetDataSource("BHotelSGRDRCB", leftBindData.cb);
  7463. designer.SetDataSource("BHotelSGRRS", leftBindData.rs);
  7464. designer.SetDataSource("BHotelSGRXS", leftBindData.xs);
  7465. designer.SetDataSource("BHotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7466. designer.SetDataSource("BHotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7467. designer.SetDataSource("BHotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7468. designer.SetDataSource("BHotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7469. designer.SetDataSource("BHotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7470. }
  7471. //JS/ES
  7472. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  7473. if (leftBindData != null)
  7474. {
  7475. designer.SetDataSource("BHotelJSESDRCB", leftBindData.cb);
  7476. designer.SetDataSource("BHotelJSESRS", leftBindData.rs);
  7477. designer.SetDataSource("BHotelJSESXS", leftBindData.xs);
  7478. designer.SetDataSource("BHotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7479. designer.SetDataSource("BHotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7480. designer.SetDataSource("BHotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7481. designer.SetDataSource("BHotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7482. designer.SetDataSource("BHotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7483. }
  7484. //SUITE
  7485. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  7486. if (leftBindData != null)
  7487. {
  7488. designer.SetDataSource("BHotelSUITEDRCB", leftBindData.cb);
  7489. designer.SetDataSource("BHotelSUITERS", leftBindData.rs);
  7490. designer.SetDataSource("BHotelSUITEXS", leftBindData.xs);
  7491. designer.SetDataSource("BHotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7492. designer.SetDataSource("BHotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7493. designer.SetDataSource("BHotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7494. designer.SetDataSource("BHotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7495. designer.SetDataSource("BHotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7496. }
  7497. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  7498. if (leftBindData != null)
  7499. {
  7500. designer.SetDataSource("BDJDRCB", leftBindData.cb);
  7501. designer.SetDataSource("BDJRS", leftBindData.rs);
  7502. designer.SetDataSource("BDJXS", leftBindData.xs);
  7503. designer.SetDataSource("BDJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7504. designer.SetDataSource("BDJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7505. designer.SetDataSource("BDJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7506. designer.SetDataSource("BDJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7507. designer.SetDataSource("BDJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7508. }
  7509. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  7510. if (leftBindData != null)
  7511. {
  7512. designer.SetDataSource("BGWDRCD", leftBindData.cb);
  7513. designer.SetDataSource("BGWRS", leftBindData.rs);
  7514. designer.SetDataSource("BGWXS", leftBindData.xs);
  7515. designer.SetDataSource("BGWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7516. designer.SetDataSource("BGWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7517. designer.SetDataSource("BGWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7518. designer.SetDataSource("BGWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7519. designer.SetDataSource("BGWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7520. }
  7521. #region 优化方案
  7522. //Dictionary<string, object> excelBind = new Dictionary<string, object>();
  7523. //excelBind.Add("零用金", new {
  7524. //cb="",
  7525. //rs="",
  7526. //xs ="",
  7527. //zcb = "",
  7528. //});
  7529. #endregion
  7530. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  7531. if (leftBindData != null)
  7532. {
  7533. designer.SetDataSource("BLYJDRCB", leftBindData.cb);
  7534. designer.SetDataSource("BLYJRS", leftBindData.rs);
  7535. designer.SetDataSource("BLYJXS", leftBindData.xs);
  7536. designer.SetDataSource("BLYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7537. designer.SetDataSource("BLYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7538. designer.SetDataSource("BLYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7539. designer.SetDataSource("BLYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7540. designer.SetDataSource("BLYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7541. }
  7542. #endregion
  7543. #region B段Right信息
  7544. right = dto.rightInfo.Find(x => x.Type == "B");
  7545. if (right == null)
  7546. {
  7547. return Ok(jw);
  7548. }
  7549. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  7550. if (rightBindData != null)
  7551. {
  7552. //经济舱 + 双人间 TBR
  7553. designer.SetDataSource("BlblJJCTBRDRCB", rightBindData.cb);
  7554. designer.SetDataSource("BtxtJJCTBRRS", rightBindData.rs);
  7555. designer.SetDataSource("BlblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7556. designer.SetDataSource("BlblJJCTBRDRBJ", rightBindData.bj);
  7557. designer.SetDataSource("BlblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7558. designer.SetDataSource("BlblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7559. designer.SetDataSource("BlblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7560. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7561. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7562. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7563. }
  7564. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  7565. if (rightBindData != null)
  7566. {
  7567. //经济舱 + 单人间 SGR
  7568. designer.SetDataSource("BlblJJCSGRDRCB", rightBindData.cb);
  7569. designer.SetDataSource("BtxtJJCSGRRS", rightBindData.rs);
  7570. designer.SetDataSource("BlblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7571. designer.SetDataSource("BlblJJCSGRDRBJ", rightBindData.bj);
  7572. designer.SetDataSource("BlblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7573. designer.SetDataSource("BlblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7574. designer.SetDataSource("BlblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7575. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7576. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7577. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7578. }
  7579. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  7580. if (rightBindData != null)
  7581. {
  7582. //公务舱 + 单人间 SGR
  7583. designer.SetDataSource("BlblGWCSGRCB", rightBindData.cb);
  7584. designer.SetDataSource("BlblGWCSGRRS", rightBindData.rs);
  7585. designer.SetDataSource("BlblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7586. designer.SetDataSource("BlblGWCSGRDRBJ", rightBindData.bj);
  7587. designer.SetDataSource("BlblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7588. designer.SetDataSource("BlblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7589. designer.SetDataSource("BlblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7590. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7591. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7592. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7593. }
  7594. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7595. if (rightBindData != null)
  7596. {
  7597. //公务舱 + 小套房 JSES
  7598. designer.SetDataSource("BlblGWCJSESDRCB", rightBindData.cb);
  7599. designer.SetDataSource("BtxtGWCJSESRS", rightBindData.rs);
  7600. designer.SetDataSource("BlblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7601. designer.SetDataSource("BlblGWCJSESDRBJ", rightBindData.bj);
  7602. designer.SetDataSource("BlblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7603. designer.SetDataSource("BlblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7604. designer.SetDataSource("BlblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7605. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7606. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7607. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7608. }
  7609. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  7610. if (rightBindData != null)
  7611. {
  7612. //公务舱 + 小套房 JSES
  7613. designer.SetDataSource("BlblGWCSUITEDRCB", rightBindData.cb);
  7614. designer.SetDataSource("BtxtGWCSUITERS", rightBindData.rs);
  7615. designer.SetDataSource("BlblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7616. designer.SetDataSource("BlblGWCSUITEDRBJ", rightBindData.bj);
  7617. designer.SetDataSource("BlblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7618. designer.SetDataSource("BlblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7619. designer.SetDataSource("BlblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7620. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7621. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7622. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7623. }
  7624. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7625. if (rightBindData != null)
  7626. {
  7627. //经济舱 + 大套房
  7628. designer.SetDataSource("BlblJJCSUITEDRCB", rightBindData.cb);
  7629. designer.SetDataSource("BtxtJJCSUITERS", rightBindData.rs);
  7630. designer.SetDataSource("BlblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7631. designer.SetDataSource("BlblJJCSUITEDRBJ", rightBindData.bj);
  7632. designer.SetDataSource("BlblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7633. designer.SetDataSource("BlblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7634. designer.SetDataSource("BlblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7635. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7636. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7637. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7638. }
  7639. #endregion
  7640. #region 标题
  7641. designer.SetDataSource("CostBDRCB", "单人成本");
  7642. designer.SetDataSource("CostBRS", "人数");
  7643. designer.SetDataSource("CostBXS", "系数");
  7644. designer.SetDataSource("CostBZCB", "总成本");
  7645. designer.SetDataSource("CostBDRBJ", "单人报价");
  7646. designer.SetDataSource("CostBZBJ", "总报价");
  7647. designer.SetDataSource("CostBDRLR", "单人利润");
  7648. designer.SetDataSource("CostBZLR", "总利润");
  7649. designer.SetDataSource("CostBDRCBOM", "单人成本");
  7650. designer.SetDataSource("CostBRSOM", "人数");
  7651. designer.SetDataSource("CostBZCBOM", "总成本");
  7652. designer.SetDataSource("CostBDRBJOM", "单人报价");
  7653. designer.SetDataSource("CostBZBJOM", "总报价");
  7654. designer.SetDataSource("CostBDRLROM", "单人利润");
  7655. designer.SetDataSource("CostBZLROM", "总利润");
  7656. #endregion
  7657. }
  7658. #endregion
  7659. designer.SetDataSource("TzZCB2", TzZCB2);
  7660. designer.SetDataSource("TzZBJ2", TzZBJ2);
  7661. designer.SetDataSource("TzZLR2", TzZLR2);
  7662. string[] dataSourceKeys = new string[]
  7663. {
  7664. "VF",
  7665. "TGS",
  7666. "TGOF",
  7667. "TGM",
  7668. "TGA",
  7669. "TGTF",
  7670. "TGEF",
  7671. "CFM",
  7672. "CFOF",
  7673. "B",
  7674. "L",
  7675. "D",
  7676. "TBR",
  7677. "SGR",
  7678. "JSES",
  7679. "Suite",
  7680. "TV",
  7681. "1L",
  7682. "IF",
  7683. "EF",
  7684. "BRF",
  7685. "TE",
  7686. "TGT",
  7687. "DRVT",
  7688. "PC",
  7689. "TLF",
  7690. "ECT"
  7691. };
  7692. foreach (var item in dataSourceKeys)
  7693. {
  7694. var find = dto.titleModel.FirstOrDefault(x => x.label.Replace(" ", "").Replace("/", "") == item);
  7695. if (find != null)
  7696. {
  7697. designer.SetDataSource(item, find.text);
  7698. }
  7699. else
  7700. {
  7701. designer.SetDataSource(item, 0);
  7702. }
  7703. }
  7704. designer.SetDataSource(dt);
  7705. //根据数据源处理生成报表内容
  7706. designer.Process();
  7707. designer.Workbook.Worksheets[0].Name = "清单";
  7708. Worksheet sheet = designer.Workbook.Worksheets[0];
  7709. foreach (var Rowindex in hideRowsList)
  7710. {
  7711. ws.Cells.HideRows(Rowindex, 2);
  7712. }
  7713. byte[] bytes = null;
  7714. string strFileName = di.TeamName + "-团组-成本.xls";
  7715. using (MemoryStream stream = new MemoryStream())
  7716. {
  7717. designer.Workbook.Save(stream, Aspose.Cells.SaveFormat.Xlsx);
  7718. bytes = stream.ToArray();
  7719. }
  7720. return Ok(JsonView(true, "", new
  7721. {
  7722. Data = bytes,
  7723. strFileName,
  7724. }));
  7725. }
  7726. /// <summary>
  7727. /// 导出客户报表
  7728. /// </summary>
  7729. /// <returns></returns>
  7730. [HttpPost]
  7731. public async Task<IActionResult> ExportClientWordFile(ExportClientWordFileDto dto)
  7732. {
  7733. var jw = JsonView(false);
  7734. if (dto.Diid == 0)
  7735. {
  7736. return Ok(JsonView(false, "请传递团组id"));
  7737. }
  7738. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  7739. if (deleInfo.Code != 0)
  7740. {
  7741. return Ok(JsonView(false, "团组信息查询失败!"));
  7742. }
  7743. var di = deleInfo.Data as DelegationInfoWebView;
  7744. if (di == null)
  7745. {
  7746. return Ok(JsonView(false, "团组信息查询失败!"));
  7747. }
  7748. //文件名
  7749. //string strFileName = di.TeamName + "-团组-客户报价.doc";
  7750. //获取模板
  7751. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/团组-客户报价.doc");
  7752. //载入模板
  7753. Document doc = new Document(tmppath);
  7754. Aspose.Words.DocumentBuilder builder = new Aspose.Words.DocumentBuilder(doc);
  7755. Dictionary<string, string> DickeyValue = new Dictionary<string, string>();
  7756. DickeyValue.Add("DickeyValue", di.TeamName); //团组名
  7757. var ParameterList = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(dto.Diid);
  7758. var AParameter = ParameterList.Find(x => x.CostType == "A");
  7759. var BParameter = ParameterList.Find(x => x.CostType == "B");
  7760. if (AParameter == null)
  7761. {
  7762. return Ok(JsonView(false, "系数不存在!"));
  7763. }
  7764. string CarGuides, TzNumber, CarGuides1, Meal, SubsidizedMeals, NightRepair, AttractionsTickets, MiscellaneousFees, ATip, TzHotelDesc, Offcial, PettyCash, Visa, TrainTicket, TicketPrice
  7765. , TzAirDesc, TzZCost;
  7766. CarGuides = TzNumber = CarGuides1 = Meal = SubsidizedMeals = NightRepair = AttractionsTickets = MiscellaneousFees = ATip = TzHotelDesc = Offcial = PettyCash = Visa = TrainTicket = TicketPrice
  7767. = TzAirDesc = TzZCost = string.Empty;
  7768. TzNumber = AParameter.CostTypenumber.ToString();
  7769. CarGuides = "RMB " + (AParameter.DJCB * AParameter.DJXS).ToString("#0.00");
  7770. CarGuides1 = dto.CarGuides1;
  7771. Meal = dto.Meal;
  7772. SubsidizedMeals = dto.SubsidizedMeals;
  7773. NightRepair = dto.NightRepair;
  7774. AttractionsTickets = dto.AttractionsTickets;
  7775. MiscellaneousFees = dto.MiscellaneousFees;
  7776. ATip = dto.ATip;
  7777. TzHotelDesc = "";
  7778. Offcial = "RMB " + (AParameter.GWCB * AParameter.GWXS).ToString("#0.00");
  7779. PettyCash = "RMB " + (AParameter.LYJCB * AParameter.LYJXS).ToString("#0.00");
  7780. Visa = "RMB " + (AParameter.VisaCB * AParameter.VisaXS + AParameter.HSCB * AParameter.HSXS + AParameter.BXCB * AParameter.BXXS).ToString("#0.00");
  7781. TrainTicket = "RMB " + (AParameter.HCPCB * AParameter.HCPXS).ToString("#0.00");
  7782. TicketPrice = "RMB " + (AParameter.CPCB * AParameter.CPXS).ToString("#0.00");
  7783. TzAirDesc = "";
  7784. TzZCost = dto.TzZCost;
  7785. var TzHotelDescArr = new string[] { "SGR", "JSES", "SUITE", "TBR" };
  7786. var TzAirDescArr = new string[] { "经济舱", "公务舱" };
  7787. var index = 1;
  7788. var AinfoArr = dto.leftInfo.Find(x => x.Type == "A");
  7789. foreach (var item in TzHotelDescArr)
  7790. {
  7791. if (AinfoArr != null)
  7792. {
  7793. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7794. if (Ainfo != null)
  7795. {
  7796. if (int.Parse(Ainfo.rs) <= 0)
  7797. {
  7798. continue;
  7799. }
  7800. var hotelText = string.Empty;
  7801. switch (item)
  7802. {
  7803. case "SGR":
  7804. hotelText = "单人间";
  7805. break;
  7806. case "JSES":
  7807. hotelText = "小套房";
  7808. break;
  7809. case "SUITE":
  7810. hotelText = "套房";
  7811. break;
  7812. case "TBR":
  7813. hotelText = "双人间";
  7814. break;
  7815. }
  7816. if (item != "TBR")
  7817. {
  7818. TzHotelDesc += "(" + index + ".) " + hotelText + " " + Ainfo.rs + "间 共" + Ainfo.rs + " " + (decimal.Parse(Ainfo.cb) * decimal.Parse(Ainfo.xs)).ToString("#0.00") + "/人........共RMB " + (decimal.Parse(Ainfo.cb) * decimal.Parse(Ainfo.xs) * decimal.Parse(Ainfo.rs)).ToString("#0.00") + "\n";
  7819. }
  7820. else
  7821. {
  7822. TzHotelDesc += "(" + index + ".) " + hotelText + " " + (int.Parse(Ainfo.rs) / 2) + "间 共" + Ainfo.rs + " " + (decimal.Parse(Ainfo.cb) * decimal.Parse(Ainfo.xs)).ToString("#0.00") + "/人........共RMB " + (decimal.Parse(Ainfo.cb) * decimal.Parse(Ainfo.xs) * decimal.Parse(Ainfo.rs)).ToString("#0.00") + "\n";
  7823. }
  7824. index++;
  7825. }
  7826. }
  7827. }
  7828. index = 1;
  7829. foreach (var item in TzAirDescArr)
  7830. {
  7831. if (AinfoArr != null)
  7832. {
  7833. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7834. if (Ainfo != null)
  7835. {
  7836. if (int.Parse(Ainfo.rs) <= 0)
  7837. {
  7838. continue;
  7839. }
  7840. TzAirDesc += "(" + index + ".) " + item + " " + (decimal.Parse(Ainfo.cb) * decimal.Parse(Ainfo.xs)).ToString("#0.00") + "/人 共" + Ainfo.rs + " ........小计RMB " + (decimal.Parse(Ainfo.cb) * decimal.Parse(Ainfo.xs) * decimal.Parse(Ainfo.rs)).ToString("#0.00") + "\n";
  7841. index++;
  7842. }
  7843. }
  7844. }
  7845. if (dto.costType == "B")
  7846. {
  7847. if (BParameter == null)
  7848. {
  7849. return Ok(JsonView(false, "B段系数不存在!"));
  7850. }
  7851. CarGuides = CarGuides.Insert(0, "A段 ") + " B段 RMB" + (BParameter.DJCB * BParameter.DJXS).ToString("#0.00");
  7852. Offcial = Offcial.Insert(0, "A段 ") + " B段 RMB " + (BParameter.GWCB * BParameter.GWXS).ToString("#0.00");
  7853. PettyCash = PettyCash.Insert(0, "A段 ") + " B段 RMB " + (BParameter.LYJCB * BParameter.LYJXS).ToString("#0.00");
  7854. Visa = Visa.Insert(0, "A段 ") + " B段 RMB " + (BParameter.VisaCB * BParameter.VisaXS + BParameter.HSCB * BParameter.HSXS + BParameter.BXCB * BParameter.BXXS).ToString("#0.00");
  7855. TrainTicket = TrainTicket.Insert(0, "A段 ") + " B段 RMB " + (BParameter.HCPCB * BParameter.HCPXS).ToString("#0.00");
  7856. TicketPrice = TicketPrice.Insert(0, "A段 ") + " B段 RMB " + (BParameter.CPCB * BParameter.CPXS).ToString("#0.00");
  7857. AinfoArr = dto.leftInfo.Find(x => x.Type == "B");
  7858. foreach (var item in TzHotelDescArr)
  7859. {
  7860. if (AinfoArr != null)
  7861. {
  7862. TzHotelDesc += "B段信息 \r\n";
  7863. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7864. if (Ainfo != null)
  7865. {
  7866. if (int.Parse(Ainfo.rs) <= 0)
  7867. {
  7868. continue;
  7869. }
  7870. var hotelText = string.Empty;
  7871. switch (item)
  7872. {
  7873. case "SGR":
  7874. hotelText = "单人间";
  7875. break;
  7876. case "JSES":
  7877. hotelText = "小套房";
  7878. break;
  7879. case "SUITE":
  7880. hotelText = "套房";
  7881. break;
  7882. case "TBR":
  7883. hotelText = "双人间";
  7884. break;
  7885. }
  7886. if (item != "TBR")
  7887. {
  7888. TzHotelDesc += "(" + index + ".) " + hotelText + " " + Ainfo.rs + "间 共" + Ainfo.rs + " " + (decimal.Parse(Ainfo.cb) * decimal.Parse(Ainfo.xs)).ToString("#0.00") + "/人........共RMB " + (decimal.Parse(Ainfo.cb) * decimal.Parse(Ainfo.xs) * decimal.Parse(Ainfo.rs)).ToString("#0.00") + "\n";
  7889. }
  7890. else
  7891. {
  7892. TzHotelDesc += "(" + index + ".) " + hotelText + " " + (int.Parse(Ainfo.rs) / 2) + "间 共" + Ainfo.rs + " " + (decimal.Parse(Ainfo.cb) * decimal.Parse(Ainfo.xs)).ToString("#0.00") + "/人........共RMB " + (decimal.Parse(Ainfo.cb) * decimal.Parse(Ainfo.xs) * decimal.Parse(Ainfo.rs)).ToString("#0.00") + "\n";
  7893. }
  7894. index++;
  7895. }
  7896. TzHotelDesc = TzHotelDesc.Insert(0, "A段信息 \r\n");
  7897. }
  7898. }
  7899. index = 1;
  7900. foreach (var item in TzAirDescArr)
  7901. {
  7902. if (AinfoArr != null)
  7903. {
  7904. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7905. if (Ainfo != null)
  7906. {
  7907. if (int.Parse(Ainfo.rs) <= 0)
  7908. {
  7909. continue;
  7910. }
  7911. TzAirDesc += "(" + index + ".) " + item + " " + (decimal.Parse(Ainfo.cb) * decimal.Parse(Ainfo.xs)).ToString("#0.00") + "/人 共" + Ainfo.rs + " ........小计RMB " + (decimal.Parse(Ainfo.cb) * decimal.Parse(Ainfo.xs) * decimal.Parse(Ainfo.rs)).ToString("#0.00") + "\n";
  7912. index++;
  7913. }
  7914. }
  7915. }
  7916. }
  7917. Visa = Visa.Insert(0, "签证及保险(含核酸检测): ");
  7918. DickeyValue.Add("TzNumber", TzNumber); //团组人数
  7919. DickeyValue.Add("CarGuides", CarGuides); //地接单人报价
  7920. DickeyValue.Add("CarGuides1", CarGuides1); // 地接 - 车导费
  7921. DickeyValue.Add("Meal", Meal); // 地接 - 餐费
  7922. DickeyValue.Add("SubsidizedMeals", SubsidizedMeals);// 地接 - 餐补
  7923. DickeyValue.Add("NightRepair", NightRepair); // 地接 - 宿补
  7924. DickeyValue.Add("AttractionsTickets", AttractionsTickets); // 地接 - 景点
  7925. DickeyValue.Add("MiscellaneousFees", MiscellaneousFees); // 地接 - 杂费
  7926. DickeyValue.Add("ATip", ATip); // 地接 - 小费
  7927. DickeyValue.Add("TzHotelDesc", TzHotelDesc); //酒店
  7928. DickeyValue.Add("Offcial", Offcial); // 公务单人报价
  7929. DickeyValue.Add("PettyCash", PettyCash); // 零用金单人报价
  7930. DickeyValue.Add("Visa", Visa); // 签证单人报价
  7931. DickeyValue.Add("TrainTicket", TrainTicket); //火车票
  7932. DickeyValue.Add("TicketPrice", TicketPrice); //船票
  7933. DickeyValue.Add("TzAirDesc", TzAirDesc); //机票
  7934. DickeyValue.Add("TzZCost", TzZCost);
  7935. foreach (var key in DickeyValue.Keys)
  7936. {
  7937. if (doc.Range.Bookmarks[key] != null)
  7938. {
  7939. Bookmark mark = doc.Range.Bookmarks[key];
  7940. mark.Text = DickeyValue[key];
  7941. }
  7942. }
  7943. byte[] bytes = null;
  7944. string strFileName = di.TeamName + "-客户报价.doc";
  7945. using (MemoryStream stream = new MemoryStream())
  7946. {
  7947. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  7948. bytes = stream.ToArray();
  7949. }
  7950. return Ok(JsonView(true, "", new
  7951. {
  7952. Data = bytes,
  7953. strFileName,
  7954. }));
  7955. }
  7956. /// <summary>
  7957. /// 团组成本 各模块(酒店,地接,机票)成本提示
  7958. /// </summary>
  7959. /// <param name="dto"></param>
  7960. /// <returns></returns>
  7961. [HttpPost]
  7962. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  7963. public async Task<IActionResult> PostGroupCostModulePrompt(GroupCostModulePromptDto dto)
  7964. {
  7965. try
  7966. {
  7967. #region 参数验证
  7968. if (dto.DiId < 0)
  7969. {
  7970. return Ok(JsonView(false, "请传入有效的DiId参数!"));
  7971. }
  7972. List<int> cTableIds = new List<int>() {
  7973. 76 ,//酒店预订
  7974. 77 ,//行程
  7975. 79 ,//车/导游地接
  7976. 80 ,//签证
  7977. 81 ,//邀请/公务活
  7978. 82 ,//团组客户保险
  7979. 85 ,//机票预订
  7980. 98 ,//其他款项
  7981. 285 ,//收款退还
  7982. 751 ,//酒店早餐
  7983. 1015 // 超支费用
  7984. };
  7985. if (dto.CTable < 0 && !cTableIds.Contains(dto.CTable))
  7986. {
  7987. return Ok(JsonView(false, "请传入有效的CTable参数!"));
  7988. }
  7989. #endregion
  7990. //Grp_GroupCostParameter 预算表 Grp_GroupCost 详细费用列表
  7991. var _GroupCostParameters = _usersRep._sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  7992. if (_GroupCostParameters.Count <= 0)
  7993. {
  7994. return Ok(JsonView(false, "暂无该团组成本信息!", new List<dynamic>()));
  7995. }
  7996. if (_GroupCostParameters[0].IsShare == 0)
  7997. {
  7998. return Ok(JsonView(false, "该团组成本未完成!", new List<dynamic>()));
  7999. }
  8000. var _GroupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  8001. //处理date为空问题
  8002. if (_GroupCosts.Count > 0)
  8003. {
  8004. for (int i = 0; i < _GroupCosts.Count; i++)
  8005. {
  8006. if (string.IsNullOrEmpty(_GroupCosts[i].Date))
  8007. {
  8008. if (i > 0)
  8009. {
  8010. _GroupCosts[i].Date = _GroupCosts[i - 1].Date;
  8011. }
  8012. }
  8013. }
  8014. }
  8015. GroupCostModulePromptView _view = new GroupCostModulePromptView();
  8016. List<GroupCostModulePromptInfo> _ModulePromptInfos = new List<GroupCostModulePromptInfo>(); //机票存储多段
  8017. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  8018. string currCode = "";
  8019. #region currCode 验证
  8020. bool isInt = int.TryParse(_GroupCostParameters[0].Currency, out int intCurrency);
  8021. if (isInt)
  8022. {
  8023. var currData = currDatas.Find(it => it.Id == intCurrency);
  8024. if (currData != null)
  8025. {
  8026. currCode = currData.Name;
  8027. }
  8028. }
  8029. else
  8030. {
  8031. currCode = _GroupCostParameters[0].Currency.Trim();
  8032. }
  8033. #endregion
  8034. //op,酒店单段模式存储
  8035. GroupCostModulePromptInfo _ModulePromptInfo = new GroupCostModulePromptInfo()
  8036. {
  8037. CurrencyCode = currCode,
  8038. Rate = _GroupCostParameters[0].Rate,
  8039. CostType = _GroupCostParameters[0].CostType,
  8040. CostTypeStartTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeStartTime).ToString("yyyy-MM-dd"),
  8041. CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeendTime).ToString("yyyy-MM-dd"),
  8042. CostTypeNumber = _GroupCostParameters[0].CostTypenumber
  8043. };
  8044. List<dynamic> _ModuleSubPromptInfo = new List<dynamic>(); // 存储CTbale != 85 的动态数据
  8045. if (_GroupCostParameters.Count == 2)
  8046. {
  8047. _ModulePromptInfo.CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[1].CostTypeendTime).ToString("yyyy-MM-dd");
  8048. }
  8049. foreach (var item in _GroupCostParameters)
  8050. {
  8051. decimal _rate = 1;
  8052. decimal _rate1 = item.Rate;
  8053. decimal _scale = 1;
  8054. //decimal _scale = 0.95M; 雷怡 2024-06-11 10:06:08 屏蔽
  8055. #region 处理地接价格比例 总经理 国交部经理 主管 不下调 其他人 下调 5%
  8056. //var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  8057. //if (userInfo != null)
  8058. //{
  8059. // if (userInfo.DepId == 1 || userInfo.DepId == 7)
  8060. // {
  8061. // if (userInfo.JobPostId == 1 || userInfo.JobPostId == 22 || userInfo.JobPostId == 32)
  8062. // {
  8063. // _scale = 1.00M;
  8064. // }
  8065. // }
  8066. //}
  8067. #endregion
  8068. GroupCostModulePromptInfo modulePromptInfo = new GroupCostModulePromptInfo()
  8069. {
  8070. CurrencyCode = currCode,
  8071. Rate = _rate1,
  8072. CostType = item.CostType,
  8073. CostTypeStartTime = Convert.ToDateTime(item.CostTypeStartTime).ToString("yyyy-MM-dd"),
  8074. CostTypeEndTime = Convert.ToDateTime(item.CostTypeendTime).ToString("yyyy-MM-dd"),
  8075. CostTypeNumber = item.CostTypenumber
  8076. };
  8077. if (_GroupCostParameters.Count > 1)
  8078. {
  8079. modulePromptInfo.CostTypeNumber = item.CostTypenumber;
  8080. }
  8081. else
  8082. {
  8083. modulePromptInfo.CostTypeNumber = item.LYJRS;
  8084. }
  8085. if (dto.CTable == 79)//
  8086. {
  8087. modulePromptInfo.IndividualCost = item.DJCB / modulePromptInfo.CostTypeNumber;
  8088. modulePromptInfo.TotalCost = item.DJCB;
  8089. }
  8090. List<string> costTypes = new List<string>() { "A", "B" };
  8091. List<Grp_GroupCost> _GroupCostsTypeData = new List<Grp_GroupCost>();
  8092. var _GroupCostsDuplicates = _GroupCostParameters.GroupBy(x => x.CostType).Select(y => y.FirstOrDefault());
  8093. if (_GroupCostsDuplicates.Count() == 1)
  8094. {
  8095. _GroupCostsTypeData = _GroupCosts;
  8096. }
  8097. else
  8098. {
  8099. _GroupCostsTypeData = _GroupCosts.Where(it => Convert.ToDateTime(it.Date) >= Convert.ToDateTime(item.CostTypeStartTime) &&
  8100. Convert.ToDateTime(it.Date) <= Convert.ToDateTime(item.CostTypeendTime)).ToList();
  8101. }
  8102. /*
  8103. * 76 酒店预订
  8104. * 77 行程
  8105. * 79 车/导游地接
  8106. * 80 签证
  8107. * 81 邀请/公务活动
  8108. * 82 团组客户保险
  8109. * 85 机票预订
  8110. * 98 其他款项
  8111. * 285 收款退还
  8112. * 751 酒店早餐
  8113. * 1015 超支费用
  8114. */
  8115. switch (dto.CTable)
  8116. {
  8117. case 76: // 酒店预订
  8118. _ModuleSubPromptInfo.AddRange(
  8119. _GroupCostsTypeData.Select(it => new
  8120. {
  8121. it.DAY,
  8122. it.Date,
  8123. it.ACCON,
  8124. it.ITIN,
  8125. it.SGR,
  8126. it.TBR,
  8127. it.JS_ES,
  8128. it.Suite
  8129. })
  8130. );
  8131. break;
  8132. case 79: // 车/导游地接
  8133. _ModuleSubPromptInfo.AddRange(
  8134. _GroupCostsTypeData.Select(it => new
  8135. {
  8136. Date = it.Date, //日期
  8137. CarFee = it.CarCost * _rate * _scale, //车费用
  8138. CarType = it.CarType, //车型
  8139. DriverFee = it.CFS * _rate * _scale, //司机工资
  8140. DriverTipsFee = it.DRVTips * _rate * _scale, //司机小费
  8141. DriverMealSubsidy = it.CFM * _rate * _scale, //司机餐补
  8142. DriverOvertimeFee = it.CFOF * _rate * _scale, //司机超时费用
  8143. GuideFee = it.TGS * _rate * _scale, //导游费用
  8144. GuideOvertimeFee = it.TGOF * _rate * _scale, //导游超时费用
  8145. GuideMealSubsidy = it.TGM * _rate * _scale, //导游餐补
  8146. GuideRoomSubsidy = it.TGA * _rate * _scale, //导游房补
  8147. GuideCarFare = it.TGTF * _rate * _scale, //导游交通费
  8148. GuideSpotFee = it.TGEF * _rate * _scale, //导游景点费
  8149. GuideTipsFee = it.TGTips * _rate * _scale, //导游小费
  8150. Breakfast = it.B * _rate * _scale, //早餐费
  8151. Lunch = it.L * _rate * _scale, //午餐费
  8152. Dinner = it.D * _rate * _scale, //晚餐费
  8153. TicketFee = it.EF * _rate * _scale, //门票费
  8154. SpentCash = it.PC * _rate * _scale, //零用金
  8155. LeadersFee = it.TLF * _rate * _scale, //领队费
  8156. DrinksSnacksFruitFee = it.B_R_F * _rate * _scale, //饮料零食水果
  8157. TravelSupplies = it.TE * _rate * _scale, //出行物资
  8158. })
  8159. );
  8160. break;
  8161. case 85: // 机票
  8162. List<dynamic> datas = new List<dynamic>();
  8163. datas.Add(
  8164. new
  8165. {
  8166. AirType = "经济舱",
  8167. AirNum = item.JJCRS,
  8168. AirDRCB = item.JJCCB,
  8169. AirZCB = (item.JJCRS * item.JJCCB)
  8170. }
  8171. );
  8172. datas.Add(
  8173. new
  8174. {
  8175. AirType = "公务舱",
  8176. AirNum = item.GWCRS,
  8177. AirDRCB = item.GWCCB,
  8178. AirZCB = (item.GWCRS * item.GWCCB)
  8179. }
  8180. );
  8181. var groupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  8182. var initDatas = groupCosts.Select(it => new { date = it.Date, week = it.Date.GetWeek() == "" ? "-" : it.Date.GetWeek(), itinerary = it.ITIN }).ToList();
  8183. modulePromptInfo.Data = new
  8184. {
  8185. airFeeData = datas,
  8186. airInitData = initDatas
  8187. };
  8188. _ModulePromptInfos.Add(modulePromptInfo);
  8189. break;
  8190. default:
  8191. break;
  8192. }
  8193. }
  8194. if (dto.CTable != 85)
  8195. {
  8196. _ModulePromptInfo.Data = _ModuleSubPromptInfo;
  8197. _ModulePromptInfos.Add(_ModulePromptInfo);
  8198. }
  8199. _view.ModulePromptInfos = _ModulePromptInfos;
  8200. return Ok(JsonView(true, "操作成功!", _view));
  8201. }
  8202. catch (Exception ex)
  8203. {
  8204. return Ok(JsonView(false, ex.Message));
  8205. }
  8206. }
  8207. /// <summary>
  8208. /// 根据黑屏代码重新生成行程
  8209. /// </summary>
  8210. /// <param name="dto"></param>
  8211. /// <returns></returns>
  8212. [HttpPost]
  8213. public IActionResult CraeteGroupCostTravel(GroupCostInItDto dto)
  8214. {
  8215. var jw = JsonView(false);
  8216. var Create = _GroupCostRepository.
  8217. CreateGroupCostByBlackCode(dto.Diid);
  8218. jw.Msg = Create.Msg;
  8219. if (Create.Code == 0)
  8220. {
  8221. jw.Code = 200;
  8222. jw.Data = new
  8223. {
  8224. groupCost = Create.Data,
  8225. blackCodeIsTrue = true
  8226. };
  8227. }
  8228. else
  8229. {
  8230. jw.Code = 400;
  8231. jw.Data = new
  8232. {
  8233. groupCost = Create.Data,
  8234. blackCodeIsTrue = false,
  8235. };
  8236. }
  8237. return Ok(jw);
  8238. }
  8239. /// <summary>
  8240. /// 成本获取OP历史车费用
  8241. /// </summary>
  8242. /// <param name="dto"></param>
  8243. /// <returns></returns>
  8244. [HttpPost]
  8245. public async Task<IActionResult> GetHistoryCarData(HistoryCarDataDto dto)
  8246. {
  8247. var jw = JsonView(false);
  8248. try
  8249. {
  8250. List<HistoryCarDataView> dbResult = new List<HistoryCarDataView>();
  8251. //获取现有所有车的数据
  8252. if (!dto.Param.IsNullOrWhiteSpace())
  8253. {
  8254. string sql = $@"
  8255. SELECT gdi.TeamName , gctggr.Area, gctggr.PriceName , gctggrc.Id ,gctggrc.Price , gctggrc.DatePrice , gctggrc.PriceContent , gctggrc.Currency , gctggr.ServiceStartTime , gctggr.ServiceEndTime
  8256. FROM Grp_CarTouristGuideGroundReservationsContent gctggrc inner join Grp_CarTouristGuideGroundReservations gctggr on
  8257. gctggrc.CTGGRId = gctggr.Id inner JOIN Grp_DelegationInfo gdi on gctggr.DiId = gdi.Id LEFT JOIN Sys_SetData ssd on ssd.Id = gctggr.PriceType
  8258. WHERE gctggr.IsDel = 0 and gctggrc.SId = 91 AND gdi.IsDel = 0 AND gctggrc.Price != 0 AND (ssd.Id in (1061,1069) or ssd.Id is NULL) AND gctggr.ServiceStartTime is not null
  8259. AND gctggr.ServiceEndTime is not NULL
  8260. ORDER by gctggrc.id DESC
  8261. ";
  8262. dbResult = await _sqlSugar.SqlQueryable<HistoryCarDataView>(sql).ToListAsync();
  8263. var numeberResult = await Task.Run(() =>
  8264. {
  8265. var numberArr = dbResult.Where(x => int.TryParse(x.Area, out int number)).ToList();
  8266. _ = dbResult.RemoveAll(x => int.TryParse(x.Area, out int number));
  8267. return numberArr;
  8268. });
  8269. var cityArr = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  8270. foreach (var item in numeberResult)
  8271. {
  8272. var find = cityArr.Find(x => x.Id == int.Parse(item.Area)) ?? new Grp_NationalTravelFee
  8273. {
  8274. Country = "数据异常!",
  8275. City = string.Empty,
  8276. };
  8277. item.Area = find.Country + " " + find.City;
  8278. }
  8279. dbResult.AddRange(numeberResult);
  8280. if (dto.Param.Contains("、"))
  8281. {
  8282. var sp = dto.Param.Split("、");
  8283. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  8284. .Where(x =>
  8285. {
  8286. return System.Array.Exists(sp, e =>
  8287. {
  8288. bool where = false;
  8289. if (x.Area != null)
  8290. {
  8291. where = x.Area.Contains(e);
  8292. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  8293. {
  8294. return false;
  8295. }
  8296. }
  8297. if (x.PriceName != null && !where)
  8298. {
  8299. where = x.PriceName.Contains(e);
  8300. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  8301. {
  8302. return false;
  8303. }
  8304. }
  8305. return where;
  8306. });
  8307. }).ToList();
  8308. }
  8309. else
  8310. {
  8311. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  8312. .Where(x =>
  8313. {
  8314. bool where = false;
  8315. if (x.Area != null)
  8316. {
  8317. where = x.Area.Contains(dto.Param);
  8318. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  8319. {
  8320. return false;
  8321. }
  8322. }
  8323. if (x.PriceName != null && !where)
  8324. {
  8325. where = x.PriceName.Contains(dto.Param);
  8326. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  8327. {
  8328. return false;
  8329. }
  8330. }
  8331. return where;
  8332. }
  8333. )
  8334. .ToList();
  8335. }
  8336. }
  8337. var view = dbResult.Select(x =>
  8338. {
  8339. decimal dp = 0.00M;
  8340. var startB = DateTime.TryParse(x.Start.ToString(), out DateTime startD);
  8341. var endB = DateTime.TryParse(x.End.ToString(), out DateTime endD);
  8342. if (string.IsNullOrWhiteSpace(x.DatePrice))
  8343. {
  8344. if (startB && endB)
  8345. {
  8346. var timesp = endD.Subtract(startD);
  8347. if ((timesp.Days + 1) != 0)
  8348. {
  8349. dp = x.Price / (timesp.Days + 1);
  8350. }
  8351. }
  8352. }
  8353. else
  8354. {
  8355. dp = x.Price;
  8356. }
  8357. return new
  8358. {
  8359. start = startB ? startD.ToString("yyyy-MM-dd") : "",
  8360. end = endB ? endD.ToString("yyyy-MM-dd") : "",
  8361. x.Area,
  8362. x.id,
  8363. price = x.Price.ToString("F2"),
  8364. x.PriceName,
  8365. x.PriceContent,
  8366. x.TeamName,
  8367. x.DatePrice,
  8368. dayPrice = dp.ToString("F2"),
  8369. };
  8370. }).OrderByDescending(x => x.id).ToList();
  8371. jw = JsonView(true, "获取成功!", view);
  8372. }
  8373. catch (Exception e)
  8374. {
  8375. jw = JsonView(false, e.Message);
  8376. }
  8377. return Ok(jw);
  8378. }
  8379. #endregion
  8380. #region 酒店预订 新 雷怡 2023-12-28 17:45
  8381. /// <summary>
  8382. /// 酒店预订
  8383. /// 酒店费用列表 根据团组Id查询
  8384. /// </summary>
  8385. /// <param name="_dto"></param>
  8386. /// <returns></returns>
  8387. [HttpPost]
  8388. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8389. public async Task<IActionResult> PostHotelReservationsItemsByDiId(HotelReservationItemDto _dto)
  8390. {
  8391. #region 参数验证
  8392. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8393. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8394. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8395. #region 团组操作权限验证 76 酒店预定模块
  8396. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8397. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8398. #endregion
  8399. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8400. #region 页面操作权限验证
  8401. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8402. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8403. #endregion
  8404. #endregion
  8405. return Ok(await _hotelPriceRep._ItemsByDiId(_dto.PortType, _dto.DiId));
  8406. }
  8407. /// <summary>
  8408. /// 酒店预订
  8409. /// 基础数据
  8410. /// </summary>
  8411. /// <param name="_dto"></param>
  8412. /// <returns></returns>
  8413. [HttpPost]
  8414. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8415. public async Task<IActionResult> PostHotelReservationsBasicsDataInit(HotelReservationBasicsDataInitDto _dto)
  8416. {
  8417. #region 参数验证
  8418. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8419. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8420. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8421. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8422. #region 页面操作权限验证
  8423. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8424. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8425. #endregion
  8426. #region 团组操作权限验证 76 酒店预定模块
  8427. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8428. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8429. #endregion
  8430. #endregion
  8431. return Ok(await _hotelPriceRep._BasicsDataInit(_dto.PortType, _dto.DiId));
  8432. }
  8433. /// <summary>
  8434. /// 酒店预订
  8435. /// 创建 入住卷号码
  8436. /// </summary>
  8437. /// <param name="_dto"></param>
  8438. /// <returns></returns>
  8439. [HttpPost]
  8440. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8441. public async Task<IActionResult> PostHotelReservationsCreateCheckVolumeNo(HotelReservationBasicsDataInitDto _dto)
  8442. {
  8443. try
  8444. {
  8445. #region 参数验证
  8446. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8447. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8448. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8449. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8450. #region 页面操作权限验证
  8451. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8452. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8453. #endregion
  8454. #region 团组操作权限验证 76 酒店预定模块
  8455. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8456. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8457. #endregion
  8458. #endregion
  8459. Result data = await _hotelPriceRep._CreateCheckVolumeNo(_dto.DiId);
  8460. if (data.Code != 0)
  8461. {
  8462. return Ok(JsonView(false, data.Msg));
  8463. }
  8464. return Ok(JsonView(true, data.Msg, data.Data));
  8465. }
  8466. catch (Exception ex)
  8467. {
  8468. return Ok(JsonView(false, ex.Message));
  8469. }
  8470. }
  8471. /// <summary>
  8472. /// 酒店预订
  8473. /// 详情
  8474. /// </summary>
  8475. /// <param name="_dto"></param>
  8476. /// <returns></returns>
  8477. [HttpPost]
  8478. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8479. public async Task<IActionResult> PostHotelReservationsDetails(HotelReservationsDetailsDto _dto)
  8480. {
  8481. #region 参数验证
  8482. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入正确的UserId参数"));
  8483. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8484. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入正确的DiId参数"));
  8485. #region 团组操作权限验证 76 酒店预定模块
  8486. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8487. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8488. #endregion
  8489. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8490. #region 页面操作权限验证
  8491. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8492. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8493. #endregion
  8494. #endregion
  8495. return Ok(await _hotelPriceRep._Details(_dto.PortType, _dto.Id));
  8496. }
  8497. /// <summary>
  8498. /// 酒店预订
  8499. /// Add Or Edit
  8500. /// </summary>
  8501. /// <param name="_dto"></param>
  8502. /// <returns></returns>
  8503. [HttpPost]
  8504. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8505. public async Task<IActionResult> PostHotelReservationsAddOrEdit(HotelReservationsAddOrEditDto _dto)
  8506. {
  8507. #region 参数验证
  8508. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8509. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8510. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8511. #region 团组操作权限验证 76 酒店预定模块
  8512. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8513. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8514. #endregion
  8515. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8516. #region 页面操作权限验证
  8517. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8518. if (_dto.Id == 0) // Add
  8519. {
  8520. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  8521. }
  8522. else if (_dto.Id > 1) // Edit
  8523. {
  8524. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  8525. }
  8526. else return Ok(JsonView(false, "请输入正确的数据Id!"));
  8527. #endregion
  8528. #endregion
  8529. JsonView _view = await _hotelPriceRep._AddOrEdit(_dto);
  8530. if (_view.Code != 200)
  8531. {
  8532. return Ok(_view);
  8533. }
  8534. #region 应用推送
  8535. try
  8536. {
  8537. int ccpId = (int)_view.Data.GetType().GetProperty("ccpId").GetValue(_view.Data, null);
  8538. int sign = (int)_view.Data.GetType().GetProperty("sign").GetValue(_view.Data, null);
  8539. int hotelId = (int)_view.Data.GetType().GetProperty("hotelId").GetValue(_view.Data, null);
  8540. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  8541. //自动审核
  8542. await _feeAuditRep.FeeAutomaticAudit(1, _dto.DiId, hotelId);
  8543. }
  8544. catch (Exception ex)
  8545. {
  8546. }
  8547. #endregion
  8548. return Ok(_view);
  8549. }
  8550. /// <summary>
  8551. /// 酒店预订
  8552. /// Del
  8553. /// </summary>
  8554. /// <param name="_dto"></param>
  8555. /// <returns></returns>
  8556. [HttpPost]
  8557. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8558. public async Task<IActionResult> PostHotelReservationsDel(HotelReservationsDelDto _dto)
  8559. {
  8560. #region 参数验证
  8561. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8562. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8563. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8564. #region 团组操作权限验证 76 酒店预定模块
  8565. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8566. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8567. #endregion
  8568. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8569. #region 页面操作权限验证
  8570. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8571. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  8572. #endregion
  8573. #endregion
  8574. return Ok(await _hotelPriceRep._Del(_dto.Id, _dto.UserId));
  8575. }
  8576. /// <summary>
  8577. /// 酒店预订
  8578. /// 生成VOUCHER
  8579. /// 2024.05.06 之前版本
  8580. /// </summary>
  8581. /// <param name="_dto"></param>
  8582. /// <returns></returns>
  8583. [HttpPost]
  8584. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8585. public async Task<IActionResult> PostHotelReservationsCreateVoucher1(HotelReservationsCreateVoucherDto _dto)
  8586. {
  8587. try
  8588. {
  8589. #region 参数验证
  8590. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8591. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8592. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8593. #region 团组操作权限验证 76 酒店预定模块
  8594. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8595. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8596. #endregion
  8597. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8598. #region 页面操作权限验证
  8599. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8600. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8601. #endregion
  8602. #endregion
  8603. Grp_HotelReservations hr = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.Id == _dto.Id).FirstAsync();
  8604. //判断数据是否完整
  8605. if (hr != null)
  8606. {
  8607. if (!string.IsNullOrEmpty(hr.DetermineNo))
  8608. {
  8609. string strFileName = "HotelStatement/";
  8610. Grp_DelegationInfo dele = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == _dto.DiId).FirstAsync();
  8611. if (dele != null)
  8612. strFileName += dele.TourCode;
  8613. //载入模板
  8614. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/酒店预订模板.doc";
  8615. Document doc = new Document(sss);
  8616. DocumentBuilder builder = new DocumentBuilder(doc);
  8617. #region 替换Word模板书签内容
  8618. //这里可以创建个DataTable循环添加书签的值,这里提示一下就不多做修改了
  8619. //入住卷预定号码
  8620. if (doc.Range.Bookmarks["VNO"] != null)
  8621. {
  8622. Bookmark mark = doc.Range.Bookmarks["VNO"];
  8623. mark.Text = hr.CheckNumber;
  8624. }
  8625. //酒店时间
  8626. if (doc.Range.Bookmarks["Date"] != null)
  8627. {
  8628. Bookmark mark = doc.Range.Bookmarks["Date"];
  8629. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  8630. }
  8631. //团号
  8632. if (doc.Range.Bookmarks["TNo"] != null)
  8633. {
  8634. Bookmark mark = doc.Range.Bookmarks["TNo"];
  8635. mark.Text = dele.TourCode;
  8636. }
  8637. //预定号码
  8638. if (doc.Range.Bookmarks["BookingId"] != null)
  8639. {
  8640. Bookmark mark = doc.Range.Bookmarks["BookingId"];
  8641. mark.Text = hr.ReservationsNo;
  8642. }
  8643. if (doc.Range.Bookmarks["HotelConfirmNo"] != null)
  8644. {
  8645. Bookmark mark = doc.Range.Bookmarks["HotelConfirmNo"];
  8646. mark.Text = hr.DetermineNo;
  8647. }
  8648. //酒店城市
  8649. if (doc.Range.Bookmarks["City"] != null)
  8650. {
  8651. Bookmark mark = doc.Range.Bookmarks["City"];
  8652. mark.Text = hr.City;
  8653. }
  8654. //酒店名称
  8655. if (doc.Range.Bookmarks["HName"] != null)
  8656. {
  8657. Bookmark mark = doc.Range.Bookmarks["HName"];
  8658. mark.Text = hr.HotelName;
  8659. }
  8660. //酒店地址
  8661. if (doc.Range.Bookmarks["Address"] != null)
  8662. {
  8663. Bookmark mark = doc.Range.Bookmarks["Address"];
  8664. mark.Text = hr.HotelAddress;
  8665. }
  8666. //酒店电话
  8667. if (doc.Range.Bookmarks["Tel"] != null)
  8668. {
  8669. Bookmark mark = doc.Range.Bookmarks["Tel"];
  8670. mark.Text = hr.HotelTel;
  8671. }
  8672. //酒店传真
  8673. if (doc.Range.Bookmarks["Fax"] != null)
  8674. {
  8675. Bookmark mark = doc.Range.Bookmarks["Fax"];
  8676. if (!string.IsNullOrWhiteSpace(hr.HotelFax))
  8677. {
  8678. mark.Text = hr.HotelFax;
  8679. }
  8680. }
  8681. //入住时间
  8682. if (doc.Range.Bookmarks["CIn"] != null)
  8683. {
  8684. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  8685. Bookmark mark = doc.Range.Bookmarks["CIn"];
  8686. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year;
  8687. }
  8688. //退房时间
  8689. if (doc.Range.Bookmarks["COut"] != null)
  8690. {
  8691. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  8692. Bookmark mark = doc.Range.Bookmarks["COut"];
  8693. mark.Text = dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8694. }
  8695. //客户名称
  8696. if (doc.Range.Bookmarks["GName"] != null)
  8697. {
  8698. string guestName = "";
  8699. string[] clients = new string[] { };
  8700. if (hr.GuestName.Contains(","))
  8701. {
  8702. clients = hr.GuestName.Split(",");
  8703. }
  8704. else
  8705. {
  8706. clients = new string[] { hr.GuestName };
  8707. }
  8708. List<int> clientIds_int = new List<int>();
  8709. if (clients.Length > 0)
  8710. {
  8711. foreach (var item in clients)
  8712. {
  8713. if (item.IsNumeric())
  8714. {
  8715. clientIds_int.Add(int.Parse(item));
  8716. }
  8717. }
  8718. }
  8719. if (clientIds_int.Count > 0)
  8720. {
  8721. var _clientDatas = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && clientIds_int.Contains(it.Id)).ToList();
  8722. foreach (var client in _clientDatas)
  8723. {
  8724. //男
  8725. if (client.Sex == 0) guestName += $"Mr.";
  8726. //女
  8727. else if (client.Sex == 1) guestName += $"Ms.";
  8728. if (!String.IsNullOrEmpty(client.FirstName + client.LastName))
  8729. {
  8730. guestName += $"{string.Join("", client.FirstName.GetTotalPingYin()).ToUpper()} {string.Join("", client.LastName.GetTotalPingYin()).ToUpper()},";
  8731. }
  8732. //guestName += $"{client.Pinyin},";
  8733. }
  8734. if (guestName.Length > 0)
  8735. {
  8736. guestName = guestName.Substring(0, guestName.Length - 1);
  8737. }
  8738. }
  8739. else
  8740. {
  8741. guestName = hr.GuestName;
  8742. }
  8743. Bookmark mark = doc.Range.Bookmarks["GName"];
  8744. mark.Text = guestName;
  8745. }
  8746. //房间介绍
  8747. if (doc.Range.Bookmarks["ROOM"] != null)
  8748. {
  8749. Bookmark mark = doc.Range.Bookmarks["ROOM"];
  8750. mark.Text = hr.RoomExplanation;
  8751. }
  8752. //报价描述
  8753. if (doc.Range.Bookmarks["NOTE"] != null)
  8754. {
  8755. Bookmark mark = doc.Range.Bookmarks["NOTE"];
  8756. Sys_SetData ss = _sqlSugar.Queryable<Sys_SetData>().First(a => a.Id == hr.ReservationsWebsite);
  8757. if (ss != null)
  8758. mark.Text = ss.Name;
  8759. }
  8760. //入住时间
  8761. if (doc.Range.Bookmarks["CheckIn"] != null)
  8762. {
  8763. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  8764. Bookmark mark = doc.Range.Bookmarks["CheckIn"];
  8765. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year + " ";
  8766. }
  8767. //退房时间
  8768. if (doc.Range.Bookmarks["CheckOut"] != null)
  8769. {
  8770. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  8771. Bookmark mark = doc.Range.Bookmarks["CheckOut"];
  8772. mark.Text = " " + dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8773. }
  8774. //日期
  8775. if (doc.Range.Bookmarks["DT"] != null)
  8776. {
  8777. Bookmark mark = doc.Range.Bookmarks["DT"];
  8778. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  8779. }
  8780. //名称
  8781. if (doc.Range.Bookmarks["VName"] != null)
  8782. {
  8783. Bookmark mark = doc.Range.Bookmarks["VName"];
  8784. mark.Text = hr.HotelName;
  8785. }
  8786. //号码
  8787. if (doc.Range.Bookmarks["VOUCHERNO"] != null)
  8788. {
  8789. Bookmark mark = doc.Range.Bookmarks["VOUCHERNO"];
  8790. mark.Text = hr.CheckNumber;
  8791. }
  8792. #endregion
  8793. strFileName += "VOUCHER.doc";
  8794. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  8795. doc.Save(fileDir);
  8796. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  8797. return Ok(JsonView(true, "操作成功!", Url));
  8798. }
  8799. else
  8800. {
  8801. return Ok(JsonView(false, "酒店确定号码未填写,无法生成Voucher!"));
  8802. }
  8803. }
  8804. else
  8805. {
  8806. return Ok(JsonView(false, "该条数据已删除或不存在!"));
  8807. }
  8808. }
  8809. catch (Exception ex)
  8810. {
  8811. return Ok(JsonView(false, ex.Message));
  8812. }
  8813. }
  8814. /// <summary>
  8815. /// 酒店预订
  8816. /// 生成VOUCHER
  8817. /// 2024.05.06 之后版本
  8818. /// </summary>
  8819. /// <param name="_dto"></param>
  8820. /// <returns></returns>
  8821. [HttpPost]
  8822. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8823. public async Task<IActionResult> PostHotelReservationsCreateVoucher(HotelReservationsCreateVoucherDto _dto)
  8824. {
  8825. #region 参数验证
  8826. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  8827. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8828. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  8829. #region 团组操作权限验证 76 酒店预定模块
  8830. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8831. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  8832. #endregion
  8833. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8834. #region 页面操作权限验证
  8835. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8836. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8837. #endregion
  8838. #endregion
  8839. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  8840. //判断数据是否完整
  8841. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "请先录入酒店预订信息!", ""));
  8842. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  8843. string strFileName = "HotelStatement/";
  8844. string guestNames = ""; //格式Mr.xxx Ms.xxx
  8845. List<HotelVoucherInfoView> vouchers = new List<HotelVoucherInfoView>();
  8846. #region 数据处理
  8847. List<int> guestIds = new List<int>();
  8848. int index = 0;
  8849. foreach (var item in hrDtas)
  8850. {
  8851. if (item.GuestName.Contains(","))
  8852. {
  8853. string[] guestIdArr = item.GuestName.Split(',');
  8854. foreach (var guestIdStr in guestIdArr)
  8855. {
  8856. bool guestBool = int.TryParse(guestIdStr, out int guestId);
  8857. if (guestBool)
  8858. {
  8859. guestIds.Add(guestId);
  8860. }
  8861. }
  8862. }
  8863. else guestNames += item.GuestName;
  8864. var voucherInfo = new HotelVoucherInfoView()
  8865. {
  8866. HotelName = item.HotelName,
  8867. CheckInDate = item.CheckInDate,
  8868. CheckOutDate = item.CheckOutDate,
  8869. ConfirmationNumber = item.DetermineNo.Trim(),
  8870. RoomType = item.RoomExplanation
  8871. };
  8872. vouchers.Add(voucherInfo);
  8873. }
  8874. if (guestIds.Count > 0)
  8875. {
  8876. guestIds = guestIds.Distinct().ToList();
  8877. var guestDatas = await _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && guestIds.Contains(it.Id)).ToListAsync();
  8878. if (guestDatas.Count > 0)
  8879. {
  8880. guestNames = "";
  8881. foreach (var guest in guestDatas)
  8882. {
  8883. string guestName = "";
  8884. if (guest.Sex == 0) guestName += @"MR.";
  8885. else if (guest.Sex == 1) guestName += @"MS.";
  8886. if (guest.Pinyin == null) guestName += $"{string.Join("", guest.LastName.GetTotalPingYin()).ToUpper()}/{string.Join("", guest.FirstName.GetTotalPingYin()).ToUpper()}";
  8887. else guestName += @$"{guest.Pinyin.Replace(" ", "")}";
  8888. guestNames += @$"{guestName.Trim()}、";
  8889. }
  8890. if (guestNames.Length > 0)
  8891. {
  8892. guestNames = guestNames.Substring(0, guestNames.Length - 1);
  8893. }
  8894. }
  8895. }
  8896. #endregion
  8897. //载入模板
  8898. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/Voucher-2024Versions.docx";
  8899. Document doc = new Document(sss);
  8900. DocumentBuilder builder = new DocumentBuilder(doc);
  8901. if (doc.Range.Bookmarks["GuestName"] != null)
  8902. {
  8903. Bookmark mark = doc.Range.Bookmarks["GuestName"];
  8904. mark.Text = guestNames;
  8905. }
  8906. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  8907. Aspose.Words.Tables.Table table = allTables[0] as Aspose.Words.Tables.Table;
  8908. vouchers = vouchers.OrderBy(it => it.CheckInDate).ToList();
  8909. for (int i = 1; i <= vouchers.Count; i++)
  8910. {
  8911. HotelVoucherInfoView hviv = vouchers[i - 1];
  8912. builder.MoveToCell(0, i, 0, 0);
  8913. builder.Write(hviv.HotelName);
  8914. builder.MoveToCell(0, i, 1, 0);
  8915. builder.Write(hviv.CheckInDate);
  8916. builder.MoveToCell(0, i, 2, 0);
  8917. builder.Write(hviv.CheckOutDate);
  8918. builder.MoveToCell(0, i, 3, 0);
  8919. builder.Write(hviv.RoomType);
  8920. builder.MoveToCell(0, i, 4, 0);
  8921. builder.Write(hviv.ConfirmationNumber);
  8922. }
  8923. //删除多余行
  8924. int currRowIndex = vouchers.Count + 1;
  8925. int delRows = 21 - currRowIndex;
  8926. if (delRows > 0)
  8927. {
  8928. for (int i = 0; i < delRows; i++)
  8929. {
  8930. table.Rows.RemoveAt(currRowIndex);
  8931. //cultivateRowIndex++;
  8932. }
  8933. }
  8934. strFileName += "VOUCHER.docx";
  8935. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  8936. doc.Save(fileDir);
  8937. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  8938. return Ok(JsonView(true, "操作成功!", Url));
  8939. }
  8940. /// <summary>
  8941. /// 酒店预订
  8942. /// 生成 预定成本 Excel
  8943. /// </summary>
  8944. /// <param name="_dto"></param>
  8945. /// <returns></returns>
  8946. [HttpPost]
  8947. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8948. public async Task<IActionResult> PostHotelReservationsPredictedCostFileDownload(HotelReservations_PCFD_DTO _dto)
  8949. {
  8950. #region 参数验证
  8951. var vadalitor = new HotelReservations_PCFD_DTOFoalidator();
  8952. var vadalitorRes = await vadalitor.ValidateAsync(_dto);
  8953. if (!vadalitorRes.IsValid)
  8954. {
  8955. var errors = new StringBuilder();
  8956. foreach (var valid in vadalitorRes.Errors) errors.AppendLine(valid.ErrorMessage);
  8957. return Ok(JsonView(StatusCodes.Status400BadRequest, errors.ToString(), ""));
  8958. }
  8959. #region 团组操作权限验证 76 酒店预定模块
  8960. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8961. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8962. #endregion
  8963. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8964. #region 页面操作权限验证
  8965. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8966. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8967. #endregion
  8968. #endregion
  8969. decimal _rate = 1.00M;
  8970. string _currency = "";
  8971. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.STid == 66).ToList();
  8972. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  8973. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "酒店预订费用未录入,不支持预定成本Excel导出", ""));
  8974. Grp_GroupCostParameter _GroupCostParameter = await _sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).FirstAsync();
  8975. if (_GroupCostParameter == null) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用未录入,不支持预定成本Excel导出", ""));
  8976. if (string.IsNullOrEmpty(_GroupCostParameter.Currency))
  8977. {
  8978. return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用“币种为录入”未录入,不支持预定成本Excel导出", ""));
  8979. }
  8980. _currency = _GroupCostParameter.Currency;
  8981. bool isIntType = int.TryParse(_currency, out int currId);
  8982. if (isIntType)
  8983. {
  8984. _currency = currDatas.Find(it => it.Id == currId)?.Name ?? "";
  8985. }
  8986. var teamRate = await _teamRateRep.PostGroupTeamRateItemByDiIdAndCTableId(1, _dto.DiId, 76);
  8987. var currInfo = teamRate.Find(it => it.CurrencyCode.Equals(_currency));
  8988. if (currInfo == null)
  8989. {
  8990. return Ok(JsonView(StatusCodes.Status400BadRequest, $"团组汇率-->酒店模块 {_currency} 币种未设置汇率,不支持预定成本Excel导出", ""));
  8991. }
  8992. if (!_currency.ToUpper().Equals("CNY"))
  8993. {
  8994. _rate = _GroupCostParameter.Rate;
  8995. }
  8996. _rate = currInfo.Rate;
  8997. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  8998. string strFileName = "HotelStatement/";
  8999. string guestNames = ""; //格式Mr.xxx Ms.xxx
  9000. List<HotelReservations_PCFD_View> pcfds = new List<HotelReservations_PCFD_View>();
  9001. var hotelSubData = _sqlSugar.Queryable<Grp_HotelReservationsContent>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToList();
  9002. var ccpData = _sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && it.DIId == _dto.DiId && it.CTable == 76).ToList();
  9003. #region 数据处理
  9004. foreach (var item in hrDtas)
  9005. {
  9006. var ccpInfo = ccpData.Where(it => it.DIId == _dto.DiId && it.CId == item.Id).First();
  9007. var roomInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 1).FirstOrDefault(); //房费
  9008. var breakfastInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 2).FirstOrDefault(); //早餐
  9009. var governmentRentInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 3).FirstOrDefault(); //地税
  9010. var cityTaxInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 4).FirstOrDefault(); //城市税
  9011. string roomCurr = currDatas.Find(it => it.Id == roomInfo.Currency)?.Name ?? "";
  9012. string singleRoomFeeStr = string.Empty,
  9013. doubleRoomFeeStr = string.Empty,
  9014. suiteRoomFeeStr = string.Empty,
  9015. otherRoomFeeStr = string.Empty,
  9016. payMoneyStr = string.Empty,
  9017. cardPriceStr = string.Empty;
  9018. if (roomCurr.Equals(_currency))
  9019. {
  9020. singleRoomFeeStr = $"{item.SingleRoomPrice.ToString("#0.00")} {_currency}";
  9021. doubleRoomFeeStr = $"{item.DoubleRoomPrice.ToString("#0.00")} {_currency}";
  9022. suiteRoomFeeStr = $"{item.SuiteRoomPrice.ToString("#0.00")} {_currency}";
  9023. otherRoomFeeStr = $"{item.OtherRoomPrice.ToString("#0.00")} {_currency}";
  9024. payMoneyStr = $"{ccpInfo.PayMoney.ToString("#0.00")} {_currency}";
  9025. cardPriceStr = $"{item.CardPrice.ToString("#0.00")} {_currency}";
  9026. }
  9027. else
  9028. {
  9029. singleRoomFeeStr = $"{(item.SingleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SingleRoomPrice.ToString("#0.00")} {roomCurr}";
  9030. doubleRoomFeeStr = $"{(item.DoubleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.DoubleRoomPrice.ToString("#0.00")} {roomCurr}";
  9031. suiteRoomFeeStr = $"{(item.SuiteRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SuiteRoomPrice.ToString("#0.00")} {roomCurr}";
  9032. otherRoomFeeStr = $"{(item.OtherRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.OtherRoomPrice.ToString("#0.00")} {roomCurr}";
  9033. payMoneyStr = $"{(ccpInfo.PayMoney / _rate).ToString("#0.00")} {_currency}\r\n{ccpInfo.PayMoney.ToString("#0.00")} {roomCurr}";
  9034. cardPriceStr = $"{(item.CardPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.CardPrice.ToString("#0.00")} {roomCurr}";
  9035. }
  9036. string breakfastPriceStr = string.Empty,
  9037. breakfastCurrency = currDatas.Find(it => it.Id == item.BreakfastCurrency)?.Name ?? "",
  9038. governmentRentStr = string.Empty,
  9039. governmentRentCurrency = currDatas.Find(it => it.Id == item.GovernmentRentCurrency)?.Name ?? "",
  9040. cityTaxStrStr = string.Empty,
  9041. cityTaxStrCurrency = currDatas.Find(it => it.Id == item.CityTaxCurrency)?.Name ?? "";
  9042. breakfastPriceStr = $"{breakfastInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == breakfastInfo?.Currency)?.Name}";
  9043. governmentRentStr = $"{governmentRentInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == governmentRentInfo?.Currency)?.Name}";
  9044. cityTaxStrStr = $"{cityTaxInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == cityTaxInfo?.Currency)?.Name}";
  9045. pcfds.Add(new HotelReservations_PCFD_View()
  9046. {
  9047. City = item.City,
  9048. HotelName = item.HotelName,
  9049. Date = $"{item.CheckInDate} - {item.CheckOutDate}",
  9050. // SingleRoomCount = item.SingleRoomCount,
  9051. SingleRoomPrice = singleRoomFeeStr,
  9052. // DoubleRoomCount = item.DoubleRoomCount,
  9053. DoubleRoomPrice = doubleRoomFeeStr,
  9054. //SuiteRoomCount = item.SuiteRoomCount,
  9055. SuiteRoomPrice = suiteRoomFeeStr,
  9056. OtherRoomPrice = otherRoomFeeStr,
  9057. //OtherRoomCount = item.OtherRoomCount,
  9058. BreakfastPrice = breakfastPriceStr,
  9059. GovernmentRent = governmentRentStr,
  9060. CityTax = cityTaxStrStr,
  9061. RoomExplanation = item.RoomExplanation,
  9062. PayTypeName = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.Id == roomInfo.PayDId).First()?.Name ?? "",
  9063. PayTime = roomInfo.ConsumptionDate,
  9064. BankNo = roomInfo.BankNo,
  9065. PayMoney = payMoneyStr,
  9066. //PayMoneys = ccpInfo.PayMoney.ToString("#0.00"),
  9067. ConsumptionPatterns = roomInfo.ConsumptionPatterns,
  9068. CardPrice = cardPriceStr,
  9069. Remark = ccpInfo.Remark
  9070. });
  9071. }
  9072. #endregion
  9073. //载入模板
  9074. WorkbookDesigner designer = new WorkbookDesigner();
  9075. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/酒店预订成本.xls");
  9076. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == _dto.DiId).First();
  9077. var userInfo = _sqlSugar.Queryable<Sys_Users>().Where(it => it.Id == hrDtas[0].CreateUserId).First();
  9078. designer.SetDataSource("TourNo", groupInfo.TourCode);
  9079. designer.SetDataSource("TeamName", $"{groupInfo.TeamName} 团组成本币种:{_currency} 团组汇率-->酒店模块汇率:{_rate.ToString("#0.0000")}");
  9080. designer.SetDataSource("Opertor", userInfo.CnName);
  9081. DataTable dt = CommonFun.GetDataTableFromIList<HotelReservations_PCFD_View>(pcfds);
  9082. dt.TableName = "ViewMyHotelReservations";
  9083. designer.SetDataSource(dt);
  9084. designer.Process();
  9085. string fileName = $"HotelReservation/{groupInfo.TeamName.Replace("/","").Replace(@"\", "").Trim()}_酒店预订成本_{ DateTime.Now.ToString("yyyyMMddHHmmss")}.xls";
  9086. string serverPath = AppSettingsHelper.Get("ExcelBasePath") + fileName;
  9087. designer.Workbook.Save(serverPath);
  9088. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  9089. #region 删除指定行
  9090. bool singleDel = true, doubleDel = true, suiteDel = true, otherDel = true, zcDel = true, dsDel = true, cssDel = true, cpDel = true, remarkDel = true;
  9091. int singleIndex = dt.Columns["SingleRoomPrice"].Ordinal,
  9092. doubleIndex = dt.Columns["DoubleRoomPrice"].Ordinal,
  9093. suiteIndex = dt.Columns["SuiteRoomPrice"].Ordinal,
  9094. otherIndex = dt.Columns["OtherRoomPrice"].Ordinal,
  9095. zcIndex = dt.Columns["BreakfastPrice"].Ordinal,
  9096. dsIndex = dt.Columns["GovernmentRent"].Ordinal,
  9097. cssIndex = dt.Columns["CityTax"].Ordinal,
  9098. cpIndex = dt.Columns["ConsumptionPatterns"].Ordinal,
  9099. remarkIndex = dt.Columns["Remark"].Ordinal;
  9100. //删除指定列
  9101. foreach (DataRow item in dt.Rows)
  9102. {
  9103. string singleStr = item["SingleRoomPrice"].ToString();
  9104. bool containsDigitButNotZero1 = !singleStr.StartsWith("0") && Regex.IsMatch(singleStr, @"[1-9]");
  9105. if (containsDigitButNotZero1) singleDel = false;
  9106. singleIndex = dt.Columns["SingleRoomPrice"].Ordinal;
  9107. string doubleStr = item["DoubleRoomPrice"].ToString();
  9108. bool containsDigitButNotZero2 = !doubleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  9109. if (containsDigitButNotZero2) doubleDel = false;
  9110. string suiteStr = item["SuiteRoomPrice"].ToString();
  9111. bool containsDigitButNotZero3 = !singleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  9112. if (containsDigitButNotZero3) suiteDel = false;
  9113. string otherStr = item["OtherRoomPrice"].ToString();
  9114. bool containsDigitButNotZero4 = !otherStr.StartsWith("0") && Regex.IsMatch(otherStr, @"[1-9]");
  9115. if (containsDigitButNotZero4) otherDel = false;
  9116. string zcStr = item["BreakfastPrice"].ToString();
  9117. bool containsDigitButNotZero5 = !zcStr.StartsWith("0") && Regex.IsMatch(zcStr, @"[1-9]");
  9118. if (containsDigitButNotZero5) zcDel = false;
  9119. string dsStr = item["GovernmentRent"].ToString();
  9120. bool containsDigitButNotZero6 = !dsStr.StartsWith("0") && Regex.IsMatch(dsStr, @"[1-9]");
  9121. if (containsDigitButNotZero6) dsDel = false;
  9122. string cssStr = item["CityTax"].ToString();
  9123. bool containsDigitButNotZero7 = !cssStr.StartsWith("0") && Regex.IsMatch(cssStr, @"[1-9]");
  9124. if (containsDigitButNotZero7) cssDel = false;
  9125. string cpStr = item["ConsumptionPatterns"].ToString();
  9126. if (!string.IsNullOrEmpty(cpStr)) cpDel = false;
  9127. string remarkStr = item["Remark"].ToString();
  9128. if (!string.IsNullOrEmpty(remarkStr)) remarkDel = false;
  9129. }
  9130. DeleteColumn(serverPath, remarkIndex, remarkDel);
  9131. DeleteColumn(serverPath, cpIndex, cpDel);
  9132. DeleteColumn(serverPath, dsIndex, dsDel);
  9133. DeleteColumn(serverPath, cssIndex, cssDel);
  9134. DeleteColumn(serverPath, zcIndex, zcDel);
  9135. DeleteColumn(serverPath, otherIndex, otherDel);
  9136. DeleteColumn(serverPath, suiteIndex, suiteDel);
  9137. DeleteColumn(serverPath, doubleIndex, doubleDel);
  9138. DeleteColumn(serverPath, singleIndex, singleDel);
  9139. #endregion
  9140. //只保留第一个表格
  9141. DeleteSheet(serverPath);
  9142. return Ok(JsonView(true, "操作成功", url = rst));
  9143. }
  9144. /// <summary>
  9145. /// 删除指定列
  9146. /// </summary>
  9147. /// <param name="file"></param>
  9148. /// <param name="columnIndex"></param>
  9149. /// <param name="isDel"></param>
  9150. private void DeleteColumn(string file, int columnIndex, bool isDel)
  9151. {
  9152. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  9153. //wb.Save(file);
  9154. Aspose.Cells.Worksheet sheet1 = wb.Worksheets[0];
  9155. if (sheet1 != null)
  9156. {
  9157. if (isDel)
  9158. {
  9159. Cells cells = sheet1.Cells;
  9160. cells.DeleteColumn(columnIndex);
  9161. }
  9162. }
  9163. wb.Save(file);
  9164. }
  9165. /// <summary>
  9166. /// 删除sheet
  9167. /// </summary>
  9168. /// <param name="file"></param>
  9169. /// <param name="sheetName"></param>
  9170. private void DeleteSheet(string file, string sheetName = "")
  9171. {
  9172. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  9173. //wb.Save(file);
  9174. List<string> sheets = new List<string>();
  9175. foreach (var item in wb.Worksheets)
  9176. {
  9177. sheets.Add(item.Name);
  9178. }
  9179. if (sheets.Count > 0)
  9180. {
  9181. sheets.RemoveAt(0);//不删除第一个sheet
  9182. foreach (var item in sheets)
  9183. {
  9184. wb.Worksheets.RemoveAt(item);
  9185. }
  9186. }
  9187. wb.Save(file);
  9188. }
  9189. /// <summary>
  9190. /// 酒店预订
  9191. /// 确认单
  9192. /// </summary>
  9193. /// <param name="_dto"></param>
  9194. /// <returns></returns>
  9195. [HttpPost]
  9196. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9197. public async Task<IActionResult> PostHotelReservationsConfirmationSlip(HotelReservationsConfirmationSlipDto _dto)
  9198. {
  9199. try
  9200. {
  9201. #region 参数验证
  9202. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  9203. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  9204. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  9205. #region 团组操作权限验证 76 酒店预定模块
  9206. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9207. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  9208. #endregion
  9209. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9210. #region 页面操作权限验证
  9211. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9212. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9213. #endregion
  9214. #endregion
  9215. //团组信息
  9216. Grp_DelegationInfo di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(a => a.Id == _dto.DiId);
  9217. //酒店数据
  9218. List<Grp_HotelReservations> listhoteldata = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(a => a.DiId == _dto.DiId && a.IsDel == 0).ToListAsync();
  9219. if (listhoteldata.Count < 0)
  9220. {
  9221. return Ok(JsonView(StatusCodes.Status400BadRequest, "当前团组暂无酒店预订信息!", ""));
  9222. }
  9223. //利datatable存储
  9224. DataTable dt = new DataTable();
  9225. dt.Columns.Add("CheckInDate", typeof(string));
  9226. dt.Columns.Add("City", typeof(string));
  9227. dt.Columns.Add("Hotel", typeof(string));
  9228. dt.Columns.Add("Room", typeof(string));
  9229. for (int i = 0; i < listhoteldata.Count; i++)
  9230. {
  9231. DateTime dayStart = Convert.ToDateTime(listhoteldata[i].CheckInDate);
  9232. DateTime dayEnd = Convert.ToDateTime(listhoteldata[i].CheckOutDate);
  9233. while (dayStart < dayEnd)
  9234. {
  9235. string temp = "";
  9236. DataRow row = dt.NewRow();
  9237. row["CheckInDate"] = dayStart.ToString("yyyy-MM-dd");
  9238. row["City"] = listhoteldata[i].City;
  9239. row["Hotel"] = listhoteldata[i].HotelName;
  9240. if (listhoteldata[i].SingleRoomCount > 0)
  9241. {
  9242. temp = listhoteldata[i].SingleRoomCount + "个单间" + "\r\n";
  9243. }
  9244. if (listhoteldata[i].DoubleRoomCount > 0)
  9245. {
  9246. temp = temp + listhoteldata[i].DoubleRoomCount + "个标间" + "\r\n";
  9247. }
  9248. if (listhoteldata[i].SuiteRoomCount > 0)
  9249. {
  9250. temp = temp + listhoteldata[i].SuiteRoomCount + "个套房" + "\r\n";
  9251. }
  9252. if (listhoteldata[i].OtherRoomCount > 0)
  9253. {
  9254. temp = temp + listhoteldata[i].OtherRoomCount + "个其他房型" + "\r\n";
  9255. }
  9256. row["Room"] = temp;
  9257. dt.Rows.Add(row);
  9258. dayStart = dayStart.AddDays(1);
  9259. }
  9260. }
  9261. Dictionary<string, string> dic = new Dictionary<string, string>();
  9262. dic.Add("Dele", di.TeamName);
  9263. dic.Add("City", di.VisitCountry);
  9264. //模板路径
  9265. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/酒店用房确认单-模板.doc";
  9266. //载入模板
  9267. Aspose.Words.Document doc = new Aspose.Words.Document(tempPath);
  9268. DocumentBuilder builder = new DocumentBuilder(doc);
  9269. foreach (var key in dic.Keys)
  9270. {
  9271. builder.MoveToBookmark(key);
  9272. builder.Write(dic[key]);
  9273. }
  9274. //获取word里所有表格
  9275. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  9276. //获取所填表格的序数
  9277. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  9278. var rowStart = tableOne.Rows[0]; //获取第1行
  9279. //循环赋值
  9280. for (int i = 0; i < dt.Rows.Count; i++)
  9281. {
  9282. builder.MoveToCell(0, i + 1, 0, 0);
  9283. builder.Write(dt.Rows[i]["CheckInDate"].ToString());
  9284. builder.MoveToCell(0, i + 1, 1, 0);
  9285. builder.Write(dt.Rows[i]["City"].ToString());
  9286. builder.MoveToCell(0, i + 1, 2, 0);
  9287. builder.Write(dt.Rows[i]["Hotel"].ToString());
  9288. builder.MoveToCell(0, i + 1, 3, 0);
  9289. builder.Write(dt.Rows[i]["Room"].ToString());
  9290. }
  9291. //删除多余行
  9292. while (tableOne.Rows.Count > dt.Rows.Count + 1)
  9293. {
  9294. tableOne.Rows.RemoveAt(dt.Rows.Count + 1);
  9295. }
  9296. string strFileName = di.TeamName + "酒店确认单.doc";
  9297. doc.Save(AppSettingsHelper.Get("WordBasePath") + "HotelStatement/" + strFileName);
  9298. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/HotelStatement/" + strFileName;
  9299. return Ok(JsonView(true, "成功", url));
  9300. }
  9301. catch (Exception ex)
  9302. {
  9303. return Ok(JsonView(StatusCodes.Status400BadRequest, ex.Message, ""));
  9304. }
  9305. }
  9306. #endregion
  9307. #region 团组状态
  9308. /// <summary>
  9309. /// 团组状态列表 Page
  9310. /// </summary>
  9311. /// <param name="dto">团组列表请求dto</param>
  9312. /// <returns></returns>
  9313. [HttpPost]
  9314. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9315. public async Task<IActionResult> PostGroupStatusPageList(GroupStatusListDto dto)
  9316. {
  9317. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  9318. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  9319. {
  9320. string sqlWhere = string.Empty;
  9321. if (dto.IsSure == 0) //未完成
  9322. {
  9323. sqlWhere += string.Format(@" And IsSure = 0");
  9324. }
  9325. else if (dto.IsSure == 1) //已完成
  9326. {
  9327. sqlWhere += string.Format(@" And IsSure = 1");
  9328. }
  9329. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  9330. {
  9331. string tj = dto.SearchCriteria;
  9332. sqlWhere += string.Format(@"And (ssd.Name Like '%{0}%' Or TeamName Like '%{1}%' Or ClientName Like '%{2}%' Or ClientName Like '%{3}%' Or su.CnName Like '%{4}%')",
  9333. tj, tj, tj, tj, tj);
  9334. }
  9335. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  9336. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  9337. VisitDate,VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  9338. From (
  9339. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  9340. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  9341. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  9342. VisitDate,VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  9343. From Grp_DelegationInfo gdi
  9344. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  9345. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  9346. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  9347. Where gdi.IsDel = 0 {0}
  9348. ) temp ", sqlWhere);
  9349. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  9350. var _DelegationList = await _sqlSugar.SqlQueryable<GroupStatusView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  9351. return Ok(JsonView(true, "查询成功!", _DelegationList, total));
  9352. }
  9353. else
  9354. {
  9355. return Ok(JsonView(false, "查询失败"));
  9356. }
  9357. }
  9358. /// <summary>
  9359. /// 团组状态
  9360. /// 设置操作完成
  9361. /// </summary>
  9362. /// <param name="dto">团组列表请求dto</param>
  9363. /// <returns></returns>
  9364. [HttpPost]
  9365. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9366. public async Task<IActionResult> PostGroupStatusSetOperationComplete(GroupStatusSetOperationCompleteDto dto)
  9367. {
  9368. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  9369. Grp_DelegationInfo _DelegationInfo = new Grp_DelegationInfo()
  9370. {
  9371. Id = dto.Id,
  9372. IsSure = 1
  9373. };
  9374. var result = await _sqlSugar.Updateable(_DelegationInfo)
  9375. .UpdateColumns(it => new { it.IsSure })
  9376. .WhereColumns(it => new { it.Id })
  9377. .ExecuteCommandAsync();
  9378. if (result > 0)
  9379. {
  9380. return Ok(JsonView(true, "操作完成!"));
  9381. }
  9382. return Ok(JsonView(false, "操作失败!"));
  9383. }
  9384. #endregion
  9385. #region 保险费用录入
  9386. /// <summary>
  9387. /// 根据团组Id查询保险费用列表
  9388. /// </summary>
  9389. /// <param name="dto"></param>
  9390. /// <returns></returns>
  9391. [HttpPost]
  9392. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9393. public async Task<IActionResult> CustomersByDiId(CustomersByDiIdDto dto)
  9394. {
  9395. try
  9396. {
  9397. Result groupData = await _customersRep.CustomersByDiId(dto);
  9398. if (groupData.Code != 0)
  9399. {
  9400. return Ok(JsonView(false, groupData.Msg));
  9401. }
  9402. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9403. }
  9404. catch (Exception ex)
  9405. {
  9406. return Ok(JsonView(false, ex.Message));
  9407. }
  9408. }
  9409. /// <summary>
  9410. /// 根据保险费用Id查询保险费用详细
  9411. /// </summary>
  9412. /// <param name="dto"></param>
  9413. /// <returns></returns>
  9414. [HttpPost]
  9415. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9416. public async Task<IActionResult> CustomersById(CustomersByIdDto dto)
  9417. {
  9418. try
  9419. {
  9420. Result groupData = await _customersRep.CustomersById(dto);
  9421. if (groupData.Code != 0)
  9422. {
  9423. return Ok(JsonView(false, groupData.Msg));
  9424. }
  9425. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9426. }
  9427. catch (Exception ex)
  9428. {
  9429. return Ok(JsonView(false, ex.Message));
  9430. }
  9431. }
  9432. /// <summary>
  9433. /// 保险费用录入页面初始化绑定
  9434. /// </summary>
  9435. /// <param name="dto"></param>
  9436. /// <returns></returns>
  9437. [HttpPost]
  9438. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9439. public async Task<IActionResult> CustomersInitialize(CustomersInitializeDto dto)
  9440. {
  9441. try
  9442. {
  9443. Result groupData = await _customersRep.CustomersInitialize(dto);
  9444. if (groupData.Code != 0)
  9445. {
  9446. return Ok(JsonView(false, groupData.Msg));
  9447. }
  9448. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9449. }
  9450. catch (Exception ex)
  9451. {
  9452. return Ok(JsonView(false, ex.Message));
  9453. }
  9454. }
  9455. /// <summary>
  9456. /// 保险费用操作(Status:1.新增,2.修改)
  9457. /// </summary>
  9458. /// <param name="dto"></param>
  9459. /// <returns></returns>
  9460. [HttpPost]
  9461. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9462. public async Task<IActionResult> OpCustomers(OpCustomersDto dto)
  9463. {
  9464. try
  9465. {
  9466. Result groupData = await _customersRep.OpCustomers(dto);
  9467. if (groupData.Code != 0)
  9468. {
  9469. return Ok(JsonView(false, groupData.Msg));
  9470. }
  9471. #region 应用推送
  9472. try
  9473. {
  9474. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  9475. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  9476. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  9477. }
  9478. catch (Exception ex)
  9479. {
  9480. }
  9481. #endregion
  9482. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9483. }
  9484. catch (Exception ex)
  9485. {
  9486. return Ok(JsonView(false, ex.Message));
  9487. }
  9488. }
  9489. /// <summary>
  9490. /// 保险文件上传
  9491. /// </summary>
  9492. /// <param name="file"></param>
  9493. /// <returns></returns>
  9494. [HttpPost]
  9495. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9496. public async Task<IActionResult> UploadCus(IFormFile file)
  9497. {
  9498. try
  9499. {
  9500. if (file != null)
  9501. {
  9502. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  9503. //文件名称
  9504. string projectFileName = file.FileName;
  9505. //上传的文件的路径
  9506. string filePath = "";
  9507. if (!Directory.Exists(fileDir))
  9508. {
  9509. Directory.CreateDirectory(fileDir);
  9510. }
  9511. //上传的文件的路径
  9512. filePath = fileDir + $@"\保险费用文件上传\{projectFileName}";
  9513. using (FileStream fs = System.IO.File.Create(filePath))
  9514. {
  9515. file.CopyTo(fs);
  9516. fs.Flush();
  9517. }
  9518. return Ok(JsonView(true, "上传成功!", projectFileName));
  9519. }
  9520. else
  9521. {
  9522. return Ok(JsonView(false, "上传失败!"));
  9523. }
  9524. }
  9525. catch (Exception ex)
  9526. {
  9527. return Ok(JsonView(false, "程序错误!"));
  9528. throw;
  9529. }
  9530. }
  9531. /// <summary>
  9532. /// 保险删除指定文件
  9533. /// </summary>
  9534. /// <param name="dto"></param>
  9535. /// <returns></returns>
  9536. [HttpPost]
  9537. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9538. public async Task<IActionResult> DelFileCus(DelFileDto dto)
  9539. {
  9540. try
  9541. {
  9542. string filePath = "";
  9543. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  9544. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  9545. //int id = 0;
  9546. filePath = fileDir + "/保险费用文件上传/" + dto.fileName;
  9547. // 删除该文件
  9548. try
  9549. {
  9550. System.IO.File.Delete(filePath);
  9551. var result = await _sqlSugar.Updateable<Grp_Customers>().Where(a => a.Id == dto.Id && a.IsDel == 0 && a.Attachment == dto.fileName).SetColumns(a => new Grp_Customers()
  9552. {
  9553. Attachment = "",
  9554. }).ExecuteCommandAsync();
  9555. if (result != 0)
  9556. {
  9557. return Ok(JsonView(true, "成功!"));
  9558. }
  9559. else
  9560. {
  9561. return Ok(JsonView(false, "失败!"));
  9562. }
  9563. }
  9564. catch (Exception)
  9565. {
  9566. var result = await _sqlSugar.Updateable<Grp_Customers>().Where(a => a.Id == dto.Id && a.IsDel == 0 && a.Attachment == dto.fileName).SetColumns(a => new Grp_Customers()
  9567. {
  9568. Attachment = "",
  9569. }).ExecuteCommandAsync();
  9570. if (result != 0)
  9571. {
  9572. return Ok(JsonView(true, "成功!"));
  9573. }
  9574. else
  9575. {
  9576. return Ok(JsonView(false, "失败!"));
  9577. }
  9578. }
  9579. }
  9580. catch (Exception ex)
  9581. {
  9582. return Ok(JsonView(false, "程序错误!"));
  9583. throw;
  9584. }
  9585. }
  9586. /// <summary>
  9587. /// 保险费用操作(删除)
  9588. /// </summary>
  9589. /// <param name="dto"></param>
  9590. /// <returns></returns>
  9591. [HttpPost]
  9592. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9593. public async Task<IActionResult> DelCustomers(DelBaseDto dto)
  9594. {
  9595. try
  9596. {
  9597. var res = await _customersRep.SoftDeleteByIdAsync<Grp_Customers>(dto.Id.ToString(), dto.DeleteUserId);
  9598. if (!res)
  9599. {
  9600. return Ok(JsonView(false, "删除失败"));
  9601. }
  9602. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 82).SetColumns(a => new Grp_CreditCardPayment()
  9603. {
  9604. IsDel = 1,
  9605. DeleteUserId = dto.DeleteUserId,
  9606. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  9607. }).ExecuteCommandAsync();
  9608. return Ok(JsonView(true, "删除成功!"));
  9609. }
  9610. catch (Exception ex)
  9611. {
  9612. return Ok(JsonView(false, "程序错误!"));
  9613. throw;
  9614. }
  9615. }
  9616. #endregion
  9617. #region 接团客户名单 PageId 104
  9618. /// <summary>
  9619. /// 接团客户名单
  9620. /// 迁移数据(慎用!)
  9621. /// </summary>
  9622. /// <param name="dto"></param>
  9623. /// <returns></returns>
  9624. [HttpPost]
  9625. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9626. public async Task<IActionResult> PostTourClientListChange()
  9627. {
  9628. try
  9629. {
  9630. _sqlSugar.ChangeDatabase(DBEnum.OA2014DB);
  9631. //var groupClinetData1
  9632. string sql = string.Format($"Select * From DeleClient Where Isdel = 0");
  9633. var oldOAClientList = await _sqlSugar.SqlQueryable<OA2021_DeleClient>(sql).Where(it => it.Isdel == 0).ToListAsync();
  9634. int updateCount = 0;
  9635. if (oldOAClientList.Count > 0)
  9636. {
  9637. _sqlSugar.ChangeDatabase(DBEnum.OA2023DB);
  9638. _sqlSugar.BeginTran();
  9639. var clientComInfos = _sqlSugar.Queryable<Crm_CustomerCompany>().Where(it => it.IsDel == 0).ToList();
  9640. var clientInfos = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0).ToList();
  9641. foreach (var item in oldOAClientList)
  9642. {
  9643. int comId = 0;
  9644. string format = "yyyy-MM-dd HH:mm:ss";
  9645. string data11 = "1990-01-01 00:00";
  9646. var data1 = IsValidDate(item.OPdate, format);
  9647. if (data1) data11 = item.OPdate;
  9648. //客户公司验证
  9649. if (!string.IsNullOrEmpty(item.Company))
  9650. {
  9651. var clientComInfo = clientComInfos.Where(it => it.CompanyFullName.Equals(item.Company)).FirstOrDefault();
  9652. if (clientComInfo == null) // add
  9653. {
  9654. var addInfo = new Crm_CustomerCompany()
  9655. {
  9656. CompanyAbbreviation = "",
  9657. CompanyFullName = item.Company,
  9658. Address = "",
  9659. PostCodes = "",
  9660. LastedOpUserId = item.OPer,
  9661. LastedOpDt = Convert.ToDateTime(data11),
  9662. CreateUserId = item.OPer,
  9663. CreateTime = Convert.ToDateTime(data11),
  9664. IsDel = 0
  9665. };
  9666. var comId1 = _sqlSugar.Insertable<Crm_CustomerCompany>(addInfo).ExecuteReturnIdentity();
  9667. if (comId1 > 0) comId = comId1;
  9668. }
  9669. else comId = clientComInfo.Id;
  9670. }
  9671. //客户人员验证
  9672. int clientId = 0;
  9673. string name = item.LastName + item.Name;
  9674. if (!string.IsNullOrEmpty(name))
  9675. {
  9676. var clientInfo = clientInfos.Where(it => (it.LastName + it.FirstName).Equals(name)).FirstOrDefault();
  9677. if (clientInfo == null)
  9678. {
  9679. DateTime? dateTime = null;
  9680. var isDt = DateTime.TryParse(item.Birthday, out DateTime birthDayDt);
  9681. if (isDt) dateTime = birthDayDt;
  9682. var addInfo1 = new Crm_DeleClient()
  9683. {
  9684. CrmCompanyId = comId,
  9685. DiId = -1,
  9686. LastName = item.LastName,
  9687. FirstName = item.Name,
  9688. OldName = "",
  9689. Pinyin = item.Pinyin,
  9690. Sex = item.Sex == "男" ? 0 : item.Sex == "女" ? 1 : -1,
  9691. Marriage = 0,
  9692. Phone = item.Phone,
  9693. Job = item.Job,
  9694. BirthDay = dateTime
  9695. };
  9696. var clientId1 = _sqlSugar.Insertable<Crm_DeleClient>(addInfo1).ExecuteReturnIdentity();
  9697. if (clientId1 > 0) clientId = clientId1;
  9698. }
  9699. else clientId = clientInfo.Id;
  9700. }
  9701. if (clientId < 1)
  9702. {
  9703. continue;
  9704. }
  9705. int airType = 0;
  9706. if (item.AirType == "超经舱") airType = 459;
  9707. else if (item.AirType == "公务舱") airType = 458;
  9708. else if (item.AirType == "经济舱") airType = 460;
  9709. else if (item.AirType == "其他") airType = 565;
  9710. else if (item.AirType == "头等舱") airType = 457;
  9711. var _TourClientListEntity = new Grp_TourClientList()
  9712. {
  9713. DiId = item.Diid,
  9714. ClientId = clientId,
  9715. CreateUserId = item.OPer,
  9716. CreateTime = Convert.ToDateTime(data11),
  9717. Remark = item.Remark,
  9718. IsDel = item.Isdel,
  9719. ShippingSpaceTypeId = airType,
  9720. ShippingSpaceSpecialNeeds = item.AirRemark,
  9721. HotelSpecialNeeds = item.RoomType
  9722. };
  9723. var _TourClientList = _sqlSugar.Insertable<Grp_TourClientList>(_TourClientListEntity).ExecuteCommand();
  9724. if (_TourClientList > 0)
  9725. {
  9726. updateCount++;
  9727. }
  9728. }
  9729. _sqlSugar.CommitTran();
  9730. }
  9731. return Ok(JsonView(true, $"更新条数:{updateCount}条"));
  9732. }
  9733. catch (Exception ex)
  9734. {
  9735. _sqlSugar.RollbackTran();
  9736. return Ok(JsonView(false, ex.Message));
  9737. }
  9738. return Ok(JsonView(true));
  9739. }
  9740. private bool IsValidDate(string dateString, string format)
  9741. {
  9742. DateTime dateValue;
  9743. bool valid = DateTime.TryParseExact(dateString, format, CultureInfo.InvariantCulture, DateTimeStyles.None, out dateValue);
  9744. return valid;
  9745. }
  9746. /// <summary>
  9747. /// 接团客户名单
  9748. /// 根据团组Id查询List
  9749. /// </summary>
  9750. /// <param name="dto"></param>
  9751. /// <returns></returns>
  9752. [HttpPost]
  9753. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9754. public async Task<IActionResult> PostTourClientListByDiId(TourClientListByDiIdDto _dto)
  9755. {
  9756. #region 参数验证
  9757. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId"));
  9758. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9759. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId!"));
  9760. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9761. #region 页面操作权限验证
  9762. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9763. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9764. #endregion
  9765. #endregion
  9766. var viewData = await _tourClientListRep._ItemByDiId(_dto.PortType, _dto.DiId);
  9767. if (viewData.Code != 0)
  9768. {
  9769. return Ok(JsonView(false, viewData.Msg));
  9770. }
  9771. return Ok(JsonView(viewData.Data));
  9772. }
  9773. /// <summary>
  9774. /// 接团客户名单
  9775. /// 基础数据 Init
  9776. /// </summary>
  9777. /// <param name="_dto"></param>
  9778. /// <returns></returns>
  9779. [HttpPost]
  9780. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9781. public async Task<IActionResult> PostTourClientListBasicDataInit(TourClientListBasicDataInitDto _dto)
  9782. {
  9783. #region 参数验证
  9784. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9785. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9786. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9787. #region 页面操作权限验证
  9788. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9789. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9790. #endregion
  9791. #endregion
  9792. var viewData = await _tourClientListRep._BasicDataInit(_dto.PortType);
  9793. if (viewData.Code != 0)
  9794. {
  9795. return Ok(JsonView(false, viewData.Msg));
  9796. }
  9797. return Ok(JsonView(viewData.Data));
  9798. }
  9799. /// <summary>
  9800. /// 接团客户名单
  9801. /// 根据 Id查询 Details
  9802. /// </summary>
  9803. /// <param name="_dto"></param>
  9804. /// <returns></returns>
  9805. [HttpPost]
  9806. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9807. public async Task<IActionResult> PostTourClientListDetails(TourClientListDetailsDto _dto)
  9808. {
  9809. #region 参数验证
  9810. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9811. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9812. if (_dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  9813. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9814. #region 页面操作权限验证
  9815. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9816. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9817. #endregion
  9818. #endregion
  9819. var viewData = await _tourClientListRep._Details(_dto.PortType, _dto.Id);
  9820. if (viewData.Code != 0)
  9821. {
  9822. return Ok(JsonView(false, viewData.Msg));
  9823. }
  9824. return Ok(JsonView(viewData.Data));
  9825. }
  9826. /// <summary>
  9827. /// 接团客户名单
  9828. /// Add Or Edit
  9829. /// </summary>
  9830. /// <param name="_dto"></param>
  9831. /// <returns></returns>
  9832. [HttpPost]
  9833. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9834. public async Task<IActionResult> PostTourClientListAddOrEdit(TourClientListAddOrEditDto _dto)
  9835. {
  9836. #region 参数验证
  9837. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9838. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9839. if (_dto.Id < 0) return Ok(JsonView(false, "请传入有效的Id参数!"));
  9840. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9841. #region 页面操作权限验证
  9842. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9843. if (_dto.Id == 0) //添加
  9844. {
  9845. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  9846. }
  9847. else if (_dto.Id >= 0) //修改
  9848. {
  9849. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  9850. }
  9851. #endregion
  9852. #endregion
  9853. var viewData = await _tourClientListRep._AddOrEdit(_dto);
  9854. if (viewData.Code != 0)
  9855. {
  9856. return Ok(JsonView(false, viewData.Msg));
  9857. }
  9858. return Ok(JsonView(true));
  9859. }
  9860. /// <summary>
  9861. /// 接团客户名单
  9862. /// AddMultiple(添加多个)
  9863. /// </summary>
  9864. /// <param name="_dto"></param>
  9865. /// <returns></returns>
  9866. [HttpPost]
  9867. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9868. public async Task<IActionResult> PostTourClientListAddMultiple(TourClientListAddMultipleDto _dto)
  9869. {
  9870. #region 参数验证
  9871. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9872. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9873. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9874. #region 页面操作权限验证
  9875. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9876. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  9877. #endregion
  9878. #endregion
  9879. var viewData = await _tourClientListRep._AddMultiple(_dto);
  9880. if (viewData.Code != 0)
  9881. {
  9882. return Ok(JsonView(false, viewData.Msg));
  9883. }
  9884. return Ok(JsonView(true));
  9885. }
  9886. /// <summary>
  9887. /// 接团客户名单
  9888. /// Del
  9889. /// </summary>
  9890. /// <param name="_dto"></param>
  9891. /// <returns></returns>
  9892. [HttpPost]
  9893. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9894. public async Task<IActionResult> PostTourClientListDel(TourClientListDelDto _dto)
  9895. {
  9896. #region 参数验证
  9897. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9898. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9899. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9900. #region 页面操作权限验证
  9901. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9902. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  9903. #endregion
  9904. #endregion
  9905. var viewData = await _tourClientListRep._Del(_dto.Id, _dto.UserId);
  9906. if (viewData.Code != 0)
  9907. {
  9908. return Ok(JsonView(false, viewData.Msg));
  9909. }
  9910. return Ok(JsonView(true));
  9911. }
  9912. /// <summary>
  9913. /// 接团客户名单
  9914. /// 文件下载 客户名单
  9915. /// </summary>
  9916. /// <param name="_dto"></param>
  9917. /// <returns></returns>
  9918. [HttpPost]
  9919. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9920. public async Task<IActionResult> PostTourClientListDownloadFile(PostTourClientListDownloadFile _dto)
  9921. {
  9922. #region 参数验证
  9923. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9924. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9925. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数"));
  9926. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9927. #region 页面操作权限验证
  9928. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9929. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9930. #endregion
  9931. #endregion
  9932. string clientSql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  9933. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  9934. From Grp_TourClientList tcl
  9935. Left Join
  9936. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  9937. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  9938. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  9939. From Crm_DeleClient dc
  9940. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  9941. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  9942. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  9943. Where dc.IsDel = 0) temp
  9944. On temp.DcId =tcl.ClientId
  9945. Where tcl.IsDel = 0 And tcl.DiId = {0}", _dto.DiId);
  9946. List<TourClientListDetailsView> DcList = await _sqlSugar.SqlQueryable<TourClientListDetailsView>(clientSql).ToListAsync();
  9947. if (DcList.Count < 0) return Ok(JsonView(false, "该团未录入客户名单!"));
  9948. //载入模板
  9949. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/dwon_团组人员列表模板.doc";
  9950. if (_dto.Language == 1)
  9951. {
  9952. tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/EN_Down_团组人员列表模板.doc";
  9953. }
  9954. //载入模板
  9955. var doc = new Document(tempPath);
  9956. DocumentBuilder builder = new DocumentBuilder(doc);
  9957. //获取word里所有表格
  9958. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  9959. //获取所填表格的序数
  9960. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  9961. var rowStart = tableOne.Rows[0]; //获取第1行
  9962. if (_dto.Language == 0)
  9963. {
  9964. //循环赋值
  9965. for (int i = 0; i < DcList.Count; i++)
  9966. {
  9967. builder.MoveToCell(0, i + 1, 0, 0);
  9968. builder.Write(DcList[i].LastName + DcList[i].FirstName);
  9969. builder.MoveToCell(0, i + 1, 1, 0);
  9970. int sex = DcList[i].Sex;
  9971. string sexStr = string.Empty;
  9972. if (sex == 0) sexStr = "男";
  9973. else if (sex == 1) sexStr = "女";
  9974. else sexStr = "未设置";
  9975. builder.Write(sexStr);
  9976. builder.MoveToCell(0, i + 1, 2, 0);
  9977. string birthDay = DcList[i].BirthDay;
  9978. string birthDayStr = string.Empty;
  9979. if (!string.IsNullOrEmpty(birthDay))
  9980. {
  9981. birthDayStr = Convert.ToDateTime(birthDay).ToString("yyyy-MM-dd");
  9982. }
  9983. builder.Write(birthDayStr);
  9984. builder.MoveToCell(0, i + 1, 3, 0);
  9985. string company = "";
  9986. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  9987. {
  9988. company = DcList[i].CompanyFullName.ToString();
  9989. }
  9990. builder.Write(company);
  9991. builder.MoveToCell(0, i + 1, 4, 0);
  9992. builder.Write(DcList[i].Job);
  9993. }
  9994. }
  9995. else if (_dto.Language == 1)
  9996. {
  9997. List<Res_PositionEnglishComparison> listPEC = _setDataRep.Query<Res_PositionEnglishComparison>(s => s.IsDel == 0).ToList();
  9998. List<Res_CompanyEnglishComparison> listCEC = _setDataRep.Query<Res_CompanyEnglishComparison>(s => s.IsDel == 0).ToList();
  9999. List<string> transArrayStr = new List<string>();
  10000. string transStrRes1 = "";
  10001. for (int i = 0; i < DcList.Count; i++)
  10002. {
  10003. var dc = DcList[i];
  10004. if (dc.CompanyFullName.Equals("暂无")) dc.CompanyFullName = "-";
  10005. if (dc.Job.Equals("暂无")) dc.Job = "-";
  10006. string str1 = $"{i}&{dc.CompanyFullName}&{dc.Job}";
  10007. if (DcList.Count - 1 == i) transStrRes1 += str1;
  10008. else transStrRes1 += $"{str1}|";
  10009. }
  10010. //string transStrRes = "0 & Provincial Health & Health Commission Deputy Director | 1 & Provincial People's Hospital & Provincial People's Hospital Chief Accountant | 2 & Secretary of the Party Committee of the Affiliated Hospital of North Sichuan Medical College & North Sichuan Medical College | 3 & Provincial Health Commission Planning & Provincial Health Commission Planning and Information Division Director | 4 &-& Deputy Director | 5 & Provincial Health Commission population and Family Division & Provincial Health Commission population and Family Division Director";
  10011. string transStrRes = "";
  10012. if (transStrRes1.Length > 0 )
  10013. {
  10014. transStrRes = await _juHeApi.GetTextTranslateAsync(transStrRes1);
  10015. }
  10016. //0、 Deputy Director of the Provincial Health and Health Commission | 1、 Chief Accountant of the provincial People's Hospital | 2、 Secretary of the Party Committee of the Affiliated Hospital of North Sichuan Medical College | 3、 Director of the Planning and Information Department of the Provincial Health and Health Commission | 4、 Deputy Director | 5、 Director of the population and Family Department of the Provincial Health and Health Commission | 3、 Secretary of the Party Committee of the Affiliated Hospital of North Sichuan Medical College | 4、 Deputy Director of the Planning and Information Department of the Provincial Health and Health Commission | 4、 Deputy Director of the population and Family Department of the Provincial Health and Health Commission | 5、 Director of the population and Family Department of the Provincial Health and Health Commission
  10017. //await _juHeApi.GetTextTranslateAsync(DcList[i].CompanyFullName.ToString().Trim()) ?? "";
  10018. //List<string> transArray = new List<string> { };
  10019. List<TranslateInfo> transArray = new List<TranslateInfo>();
  10020. if (transStrRes.Contains("|"))
  10021. {
  10022. string[] transArray1 = transStrRes.Split('|');
  10023. if (transArray1.Length > 0)
  10024. {
  10025. foreach (var item in transArray1)
  10026. {
  10027. if (item.Contains("&"))
  10028. {
  10029. string[] transArray2 = item.Split('&');
  10030. int index = 0;
  10031. string companyName = "", job = "";
  10032. if (transArray2.Length > 0)
  10033. {
  10034. bool success = int.TryParse(transArray2[0].Trim(), out index);
  10035. if (1 < transArray2.Length) companyName = transArray2[1];
  10036. if (2 < transArray2.Length) job = transArray2[2];
  10037. }
  10038. transArray.Add(new TranslateInfo { Index = index, CompanyName = companyName, Job = job });
  10039. }
  10040. }
  10041. }
  10042. }
  10043. //循环赋值
  10044. for (int i = 0; i < DcList.Count; i++)
  10045. {
  10046. string PYName = "";
  10047. if (DcList[i].Pinyin.Length > 0 && DcList[i].Pinyin.IndexOf('/') > -1)
  10048. {
  10049. string PY_Last = DcList[i].Pinyin.Split('/')[0];
  10050. string PY_First = DcList[i].Pinyin.Split('/')[1];
  10051. PYName = PY_First + " " + PY_Last;
  10052. }
  10053. else
  10054. {
  10055. string PY_Last = DcList[i].LastName.GetTotalPingYin().Count > 0 ? DcList[i].LastName.GetTotalPingYin()[0].ToUpper() : "";
  10056. string PY_First = DcList[i].FirstName.GetTotalPingYin().Count > 0 ? DcList[i].FirstName.GetTotalPingYin()[0].ToUpper() : "";
  10057. PYName = PY_First + " " + PY_Last;
  10058. }
  10059. builder.MoveToCell(0, i + 1, 0, 0);
  10060. builder.Write(PYName);
  10061. string sex = DcList[i].Sex == 0 ? "Male" : DcList[i].Sex == 1 ? "Female" : "";
  10062. builder.MoveToCell(0, i + 1, 1, 0);
  10063. builder.Write(sex);
  10064. DateTime birthDt;
  10065. bool b_birth = DateTime.TryParse(DcList[i].BirthDay, out birthDt);
  10066. string birthday = b_birth ? birthDt.ToString("yyyy-MM-dd") : " ";
  10067. builder.MoveToCell(0, i + 1, 2, 0);
  10068. builder.Write(birthday);
  10069. string company = string.Empty,job = string.Empty;
  10070. var dcTransInfo = transArray.FirstOrDefault(s => s.Index == i);
  10071. if (dcTransInfo != null)
  10072. {
  10073. company = dcTransInfo.CompanyName;
  10074. job = dcTransInfo.Job;
  10075. }
  10076. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  10077. {
  10078. //查询对照表
  10079. Res_CompanyEnglishComparison tempCec = listCEC.FirstOrDefault(s => s.zhName.Contains(DcList[i].CompanyFullName.ToString().Trim()));
  10080. if (tempCec != null)
  10081. {
  10082. company = tempCec.enName;
  10083. }
  10084. //翻译
  10085. else
  10086. {
  10087. }
  10088. }
  10089. builder.MoveToCell(0, i + 1, 3, 0);
  10090. builder.Write(company);
  10091. if (!string.IsNullOrEmpty(DcList[i].Job.ToString()))
  10092. {
  10093. //查询对照表
  10094. Res_PositionEnglishComparison tempPec = listPEC.FirstOrDefault(s => s.zhName == DcList[i].Job.ToString().Trim());
  10095. if (tempPec != null)
  10096. {
  10097. job = tempPec.enName;
  10098. }
  10099. //翻译
  10100. else
  10101. {
  10102. }
  10103. }
  10104. builder.MoveToCell(0, i + 1, 4, 0);
  10105. builder.Write(job);
  10106. }
  10107. }
  10108. //删除多余行
  10109. while (tableOne.Rows.Count > DcList.Count + 1)
  10110. {
  10111. tableOne.Rows.RemoveAt(DcList.Count + 1);
  10112. }
  10113. string fileName = "组团人员名单(" + DateTime.Now.ToString("yyyyhhddHHmmss") + ").doc";
  10114. var fileDir = AppSettingsHelper.Get("WordBasePath") + "TourClientList/" + fileName;
  10115. doc.Save(fileDir);
  10116. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/TourClientList/" + fileName;
  10117. return Ok(JsonView(true, "操作成功!", Url));
  10118. }
  10119. private class TranslateInfo
  10120. {
  10121. public int Index { get; set; }
  10122. public string CompanyName { get; set; }
  10123. public string Job { get; set; }
  10124. }
  10125. #endregion
  10126. #region 团组倒推表
  10127. /// <summary>
  10128. /// 倒推表基础数据
  10129. /// Init
  10130. /// </summary>
  10131. /// <param name="dto"></param>
  10132. /// <returns></returns>
  10133. [HttpPost]
  10134. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10135. public async Task<IActionResult> PostInvertedListInit()
  10136. {
  10137. var viewData = await _invertedListRep._Init();
  10138. if (viewData.Code != 0)
  10139. {
  10140. return Ok(JsonView(false, viewData.Msg));
  10141. }
  10142. return Ok(JsonView(viewData.Data));
  10143. }
  10144. /// <summary>
  10145. /// 倒推表
  10146. /// Info
  10147. /// </summary>
  10148. /// <param name="dto"></param>
  10149. /// <returns></returns>
  10150. [HttpPost]
  10151. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10152. public async Task<IActionResult> PostInvertedListInfo(InvertedListCreateDto dto)
  10153. {
  10154. var viewData = await _invertedListRep._Info(dto.PortType, dto.DiId);
  10155. if (viewData.Code != 0)
  10156. {
  10157. return Ok(JsonView(false, viewData.Msg));
  10158. }
  10159. return Ok(JsonView(viewData.Data));
  10160. }
  10161. /// <summary>
  10162. /// 倒推表
  10163. /// Create
  10164. /// </summary>
  10165. /// <param name="dto"></param>
  10166. /// <returns></returns>
  10167. [HttpPost]
  10168. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10169. public async Task<IActionResult> PostInvertedListCreate(InvertedListCreateDto dto)
  10170. {
  10171. var viewData = await _invertedListRep._Create(dto.PortType, dto.DiId);
  10172. if (viewData.Code != 0)
  10173. {
  10174. return Ok(JsonView(false, viewData.Msg));
  10175. }
  10176. return Ok(JsonView(viewData.Data));
  10177. }
  10178. /// <summary>
  10179. /// 倒推表
  10180. /// Update
  10181. /// </summary>
  10182. /// <param name="dto"></param>
  10183. /// <returns></returns>
  10184. [HttpPost]
  10185. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10186. public async Task<IActionResult> PostInvertedListUpdate(InvertedListUpdateDto dto)
  10187. {
  10188. var viewData = await _invertedListRep._Update(dto);
  10189. if (viewData.Code != 0)
  10190. {
  10191. return Ok(JsonView(false, viewData.Msg));
  10192. }
  10193. return Ok(JsonView(viewData.Data));
  10194. }
  10195. /// <summary>
  10196. /// 倒推表
  10197. /// File Download
  10198. /// </summary>
  10199. /// <param name="dto"></param>
  10200. /// <returns></returns>
  10201. [HttpPost]
  10202. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10203. public async Task<IActionResult> PostInvertedListFileDownload(InvertedListFileDownloadDto dto)
  10204. {
  10205. var info2 = await _invertedListRep._Info(1, dto.DiId);
  10206. if (info2.Code != 0)
  10207. {
  10208. return Ok(JsonView(false, "倒推表数据未生成,请先生成倒退表数据!"));
  10209. }
  10210. var info1 = info2.Data as InvertedListInfoView;
  10211. var info = await _invertedListRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == dto.DiId).FirstAsync();
  10212. string teamName = "";
  10213. if (info != null) teamName = info.TeamName;
  10214. //载入模板
  10215. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/倒退表模板20200617.doc");
  10216. DocumentBuilder builder = new DocumentBuilder(doc);
  10217. //利用键值对存放数据
  10218. Dictionary<string, string> dic = new Dictionary<string, string>();
  10219. dic.Add("TeamName", teamName);
  10220. dic.Add("StartTime", info1.AirportdDropOffDt.ConvertToDatetime()); //开始时间
  10221. dic.Add("BPtime", info1.ApprovalDataDt.ConvertToDatetime());
  10222. dic.Add("BPRemark", info1.ApprovalDataRemark);
  10223. dic.Add("SQtime", info1.ApprovalDt.ConvertToDatetime());
  10224. dic.Add("SQRemark", info1.ApprovalRemark);
  10225. dic.Add("CPJtime", info1.IssueApprovalDt.ConvertToDatetime());
  10226. dic.Add("CPJRemark", info1.IssueApprovalRemark);
  10227. //dic.Add("HZtime", info1.ApplyPassportDt.ConvertToDatetime());
  10228. //dic.Add("HZRemark", info1.ApplyPassportRemark);
  10229. dic.Add("QZtime", info1.VisaInformationDt.ConvertToDatetime());
  10230. dic.Add("QZRemark", info1.VisaInformationRemark);
  10231. dic.Add("SQQZtime", info1.SendVisaDt.ConvertToDatetime());
  10232. dic.Add("SQQZRemark", info1.SendVisaRemark);
  10233. dic.Add("CQtime", info1.IssueVisaDt.ConvertToDatetime());
  10234. dic.Add("CQRemark", info1.IssueVisaRemark);
  10235. dic.Add("XQHtime", info1.PreTripMeetingDt.ConvertToDatetime());
  10236. dic.Add("XQHRemark", info1.PreTripMeetingRemark);
  10237. dic.Add("SJtime", info1.AirportdDropOffDt.ConvertToDatetime());
  10238. dic.Add("SJRemark", info1.AirportdDropOffRemark);
  10239. #region 填充word模板书签内容
  10240. foreach (var key in dic.Keys)
  10241. {
  10242. builder.MoveToBookmark(key);
  10243. builder.Write(dic[key]);
  10244. }
  10245. #endregion
  10246. var fileDir = AppSettingsHelper.Get("WordBasePath");
  10247. string fileName = $"{teamName}团出行准备流程表.doc";
  10248. string filePath = fileDir + $@"InvertedList/{fileName}";
  10249. doc.Save(filePath);
  10250. string Url = $@"{AppSettingsHelper.Get("WordBaseUrl")}Office/Word/InvertedList/{fileName}";
  10251. return Ok(JsonView(true, "操作成功!", Url));
  10252. }
  10253. #endregion
  10254. #region 三公签证费用(签证费、代办费)
  10255. /// <summary>
  10256. /// 三公签证费用(签证费、代办费)
  10257. /// List
  10258. /// </summary>
  10259. /// <returns></returns>
  10260. [HttpPost]
  10261. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10262. public async Task<IActionResult> PostVisaFeeList(VisaFeeListDto _dto)
  10263. {
  10264. var _view = await _visaFeeInfoRep._List(_dto.PortType, _dto.DiId);
  10265. if (_view.Code != 0)
  10266. {
  10267. return Ok(JsonView(false, _view.Msg));
  10268. }
  10269. return Ok(JsonView(true, "操作成功!", _view.Data));
  10270. }
  10271. /// <summary>
  10272. /// 三公签证费用(签证费、代办费)
  10273. /// Add Or Update
  10274. /// </summary>
  10275. /// <returns></returns>
  10276. [HttpPost]
  10277. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10278. public async Task<IActionResult> PostVisaFeeAddAndUpdate(VisaFeeAddAndUpdateDto _dto)
  10279. {
  10280. var _view = await _visaFeeInfoRep._Update(_dto);
  10281. if (_view.Code != 0)
  10282. {
  10283. return Ok(JsonView(false, _view.Msg));
  10284. }
  10285. return Ok(JsonView(true, _view.Msg));
  10286. }
  10287. #endregion
  10288. #region 酒店询价
  10289. /// <summary>
  10290. /// 酒店询价
  10291. /// Init
  10292. /// </summary>
  10293. /// <param name="dto"></param>
  10294. /// <returns></returns>
  10295. [HttpPost]
  10296. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10297. public async Task<IActionResult> PostHotelInquiryInit()
  10298. {
  10299. var res = await _hotelInquiryRep._Init();
  10300. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10301. return Ok(JsonView(true, res.Msg, res.Data));
  10302. }
  10303. /// <summary>
  10304. /// 酒店询价
  10305. /// page Item
  10306. /// </summary>
  10307. /// <param name="_dto"></param>
  10308. /// <returns></returns>
  10309. [HttpPost]
  10310. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10311. public async Task<IActionResult> PostHotelInquiryPageItem(HotelInquiryPageItemDto _dto)
  10312. {
  10313. var res = await _hotelInquiryRep._PageItem(_dto.PageIndex, _dto.PageSize, _dto.PortType, _dto.DiId);
  10314. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10315. var view = res.Data as PageDataViewBase;
  10316. return Ok(JsonView(true, res.Msg, view.Data, view.Total));
  10317. }
  10318. /// <summary>
  10319. /// 酒店询价
  10320. /// info
  10321. /// </summary>
  10322. /// <param name="_dto"></param>
  10323. /// <returns></returns>
  10324. [HttpPost]
  10325. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10326. public async Task<IActionResult> PostHotelInquiryInfo(HotelInquiryInfoDto _dto)
  10327. {
  10328. var res = await _hotelInquiryRep._Info(_dto.PortType, _dto.Id);
  10329. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10330. return Ok(JsonView(true, res.Msg, res.Data));
  10331. }
  10332. /// <summary>
  10333. /// 酒店询价
  10334. /// Add Or Edit
  10335. /// </summary>
  10336. /// <param name="_dto"></param>
  10337. /// <returns></returns>
  10338. [HttpPost]
  10339. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10340. public async Task<IActionResult> PostHotelInquiryAddOrEdit(HotelInquiryAddOrEditDto _dto)
  10341. {
  10342. var res = await _hotelInquiryRep._AddOrEdit(_dto);
  10343. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10344. return Ok(JsonView(true, res.Msg, res.Data));
  10345. }
  10346. /// <summary>
  10347. /// 酒店询价
  10348. /// Del
  10349. /// </summary>
  10350. /// <param name="_dto"></param>
  10351. /// <returns></returns>
  10352. [HttpPost]
  10353. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10354. public async Task<IActionResult> PostHotelInquiryDel(HotelInquiryDelDto _dto)
  10355. {
  10356. var res = await _hotelInquiryRep._Del(_dto.Id, _dto.DeleteUserId);
  10357. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10358. return Ok(JsonView(true, res.Msg, res.Data));
  10359. }
  10360. #endregion
  10361. #region 下载匹配op行程单
  10362. /// <summary>
  10363. /// 匹配op行程单
  10364. /// Init
  10365. /// </summary>
  10366. /// <param name="dto">团组列表请求dto</param>
  10367. /// <returns></returns>
  10368. [HttpPost]
  10369. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10370. public async Task<IActionResult> PostMateOpGroupInit(MateOpGroupInitDto dto)
  10371. {
  10372. Stopwatch stopwatch = Stopwatch.StartNew(); // 创建并启动Stopwatch
  10373. if (dto.CurrUserId < 1) return Ok(JsonView(false, MsgTips.UserId));
  10374. bool isDepStatus = await GeneralMethod.IsMarketingStaff(dto.CurrUserId);
  10375. List<Grp_DelegationInfo> groupInfos = new List<Grp_DelegationInfo>();
  10376. groupInfos = _sqlSugar.Queryable<Grp_DelegationInfo>()
  10377. .Where(it => it.IsDel == 0)
  10378. .WhereIF(isDepStatus, it => it.JietuanOperator == dto.CurrUserId)
  10379. .OrderByDescending(it => it.CreateUserId)
  10380. .ToList();
  10381. if (groupInfos.Count < 1) return Ok(JsonView(false, "暂无和你相关的团组信息!"));
  10382. var country = groupInfos.Select(it => it.VisitCountry).ToList();
  10383. var diids = groupInfos.Select(it => it.Id).ToList();
  10384. List<string> countrys = new List<string>();
  10385. foreach (var item in country)
  10386. {
  10387. var data = _groupRepository.FormartTeamName(item);
  10388. var dataArray = _groupRepository.GroupSplitCountry(data);
  10389. if (dataArray.Count > 0) countrys.AddRange(dataArray);
  10390. }
  10391. countrys = countrys.Where(it => !string.IsNullOrEmpty(it)).Distinct().ToList();
  10392. List<string> areaArray = new List<string>(); //GetGroupCityLine
  10393. var areaItem = GeneralMethod.GetGroupCityLineItem(diids, "-");
  10394. foreach (var item in areaItem)
  10395. {
  10396. string areaStr = item.Value;
  10397. if (!string.IsNullOrEmpty(areaStr))
  10398. {
  10399. string[] str1 = areaStr.Split("-");
  10400. if (str1.Length > 0)
  10401. {
  10402. areaArray.AddRange(str1);
  10403. }
  10404. }
  10405. }
  10406. if (areaArray.Count > 0) areaArray = areaArray.Distinct().ToList();
  10407. var cityDatas = _sqlSugar.Queryable<Sys_Cities>()
  10408. .Where(it => it.IsDel == 0 && areaArray.Contains(it.Name_CN))
  10409. .Select(it => new { id = it.Id, parentId = it.CountriesId, name = it.Name_CN })
  10410. .ToList();
  10411. List<int> countriesIds = cityDatas.Select(it => it.parentId).ToList();
  10412. var countriesDatas = _sqlSugar.Queryable<Sys_Countries>()
  10413. .Where(it => countriesIds.Contains(it.Id))
  10414. .Select(it => new { it.Id, Name = it.Name_CN })
  10415. .ToList();
  10416. var teamNames = groupInfos.Where(it => !string.IsNullOrEmpty(it.TeamName))
  10417. .Select(it => it.TeamName).ToList();
  10418. stopwatch.Stop();
  10419. return Ok(JsonView(true, $"操作成功,耗时{stopwatch.ElapsedMilliseconds} ms", new { teamNames, countriesDatas, citiesDatas = cityDatas }));
  10420. }
  10421. ///// <summary>
  10422. ///// 匹配op行程单
  10423. ///// Init 查询区域数据
  10424. ///// </summary>
  10425. ///// <param name="dto">团组列表请求dto</param>
  10426. ///// <returns></returns>
  10427. //[HttpPost]
  10428. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10429. //public async Task<IActionResult> PostMateOpGroupCountryChangeData(MateOpGroupCountryChangeDataDto dto)
  10430. //{
  10431. // Stopwatch stopwatch = Stopwatch.StartNew(); // 创建并启动Stopwatch
  10432. // List<Sys_Cities> cityDatas = new List<Sys_Cities>();
  10433. // string countriesDataStr = await RedisRepository.RedisFactory.CreateRedisRepository().StringGetAsync<string>("CityDatas");//string 取
  10434. // if (string.IsNullOrEmpty(countriesDataStr))
  10435. // {
  10436. // cityDatas = await _sqlSugar.Queryable<Sys_Cities>().Where(it => it.IsDel == 0).ToListAsync();
  10437. // TimeSpan ts = DateTime.Now.AddHours(2).TimeOfDay; //设置redis 过期时间 2
  10438. // await RedisRepository.RedisFactory.CreateRedisRepository().StringSetAsync<string>("CountriesDatas", JsonConvert.SerializeObject(cityDatas), ts);//string 存
  10439. // }
  10440. // else
  10441. // {
  10442. // cityDatas = JsonConvert.DeserializeObject<List<Sys_Cities>>(countriesDataStr);
  10443. // }
  10444. // var provinceData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 1).ToList();
  10445. // var citiesData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 2).ToList();
  10446. // var countiesData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 3).ToList();
  10447. // List<dynamic> childList = new List<dynamic>();
  10448. // int parentId = dto.CountriesId;
  10449. // if (provinceData.Count > 1)
  10450. // {
  10451. // foreach (var item1 in provinceData)
  10452. // {
  10453. // List<dynamic> childList1 = new List<dynamic>();
  10454. // var citiesData1 = citiesData.Where(it => it.ParentId == item1.Id).ToList();
  10455. // foreach (var item2 in citiesData1)
  10456. // {
  10457. // List<dynamic> childList2 = new List<dynamic>();
  10458. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10459. // foreach (var item3 in countiesData1)
  10460. // {
  10461. // childList2.Add(new
  10462. // {
  10463. // id = item3.Id,
  10464. // parentId = item2.Id,
  10465. // level = "district",
  10466. // name = item3.Name_CN,
  10467. // });
  10468. // }
  10469. // childList1.Add(new
  10470. // {
  10471. // id = item2.Id,
  10472. // parentId = item1.Id,
  10473. // level = "city",
  10474. // name = item2.Name_CN,
  10475. // childList = childList2
  10476. // });
  10477. // }
  10478. // childList.Add(new
  10479. // {
  10480. // id = item1.Id,
  10481. // parentId = parentId,
  10482. // level = "province",
  10483. // name = item1.Name_CN,
  10484. // childList = childList1
  10485. // });
  10486. // }
  10487. // //城市
  10488. // var citiesData2 = citiesData.Where(it => it.ParentId == 0).ToList();
  10489. // foreach (var item2 in citiesData2)
  10490. // {
  10491. // List<dynamic> childList22 = new List<dynamic>();
  10492. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10493. // foreach (var item3 in countiesData1)
  10494. // {
  10495. // childList22.Add(new
  10496. // {
  10497. // id = item3.Id,
  10498. // parentId = item2.Id,
  10499. // level = "district",
  10500. // name = item3.Name_CN,
  10501. // });
  10502. // }
  10503. // childList.Add(new
  10504. // {
  10505. // id = item2.Id,
  10506. // parentId = parentId,
  10507. // level = "city",
  10508. // name = item2.Name_CN,
  10509. // childList = childList22
  10510. // });
  10511. // }
  10512. // }
  10513. // else
  10514. // {
  10515. // foreach (var item2 in citiesData)
  10516. // {
  10517. // string cname = item2.Name_CN;
  10518. // List<dynamic> childList1 = new List<dynamic>();
  10519. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10520. // foreach (var item3 in countiesData1)
  10521. // {
  10522. // childList1.Add(new
  10523. // {
  10524. // Id = item3.Id,
  10525. // parentId = item2.Id,
  10526. // level = "district",
  10527. // name = item3.Name_CN
  10528. // });
  10529. // }
  10530. // childList.Add(new
  10531. // {
  10532. // id = item2.Id,
  10533. // parentId = parentId,
  10534. // level = "city",
  10535. // name = item2.Name_CN,
  10536. // childList = childList1
  10537. // });
  10538. // }
  10539. // }
  10540. // stopwatch.Stop();
  10541. // return Ok(JsonView(true, $"操作成功,耗时{stopwatch.ElapsedMilliseconds} ms", childList));
  10542. //}
  10543. /// <summary>
  10544. /// 匹配op行程单
  10545. /// 接团信息列表 Page
  10546. /// </summary>
  10547. /// <param name="dto">团组列表请求dto</param>
  10548. /// <returns></returns>
  10549. [HttpPost]
  10550. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10551. public async Task<IActionResult> PostMateOpGroupPageList(MateOpGroupPageListDto dto)
  10552. {
  10553. var swatch = new Stopwatch();
  10554. swatch.Start();
  10555. #region 参数验证
  10556. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  10557. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  10558. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10559. #region 页面操作权限验证
  10560. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  10561. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  10562. #endregion
  10563. #endregion
  10564. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) // web/Android
  10565. {
  10566. var _view = await GeneralMethod.MateOpGroupPageListRedis();
  10567. string sqlWhere = "";
  10568. if (!string.IsNullOrEmpty(dto.Country))
  10569. {
  10570. _view = _view.Where(x => !string.IsNullOrEmpty(x.VisitCountry) && x.VisitCountry.Contains(dto.Country)).ToList();
  10571. }
  10572. if (!string.IsNullOrEmpty(dto.Area))
  10573. {
  10574. _view = _view.Where(x => !string.IsNullOrEmpty(x.RouteCity) && x.RouteCity.Contains(dto.Area)).ToList();
  10575. }
  10576. if (!string.IsNullOrEmpty(dto.TeamName))
  10577. {
  10578. _view = _view.Where(x => !string.IsNullOrEmpty(x.TeamName) && x.TeamName.Contains(dto.TeamName)).ToList();
  10579. }
  10580. int startIndex = (dto.PageIndex - 1) * dto.PageSize; // 计算开始的索引
  10581. int endIndex = startIndex + dto.PageSize - 1; // 计算结束的索引
  10582. var _view1 = _view.Skip(startIndex).Take(endIndex).ToList();
  10583. swatch.Stop();
  10584. return Ok(JsonView(true, $"查询成功!耗时 {swatch.ElapsedMilliseconds} ms", _view1, _view.Count));
  10585. }
  10586. else
  10587. {
  10588. return Ok(JsonView(false, "查询失败"));
  10589. }
  10590. }
  10591. /// <summary>
  10592. /// 匹配op行程单
  10593. /// 行程单下载
  10594. /// </summary>
  10595. /// <param name="dto">团组列表请求dto</param>
  10596. /// <returns></returns>
  10597. [HttpPost]
  10598. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10599. public async Task<IActionResult> PostMateOpGroupDownload(MateOpGroupDownloadDto dto)
  10600. {
  10601. #region 参数验证
  10602. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  10603. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  10604. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10605. #region 页面操作权限验证
  10606. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  10607. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限"));
  10608. #endregion
  10609. #endregion
  10610. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) // web/Android
  10611. {
  10612. var res = ExportTravel(new ExportTravelDto() { Diid = dto.diId });
  10613. return Ok(res.GetType().GetProperty("Value").GetValue(res, null));
  10614. }
  10615. else
  10616. {
  10617. return Ok(JsonView(false, "下载失败!"));
  10618. }
  10619. }
  10620. #endregion
  10621. #region 国家信息 数据 注释
  10622. //[HttpPost]
  10623. //public async Task<IActionResult> LoadCitiesInitData(List<int> dto)
  10624. //{
  10625. // List<Grp_GroupsTaskAssignment> infos = new List<Grp_GroupsTaskAssignment>();
  10626. // foreach (var item in dto)
  10627. // {
  10628. // infos.Add(new Grp_GroupsTaskAssignment()
  10629. // {
  10630. // DIId = item,
  10631. // CTId = 82,
  10632. // UId = 248,
  10633. // IsEnable = 1,
  10634. // CreateUserId = 233,
  10635. // CreateTime = DateTime.Now,
  10636. // IsDel = 0
  10637. // });
  10638. // infos.Add(new Grp_GroupsTaskAssignment()
  10639. // {
  10640. // DIId = item,
  10641. // CTId = 82,
  10642. // UId = 286,
  10643. // IsEnable = 1,
  10644. // CreateUserId = 233,
  10645. // CreateTime = DateTime.Now,
  10646. // IsDel = 0
  10647. // });
  10648. // }
  10649. // int add = _sqlSugar.Insertable<Grp_GroupsTaskAssignment>(infos).ExecuteCommand();
  10650. // return Ok("操作成功");
  10651. //}
  10652. //public class paramJsonDto
  10653. //{
  10654. // public List<CountriesInfo> str { get; set; }
  10655. //}
  10656. //[HttpPost]
  10657. //public async Task<IActionResult> LoadCitiesInitData(paramJsonDto dto)
  10658. //{
  10659. // //List<CountriesInfo> infos = new List<CountriesInfo>();
  10660. // //infos = JsonConvert.DeserializeObject<List<CountriesInfo>>(dto.str);
  10661. // List<Sys_Cities> cities = new List<Sys_Cities>();
  10662. // List<Sys_Cities> districts = new List<Sys_Cities>();
  10663. // var counties = _sqlSugar.Queryable<Sys_Countries>().Where(it => it.IsDel == 0).ToList();
  10664. // _sqlSugar.BeginTran();
  10665. // int countitiesIndex = 0;
  10666. // foreach (var item in dto.str)
  10667. // {
  10668. // dynamic data = item.c;
  10669. // int countriesId = counties.Find(it => it.Name_CN.Equals(item.cn))?.Id ?? 0;
  10670. // if (data != null)
  10671. // {
  10672. // countitiesIndex++;
  10673. // foreach (var item1 in data)
  10674. // {
  10675. // string cnname = item1.cn;
  10676. // string enname = item1.en;
  10677. // Sys_Cities provinceInfo = new Sys_Cities()
  10678. // {
  10679. // CountriesId = countriesId,
  10680. // Name_CN = cnname,
  10681. // Name_EN = enname,
  10682. // ParentId = 0,
  10683. // IsCapital = 1,
  10684. // CreateUserId = 208,
  10685. // CreateTime = DateTime.Now,
  10686. // IsDel = 0
  10687. // };
  10688. // if (item1.lv == "province") //省份
  10689. // {
  10690. // provinceInfo.Level = 1;
  10691. // int provinceId = 0;
  10692. // var provinceInfo1 = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 1 && it.Name_CN.Equals(cnname)).First();
  10693. // if (provinceInfo1 != null) provinceId = provinceInfo1.Id;
  10694. // else provinceId = _sqlSugar.Insertable<Sys_Cities>(provinceInfo).ExecuteReturnIdentity();
  10695. // var data1 = item1.c;
  10696. // foreach (var item2 in data1)
  10697. // {
  10698. // if (item2.lv == "city")
  10699. // {
  10700. // string citycnname = item2.cn;
  10701. // string cityenname = item2.en;
  10702. // Sys_Cities cityInfo = new Sys_Cities()
  10703. // {
  10704. // CountriesId = countriesId,
  10705. // ParentId = provinceId,
  10706. // Level = 2,
  10707. // Name_CN = citycnname,
  10708. // Name_EN = cityenname,
  10709. // IsCapital = 1,
  10710. // CreateUserId = 208,
  10711. // CreateTime = DateTime.Now,
  10712. // IsDel = 0
  10713. // };
  10714. // if (item2.c != null)
  10715. // {
  10716. // int cityId = 0;
  10717. // var citiesInfo = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 2 && it.Name_CN.Equals(citycnname)).First();
  10718. // if (citiesInfo != null) cityId = citiesInfo.Id;
  10719. // else cityId = _sqlSugar.Insertable<Sys_Cities>(cityInfo).ExecuteReturnIdentity();
  10720. // foreach (var item3 in item2.c)
  10721. // {
  10722. // if (item3.lv == "district")
  10723. // {
  10724. // var districtInfo = new Sys_Cities()
  10725. // {
  10726. // CountriesId = countriesId,
  10727. // Name_CN = item3.cn,
  10728. // Name_EN = item3.en,
  10729. // Level = 3,
  10730. // ParentId = cityId,
  10731. // IsCapital = 1,
  10732. // CreateUserId = 208,
  10733. // CreateTime = DateTime.Now,
  10734. // IsDel = 0
  10735. // };
  10736. // //if (districts.Find(it => it.CountriesId == countriesId && it.ParentId == cityId && it.Name_CN.Equals(districtInfo.Name_CN)) == null)
  10737. // //{
  10738. // districts.Add(districtInfo);
  10739. // //}
  10740. // }
  10741. // }
  10742. // }
  10743. // else
  10744. // {
  10745. // //if (cities.Find(it => it.CountriesId == countriesId && it.ParentId == provinceId && it.Name_CN.Equals(citycnname)) == null)
  10746. // //{
  10747. // cities.Add(cityInfo);
  10748. // //}
  10749. // }
  10750. // }
  10751. // }
  10752. // }
  10753. // else if (item1.lv == "city")//城市
  10754. // {
  10755. // provinceInfo.Level = 2;
  10756. // if (item1.c != null)
  10757. // {
  10758. // int cityId = 0;
  10759. // var citiesInfo = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 1 && it.Name_CN.Equals(provinceInfo.Name_CN)).First();
  10760. // if (citiesInfo != null) cityId = citiesInfo.Id;
  10761. // else cityId = _sqlSugar.Insertable<Sys_Cities>(provinceInfo).ExecuteReturnIdentity();
  10762. // foreach (var item3 in item1.c)
  10763. // {
  10764. // if (item3.lv == "district")
  10765. // {
  10766. // var districtInfo = new Sys_Cities()
  10767. // {
  10768. // CountriesId = countriesId,
  10769. // Name_CN = item3.cn,
  10770. // Name_EN = item3.en,
  10771. // Level = 3,
  10772. // ParentId = cityId,
  10773. // IsCapital = 1,
  10774. // CreateUserId = 208,
  10775. // CreateTime = DateTime.Now,
  10776. // IsDel = 0
  10777. // };
  10778. // //if (districts.Find(it => it.CountriesId == countriesId && it.ParentId == cityId && it.Name_CN.Equals(districtInfo.Name_CN)) == null)
  10779. // //{
  10780. // districts.Add(districtInfo);
  10781. // //}
  10782. // }
  10783. // }
  10784. // }
  10785. // else
  10786. // {
  10787. // //if (cities.Find(it => it.CountriesId == countriesId && it.Name_CN.Equals(provinceInfo.Name_CN)) == null)
  10788. // //{
  10789. // cities.Add(provinceInfo);
  10790. // //}
  10791. // }
  10792. // }
  10793. // }
  10794. // }
  10795. // }
  10796. // var procinceDatas = _sqlSugar.Queryable<Sys_Cities>().ToList();
  10797. // cities = cities.Distinct().ToList();
  10798. // districts = districts.Distinct().ToList();
  10799. // var citiesDatas = cities.Where(it => it.Level == 2).ToList();
  10800. // //var districtDatas = cities.Where(it => it.Level == 3).ToList();
  10801. // cities.AddRange(districts);
  10802. // var citiesAdd = _sqlSugar.Insertable<Sys_Cities>(cities).ExecuteReturnIdentity();
  10803. // //_sqlSugar.RollbackTran();
  10804. // _sqlSugar.CommitTran();
  10805. // return Ok(JsonView(false, "操作成功!"));
  10806. //}
  10807. //[HttpPost]
  10808. //public async Task<IActionResult> LoadCitiesInitInfo(CounrtiesDto dto)
  10809. //{
  10810. // List<CountitiesInfo> infos = dto.MyProperty;
  10811. // List<Sys_Cities> cityInfos = new List<Sys_Cities>();
  10812. // _sqlSugar.BeginTran();
  10813. // var countities = _sqlSugar.Queryable<Sys_Countries>().Where(it => it.IsDel == 0).ToList();
  10814. // var citities = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.IsDel == 0 && it.Level == 2).ToList();
  10815. // foreach (var item in infos)
  10816. // {
  10817. // var countryInfo = countities.Where(it => it.ThreeCode.Equals(item.country_code3)).FirstOrDefault();
  10818. // if (countryInfo != null)
  10819. // {
  10820. // var cityInfo = citities.Where(it => it.CountriesId == countryInfo.Id).ToList();
  10821. // var cityInfo1 = cityInfo.Where(it => item.capital_name_chinese.Contains(it.Name_CN)).FirstOrDefault();
  10822. // if (cityInfo1 != null)
  10823. // {
  10824. // cityInfo1.IsCapital = 0;
  10825. // cityInfos.Add(cityInfo1);
  10826. // }
  10827. // }
  10828. // }
  10829. // var update = _sqlSugar.Updateable<Sys_Cities>(cityInfos)
  10830. // .UpdateColumns(it => it.IsCapital)
  10831. // .WhereColumns(it => it.Id)
  10832. // .ExecuteCommand();
  10833. // //_sqlSugar.RollbackTran();
  10834. // _sqlSugar.CommitTran();
  10835. // return Ok(JsonView(false, "操作成功!"));
  10836. //}
  10837. //public class CounrtiesDto
  10838. //{
  10839. // public List<CountitiesInfo> MyProperty { get; set; }
  10840. //}
  10841. //public class CountitiesInfo
  10842. //{
  10843. // /// <summary>
  10844. // /// 圣约翰
  10845. // /// </summary>
  10846. // public string capital_name_chinese { get; set; }
  10847. // /// <summary>
  10848. // ///
  10849. // /// </summary>
  10850. // public string capital_name { get; set; }
  10851. // /// <summary>
  10852. // ///
  10853. // /// </summary>
  10854. // public string country_type { get; set; }
  10855. // /// <summary>
  10856. // /// 安提瓜和巴布达
  10857. // /// </summary>
  10858. // public string country_name_chinese { get; set; }
  10859. // /// <summary>
  10860. // /// 安提瓜和巴布达
  10861. // /// </summary>
  10862. // public string country_name_chinese_short { get; set; }
  10863. // /// <summary>
  10864. // /// 安提瓜和巴布达
  10865. // /// </summary>
  10866. // public string country_name_chinese_UN { get; set; }
  10867. // /// <summary>
  10868. // ///
  10869. // /// </summary>
  10870. // public string country_name_english_abbreviation { get; set; }
  10871. // /// <summary>
  10872. // ///
  10873. // /// </summary>
  10874. // public string country_name_english_formal { get; set; }
  10875. // /// <summary>
  10876. // ///
  10877. // /// </summary>
  10878. // public string country_name_english_UN { get; set; }
  10879. // /// <summary>
  10880. // ///
  10881. // /// </summary>
  10882. // public string continent_name { get; set; }
  10883. // /// <summary>
  10884. // ///
  10885. // /// </summary>
  10886. // public string subregion_name { get; set; }
  10887. // /// <summary>
  10888. // ///
  10889. // /// </summary>
  10890. // public string country_code2 { get; set; }
  10891. // /// <summary>
  10892. // ///
  10893. // /// </summary>
  10894. // public string country_code3 { get; set; }
  10895. // /// <summary>
  10896. // ///
  10897. // /// </summary>
  10898. // public string phone_code { get; set; }
  10899. //}
  10900. //public class CountriesInfo : BasicInfo
  10901. //{
  10902. // public List<CitiesInfo> c { get; set; }
  10903. //}
  10904. //public class CitiesInfo : BasicInfo
  10905. //{
  10906. // public List<AreaInfo> c { get; set; }
  10907. //}
  10908. //public class AreaInfo : BasicInfo
  10909. //{
  10910. // public List<AreaInfo> c { get; set; }
  10911. //}
  10912. //public class BasicInfo
  10913. //{
  10914. // public string code { get; set; }
  10915. // public string cn { get; set; }
  10916. // public string lv { get; set; }
  10917. // public string en { get; set; }
  10918. //}
  10919. #endregion
  10920. #region 查看邀请方
  10921. /// <summary>
  10922. /// 查看邀请方
  10923. /// 邀请方信息 Init
  10924. /// </summary>
  10925. /// <param name="dto"></param>
  10926. /// <returns></returns>
  10927. [HttpPost]
  10928. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10929. public async Task<IActionResult> PostGroupLinkInvitingUnitNameInit(GroupLinkInvitingUnitNameInitDto dto)
  10930. {
  10931. string sqlWhere = string.Empty;
  10932. if (!string.IsNullOrEmpty(dto.Search))
  10933. {
  10934. sqlWhere = string.Format($@" And UnitName Like '%{dto.Search}%'");
  10935. }
  10936. string sql = string.Format($@"Select
  10937. ROW_NUMBER() Over(Order By Id desc) As Row_Number,
  10938. Id,
  10939. UnitName
  10940. From Res_InvitationOfficialActivityData
  10941. Where IsDel = 0
  10942. And (UnitName != '' Or UnitName != null) {sqlWhere}");
  10943. RefAsync<int> total = 0;
  10944. var _views = await _sqlSugar.SqlQueryable<GroupLinkInvitingUnitNameInitView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  10945. return Ok(JsonView(true, MsgTips.Succeed, _views, total));
  10946. }
  10947. /// <summary>
  10948. /// 查看邀请方
  10949. /// 国家信息 Init
  10950. /// </summary>
  10951. /// <param name="dto"></param>
  10952. /// <returns></returns>
  10953. [HttpPost]
  10954. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10955. public async Task<IActionResult> PostGroupLinkInvitingCountryInit(GroupLinkInvitingUnitNameInitDto dto)
  10956. {
  10957. var groupInfos = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).OrderByDescending(it => it.CreateUserId).ToListAsync();
  10958. var country = groupInfos.Select(it => it.VisitCountry).ToList();
  10959. var diids = groupInfos.Select(it => it.Id).ToList();
  10960. List<string> countrys = new List<string>();
  10961. foreach (var item in country)
  10962. {
  10963. var data = _groupRepository.FormartTeamName(item);
  10964. var dataArray = _groupRepository.GroupSplitCountry(data);
  10965. if (dataArray.Count > 0) countrys.AddRange(dataArray);
  10966. }
  10967. countrys = countrys.Distinct().ToList();
  10968. for (int i = 0; i < countrys.Count; i++)
  10969. {
  10970. string item = countrys[i];
  10971. if (string.IsNullOrEmpty(item) || item.Contains("-"))
  10972. {
  10973. countrys.Remove(item);
  10974. i--;
  10975. }
  10976. }
  10977. RefAsync<int> total = 0;
  10978. var countyDatas = await _sqlSugar.Queryable<Sys_Countries>()
  10979. .Where(it => countrys.Contains(it.Name_CN))
  10980. .WhereIF(!string.IsNullOrEmpty(dto.Search), it => it.Name_CN.Contains(dto.Search))
  10981. .Select(it => new { id = it.Id, name = it.Name_CN })
  10982. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  10983. return Ok(JsonView(true, MsgTips.Succeed, countyDatas, total));
  10984. }
  10985. /// <summary>
  10986. /// 查看邀请方
  10987. /// 城市信息 Init
  10988. /// </summary>
  10989. /// <param name="dto"></param>
  10990. /// <returns></returns>
  10991. [HttpPost]
  10992. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10993. public async Task<IActionResult> PostGroupLinkInvitingCityInit(GroupLinkInvitingCityInitDto dto)
  10994. {
  10995. if (dto.CountiesId < 1) return Ok(JsonView(false, "请传入有效的国家Id"));
  10996. RefAsync<int> total = 0;
  10997. var countyDatas = await _sqlSugar.Queryable<Sys_Cities>()
  10998. .Where(it => it.CountriesId == dto.CountiesId)
  10999. .WhereIF(!string.IsNullOrEmpty(dto.Search), it => it.Name_CN.Contains(dto.Search))
  11000. .OrderBy(it => new { IsCapital = SqlFunc.Asc(it.IsCapital), Id = SqlFunc.Asc(it.Id) })
  11001. .Select(it => new { id = it.Id, name = it.Name_CN })
  11002. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11003. return Ok(JsonView(true, MsgTips.Succeed, countyDatas, total));
  11004. }
  11005. /// <summary>
  11006. /// 查看邀请方
  11007. /// 团组名称 Init
  11008. /// </summary>
  11009. /// <param name="dto"></param>
  11010. /// <returns></returns>
  11011. [HttpPost]
  11012. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11013. public async Task<IActionResult> PostGroupLinkInvitingGroupInit(GroupLinkInvitingDto dto)
  11014. {
  11015. var watch = new Stopwatch();
  11016. watch.Start();
  11017. RefAsync<int> total = 0;
  11018. var countyDatas = await _sqlSugar.Queryable<Res_OfficialActivities>()
  11019. .InnerJoin<Grp_DelegationInfo>((oa, di) => oa.DiId == di.Id)
  11020. .Where((oa, di) => oa.IsDel == 0)
  11021. .WhereIF(!string.IsNullOrEmpty(dto.Search), (oa, di) => di.TeamName.Contains(dto.Search))
  11022. .OrderBy((oa, di) => new { id = SqlFunc.Desc(di.Id) })
  11023. .Select((oa, di) => new { id = di.Id, name = di.TeamName })
  11024. .Distinct()
  11025. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11026. watch.Stop();
  11027. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", countyDatas, total));
  11028. }
  11029. /// <summary>
  11030. /// 查看邀请方
  11031. /// 团组 & 邀请方信息
  11032. /// </summary>
  11033. /// <param name="dto"></param>
  11034. /// <returns></returns>
  11035. [HttpPost]
  11036. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11037. public async Task<IActionResult> PostGroupLinkInvitingPageList(GroupLinkInvitingPageListDto dto)
  11038. {
  11039. var watch = new Stopwatch();
  11040. watch.Start();
  11041. RefAsync<int> total = 0;
  11042. var infos = await _sqlSugar.Queryable<GroupLinkInvitingPageListView>()
  11043. .AS("Grp_DelegationInfo")
  11044. .Includes(x => x.InvitingInfos)
  11045. .Where(x => x.IsDel == 0 && x.InvitingInfos.Any(z => z.IsDel == 0))
  11046. .WhereIF(!string.IsNullOrEmpty(dto.Counrty), x => x.VisitCountry.Contains(dto.Counrty))
  11047. .WhereIF(!string.IsNullOrEmpty(dto.Area), x => x.InvitingInfos.Any(z => z.Area.Contains(dto.Area))) //
  11048. .WhereIF(!string.IsNullOrEmpty(dto.TeamName), x => x.TeamName.Contains(dto.TeamName)) //
  11049. .WhereIF(!string.IsNullOrEmpty(dto.UnitName), x => x.InvitingInfos.Any(z => z.Client.Contains(dto.UnitName)))
  11050. .OrderBy(x => new { JietuanTime = SqlFunc.Desc(x.VisitStartDate) })
  11051. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11052. var userDatas = _sqlSugar.Queryable<Sys_Users>().Where(x => x.IsDel == 0).ToList();
  11053. var setDatas = _sqlSugar.Queryable<Sys_SetData>().Where(x => x.IsDel == 0).ToList();
  11054. infos.ForEach(x =>
  11055. {
  11056. x.TeamDid = setDatas.Find(y => int.Parse(x.TeamDid) == y.Id)?.Name ?? "-";
  11057. x.JietuanOperator = userDatas.Find(y => int.Parse(x.JietuanOperator) == y.Id)?.CnName ?? "-";
  11058. x.TeamLevSId = setDatas.Find(y => int.Parse(x.TeamLevSId) == y.Id)?.Name ?? "-";
  11059. x.InvitingInfos = x.InvitingInfos.Where(it => it.IsDel == 0).ToList();
  11060. });
  11061. watch.Stop();
  11062. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", infos, total));
  11063. }
  11064. #endregion
  11065. #region 报批行程
  11066. /// <summary>
  11067. /// 报批行程初始化
  11068. /// </summary>
  11069. /// <param name="dto"></param>
  11070. /// <returns></returns>
  11071. [HttpPost]
  11072. public IActionResult ApprovalJourneyInit(ApprovalJourneyDto dto)
  11073. {
  11074. const int chiNumber = 5;
  11075. var jw = JsonView(false);
  11076. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  11077. var group = groupList.First();
  11078. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  11079. group = groupList.First(x => x.Id == diid);
  11080. if (group == null)
  11081. {
  11082. jw.Msg = "暂无团组!";
  11083. return Ok(jw);
  11084. }
  11085. var data = new
  11086. {
  11087. groupList = groupList.Select(x => new
  11088. {
  11089. x.TeamName,
  11090. x.Id
  11091. }),
  11092. content = new ArrayList(),
  11093. groupInfo = new
  11094. {
  11095. group.VisitDays,
  11096. group.TourCode,
  11097. group.VisitPNumber,
  11098. group.TeamName,
  11099. group.Id,
  11100. visitStartDate = group.VisitStartDate.ToString("yyyy-MM-dd"),
  11101. visitEndDate = group.VisitEndDate.ToString("yyyy-MM-dd")
  11102. },
  11103. };
  11104. var resultArr = new ArrayList();
  11105. var content = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.Diid == diid && x.IsDel == 0).ToList();
  11106. if (content.Count == 0)
  11107. {
  11108. var stay = "-";
  11109. var cityPath = "-";
  11110. //添加城市路径以及住宿地
  11111. //黑屏代码数据
  11112. DataTable dtBlack = GeneralMethod.GetTableByBlackCode(group.Id);
  11113. if (dtBlack.Rows.Count == 0 || string.IsNullOrWhiteSpace(dtBlack.Rows[0][1].ToString()))
  11114. {
  11115. jw = JsonView(true, "黑屏代码有误!", data);
  11116. return Ok(jw);
  11117. }
  11118. foreach (DataRow row in dtBlack.Rows)
  11119. {
  11120. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  11121. {
  11122. jw = JsonView(true, "黑屏代码有误!" + row["Error"].ToString(), data);
  11123. return Ok(jw);
  11124. }
  11125. }
  11126. //黑屏代码获取时间区间
  11127. var timeArr = GeneralMethod.GetTimeListByDataTable(dtBlack);
  11128. string[] Day = new string[] { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" };
  11129. _sqlSugar.BeginTran();
  11130. for (int i = 0; i < timeArr.Count; i++)
  11131. {
  11132. stay = "-";
  11133. cityPath = "-";
  11134. DateTime NewData = DateTime.Parse(timeArr[i]);
  11135. string week = Day[Convert.ToInt32(NewData.DayOfWeek.ToString("d"))].ToString();
  11136. Grp_ApprovalTravel appro = new Grp_ApprovalTravel();
  11137. var tbSelect = dtBlack.Select(string.Format("Day = '{0}'", NewData.ToString("yyyy-MM-dd")));
  11138. if (tbSelect.Length > 0)
  11139. {
  11140. List<string> threeCodeStr = new List<string>();
  11141. foreach (var item in tbSelect)
  11142. {
  11143. var threeCode = item["Three"].ToString() ?? "";
  11144. if (threeCode.Length == 6)
  11145. {
  11146. var start = threeCode.Substring(0, 3);
  11147. var end = threeCode.Substring(3, 3);
  11148. if (threeCodeStr.Count == 0)
  11149. {
  11150. threeCodeStr.Add(start);
  11151. threeCodeStr.Add(end);
  11152. }
  11153. else
  11154. {
  11155. if (threeCodeStr[threeCodeStr.Count - 1] == start)
  11156. {
  11157. threeCodeStr.Add(end);
  11158. }
  11159. else
  11160. {
  11161. threeCodeStr.Add(start);
  11162. threeCodeStr.Add(end);
  11163. }
  11164. }
  11165. }
  11166. }
  11167. var threeCodeList = _threeCodeRepository.QueryThreeCodeArray(threeCodeStr);
  11168. var last = threeCodeStr.Last();
  11169. foreach (var item in threeCodeStr)
  11170. {
  11171. cityPath += (threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】") + "-";
  11172. if (item.Equals(last))
  11173. {
  11174. stay = threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】";
  11175. }
  11176. }
  11177. cityPath = cityPath.Trim('-');
  11178. }
  11179. appro.Date = "第" + intToString(i + 1) + "天 " + NewData.Month + "月" + NewData.Day + "日(" + week + ") " + cityPath + " 宿:" + stay;
  11180. appro.Diid = diid ?? -1;
  11181. var thisId = _sqlSugar.Insertable<Grp_ApprovalTravel>(appro).ExecuteReturnIdentity();
  11182. appro.Id = thisId;
  11183. appro.CreateUserId = dto.UserId;
  11184. appro.CreateTime = DateTime.Now;
  11185. content.Add(appro);
  11186. }
  11187. _sqlSugar.CommitTran();
  11188. }
  11189. foreach (var x in content)
  11190. {
  11191. var chiList = _sqlSugar.Queryable<Grp_ApprovalTravelDetails>().Where(x1 => x1.ParentId == x.Id && x1.IsDel == 0).ToList();
  11192. if (chiList.Count < chiNumber)
  11193. {
  11194. for (int i = chiList.Count; i < chiNumber; i++)
  11195. {
  11196. chiList.Add(new Grp_ApprovalTravelDetails());
  11197. }
  11198. }
  11199. resultArr.Add(new
  11200. {
  11201. x.Id,
  11202. x.Date,
  11203. x.Diid,
  11204. chiList = chiList.Select(x1 => new
  11205. {
  11206. timeInterval = x1.Time == null ? new string[1] : x1.Time.Split('-'),
  11207. x1.Details,
  11208. x1.ParentId,
  11209. x1.Id
  11210. })
  11211. });
  11212. }
  11213. data = data with
  11214. {
  11215. content = resultArr,
  11216. };
  11217. jw = JsonView(true, "获取成功!", data);
  11218. return Ok(jw);
  11219. }
  11220. /// <summary>
  11221. /// 报批行程删除
  11222. /// </summary>
  11223. /// <param name="dto"></param>
  11224. /// <returns></returns>
  11225. [HttpPost]
  11226. public IActionResult DeleteApprovalJourney(DeleteApprovalJourney dto)
  11227. {
  11228. var jw = JsonView(false);
  11229. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  11230. if (group == null)
  11231. {
  11232. jw.Msg = "团组参数有误!";
  11233. return Ok(jw);
  11234. }
  11235. try
  11236. {
  11237. _sqlSugar.BeginTran();
  11238. var arr = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.Diid == dto.Diid && x.IsDel == 0).Select(x => x.Id).ToList();
  11239. _ = _sqlSugar.Updateable<Grp_ApprovalTravelDetails>().SetColumns(x => new Grp_ApprovalTravelDetails
  11240. {
  11241. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  11242. DeleteUserId = dto.uesrId,
  11243. IsDel = 1
  11244. }).Where(x => arr.Contains(x.ParentId) && x.IsDel == 0).ExecuteCommand();
  11245. _ = _sqlSugar.Updateable<Grp_ApprovalTravel>().SetColumns(x => new Grp_ApprovalTravel
  11246. {
  11247. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  11248. DeleteUserId = dto.uesrId,
  11249. IsDel = 1
  11250. }).Where(x => arr.Contains(x.Id)).ExecuteCommand();
  11251. _sqlSugar.CommitTran();
  11252. jw = JsonView(true, "删除成功");
  11253. }
  11254. catch (Exception ex)
  11255. {
  11256. jw = JsonView(false, ex.Message);
  11257. }
  11258. return Ok(jw);
  11259. }
  11260. /// <summary>
  11261. /// 报批行程保存
  11262. /// </summary>
  11263. /// <param name="dto"></param>
  11264. /// <returns></returns>
  11265. [HttpPost]
  11266. public IActionResult SaveApprovalJourney(SaveApprovalJourney dto)
  11267. {
  11268. var jw = JsonView(false);
  11269. var Find = dto.Arr.Find(x => x.id == 0);
  11270. if (Find != null)
  11271. {
  11272. jw.Msg = "生成的ID为0!";
  11273. return Ok(jw);
  11274. }
  11275. foreach (var item in dto.Arr)
  11276. {
  11277. foreach (var chi in item.chiList)
  11278. {
  11279. if (chi.parentId == 0)
  11280. {
  11281. chi.parentId = item.id;
  11282. }
  11283. }
  11284. }
  11285. var chiArr = dto.Arr.SelectMany(x => x.chiList).ToList();
  11286. _sqlSugar.BeginTran();
  11287. if (chiArr.Where(x => x.id == 0).Count() == chiArr.Count)
  11288. {
  11289. var parentIds = dto.Arr.Select(x => x.id).ToList();
  11290. _sqlSugar.Updateable<Grp_ApprovalTravelDetails>().Where(x => parentIds.Contains(x.ParentId) && x.IsDel == 0).SetColumns(x => new Grp_ApprovalTravelDetails
  11291. {
  11292. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  11293. DeleteUserId = dto.UserId,
  11294. IsDel = 1
  11295. }).ExecuteCommand();
  11296. }
  11297. try
  11298. {
  11299. _ = _sqlSugar.Insertable<Grp_ApprovalTravelDetails>(chiArr.Where(x => x.id == 0).Select(x => new Grp_ApprovalTravelDetails
  11300. {
  11301. CreateTime = DateTime.Now,
  11302. CreateUserId = dto.UserId,
  11303. Details = x.details,
  11304. ParentId = x.parentId,
  11305. Time = x.timeInterval.Where(x => !string.IsNullOrWhiteSpace(x)).Count() > 1 ? x.timeInterval[0] + "-" + x.timeInterval[1] : "",
  11306. Remark = "",
  11307. IsDel = 0
  11308. }).ToList()).ExecuteCommand();
  11309. _ = _sqlSugar.Updateable<Grp_ApprovalTravelDetails>(chiArr.Where(x => x.id != 0).Select(x => new Grp_ApprovalTravelDetails
  11310. {
  11311. Id = x.id,
  11312. Details = x.details,
  11313. ParentId = x.parentId,
  11314. Time = x.timeInterval.Where(x => !string.IsNullOrWhiteSpace(x)).Count() > 1 ? x.timeInterval[0] + "-" + x.timeInterval[1] : "",
  11315. }).ToList()).UpdateColumns(x => new Grp_ApprovalTravelDetails
  11316. {
  11317. Details = x.Details,
  11318. ParentId = x.ParentId,
  11319. Time = x.Time
  11320. }).ExecuteCommand();
  11321. _ = _sqlSugar.Updateable<Grp_ApprovalTravel>(dto.Arr.Where(x => x.id != 0).Select(x => new Grp_ApprovalTravel
  11322. {
  11323. Id = x.id,
  11324. Date = x.date,
  11325. }).ToList()).UpdateColumns(x => new Grp_ApprovalTravel
  11326. {
  11327. Date = x.Date
  11328. }).ExecuteCommand();
  11329. _sqlSugar.CommitTran();
  11330. jw = JsonView(true, "保存成功!");
  11331. }
  11332. catch (Exception ex)
  11333. {
  11334. _sqlSugar.RollbackTran();
  11335. jw = JsonView(false, "保存失败!" + ex.Message);
  11336. }
  11337. return Ok(jw);
  11338. }
  11339. /// <summary>
  11340. /// 报批行程生成
  11341. /// </summary>
  11342. /// <param name="dto"></param>
  11343. /// <returns></returns>
  11344. [HttpPost]
  11345. public IActionResult CreateApprovalJourney(CreateApprovalJourneyDto dto)
  11346. {
  11347. var jw = JsonView(false);
  11348. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  11349. if (group == null)
  11350. {
  11351. jw.Msg = "暂无该团组!";
  11352. return Ok(jw);
  11353. }
  11354. //黑屏代码数据
  11355. DataTable dtBlack = GeneralMethod.GetTableByBlackCode(group.Id);
  11356. if (dtBlack.Rows.Count == 0 || string.IsNullOrWhiteSpace(dtBlack.Rows[0][1].ToString()))
  11357. {
  11358. jw.Msg = "黑屏代码有误!";
  11359. return Ok(jw);
  11360. }
  11361. foreach (DataRow row in dtBlack.Rows)
  11362. {
  11363. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  11364. {
  11365. jw.Msg = "黑屏代码有误!" + row["Error"].ToString();
  11366. return Ok(jw);
  11367. }
  11368. }
  11369. var officialActivitiesArr = _sqlSugar.Queryable<Res_OfficialActivities>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).ToList();
  11370. var resultArr = new ArrayList();
  11371. if (officialActivitiesArr.Count == 0)
  11372. {
  11373. jw.Msg = "暂无公务出访信息!";
  11374. return Ok(jw);
  11375. }
  11376. try
  11377. {
  11378. _sqlSugar.BeginTran();
  11379. DeleteApprovalJourney(new
  11380. Domain.Dtos.Groups.DeleteApprovalJourney
  11381. {
  11382. Diid = dto.Diid,
  11383. uesrId = dto.Userid
  11384. });
  11385. var stay = "-";
  11386. var cityPath = "-";
  11387. //添加城市路径以及住宿地
  11388. //黑屏代码获取时间区间
  11389. var timeArr = GeneralMethod.GetTimeListByDataTable(dtBlack);
  11390. var empty = "【未收入该三字码!请机票同事录入】";
  11391. string[] Day = new string[] { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" };
  11392. for (int i = 0; i < timeArr.Count; i++)
  11393. {
  11394. stay = "-";
  11395. cityPath = "-";
  11396. var chiarr = new List<Grp_ApprovalTravelDetails>();
  11397. DateTime NewData = DateTime.Parse(timeArr[i]);
  11398. var gwinfo = officialActivitiesArr.Where(x => DateTime.TryParse(x.Date, out DateTime gwData) && gwData.ToString("yyyy-MM-dd") == NewData.ToString("yyyy-MM-dd")).OrderBy(x => x.Time).ToList();
  11399. var tbSelect = dtBlack.Select(string.Format("Day = '{0}'", NewData.ToString("yyyy-MM-dd")));
  11400. if (tbSelect.Length > 0)
  11401. {
  11402. List<string> threeCodeStr = new List<string>();
  11403. bool isTrade = false;
  11404. string trip = string.Empty;
  11405. var rowLast = tbSelect.Last();
  11406. var rowFirst = tbSelect.First();
  11407. var airStartTime = rowFirst["StartTime"].ToString() ?? "0000";
  11408. var airEndTime = rowLast["EndTime"].ToString() ?? "0000";
  11409. var takeOffTime = DateTime.Parse(timeArr[i]);
  11410. var fallToTime = DateTime.Parse(timeArr[i]);
  11411. takeOffTime = takeOffTime.AddHours(int.Parse(airStartTime.Substring(0, 2)));
  11412. takeOffTime = takeOffTime.AddMinutes(int.Parse(airStartTime.Substring(2, 2)));
  11413. fallToTime = fallToTime.AddHours(int.Parse(airEndTime.Substring(0, 2)));
  11414. fallToTime = fallToTime.AddMinutes(int.Parse(airEndTime.Substring(2, 2)));
  11415. foreach (var item in tbSelect)
  11416. {
  11417. var start = string.Empty;
  11418. var end = string.Empty;
  11419. var threeCode = item["Three"].ToString() ?? "";
  11420. if (threeCode.Length == 6)
  11421. {
  11422. start = threeCode.Substring(0, 3);
  11423. end = threeCode.Substring(3, 3);
  11424. if (threeCodeStr.Count == 0)
  11425. {
  11426. threeCodeStr.Add(start);
  11427. threeCodeStr.Add(end);
  11428. }
  11429. else
  11430. {
  11431. if (threeCodeStr[threeCodeStr.Count - 1] == start)
  11432. {
  11433. threeCodeStr.Add(end);
  11434. }
  11435. else
  11436. {
  11437. threeCodeStr.Add(start);
  11438. threeCodeStr.Add(end);
  11439. }
  11440. }
  11441. }
  11442. //处理机票信息
  11443. var start_Object = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three.ToUpper() == start.ToUpper());
  11444. var end_Object = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three.ToUpper() == end.ToUpper());
  11445. if (start_Object == null)
  11446. {
  11447. start_Object = new Res_ThreeCode()
  11448. {
  11449. AirPort = empty,
  11450. AirPort_En = empty,
  11451. City = empty,
  11452. Country = empty,
  11453. Four = empty,
  11454. Three = empty,
  11455. };
  11456. }
  11457. if (end_Object == null)
  11458. {
  11459. end_Object = new Res_ThreeCode()
  11460. {
  11461. AirPort = empty,
  11462. AirPort_En = empty,
  11463. City = empty,
  11464. Country = empty,
  11465. Four = empty,
  11466. Three = empty,
  11467. };
  11468. }
  11469. //机型判断
  11470. string airModel = item["AirModel"].ToString();
  11471. airModel = GeneralMethod.GetLonger(airModel!.Substring(0, 1)) + airModel;
  11472. string flightTime = item["FlightTime"].ToString();
  11473. if (flightTime!.Contains(":"))
  11474. {
  11475. flightTime = flightTime.Replace(":", "小时");
  11476. flightTime += "分钟";
  11477. }
  11478. if (flightTime.Contains("H"))
  11479. {
  11480. flightTime = flightTime.Replace("H", "小时");
  11481. }
  11482. if (flightTime.Contains("M"))
  11483. {
  11484. flightTime = flightTime.Replace("M", "分钟");
  11485. }
  11486. IFormatProvider ifp = new CultureInfo("zh-CN", true);
  11487. if (DateTime.TryParseExact(flightTime, "HH小时mm分钟", ifp, DateTimeStyles.None, out DateTime flightDataTime))
  11488. {
  11489. flightTime = flightDataTime.Hour > 0
  11490. ? flightDataTime.Hour.ToString() + "小时" + (flightDataTime.Minute > 0
  11491. ? flightDataTime.Minute.ToString() + "分钟" : "") : flightDataTime.Minute > 0
  11492. ? flightDataTime.Minute.ToString() + "分钟" : "";
  11493. }
  11494. //航班号
  11495. string flightcode = item["Fliagtcode"].ToString();
  11496. var aircompany = _sqlSugar.Queryable<Res_AirCompany>().First(x => x.ShortCode.ToUpper() == flightcode!.Substring(0, 2).ToUpper() && x.IsDel == 0);
  11497. var hsEmpty = "【此航司" + flightcode!.Substring(0, 2).ToUpper() + "未收录,请机票同事录入】";
  11498. if (aircompany == null)
  11499. {
  11500. aircompany = new Res_AirCompany
  11501. {
  11502. CnName = hsEmpty,
  11503. EnName = hsEmpty,
  11504. ShortCode = hsEmpty,
  11505. };
  11506. }
  11507. //从成都天府国际机场搭乘四川航空公司3U3961飞往东京
  11508. trip += $"从{start_Object.AirPort}搭乘{aircompany.CnName} {flightcode} 飞往 {end_Object.City};\r\n({start_Object.AirPort}/{end_Object.AirPort} 机型:{airModel} 飞行时间{flightTime});\r\n";
  11509. isTrade = Convert.ToBoolean(item["isTransitShipment"]);
  11510. if (isTrade)
  11511. {
  11512. trip += $"抵达{end_Object.AirPort}{item["EndBuilding"].ToString().Trim()}航站楼(中转 行李直达)\r\n";
  11513. }
  11514. else
  11515. {
  11516. trip += "\r\n"; //$"抵达{end_Object.AirPort}{item["EndBuilding"].ToString().Trim()}航站楼,办理入境手续,之后前往提取行李\r\n";
  11517. }
  11518. }
  11519. chiarr.Add(new Grp_ApprovalTravelDetails
  11520. {
  11521. Time = takeOffTime.ToString("HH:mm") + "-" + fallToTime.ToString("HH:mm"),
  11522. CreateTime = DateTime.Now,
  11523. CreateUserId = dto.Userid,
  11524. ParentId = 0,
  11525. Details = trip
  11526. });
  11527. var threeCodeList = _threeCodeRepository.QueryThreeCodeArray(threeCodeStr);
  11528. var last = threeCodeStr.Last();
  11529. foreach (var item in threeCodeStr)
  11530. {
  11531. cityPath += (threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】") + "-";
  11532. if (item.Equals(last))
  11533. {
  11534. stay = threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】";
  11535. }
  11536. }
  11537. cityPath = cityPath.Trim('-');
  11538. }
  11539. string week = Day[Convert.ToInt32(NewData.DayOfWeek.ToString("d"))].ToString();
  11540. Grp_ApprovalTravel appro = new Grp_ApprovalTravel();
  11541. appro.Date = "第" + intToString(i + 1) + "天 " + NewData.Month + "月" + NewData.Day + "日(" + week + ") " + cityPath + " 宿:" + stay;
  11542. appro.Diid = dto.Diid;
  11543. var thisId = _sqlSugar.Insertable<Grp_ApprovalTravel>(appro).ExecuteReturnIdentity();
  11544. appro.Id = thisId;
  11545. appro.CreateUserId = dto.Userid;
  11546. appro.CreateTime = DateTime.Now;
  11547. foreach (var item in gwinfo)
  11548. {
  11549. Grp_ApprovalTravelDetails chi = new Grp_ApprovalTravelDetails();
  11550. chi.Details = "拜访" + item.Client;
  11551. if (!string.IsNullOrWhiteSpace(item.ReqSample))
  11552. {
  11553. chi.Details += "," + item.ReqSample;
  11554. }
  11555. chi.ParentId = thisId;
  11556. chi.Time = item.Time;
  11557. chiarr.Add(chi);
  11558. }
  11559. if (chiarr.Count < 5)
  11560. {
  11561. for (int j = chiarr.Count; j < 5; j++)
  11562. {
  11563. chiarr.Add(new
  11564. Grp_ApprovalTravelDetails());
  11565. }
  11566. }
  11567. resultArr.Add(new
  11568. {
  11569. appro.Id,
  11570. appro.Date,
  11571. appro.Diid,
  11572. chiList = chiarr.Select(x1 => new
  11573. {
  11574. timeInterval = x1.Time == null ? new string[1] : x1.Time.Split('-'),
  11575. x1.Details,
  11576. x1.ParentId,
  11577. x1.Id
  11578. })
  11579. });
  11580. }
  11581. _sqlSugar.CommitTran();
  11582. jw = JsonView(true, "生成成功!", resultArr);
  11583. }
  11584. catch (Exception ex)
  11585. {
  11586. jw.Code = 400;
  11587. jw.Msg = "生成失败!" + ex.Message;
  11588. }
  11589. return Ok(jw);
  11590. }
  11591. /// <summary>
  11592. /// 报批行程word导出
  11593. /// </summary>
  11594. /// <param name="dto"></param>
  11595. /// <returns></returns>
  11596. [HttpPost]
  11597. public IActionResult ExportApprovalJourneyWord(ExportApprovalJourneyWord dto)
  11598. {
  11599. var jw = JsonView(false);
  11600. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  11601. if (group == null)
  11602. {
  11603. jw.Msg = "暂无该团组!";
  11604. return Ok(jw);
  11605. }
  11606. //模板路径
  11607. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "Template/公务行程导出模板.docx"); //"C:\\Server\\File\\OA2023\\Office\\Word\\Template/公务行程导出模板.docx"
  11608. //载入模板
  11609. Document doc = new Document(tempPath);
  11610. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  11611. //获取所填表格的序数
  11612. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  11613. Aspose.Words.Tables.Row titleRowClone = null;
  11614. Aspose.Words.Tables.Row CenterRowClone = null;
  11615. int index = 0;
  11616. int indexChi = 0;
  11617. int SetIndex = 0;
  11618. var ApprovalTravelArr = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid).ToList();
  11619. //获取数据,放到datatable
  11620. foreach (var item in ApprovalTravelArr)
  11621. {
  11622. if (index > 0)
  11623. {
  11624. titleRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[0].Clone(true);
  11625. tableOne.AppendChild(titleRowClone);
  11626. }
  11627. var textTime = item.Date;
  11628. var ChiRep = _sqlSugar.Queryable<Grp_ApprovalTravelDetails>().Where(x => x.IsDel == 0 && x.ParentId == item.Id).ToList();
  11629. SetCells(tableOne, doc, SetIndex, 0, textTime);
  11630. SetIndex++;
  11631. if (ChiRep.Count > 0)
  11632. {
  11633. foreach (var itemChi in ChiRep)
  11634. {
  11635. var txtTime = itemChi.Time;
  11636. var txtDetail = itemChi.Details;
  11637. if (indexChi > 0)
  11638. {
  11639. CenterRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[1].Clone(true);
  11640. tableOne.AppendChild(CenterRowClone);
  11641. }
  11642. if (string.IsNullOrEmpty(txtTime) && string.IsNullOrEmpty(txtDetail))
  11643. {
  11644. SetCells(tableOne, doc, SetIndex, 0, "");
  11645. SetCells(tableOne, doc, SetIndex, 1, "");
  11646. indexChi++;
  11647. SetIndex++;
  11648. break;
  11649. }
  11650. SetCells(tableOne, doc, SetIndex, 0, txtTime);
  11651. SetCells(tableOne, doc, SetIndex, 1, txtDetail);
  11652. indexChi++;
  11653. SetIndex++;
  11654. }
  11655. }
  11656. else
  11657. {
  11658. if (indexChi > 0)
  11659. {
  11660. CenterRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[1].Clone(true);
  11661. tableOne.AppendChild(CenterRowClone);
  11662. }
  11663. SetCells(tableOne, doc, SetIndex, 0, "");
  11664. SetCells(tableOne, doc, SetIndex, 1, "");
  11665. indexChi++;
  11666. SetIndex++;
  11667. }
  11668. index++;
  11669. }
  11670. string strFileName = "/Travel/ExportApprovalJourneyWord/" + group.TeamName + "商邀出访日程.doc";
  11671. doc.Save(AppSettingsHelper.Get("WordBasePath") + strFileName); //"C:\\Server\\File\\OA2023\\Office\\Word" + strFileName
  11672. jw.Data = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + strFileName; //"C:\\Server\\File\\OA2023\\Office\\Word" + strFileName
  11673. jw.Code = 200;
  11674. jw.Msg = "";
  11675. return Ok(jw);
  11676. }
  11677. private string intToString(int numberVal)
  11678. {
  11679. string numberval = numberVal.ToString();
  11680. Dictionary<char, string> Number = new Dictionary<char, string>();
  11681. Number.Add('1', "一");
  11682. Number.Add('2', "二");
  11683. Number.Add('3', "三");
  11684. Number.Add('4', "四");
  11685. Number.Add('5', "五");
  11686. Number.Add('6', "六");
  11687. Number.Add('7', "七");
  11688. Number.Add('8', "八");
  11689. Number.Add('9', "九");
  11690. string stringNumberVal = string.Empty;
  11691. for (int i = 0; i < numberval.Length; i++)
  11692. {
  11693. if (i == 0)
  11694. {
  11695. stringNumberVal += Number[numberval[i]];
  11696. }
  11697. else if (i >= 1)
  11698. {
  11699. if (numberval[i] == '0')
  11700. {
  11701. stringNumberVal = "十";
  11702. }
  11703. else
  11704. {
  11705. stringNumberVal += "十" + Number[numberval[i]];
  11706. }
  11707. }
  11708. }
  11709. return stringNumberVal;
  11710. }
  11711. private void SetCells(Aspose.Words.Tables.Table table, Document doc, int rows, int cells, string val)
  11712. {
  11713. //获取table中的某个单元格,从0开始
  11714. Cell lshCell = table.Rows[rows].Cells[cells];
  11715. //将单元格中段落移除
  11716. foreach (Node item in lshCell.Paragraphs)
  11717. {
  11718. lshCell.Paragraphs.Remove(item);
  11719. }
  11720. if (val.Contains("\r\n"))
  11721. {
  11722. var spArr = val.Split("\r\n").Where(x => !string.IsNullOrWhiteSpace(x));
  11723. foreach (var item in spArr)
  11724. {
  11725. //新建一个段落
  11726. Paragraph p = new Paragraph(doc);
  11727. var r = new Run(doc, item);
  11728. //把设置的值赋给之前新建的段落
  11729. p.AppendChild(r);
  11730. //将此段落加到单元格内
  11731. lshCell.AppendChild(p);
  11732. }
  11733. }
  11734. else
  11735. {
  11736. //新建一个段落
  11737. Paragraph p = new Paragraph(doc);
  11738. var r = new Run(doc, val);
  11739. //把设置的值赋给之前新建的段落
  11740. p.AppendChild(r);
  11741. //将此段落加到单元格内
  11742. lshCell.AppendChild(p);
  11743. }
  11744. }
  11745. [HttpPost]
  11746. public async Task<IActionResult> ServerHttp(string paramStr)
  11747. {
  11748. paramStr = paramStr.TrimEnd('\'');
  11749. paramStr = paramStr.TrimStart('\'');
  11750. JsonView jw = JsonView(false);
  11751. JObject param = JObject.Parse(paramStr);
  11752. if (!param.ContainsKey("url"))
  11753. {
  11754. jw.Msg = "url null";
  11755. return Ok(jw);
  11756. }
  11757. string url = param["url"]!.ToString();
  11758. var methon = "get";
  11759. Dictionary<string, string> bodyValues = null;
  11760. Dictionary<string, string> headValues = null;
  11761. if (param.ContainsKey("methon"))
  11762. {
  11763. methon = param["methon"]!.ToString();
  11764. }
  11765. if (param.ContainsKey("header"))
  11766. {
  11767. var header = param["header"]!.ToString();
  11768. JObject headerJobject = JObject.Parse(header);
  11769. headValues = new Dictionary<string, string>();
  11770. foreach (JProperty item in headerJobject.Properties())
  11771. {
  11772. var value = item.Value.ToString();
  11773. var head = item.Path;
  11774. headValues.Add(head, value);
  11775. }
  11776. }
  11777. if (param.ContainsKey("body"))
  11778. {
  11779. var body = param["body"]!.ToString();
  11780. bodyValues = new Dictionary<string, string>();
  11781. JObject bodyJobject = JObject.Parse(body);
  11782. foreach (JProperty item in bodyJobject.Properties())
  11783. {
  11784. var value = item.Value.ToString();
  11785. var head = item.Path;
  11786. bodyValues.Add(head, value);
  11787. }
  11788. }
  11789. HttpClient client = new HttpClient();
  11790. string responseString = string.Empty;
  11791. if (param.ContainsKey("isJson"))
  11792. {
  11793. }
  11794. if (headValues != null)
  11795. {
  11796. foreach (var item in headValues.Keys)
  11797. {
  11798. client.DefaultRequestHeaders.Add(item, headValues[item]);
  11799. }
  11800. }
  11801. try
  11802. {
  11803. if (methon == "get")
  11804. {
  11805. responseString = await client.GetStringAsync(url);
  11806. }
  11807. else if (methon == "post")
  11808. {
  11809. if (bodyValues == null)
  11810. {
  11811. jw.Msg = "methon post body null";
  11812. return Ok(jw);
  11813. }
  11814. // 数据转化为 key=val 格式
  11815. var content = new FormUrlEncodedContent(bodyValues);
  11816. var response = await client.PostAsync(url, content);
  11817. // 获取数据
  11818. responseString = await response.Content.ReadAsStringAsync();
  11819. }
  11820. else
  11821. {
  11822. jw.Msg = "methon error";
  11823. }
  11824. jw = JsonView(true, "success", responseString);
  11825. }
  11826. catch (Exception ex)
  11827. {
  11828. jw.Msg = "error " + ex.Message;
  11829. jw.Data = ex.StackTrace;
  11830. }
  11831. finally
  11832. {
  11833. client.Dispose();
  11834. }
  11835. return Ok(jw);
  11836. }
  11837. #endregion
  11838. // /// <summary>
  11839. // ///
  11840. // /// </summary>
  11841. // /// <param name="_dto"></param>
  11842. // /// <returns></returns>
  11843. // [HttpPost]
  11844. // [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11845. // public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  11846. // {
  11847. // _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  11848. // string sql = string.Format(@" Select * From Visa With(Nolock) ");
  11849. // List<OA2014_Visa> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_Visa>(sql).ToList();
  11850. // _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  11851. // Dictionary<string, int> dic_psg = new Dictionary<string, int>();
  11852. // dic_psg.Add("客人", 974);
  11853. // dic_psg.Add("司机", 975);
  11854. // dic_psg.Add("导游", 976);
  11855. // dic_psg.Add("公司内部人员", 977);
  11856. // dic_psg.Add("司机/导游/公司内部人员", 978);
  11857. // foreach (var item in list_visa)
  11858. // {
  11859. // Grp_VisaInfo temp = new Grp_VisaInfo();
  11860. // temp.Id = item.Id;
  11861. // temp.DIId = item.DIId;
  11862. // temp.VisaClient = item.VisaClient;
  11863. // temp.VisaPrice = Convert.ToDecimal(item.VisaPrice);
  11864. // temp.VisaCurrency = item.VisaCurrency;
  11865. // temp.IsThird = item.IsThird;
  11866. // if (dic_psg.ContainsKey(item.PassengerType))
  11867. // {
  11868. // temp.PassengerType = dic_psg[item.PassengerType];
  11869. // }
  11870. // else {
  11871. // temp.PassengerType = -1;
  11872. // }
  11873. // temp.VisaNumber = item.VisaNumber;
  11874. // temp.VisaFreeNumber = item.VisaFreeNumber;
  11875. // temp.CreateUserId = item.Operators;
  11876. // DateTime dt_ct;
  11877. // bool b_ct = DateTime.TryParse(item.OperatorsDate, out dt_ct);
  11878. // if (b_ct)
  11879. // {
  11880. // temp.CreateTime = dt_ct;
  11881. // }
  11882. // else
  11883. // {
  11884. // temp.CreateTime = DateTime.Now;
  11885. // }
  11886. // temp.DeleteTime = "";
  11887. // temp.DeleteUserId = 0;
  11888. // temp.Remark = item.Remark;
  11889. // if (string.IsNullOrEmpty(temp.Remark)) {
  11890. // temp.Remark = "";
  11891. // }
  11892. // temp.IsDel = item.IsDel;
  11893. // temp.VisaDescription = item.VisaAttachment;
  11894. // string sqlInsert = string.Format(@" INSERT INTO [dbo].[Grp_VisaInfo]
  11895. //([Id]
  11896. // ,[DIId]
  11897. // ,[VisaClient]
  11898. // ,[VisaPrice]
  11899. // ,[VisaCurrency]
  11900. // ,[IsThird]
  11901. // ,[PassengerType]
  11902. // ,[VisaNumber]
  11903. // ,[VisaFreeNumber]
  11904. // ,[CreateUserId]
  11905. // ,[CreateTime]
  11906. // ,[DeleteTime]
  11907. // ,[DeleteUserId]
  11908. // ,[Remark]
  11909. // ,[IsDel]
  11910. // ,[visaDescription])
  11911. // VALUES
  11912. // ({0},{1},'{2}',{3},{4}
  11913. //,{5},{6},{7},{8},{9}
  11914. //,'{10}','{11}',{12},'{13}',{14},'{15}') ",temp.Id,temp.DIId,temp.VisaClient,temp.VisaPrice,temp.VisaCurrency,
  11915. //temp.IsThird,temp.PassengerType,temp.VisaNumber,temp.VisaNumber,temp.CreateUserId,
  11916. //temp.CreateTime, temp.DeleteTime, temp.DeleteUserId, temp.Remark,temp.IsDel,temp.VisaDescription
  11917. //);
  11918. // await _airTicketResRep.ExecuteCommandAsync(sqlInsert);
  11919. // }
  11920. // return Ok(JsonView(true, "操作成功!"));
  11921. // }
  11922. /// <summary>
  11923. /// 123132123
  11924. /// </summary>
  11925. /// <param name="_dto"></param>
  11926. /// <returns></returns>
  11927. [HttpPost]
  11928. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11929. public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  11930. {
  11931. _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  11932. string sql = string.Format(@" Select * From grouopExceed where id > 20 And id not in (26,27) ");
  11933. List<OA2014_grouopExceed> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_grouopExceed>(sql).ToList();
  11934. _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  11935. Dictionary<int, int> dicDetail = new Dictionary<int, int>();
  11936. dicDetail.Add(789, 1034);
  11937. dicDetail.Add(790, 1035);
  11938. dicDetail.Add(791, 1036);
  11939. dicDetail.Add(792, 1037);
  11940. dicDetail.Add(793, 1038);
  11941. dicDetail.Add(794, 1039);
  11942. dicDetail.Add(795, 1040);
  11943. dicDetail.Add(796, 1041);
  11944. dicDetail.Add(797, 1042);
  11945. dicDetail.Add(798, 1043);
  11946. dicDetail.Add(801, 1044);
  11947. dicDetail.Add(802, 1045);
  11948. dicDetail.Add(803, 1046);
  11949. Dictionary<int, int> dic = new Dictionary<int, int>();
  11950. dic.Add(806, 1027);
  11951. dic.Add(807, 1028);
  11952. dic.Add(808, 1029);
  11953. dic.Add(809, 1030);
  11954. dic.Add(810, 1031);
  11955. dic.Add(811, 1032);
  11956. dic.Add(812, 1033);
  11957. foreach (var item in list_visa)
  11958. {
  11959. Fin_GroupExtraCost temp = new Fin_GroupExtraCost();
  11960. temp.Coefficient = item.coefficient;
  11961. DateTime dtCrt;
  11962. bool b1 = DateTime.TryParse(item.OperatorsDate, out dtCrt);
  11963. if (b1)
  11964. {
  11965. temp.CreateTime = dtCrt;
  11966. }
  11967. else
  11968. {
  11969. temp.CreateTime = DateTime.Now;
  11970. }
  11971. temp.CreateUserId = item.Operators;
  11972. temp.DeleteTime = "";
  11973. temp.DeleteUserId = 0;
  11974. temp.DiId = int.Parse(item.DIID);
  11975. temp.FilePath = item.FilePath;
  11976. temp.IsDel = item.IsDel;
  11977. temp.Price = item.Price;
  11978. temp.PriceCount = 1;
  11979. temp.PriceCurrency = item.Currency;
  11980. int detailId = 0;
  11981. if (dicDetail.ContainsKey(item.PriceTypeDetail))
  11982. {
  11983. detailId = dicDetail[item.PriceTypeDetail];
  11984. }
  11985. temp.PriceDetailType = detailId;
  11986. temp.PriceDt = DateTime.Now;
  11987. temp.PriceName = item.PriceName;
  11988. temp.PriceSum = item.Price;
  11989. int tid = 0;
  11990. if (dic.ContainsKey(item.PriceType))
  11991. {
  11992. tid = dic[item.PriceType];
  11993. }
  11994. temp.PriceType = tid;
  11995. temp.Remark = item.Remark;
  11996. await _airTicketResRep.AddAsync<Fin_GroupExtraCost>(temp);
  11997. }
  11998. return Ok(JsonView(true, "操作成功!"));
  11999. }
  12000. }
  12001. }