GroupsController.cs 610 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375
  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. namespace OASystem.API.Controllers
  93. {
  94. /// <summary>
  95. /// 团组相关
  96. /// </summary>
  97. //[Authorize]
  98. [Route("api/[controller]/[action]")]
  99. public class GroupsController : ControllerBase
  100. {
  101. private readonly GrpScheduleRepository _grpScheduleRep;
  102. private readonly IMapper _mapper;
  103. private readonly DelegationInfoRepository _groupRepository;
  104. private readonly TaskAssignmentRepository _taskAssignmentRep;
  105. private readonly AirTicketResRepository _airTicketResRep;
  106. private readonly DecreasePaymentsRepository _decreasePaymentsRep;
  107. private readonly InvitationOfficialActivitiesRepository _InvitationOfficialActivitiesRep;
  108. private readonly DelegationEnDataRepository _delegationEnDataRep;
  109. private readonly DelegationVisaRepository _delegationVisaRep;
  110. private readonly VisaPriceRepository _visaPriceRep;
  111. private readonly CarTouristGuideGroundRepository _carTouristGuideGroundRep;
  112. private readonly HotelPriceRepository _hotelPriceRep;
  113. private readonly CustomersRepository _customersRep;
  114. private readonly MessageRepository _message;
  115. private readonly SqlSugarClient _sqlSugar;
  116. private readonly TourClientListRepository _tourClientListRep;
  117. private readonly TeamRateRepository _teamRateRep;
  118. #region 成本相关
  119. private readonly CheckBoxsRepository _checkBoxs;
  120. private readonly GroupCostRepository _GroupCostRepository;
  121. private readonly CostTypeHotelNumberRepository _CostTypeHotelNumberRepository;
  122. private readonly GroupCostParameterRepository _GroupCostParameterRepository;
  123. #endregion
  124. private readonly SetDataRepository _setDataRep;
  125. private string url;
  126. private string path;
  127. private readonly EnterExitCostRepository _enterExitCostRep;
  128. private readonly IHubContext<ChatHub, IChatClient> _hubContext;
  129. private readonly UsersRepository _usersRep;
  130. private readonly IJuHeApiService _juHeApi;
  131. private readonly InvertedListRepository _invertedListRep;
  132. private readonly VisaFeeInfoRepository _visaFeeInfoRep;
  133. private readonly TicketBlackCodeRepository _ticketBlackCodeRep;
  134. private readonly ThreeCodeRepository _threeCodeRepository;
  135. private readonly HotelInquiryRepository _hotelInquiryRep;
  136. private readonly FeeAuditRepository _feeAuditRep;
  137. public GroupsController(IMapper mapper, SqlSugarClient sqlSugar, GrpScheduleRepository grpScheduleRep, DelegationInfoRepository groupRepository,
  138. TaskAssignmentRepository taskAssignmentRep, AirTicketResRepository airTicketResRep, DecreasePaymentsRepository decreasePaymentsRep,
  139. InvitationOfficialActivitiesRepository InvitationOfficialActivitiesRep, DelegationEnDataRepository delegationEnDataRep, EnterExitCostRepository enterExitCostRep
  140. , DelegationVisaRepository delegationVisaRep, MessageRepository message, VisaPriceRepository visaPriceRep, CarTouristGuideGroundRepository carTouristGuideGroundRep,
  141. CheckBoxsRepository checkBoxs, GroupCostRepository GroupCostRepository, CostTypeHotelNumberRepository CostTypeHotelNumberRepository,
  142. GroupCostParameterRepository GroupCostParameterRepository, HotelPriceRepository hotelPriceRep, CustomersRepository customersRep, SetDataRepository setDataRep,
  143. TourClientListRepository tourClientListRep, TeamRateRepository teamRateRep, IHubContext<ChatHub, IChatClient> hubContext, UsersRepository usersRep, IJuHeApiService juHeApi,
  144. InvertedListRepository invertedListRep, VisaFeeInfoRepository visaFeeInfoRep, TicketBlackCodeRepository ticketBlackCodeRep, HotelInquiryRepository hotelInquiryRep,
  145. ThreeCodeRepository threeCodeRepository, FeeAuditRepository feeAuditRep)
  146. {
  147. _mapper = mapper;
  148. _grpScheduleRep = grpScheduleRep;
  149. _groupRepository = groupRepository;
  150. _taskAssignmentRep = taskAssignmentRep;
  151. _airTicketResRep = airTicketResRep;
  152. _sqlSugar = sqlSugar;
  153. url = AppSettingsHelper.Get("ExcelBaseUrl");
  154. path = AppSettingsHelper.Get("ExcelBasePath");
  155. if (!System.IO.Directory.Exists(path))
  156. {
  157. System.IO.Directory.CreateDirectory(path);//不存在就创建文件夹
  158. }
  159. _decreasePaymentsRep = decreasePaymentsRep;
  160. _InvitationOfficialActivitiesRep = InvitationOfficialActivitiesRep;
  161. _delegationEnDataRep = delegationEnDataRep;
  162. _enterExitCostRep = enterExitCostRep;
  163. _delegationVisaRep = delegationVisaRep;
  164. _message = message;
  165. _visaPriceRep = visaPriceRep;
  166. _carTouristGuideGroundRep = carTouristGuideGroundRep;
  167. _checkBoxs = checkBoxs;
  168. _GroupCostRepository = GroupCostRepository;
  169. _CostTypeHotelNumberRepository = CostTypeHotelNumberRepository;
  170. _GroupCostParameterRepository = GroupCostParameterRepository;
  171. _hotelPriceRep = hotelPriceRep;
  172. _customersRep = customersRep;
  173. _setDataRep = setDataRep;
  174. _tourClientListRep = tourClientListRep;
  175. _teamRateRep = teamRateRep;
  176. _hubContext = hubContext;
  177. _usersRep = usersRep;
  178. _juHeApi = juHeApi;
  179. _invertedListRep = invertedListRep;
  180. _visaFeeInfoRep = visaFeeInfoRep;
  181. _ticketBlackCodeRep = ticketBlackCodeRep;
  182. _hotelInquiryRep = hotelInquiryRep;
  183. _threeCodeRepository = threeCodeRepository;
  184. _feeAuditRep = feeAuditRep;
  185. }
  186. #region 流程管控
  187. /// <summary>
  188. /// 获取团组流程管控信息
  189. /// </summary>
  190. /// <param name="paras">参数Json字符串</param>
  191. /// <returns></returns>
  192. [HttpPost]
  193. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  194. public async Task<IActionResult> PostSearchGrpSchedule(JsonDtoBase _jsonDto)
  195. {
  196. if (string.IsNullOrEmpty(_jsonDto.Paras))
  197. {
  198. return Ok(JsonView(false, "参数为空"));
  199. }
  200. Grp_ScheduleDto _ScheduleDto = JsonConvert.DeserializeObject<Grp_ScheduleDto>(_jsonDto.Paras);
  201. if (_ScheduleDto != null)
  202. {
  203. if (_ScheduleDto.SearchType == 2)//获取列表
  204. {
  205. List<Grp_ScheduleView> _grpScheduleViewList = await _grpScheduleRep.GetViewList_GrpSchedule(_ScheduleDto);
  206. return Ok(JsonView(_grpScheduleViewList));
  207. }
  208. else//获取对象
  209. {
  210. Grp_ScheduleCombinView _grpScheduleView = await _grpScheduleRep.GetView_GrpSchedule(_ScheduleDto);
  211. if (_grpScheduleView != null)
  212. {
  213. return Ok(JsonView(_grpScheduleView));
  214. }
  215. }
  216. }
  217. else
  218. {
  219. return Ok(JsonView(false, "参数反序列化失败"));
  220. }
  221. return Ok(JsonView(false, "暂无数据!"));
  222. }
  223. /// <summary>
  224. /// 修改团组流程管控详细表数据
  225. /// </summary>
  226. /// <param name="paras"></param>
  227. /// <returns></returns>
  228. [HttpPost]
  229. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  230. public async Task<IActionResult> PostUpdateGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  231. {
  232. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  233. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  234. .SetColumns(it => it.Duty == _detail.Duty)
  235. .SetColumns(it => it.ExpectBeginDt == _detail.ExpectBeginDt)
  236. .SetColumns(it => it.ExpectEndDt == _detail.ExpectEndDt)
  237. .SetColumns(it => it.JobContent == _detail.JobContent)
  238. .SetColumns(it => it.Remark == _detail.Remark)
  239. .SetColumns(it => it.StepStatus == _detail.StepStatus)
  240. .Where(s => s.Id == dto.Id)
  241. //.UpdateColumns(s => new { s.Duty, s.ExpectBeginDt, s.ExpectEndDt, s.JobContent, s.Remark, s.StepStatus })
  242. .ExecuteCommandAsync();
  243. if (result > 0)
  244. {
  245. return Ok(JsonView(true, "保存成功!"));
  246. }
  247. return Ok(JsonView(false, "保存失败!"));
  248. }
  249. /// <summary>
  250. /// 删除团组流程管控详细表数据,删除人Id请放在Duty
  251. /// </summary>
  252. /// <param name="dto"></param>
  253. /// <returns></returns>
  254. [HttpPost]
  255. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  256. public async Task<ActionResult> PostDeleteGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  257. {
  258. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  259. _detail.IsDel = 1;
  260. _detail.DeleteUserId = dto.Duty;
  261. _detail.DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  262. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  263. .SetColumns(it => it.IsDel == _detail.IsDel)
  264. .SetColumns(it => it.DeleteUserId == _detail.DeleteUserId)
  265. .SetColumns(it => it.DeleteTime == _detail.DeleteTime)
  266. .Where(it => it.Id == dto.Id)
  267. //.UpdateColumns(s => new { s.IsDel, s.DeleteUserId, s.DeleteTime })
  268. //.WhereColumns(s => s.Id == dto.Id)
  269. .ExecuteCommandAsync();
  270. if (result > 0)
  271. {
  272. return Ok(JsonView(true, "删除成功!"));
  273. }
  274. return Ok(JsonView(false, "删除失败!"));
  275. }
  276. /// <summary>
  277. /// 增加团组流程管控详细表数据
  278. /// </summary>
  279. /// <param name="dto"></param>
  280. /// <returns></returns>
  281. [HttpPost]
  282. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  283. public async Task<ActionResult> PostInsertGrpScheduleDetail(Grp_ScheduleDetailInsertDto dto)
  284. {
  285. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  286. if (DateTime.Now < _detail.ExpectBeginDt)
  287. {
  288. _detail.StepStatus = 0;
  289. }
  290. else
  291. {//若大于设置时间,不考虑设置的预计结束日期,统一视为进行中
  292. _detail.StepStatus = 1;
  293. }
  294. var result = await _grpScheduleRep._sqlSugar.Insertable(_detail).ExecuteReturnIdentityAsync();
  295. if (result > 0)
  296. {
  297. Grp_ScheduleDetailView _result = await _grpScheduleRep.GetInsertBackData(result);
  298. return Ok(JsonView(true, "添加成功!", _result));
  299. }
  300. return Ok(JsonView(false, "添加失败!"));
  301. }
  302. #endregion
  303. #region 团组基本信息
  304. /// <summary>
  305. /// 接团信息列表
  306. /// </summary>
  307. /// <param name="dto">团组列表请求dto</param>
  308. /// <returns></returns>
  309. [HttpPost]
  310. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  311. public async Task<IActionResult> GetGroupList(GroupListDto dto)
  312. {
  313. var groupData = await _groupRepository.GetGroupList(dto);
  314. if (groupData.Code != 0)
  315. {
  316. return Ok(JsonView(false, groupData.Msg));
  317. }
  318. return Ok(JsonView(groupData.Data));
  319. }
  320. /// <summary>
  321. /// 接团信息列表 Page
  322. /// </summary>
  323. /// <param name="dto">团组列表请求dto</param>
  324. /// <returns></returns>
  325. [HttpPost]
  326. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  327. public async Task<IActionResult> PostGroupPageList(GroupPageListDto dto)
  328. {
  329. #region 参数验证
  330. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  331. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  332. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  333. #region 页面操作权限验证
  334. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  335. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  336. #endregion
  337. #endregion
  338. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  339. {
  340. string sqlWhere = string.Empty;
  341. if (dto.IsSure == 0) //未完成
  342. {
  343. sqlWhere += string.Format(@" And IsSure = 0");
  344. }
  345. else if (dto.IsSure == 1) //已完成
  346. {
  347. sqlWhere += string.Format(@" And IsSure = 1");
  348. }
  349. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  350. {
  351. string tj = dto.SearchCriteria;
  352. 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}%')",
  353. tj, tj, tj, tj, tj);
  354. }
  355. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  356. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  357. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  358. JietuanOperator,IsSure,CreateTime
  359. From (
  360. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  361. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  362. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  363. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  364. su.CnName JietuanOperator,IsSure,gdi.CreateTime
  365. From Grp_DelegationInfo gdi
  366. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  367. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  368. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  369. Where gdi.IsDel = 0 {0}
  370. ) temp", sqlWhere);
  371. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  372. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  373. #region 处理所属部门
  374. /*
  375. * 1.sq 和 gyy 等显示 市场部
  376. * 2.王鸽和主管及张总还有管理员号统一国交部
  377. * 2-1. 4 管理员 ,21 张海麟
  378. */
  379. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  380. List<int> userIds1 = new List<int>() { 4, 21 };
  381. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  382. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  383. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  384. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  385. .ToList();
  386. foreach (var item in _DelegationList)
  387. {
  388. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  389. }
  390. #endregion
  391. var _view = new
  392. {
  393. PageFuncAuth = pageFunAuthView,
  394. Data = _DelegationList
  395. };
  396. return Ok(JsonView(true, "查询成功!", _view, total));
  397. }
  398. else
  399. {
  400. return Ok(JsonView(false, "查询失败"));
  401. }
  402. }
  403. /// <summary>
  404. /// 团组列表
  405. /// </summary>
  406. /// <returns></returns>
  407. [HttpPost]
  408. public async Task<IActionResult> GetGroupListByWhere(GroupListByWhere dto)
  409. {
  410. #region 参数验证
  411. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  412. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  413. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  414. #region 页面操作权限验证
  415. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  416. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  417. #endregion
  418. #endregion
  419. if (dto.PortType != 1 && dto.PortType != 2)
  420. {
  421. return Ok(JsonView(false, "查询失败!"));
  422. }
  423. string orderbyStr = "order by gdi.CreateTime Desc";
  424. string sqlWhere = string.Empty;
  425. if (dto.IsSure == 0) //未完成
  426. {
  427. sqlWhere += string.Format(@" And IsSure = 0");
  428. }
  429. else if (dto.IsSure == 1) //已完成
  430. {
  431. sqlWhere += string.Format(@" And IsSure = 1");
  432. }
  433. //团组类型
  434. if (dto.TeamDid > 0)
  435. {
  436. sqlWhere += string.Format(@"And TeamDid = {0} ", dto.TeamDid);
  437. }
  438. //团组名称
  439. if (!string.IsNullOrEmpty(dto.TeamName))
  440. {
  441. sqlWhere += string.Format(@"And TeamName Like '%{0}%'", dto.TeamName);
  442. }
  443. //客户名称
  444. if (!string.IsNullOrEmpty(dto.ClientName))
  445. {
  446. sqlWhere += string.Format(@"And ClientName Like '%{0}%'", dto.ClientName);
  447. }
  448. //客户单位
  449. if (!string.IsNullOrEmpty(dto.ClientUnit))
  450. {
  451. sqlWhere += string.Format(@"And ClientUnit Like '%{0}%'", dto.ClientUnit);
  452. }
  453. //出访时间
  454. if (!string.IsNullOrEmpty(dto.visitDataTime))
  455. {
  456. sqlWhere += string.Format(@"And VisitDate >= '{0}'", dto.visitDataTime);
  457. orderbyStr = "order by gdi.VisitDate";
  458. }
  459. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  460. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  461. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  462. JietuanOperator,IsSure,CreateTime
  463. From (
  464. Select row_number() over({0}) as Row_Number,
  465. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  466. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  467. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  468. su.CnName JietuanOperator,IsSure,gdi.CreateTime
  469. From Grp_DelegationInfo gdi
  470. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  471. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  472. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  473. Where gdi.IsDel = 0 {1}
  474. ) temp ", orderbyStr, sqlWhere);
  475. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  476. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  477. #region 处理所属部门
  478. /*
  479. * 1.sq 和 gyy 等显示 市场部
  480. * 2.王鸽和主管及张总还有管理员号统一国交部
  481. * 2-1. 4 管理员 ,21 张海麟
  482. */
  483. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  484. List<int> userIds1 = new List<int>() { 4, 21 };
  485. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  486. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  487. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  488. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  489. .ToList();
  490. foreach (var item in _DelegationList)
  491. {
  492. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  493. }
  494. #endregion
  495. var _view = new
  496. {
  497. PageFuncAuth = pageFunAuthView,
  498. Data = _DelegationList
  499. };
  500. return Ok(JsonView(true, "查询成功!", _view, total));
  501. }
  502. /// <summary>
  503. /// 接团信息详情
  504. /// </summary>
  505. /// <param name="dto">团组info请求dto</param>
  506. /// <returns></returns>
  507. [HttpPost]
  508. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  509. public async Task<IActionResult> GetGroupInfo(GroupInfoDto dto)
  510. {
  511. var groupData = await _groupRepository.GetGroupInfo(dto);
  512. if (groupData.Code != 0)
  513. {
  514. return Ok(JsonView(false, groupData.Msg));
  515. }
  516. return Ok(JsonView(groupData.Data));
  517. }
  518. /// <summary>
  519. /// 接团信息 编辑添加
  520. /// 基础信息数据源
  521. /// </summary>
  522. /// <param name="dto"></param>
  523. /// <returns></returns>
  524. [HttpPost]
  525. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  526. public async Task<IActionResult> GroupEditBasicSource(GroupListDto dto)
  527. {
  528. var groupData = await _groupRepository.GroupEditBasicSource(dto);
  529. if (groupData.Code != 0)
  530. {
  531. return Ok(JsonView(false, groupData.Msg));
  532. }
  533. return Ok(JsonView(groupData.Data));
  534. }
  535. /// <summary>
  536. /// 接团信息 操作(增改)
  537. /// </summary>
  538. /// <param name="dto"></param>
  539. /// <returns></returns>
  540. [HttpPost]
  541. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  542. public async Task<IActionResult> GroupOperation(GroupOperationDto dto)
  543. {
  544. try
  545. {
  546. var groupData = await _groupRepository.GroupOperation(dto);
  547. if (groupData.Code != 0)
  548. {
  549. return Ok(JsonView(false, groupData.Msg));
  550. }
  551. int diId = 0;
  552. //添加时 默认加入团组汇率
  553. if (dto.Status == 1) //添加
  554. {
  555. diId = groupData.Data;
  556. //添加默认币种
  557. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  558. //默认分配权限
  559. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  560. //消息提示 王鸽 主管号
  561. List<int> _managerIds = new List<int>() { 22, 32 };
  562. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  563. if (userIds.Count > 0)
  564. {
  565. userIds.Add(208);
  566. //创建团组管控
  567. GroupStepForDelegation.CreateWorkStep(diId);
  568. //发送消息
  569. string groupName = dto.TeamName;
  570. string createGroupUser = string.Empty;
  571. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  572. if (userInfo != null) createGroupUser = userInfo.CnName;
  573. string title = $"系统通知";
  574. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  575. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  576. }
  577. //默认创建倒推表
  578. await _invertedListRep._Create(dto.UserId, diId);
  579. }
  580. else if (dto.Status == 2)
  581. {
  582. diId = dto.Id;
  583. }
  584. return Ok(JsonView(true, "操作成功!", diId));
  585. }
  586. catch (Exception ex)
  587. {
  588. Logs("[response]" + JsonConvert.SerializeObject(dto));
  589. Logs(ex.Message);
  590. return Ok(JsonView(false, ex.Message));
  591. }
  592. }
  593. /// <summary>
  594. /// 接团流程操作(增改)
  595. /// 安卓端使用 建团时添加客户名单
  596. /// </summary>
  597. /// <param name="dto"></param>
  598. /// <returns></returns>
  599. [HttpPost]
  600. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  601. public async Task<IActionResult> GroupProcessOperation(GroupProcessOperationDto dto)
  602. {
  603. try
  604. {
  605. #region 参数验证
  606. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  607. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  608. #region 页面操作权限验证
  609. //pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 104);
  610. //if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "客户名单您没有添加权限!"));
  611. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 27);
  612. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "团组操作您没有添加权限!"));
  613. #endregion
  614. #endregion
  615. _sqlSugar.BeginTran();
  616. var _dto = new GroupOperationDto();
  617. _dto = _mapper.Map<GroupProcessOperationDto, GroupOperationDto>(dto);
  618. var groupData = await _groupRepository.GroupOperation(_dto);
  619. if (groupData.Code != 0)
  620. {
  621. return Ok(JsonView(false, "团组操作添加失败!" + groupData.Msg));
  622. }
  623. int diId = 0;
  624. //添加时 默认加入团组汇率
  625. if (dto.Status == 1) //添加
  626. {
  627. diId = groupData.Data;
  628. //添加默认币种
  629. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  630. //默认分配权限
  631. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  632. //消息提示 王鸽 主管号
  633. List<int> _managerIds = new List<int>() { 22, 32 };
  634. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  635. if (userIds.Count > 0)
  636. {
  637. userIds.Add(208);
  638. //创建团组管控
  639. GroupStepForDelegation.CreateWorkStep(diId);
  640. //发送消息
  641. string groupName = dto.TeamName;
  642. string createGroupUser = string.Empty;
  643. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  644. if (userInfo != null) createGroupUser = userInfo.CnName;
  645. string title = $"系统通知";
  646. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  647. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  648. }
  649. }
  650. if (dto.Status == 2)
  651. {
  652. diId = dto.Id;
  653. if (diId == 0)
  654. {
  655. return Ok(JsonView(false, "修改失败! 未添加团组id" + groupData.Msg));
  656. }
  657. }
  658. var viewData = await _tourClientListRep.OperMultiple(dto.TourClientListInfos, diId, dto.UserId);
  659. if (viewData.Code != 0)
  660. {
  661. _sqlSugar.RollbackTran();
  662. return Ok(JsonView(false, "客户名单添加失败!" + viewData.Msg));
  663. }
  664. _sqlSugar.CommitTran();
  665. return Ok(JsonView(true, "添加成功"));
  666. }
  667. catch (Exception ex)
  668. {
  669. _sqlSugar.RollbackTran();
  670. return Ok(JsonView(false, ex.Message));
  671. }
  672. }
  673. /// <summary>
  674. /// 接团信息 操作(删除)
  675. /// </summary>
  676. /// <param name="dto"></param>
  677. /// <returns></returns>
  678. [HttpPost]
  679. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  680. public async Task<IActionResult> GroupDel(GroupDelDto dto)
  681. {
  682. try
  683. {
  684. var groupData = await _groupRepository.GroupDel(dto);
  685. if (groupData.Code != 0)
  686. {
  687. return Ok(JsonView(false, groupData.Msg));
  688. }
  689. return Ok(JsonView(true));
  690. }
  691. catch (Exception ex)
  692. {
  693. Logs("[response]" + JsonConvert.SerializeObject(dto));
  694. Logs(ex.Message);
  695. return Ok(JsonView(false, ex.Message));
  696. }
  697. }
  698. /// <summary>
  699. /// 获取团组销售报价号
  700. /// 团组添加时 使用
  701. /// </summary>
  702. /// <returns></returns>
  703. [HttpPost]
  704. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  705. public async Task<IActionResult> GetGroupSalesQuoteNo()
  706. {
  707. var groupData = await _groupRepository.GetGroupSalesQuoteNo();
  708. if (groupData.Code != 0)
  709. {
  710. return Ok(JsonView(false, groupData.Msg));
  711. }
  712. object salesQuoteNo = new
  713. {
  714. SalesQuoteNo = groupData.Data
  715. };
  716. return Ok(JsonView(salesQuoteNo));
  717. }
  718. /// <summary>
  719. /// 设置确认出团
  720. /// </summary>
  721. /// <param name="dto"></param>
  722. /// <returns></returns>
  723. [HttpPost]
  724. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  725. public async Task<IActionResult> SetConfirmationGroup(ConfirmationGroupDto dto)
  726. {
  727. var groupData = await _groupRepository.ConfirmationGroup(dto);
  728. if (groupData.Code != 0)
  729. {
  730. return Ok(JsonView(false, groupData.Msg));
  731. }
  732. var groupInfo = _groupRepository.Query(s => s.Id == dto.GroupId).First();
  733. #region OA消息推送
  734. try
  735. {
  736. string groupName = groupInfo.TeamName;
  737. List<Sys_Users> listUser = _airTicketResRep.Query<Sys_Users>(s => s.DepId == 7 && s.IsDel == 0).ToList();
  738. List<int> userIds = new List<int>();
  739. listUser.ForEach(s => userIds.Add(s.Id));
  740. string title = $"系统通知";
  741. string content = $"团组[{groupName}]已确认出团!";
  742. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, dto.GroupId);
  743. }
  744. catch (Exception ex)
  745. {
  746. }
  747. #endregion
  748. #region 应用推送
  749. try
  750. {
  751. await AppNoticeLibrary.SendChatMsg_GroupStatus_Create(dto.GroupId, QiyeWeChatEnum.CompanyCRMChat);
  752. Sys_Users users = _airTicketResRep.Query<Sys_Users>(s => s.Id == groupInfo.JietuanOperator).First();
  753. Sys_Department department = _airTicketResRep.Query<Sys_Department>(s => s.Id == users.DepId).First();
  754. if (department.Id == 6 && !string.IsNullOrEmpty(users.QiyeChatUserId))
  755. {
  756. List<string> userList = new List<string>() { users.QiyeChatUserId };
  757. await AppNoticeLibrary.SendUserMsg_GroupStatus_Create(dto.GroupId, userList);
  758. }
  759. }
  760. catch (Exception ex)
  761. {
  762. }
  763. #endregion
  764. GroupStepForDelegation.CreateWorkStep(dto.GroupId); //创建管控流程
  765. return Ok(JsonView(true, "操作成功!", groupData.Data));
  766. }
  767. /// <summary>
  768. /// 获取团组名称data And 签证国别Data
  769. /// </summary>
  770. /// <param name="dto"></param>
  771. /// <returns></returns>
  772. [HttpPost]
  773. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  774. public async Task<IActionResult> GetGroupNameAndVisaNationality(GroupNameDto dto)
  775. {
  776. var groupData = await _groupRepository.GetGroupNameAndVisaNationality(dto);
  777. if (groupData.Code != 0)
  778. {
  779. return Ok(JsonView(false, groupData.Msg));
  780. }
  781. return Ok(JsonView(groupData.Data));
  782. }
  783. /// <summary>
  784. /// 根据CTable类型返回对应的团组名称及简单数据(APP端)
  785. /// </summary>
  786. /// <returns></returns>
  787. [HttpPost]
  788. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  789. public async Task<IActionResult> PostGroupNameAndEasy(DecreasePaymentsDto dto)
  790. {
  791. try
  792. {
  793. Result groupData = await _decreasePaymentsRep.PostGroupNameAndEasy(dto);
  794. if (groupData.Code != 0)
  795. {
  796. return Ok(JsonView(false, groupData.Msg));
  797. }
  798. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  799. }
  800. catch (Exception ex)
  801. {
  802. return Ok(JsonView(false, "程序错误!"));
  803. throw;
  804. }
  805. }
  806. #endregion
  807. #region 团组&签证
  808. /// <summary>
  809. /// 根据团组Id获取签证客户信息List
  810. /// </summary>
  811. /// <param name="dto">请求dto</param>
  812. /// <returns></returns>
  813. [HttpPost]
  814. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  815. public async Task<IActionResult> GetCrmByGroupId(ClientByGroupIdDto dto)
  816. {
  817. var groupData = await _groupRepository.GetCrmByGroupId(dto);
  818. if (groupData.Code != 0)
  819. {
  820. return Ok(JsonView(false, groupData.Msg));
  821. }
  822. return Ok(JsonView(groupData.Data));
  823. }
  824. /// <summary>
  825. /// IOS获取团组签证拍照上传进度01(团组列表)
  826. /// </summary>
  827. /// <param name="dto">请求dto</param>
  828. /// <returns></returns>
  829. [HttpPost]
  830. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  831. public async Task<IActionResult> PostIOSVisaProgress(IOS_VisaDto dto)
  832. {
  833. if (dto == null)
  834. {
  835. return Ok(JsonView(false, "参数为空"));
  836. }
  837. DelegationVisaViewList visaList = _delegationVisaRep.GetDelegationList(dto);
  838. return Ok(JsonView(visaList));
  839. }
  840. /// <summary>
  841. /// IOS获取团组签证拍照上传进度02(团组签证详情\人员列表\国家)
  842. /// </summary>
  843. /// <returns></returns>
  844. [HttpPost]
  845. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  846. public async Task<ActionResult> PostIOSVisaProgressContent(IOS_VisaCustomerListDto dto)
  847. {
  848. if (dto == null)
  849. {
  850. return Ok(JsonView(false, "请求错误:"));
  851. }
  852. List<DelegationVisaProgressView> list = _delegationVisaRep.GetDelegationProgressList(dto.diId);
  853. return Ok(JsonView(list));
  854. }
  855. /// <summary>
  856. /// IOS获取团组签证拍照上传进度03(相册)
  857. /// </summary>
  858. /// <returns></returns>
  859. [HttpPost]
  860. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  861. public async Task<ActionResult> PostIOSVisaProgressImageList(IOS_VisaImageListDto dto)
  862. {
  863. if (dto == null)
  864. {
  865. return Ok(JsonView(false, "请求错误:"));
  866. }
  867. List<VisaProgressImageView> list = _delegationVisaRep.GetVisaProgressImageList(dto.visaProgressCustomerId, dto.picType);
  868. string url = AppSettingsHelper.Get("VisaProgressImageBaseUrl") + AppSettingsHelper.Get("VisaProgressImageFtpPath");
  869. list.ForEach(s => s.url = url);
  870. return Ok(JsonView(list));
  871. }
  872. /// <summary>
  873. /// IOS获取团组签证拍照上传进度04(图片上传)
  874. /// </summary>
  875. /// <param name="dto"></param>
  876. /// <returns></returns>
  877. [HttpPost]
  878. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  879. public async Task<ActionResult> PostIOSVisaProgressUploadImage(IOS_VisaUploadImageDto dto)
  880. {
  881. //string result = decodeBase64ToImage(dto.base64DataURL, dto.imageName);
  882. //if (!string.IsNullOrEmpty(result))
  883. //{
  884. //}
  885. //else {
  886. // return Ok(JsonView(false, "上传失败"));
  887. //}
  888. DateTime dt1970 = new DateTime(1970, 1, 1, 0, 0, 0, 0);
  889. int sucNum = 0;
  890. try
  891. {
  892. foreach (var item in dto.base64DataList)
  893. {
  894. string imageName = dto.imageName + ((DateTime.Now.Ticks - dt1970.Ticks) / 10000).ToString();
  895. string result = decodeBase64ToImage(item, imageName);
  896. if (!string.IsNullOrEmpty(result))
  897. {
  898. Grp_VisaProgressCustomerPicture pic = new Grp_VisaProgressCustomerPicture();
  899. pic.CreateUserId = dto.CreateUserId;
  900. pic.PicName = imageName;
  901. pic.PicPath = result;
  902. pic.VisaProgressCustomerId = dto.visaProgressCustomerId;
  903. int insertResult = await _delegationVisaRep.AddAsync<Grp_VisaProgressCustomerPicture>(pic);
  904. if (insertResult > 0)
  905. {
  906. sucNum++;
  907. }
  908. }
  909. }
  910. }
  911. catch (Exception ex)
  912. {
  913. return Ok(JsonView(false, ex.Message));
  914. }
  915. string msg = string.Format(@"成功上传{0}张", sucNum);
  916. return Ok(JsonView(true, msg));
  917. }
  918. private string decodeBase64ToImage(string base64DataURL, string imgName)
  919. {
  920. string filename = "";//声明一个string类型的相对路径
  921. String base64 = base64DataURL.Substring(base64DataURL.IndexOf(",") + 1); //将‘,’以前的多余字符串删除
  922. System.Drawing.Bitmap bitmap = null;//定义一个Bitmap对象,接收转换完成的图片
  923. try//会有异常抛出,try,catch一下
  924. {
  925. byte[] arr = Convert.FromBase64String(base64);//将纯净资源Base64转换成等效的8位无符号整形数组
  926. System.IO.MemoryStream ms = new System.IO.MemoryStream(arr);//转换成无法调整大小的MemoryStream对象
  927. bitmap = new System.Drawing.Bitmap(ms);//将MemoryStream对象转换成Bitmap对象
  928. var fileDir = AppSettingsHelper.Get("VisaProgressImageBasePath");
  929. //文件名称
  930. filename = "VisaProgress_" + DateTime.Now.ToString("yyyyMMddHHmmss") + "_" + imgName + ".jpeg";//所要保存的相对路径及名字
  931. //上传的文件的路径
  932. string filePath = "";
  933. if (!Directory.Exists(fileDir))
  934. {
  935. Directory.CreateDirectory(fileDir);
  936. }
  937. //上传的文件的路径
  938. filePath = fileDir + filename;
  939. //string url = HttpRuntime.AppDomainAppPath.ToString();
  940. //string tmpRootDir = System.Web.HttpContext.Current.Server.MapPath(System.Web.HttpContext.Current.Request.ApplicationPath.ToString()); //获取程序根目录
  941. //string imagesurl2 = tmpRootDir + filename; //转换成绝对路径
  942. bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Jpeg);//保存到服务器路径
  943. //bitmap.Save(filePath + ".bmp", System.Drawing.Imaging.ImageFormat.Bmp);
  944. //bitmap.Save(filePath + ".gif", System.Drawing.Imaging.ImageFormat.Gif);
  945. //bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Png);
  946. ms.Close();//关闭当前流,并释放所有与之关联的资源
  947. bitmap.Dispose();
  948. }
  949. catch (Exception e)
  950. {
  951. string massage = e.Message;
  952. Logs("IOS图片上传Error:" + massage);
  953. //filename = e.Message;
  954. }
  955. return filename;//返回相对路径
  956. }
  957. /// <summary>
  958. /// IOS获取团组签证拍照上传进度05(修改签证状态/通知)
  959. /// </summary>
  960. /// <param name="dto"></param>
  961. /// <returns></returns>
  962. [HttpPost]
  963. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  964. public async Task<ActionResult> PostIOSVisaProgressChangeStatus(IOS_VisaChangeStatusDto dto)
  965. {
  966. if (dto == null)
  967. {
  968. return Ok(JsonView(false, "请求错误:"));
  969. }
  970. string msg = "参数错误";
  971. if (dto.diId > 0 && dto.visaStatus > 0 && dto.visaStatus < 4)
  972. {
  973. try
  974. {
  975. //_delegationVisaRep.BeginTran();
  976. var updCount = await _delegationVisaRep._sqlSugar.Updateable<Grp_VisaProgressCustomer>()
  977. .SetColumns(it => it.WorkStatus == dto.visaStatus)
  978. .Where(s => s.Id == dto.visaProgressCustomerId)
  979. .ExecuteCommandAsync();
  980. if (updCount > 0 && dto.publishCode == 1)
  981. {
  982. _delegationVisaRep.ChangeDataBase(DBEnum.OA2014DB); //切换到新OA后删除
  983. string sqlDelegation = string.Format(@" Select * From DelegationInfo With(Nolock) Where Id = {0} ", dto.diId);
  984. OA2021_DelegationInfo groupData = _sqlSugar.SqlQueryable<OA2021_DelegationInfo>(sqlDelegation).First();
  985. //GroupInfoDto grpDto = new GroupInfoDto() { Id = dto.diId };
  986. //var groupData = await _groupRepository.GetGroupInfo(grpDto);
  987. _delegationVisaRep.ChangeDataBase(DBEnum.OA2023DB); //切换到新OA后删除
  988. if (groupData == null)
  989. {
  990. _delegationVisaRep.RollbackTran();
  991. }
  992. string title = string.Format(@"[签证进度更新]");
  993. string content = string.Format(@"测试文本");
  994. bool rst = await _message.AddMsg(new MessageDto()
  995. {
  996. Type = MessageTypeEnum.GroupVisaProgressUpdate,
  997. IssuerId = dto.publisher,
  998. Title = title,
  999. Content = content,
  1000. ReleaseTime = DateTime.Now,
  1001. UIdList = new List<int> {
  1002. 234
  1003. }
  1004. });
  1005. if (rst)
  1006. {
  1007. return Ok(JsonView(true, "发送通知成功"));
  1008. }
  1009. }
  1010. //_delegationVisaRep.CommitTran();
  1011. }
  1012. catch (Exception)
  1013. {
  1014. //_delegationVisaRep.RollbackTran();
  1015. }
  1016. }
  1017. return Ok(JsonView(true, msg));
  1018. }
  1019. #endregion
  1020. #region 团组任务分配
  1021. /// <summary>
  1022. /// 团组任务分配初始化
  1023. /// </summary>
  1024. /// <param name="dto"></param>
  1025. /// <returns></returns>
  1026. [HttpPost]
  1027. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1028. public async Task<IActionResult> GetTaskAssignmen()
  1029. {
  1030. var groupData = await _taskAssignmentRep.GetTaskAssignmen();
  1031. if (groupData.Code != 0)
  1032. {
  1033. return Ok(JsonView(false, groupData.Msg));
  1034. }
  1035. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1036. }
  1037. /// <summary>
  1038. /// 团组任务分配查询
  1039. /// </summary>
  1040. /// <param name="dto"></param>
  1041. /// <returns></returns>
  1042. [HttpPost]
  1043. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1044. public async Task<IActionResult> TaskAssignmenQuery(TaskAssignmenQueryDto dto)
  1045. {
  1046. var groupData = await _taskAssignmentRep.TaskAssignmenQuery(dto);
  1047. if (groupData.Code != 0)
  1048. {
  1049. return Ok(JsonView(false, groupData.Msg));
  1050. }
  1051. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1052. }
  1053. /// <summary>
  1054. /// 团组任务分配操作
  1055. /// </summary>
  1056. /// <param name="dto"></param>
  1057. /// <returns></returns>
  1058. [HttpPost]
  1059. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1060. public async Task<IActionResult> GetTaskAssignmenOp(TaskAssignmenDto dto)
  1061. {
  1062. Result groupData = await _taskAssignmentRep.GetTaskAssignmenOp(dto);
  1063. if (groupData.Code != 0)
  1064. {
  1065. return Ok(JsonView(false, groupData.Msg));
  1066. }
  1067. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1068. }
  1069. #endregion
  1070. #region 团组费用审核
  1071. /// <summary>
  1072. /// 费用审核
  1073. /// 团组列表 Page
  1074. /// </summary>
  1075. /// <param name="_dto">团组列表请求dto</param>
  1076. /// <returns></returns>
  1077. [HttpPost]
  1078. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1079. public async Task<IActionResult> PostExpenseAuditGroupPageItems(ExpenseAuditGroupPageItemsDto _dto)
  1080. {
  1081. #region 参数验证
  1082. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1083. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1084. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1085. #region 页面操作权限验证
  1086. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1087. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1088. #endregion
  1089. #endregion
  1090. if (_dto.PortType == 1 || _dto.PortType == 2 || _dto.PortType == 2) // web/Android/IOS
  1091. {
  1092. string sqlWhere = string.Empty;
  1093. if (_dto.IsSure == 0) //未完成
  1094. {
  1095. sqlWhere += string.Format(@" And IsSure = 0");
  1096. }
  1097. else if (_dto.IsSure == 1) //已完成
  1098. {
  1099. sqlWhere += string.Format(@" And IsSure = 1");
  1100. }
  1101. if (!string.IsNullOrEmpty(_dto.SearchCriteria))
  1102. {
  1103. string tj = _dto.SearchCriteria;
  1104. 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}%')",
  1105. tj, tj, tj, tj, tj);
  1106. }
  1107. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  1108. TeamName,ClientName,ClientUnit, TeamLevId,TeamLev,VisitDate,
  1109. VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  1110. From (
  1111. Select row_number() over(order by gdi.VisitDate Desc) as Row_Number,
  1112. gdi.Id,SalesQuoteNo,TourCode,ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,
  1113. ClientName,ClientUnit,ssd.Id TeamTypeId, ssd.Name TeamType,VisitDate,
  1114. VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  1115. From Grp_DelegationInfo gdi
  1116. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  1117. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  1118. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  1119. Where gdi.IsDel = 0 {0}
  1120. ) temp ", sqlWhere);
  1121. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  1122. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(_dto.PageIndex, _dto.PageSize, total);//ToPageAsync
  1123. var _view = new
  1124. {
  1125. PageFuncAuth = pageFunAuthView,
  1126. Data = _DelegationList
  1127. };
  1128. return Ok(JsonView(true, "查询成功!", _view, total));
  1129. }
  1130. else
  1131. {
  1132. return Ok(JsonView(false, "查询失败"));
  1133. }
  1134. }
  1135. /// <summary>
  1136. /// 获取团组费用审核
  1137. /// </summary>
  1138. /// <param name="paras">参数Json字符串</param>
  1139. /// <returns></returns>
  1140. [HttpPost]
  1141. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1142. public async Task<IActionResult> PostSearchGrpCreditCardPayment(Search_GrpCreditCardPaymentDto _dto)
  1143. {
  1144. try
  1145. {
  1146. #region 参数验证
  1147. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1148. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1149. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  1150. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1151. #region 页面操作权限验证
  1152. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1153. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1154. #endregion
  1155. #endregion
  1156. Grp_CreditCardPaymentView _view = new Grp_CreditCardPaymentView();
  1157. List<SimplClientInfo> clientNameList = getSimplClientList(_dto.DiId);
  1158. #region 费用清单
  1159. var exp = Expressionable.Create<Grp_CreditCardPayment>();
  1160. exp.AndIF(_dto.AuditStatus != -1, it => it.IsAuditGM == _dto.AuditStatus);
  1161. exp.AndIF(_dto.Label != -1, it => it.CTable == _dto.Label);
  1162. List<Grp_CreditCardPayment> entityList = _groupRepository
  1163. .Query<Grp_CreditCardPayment>(s => s.DIId == _dto.DiId && s.IsDel == 0 && s.CreateUserId > 0)
  1164. .Where(exp.ToExpression())
  1165. .ToList();
  1166. List<Grp_CreditCardPaymentDetailView> detailList = new List<Grp_CreditCardPaymentDetailView>();
  1167. List<CreditCardPaymentCurrencyPriceItem> ccpCurrencyPrices = new List<CreditCardPaymentCurrencyPriceItem>();
  1168. /*
  1169. * 76://酒店预订
  1170. */
  1171. List<Grp_HotelReservations> _HotelReservations = await _groupRepository
  1172. .Query<Grp_HotelReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1173. .ToListAsync();
  1174. List<Grp_HotelReservationsContent> _HotelReservationsContents = await _groupRepository
  1175. .Query<Grp_HotelReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1176. .ToListAsync();
  1177. /*
  1178. * 79://车/导游地接
  1179. */
  1180. List<Grp_CarTouristGuideGroundReservations> _CarTouristGuideGroundReservations = await _groupRepository
  1181. .Query<Grp_CarTouristGuideGroundReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1182. .ToListAsync();
  1183. List<Grp_CarTouristGuideGroundReservationsContent> _CarTouristGuideGroundReservationsContent = await _groupRepository
  1184. .Query<Grp_CarTouristGuideGroundReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1185. .ToListAsync();
  1186. /*
  1187. * 80: //签证
  1188. */
  1189. List<Grp_VisaInfo> _VisaInfos = await _groupRepository
  1190. .Query<Grp_VisaInfo>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1191. .ToListAsync();
  1192. /*
  1193. *81: //邀请/公务活动
  1194. */
  1195. List<Grp_InvitationOfficialActivities> _InvitationOfficialActivities = await _groupRepository
  1196. .Query<Grp_InvitationOfficialActivities>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1197. .ToListAsync();
  1198. /*
  1199. * 82: //团组客户保险
  1200. */
  1201. List<Grp_Customers> _Customers = await _groupRepository.Query<Grp_Customers>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1202. /*
  1203. * Lable = 85 机票预订
  1204. */
  1205. List<Grp_AirTicketReservations> p_AirTicketReservations = await _groupRepository
  1206. .Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1207. .ToListAsync();
  1208. /*
  1209. * 85 机票预定
  1210. */
  1211. List<Grp_AirTicketReservations> _AirTicketReservations = await _groupRepository.Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1212. /*
  1213. * 98 其他款项
  1214. */
  1215. List<Grp_DecreasePayments> _DecreasePayments = await _groupRepository
  1216. .Query<Grp_DecreasePayments>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1217. .ToListAsync();
  1218. /*
  1219. * 285:收款退还
  1220. */
  1221. List<Fin_PaymentRefundAndOtherMoney> _PaymentRefundAndOtherMoneys = await _groupRepository
  1222. .Query<Fin_PaymentRefundAndOtherMoney>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1223. .ToListAsync();
  1224. /*
  1225. * 1015: //超支费用
  1226. */
  1227. List<Fin_GroupExtraCost> _GroupExtraCosts = await _groupRepository.Query<Fin_GroupExtraCost>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1228. /*
  1229. * 币种信息
  1230. */
  1231. var currencyItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 66 && s.IsDel == 0).ToListAsync();
  1232. /*
  1233. * 车/导游地接 费用类型
  1234. */
  1235. var carFeeTypeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 17 && s.IsDel == 0).ToListAsync();
  1236. /*
  1237. * 车/导游地接 费用类型
  1238. */
  1239. var carFeeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 83 && s.IsDel == 0).ToListAsync();
  1240. var initDatas = await _groupRepository.Query<Sys_SetData>(s => s.IsDel == 0).ToListAsync();
  1241. var cityData = await _groupRepository.Query<Grp_NationalTravelFee>(s => s.IsDel == 0).ToListAsync();
  1242. /*
  1243. * 用户信息
  1244. */
  1245. var userItems = await _groupRepository.Query<Sys_Users>(s => s.IsDel == 0).ToListAsync();
  1246. /*
  1247. * 费用模块
  1248. */
  1249. Sys_SetData sdPriceName = _groupRepository.Query<Sys_SetData>(s => s.Id == _dto.Label).First();
  1250. string priceModule = string.Empty;
  1251. if (sdPriceName != null)
  1252. {
  1253. priceModule = sdPriceName.Name;
  1254. }
  1255. /*
  1256. * 成本信息
  1257. */
  1258. var groupCost = _groupRepository.Query<Grp_GroupCostParameter >(s => s.DiId == _dto.DiId && s.IsDel == 0).First();
  1259. decimal _groupRate = 0.0000M;
  1260. string _groupCurrencyCode = "-";
  1261. if (groupCost != null)
  1262. {
  1263. _groupRate = groupCost.Rate;
  1264. if (int.TryParse(groupCost.Currency, out int _currency))
  1265. {
  1266. _groupCurrencyCode = currencyItems.Find(it => it.Id == _currency)?.Name ?? "-";
  1267. }
  1268. }
  1269. string costContentSql = $"Select * From Grp_GroupCost";
  1270. var groupCostDetails = _sqlSugar.SqlQueryable<GroupCostAuditView>(costContentSql).Where(x => x.IsDel == 0 && x.Diid == _dto.DiId).ToList();
  1271. //处理日期为空的天数
  1272. for (int i = 0; i < groupCostDetails.Count; i++)
  1273. if (i != 0)
  1274. if (string.IsNullOrEmpty(groupCostDetails[i].Date))
  1275. groupCostDetails[i].Date = groupCostDetails[i - 1].Date;
  1276. /*
  1277. * 处理详情数据
  1278. */
  1279. foreach (var entity in entityList)
  1280. {
  1281. Grp_CreditCardPaymentDetailView _detail = new Grp_CreditCardPaymentDetailView();
  1282. _detail.Id = entity.Id;
  1283. _detail.PriceName = priceModule;
  1284. _detail.PayType = initDatas.Find(it => it.Id == entity.PayDId)?.Name ?? "-";
  1285. _detail.CardType = initDatas.Find(it => it.Id == entity.CTDId)?.Name ?? "-";
  1286. /*
  1287. * 应付款金额
  1288. */
  1289. Sys_SetData sdPaymentCurrency_WaitPay = currencyItems.Where(s => s.Id == entity.PaymentCurrency).FirstOrDefault();
  1290. string PaymentCurrency_WaitPay = "Unknown";
  1291. string hotelCurrncyCode = "Unknown";
  1292. string hotelCurrncyName = "Unknown";
  1293. if (sdPaymentCurrency_WaitPay != null)
  1294. {
  1295. PaymentCurrency_WaitPay = sdPaymentCurrency_WaitPay.Name;
  1296. hotelCurrncyCode = sdPaymentCurrency_WaitPay.Name;
  1297. hotelCurrncyName = sdPaymentCurrency_WaitPay.Remark;
  1298. if (hotelCurrncyCode.Equals("CNY"))
  1299. {
  1300. entity.DayRate = 1.0000M;
  1301. }
  1302. }
  1303. _detail.WaitPay = entity.PayMoney.ConvertToDecimal1().ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1304. /*
  1305. * 此次付款金额
  1306. */
  1307. decimal CurrPayStr = 0;
  1308. if (entity.PayPercentage == 0)
  1309. {
  1310. if (entity.PayThenMoney != 0)
  1311. CurrPayStr = (entity.PayThenMoney * entity.DayRate).ConvertToDecimal1();
  1312. }
  1313. else
  1314. {
  1315. if (entity.PayMoney != 0)
  1316. {
  1317. CurrPayStr = (entity.PayMoney * entity.PayPercentage / 100 * entity.DayRate).ConvertToDecimal1();
  1318. }
  1319. }
  1320. _detail.CurrPay = CurrPayStr.ToString("#0.00") + " CNY";
  1321. /*
  1322. * 剩余尾款
  1323. */
  1324. decimal BalanceStr = 0;
  1325. if (CurrPayStr != 0)
  1326. {
  1327. if (entity.PayMoney - (CurrPayStr / entity.DayRate) < 0.01M)
  1328. BalanceStr = 0;
  1329. else
  1330. BalanceStr = (entity.PayMoney - CurrPayStr / entity.DayRate).ConvertToDecimal1();
  1331. }
  1332. _detail.Balance = BalanceStr.ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1333. /*
  1334. * Bus名称
  1335. */
  1336. _detail.BusName = "待增加";
  1337. /*
  1338. *费用所属
  1339. */
  1340. switch (entity.CTable)
  1341. {
  1342. case 76://酒店预订
  1343. Grp_HotelReservations hotelReservations = _HotelReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1344. if (hotelReservations != null)
  1345. {
  1346. DateTime checkIn = Convert.ToDateTime(hotelReservations.CheckInDate),
  1347. checkOut = Convert.ToDateTime(hotelReservations.CheckOutDate);
  1348. int hotel_days = (int)(checkOut - checkIn).TotalDays;
  1349. string roomFeeStr = "";
  1350. if (hotelReservations.SingleRoomPrice>0)
  1351. roomFeeStr += $"<br/><span style='width:70px;display: inline-block;'></span>单间:{hotelReservations.SingleRoomPrice.ToString("#0.00")} * {hotelReservations.SingleRoomCount}";
  1352. if (hotelReservations.DoubleRoomPrice > 0)
  1353. roomFeeStr += $"<br/><span style='width:70px;display: inline-block;'></span>双人间:{hotelReservations.DoubleRoomPrice.ToString("#0.00")} * {hotelReservations.DoubleRoomCount}";
  1354. if (hotelReservations.SuiteRoomPrice > 0)
  1355. roomFeeStr += $"<br/><span style='width:70px;display: inline-block;'></span>套房:{hotelReservations.SuiteRoomPrice.ToString("#0.00")} * {hotelReservations.SuiteRoomCount}";
  1356. if (hotelReservations.OtherRoomPrice > 0)
  1357. roomFeeStr += $"<br/><span style='width:70px;display: inline-block;'></span>其他:{hotelReservations.OtherRoomPrice.ToString("#0.00")} * {hotelReservations.OtherRoomCount}";
  1358. decimal governmentRentFee = 0.00M, cityTaxFee = 0.00M, breakfastFee = 0.00M, roomFee = 0.00M;
  1359. string governmentRentBool = "否", cityTaxBool = "否", breakfastBool = "否", roomBool = "否";
  1360. string governmentRentCode = "", governmentRentName = "", cityTaxCode = "", cityTaxName = "", breakfastCode = "", breakfastName = "", roomCode = "", roomName = "";
  1361. var _HotelReservationsContents1 = _HotelReservationsContents.Where(it => it.HrId == hotelReservations.Id).ToList();
  1362. /*
  1363. * 费用类型
  1364. * 1:房费
  1365. * 2:早餐
  1366. * 3:地税
  1367. * 4:城市税
  1368. * </summary>
  1369. */
  1370. //地税
  1371. var governmentRentData = _HotelReservationsContents1.Find(it => it.PriceType == 3);
  1372. if (governmentRentData != null)
  1373. {
  1374. governmentRentBool = governmentRentData.IsOppay == 1 ? "是" : "否";
  1375. governmentRentFee = governmentRentData.Price;
  1376. var governmentRentCurrData = currencyItems.Find(s => s.Id == governmentRentData.Currency);
  1377. if (governmentRentCurrData != null)
  1378. {
  1379. governmentRentCode = governmentRentCurrData.Name;
  1380. governmentRentName = $"({governmentRentCurrData.Remark})";
  1381. }
  1382. }
  1383. //城市税
  1384. var cityTaxData = _HotelReservationsContents1.Find(it => it.PriceType == 4);
  1385. if (cityTaxData != null)
  1386. {
  1387. cityTaxBool = cityTaxData.IsOppay == 1 ? "是" : "否";
  1388. cityTaxFee = cityTaxData.Price;
  1389. var cityTaxCurrData = currencyItems.Find(s => s.Id == cityTaxData.Currency);
  1390. if (cityTaxCurrData != null)
  1391. {
  1392. cityTaxCode = cityTaxCurrData.Name;
  1393. cityTaxName = $"({cityTaxCurrData.Remark})";
  1394. }
  1395. }
  1396. //酒店早餐
  1397. var breakfastData = _HotelReservationsContents1.Find(it => it.PriceType == 2);
  1398. if (breakfastData != null)
  1399. {
  1400. breakfastBool = breakfastData.IsOppay == 1 ? "是" : "否";
  1401. breakfastFee = breakfastData.Price;
  1402. var breakfastCurrData = currencyItems.Find(s => s.Id == breakfastData.Currency);
  1403. if (breakfastCurrData != null)
  1404. {
  1405. breakfastCode = breakfastCurrData.Name;
  1406. breakfastName = $"({breakfastCurrData.Remark})";
  1407. }
  1408. }
  1409. //房间费用
  1410. var roomData = _HotelReservationsContents1.Find(it => it.PriceType == 1);
  1411. if (roomData != null)
  1412. {
  1413. _detail.PayType = initDatas.Find(it => it.Id == roomData.PayDId)?.Name ?? "-";
  1414. _detail.CardType = initDatas.Find(it => it.Id == roomData.CTDId)?.Name ?? "-";
  1415. roomBool = roomData.IsOppay == 1 ? "是" : "否";
  1416. roomFee = roomData.Price;
  1417. var roomCurrData = currencyItems.Find(s => s.Id == roomData.Currency);
  1418. if (roomCurrData != null)
  1419. {
  1420. roomCode = roomCurrData.Name;
  1421. roomName = $"({roomCurrData.Remark})";
  1422. }
  1423. }
  1424. string hotelCostTitalStr = "<span style='font-weight:800;'>成本信息</span><br/>";
  1425. string hotelCostStr = "";
  1426. decimal hotelCsotTotal = 0.00M;
  1427. if (groupCost != null)
  1428. {
  1429. if (int.TryParse(groupCost.Currency, out int currencyId)) groupCost.Currency = currencyItems.Find(s => s.Id == currencyId)?.Name ?? "-";
  1430. hotelCostStr += $"{groupCost.Currency}(汇率:{groupCost.Rate.ToString("#0.0000")})<br/>";
  1431. }
  1432. if (checkOut > checkIn) checkOut = checkOut.AddDays(-1);
  1433. var hotelCostDetails = groupCostDetails.Where(x => Convert.ToDateTime(x.Date) >= checkIn && Convert.ToDateTime(x.Date) <= checkOut).ToList();
  1434. string hotelCost_day = "";
  1435. var hotelCostDetails1 = hotelCostDetails.GroupBy(x => x.Date);
  1436. foreach (var item in hotelCostDetails1)
  1437. {
  1438. hotelCsotTotal += item.Sum(x => x.HotelSingleRoomFee) + item.Sum(x => x.HotelDoubleRoomFee) + item.Sum(x => x.HotelSuiteRoomFee) + item.Sum(x => x.HotelSuiteFee);
  1439. hotelCost_day += @$"{item.First()?.Date ?? "-"}";
  1440. if (item.Sum(x => x.HotelSingleRoomFee) != 0) hotelCost_day += @$" 单间:{item.Sum(x => x.HotelSingleRoomFee).ToString("#0.00")}";
  1441. if (item.Sum(x => x.HotelDoubleRoomFee) != 0) hotelCost_day += @$" 双人间:{item.Sum(x => x.HotelDoubleRoomFee).ToString("#0.00")}";
  1442. if (item.Sum(x => x.HotelSuiteRoomFee) != 0) hotelCost_day += @$" 小套房/豪华套房:{item.Sum(x => x.HotelSuiteRoomFee).ToString("#0.00")}";
  1443. if (item.Sum(x => x.HotelSuiteFee) != 0) hotelCost_day += @$" 套房:{item.Sum(x => x.HotelSuiteFee).ToString("#0.00")}";
  1444. hotelCost_day += @$"</br>";
  1445. }
  1446. string hotelCostTotalStr = "";// $"&nbsp;&nbsp;成本合计:{hotelCsotTotal.ToString("#0.00")}<br/>";
  1447. _detail.PriceMsgContent = $"{hotelCostTitalStr}{hotelCostStr}{hotelCostTotalStr}{hotelCost_day}<br/>"+
  1448. $"<span style='font-weight:800;'>{hotelReservations.HotelName} [{hotelReservations.CheckInDate} - {hotelReservations.CheckOutDate}]</span><br/>" +
  1449. $"信用卡金额:{_detail.WaitPay} ({hotelCurrncyName})<br/>" +
  1450. $"房间说明: {hotelReservations.Remark} <br/>" +
  1451. $"房间费用: {roomCode} {roomName} 当时汇率 {roomData?.Rate.ToString("#0.0000")}{roomFeeStr} <br/>是否由地接代付:{roomBool}<br/><br/>" +
  1452. $"酒店早餐: {breakfastFee.ToString("#0.00")} {breakfastCode} {breakfastName} 当时汇率 {breakfastData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{breakfastBool}<br/><br/>" +
  1453. $"地税: {governmentRentFee.ToString("#0.00")} {governmentRentCode} {governmentRentName} 当时汇率 {governmentRentData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{governmentRentBool}<br/><br/>" +
  1454. $"城市税: {cityTaxFee.ToString("#0.00")} {cityTaxCode} {cityTaxName} 当时汇率 {cityTaxData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{cityTaxBool}<br/>";
  1455. _detail.PriceNameContent = hotelReservations.HotelName;
  1456. }
  1457. break;
  1458. case 79://车/导游地接
  1459. Grp_CarTouristGuideGroundReservations touristGuideGroundReservations = _CarTouristGuideGroundReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1460. if (touristGuideGroundReservations != null)
  1461. {
  1462. if (!string.IsNullOrEmpty(touristGuideGroundReservations.BusName))
  1463. {
  1464. _detail.BusName = touristGuideGroundReservations.BusName;
  1465. }
  1466. _detail.PriceNameContent = touristGuideGroundReservations.PriceName;
  1467. //bool isInt = int.TryParse(touristGuideGroundReservations.Area, out int cityId);
  1468. //if (isInt)
  1469. //{
  1470. // var cityInfo = cityData.Find(it => it.Id == cityId);
  1471. // if (cityInfo != null)
  1472. // {
  1473. // string nameContent = $@"{cityInfo.Country}-{cityInfo.City}";
  1474. // var carFeeItem = carFeeItems.Find(it => it.Id == touristGuideGroundReservations.PriceType);
  1475. // if (carFeeItem != null)
  1476. // {
  1477. // nameContent += $@"({carFeeItem.Name})";
  1478. // }
  1479. // _detail.PriceNameContent = nameContent;
  1480. // }
  1481. //}
  1482. //else
  1483. //{
  1484. // _detail.PriceNameContent = touristGuideGroundReservations.Area;
  1485. //}
  1486. var touristGuideGroundReservationsContents =
  1487. _CarTouristGuideGroundReservationsContent.Where(s => s.CTGGRId == touristGuideGroundReservations.Id && s.IsDel == 0 && s.Price != 0).ToList();
  1488. string priceMsg = $"<span style='font-weight:800;'>{touristGuideGroundReservations.PriceName}({touristGuideGroundReservations.ServiceStartTime} - {touristGuideGroundReservations.ServiceEndTime})</span><br/>";
  1489. foreach (var item in touristGuideGroundReservationsContents)
  1490. {
  1491. string typeName = "Unknown";
  1492. string carCurrencyCode = "Unknown";
  1493. string carCurrencyName = "Unknown";
  1494. var carTypeData = carFeeTypeItems.Where(s => s.Id == item.SId && s.IsDel == 0).FirstOrDefault();
  1495. if (carTypeData != null) typeName = carTypeData.Name;
  1496. var currencyData = currencyItems.Where(s => s.Id == item.Currency && s.IsDel == 0).FirstOrDefault();
  1497. if (currencyData != null)
  1498. {
  1499. carCurrencyCode = currencyData.Name;
  1500. carCurrencyName = currencyData.Remark;
  1501. }
  1502. string opCostStr =string.Empty;
  1503. decimal opCostTypePrice = 0.00M;
  1504. #region 处理成本各项费用
  1505. var opDate = item.DatePrice?.ToString("yyyy-MM-dd");
  1506. var opCost = groupCostDetails.Where(x => x.Date.Equals(opDate)).ToList();
  1507. if (opCost.Count > 0)
  1508. {
  1509. switch (item.SId)
  1510. {
  1511. case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //91车费
  1512. //case 982: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //982 车超时费 -- 暂无
  1513. case 92: opCostTypePrice = opCost.Sum(x => x.GuideFee); break; //92 导游费
  1514. case 94: opCostTypePrice = opCost.Sum(x => x.GuideScenicFee); break; //94 导游景点费
  1515. case 95: opCostTypePrice = opCost.Sum(x => x.GuideTipFee); break; //95 导游小费
  1516. case 983: opCostTypePrice = opCost.Sum(x => x.GuideMealFee); break; //983 导游餐补
  1517. case 984: opCostTypePrice = opCost.Sum(x => x.GuideMealFee); break; //984 导游房补
  1518. case 985: opCostTypePrice = opCost.Sum(x => x.GuideRoomFee); break; //985 导游交通
  1519. //case 96: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //96 接送机费 -- 暂无
  1520. //case 97: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //97 其他费用 -- 暂无
  1521. case 979: opCostTypePrice = opCost.Sum(x => x.DriverFee); break; //979 司机工资
  1522. case 980: opCostTypePrice = opCost.Sum(x => x.DriverTipFee); break; //980 司机小费
  1523. case 981: opCostTypePrice = opCost.Sum(x => x.DriverMealFee); break; //981 司机餐补
  1524. case 988: opCostTypePrice = opCost.Sum(x => x.ClientBreakfastFee); break; //988 客户早餐费用
  1525. case 93: opCostTypePrice = opCost.Sum(x => x.ClientDinnerFee); break; //93 客户午餐费用
  1526. case 989: opCostTypePrice = opCost.Sum(x => x.ClientLunchFee); break; //989 客户晚餐费用
  1527. case 990: opCostTypePrice = opCost.Sum(x => x.ScenicTicketFee); break; //990 景点门票费
  1528. case 991: opCostTypePrice = opCost.Sum(x => x.DrinkSnackFruitFee); break; //991 饮料/零食/水果
  1529. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //992 住补费用 -- 暂无
  1530. case 994: opCostTypePrice = opCost.Sum(x => x.TranslatorFee); break; //994 翻译费
  1531. case 1059: opCostTypePrice = opCost.Sum(x => x.GuideOverTimeFee); break; //1059 导游超时费用
  1532. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1070 尾款金额
  1533. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1071 其他额外费用
  1534. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1073 翻译超时费
  1535. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1074 早餐超支费用
  1536. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1075 午餐超支费用
  1537. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1076 晚餐超支费用
  1538. }
  1539. opCostStr = $"&nbsp;&nbsp;/&nbsp;&nbsp;成本:{opCostTypePrice.ToString("#0.00")} {_groupCurrencyCode}(汇率:{_groupRate.ToString("#0.0000")})";
  1540. }
  1541. #endregion
  1542. priceMsg += $"日期:{item.DatePrice?.ToString("yyyy-MM-dd") ?? "-"}<br/>" +
  1543. $"{typeName}:{item.Price.ToString("#0.00")} {carCurrencyCode}(汇率:{entity.DayRate.ToString("#0.0000")}) {opCostStr}<br/>" +
  1544. $"明细:{item.PriceContent ?? "-"}<br/>" +
  1545. $"备注:{item.Remark ?? "-"}<br/><br/>";
  1546. }
  1547. _detail.PriceMsgContent = priceMsg;
  1548. }
  1549. break;
  1550. case 80: //签证
  1551. Grp_VisaInfo visaInfo = _VisaInfos.Where(s => s.Id == entity.CId).FirstOrDefault();
  1552. if (visaInfo != null)
  1553. {
  1554. _detail.PriceNameContent = getClientNameStr(clientNameList, visaInfo.VisaClient);
  1555. _detail.PriceMsgContent = $"签证描述:{visaInfo.VisaDescription}<br/> 备注:{visaInfo.Remark}";
  1556. }
  1557. break;
  1558. case 81: //邀请/公务活动
  1559. Grp_InvitationOfficialActivities _ioa = _InvitationOfficialActivities.Where(s => s.Id == entity.CId).FirstOrDefault();
  1560. if (_ioa != null)
  1561. {
  1562. string inviteCurrName = "Unknown", //邀请费用币种 Name
  1563. inviteCurrCode = "Unknown", //邀请费用币种 Code
  1564. sendCurrName = "Unknown", //快递费用币种 Name
  1565. sendCurrCode = "Unknown", //快递费用币种 Code
  1566. eventsCurrName = "Unknown", //公务活动费币种 Name
  1567. eventsCurrCode = "Unknown", //公务活动费币种 Code
  1568. translateCurrName = "Unknown", //公务翻译费 Name
  1569. translateCurrCode = "Unknown"; //公务翻译费 Code
  1570. #region 处理费用币种
  1571. var inviteCurrData = currencyItems.Where(s => s.Id == _ioa.InviteCurrency && s.IsDel == 0).FirstOrDefault();
  1572. if (inviteCurrData != null)
  1573. {
  1574. inviteCurrName = inviteCurrData.Remark;
  1575. inviteCurrCode = inviteCurrData.Name;
  1576. }
  1577. var sendCurrData = currencyItems.Where(s => s.Id == _ioa.SendCurrency && s.IsDel == 0).FirstOrDefault();
  1578. if (sendCurrData != null)
  1579. {
  1580. sendCurrName = sendCurrData.Remark;
  1581. sendCurrCode = sendCurrData.Name;
  1582. }
  1583. var eventsCurrData = currencyItems.Where(s => s.Id == _ioa.EventsCurrency && s.IsDel == 0).FirstOrDefault();
  1584. if (eventsCurrData != null)
  1585. {
  1586. eventsCurrName = eventsCurrData.Remark;
  1587. eventsCurrCode = eventsCurrData.Name;
  1588. }
  1589. var translateCurrData = currencyItems.Where(s => s.Id == _ioa.TranslateCurrency && s.IsDel == 0).FirstOrDefault();
  1590. if (translateCurrData != null)
  1591. {
  1592. translateCurrName = translateCurrData.Remark;
  1593. translateCurrCode = translateCurrData.Name;
  1594. }
  1595. #endregion
  1596. _detail.PriceNameContent = _ioa.InviterArea;
  1597. _detail.PriceMsgContent = $@"邀请费用:{_ioa.InviteCost.ToString("#0.00")} {inviteCurrCode}({inviteCurrName})<br/>" +
  1598. $@"快递费用:{_ioa.SendCost.ToString("#0.00")} {sendCurrCode}({sendCurrName})<br/>" +
  1599. $@"公务活动费:{_ioa.EventsCost.ToString("#0.00")} {eventsCurrCode}({eventsCurrName})<br/>" +
  1600. $@"公务翻译费:{_ioa.TranslateCost.ToString("#0.00")} {translateCurrCode}({translateCurrName})<br/>" +
  1601. $@"备注:" + _ioa.Remark + "<br/>";
  1602. }
  1603. break;
  1604. case 82: //团组客户保险
  1605. Grp_Customers customers = _Customers.Where(s => s.Id == entity.CId && s.IsDel == 0).FirstOrDefault();
  1606. if (customers != null)
  1607. {
  1608. _detail.PriceNameContent = getClientNameStr(clientNameList, customers.ClientName);
  1609. _detail.PriceMsgContent = "备注:" + customers.Remark + "<br/>";
  1610. }
  1611. break;
  1612. case 85: //机票预订
  1613. Grp_AirTicketReservations jpRes = _AirTicketReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1614. if (jpRes != null)
  1615. {
  1616. string FlightsDescription = jpRes.FlightsDescription;
  1617. string PriceDescription = jpRes.PriceDescription;
  1618. _detail.PriceMsgContent = "航班号:" + jpRes.FlightsCode + "<br/>城市A-B:" + jpRes.FlightsCity + "<br/>航班描述:" + FlightsDescription.Replace("\r\n", "<br />") + "<br/>" + "价格描述:" + PriceDescription;
  1619. _detail.PriceNameContent = "(" + jpRes.FlightsCode + ")";
  1620. }
  1621. break;
  1622. case 98://其他款项
  1623. Grp_DecreasePayments gdpRes = _DecreasePayments.Where(s => s.Id == entity.CId).FirstOrDefault();
  1624. if (gdpRes != null)
  1625. {
  1626. _detail.PriceMsgContent = "备注:" + gdpRes.Remark;
  1627. _detail.PriceNameContent = gdpRes.PriceName;
  1628. }
  1629. break;
  1630. case 285://收款退还
  1631. Fin_PaymentRefundAndOtherMoney refundAndOtherMoney = _PaymentRefundAndOtherMoneys.Where(s => s.Id == entity.CId).FirstOrDefault();
  1632. if (refundAndOtherMoney != null)
  1633. {
  1634. _detail.PriceMsgContent = "备注:" + refundAndOtherMoney.Remark;
  1635. _detail.PriceNameContent = refundAndOtherMoney.PriceName;
  1636. }
  1637. break;
  1638. case 751://酒店早餐
  1639. break;
  1640. case 1015://超支费用
  1641. Fin_GroupExtraCost groupExtraCost = _GroupExtraCosts.Where(s => s.Id == entity.CId).FirstOrDefault();
  1642. if (groupExtraCost != null)
  1643. {
  1644. _detail.PriceNameContent = groupExtraCost.PriceName;
  1645. _detail.PriceMsgContent = "备注:" + groupExtraCost.Remark;
  1646. }
  1647. break;
  1648. default:
  1649. break;
  1650. }
  1651. /*
  1652. * 申请人
  1653. */
  1654. string operatorName = " - ";
  1655. Sys_Users _opUser = userItems.Where(s => s.Id == entity.CreateUserId).FirstOrDefault();
  1656. if (_opUser != null)
  1657. {
  1658. operatorName = _opUser.CnName;
  1659. }
  1660. _detail.OperatorName = operatorName;
  1661. /*
  1662. * 审核人
  1663. */
  1664. string auditOperatorName = "Unknown";
  1665. if (entity.AuditGMOperate == 0)
  1666. auditOperatorName = " - ";
  1667. else if (entity.AuditGMOperate == 4)
  1668. auditOperatorName = "自动审核";
  1669. else
  1670. {
  1671. Sys_Users _adUser = userItems.Where(s => s.Id == entity.AuditGMOperate).FirstOrDefault();
  1672. if (_adUser != null)
  1673. {
  1674. auditOperatorName = _adUser.CnName;
  1675. }
  1676. }
  1677. _detail.AuditOperatorName = auditOperatorName;
  1678. /*
  1679. * 超预算比例
  1680. */
  1681. string overBudgetStr = "";
  1682. if (entity.ExceedBudget == -1)
  1683. overBudgetStr = sdPriceName.Name + "尚无预算";
  1684. else if (entity.ExceedBudget == 0)
  1685. {
  1686. if (entity.CTable == 76 || entity.CTable == 79)
  1687. {
  1688. if (entity.IsAuditGM == 3) overBudgetStr = "未超预算";
  1689. else overBudgetStr = "超预算";
  1690. }
  1691. else
  1692. {
  1693. overBudgetStr = "未超预算";
  1694. }
  1695. }
  1696. else
  1697. overBudgetStr = entity.ExceedBudget.ToString("P");
  1698. _detail.OverBudget = overBudgetStr;
  1699. /*
  1700. * 费用总计
  1701. */
  1702. ccpCurrencyPrices.Add(new CreditCardPaymentCurrencyPriceItem()
  1703. {
  1704. CurrencyId = entity.PaymentCurrency,
  1705. CurrencyName = PaymentCurrency_WaitPay,
  1706. AmountPayable = entity.PayMoney,
  1707. ThisPayment = CurrPayStr,
  1708. BalancePayment = BalanceStr,
  1709. AuditedFunds = CurrPayStr
  1710. });
  1711. _detail.IsAuditGM = entity.IsAuditGM;
  1712. detailList.Add(_detail);
  1713. }
  1714. #endregion
  1715. _view.DetailList = new List<Grp_CreditCardPaymentDetailView>(detailList);
  1716. /*
  1717. * 下方描述处理
  1718. */
  1719. List<CreditCardPaymentCurrencyPriceItem> nonDuplicat = ccpCurrencyPrices.Where((x, i) => ccpCurrencyPrices.FindIndex(z => z.CurrencyId == x.CurrencyId) == i).ToList();//Lambda表达式去重
  1720. CreditCardPaymentCurrencyPriceItem ccpCurrencyPrice = nonDuplicat.Where(it => it.CurrencyId == 836).FirstOrDefault();
  1721. if (ccpCurrencyPrice != null)
  1722. {
  1723. int CNYIndex = nonDuplicat.IndexOf(ccpCurrencyPrice);
  1724. nonDuplicat.MoveItemAtIndexToFront(CNYIndex);
  1725. }
  1726. else
  1727. {
  1728. nonDuplicat.OrderBy(it => it.CurrencyId).ToList();
  1729. }
  1730. string amountPayableStr = string.Format(@"应付款总金额: ");
  1731. string thisPaymentStr = string.Format(@"此次付款总金额: ");
  1732. string balancePaymentStr = string.Format(@"目前剩余尾款总金额: ");
  1733. string auditedFundsStr = string.Format(@"已审费用总额: ");
  1734. foreach (var item in nonDuplicat)
  1735. {
  1736. var strs = ccpCurrencyPrices.Where(it => it.CurrencyId == item.CurrencyId).ToList();
  1737. if (strs.Count > 0)
  1738. {
  1739. decimal amountPayable = strs.Sum(it => it.AmountPayable);
  1740. decimal balancePayment = strs.Sum(it => it.BalancePayment);
  1741. amountPayableStr += string.Format(@"{0}{1}&nbsp;|", amountPayable.ToString("#0.00"), item.CurrencyName);
  1742. //单独处理此次付款金额
  1743. if (item.CurrencyId == 836) //人民币
  1744. {
  1745. decimal thisPayment = ccpCurrencyPrices.Sum(it => it.ThisPayment);
  1746. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", thisPayment.ToString("#0.00"), item.CurrencyName);
  1747. }
  1748. else
  1749. {
  1750. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1751. }
  1752. balancePaymentStr += string.Format(@"{0}{1}&nbsp;|", balancePayment.ToString("#0.00"), item.CurrencyName);
  1753. //单独处理已审核费用
  1754. if (item.CurrencyId == 836) //人民币
  1755. {
  1756. decimal auditedFunds = ccpCurrencyPrices.Sum(it => it.AuditedFunds);
  1757. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", auditedFunds.ToString("#0.00"), item.CurrencyName);
  1758. }
  1759. else
  1760. {
  1761. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1762. }
  1763. }
  1764. }
  1765. _view.TotalStr1 = amountPayableStr.Substring(0, amountPayableStr.Length - 1);
  1766. _view.TotalStr2 = thisPaymentStr.Substring(0, thisPaymentStr.Length - 1);
  1767. _view.TotalStr3 = balancePaymentStr.Substring(0, balancePaymentStr.Length - 1);
  1768. _view.TotalStr4 = auditedFundsStr.Substring(0, auditedFundsStr.Length - 1);
  1769. var _view1 = new
  1770. {
  1771. PageFuncAuth = pageFunAuthView,
  1772. Data = _view
  1773. };
  1774. return Ok(JsonView(_view1));
  1775. }
  1776. catch (Exception ex)
  1777. {
  1778. return Ok(JsonView(false, ex.Message));
  1779. }
  1780. }
  1781. /// <summary>
  1782. /// 费用审核
  1783. /// 修改团组费用审核状态
  1784. /// </summary>
  1785. /// <param name="_dto">参数Json字符串</param>
  1786. /// <returns></returns>
  1787. [HttpPost]
  1788. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1789. public async Task<IActionResult> PostAuditGrpCreditCardPayment(Edit_GrpCreditCardPaymentDto _dto)
  1790. {
  1791. #region 参数验证
  1792. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1793. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1794. #endregion
  1795. #region 页面操作权限验证
  1796. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1797. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1798. if (pageFunAuthView.AuditAuth == 0) return Ok(JsonView(false, "您没有审核权限"));
  1799. #endregion
  1800. List<string> idList = _dto.CreditIdStr.Split(',').ToList();
  1801. Grp_CreditCardPayment _detail = _mapper.Map<Grp_CreditCardPayment>(_dto);
  1802. DateTime dtNow = DateTime.Now;
  1803. _groupRepository.BeginTran();
  1804. int rst = 0;
  1805. var creditDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && idList.Contains(it.Id.ToString())).ToList();
  1806. var creditTypeDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 16).ToList();
  1807. var creditCurrencyDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  1808. var groupDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).ToList();
  1809. List<dynamic> msgDatas = new List<dynamic>();
  1810. Dictionary<int, int> dic_ccp_user = new Dictionary<int, int>() { };
  1811. foreach (var item in idList)
  1812. {
  1813. int CreditId = int.Parse(item);
  1814. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_CreditCardPayment>()
  1815. .SetColumns(it => it.IsAuditGM == _dto.AuditCode)
  1816. .SetColumns(it => it.AuditGMOperate == _dto.UserId)
  1817. .SetColumns(it => it.AuditGMDate == dtNow.ToString("yyyy-MM-dd HH:mm:ss"))
  1818. .Where(s => s.Id == CreditId)
  1819. .ExecuteCommandAsync();
  1820. if (result < 1)
  1821. {
  1822. rst = -1;
  1823. _groupRepository.RollbackTran();
  1824. return Ok(JsonView(false, "操作失败并回滚!"));
  1825. }
  1826. var creditData = creditDatas.Where(it => it.Id == CreditId).FirstOrDefault();
  1827. if (creditData != null)
  1828. {
  1829. #region 应用通知配置
  1830. try
  1831. {
  1832. dic_ccp_user.Add(creditData.Id, creditData.CreateUserId);
  1833. }
  1834. catch (Exception ex)
  1835. {
  1836. }
  1837. #endregion
  1838. string auditStr = _dto.AuditCode == 1 ? "已通过" : _dto.AuditCode == 2 ? "未通过" : "未审核";
  1839. string groupNameStr = string.Empty;
  1840. var groupData = groupDatas.Where(it => it.Id == creditData.DIId).FirstOrDefault();
  1841. if (groupData != null) groupNameStr = groupData.TeamName;
  1842. string creditTypeStr = string.Empty;
  1843. var creditTypeData = creditTypeDatas.Where(it => it.Id == creditData.CTable).FirstOrDefault();
  1844. if (creditTypeData != null) creditTypeStr = creditTypeData.Name;
  1845. string creditCurrency = string.Empty;
  1846. var creditCurrencyData = creditCurrencyDatas.Where(it => it.Id == creditData.PaymentCurrency).FirstOrDefault();
  1847. if (creditCurrencyData != null) creditCurrency = creditCurrencyData.Name;
  1848. if (creditCurrency.Equals("CNY"))
  1849. {
  1850. creditData.DayRate = 1.0000M;
  1851. }
  1852. if (creditData.PayPercentage == 0.00M)
  1853. {
  1854. creditData.PayPercentage = 100M;
  1855. }
  1856. decimal CNYPrice = (creditData.PayMoney * (creditData.PayPercentage / 100)) * creditData.DayRate;
  1857. string msgTitle = $"[{groupNameStr}({creditTypeStr})]的费用申请";
  1858. string msgContent = "";
  1859. if (creditCurrency.Equals("CNY"))
  1860. {
  1861. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY) {auditStr}!";
  1862. }
  1863. else
  1864. {
  1865. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY({creditData.PayMoney.ToString("0.00")} {creditCurrency})) {auditStr}!";
  1866. }
  1867. msgDatas.Add(new { DiId = creditData.DIId, UserId = creditData.CreateUserId, MsgTitle = msgTitle, MsgContent = msgContent });
  1868. }
  1869. }
  1870. if (rst == 0)
  1871. {
  1872. _groupRepository.CommitTran();
  1873. foreach (var item in msgDatas)
  1874. {
  1875. //发送消息
  1876. GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupExpenseAudit, item.MsgTitle, item.MsgContent, new List<int>() { item.UserId }, item.DiId);
  1877. }
  1878. #region 应用推送
  1879. try
  1880. {
  1881. foreach (var ccpId in dic_ccp_user.Keys)
  1882. {
  1883. List<string> templist = new List<string>() { dic_ccp_user[ccpId].ToString() };
  1884. await AppNoticeLibrary.SendUserMsg_GroupStatus_AuditFee(ccpId, templist, QiyeWeChatEnum.CaiWuChat);
  1885. }
  1886. }
  1887. catch (Exception)
  1888. {
  1889. }
  1890. #endregion
  1891. return Ok(JsonView(true, "操作成功!"));
  1892. }
  1893. return Ok(JsonView(false, "操作失败!"));
  1894. }
  1895. #endregion
  1896. #region 机票费用录入
  1897. /// <summary>
  1898. /// 机票录入当前登录人可操作团组
  1899. /// </summary>
  1900. /// <param name="dto"></param>
  1901. /// <returns></returns>
  1902. [HttpPost]
  1903. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1904. public async Task<IActionResult> AirTicketResSelect(AirTicketResDto dto)
  1905. {
  1906. try
  1907. {
  1908. Result groupData = await _airTicketResRep.AirTicketResSelect(dto);
  1909. if (groupData.Code != 0)
  1910. {
  1911. return Ok(JsonView(false, groupData.Msg));
  1912. }
  1913. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1914. }
  1915. catch (Exception ex)
  1916. {
  1917. return Ok(JsonView(false, "程序错误!"));
  1918. throw;
  1919. }
  1920. }
  1921. /// <summary>
  1922. /// 机票费用录入列表
  1923. /// </summary>
  1924. /// <param name="dto"></param>
  1925. /// <returns></returns>
  1926. [HttpPost]
  1927. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1928. public async Task<IActionResult> AirTicketResList(AirTicketResDto dto)
  1929. {
  1930. try
  1931. {
  1932. Result groupData = await _airTicketResRep.AirTicketResList(dto);
  1933. if (groupData.Code != 0)
  1934. {
  1935. return Ok(JsonView(false, groupData.Msg));
  1936. }
  1937. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1938. }
  1939. catch (Exception ex)
  1940. {
  1941. return Ok(JsonView(false, ex.Message));
  1942. throw;
  1943. }
  1944. }
  1945. /// <summary>
  1946. /// 根据id查询费用录入信息
  1947. /// </summary>
  1948. /// <param name="dto"></param>
  1949. /// <returns></returns>
  1950. [HttpPost]
  1951. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1952. public async Task<IActionResult> AirTicketResById(AirTicketResByIdDto dto)
  1953. {
  1954. try
  1955. {
  1956. Result groupData = await _airTicketResRep.AirTicketResById(dto);
  1957. if (groupData.Code != 0)
  1958. {
  1959. return Ok(JsonView(false, groupData.Msg));
  1960. }
  1961. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1962. }
  1963. catch (Exception ex)
  1964. {
  1965. return Ok(JsonView(false, "程序错误!"));
  1966. throw;
  1967. }
  1968. }
  1969. /// <summary>
  1970. /// 机票费用录入操作(Status:1.新增,2.修改)
  1971. /// </summary>
  1972. /// <param name="dto"></param>
  1973. /// <returns></returns>
  1974. [HttpPost]
  1975. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1976. public async Task<IActionResult> OpAirTicketRes(AirTicketResOpDto dto)
  1977. {
  1978. try
  1979. {
  1980. Result groupData = await _airTicketResRep.OpAirTicketRes(dto, _setDataRep.PostCurrencyByDiid);
  1981. if (groupData.Code != 0)
  1982. {
  1983. return Ok(JsonView(false, groupData.Msg));
  1984. }
  1985. #region 应用推送
  1986. try
  1987. {
  1988. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  1989. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  1990. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  1991. }
  1992. catch (Exception ex)
  1993. {
  1994. }
  1995. #endregion
  1996. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1997. }
  1998. catch (Exception ex)
  1999. {
  2000. return Ok(JsonView(false, "程序错误!"));
  2001. throw;
  2002. }
  2003. }
  2004. /// <summary>
  2005. /// 根据舱位类型查询接团客户名单信息
  2006. /// </summary>
  2007. /// <param name="dto"></param>
  2008. /// <returns></returns>
  2009. [HttpPost]
  2010. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2011. public async Task<IActionResult> tankType(AirTicketResByIdDto dto)
  2012. {
  2013. try
  2014. {
  2015. List<Crm_GroupCustomer> crm_Groups = _sqlSugar.Queryable<Crm_GroupCustomer>().Where(a => a.IsDel == 0 && a.AirType == dto.Id).ToList();
  2016. if (crm_Groups.Count != 0)
  2017. {
  2018. List<dynamic> Customer = new List<dynamic>();
  2019. foreach (var item in crm_Groups)
  2020. {
  2021. var data = new
  2022. {
  2023. Id = item.Id,
  2024. Pinyin = item.Pinyin,
  2025. Name = item.LastName + item.FirstName
  2026. };
  2027. Customer.Add(data);
  2028. }
  2029. return Ok(JsonView(true, "查询成功!", Customer));
  2030. }
  2031. return Ok(JsonView(true, "暂无数据", crm_Groups));
  2032. }
  2033. catch (Exception ex)
  2034. {
  2035. return Ok(JsonView(false, "程序错误!"));
  2036. throw;
  2037. }
  2038. }
  2039. /// <summary>
  2040. /// 根据团号获取客户信息
  2041. /// </summary>
  2042. /// <param name="dto"></param>
  2043. /// <returns></returns>
  2044. [HttpPost]
  2045. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2046. public IActionResult QueryClientInfoByDIID(QueryClientInfoByDIIDDto dto)
  2047. {
  2048. var jw = JsonView(false);
  2049. if (dto.DIID < 1)
  2050. {
  2051. jw.Msg += "请输入正确的diid";
  2052. return Ok(jw);
  2053. }
  2054. var arr = getSimplClientList(dto.DIID);
  2055. jw = JsonView(true, "获取成功!", arr);
  2056. return Ok(jw);
  2057. }
  2058. private List<SimplClientInfo> getSimplClientList(int diId)
  2059. {
  2060. 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);
  2061. List<SimplClientInfo> arr = _sqlSugar.SqlQueryable<SimplClientInfo>(sql).ToList();
  2062. return arr;
  2063. }
  2064. private string getClientNameStr(List<SimplClientInfo> list, string origin)
  2065. {
  2066. string result = origin;
  2067. if (Regex.Match(origin, @"\d+,?").Value.Length > 0)
  2068. {
  2069. string[] temparr = origin.Split(',');
  2070. string fistrStr = temparr[0];
  2071. int count = temparr.Count();
  2072. int tempId;
  2073. bool success = int.TryParse(fistrStr, out tempId);
  2074. if (success)
  2075. {
  2076. SimplClientInfo tempInfo = list.FirstOrDefault(s => s.Id == tempId);
  2077. if (tempInfo != null)
  2078. {
  2079. if (count > 1)
  2080. {
  2081. result = string.Format(@"{0}{1}等{2}人", tempInfo.LastName, tempInfo.FirstName, count);
  2082. }
  2083. else
  2084. {
  2085. result = string.Format(@"{0}{1}", tempInfo.LastName, tempInfo.FirstName);
  2086. }
  2087. }
  2088. }
  2089. }
  2090. return result;
  2091. }
  2092. /// <summary>
  2093. /// 机票费用录入,删除
  2094. /// </summary>
  2095. /// <param name="dto"></param>
  2096. /// <returns></returns>
  2097. [HttpPost]
  2098. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2099. public async Task<IActionResult> DelAirTicketRes(DelBaseDto dto)
  2100. {
  2101. try
  2102. {
  2103. var res = await _airTicketResRep.SoftDeleteByIdAsync<Grp_AirTicketReservations>(dto.Id.ToString(), dto.DeleteUserId);
  2104. if (res)
  2105. {
  2106. var result = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.CTable == 85).SetColumns(a => new Grp_CreditCardPayment()
  2107. {
  2108. IsDel = 1,
  2109. DeleteUserId = dto.DeleteUserId,
  2110. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  2111. }).ExecuteCommandAsync();
  2112. return Ok(JsonView(true, "删除成功!"));
  2113. }
  2114. return Ok(JsonView(false, "删除失败!"));
  2115. }
  2116. catch (Exception ex)
  2117. {
  2118. return Ok(JsonView(false, "程序错误!"));
  2119. throw;
  2120. }
  2121. }
  2122. /// <summary>
  2123. /// 导出机票录入报表
  2124. /// </summary>
  2125. /// <param name="dto"></param>
  2126. /// <returns></returns>
  2127. [HttpPost]
  2128. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2129. public async Task<IActionResult> DeriveAirTicketRes(AirTicketResDto dto)
  2130. {
  2131. try
  2132. {
  2133. Result groupData = await _airTicketResRep.DeriveAirTicketRes(dto);
  2134. if (groupData.Code != 0)
  2135. {
  2136. return Ok(JsonView(StatusCodes.Status400BadRequest, groupData.Msg, ""));
  2137. }
  2138. else
  2139. {
  2140. List<AirTicketReservationsPayView> AirTicketReservations = groupData.Data.GetType().GetProperty("AirTicketRes").GetValue(groupData.Data);
  2141. if (AirTicketReservations.Count != 0)
  2142. {
  2143. Grp_DelegationInfo DelegationInfo = groupData.Data.GetType().GetProperty("Delegation").GetValue(groupData.Data);
  2144. Sys_Users _Users = groupData.Data.GetType().GetProperty("Users").GetValue(groupData.Data);
  2145. string diCode = DelegationInfo != null ? DelegationInfo.TourCode : "XXX";
  2146. string diName = DelegationInfo != null ? DelegationInfo.TeamName : "XXX";
  2147. WorkbookDesigner designer = new WorkbookDesigner();
  2148. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/机票预订费用报表模板.xlsx");
  2149. decimal countCost = 0;
  2150. foreach (var item in AirTicketReservations)
  2151. {
  2152. #region 处理客人姓名
  2153. string clientNames = _tourClientListRep._ResolveCustomerName(item.ClientName);
  2154. item.ClientName = clientNames;
  2155. #endregion
  2156. if (item.BankType == "其他")
  2157. {
  2158. item.BankNo = "--";
  2159. }
  2160. else
  2161. {
  2162. if (!string.IsNullOrEmpty(item.BankType))
  2163. {
  2164. item.BankNo = item.BankType + ":" + item.BankNo?.Substring(0, 3);
  2165. }
  2166. }
  2167. item.PrePrice = System.Decimal.Round(item.PrePrice, 2);
  2168. item.Price = System.Decimal.Round(item.Price, 2);
  2169. countCost += Convert.ToDecimal(item.Price);
  2170. }
  2171. designer.SetDataSource("Export", AirTicketReservations);
  2172. designer.SetDataSource("ExportDiCode", diCode);
  2173. designer.SetDataSource("ExportDiName", diName);
  2174. designer.SetDataSource("ExportOpUserName", _Users.CnName);
  2175. designer.SetDataSource("ExportCountCost", countCost + "(" + AirTicketReservations[0].CurrencyStr);
  2176. designer.Process();
  2177. string fileName = ("AirfareStatement/" + diName + "机票费用报表" + "_" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xlsx").Replace(":", "");
  2178. designer.Workbook.Save(AppSettingsHelper.Get("ExcelBasePath") + fileName);
  2179. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  2180. return Ok(JsonView(true, "成功", url = rst));
  2181. }
  2182. else
  2183. {
  2184. return Ok(JsonView(StatusCodes.Status400BadRequest, "暂无数据!", ""));
  2185. }
  2186. }
  2187. }
  2188. catch (Exception ex)
  2189. {
  2190. return Ok(JsonView(StatusCodes.Status400BadRequest, ex.Message, ""));
  2191. throw;
  2192. }
  2193. }
  2194. Dictionary<string, string> transDic = new Dictionary<string, string>();
  2195. /// <summary>
  2196. /// 行程单导出
  2197. /// </summary>
  2198. /// <param name="dto"></param>
  2199. /// <returns></returns>
  2200. [HttpPost]
  2201. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2202. public async Task<IActionResult> ItineraryAirTicketRes(ItineraryAirTicketResDto dto)
  2203. {
  2204. try
  2205. {
  2206. Result groupData = await _airTicketResRep.ItineraryAirTicketRes(dto);
  2207. if (groupData.Code != 0)
  2208. {
  2209. return Ok(JsonView(StatusCodes.Status400BadRequest, groupData.Msg, ""));
  2210. }
  2211. else
  2212. {
  2213. List<AirTicketReservationsView> _AirTicketReservations = groupData.Data;
  2214. if (dto.Language == "CN")
  2215. {
  2216. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_CN.docx");
  2217. DocumentBuilder builder = new DocumentBuilder(doc);
  2218. int tableIndex = 0;//表格索引
  2219. //得到文档中的第一个表格
  2220. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2221. foreach (var item in _AirTicketReservations)
  2222. {
  2223. #region 处理固定数据
  2224. string[] FlightsCode = item.FlightsCode.Split('/');
  2225. if (FlightsCode.Length != 0)
  2226. {
  2227. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2228. if (_AirCompany != null)
  2229. {
  2230. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2231. }
  2232. else
  2233. {
  2234. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2235. }
  2236. }
  2237. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2238. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2239. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2240. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2241. string name = "";
  2242. foreach (string clientName in nameArray)
  2243. {
  2244. if (!name.Contains(clientName))
  2245. {
  2246. name += clientName + ",";
  2247. }
  2248. }
  2249. if (!string.IsNullOrWhiteSpace(name))
  2250. {
  2251. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2252. }
  2253. else
  2254. {
  2255. table.Range.Bookmarks["ClientName"].Text = "--";
  2256. }
  2257. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2258. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2259. table.Range.Bookmarks["JointTicket"].Text = "--";
  2260. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2261. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2262. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2263. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2264. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2265. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2266. #endregion
  2267. #region 循环数据处理
  2268. List<AirInfo> airs = new List<AirInfo>();
  2269. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2270. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2271. for (int i = 0; i < FlightsCode.Length; i++)
  2272. {
  2273. AirInfo air = new AirInfo();
  2274. string[] tempstr = DayArray[i]
  2275. .Replace("\r\n", string.Empty)
  2276. .Replace("\\r\\n", string.Empty)
  2277. .TrimStart().TrimEnd()
  2278. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2279. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2280. string starCity = "";
  2281. if (star_Three != null)
  2282. {
  2283. starCity = star_Three.AirPort;
  2284. }
  2285. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2286. string EndCity = "";
  2287. if (End_Three != null)
  2288. {
  2289. EndCity = End_Three.AirPort;
  2290. }
  2291. air.Destination = starCity + "/" + EndCity;
  2292. air.Flight = FlightsCode[i];
  2293. air.SeatingClass = item.CTypeName;
  2294. string dateTime = tempstr[2];
  2295. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2296. air.FlightDate = DateTemp;
  2297. air.DepartureTime = tempstr[5];
  2298. air.LandingTime = tempstr[6];
  2299. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2300. air.TicketStatus = "--";
  2301. air.Luggage = "--";
  2302. air.DepartureTerminal = "--";
  2303. air.LandingTerminal = "--";
  2304. airs.Add(air);
  2305. }
  2306. int row = 13;
  2307. for (int i = 0; i < airs.Count; i++)
  2308. {
  2309. if (airs.Count > 2)
  2310. {
  2311. for (int j = 0; j < airs.Count - 2; j++)
  2312. {
  2313. var CopyRow = table.Rows[12].Clone(true);
  2314. table.Rows.Add(CopyRow);
  2315. }
  2316. }
  2317. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2318. int index = 0;
  2319. foreach (PropertyInfo property in properties)
  2320. {
  2321. string value = property.GetValue(airs[i]).ToString();
  2322. Cell ishcel0 = table.Rows[row].Cells[index];
  2323. Paragraph p = new Paragraph(doc);
  2324. string s = value;
  2325. p.AppendChild(new Run(doc, s));
  2326. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2327. ishcel0.AppendChild(p);
  2328. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2329. index++;
  2330. }
  2331. row++;
  2332. }
  2333. #endregion
  2334. Paragraph lastParagraph = new Paragraph(doc);
  2335. //第一个表格末尾加段落
  2336. table.ParentNode.InsertAfter(lastParagraph, table);
  2337. //复制第一个表格
  2338. Table cloneTable = (Table)table.Clone(true);
  2339. //在文档末尾段落后面加入复制的表格
  2340. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2341. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2342. {
  2343. int rownewsIndex = 13;
  2344. for (int i = 0; i < 2; i++)
  2345. {
  2346. var CopyRow = table.Rows[12].Clone(true);
  2347. table.Rows.RemoveAt(13);
  2348. table.Rows.Add(CopyRow);
  2349. rownewsIndex++;
  2350. }
  2351. }
  2352. else
  2353. {
  2354. table.Rows.RemoveAt(12);
  2355. }
  2356. cloneTable.Rows.RemoveAt(12);
  2357. }
  2358. if (_AirTicketReservations.Count != 0)
  2359. {
  2360. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2361. if (FlightsCode.Length != 0)
  2362. {
  2363. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2364. if (_AirCompany != null)
  2365. {
  2366. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2367. }
  2368. else
  2369. {
  2370. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2371. }
  2372. }
  2373. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2374. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2375. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2376. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2377. string name = "";
  2378. foreach (string clientName in nameArray)
  2379. {
  2380. if (!name.Contains(clientName))
  2381. {
  2382. name += clientName + ",";
  2383. }
  2384. }
  2385. if (!string.IsNullOrWhiteSpace(name))
  2386. {
  2387. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2388. }
  2389. else
  2390. {
  2391. table.Range.Bookmarks["ClientName"].Text = "--";
  2392. }
  2393. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2394. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2395. table.Range.Bookmarks["JointTicket"].Text = "--";
  2396. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2397. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2398. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2399. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2400. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2401. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2402. }
  2403. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2404. //保存合并后的文档
  2405. string fileName = "AirItinerary/电子客票中文行程单_CN.docx";
  2406. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2407. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2408. return Ok(JsonView(true, "成功!", rst));
  2409. }
  2410. else
  2411. {
  2412. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_EN.docx");
  2413. DocumentBuilder builder = new DocumentBuilder(doc);
  2414. int tableIndex = 0;//表格索引
  2415. //得到文档中的第一个表格
  2416. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2417. List<string> texts = new List<string>();
  2418. foreach (var item in _AirTicketReservations)
  2419. {
  2420. string[] FlightsCode = item.FlightsCode.Split('/');
  2421. if (FlightsCode.Length != 0)
  2422. {
  2423. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2424. if (_AirCompany != null)
  2425. {
  2426. if (!transDic.ContainsKey(_AirCompany.CnName))
  2427. {
  2428. transDic.Add(_AirCompany.CnName, _AirCompany.EnName);
  2429. }
  2430. }
  2431. else
  2432. {
  2433. if (!transDic.ContainsKey("--"))
  2434. {
  2435. transDic.Add("--", "--");
  2436. }
  2437. }
  2438. }
  2439. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2440. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2441. string name = "";
  2442. foreach (string clientName in nameArray)
  2443. {
  2444. name += clientName + ",";
  2445. }
  2446. if (!texts.Contains(name))
  2447. {
  2448. texts.Add(name);
  2449. }
  2450. List<AirInfo> airs = new List<AirInfo>();
  2451. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2452. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2453. for (int i = 0; i < FlightsCode.Length; i++)
  2454. {
  2455. AirInfo air = new AirInfo();
  2456. string[] tempstr = DayArray[i]
  2457. .Replace("\r\n", string.Empty)
  2458. .Replace("\\r\\n", string.Empty)
  2459. .TrimStart().TrimEnd()
  2460. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2461. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2462. if (star_Three != null)
  2463. {
  2464. if (!transDic.ContainsKey(star_Three.AirPort))
  2465. {
  2466. transDic.Add(star_Three.AirPort, star_Three.AirPort_En);
  2467. }
  2468. }
  2469. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2470. if (End_Three != null)
  2471. {
  2472. if (!transDic.ContainsKey(End_Three.AirPort))
  2473. {
  2474. transDic.Add(End_Three.AirPort, End_Three.AirPort_En);
  2475. }
  2476. }
  2477. if (!texts.Contains(item.CTypeName))
  2478. {
  2479. texts.Add(item.CTypeName);
  2480. }
  2481. }
  2482. }
  2483. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  2484. if (transData.Count > 0)
  2485. {
  2486. foreach (TranslateResult item in transData)
  2487. {
  2488. if (!transDic.ContainsKey(item.Query))
  2489. {
  2490. transDic.Add(item.Query, item.Translation);
  2491. }
  2492. }
  2493. }
  2494. foreach (var item in _AirTicketReservations)
  2495. {
  2496. #region 处理固定数据
  2497. string[] FlightsCode = item.FlightsCode.Split('/');
  2498. if (FlightsCode.Length != 0)
  2499. {
  2500. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2501. if (_AirCompany != null)
  2502. {
  2503. string str = "--";
  2504. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2505. if (!string.IsNullOrEmpty(translateResult))
  2506. {
  2507. str = translateResult;
  2508. str = _airTicketResRep.Processing(str);
  2509. }
  2510. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2511. }
  2512. else
  2513. {
  2514. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2515. }
  2516. }
  2517. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2518. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2519. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2520. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2521. string names = "";
  2522. foreach (string clientName in nameArray)
  2523. {
  2524. names += clientName + ",";
  2525. }
  2526. if (!string.IsNullOrWhiteSpace(names))
  2527. {
  2528. string str = "--";
  2529. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2530. if (!string.IsNullOrEmpty(translateResult))
  2531. {
  2532. str = translateResult;
  2533. str = _airTicketResRep.Processing(str);
  2534. }
  2535. table.Range.Bookmarks["ClientName"].Text = str;
  2536. }
  2537. else
  2538. {
  2539. table.Range.Bookmarks["ClientName"].Text = "--";
  2540. }
  2541. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2542. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2543. table.Range.Bookmarks["JointTicket"].Text = "--";
  2544. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2545. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2546. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2547. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2548. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2549. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2550. #endregion
  2551. #region 循环数据处理
  2552. List<AirInfo> airs = new List<AirInfo>();
  2553. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2554. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2555. for (int i = 0; i < FlightsCode.Length; i++)
  2556. {
  2557. AirInfo air = new AirInfo();
  2558. string[] tempstr = DayArray[i]
  2559. .Replace("\r\n", string.Empty)
  2560. .Replace("\\r\\n", string.Empty)
  2561. .TrimStart().TrimEnd()
  2562. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2563. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2564. string starCity = "";
  2565. if (star_Three != null)
  2566. {
  2567. string str2 = "--";
  2568. string translateResult2 = transDic.Where(s => s.Key == star_Three.AirPort).FirstOrDefault().Value;
  2569. if (!string.IsNullOrEmpty(translateResult2))
  2570. {
  2571. str2 = translateResult2;
  2572. str2 = _airTicketResRep.Processing(str2);
  2573. }
  2574. starCity = str2;
  2575. }
  2576. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2577. string EndCity = "";
  2578. if (End_Three != null)
  2579. {
  2580. string str1 = "--";
  2581. string translateResult1 = transDic.Where(s => s.Key == End_Three.AirPort).FirstOrDefault().Value;
  2582. if (!string.IsNullOrEmpty(translateResult1))
  2583. {
  2584. str1 = translateResult1;
  2585. str1 = _airTicketResRep.Processing(str1);
  2586. }
  2587. EndCity = str1;
  2588. }
  2589. air.Destination = starCity + "/" + EndCity;
  2590. air.Flight = FlightsCode[i];
  2591. string str = "--";
  2592. string translateResult = transDic.Where(s => s.Key == item.CTypeName).FirstOrDefault().Value;
  2593. if (!string.IsNullOrEmpty(translateResult))
  2594. {
  2595. str = translateResult;
  2596. str = _airTicketResRep.Processing(str);
  2597. }
  2598. air.SeatingClass = str;
  2599. string dateTime = tempstr[2];
  2600. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2601. air.FlightDate = DateTemp;
  2602. air.DepartureTime = tempstr[5];
  2603. air.LandingTime = tempstr[6];
  2604. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2605. air.TicketStatus = "--";
  2606. air.Luggage = "--";
  2607. air.DepartureTerminal = "--";
  2608. air.LandingTerminal = "--";
  2609. airs.Add(air);
  2610. }
  2611. int row = 13;
  2612. for (int i = 0; i < airs.Count; i++)
  2613. {
  2614. if (airs.Count > 2)
  2615. {
  2616. for (int j = 0; j < airs.Count - 2; j++)
  2617. {
  2618. var CopyRow = table.Rows[12].Clone(true);
  2619. table.Rows.Add(CopyRow);
  2620. }
  2621. }
  2622. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2623. int index = 0;
  2624. foreach (PropertyInfo property in properties)
  2625. {
  2626. string value = property.GetValue(airs[i]).ToString();
  2627. Cell ishcel0 = table.Rows[row].Cells[index];
  2628. Paragraph p = new Paragraph(doc);
  2629. string s = value;
  2630. p.AppendChild(new Run(doc, s));
  2631. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2632. ishcel0.AppendChild(p);
  2633. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2634. //ishcel0.CellFormat.VerticalAlignment=
  2635. index++;
  2636. }
  2637. row++;
  2638. }
  2639. #endregion
  2640. Paragraph lastParagraph = new Paragraph(doc);
  2641. //第一个表格末尾加段落
  2642. table.ParentNode.InsertAfter(lastParagraph, table);
  2643. //复制第一个表格
  2644. Table cloneTable = (Table)table.Clone(true);
  2645. //在文档末尾段落后面加入复制的表格
  2646. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2647. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2648. {
  2649. int rownewsIndex = 13;
  2650. for (int i = 0; i < 2; i++)
  2651. {
  2652. var CopyRow = table.Rows[12].Clone(true);
  2653. table.Rows.RemoveAt(13);
  2654. table.Rows.Add(CopyRow);
  2655. rownewsIndex++;
  2656. }
  2657. }
  2658. else
  2659. {
  2660. table.Rows.RemoveAt(12);
  2661. }
  2662. cloneTable.Rows.RemoveAt(12);
  2663. }
  2664. if (_AirTicketReservations.Count != 0)
  2665. {
  2666. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2667. if (FlightsCode.Length != 0)
  2668. {
  2669. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2670. if (_AirCompany != null)
  2671. {
  2672. string str = "--";
  2673. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2674. if (!string.IsNullOrEmpty(translateResult))
  2675. {
  2676. str = translateResult;
  2677. str = _airTicketResRep.Processing(str);
  2678. }
  2679. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2680. }
  2681. else
  2682. {
  2683. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2684. }
  2685. }
  2686. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2687. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2688. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2689. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2690. string names = "";
  2691. foreach (string clientName in nameArray)
  2692. {
  2693. names += clientName + ",";
  2694. }
  2695. if (!string.IsNullOrWhiteSpace(names))
  2696. {
  2697. string str = "--";
  2698. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2699. if (!string.IsNullOrEmpty(translateResult))
  2700. {
  2701. str = translateResult;
  2702. str = _airTicketResRep.Processing(str);
  2703. }
  2704. table.Range.Bookmarks["ClientName"].Text = str;
  2705. }
  2706. else
  2707. {
  2708. table.Range.Bookmarks["ClientName"].Text = "--";
  2709. }
  2710. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2711. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2712. table.Range.Bookmarks["JointTicket"].Text = "--";
  2713. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2714. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2715. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2716. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2717. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2718. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2719. }
  2720. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2721. //保存合并后的文档
  2722. string fileName = "AirItinerary/电子客票英文行程单_EN.docx";
  2723. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2724. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2725. return Ok(JsonView(true, "成功!", rst));
  2726. }
  2727. }
  2728. }
  2729. catch (Exception ex)
  2730. {
  2731. return Ok(JsonView(StatusCodes.Status400BadRequest, "程序错误!", ""));
  2732. throw;
  2733. }
  2734. }
  2735. #endregion
  2736. #region 团组增减款项 --> 其他款项
  2737. /// <summary>
  2738. /// 团组增减款项下拉框绑定
  2739. /// </summary>
  2740. /// <param name="dto"></param>
  2741. /// <returns></returns>
  2742. [HttpPost]
  2743. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2744. public async Task<IActionResult> DecreasePaymentsSelect(DecreasePaymentsDto dto)
  2745. {
  2746. #region 参数验证
  2747. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2748. if (dto.CTId < 1) return Ok(JsonView(false, "请传入有效的CTId参数!"));
  2749. #endregion
  2750. return Ok(await _decreasePaymentsRep.DecreasePaymentsSelect(dto));
  2751. }
  2752. /// <summary>
  2753. /// 根据团组Id查询团组增减款项
  2754. /// </summary>
  2755. /// <param name="dto"></param>
  2756. /// <returns></returns>
  2757. [HttpPost]
  2758. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2759. public async Task<IActionResult> DecreasePaymentsList(DecreasePaymentsListDto dto)
  2760. {
  2761. #region 参数验证
  2762. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2763. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  2764. #endregion
  2765. return Ok(await _decreasePaymentsRep.DecreasePaymentsList(dto));
  2766. }
  2767. /// <summary>
  2768. /// 团组增减款项操作(Status:1.新增,2.修改)
  2769. /// </summary>
  2770. /// <param name="dto"></param>
  2771. /// <returns></returns>
  2772. [HttpPost]
  2773. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2774. public async Task<IActionResult> OpDecreasePayments(DecreasePaymentsOpDto dto)
  2775. {
  2776. JsonView groupData = await _decreasePaymentsRep.OpDecreasePayments(dto);
  2777. if (groupData.Code != 200)
  2778. {
  2779. return Ok(JsonView(false, groupData.Msg));
  2780. }
  2781. #region 应用推送
  2782. int ccpId = (int)groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2783. int sign = (int)groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2784. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2785. #endregion
  2786. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2787. }
  2788. /// <summary>
  2789. /// 团组增减款项操作 删除
  2790. /// </summary>
  2791. /// <param name="dto"></param>
  2792. /// <returns></returns>
  2793. [HttpPost]
  2794. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2795. public async Task<IActionResult> DelDecreasePayments(DelBaseDto dto)
  2796. {
  2797. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  2798. if (dto.DeleteUserId < 1) return Ok(JsonView(false, "请传入有效的DeleteUserId参数!"));
  2799. var res = await _decreasePaymentsRep._Del(dto.Id, dto.DeleteUserId);
  2800. if (res.Code == 0)
  2801. {
  2802. return Ok(JsonView(true, "删除成功!"));
  2803. }
  2804. return Ok(JsonView(false, "删除失败!"));
  2805. }
  2806. /// <summary>
  2807. /// 根据团组增减款项Id查询
  2808. /// </summary>
  2809. /// <param name="dto"></param>
  2810. /// <returns></returns>
  2811. [HttpPost]
  2812. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2813. public async Task<IActionResult> QueryDecreasePaymentsById(DecreasePaymentsByIdDto dto)
  2814. {
  2815. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的数据Id!"));
  2816. return Ok(await _decreasePaymentsRep.QueryDecreasePaymentsById(dto));
  2817. }
  2818. /// <summary>
  2819. /// 查询供应商名称
  2820. /// </summary>
  2821. /// <param name="dto"></param>
  2822. /// <returns></returns>
  2823. [HttpPost]
  2824. public IActionResult QueryAssociateSupplier(AssociateSupplierDto dto)
  2825. {
  2826. var dbResult = _sqlSugar.Queryable<Grp_DecreasePayments>()
  2827. .Where(x => x.SupplierName.Contains(dto.param) && x.IsDel == 0).ToList()
  2828. ?? new List<Grp_DecreasePayments>();
  2829. dbResult = dbResult.Distinct(new
  2830. ProductComparer()).ToList();
  2831. var jw = JsonView(true, "success", dbResult.OrderByDescending(x => x.Id).Select(x => new
  2832. {
  2833. x.Id,
  2834. x.SupplierAddress,
  2835. x.SupplierArea,
  2836. x.SupplierContact,
  2837. x.SupplierContactNumber,
  2838. x.SupplierEmail,
  2839. x.SupplierName,
  2840. x.SupplierSocialAccount,
  2841. x.SupplierTypeId,
  2842. }).ToList());
  2843. return Ok(jw);
  2844. }
  2845. #endregion
  2846. #region 文件上传、删除
  2847. /// <summary>
  2848. /// region 文件上传 可以带参数
  2849. /// </summary>
  2850. /// <param name="file"></param>
  2851. /// <returns></returns>
  2852. [HttpPost]
  2853. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2854. public async Task<IActionResult> UploadProject(IFormFile file)
  2855. {
  2856. try
  2857. {
  2858. var TypeName = Request.Headers["TypeName"].ToString();
  2859. if (file != null)
  2860. {
  2861. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2862. //文件名称
  2863. string projectFileName = file.FileName;
  2864. //上传的文件的路径
  2865. string filePath = "";
  2866. if (TypeName == "A")//A代表团组增减款项
  2867. {
  2868. if (!Directory.Exists(fileDir))
  2869. {
  2870. Directory.CreateDirectory(fileDir);
  2871. }
  2872. //上传的文件的路径
  2873. filePath = fileDir + $@"\团组增减款项相关文件\{projectFileName}";
  2874. }
  2875. else if (TypeName == "B")//B代表商邀相关文件
  2876. {
  2877. if (!Directory.Exists(fileDir))
  2878. {
  2879. Directory.CreateDirectory(fileDir);
  2880. }
  2881. //上传的文件的路径
  2882. filePath = fileDir + $@"\商邀相关文件\{projectFileName}";
  2883. }
  2884. using (FileStream fs = System.IO.File.Create(filePath))
  2885. {
  2886. file.CopyTo(fs);
  2887. fs.Flush();
  2888. }
  2889. return Ok(JsonView(true, "上传成功!", projectFileName));
  2890. }
  2891. else
  2892. {
  2893. return Ok(JsonView(false, "上传失败!"));
  2894. }
  2895. }
  2896. catch (Exception ex)
  2897. {
  2898. return Ok(JsonView(false, "程序错误!"));
  2899. throw;
  2900. }
  2901. }
  2902. /// <summary>
  2903. /// 删除指定文件
  2904. /// </summary>
  2905. /// <param name="dto"></param>
  2906. /// <returns></returns>
  2907. [HttpPost]
  2908. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2909. public async Task<IActionResult> DelFile(DelFileDto dto)
  2910. {
  2911. try
  2912. {
  2913. var TypeName = Request.Headers["TypeName"].ToString();
  2914. string filePath = "";
  2915. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2916. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  2917. int id = 0;
  2918. if (TypeName == "A")
  2919. {
  2920. filePath = fileDir + "/团组增减款项相关文件/" + dto.fileName;
  2921. // 删除该文件
  2922. System.IO.File.Delete(filePath);
  2923. id = await _sqlSugar.Updateable<Grp_DecreasePayments>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_DecreasePayments { FilePath = "" }).ExecuteCommandAsync();
  2924. }
  2925. else if (TypeName == "B")
  2926. {
  2927. filePath = fileDir + "/商邀相关文件/" + dto.fileName;
  2928. // 删除该文件
  2929. System.IO.File.Delete(filePath);
  2930. id = await _sqlSugar.Updateable<Grp_InvitationOfficialActivities>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_InvitationOfficialActivities { Attachment = "" }).ExecuteCommandAsync();
  2931. }
  2932. if (id != 0)
  2933. {
  2934. return Ok(JsonView(true, "成功!"));
  2935. }
  2936. else
  2937. {
  2938. return Ok(JsonView(false, "失败!"));
  2939. }
  2940. }
  2941. catch (Exception ex)
  2942. {
  2943. return Ok(JsonView(false, "程序错误!"));
  2944. throw;
  2945. }
  2946. }
  2947. #endregion
  2948. #region 商邀费用录入
  2949. /// <summary>
  2950. /// 根据团组Id查询商邀费用列表
  2951. /// </summary>
  2952. /// <param name="dto"></param>
  2953. /// <returns></returns>
  2954. [HttpPost]
  2955. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2956. public async Task<IActionResult> InvitationOfficialActivitiesList(InvitationOfficialActivitiesListDto dto)
  2957. {
  2958. try
  2959. {
  2960. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesList(dto);
  2961. if (groupData.Code != 0)
  2962. {
  2963. return Ok(JsonView(false, groupData.Msg));
  2964. }
  2965. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2966. }
  2967. catch (Exception ex)
  2968. {
  2969. return Ok(JsonView(false, "程序错误!"));
  2970. throw;
  2971. }
  2972. }
  2973. //
  2974. /// <summary>
  2975. /// 商邀费用 Info Page 基础数据源
  2976. /// </summary>
  2977. /// <param name="dto"></param>
  2978. /// <returns></returns>
  2979. [HttpPost]
  2980. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2981. public async Task<IActionResult> InvitationOfficialActivityInitBasicData()
  2982. {
  2983. try
  2984. {
  2985. Result groupData = await _InvitationOfficialActivitiesRep._InitBasicData();
  2986. if (groupData.Code != 0)
  2987. {
  2988. return Ok(JsonView(false, groupData.Msg));
  2989. }
  2990. return Ok(JsonView(true, "操作成功", groupData.Data));
  2991. }
  2992. catch (Exception ex)
  2993. {
  2994. return Ok(JsonView(false, ex.Message));
  2995. throw;
  2996. }
  2997. }
  2998. /// <summary>
  2999. /// 根据商邀费用ID查询C表和商邀费用数据
  3000. /// </summary>
  3001. /// <param name="dto"></param>
  3002. /// <returns></returns>
  3003. [HttpPost]
  3004. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3005. public async Task<IActionResult> InvitationOfficialActivitiesById(InvitationOfficialActivitiesByIdDto dto)
  3006. {
  3007. try
  3008. {
  3009. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesById(dto);
  3010. if (groupData.Code != 0)
  3011. {
  3012. return Ok(JsonView(false, groupData.Msg));
  3013. }
  3014. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3015. }
  3016. catch (Exception ex)
  3017. {
  3018. return Ok(JsonView(false, ex.Message));
  3019. throw;
  3020. }
  3021. }
  3022. /// <summary>
  3023. /// 商邀费用录入操作(Status:1.新增,2.修改)
  3024. /// </summary>
  3025. /// <param name="dto"></param>
  3026. /// <returns></returns>
  3027. [HttpPost]
  3028. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3029. public async Task<IActionResult> OpInvitationOfficialActivities(OpInvitationOfficialActivitiesDto dto)
  3030. {
  3031. try
  3032. {
  3033. Result groupData = await _InvitationOfficialActivitiesRep.OpInvitationOfficialActivities(dto, _setDataRep.PostCurrencyByDiid);
  3034. if (groupData.Code != 0)
  3035. {
  3036. return Ok(JsonView(false, groupData.Msg));
  3037. }
  3038. #region 应用推送
  3039. try
  3040. {
  3041. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  3042. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  3043. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  3044. }
  3045. catch (Exception ex)
  3046. {
  3047. }
  3048. #endregion
  3049. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3050. }
  3051. catch (Exception ex)
  3052. {
  3053. return Ok(JsonView(false, "程序错误!"));
  3054. throw;
  3055. }
  3056. }
  3057. /// <summary>
  3058. /// 商邀删除
  3059. /// </summary>
  3060. /// <param name="dto"></param>
  3061. /// <returns></returns>
  3062. [HttpPost]
  3063. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3064. public async Task<IActionResult> DelInvitationOfficialActivities(DelBaseDto dto)
  3065. {
  3066. try
  3067. {
  3068. _sqlSugar.BeginTran();
  3069. var res1 = _sqlSugar.Updateable<Grp_InvitationOfficialActivities>()
  3070. .SetColumns(it => new Grp_InvitationOfficialActivities()
  3071. {
  3072. IsDel = 1,
  3073. DeleteUserId = dto.DeleteUserId,
  3074. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  3075. })
  3076. .Where(it => it.Id == dto.Id)
  3077. .ExecuteCommand();
  3078. if (res1 > 0)
  3079. {
  3080. int _diId = 0;
  3081. var _ioaInfo = _sqlSugar.Queryable<Grp_InvitationOfficialActivities>().Where(it => it.Id == dto.Id).First();
  3082. if (_ioaInfo != null)
  3083. {
  3084. _diId = _ioaInfo.DiId;
  3085. }
  3086. var res2 = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  3087. .SetColumns(a => new Grp_CreditCardPayment()
  3088. {
  3089. IsDel = 1,
  3090. DeleteUserId = dto.DeleteUserId,
  3091. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  3092. })
  3093. .Where(a => a.CId == dto.Id && a.DIId == _diId && a.CTable == 81)
  3094. .ExecuteCommand();
  3095. if (res2 > 0)
  3096. {
  3097. _sqlSugar.CommitTran();
  3098. return Ok(JsonView(true, "删除成功!"));
  3099. }
  3100. }
  3101. _sqlSugar.RollbackTran();
  3102. return Ok(JsonView(false, "删除失败"));
  3103. }
  3104. catch (Exception ex)
  3105. {
  3106. _sqlSugar.RollbackTran();
  3107. return Ok(JsonView(false, ex.Message));
  3108. }
  3109. }
  3110. #endregion
  3111. #region 团组英文资料
  3112. /// <summary>
  3113. /// 查询团组英文所有资料
  3114. /// </summary>
  3115. /// <param name="dto"></param>
  3116. /// <returns></returns>
  3117. [HttpPost]
  3118. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3119. public async Task<IActionResult> QueryDelegationEnData(QueryDelegationEnDataDto dto)
  3120. {
  3121. try
  3122. {
  3123. Result groupData = await _delegationEnDataRep.QueryDelegationEnData(dto);
  3124. if (groupData.Code != 0)
  3125. {
  3126. return Ok(JsonView(false, groupData.Msg));
  3127. }
  3128. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3129. }
  3130. catch (Exception ex)
  3131. {
  3132. return Ok(JsonView(false, "程序错误!"));
  3133. throw;
  3134. }
  3135. }
  3136. /// <summary>
  3137. /// 团组英文资料操作(Status:1.新增,2.修改)
  3138. /// </summary>
  3139. /// <param name="dto"></param>
  3140. /// <returns></returns>
  3141. [HttpPost]
  3142. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3143. public async Task<IActionResult> OpDelegationEnData(OpDelegationEnDataDto dto)
  3144. {
  3145. try
  3146. {
  3147. Result groupData = await _delegationEnDataRep.OpDelegationEnData(dto);
  3148. if (groupData.Code != 0)
  3149. {
  3150. return Ok(JsonView(false, groupData.Msg));
  3151. }
  3152. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3153. }
  3154. catch (Exception ex)
  3155. {
  3156. return Ok(JsonView(false, "程序错误!"));
  3157. throw;
  3158. }
  3159. }
  3160. /// <summary>
  3161. /// 团组英文资料Id查询数据
  3162. /// </summary>
  3163. /// <param name="dto"></param>
  3164. /// <returns></returns>
  3165. [HttpPost]
  3166. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3167. public async Task<IActionResult> QueryDelegationEnDataById(QueryDelegationEnDataByIdDto dto)
  3168. {
  3169. try
  3170. {
  3171. Grp_DelegationEnData _DelegationEnData = await _sqlSugar.Queryable<Grp_DelegationEnData>().FirstAsync(it => it.Id == dto.Id && it.IsDel == 0);
  3172. if (_DelegationEnData != null)
  3173. {
  3174. return Ok(JsonView(true, "查询成功!", _DelegationEnData));
  3175. }
  3176. return Ok(JsonView(true, "暂无数据!", _DelegationEnData));
  3177. }
  3178. catch (Exception ex)
  3179. {
  3180. return Ok(JsonView(false, "程序错误!"));
  3181. throw;
  3182. }
  3183. }
  3184. /// <summary>
  3185. /// 团组英文资料删除
  3186. /// </summary>
  3187. /// <param name="dto"></param>
  3188. /// <returns></returns>
  3189. [HttpPost]
  3190. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3191. public async Task<IActionResult> DelDelegationEnData(DelBaseDto dto)
  3192. {
  3193. try
  3194. {
  3195. var res = await _delegationEnDataRep.SoftDeleteByIdAsync<Grp_DelegationEnData>(dto.Id.ToString(), dto.DeleteUserId);
  3196. if (!res)
  3197. {
  3198. return Ok(JsonView(false, "删除失败"));
  3199. }
  3200. return Ok(JsonView(true, "删除成功!"));
  3201. }
  3202. catch (Exception ex)
  3203. {
  3204. return Ok(JsonView(false, "程序错误!"));
  3205. throw;
  3206. }
  3207. }
  3208. #endregion
  3209. #region 导出邀请函
  3210. /// <summary>
  3211. /// 导出邀请函页面初始化
  3212. /// </summary>
  3213. /// <param name="dto"></param>
  3214. /// <returns></returns>
  3215. [HttpPost]
  3216. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3217. public async Task<IActionResult> QueryinvitationLetter(DecreasePaymentsListDto dto)
  3218. {
  3219. try
  3220. {
  3221. List<Grp_DelegationInfo> grp_Delegations = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(a => a.IsDel == 0).OrderBy(a => a.Id, OrderByType.Desc).ToList();
  3222. List<Crm_DeleClient> crm_Deles = new List<Crm_DeleClient>();
  3223. if (dto.DiId == 0)
  3224. {
  3225. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == grp_Delegations[0].Id && a.IsDel == 0).ToListAsync();
  3226. }
  3227. else
  3228. {
  3229. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == dto.DiId && a.IsDel == 0).ToListAsync();
  3230. }
  3231. return Ok(JsonView(true, "查询成功!", new
  3232. {
  3233. deleClient = crm_Deles,
  3234. delegations = grp_Delegations
  3235. }));
  3236. }
  3237. catch (Exception ex)
  3238. {
  3239. return Ok(JsonView(false, "程序错误!"));
  3240. throw;
  3241. }
  3242. }
  3243. /// <summary>
  3244. /// 导出邀请函
  3245. /// </summary>
  3246. /// <param name="dto"></param>
  3247. /// <returns></returns>
  3248. [HttpPost]
  3249. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3250. public async Task<IActionResult> invitationLetter(DecreasePaymentsListDto dto)
  3251. {
  3252. #region 参数验证
  3253. //if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  3254. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  3255. #endregion
  3256. try
  3257. {
  3258. Dictionary<string, string> transDic = new Dictionary<string, string>();
  3259. string sql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  3260. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  3261. From Grp_TourClientList tcl
  3262. Left Join
  3263. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  3264. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  3265. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  3266. From Crm_DeleClient dc
  3267. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  3268. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  3269. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  3270. Where dc.IsDel = 0) temp
  3271. On temp.DcId =tcl.ClientId
  3272. Where tcl.IsDel = 0 And tcl.DiId = {0}", dto.DiId);
  3273. var datas = _sqlSugar.SqlQueryable<TourClientListDetailsView>(sql).ToList();
  3274. List<string> texts = new List<string>();
  3275. if (datas.Count != 0)
  3276. {
  3277. foreach (TourClientListDetailsView item in datas)
  3278. {
  3279. if (!string.IsNullOrWhiteSpace(item.Pinyin))
  3280. {
  3281. transDic.Add(item.LastName + item.FirstName, item.Pinyin);
  3282. }
  3283. else
  3284. {
  3285. string name = item.LastName + item.FirstName;
  3286. texts.Add(name);
  3287. }
  3288. if (!string.IsNullOrEmpty(item.Job) && !texts.Contains(item.Job))
  3289. {
  3290. if (!transDic.ContainsKey(item.Job))
  3291. {
  3292. texts.Add(item.Job);
  3293. }
  3294. }
  3295. if (!string.IsNullOrEmpty(item.CompanyFullName))
  3296. {
  3297. texts.Add(item.CompanyFullName);
  3298. }
  3299. }
  3300. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  3301. if (transData.Count > 0)
  3302. {
  3303. foreach (TranslateResult item in transData)
  3304. {
  3305. if (!transDic.ContainsKey(item.Query))
  3306. {
  3307. transDic.Add(item.Query, item.Translation);
  3308. }
  3309. }
  3310. }
  3311. List<GuestList> list = new List<GuestList>();
  3312. foreach (TourClientListDetailsView dele in datas)
  3313. {
  3314. GuestList guestList = new GuestList();
  3315. if (!string.IsNullOrWhiteSpace(dele.Pinyin))
  3316. {
  3317. guestList.Name = dele.Pinyin;
  3318. }
  3319. else
  3320. {
  3321. string Name = transDic.Where(s => s.Key == dele.LastName + dele.FirstName).FirstOrDefault().Value;
  3322. guestList.Name = Name;
  3323. }
  3324. if (dele.Sex == 0)
  3325. {
  3326. guestList.Sex = "Male";
  3327. }
  3328. else if (dele.Sex == 1)
  3329. {
  3330. guestList.Sex = "Female";
  3331. }
  3332. guestList.DOB = dele.BirthDay.Replace('-', '.');
  3333. if (!string.IsNullOrEmpty(dele.Job))
  3334. {
  3335. guestList.Job = dele.Job;
  3336. }
  3337. list.Add(guestList);
  3338. }
  3339. //载入模板
  3340. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/邀请函模板0210.docx");
  3341. DocumentBuilder builder = new DocumentBuilder(doc);
  3342. //获取word里所有表格
  3343. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3344. //获取所填表格的序数
  3345. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  3346. var rowStart = tableOne.Rows[0]; //获取第1行
  3347. //循环赋值
  3348. for (int i = 0; i < list.Count; i++)
  3349. {
  3350. builder.MoveToCell(0, i + 1, 0, 0);
  3351. builder.Write(list[i].Name.ToString());
  3352. builder.MoveToCell(0, i + 1, 1, 0);
  3353. builder.Write(list[i].Sex.ToString());
  3354. builder.MoveToCell(0, i + 1, 2, 0);
  3355. builder.Write(list[i].DOB.ToString());
  3356. builder.MoveToCell(0, i + 1, 3, 0);
  3357. builder.Write(list[i].Job.ToString());
  3358. }
  3359. //删除多余行
  3360. while (tableOne.Rows.Count > list.Count + 1)
  3361. {
  3362. tableOne.Rows.RemoveAt(list.Count + 1);
  3363. }
  3364. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  3365. string fileName = "邀请函" + DateTime.Now.ToString("yyyy-MM-dd") + ".docx";
  3366. string filePath = fileDir + $@"商邀相关文件/{fileName}";
  3367. doc.Save(filePath);
  3368. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/GrpFile/商邀相关文件/" + fileName;
  3369. return Ok(JsonView(true, "操作成功!", Url));
  3370. }
  3371. else
  3372. {
  3373. return Ok(JsonView(false, "该团组客户名单暂未录入!"));
  3374. }
  3375. }
  3376. catch (Exception ex)
  3377. {
  3378. return Ok(JsonView(false, ex.Message));
  3379. throw;
  3380. }
  3381. }
  3382. #endregion
  3383. #region 团组经理模块 出入境费用
  3384. ///// <summary>
  3385. ///// 团组模块 - 出入境费用
  3386. ///// </summary>
  3387. ///// <returns></returns>
  3388. //[HttpPost]
  3389. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3390. //public async Task<IActionResult> SetEnterExitCostCurrencyChange()
  3391. //{
  3392. // try
  3393. // {
  3394. // var data = await _enterExitCostRep.SetEnterExitCostCurrencyChange();
  3395. // if (data.Code != 0)
  3396. // {
  3397. // return Ok(JsonView(false, data.Msg));
  3398. // }
  3399. // return Ok(JsonView(true, "查询成功!"));
  3400. // }
  3401. // catch (Exception ex)
  3402. // {
  3403. // return Ok(JsonView(false, ex.Message));
  3404. // throw;
  3405. // }
  3406. //}
  3407. /// <summary>
  3408. /// 团组模块 - 出入境费用 - 子项 地区更改为 nationalTravelFee 的id
  3409. /// </summary>
  3410. /// <returns></returns>
  3411. [HttpPost]
  3412. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3413. public async Task<IActionResult> SetDayAndCostAreaChange()
  3414. {
  3415. try
  3416. {
  3417. var nationalTravelFee = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  3418. var dayAndCost = await _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0).ToListAsync();
  3419. var unite = dayAndCost.Where(a => nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //交集
  3420. var merge = dayAndCost.Where(a => !nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //差集
  3421. foreach (var item in unite) //处理交集数据
  3422. {
  3423. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault().Id;
  3424. }
  3425. foreach (var item in merge) //处理差集数据
  3426. {
  3427. int nationalTravelFeeId = 0;
  3428. var cityData = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault();
  3429. if (cityData != null) nationalTravelFeeId = cityData.Id;
  3430. else
  3431. {
  3432. var countryData = nationalTravelFee.Where(it => it.Country.Trim() == item.Place.Trim()).FirstOrDefault();
  3433. if (countryData != null) nationalTravelFeeId = countryData.Id;
  3434. }
  3435. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFeeId;
  3436. }
  3437. //只更新dayAndCost 的 nationalTravelFeeId;
  3438. var result = _sqlSugar.Updateable(dayAndCost).UpdateColumns(it => new { it.NationalTravelFeeId }).ExecuteCommand();
  3439. if (result > 0) return Ok(JsonView(true, "nationalTravelFeeId列更新成功!"));
  3440. else return Ok(JsonView(false, "nationalTravelFeeId列更新失败!"));
  3441. }
  3442. catch (Exception ex)
  3443. {
  3444. return Ok(JsonView(false, ex.Message));
  3445. throw;
  3446. }
  3447. }
  3448. /// <summary>
  3449. /// 团组模块 - 出入境费用 - 基础数据源(团组名称/币种类型)
  3450. /// </summary>
  3451. /// <returns></returns>
  3452. [HttpPost]
  3453. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3454. public async Task<IActionResult> GetEnterExitCostDataSource(PortDtoBase dto)
  3455. {
  3456. try
  3457. {
  3458. var groupNameData = await _groupRepository.GetGroupNameList(new GroupNameDto { PortType = dto.PortType });
  3459. string sql = string.Format("Select * From Sys_SetData Where IsDel = 0");
  3460. //SetDataInfoView
  3461. var dataSource = await _sqlSugar.SqlQueryable<Sys_SetData>(sql).ToListAsync();
  3462. var currencyData = dataSource.Where(it => it.STid == 66).ToList(); //所有币种
  3463. List<SetDataInfoView> _CurrencyData = _mapper.Map<List<SetDataInfoView>>(currencyData);
  3464. var wordTypeData = dataSource.Where(it => it.STid == 72).ToList(); //三公费用-Word明细类型
  3465. List<SetDataInfoView> _WordTypeData = _mapper.Map<List<SetDataInfoView>>(wordTypeData);
  3466. var excelTypeData = dataSource.Where(it => it.STid == 73).ToList(); //三公费用-Excel明细类型
  3467. List<SetDataInfoView> _ExcelTypeData = _mapper.Map<List<SetDataInfoView>>(excelTypeData);
  3468. //默认币种显示
  3469. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3470. {
  3471. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 7.5000M },
  3472. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 8.0000M },
  3473. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 9.5000M },
  3474. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0500M },
  3475. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.9500M },
  3476. };
  3477. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3478. if (_currencyRate.Count > 0)
  3479. {
  3480. foreach (var item in _currencyInfos)
  3481. {
  3482. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3483. if (rateInfo != null)
  3484. {
  3485. decimal rate1 = Convert.ToDecimal(rateInfo.FSellPri) / 100.00M;
  3486. rate1 *= 1.035M;
  3487. item.Rate = Convert.ToDecimal(rate1.ToString("#0.00")) + 0.01M;
  3488. }
  3489. }
  3490. }
  3491. return Ok(JsonView(true, "查询成功!", new
  3492. {
  3493. GroupNameData = groupNameData.Data,
  3494. CurrencyData = _CurrencyData,
  3495. WordTypeData = _WordTypeData,
  3496. ExcelTypeData = _ExcelTypeData,
  3497. CurrencyInit = _currencyInfos
  3498. }));
  3499. }
  3500. catch (Exception ex)
  3501. {
  3502. return Ok(JsonView(false, ex.Message));
  3503. throw;
  3504. }
  3505. }
  3506. /// <summary>
  3507. /// 团组模块 - 出入境费用
  3508. /// 实时汇率 tips
  3509. /// 签证费用 tips
  3510. /// </summary>
  3511. /// <returns></returns>
  3512. [HttpPost]
  3513. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3514. public async Task<IActionResult> GetEnterExitCostCorrelationTips(EnterExitCostInfobyDiIdDto dto)
  3515. {
  3516. var groupInfo = await _sqlSugar.Queryable<Grp_DelegationInfo>().FirstAsync(it => it.Id == dto.DiId && it.IsDel == 0);
  3517. //默认币种显示
  3518. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3519. {
  3520. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 7.5000M },
  3521. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 8.0000M },
  3522. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 9.5000M },
  3523. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0500M },
  3524. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.9500M },
  3525. };
  3526. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3527. List<dynamic> reteInfos = new List<dynamic>();
  3528. if (_currencyRate.Count > 0)
  3529. {
  3530. foreach (var item in _currencyInfos)
  3531. {
  3532. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3533. if (rateInfo != null)
  3534. {
  3535. item.Rate = Convert.ToDecimal((Convert.ToDecimal(rateInfo.FSellPri == null ? 0.00M : rateInfo.FSellPri) / 100.00M).ToString("#0.0000"));
  3536. decimal rate1 = item.Rate;
  3537. rate1 *= 1.03M;
  3538. decimal rate2 = Convert.ToDecimal(rate1.ToString("#0.00")) + 0.01M;
  3539. reteInfos.Add(new
  3540. {
  3541. currCode = item.CurrencyCode,
  3542. currName = item.CurrencyName,
  3543. rate = rate2,
  3544. lastUpdateDt = rateInfo.Date + " " + rateInfo.Time
  3545. });
  3546. }
  3547. }
  3548. }
  3549. var visaData = await _visaFeeInfoRep.EntryAndExitTips(dto.DiId);
  3550. var airData = await _ticketBlackCodeRep.EntryAndExitTips(dto.DiId);
  3551. return Ok(JsonView(true, "查询成功!", new
  3552. {
  3553. //GroupNameData = groupNameData.Data,
  3554. visaData = visaData.Data,
  3555. airData = airData.Data,
  3556. reteInfos = reteInfos
  3557. }));
  3558. }
  3559. /// <summary>
  3560. /// 团组模块 - 出入境费用 - Info
  3561. /// </summary>
  3562. /// <returns></returns>
  3563. [HttpPost]
  3564. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3565. public async Task<IActionResult> GetEnterExitCostInfobyDiId(EnterExitCostInfobyDiIdDto dto)
  3566. {
  3567. try
  3568. {
  3569. var data = await _enterExitCostRep.GetEnterExitCostInfoByDiId(dto);
  3570. if (data.Code != 0)
  3571. {
  3572. return Ok(JsonView(false, data.Msg));
  3573. }
  3574. return Ok(JsonView(true, "查询成功!", data.Data));
  3575. }
  3576. catch (Exception ex)
  3577. {
  3578. return Ok(JsonView(false, ex.Message));
  3579. }
  3580. }
  3581. /// <summary>
  3582. /// 团组模块 - 出入境费用 - Add And Update
  3583. /// </summary>
  3584. /// <returns></returns>
  3585. [HttpPost]
  3586. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3587. public async Task<IActionResult> PostEnterExitCostOperate(EnterExitCostOperateDto dto)
  3588. {
  3589. try
  3590. {
  3591. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  3592. if (data.Code != 0)
  3593. {
  3594. return Ok(JsonView(false, data.Msg));
  3595. }
  3596. return Ok(JsonView(true, data.Msg, data.Data));
  3597. }
  3598. catch (Exception ex)
  3599. {
  3600. return Ok(JsonView(false, ex.Message));
  3601. }
  3602. }
  3603. /// <summary>
  3604. /// 团组模块 - 出入境费用 - File downlaod
  3605. /// </summary>
  3606. /// <param name="dto"></param>
  3607. /// <returns></returns>
  3608. [HttpPost]
  3609. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3610. public async Task<IActionResult> PostEnterExitCostDownload(EnterExitCostDownloadDto dto)
  3611. {
  3612. try
  3613. {
  3614. if (dto.DiId < 1)
  3615. {
  3616. return Ok(JsonView(false, "请传入有效的DiId参数;"));
  3617. }
  3618. if (dto.ExportType < 1)
  3619. {
  3620. return Ok(JsonView(false, "请传入有效的ExportType参数; 1 明细表 2 表格"));
  3621. }
  3622. if (dto.SubTypeId < 1)
  3623. {
  3624. return Ok(JsonView(false, @"请传入有效的SubTypeId参数;
  3625. 1 明细表 --> 1005(默认明细表) 1006(因公出国(境)经费测算明细表) 1007(四川省商务厅出国经费财政先行审核表)
  3626. 2 表格 --> 1008(派员单位出(境)任务和预算审批意见表) 1009(省级单位出(境)经费报销单)
  3627. 3 团组成员名单 1 团组成员名单"));
  3628. }
  3629. var _EnterExitCosts = _sqlSugar.Queryable<Grp_EnterExitCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  3630. var _DayAndCosts = _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  3631. if (_EnterExitCosts == null)
  3632. {
  3633. return Ok(JsonView(false, "该团组未填写出入境费用;"));
  3634. }
  3635. //数据源
  3636. List<Grp_DayAndCost> dac1 = _DayAndCosts.Where(it => it.Type == 1).ToList(); //住宿费
  3637. List<Grp_DayAndCost> dac2 = _DayAndCosts.Where(it => it.Type == 2).ToList(); //伙食费
  3638. List<Grp_DayAndCost> dac3 = _DayAndCosts.Where(it => it.Type == 3).ToList(); //公杂费
  3639. List<Grp_DayAndCost> dac4 = _DayAndCosts.Where(it => it.Type == 4).ToList(); //培训费
  3640. var _CurrDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  3641. var _DelegationInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == dto.DiId).First();
  3642. var DeleClientList = _sqlSugar.Queryable<Grp_TourClientList>()
  3643. .LeftJoin<Crm_DeleClient>((tcl, dc) => tcl.ClientId == dc.Id && dc.IsDel == 0)
  3644. .LeftJoin<Crm_CustomerCompany>((tcl, dc, cc) => dc.CrmCompanyId == cc.Id && dc.IsDel == 0)
  3645. .Where((tcl, dc, cc) => tcl.IsDel == 0 && tcl.DiId == dto.DiId)
  3646. .Select((tcl, dc, cc) => new
  3647. {
  3648. Name = dc.LastName + dc.FirstName,
  3649. Sex = dc.Sex,
  3650. Birthday = dc.BirthDay,
  3651. Company = cc.CompanyFullName,
  3652. Job = dc.Job
  3653. })
  3654. .ToList();
  3655. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  3656. var threeCodes = _sqlSugar.Queryable<Res_ThreeCode>().Where(it => it.IsDel == 0).ToList();
  3657. var placeData = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(it => it.IsDel == 0).ToList();
  3658. var rateDatas = await _EnterExitCosts.CurrencyRemark.SplitExchangeRate();
  3659. _DelegationInfo.VisitCountry = _DelegationInfo.VisitCountry.Replace("|", "、");
  3660. if (dto.ExportType == 1) //明细表
  3661. {
  3662. if (dto.SubTypeId == 1005) //1005(默认明细表)
  3663. {
  3664. //获取模板
  3665. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/出入境费用表模板.docx");
  3666. //载入模板
  3667. Document doc = new Document(tempPath);
  3668. DocumentBuilder builder = new DocumentBuilder(doc);
  3669. //利用键值对存放数据
  3670. Dictionary<string, string> dic = new Dictionary<string, string>();
  3671. decimal stayFeeTotal = _DayAndCosts.Where(it => it.Type == 1).Sum(it => it.SubTotal); // 住宿费
  3672. decimal mealsFeeTotal = _DayAndCosts.Where(it => it.Type == 2).Sum(it => it.SubTotal); // 伙食费费
  3673. decimal miscellaneousFeeTotal = _DayAndCosts.Where(it => it.Type == 3).Sum(it => it.SubTotal); // 公杂费
  3674. decimal tainFeeTotal = _DayAndCosts.Where(it => it.Type == 4).Sum(it => it.SubTotal); // 培训费
  3675. decimal insidePayTotal = _EnterExitCosts.InsidePay;
  3676. string row1_1 = "";
  3677. if (_EnterExitCosts.Visa > 0)
  3678. {
  3679. //insidePayTotal += _EnterExitCosts.Visa;
  3680. row1_1 = $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 人民币/人";
  3681. if (!string.IsNullOrEmpty(_EnterExitCosts.VisaRemark))
  3682. {
  3683. row1_1 += $"\t签证费用描述: : {_EnterExitCosts.VisaRemark} 人民币/人";
  3684. }
  3685. }
  3686. string row1_2 = "";
  3687. if (_EnterExitCosts.YiMiao > 0)
  3688. {
  3689. //insidePayTotal += _EnterExitCosts.YiMiao;
  3690. row1_2 += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")} 人民币/人";
  3691. }
  3692. if (_EnterExitCosts.HeSuan > 0)
  3693. {
  3694. //insidePayTotal += _EnterExitCosts.HeSuan;
  3695. row1_2 += $"核酸检测费:{_EnterExitCosts.HeSuan.ToString("#0.00")} 人民币/人";
  3696. }
  3697. if (_EnterExitCosts.Service > 0)
  3698. {
  3699. //insidePayTotal += _EnterExitCosts.Service;
  3700. row1_2 += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")} 人民币/人";
  3701. }
  3702. string row1_3 = "";
  3703. if (_EnterExitCosts.Safe > 0)
  3704. {
  3705. //insidePayTotal += _EnterExitCosts.Safe;
  3706. row1_3 += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")} 人民币/人";
  3707. }
  3708. if (_EnterExitCosts.Ticket > 0)
  3709. {
  3710. //insidePayTotal += _EnterExitCosts.Ticket;
  3711. row1_3 += $"参展门票:{_EnterExitCosts.Ticket.ToString("#0.00")} 人民币/人";
  3712. }
  3713. string row1 = "";
  3714. if (!string.IsNullOrEmpty(row1_1)) row1 += $"{row1_1}\r\n";
  3715. if (!string.IsNullOrEmpty(row1_2)) row1 += $"{row1_2}\r\n";
  3716. if (!string.IsNullOrEmpty(row1_3)) row1 += $"{row1_3}";
  3717. dic.Add("InsidePay", insidePayTotal.ToString("#0.00"));
  3718. dic.Add("Row1Str", row1);
  3719. dic.Add("OutsideJJ", _EnterExitCosts.OutsideJJPay.ToString("#0.00"));
  3720. dic.Add("OutsaideGW", _EnterExitCosts.OutsaideGWPay.ToString("#0.00"));
  3721. dic.Add("AirJJ", _EnterExitCosts.AirJJ.ToString("#0.00"));
  3722. dic.Add("AirGW", _EnterExitCosts.AirGW.ToString("#0.00"));
  3723. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  3724. dic.Add("SubZS", stayFeeTotal.ToString("#0.00"));
  3725. dic.Add("SubHS", mealsFeeTotal.ToString("#0.00"));
  3726. string miscellaneousFeeTotalStr = miscellaneousFeeTotal.ToString("#0.00");
  3727. dic.Add("SubGZF", miscellaneousFeeTotalStr);
  3728. //dic.Add("SubPX", tainFeeTotal.ToString("#0.00"));
  3729. decimal subJJC = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal + _EnterExitCosts.OutsideJJPay;
  3730. decimal subGWC = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal + _EnterExitCosts.OutsaideGWPay;
  3731. dic.Add("SubJJC", subJJC.ToString("#0.00"));
  3732. dic.Add("SubGWC", subGWC.ToString("#0.00"));
  3733. #region 填充word模板书签内容
  3734. foreach (var key in dic.Keys)
  3735. {
  3736. builder.MoveToBookmark(key);
  3737. builder.Write(dic[key]);
  3738. }
  3739. #endregion
  3740. #region 填充word表格内容
  3741. ////获读取指定表格方法二
  3742. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3743. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  3744. for (int i = 0; i < dac1.Count; i++)
  3745. {
  3746. Grp_DayAndCost dac = dac1[i];
  3747. if (dac == null) continue;
  3748. builder.MoveToCell(0, i, 0, 0);
  3749. builder.Write("第" + dac.Days.ToString() + "晚:");
  3750. builder.MoveToCell(0, i, 1, 0);
  3751. //builder.Write(placeData.Find(it => it.Id == dac.NationalTravelFeeId)?.Country ?? "Unknown");
  3752. //builder.Write(dac.Place == null ? "" : dac.Place);
  3753. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3754. builder.MoveToCell(0, i, 2, 0);
  3755. builder.Write("费用标准:");
  3756. string curr = "";
  3757. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  3758. if (currData != null)
  3759. {
  3760. curr = currData.Name;
  3761. }
  3762. builder.MoveToCell(0, i, 3, 0);
  3763. builder.Write(dac.Cost.ToString("#0.00") + curr);
  3764. builder.MoveToCell(0, i, 4, 0);
  3765. builder.Write("费用小计:");
  3766. builder.MoveToCell(0, i, 5, 0);
  3767. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  3768. }
  3769. //删除多余行
  3770. while (table1.Rows.Count > dac1.Count)
  3771. {
  3772. table1.Rows.RemoveAt(dac1.Count);
  3773. }
  3774. Aspose.Words.Tables.Table table2 = allTables[1] as Aspose.Words.Tables.Table;
  3775. for (int i = 0; i < dac2.Count; i++)
  3776. {
  3777. Grp_DayAndCost dac = dac2[i];
  3778. if (dac == null) continue;
  3779. builder.MoveToCell(1, i, 0, 0);
  3780. builder.Write("第" + dac.Days.ToString() + "天:");
  3781. builder.MoveToCell(1, i, 1, 0);
  3782. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3783. builder.MoveToCell(1, i, 2, 0);
  3784. builder.Write("费用标准:");
  3785. string curr = "";
  3786. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  3787. if (currData != null)
  3788. {
  3789. curr = currData.Name;
  3790. }
  3791. builder.MoveToCell(1, i, 3, 0);
  3792. builder.Write(dac.Cost.ToString("#0.00") + curr);
  3793. builder.MoveToCell(1, i, 4, 0);
  3794. builder.Write("费用小计:");
  3795. builder.MoveToCell(1, i, 5, 0);
  3796. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  3797. }
  3798. //删除多余行
  3799. while (table2.Rows.Count > dac2.Count)
  3800. {
  3801. table2.Rows.RemoveAt(dac2.Count);
  3802. }
  3803. Aspose.Words.Tables.Table table3 = allTables[2] as Aspose.Words.Tables.Table;
  3804. for (int i = 0; i < dac3.Count; i++)
  3805. {
  3806. Grp_DayAndCost dac = dac3[i];
  3807. if (dac == null) continue;
  3808. builder.MoveToCell(2, i, 0, 0);
  3809. builder.Write("第" + dac.Days.ToString() + "天:");
  3810. builder.MoveToCell(2, i, 1, 0);
  3811. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3812. builder.MoveToCell(2, i, 2, 0);
  3813. builder.Write("费用标准:");
  3814. string curr = "";
  3815. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  3816. if (currData != null)
  3817. {
  3818. curr = currData.Name;
  3819. }
  3820. builder.MoveToCell(2, i, 3, 0);
  3821. builder.Write(dac.Cost.ToString("#0.00") + curr);
  3822. builder.MoveToCell(2, i, 4, 0);
  3823. builder.Write("费用小计:");
  3824. builder.MoveToCell(2, i, 5, 0);
  3825. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  3826. }
  3827. //删除多余行
  3828. while (table3.Rows.Count > dac3.Count)
  3829. {
  3830. table3.Rows.RemoveAt(dac3.Count);
  3831. }
  3832. #endregion
  3833. //文件名
  3834. string strFileName = $"{_DelegationInfo.TeamName}出入境费用{Guid.NewGuid().ToString()}.docx";
  3835. AsposeHelper.removewatermark_v2180();
  3836. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  3837. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  3838. return Ok(JsonView(true, "成功", new { Url = url }));
  3839. }
  3840. else if (dto.SubTypeId == 1006)//1006(因公出国(境)经费测算明细表)
  3841. {
  3842. //获取模板
  3843. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/因公出国(境)经费测算明细表.docx");
  3844. //载入模板
  3845. Document doc = new Document(tempPath);
  3846. DocumentBuilder builder = new DocumentBuilder(doc);
  3847. Dictionary<string, string> dic = new Dictionary<string, string>();
  3848. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  3849. {
  3850. List<string> list = new List<string>();
  3851. try
  3852. {
  3853. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  3854. foreach (var item in spilitArr)
  3855. {
  3856. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  3857. var depCode = spDotandEmpty[2].Substring(0, 3);
  3858. var arrCode = spDotandEmpty[2].Substring(3, 3);
  3859. string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  3860. arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  3861. list.Add(depName);
  3862. list.Add(arrName);
  3863. }
  3864. list = list.Distinct().ToList();
  3865. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  3866. }
  3867. catch (Exception)
  3868. {
  3869. dic.Add("ReturnCode", "行程录入不正确!");
  3870. }
  3871. }
  3872. else
  3873. {
  3874. dic.Add("ReturnCode", "未录入行程!");
  3875. }
  3876. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  3877. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  3878. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  3879. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  3880. {
  3881. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  3882. dic.Add("Day", sp.Days.ToString());
  3883. }
  3884. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  3885. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  3886. //var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  3887. //dic.Add("Names", Names);
  3888. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3889. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  3890. decimal dac1totalPrice = 0.00M;
  3891. int accommodationStartIndex = 6, foodandotherStartIndex = 22;
  3892. foreach (var dac in dac1)
  3893. {
  3894. if (dac.SubTotal == 0.00M)
  3895. {
  3896. continue;
  3897. }
  3898. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  3899. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  3900. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  3901. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3902. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  3903. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  3904. builder.Write(currency);//币种
  3905. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  3906. builder.Write(dac.Cost.ToString("#0.00"));//标准
  3907. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  3908. builder.Write("");//人数
  3909. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  3910. builder.Write("");//天数
  3911. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  3912. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  3913. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  3914. decimal rate = 0.00M;
  3915. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  3916. builder.Write(rate.ToString("#0.0000"));//汇率
  3917. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  3918. decimal rbmPrice = dac.SubTotal;
  3919. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  3920. accommodationStartIndex++;
  3921. dac1totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  3922. }
  3923. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  3924. for (int i = 21; i > (dac1.Count == 0 ? 1 : dac1.Count) + 6; i--)
  3925. {
  3926. table1.Rows.RemoveAt(i - 1);
  3927. foodandotherStartIndex--;
  3928. }
  3929. if (dac2.Count == dac3.Count)//国家 币种 金额
  3930. {
  3931. for (int i = 0; i < dac2.Count; i++)
  3932. {
  3933. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  3934. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  3935. }
  3936. }
  3937. decimal dac2totalPrice = 0.00M;
  3938. foreach (var dac in dac2)
  3939. {
  3940. if (dac.SubTotal == 0)
  3941. {
  3942. continue;
  3943. }
  3944. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  3945. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3946. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  3947. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  3948. builder.Write(currency);//币种
  3949. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  3950. builder.Write(dac.Cost.ToString("#0.00"));//标准
  3951. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  3952. builder.Write("");//人数
  3953. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  3954. builder.Write("");//天数
  3955. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  3956. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  3957. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  3958. decimal rate = 0.00M;
  3959. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  3960. builder.Write(rate.ToString("#0.0000"));//汇率
  3961. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  3962. decimal rbmPrice = dac.SubTotal;
  3963. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  3964. foodandotherStartIndex++;
  3965. dac2totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  3966. }
  3967. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  3968. for (int i = foodandotherStartIndex + (15 - dac2.Count); i > (dac2.Count == 0 ? 1 : 0) + foodandotherStartIndex; i--)
  3969. {
  3970. table1.Rows.RemoveAt(i - 1);
  3971. }
  3972. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  3973. string otherFeeStr = "";
  3974. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  3975. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  3976. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  3977. if (otherFeeStr.Length > 0)
  3978. {
  3979. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  3980. otherFeeStr = $"({otherFeeStr})";
  3981. dic.Add("OtherFeeStr", otherFeeStr);
  3982. }
  3983. //总计
  3984. decimal allPrice = dac1totalPrice + dac2totalPrice + _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket;
  3985. //国际旅费
  3986. string outsideJJ = "";
  3987. string allPriceJJ = "";
  3988. if (_EnterExitCosts.SumJJC == 1)
  3989. {
  3990. outsideJJ = string.Format(@"经济舱:{0} 元/人", _EnterExitCosts.AirJJ.ToString("#0.00"));
  3991. allPriceJJ = string.Format(@"经济舱:{0} 元/人", (allPrice + _EnterExitCosts.OutsideJJPay).ToString("#0.00"));
  3992. }
  3993. string outsideGW = "";
  3994. string allPriceGW = "";
  3995. if (_EnterExitCosts.SumGWC == 1)
  3996. {
  3997. outsideGW = string.Format(@"公务舱:{0} 元/人", _EnterExitCosts.AirGW.ToString("#0.00"));
  3998. allPriceGW = string.Format(@"公务舱:{0} 元/人", (allPrice + _EnterExitCosts.OutsaideGWPay).ToString("#0.00"));
  3999. }
  4000. if (_EnterExitCosts.SumJJC == 1 || _EnterExitCosts.SumGWC == 1)
  4001. {
  4002. string InTravelPriceStr = string.Format(@" ({0} {1})", outsideJJ, outsideGW);
  4003. dic.Add("InTravelPrice", InTravelPriceStr);
  4004. string FinalSumPriceStr = string.Format(@" ({0} {1})", allPriceJJ, allPriceGW);
  4005. dic.Add("FinalSumPrice", FinalSumPriceStr);
  4006. }
  4007. //dic.Add("VisaPay", _EnterExitCosts.Visa.ToString("#0.00"));
  4008. //dic.Add("SafePay", _EnterExitCosts.Safe.ToString("#0.00"));
  4009. //dic.Add("YiMiao", _EnterExitCosts.YiMiao.ToString("#0.00"));
  4010. foreach (var key in dic.Keys)
  4011. {
  4012. builder.MoveToBookmark(key);
  4013. builder.Write(dic[key]);
  4014. }
  4015. //模板文件名
  4016. string strFileName = $"{_DelegationInfo.TeamName}因公出国(境)经费测算明细表.docx";
  4017. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4018. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4019. return Ok(JsonView(true, "成功", new { Url = url }));
  4020. }
  4021. else if (dto.SubTypeId == 1007) //1007(四川省商务厅出国经费财政先行审核表)
  4022. {
  4023. //获取模板
  4024. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/四川省商务厅出国经费财政先行审核表.xls");
  4025. //载入模板
  4026. WorkbookDesigner designer = new WorkbookDesigner();
  4027. designer.Workbook = new Workbook(tempPath);
  4028. Dictionary<string, string> dic = new Dictionary<string, string>();
  4029. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4030. {
  4031. List<string> list = new List<string>();
  4032. try
  4033. {
  4034. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4035. foreach (var item in spilitArr)
  4036. {
  4037. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4038. var depCode = spDotandEmpty[2].Substring(0, 3);
  4039. var arrCode = spDotandEmpty[2].Substring(3, 3);
  4040. string depName = threeCodes.Find(it => it.Three.Equals(depCode))?.City ?? "Unknwon",
  4041. arrName = threeCodes.Find(it => it.Three.Equals(arrCode))?.City ?? "Unknown";
  4042. list.Add(depName);
  4043. list.Add(arrName);
  4044. }
  4045. list = list.Distinct().ToList();
  4046. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4047. }
  4048. catch (Exception)
  4049. {
  4050. dic.Add("ReturnCode", "行程录入不正确!");
  4051. }
  4052. }
  4053. else
  4054. {
  4055. dic.Add("ReturnCode", "未录入行程!");
  4056. }
  4057. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4058. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4059. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4060. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4061. {
  4062. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4063. dic.Add("Day", sp.Days.ToString());
  4064. }
  4065. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4066. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4067. var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  4068. designer.SetDataSource("ClientUnit", _DelegationInfo.ClientUnit);
  4069. designer.SetDataSource("VisitCountry", _DelegationInfo.VisitCountry);
  4070. designer.SetDataSource("Group", _DelegationInfo.TeamName);
  4071. designer.SetDataSource("ClientUnitTitle", _DelegationInfo.TeamName);
  4072. designer.SetDataSource("Name", Names);
  4073. designer.SetDataSource("VisitStartDate", dic["VisitStartDate"] + "-" + dic["VisitEndDate"]);
  4074. designer.SetDataSource("Day", dic["Day"] + "天");
  4075. designer.SetDataSource("ReturnCode", dic["ReturnCode"]);
  4076. designer.SetDataSource("ReturnCodeAir", dic["ReturnCodeAir"]);
  4077. int startIndex = 10;
  4078. const int startIndexcopy = 10;
  4079. if (dac2.Count == dac3.Count)//国家 币种 金额
  4080. {
  4081. for (int i = 0; i < dac2.Count; i++)
  4082. {
  4083. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4084. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4085. }
  4086. }
  4087. DataTable dtdac1 = new DataTable();
  4088. List<string> place = new List<string>();
  4089. dtdac1.Columns.AddRange(new DataColumn[] {
  4090. new DataColumn(){ ColumnName = "city"},
  4091. new DataColumn(){ ColumnName = "curr"},
  4092. new DataColumn(){ ColumnName = "criterion"},
  4093. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  4094. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  4095. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  4096. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  4097. new DataColumn(){ ColumnName = "costRMB", DataType = typeof(decimal) },
  4098. });
  4099. DataTable dtdac2 = new DataTable();
  4100. dtdac2.Columns.AddRange(new DataColumn[] {
  4101. new DataColumn(){ ColumnName = "city"},
  4102. new DataColumn(){ ColumnName = "curr"},
  4103. new DataColumn(){ ColumnName = "criterion"},
  4104. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  4105. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  4106. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  4107. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  4108. new DataColumn(){ ColumnName = "costRMB",DataType = typeof(decimal)},
  4109. });
  4110. dtdac1.TableName = "tb1";
  4111. dtdac2.TableName = "tb2";
  4112. decimal dac1totalPrice = 0.00M, dac2totalPrice = 0.00M;
  4113. foreach (var item in dac1)
  4114. {
  4115. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  4116. if (place.Contains(item.Place))
  4117. {
  4118. continue;
  4119. }
  4120. DataRow row = dtdac1.NewRow();
  4121. row["city"] = item.Place;
  4122. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  4123. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4124. row["curr"] = currency;
  4125. row["rate"] = rate.ToString("#0.0000");
  4126. row["criterion"] = item.Cost.ToString("#0.00");
  4127. row["number"] = 1;
  4128. row["day"] = dac1.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  4129. //row["costRMB"] = rbmPrice;
  4130. dtdac1.Rows.Add(row);
  4131. place.Add(item.Place);
  4132. }
  4133. place = new List<string>();
  4134. foreach (var item in dac2)
  4135. {
  4136. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  4137. if (place.Contains(item.Place))
  4138. {
  4139. continue;
  4140. }
  4141. DataRow row = dtdac2.NewRow();
  4142. row["city"] = item.Place;
  4143. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  4144. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4145. row["curr"] = currency;
  4146. row["rate"] = rate.ToString("#0.0000");
  4147. row["criterion"] = item.Cost.ToString("#0.00");
  4148. row["number"] = 1;
  4149. row["day"] = dac2.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  4150. //row["cost"] = item.SubTotal;
  4151. //row["costRMB"] = rbmPrice;
  4152. dtdac2.Rows.Add(row);
  4153. place.Add(item.Place);
  4154. //dac2totalPrice += rbmPrice;
  4155. }
  4156. dac1totalPrice = dac1.Sum(it => it.SubTotal);
  4157. dac2totalPrice = dac2.Sum(it => it.SubTotal);
  4158. designer.SetDataSource("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4159. designer.SetDataSource("dac2totalPrice", dac2totalPrice);
  4160. designer.SetDataSource("cityTranffic", @$"其中:国外城市间机票费: {_EnterExitCosts.CityTranffic.ToString("#0.00")} 元");
  4161. designer.SetDataSource("sumCityTranffic", @$"{_EnterExitCosts.CityTranffic.ToString("#0.00")} ");
  4162. string cell4Str = $" 4.国际旅费:经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 元/人,公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")} 元/人";
  4163. string cellStr = $" 5.其他费用(";
  4164. if (_EnterExitCosts.Visa > 0) cellStr += $"签证费:{_EnterExitCosts.Visa.ToString("#0.00")}元,";
  4165. if (_EnterExitCosts.YiMiao > 0) cellStr += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")}元,";
  4166. if (_EnterExitCosts.HeSuan > 0) cellStr += $"核酸费:{_EnterExitCosts.HeSuan.ToString("#0.00")}元,";
  4167. if (_EnterExitCosts.Safe > 0) cellStr += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")}元,";
  4168. if (_EnterExitCosts.Ticket > 0) cellStr += $"参展门票费:{_EnterExitCosts.Ticket.ToString("#0.00")}元,";
  4169. if (_EnterExitCosts.Service > 0) cellStr += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")}元,";
  4170. if (cellStr.Length > 8)
  4171. {
  4172. cellStr = cellStr.Substring(0, cellStr.Length - 1);
  4173. }
  4174. cellStr += ")";
  4175. decimal otherFee = _EnterExitCosts.Visa + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.Service;
  4176. decimal s = dac1totalPrice + dac2totalPrice + _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay + otherFee;
  4177. decimal pxFee = dac4.Sum(it => it.Cost);
  4178. decimal glvFee = _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay;
  4179. string celllastStr1 = "";
  4180. if (dac1totalPrice > 0) celllastStr1 += $"住宿费 {dac1totalPrice.ToString("#0.00")} 元";
  4181. if (dac2totalPrice > 0) celllastStr1 += $",伙食费和公杂费 {dac2totalPrice.ToString("#0.00")} 元";
  4182. if (pxFee > 0) celllastStr1 += $",培训费 {pxFee.ToString("#0.00")} 元";
  4183. celllastStr1 += $",国际旅费 元";
  4184. if (otherFee > 0) celllastStr1 += $",其他费用 {otherFee.ToString("#0.00")} 元";
  4185. string celllastStr = $" 经审核,{celllastStr1},本次出国经费预算合计为 元。其中:市本级安排 。";
  4186. designer.SetDataSource("cell4Str", cell4Str);
  4187. designer.SetDataSource("cellStr", cellStr);
  4188. designer.SetDataSource("cellSum", (_EnterExitCosts.Visa + _EnterExitCosts.Safe).ToString("#0.00"));
  4189. designer.SetDataSource("cellSum4", (_EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay).ToString("#0.00"));
  4190. designer.SetDataSource("celllastStr", celllastStr);
  4191. Workbook wb = designer.Workbook;
  4192. var sheet = wb.Worksheets[0];
  4193. //绑定datatable数据集
  4194. designer.SetDataSource(dtdac1);
  4195. designer.SetDataSource(dtdac2);
  4196. designer.Process();
  4197. var rowStart = dtdac1.Rows.Count;
  4198. while (rowStart > 0)
  4199. {
  4200. sheet.Cells[startIndex, 8].Formula = $"=G{startIndex + 1} * H{startIndex + 1}";
  4201. sheet.Cells[startIndex, 6].Formula = $"=E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4202. startIndex++;
  4203. rowStart--;
  4204. }
  4205. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + 1}: I{startIndex})";
  4206. startIndex += 1; //总计行
  4207. rowStart = dtdac2.Rows.Count;
  4208. while (rowStart > 0)
  4209. {
  4210. sheet.Cells[startIndex, 8].Formula = $"= G{startIndex + 1} * H{startIndex + 1}";
  4211. sheet.Cells[startIndex, 6].Formula = $"= E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4212. startIndex++;
  4213. rowStart--;
  4214. }
  4215. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + dtdac1.Rows.Count + 2}: I{startIndex})";
  4216. wb.CalculateFormula(true);
  4217. //模板文件名
  4218. string strFileName = $"四川省商务厅出国经费财政先行审核表.xls";
  4219. designer.Workbook.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4220. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4221. return Ok(JsonView(true, "成功", new { Url = url }));
  4222. }
  4223. else if (dto.SubTypeId == 1066) //成都市因公临时出国任务和预算审批意见表(外专培训团专用)
  4224. {
  4225. //获取模板
  4226. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/成都市因公临时出国任务和预算审批意见表.docx");
  4227. //载入模板
  4228. Document doc = new Document(tempPath);
  4229. DocumentBuilder builder = new DocumentBuilder(doc);
  4230. Dictionary<string, string> dic = new Dictionary<string, string>();
  4231. dic.Add("GroupName", _DelegationInfo.TeamName);
  4232. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4233. string missionLeader = ""; //团负责人默认接团客户名单第一个人
  4234. string missionLeaderJob = "";//负责人job
  4235. int groupNumber = 0; //团人数
  4236. if (DeleClientList.Count > 0)
  4237. {
  4238. missionLeader = DeleClientList[0]?.Name ?? "";
  4239. missionLeaderJob = DeleClientList[0]?.Job ?? "";
  4240. }
  4241. dic.Add("MissionLeader", missionLeader); //团负责人
  4242. dic.Add("MissionLeaderJob", missionLeaderJob); //团负责人job
  4243. dic.Add("GroupNumber", _DelegationInfo.VisitPNumber.ToString()); //团人数
  4244. #region MyRegion
  4245. //if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4246. //{
  4247. // List<string> list = new List<string>();
  4248. // try
  4249. // {
  4250. // var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4251. // foreach (var item in spilitArr)
  4252. // {
  4253. // var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4254. // var depCode = spDotandEmpty[2].Substring(0, 3);
  4255. // var arrCode = spDotandEmpty[2].Substring(3, 3);
  4256. // string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  4257. // arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  4258. // list.Add(depName);
  4259. // list.Add(arrName);
  4260. // }
  4261. // list = list.Distinct().ToList();
  4262. // dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4263. // }
  4264. // catch (Exception)
  4265. // {
  4266. // dic.Add("ReturnCode", "行程录入不正确!");
  4267. // }
  4268. //}
  4269. //else
  4270. //{
  4271. // dic.Add("ReturnCode", "未录入行程!");
  4272. //}
  4273. List<string> countrys = _groupRepository.GroupSplitCountry(_DelegationInfo.VisitCountry);
  4274. dic.Add("ReturnCode", string.Join("、", countrys));
  4275. #endregion
  4276. //dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4277. //dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4278. //dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4279. //if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4280. //{
  4281. // TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4282. // dic.Add("Day", sp.Days.ToString());
  4283. //}
  4284. dic.Add("Day", _DelegationInfo.VisitDays.ToString());
  4285. dic.Add("CultivateDay", dac4.Count.ToString()); //培训天数
  4286. // dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4287. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4288. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4289. //培训人员名单
  4290. int cultivateRowIndex = 7;
  4291. foreach (var item in DeleClientList)
  4292. {
  4293. builder.MoveToCell(0, cultivateRowIndex, 0, 0);
  4294. builder.Write(item.Name);
  4295. builder.MoveToCell(0, cultivateRowIndex, 1, 0);
  4296. builder.Write(item.Sex == 0 ? "男" : item.Sex == 1 ? "女" : "");
  4297. builder.MoveToCell(0, cultivateRowIndex, 2, 0);
  4298. string birthDay = "";
  4299. if (item.Birthday != null)
  4300. {
  4301. DateTime dt = Convert.ToDateTime(item.Birthday);
  4302. birthDay = $"{dt.Year}.{dt.Month}";
  4303. }
  4304. builder.Write(birthDay);
  4305. builder.MoveToCell(0, cultivateRowIndex, 3, 0);
  4306. builder.Write(item.Company);
  4307. builder.MoveToCell(0, cultivateRowIndex, 4, 0);
  4308. builder.Write(item.Job);
  4309. cultivateRowIndex++;
  4310. }
  4311. //删除多余行
  4312. //cultivateRowIndex -= 2;
  4313. int delRows = 10 + 7 - cultivateRowIndex;
  4314. if (delRows > 0)
  4315. {
  4316. for (int i = 0; i < delRows; i++)
  4317. {
  4318. table1.Rows.RemoveAt(cultivateRowIndex);
  4319. //cultivateRowIndex++;
  4320. }
  4321. }
  4322. decimal hotelFeeTotal = dac1.Sum(it => it.SubTotal);//住宿费
  4323. dic.Add("HotelFeeTotal", hotelFeeTotal.ToString("#0.00"));
  4324. decimal mealsFeeTotal = dac2.Sum(it => it.SubTotal);//伙食费
  4325. dic.Add("MealsFeeTotal", mealsFeeTotal.ToString("#0.00"));
  4326. decimal miscellaneousFeeTotal = dac3.Sum(it => it.SubTotal);//公杂费
  4327. dic.Add("MiscellaneousFeeTotal", miscellaneousFeeTotal.ToString("#0.00"));
  4328. decimal trainingFeeTotal = dac4.Sum(it => it.SubTotal);//培训费
  4329. dic.Add("TrainingFeeTotal", trainingFeeTotal.ToString("#0.00"));
  4330. decimal cityTranfficFeeToatal = _EnterExitCosts.CityTranffic; //城市区间交通费
  4331. dic.Add("CityTranfficFeeToatal", cityTranfficFeeToatal.ToString("#0.00"));//
  4332. //其他费用
  4333. decimal otherFeeTotal = _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Service;
  4334. dic.Add("OtherFeeTotal", otherFeeTotal.ToString("#0.00"));
  4335. //其他费用合计
  4336. decimal _otherFeeTotal = hotelFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + trainingFeeTotal + cityTranfficFeeToatal + otherFeeTotal;
  4337. decimal _jjcFeeToatal = _EnterExitCosts.AirJJ + _otherFeeTotal; //经济舱
  4338. decimal _gwcFeeToatal = _EnterExitCosts.AirGW + _otherFeeTotal; //公务舱
  4339. //公务舱合计
  4340. //国际旅费
  4341. string outsideJJ = "";
  4342. string allPriceJJ = "";
  4343. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 0)
  4344. {
  4345. dic.Add("AirFeeTotal", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4346. dic.Add("FeeTotal", _jjcFeeToatal.ToString("#0.00"));
  4347. }
  4348. if (_EnterExitCosts.SumGWC == 1 && _EnterExitCosts.SumJJC == 0)
  4349. {
  4350. dic.Add("AirFeeTotal", _EnterExitCosts.AirGW.ToString("#0.00"));
  4351. dic.Add("FeeTotal", _gwcFeeToatal.ToString("#0.00"));
  4352. }
  4353. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 1)
  4354. {
  4355. string airFeeTotalStr = string.Format(@$"经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")}");
  4356. dic.Add("AirFeeTotal", airFeeTotalStr);
  4357. string feeTotalStr = string.Format(@$"经济舱:{_jjcFeeToatal.ToString("#0.00")} 公务舱:{_gwcFeeToatal.ToString("#0.00")}");
  4358. dic.Add("FeeTotal", feeTotalStr);
  4359. }
  4360. foreach (var key in dic.Keys)
  4361. {
  4362. builder.MoveToBookmark(key);
  4363. builder.Write(dic[key]);
  4364. }
  4365. //模板文件名
  4366. string strFileName = $"{_DelegationInfo.TeamName}成都市因公临时出国任务和预算审批意见表(外专培训团专用).docx";
  4367. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4368. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4369. return Ok(JsonView(true, "成功", new { Url = url }));
  4370. }
  4371. }
  4372. else if (dto.ExportType == 2) //表格
  4373. {
  4374. //利用键值对存放数据
  4375. Dictionary<string, string> dic = new Dictionary<string, string>();
  4376. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4377. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4378. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4379. dic.Add("Day", sp.Days.ToString());
  4380. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4381. if (dto.SubTypeId == 1008) //1008(派员单位出(境)任务和预算审批意见表)
  4382. {
  4383. //获取模板
  4384. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/派员单位出(境)任务和预算审批意见表.docx");
  4385. //载入模板
  4386. Document doc = new Document(tempPath);
  4387. DocumentBuilder builder = new DocumentBuilder(doc);
  4388. dic.Add("TeamName", _DelegationInfo.TeamName);
  4389. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4390. //dic.Add("TellPhone", _DelegationInfo.TellPhone);
  4391. string missionLeaderName = "",
  4392. missionLeaderJob = "";
  4393. if (DeleClientList.Count > 0)
  4394. {
  4395. missionLeaderName = DeleClientList[0].Name;
  4396. missionLeaderJob = DeleClientList[0].Job;
  4397. }
  4398. dic.Add("MissionLeaderName", missionLeaderName);
  4399. dic.Add("MissionLeaderJob", missionLeaderJob);
  4400. dic.Add("VisitPNumber", _DelegationInfo.VisitPNumber.ToString());
  4401. dic.Add("VisitPurpose", _DelegationInfo.VisitPurpose);
  4402. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4403. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4404. int rowCount = 10;//总人数行
  4405. int startRowIndex = 7; //起始行
  4406. for (int i = 0; i < DeleClientList.Count; i++)
  4407. {
  4408. builder.MoveToCell(0, startRowIndex, 0, 0);
  4409. builder.Write(DeleClientList[i].Name); //出国人员姓名
  4410. builder.MoveToCell(0, startRowIndex, 1, 0);
  4411. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  4412. builder.Write(sex);//性别
  4413. builder.MoveToCell(0, startRowIndex, 2, 0);
  4414. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));//出生年月
  4415. builder.MoveToCell(0, startRowIndex, 3, 0);
  4416. builder.Write(DeleClientList[i].Company);//工作单位
  4417. builder.MoveToCell(0, startRowIndex, 4, 0);
  4418. builder.Write(DeleClientList[i].Job);//职务及级别
  4419. builder.MoveToCell(0, startRowIndex, 5, 0);
  4420. builder.Write("");//人员属性
  4421. builder.MoveToCell(0, startRowIndex, 6, 0);
  4422. builder.Write("");//上次出国时间
  4423. startRowIndex++;
  4424. }
  4425. int nullRow = rowCount - DeleClientList.Count;//空行
  4426. for (int i = 0; i < nullRow; i++)
  4427. {
  4428. table1.Rows.Remove(table1.Rows[startRowIndex]);
  4429. }
  4430. foreach (var key in dic.Keys)
  4431. {
  4432. builder.MoveToBookmark(key);
  4433. builder.Write(dic[key]);
  4434. }
  4435. //模板文件名
  4436. string strFileName = $"派员单位出(境)任务和预算审批意见表.docx";
  4437. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4438. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4439. return Ok(JsonView(true, "成功", new { Url = url }));
  4440. }
  4441. else if (dto.SubTypeId == 1009)//1009(省级单位出(境)经费报销单)
  4442. {
  4443. //获取模板
  4444. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/省级单位出(境)经费报销单.docx");
  4445. //载入模板
  4446. Document doc = new Document(tempPath);
  4447. DocumentBuilder builder = new DocumentBuilder(doc);
  4448. dic.Add("GroupClient", _DelegationInfo.ClientUnit);
  4449. var Names = string.Join("、", DeleClientList.Select(x => x.Name)).TrimEnd('、');
  4450. dic.Add("Names", Names);
  4451. int accommodationRows = 12, foodandotherRows = 12;
  4452. var Dac1currCn = dac1.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4453. var Dac2currCn = dac2.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4454. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4455. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4456. int accommodationStartIndex = 6;
  4457. decimal dac1totalPrice = 0.00M;
  4458. foreach (var dac in dac1)
  4459. {
  4460. if (dac.SubTotal == 0)
  4461. {
  4462. continue;
  4463. }
  4464. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  4465. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  4466. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4467. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  4468. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  4469. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  4470. builder.Write(currency);//币种
  4471. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  4472. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4473. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  4474. builder.Write("");//人数
  4475. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  4476. builder.Write("");//天数
  4477. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  4478. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4479. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  4480. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4481. builder.Write(rate.ToString("#0.0000"));//汇率
  4482. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4483. decimal rbmPrice = rate * dac.SubTotal;
  4484. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4485. accommodationStartIndex++;
  4486. dac1totalPrice += rbmPrice;
  4487. }
  4488. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4489. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4490. builder.Write("小计");
  4491. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4492. builder.Write(dac1totalPrice.ToString("#0.00"));
  4493. accommodationStartIndex++;
  4494. int nullRow = accommodationRows - dac1.Count;
  4495. //删除空行
  4496. //if (nullRow > 0)
  4497. //{
  4498. // int rowIndex = accommodationStartIndex;
  4499. // for (int i = 0; i < nullRow; i++)
  4500. // {
  4501. // Row row = table1.Rows[rowIndex];
  4502. // row.Remove();
  4503. // rowIndex++;
  4504. // }
  4505. //}
  4506. if (dac2.Count == dac3.Count)//国家 币种 金额
  4507. {
  4508. for (int i = 0; i < dac2.Count; i++)
  4509. {
  4510. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4511. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4512. }
  4513. }
  4514. int foodandotherStartIndex = 19;//
  4515. decimal dac2totalPrice = 0.00M;
  4516. foreach (var dac in dac2)
  4517. {
  4518. if (dac.SubTotal == 0)
  4519. {
  4520. continue;
  4521. }
  4522. //foodandotherStartIndex = 12;
  4523. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  4524. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  4525. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  4526. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  4527. builder.Write(currency);//币种
  4528. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  4529. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4530. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  4531. builder.Write("");//人数
  4532. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  4533. builder.Write("");//天数
  4534. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  4535. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4536. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  4537. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4538. builder.Write(rate.ToString("#0.0000"));//汇率
  4539. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  4540. decimal rbmPrice = rate * dac.SubTotal;
  4541. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4542. foodandotherStartIndex++;
  4543. dac2totalPrice += rbmPrice;
  4544. }
  4545. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  4546. //删除空行
  4547. if (dac2.Count < foodandotherRows)
  4548. {
  4549. //int nullRow = accommodationRows - dac2.Count;
  4550. //while (table2.Rows.Count > dac2.Count)
  4551. //{
  4552. // table2.Rows.RemoveAt(dac2.Count);
  4553. //}
  4554. }
  4555. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4556. string otherFeeStr = "";
  4557. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  4558. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  4559. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  4560. if (otherFeeStr.Length > 0)
  4561. {
  4562. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  4563. otherFeeStr = $"({otherFeeStr})";
  4564. dic.Add("OtherFeeStr", otherFeeStr);
  4565. }
  4566. foreach (var key in dic.Keys)
  4567. {
  4568. builder.MoveToBookmark(key);
  4569. builder.Write(dic[key]);
  4570. }
  4571. //模板文件名
  4572. string strFileName = $"省级单位出(境)经费报销单.docx";
  4573. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4574. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4575. return Ok(JsonView(true, "成功", new { Url = url }));
  4576. }
  4577. }
  4578. else if (dto.ExportType == 3)
  4579. {
  4580. if (dto.SubTypeId == 1) //团组成员名单
  4581. {
  4582. if (DeleClientList.Count < 1)
  4583. {
  4584. return Ok(JsonView(false, "团组成员暂未录入!!!"));
  4585. }
  4586. //获取模板
  4587. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/dwon_团组人员列表模板.doc");
  4588. //载入模板
  4589. Document doc = new Document(tempPath);
  4590. DocumentBuilder builder = new DocumentBuilder(doc);
  4591. //获取word里所有表格
  4592. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4593. //获取所填表格的序数
  4594. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  4595. var rowStart = tableOne.Rows[0]; //获取第1行
  4596. //循环赋值
  4597. for (int i = 0; i < DeleClientList.Count; i++)
  4598. {
  4599. builder.MoveToCell(0, i + 1, 0, 0);
  4600. builder.Write(DeleClientList[i].Name);
  4601. builder.MoveToCell(0, i + 1, 1, 0);
  4602. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  4603. builder.Write(sex);
  4604. builder.MoveToCell(0, i + 1, 2, 0);
  4605. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));
  4606. builder.MoveToCell(0, i + 1, 3, 0);
  4607. builder.Write(DeleClientList[i].Company);
  4608. builder.MoveToCell(0, i + 1, 4, 0);
  4609. builder.Write(DeleClientList[i].Job);
  4610. }
  4611. //删除多余行
  4612. while (tableOne.Rows.Count > DeleClientList.Count + 1)
  4613. {
  4614. tableOne.Rows.RemoveAt(DeleClientList.Count + 1);
  4615. }
  4616. string strFileName = $"{_DelegationInfo.TeamName}组团人员名单({DateTime.Now.ToString("yyyyMMddHHmmss")}).doc";
  4617. //C:/Server/File/OA2023/Office/Word/EnterExitCost/File/
  4618. //C:\Server\File\OA2023\Office\Word\EnterExitCost\File\
  4619. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4620. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4621. return Ok(JsonView(true, "成功", new { Url = url }));
  4622. }
  4623. }
  4624. return Ok(JsonView(false, "操作失败!"));
  4625. }
  4626. catch (Exception ex)
  4627. {
  4628. return Ok(JsonView(false, ex.Message));
  4629. }
  4630. }
  4631. /// <summary>
  4632. /// 获取三公费用标准city
  4633. /// </summary>
  4634. /// <param name="placeData"></param>
  4635. /// <param name="nationalTravelFeeId"></param>
  4636. /// <returns></returns>
  4637. private string GetEnterExitCostExportCity(List<Grp_NationalTravelFee> placeData, int nationalTravelFeeId)
  4638. {
  4639. string _city = string.Empty;
  4640. if (placeData.Count < 1) return _city;
  4641. var data = placeData.Find(it => it.Id == nationalTravelFeeId);
  4642. if (data == null) return _city;
  4643. string country = data.Country;
  4644. string city = data.City;
  4645. if (city.Contains("其他城市") || city.Contains("所有城市")) _city = $"{country}-{city}";
  4646. else _city = city;
  4647. return _city;
  4648. }
  4649. /// <summary>
  4650. /// 团组模块 - 出入境费用 - 明细表导出
  4651. /// </summary>
  4652. /// <returns></returns>
  4653. [HttpPost]
  4654. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4655. public async Task<IActionResult> PostEnterExitCostExportDetailsList(EnterExitCostOperateDto dto)
  4656. {
  4657. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  4658. if (data.Code != 0)
  4659. {
  4660. return Ok(JsonView(false, data.Msg));
  4661. }
  4662. return Ok(JsonView(true, data.Msg, data.Data));
  4663. }
  4664. /// <summary>
  4665. /// 团组模块 - 出入境费用 - 一键清空
  4666. /// </summary>
  4667. /// <returns></returns>
  4668. [HttpPost]
  4669. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4670. public async Task<IActionResult> PostEnterExitCostOneClickClear(EnterExitCostOneClickClearDto dto)
  4671. {
  4672. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数;"));
  4673. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数;"));
  4674. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数;"));
  4675. var _view = await _enterExitCostRep._OneClickClear(dto.Id, dto.DiId, dto.UserId);
  4676. if (_view.Code == 0)
  4677. {
  4678. return Ok(JsonView(true, "操作成功"));
  4679. }
  4680. return Ok(JsonView(false, "操作失败"));
  4681. }
  4682. /// <summary>
  4683. /// 团组模块 - 出入境费用 - 子项删除
  4684. /// </summary>
  4685. /// <returns></returns>
  4686. [HttpPost]
  4687. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4688. public async Task<IActionResult> PostEnterExitCostSubItemDel(EnterExitCostSubItemDelDto dto)
  4689. {
  4690. try
  4691. {
  4692. var data = await _enterExitCostRep.PostEnterExitCostSubItemDel(dto);
  4693. if (data.Code != 0)
  4694. {
  4695. return Ok(JsonView(false, data.Msg));
  4696. }
  4697. return Ok(JsonView(true, "操作成功!", data.Data));
  4698. }
  4699. catch (Exception ex)
  4700. {
  4701. return Ok(JsonView(false, ex.Message));
  4702. }
  4703. }
  4704. /// <summary>
  4705. /// 团组模块 - 出入境国家费用标准 List
  4706. /// </summary>
  4707. /// <returns></returns>
  4708. [HttpPost]
  4709. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4710. public async Task<IActionResult> GetNationalTravelFeeData(PortDtoBase dto)
  4711. {
  4712. try
  4713. {
  4714. Stopwatch sw = new Stopwatch();
  4715. sw.Start();
  4716. string nationalTravelFeeSql = string.Format(@"Select ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.* From Grp_NationalTravelFee gntf
  4717. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  4718. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  4719. Where gntf.Isdel = 0");
  4720. var nationalTravelFeeData = _sqlSugar.SqlQueryable<NationalTravelFeeInfoView>(nationalTravelFeeSql).ToList();
  4721. //var nationalTravel = nationalTravelFeeData.GroupBy(it => it.Country).Select(it1 => it1.FirstOrDefault());
  4722. //List<dynamic> nationalTravelFeeData1 = new List<dynamic>();
  4723. //foreach (var item in nationalTravel)
  4724. //{
  4725. // var cityData = nationalTravelFeeData.Where(it => it.Country == item.Country).ToList();
  4726. // var otherData = cityData.Where(it => it.City.Contains("其他城市")).FirstOrDefault();
  4727. // if (otherData != null)
  4728. // {
  4729. // cityData.Remove(otherData);
  4730. // cityData.Add(otherData);
  4731. // }
  4732. // nationalTravelFeeData1.Add(new
  4733. // {
  4734. // Country = item.Country,
  4735. // CityData = cityData
  4736. // });
  4737. //}
  4738. sw.Stop();
  4739. return Ok(JsonView(true, "查询成功!耗时:" + sw.ElapsedMilliseconds + "ms", nationalTravelFeeData));
  4740. }
  4741. catch (Exception ex)
  4742. {
  4743. return Ok(JsonView(false, ex.Message));
  4744. throw;
  4745. }
  4746. }
  4747. /// <summary>
  4748. /// 团组模块 - 出入境国家费用标准 Page List Data Source
  4749. /// </summary>
  4750. /// <returns></returns>
  4751. [HttpPost]
  4752. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4753. public async Task<IActionResult> GetNationalTravelFeePageDataSource()
  4754. {
  4755. string sql = string.Format(@"Select * From Grp_NationalTravelFee Where Isdel = 0 ");
  4756. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<Grp_NationalTravelFee>(sql).ToListAsync();
  4757. List<string> countryData = new List<string>();
  4758. countryData.AddRange(nationalTravelFeeData.Select(it => it.Country).ToList());
  4759. countryData = countryData.Distinct().ToList();
  4760. List<dynamic> dataSource = new List<dynamic>();
  4761. foreach (var item in countryData)
  4762. {
  4763. List<string> cityData1 = new List<string>();
  4764. cityData1 = nationalTravelFeeData.Where(it => it.Country == item).Select(it => it.City).ToList();
  4765. var countryData2 = new
  4766. {
  4767. CountryName = item,
  4768. CityData = cityData1
  4769. };
  4770. dataSource.Add(countryData2);
  4771. }
  4772. return Ok(JsonView(true, "查询成功!", dataSource));
  4773. }
  4774. /// <summary>
  4775. /// 团组模块 - 出入境国家费用标准 Page List
  4776. /// </summary>
  4777. /// <returns></returns>
  4778. [HttpPost]
  4779. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4780. public async Task<IActionResult> PostNationalTravelFeePage(NationalTravelFeePageDto dto)
  4781. {
  4782. int portId = dto.PortType;
  4783. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  4784. if (dto.PageIndex == 0) return Ok(JsonView(false, "当前页码数不能为0!"));
  4785. if (dto.PageSize == 0) return Ok(JsonView(false, "每页条数不能0!"));
  4786. string whereSql = string.Empty;
  4787. if (!string.IsNullOrEmpty(dto.Country))
  4788. {
  4789. whereSql += string.Format(@" And gntf.Country ='{0}'", dto.Country);
  4790. }
  4791. if (!string.IsNullOrEmpty(dto.City))
  4792. {
  4793. whereSql += string.Format(@" And gntf.City='{0}'", dto.City);
  4794. }
  4795. string pageSql = string.Format(@"Select * From (
  4796. Select row_number() over(order by gntf.LastUpdateTime Desc) as RowNumber,
  4797. ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.*
  4798. From Grp_NationalTravelFee gntf
  4799. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  4800. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  4801. Where gntf.Isdel = 0 {0} ) temp ", whereSql);
  4802. RefAsync<int> total = 0;
  4803. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeePageInfoView>(pageSql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  4804. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData, (int)total));
  4805. }
  4806. /// <summary>
  4807. /// 团组模块 - 出入境国家费用标准 根据城市查询
  4808. /// </summary>
  4809. /// <returns></returns>
  4810. [HttpPost]
  4811. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4812. public async Task<IActionResult> PostNationalTravelFeeInfoByCountryAndCity(NationalTravelFeeByCountryAndCityDto dto)
  4813. {
  4814. if (dto == null) return Ok(JsonView(false, "请传入参数!"));
  4815. int portId = dto.PortType;
  4816. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  4817. string whereSql = string.Empty;
  4818. if (!string.IsNullOrEmpty(dto.Country))
  4819. {
  4820. whereSql = string.Format(@"And Country = '{0}' ", dto.Country);
  4821. }
  4822. if (!string.IsNullOrEmpty(dto.City))
  4823. {
  4824. whereSql = string.Format(@"And City = '{0}' ", dto.City);
  4825. }
  4826. string sql = string.Format(@"Select gntf.Country,gntf.City,gntf.Currency,ssd.Name as CurrencyCode,
  4827. ssd.Remark as CurrencyName,gntf.RoomCost,gntf.FoodCost,gntf.PublicCost,
  4828. gntf.LastUpdateUserId,su.CnName as LastUpdateUserName,gntf.LastUpdateTime
  4829. From Grp_NationalTravelFee gntf
  4830. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  4831. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  4832. Where gntf.Isdel = 0 {0} ", whereSql);
  4833. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeeInfoByCountryAndCityView>(sql).FirstAsync();
  4834. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData));
  4835. }
  4836. /// <summary>
  4837. /// 团组模块 - 出入境国家费用标准 - Add Or Update
  4838. /// </summary>
  4839. /// <returns></returns>
  4840. [HttpPost]
  4841. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4842. public async Task<IActionResult> PostNationalTravelFeeOperate(NationalTravelFeeOperateDto dto)
  4843. {
  4844. try
  4845. {
  4846. var data = await _enterExitCostRep.PostNationalTravelFeeOperate(dto);
  4847. if (data.Code != 0)
  4848. {
  4849. return Ok(JsonView(false, data.Msg));
  4850. }
  4851. return Ok(JsonView(true, "操作成功!", data.Data));
  4852. }
  4853. catch (Exception ex)
  4854. {
  4855. return Ok(JsonView(false, ex.Message));
  4856. }
  4857. }
  4858. /// <summary>
  4859. /// 团组模块 - 出入境国家费用标准 - Del
  4860. /// </summary>
  4861. /// <returns></returns>
  4862. [HttpPost]
  4863. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4864. public async Task<IActionResult> PostNationalTravelFeeDel(NationalTravelFeeDelDto dto)
  4865. {
  4866. try
  4867. {
  4868. Grp_NationalTravelFee _nationalTravelFee = new Grp_NationalTravelFee()
  4869. {
  4870. Id = dto.Id,
  4871. DeleteUserId = dto.DeleteUserId,
  4872. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  4873. IsDel = 1
  4874. };
  4875. var delStatus = await _enterExitCostRep._sqlSugar.Updateable<Grp_NationalTravelFee>(_nationalTravelFee)
  4876. .UpdateColumns(it => new { it.DeleteTime, it.DeleteUserId, it.IsDel })
  4877. .WhereColumns(it => new { it.Id })
  4878. .ExecuteCommandAsync();
  4879. if (delStatus <= 0)
  4880. {
  4881. return Ok(JsonView(false, "删除失败!"));
  4882. }
  4883. return Ok(JsonView(true, "操作成功!"));
  4884. }
  4885. catch (Exception ex)
  4886. {
  4887. return Ok(JsonView(false, ex.Message));
  4888. }
  4889. }
  4890. #endregion
  4891. #region 签证费用录入
  4892. /// <summary>
  4893. /// 根据diid查询签证费用列表
  4894. /// </summary>
  4895. /// <param name="dto"></param>
  4896. /// <returns></returns>
  4897. [HttpPost]
  4898. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4899. public async Task<IActionResult> QueryVisaByDiId(VisaPriceDto dto)
  4900. {
  4901. try
  4902. {
  4903. Result groupData = await _visaPriceRep.PostVisaByDiId(dto);
  4904. if (groupData.Code != 0)
  4905. {
  4906. return Ok(JsonView(false, groupData.Msg));
  4907. }
  4908. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  4909. }
  4910. catch (Exception ex)
  4911. {
  4912. return Ok(JsonView(false, ex.Message));
  4913. }
  4914. }
  4915. /// <summary>
  4916. /// 根据签证费用Id查询单条数据及c表数据
  4917. /// </summary>
  4918. /// <param name="dto"></param>
  4919. /// <returns></returns>
  4920. [HttpPost]
  4921. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4922. public async Task<IActionResult> QueryVisaById(PostVisaByIdDto dto)
  4923. {
  4924. try
  4925. {
  4926. Result groupData = await _visaPriceRep.PostVisaById(dto);
  4927. if (groupData.Code != 0)
  4928. {
  4929. return Ok(JsonView(false, groupData.Msg));
  4930. }
  4931. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  4932. }
  4933. catch (Exception ex)
  4934. {
  4935. return Ok(JsonView(false, ex.Message));
  4936. }
  4937. }
  4938. /// <summary>
  4939. /// 签证费用删除
  4940. /// </summary>
  4941. /// <param name="dto"></param>
  4942. /// <returns></returns>
  4943. [HttpPost]
  4944. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4945. public async Task<IActionResult> DelVisaPrice(DelBaseDto dto)
  4946. {
  4947. _sqlSugar.BeginTran();
  4948. var res = await _visaPriceRep.SoftDeleteByIdAsync<Grp_VisaInfo>(dto.Id.ToString(), dto.DeleteUserId);
  4949. if (!res)
  4950. {
  4951. _sqlSugar.RollbackTran();
  4952. return Ok(JsonView(false, "删除失败"));
  4953. }
  4954. var resSub = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  4955. .Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 80)
  4956. .SetColumns(a => new Grp_CreditCardPayment()
  4957. {
  4958. IsDel = 1,
  4959. DeleteUserId = dto.DeleteUserId,
  4960. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  4961. }).ExecuteCommand();
  4962. if (resSub < 1)
  4963. {
  4964. _sqlSugar.RollbackTran();
  4965. return Ok(JsonView(false, "删除失败"));
  4966. }
  4967. _sqlSugar.CommitTran();
  4968. return Ok(JsonView(true, "删除成功!"));
  4969. }
  4970. /// <summary>
  4971. /// 签证费用录入下拉框初始化
  4972. /// </summary>
  4973. /// <returns></returns>
  4974. [HttpPost]
  4975. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4976. public async Task<IActionResult> VisaPriceAddSelect()
  4977. {
  4978. try
  4979. {
  4980. //支付方式
  4981. List<Sys_SetData> Payment = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 14 && a.IsDel == 0).ToList();
  4982. List<SetDataInfoView> _Payment = _mapper.Map<List<SetDataInfoView>>(Payment);
  4983. //币种
  4984. List<Sys_SetData> CurrencyList = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 66 && a.IsDel == 0).ToList();
  4985. List<SetDataInfoView> _CurrencyList = _mapper.Map<List<SetDataInfoView>>(CurrencyList);
  4986. //乘客类型
  4987. List<Sys_SetData> PassengerType = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 69 && a.IsDel == 0).ToList();
  4988. List<SetDataInfoView> _PassengerType = _mapper.Map<List<SetDataInfoView>>(PassengerType);
  4989. //卡类型
  4990. List<Sys_SetData> BankCard = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 15 && a.IsDel == 0).ToList();
  4991. List<SetDataInfoView> _BankCard = _mapper.Map<List<SetDataInfoView>>(BankCard);
  4992. var data = new
  4993. {
  4994. Payment = _Payment,
  4995. CurrencyList = _CurrencyList,
  4996. PassengerType = _PassengerType,
  4997. BankCard = _BankCard
  4998. };
  4999. return Ok(JsonView(true, "查询成功!", data));
  5000. }
  5001. catch (Exception ex)
  5002. {
  5003. return Ok(JsonView(false, "程序错误!"));
  5004. throw;
  5005. }
  5006. }
  5007. /// <summary>
  5008. /// 签证费用录入操作(Status:1.新增,2.修改)
  5009. /// </summary>
  5010. /// <param name="dto"></param>
  5011. /// <returns></returns>
  5012. [HttpPost]
  5013. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5014. public async Task<IActionResult> OpVisaPrice(OpVisaPriceDto dto)
  5015. {
  5016. try
  5017. {
  5018. Result groupData = await _visaPriceRep.OpVisaPrice(dto);
  5019. if (groupData.Code != 0)
  5020. {
  5021. return Ok(JsonView(false, groupData.Msg));
  5022. }
  5023. #region 应用推送
  5024. try
  5025. {
  5026. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  5027. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  5028. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  5029. }
  5030. catch (Exception ex)
  5031. {
  5032. }
  5033. #endregion
  5034. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5035. }
  5036. catch (Exception ex)
  5037. {
  5038. return Ok(JsonView(false, ex.Message));
  5039. }
  5040. }
  5041. #endregion
  5042. #region op费用录入
  5043. /// <summary>
  5044. /// 根据diid查询op费用列表
  5045. /// </summary>
  5046. /// <param name="dto"></param>
  5047. /// <returns></returns>
  5048. [HttpPost]
  5049. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5050. public async Task<IActionResult> QueryCarTouristGuideGroundByDiId(CarTouristGuideGroundDto dto)
  5051. {
  5052. try
  5053. {
  5054. Result groupData = await _carTouristGuideGroundRep.QueryCarTouristGuideGroundByDiId(dto);
  5055. if (groupData.Code != 0)
  5056. {
  5057. return Ok(JsonView(false, groupData.Msg));
  5058. }
  5059. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5060. }
  5061. catch (Exception ex)
  5062. {
  5063. return Ok(JsonView(false, ex.Message));
  5064. }
  5065. }
  5066. /// <summary>
  5067. /// 根据op费用Id查询单条数据及c表数据
  5068. /// </summary>
  5069. /// <param name="dto"></param>
  5070. /// <returns></returns>
  5071. [HttpPost]
  5072. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5073. public async Task<IActionResult> QueryCarTouristGuideGroundById(CarTouristGuideGroundIdDto dto)
  5074. {
  5075. try
  5076. {
  5077. Grp_CarTouristGuideGroundReservations _groupData = await _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().FirstAsync(a => a.Id == dto.Id && a.IsDel == 0);
  5078. Grp_CreditCardPayment _creditCardPayment = await _sqlSugar.Queryable<Grp_CreditCardPayment>().FirstAsync(a => a.CId == dto.Id && a.CTable == 79 && a.IsDel == 0);
  5079. var data = new
  5080. {
  5081. CarTouristGuideGround = _groupData,
  5082. CreditCardPayment = _creditCardPayment
  5083. };
  5084. return Ok(JsonView(true, "查询成功!", data));
  5085. }
  5086. catch (Exception ex)
  5087. {
  5088. return Ok(JsonView(false, "程序错误!"));
  5089. }
  5090. }
  5091. /// <summary>
  5092. /// op费用删除
  5093. /// </summary>
  5094. /// <param name="dto"></param>
  5095. /// <returns></returns>
  5096. [HttpPost]
  5097. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5098. public async Task<IActionResult> DelCarTouristGuideGround(DelBaseDto dto)
  5099. {
  5100. try
  5101. {
  5102. var res = await _carTouristGuideGroundRep.SoftDeleteByIdAsync<Grp_CarTouristGuideGroundReservations>(dto.Id.ToString(), dto.DeleteUserId);
  5103. if (!res)
  5104. {
  5105. return Ok(JsonView(false, "删除失败"));
  5106. }
  5107. var result = await _sqlSugar.Updateable<Grp_CarTouristGuideGroundReservationsContent>().Where(a => a.CTGGRId == dto.Id && a.IsDel == 0).SetColumns(a => new Grp_CarTouristGuideGroundReservationsContent()
  5108. {
  5109. IsDel = 1,
  5110. DeleteUserId = dto.DeleteUserId,
  5111. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5112. }).ExecuteCommandAsync();
  5113. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 79).SetColumns(a => new Grp_CreditCardPayment()
  5114. {
  5115. IsDel = 1,
  5116. DeleteUserId = dto.DeleteUserId,
  5117. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5118. }).ExecuteCommandAsync();
  5119. return Ok(JsonView(true, "删除成功!"));
  5120. }
  5121. catch (Exception ex)
  5122. {
  5123. return Ok(JsonView(false, "程序错误!"));
  5124. throw;
  5125. }
  5126. }
  5127. /// <summary>
  5128. /// op费用录入操作(Status:1.新增,2.修改)
  5129. /// </summary>
  5130. /// <param name="dto"></param>
  5131. /// <returns></returns>
  5132. [HttpPost]
  5133. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5134. public async Task<IActionResult> OpCarTouristGuideGround(OpCarTouristGuideGroundDto dto)
  5135. {
  5136. try
  5137. {
  5138. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGround(dto);
  5139. if (groupData.Code != 0)
  5140. {
  5141. return Ok(JsonView(false, groupData.Msg));
  5142. }
  5143. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5144. }
  5145. catch (Exception ex)
  5146. {
  5147. return Ok(JsonView(false, ex.Message));
  5148. }
  5149. }
  5150. /// <summary>
  5151. /// 填写费用详细页面初始化绑定
  5152. /// </summary>
  5153. /// <param name="dto"></param>
  5154. /// <returns></returns>
  5155. [HttpPost]
  5156. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5157. public IActionResult CarTouristGuideGroundContentInitialize(CarTouristGuideGroundContentDto dto)
  5158. {
  5159. try
  5160. {
  5161. Result groupData = _carTouristGuideGroundRep.CarTouristGuideGroundContent(dto);
  5162. if (groupData.Code != 0)
  5163. {
  5164. return Ok(JsonView(false, groupData.Msg));
  5165. }
  5166. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5167. }
  5168. catch (Exception ex)
  5169. {
  5170. return Ok(JsonView(false, ex.Message));
  5171. }
  5172. }
  5173. /// <summary>
  5174. /// 根据op费用Id查询详细数据
  5175. /// </summary>
  5176. /// <param name="dto"></param>
  5177. /// <returns></returns>
  5178. [HttpPost]
  5179. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5180. public IActionResult OpCarTouristGuideGroundContentById(CarTouristGuideGroundIdDto dto)
  5181. {
  5182. try
  5183. {
  5184. Result groupData = _carTouristGuideGroundRep.OpCarTouristGuideGroundContentById(dto);
  5185. if (groupData.Code != 0)
  5186. {
  5187. return Ok(JsonView(false, groupData.Msg));
  5188. }
  5189. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5190. }
  5191. catch (Exception ex)
  5192. {
  5193. return Ok(JsonView(false, ex.Message));
  5194. }
  5195. }
  5196. /// <summary>
  5197. /// OP费用录入填写详情
  5198. /// </summary>
  5199. /// <param name="dto"></param>
  5200. /// <returns></returns>
  5201. [HttpPost]
  5202. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5203. public async Task<IActionResult> OpCarTouristGuideGroundContent(OpCarTouristGuideGroundContentDto dto)
  5204. {
  5205. try
  5206. {
  5207. #region 参数校验
  5208. if (dto.Currency <= 0) return Ok(JsonView(false, "币种错误!"));
  5209. var di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.DiId && x.IsDel == 0);
  5210. if (di == null) return Ok(JsonView(false, "团组错误!"));
  5211. #endregion
  5212. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGroundContent(dto);
  5213. if (groupData.Code != 0)
  5214. {
  5215. return Ok(JsonView(false, groupData.Msg));
  5216. }
  5217. //自动审核
  5218. await _feeAuditRep.FeeAutomaticAudit(2,dto.DiId,dto.CTGGRId);
  5219. #region 应用推送
  5220. try
  5221. {
  5222. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  5223. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  5224. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  5225. }
  5226. catch (Exception ex)
  5227. {
  5228. }
  5229. #endregion
  5230. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5231. }
  5232. catch (Exception ex)
  5233. {
  5234. return Ok(JsonView(false, ex.Message));
  5235. }
  5236. }
  5237. /// <summary>
  5238. /// 获取三公详细所有城市
  5239. /// </summary>
  5240. /// <returns></returns>
  5241. [HttpGet]
  5242. public IActionResult OpCarCityResult()
  5243. {
  5244. var jw = JsonView(false);
  5245. var data = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(x => x.IsDel == 0).Select(x => new
  5246. {
  5247. x.Id,
  5248. x.Country,
  5249. x.City,
  5250. }).ToList();
  5251. if (data.Count > 0)
  5252. {
  5253. jw = JsonView(true, "获取成功!", data);
  5254. }
  5255. else
  5256. {
  5257. jw.Msg = "城市数据为空!";
  5258. jw.Data = new string[0];
  5259. }
  5260. return Ok(jw);
  5261. }
  5262. /// <summary>
  5263. /// 导出地接费用明细
  5264. /// </summary>
  5265. /// <param name="dto"></param>
  5266. /// <returns></returns>
  5267. [HttpPost]
  5268. public IActionResult ExportLocalGuidePriceDetail(ExportLocalGuidePriceDetailDto dto)
  5269. {
  5270. var jw = JsonView(false);
  5271. if (dto.Diid < 1)
  5272. {
  5273. jw.Msg = "请输入正确的diid!";
  5274. return Ok(jw);
  5275. }
  5276. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  5277. if (group == null)
  5278. {
  5279. jw.Msg = "未找到团组信息!";
  5280. return Ok(jw);
  5281. }
  5282. var localGuideArr = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).ToList();
  5283. if (localGuideArr.Count == 0)
  5284. {
  5285. jw.Msg = "该团组暂无地接信息!";
  5286. return Ok(jw);
  5287. }
  5288. var localGroup = localGuideArr.GroupBy(x => x.Area).ToList();
  5289. var overspendSoure = new Dictionary<int, int>
  5290. {
  5291. { 91, 982 }, //车
  5292. { 92 , 1059} ,//导游
  5293. { 994 , 1073}, //翻译
  5294. { 988 , 1074 }, //早餐
  5295. { 93 , 1075 }, //午餐
  5296. { 989 , 1076 }, //晚餐
  5297. };
  5298. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  5299. foreach (var groupArr in localGroup)
  5300. {
  5301. var keyValue = groupArr.Key;
  5302. if (int.TryParse(keyValue, out int cityid))
  5303. {
  5304. var city = _sqlSugar.Queryable<Grp_NationalTravelFee>().First(x => x.Id == cityid && x.IsDel == 0);
  5305. keyValue = city == null ? keyValue : city.Country + "-" + city.City;
  5306. }
  5307. List<List<Grp_CarTouristGuideGroundReservationsContentExtend>> contentArr = new List<List<Grp_CarTouristGuideGroundReservationsContentExtend>>();
  5308. foreach (var item in groupArr)
  5309. {
  5310. var content = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservationsContent, Sys_SetData>((a, b) => a.SId == b.Id
  5311. ).Where((a, b) => a.CTGGRId == item.Id && a.Price != 0M && a.IsDel == 0 && b.IsDel == 0).Select((a, b) =>
  5312. new Grp_CarTouristGuideGroundReservationsContentExtend
  5313. {
  5314. Count = a.Count,
  5315. CreateTime = a.CreateTime,
  5316. CreateUserId = a.CreateUserId,
  5317. CTGGRId = a.CTGGRId,
  5318. Currency = a.Currency,
  5319. DatePrice = a.DatePrice,
  5320. DeleteTime = a.DeleteTime,
  5321. DeleteUserId = a.DeleteUserId,
  5322. DiId = a.DiId,
  5323. Id = a.Id,
  5324. IsDel = a.IsDel,
  5325. Price = a.Price,
  5326. PriceContent = a.PriceContent,
  5327. Remark = a.Remark,
  5328. SId = a.SId,
  5329. SidName = b.Name,
  5330. Units = a.Units,
  5331. }
  5332. ).ToList();
  5333. if (content.Count > 0)
  5334. {
  5335. contentArr.Add(content);
  5336. }
  5337. }
  5338. //open excel
  5339. //set excel
  5340. //save excel
  5341. try
  5342. {
  5343. string filePath = AppSettingsHelper.Get("ExcelBasePath") + "\\Template\\地接费用明细.xlsx";
  5344. IWorkbook workbook;
  5345. if (Path.GetExtension(filePath).ToLower() == ".xls")
  5346. {
  5347. workbook = new HSSFWorkbook(new FileStream(filePath, FileMode.Open, FileAccess.Read));
  5348. }
  5349. else
  5350. {
  5351. workbook = new XSSFWorkbook(new FileStream(filePath, FileMode.Open, FileAccess.Read));
  5352. }
  5353. ISheet sheet = workbook.GetSheetAt(0);
  5354. var rowStartIndex = 2;
  5355. var clounmCount = 10;
  5356. var initStyleRow = sheet.GetRow(2);
  5357. var arr = contentArr.SelectMany(x => x).OrderBy(x => x.SId).ToList();
  5358. //var overspendArrDetail =
  5359. var existsId = new List<CarCompare>();
  5360. var lastElem = arr.Last();
  5361. var thisSid = -1;
  5362. var curr = arr.Count > 0 ? arr[0].Currency : -1;
  5363. var currObj = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == curr && x.IsDel == 0) ?? new Sys_SetData
  5364. {
  5365. Name = "未知币种!",
  5366. Remark = "未知币种!",
  5367. };
  5368. sheet.GetRow(0).GetCell(1).SetCellValue($"{keyValue}费用明细(货币:{currObj.Remark})");
  5369. Action cloneRowFn = () =>
  5370. {
  5371. rowStartIndex++;
  5372. var cloneRow = sheet.CreateRow(rowStartIndex);
  5373. // 复制样式
  5374. for (int i = initStyleRow.FirstCellNum; i < initStyleRow.LastCellNum; i++)
  5375. {
  5376. ICell sourceCell = initStyleRow.GetCell(i);
  5377. ICell targetCell = cloneRow.GetCell(i) ?? cloneRow.CreateCell(i);
  5378. // 确保单元格存在样式
  5379. if (sourceCell.CellStyle != null)
  5380. {
  5381. targetCell.CellStyle = sourceCell.CellStyle;
  5382. }
  5383. }
  5384. };
  5385. var mergeRow = () =>
  5386. {
  5387. for (int i = 2; i < sheet.LastRowNum; i++)
  5388. {
  5389. var row = sheet.GetRow(i);
  5390. var cellFirst = row.GetCell(0);
  5391. var thisIndex = i + 1;
  5392. while (thisIndex < sheet.LastRowNum)
  5393. {
  5394. var nextRow = sheet.GetRow(thisIndex);
  5395. var nextCellFirst = nextRow.GetCell(0);
  5396. if (cellFirst != null && nextCellFirst != null && cellFirst.ToString().Trim() == nextCellFirst.ToString().Trim())
  5397. {
  5398. thisIndex++;
  5399. }
  5400. else
  5401. {
  5402. break;
  5403. }
  5404. }
  5405. thisIndex--;
  5406. if (thisIndex != i)
  5407. {
  5408. //合并row
  5409. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5410. i, // 起始行索引(0-based)
  5411. thisIndex, // 结束行索引(0-based)
  5412. 0, // 起始列索引(0-based)
  5413. 0 // 结束列索引(0-based)
  5414. );
  5415. sheet.AddMergedRegion(cellRangeAddress);
  5416. i = thisIndex;
  5417. }
  5418. }
  5419. };
  5420. var chaoshiNumber = 0;
  5421. var totalNumber = 0.00M;
  5422. string lastStr = "";
  5423. var queryCarArrByCityAndDiid = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations, Grp_CreditCardPayment>((x, b) => x.Id == b.CId && b.IsDel == 0 && b.CTable == 79)
  5424. .Where(x => x.DiId == dto.Diid && x.Area == groupArr.Key).Select((x, b) => new
  5425. {
  5426. b.IsAuditGM,
  5427. x.Id,
  5428. x.Area,
  5429. b.PayPercentage,
  5430. b.PayMoney,
  5431. }).ToList();
  5432. string yesPayment = "", noPayment = "";
  5433. foreach (var item in queryCarArrByCityAndDiid)
  5434. {
  5435. if (item.IsAuditGM == 1)
  5436. {
  5437. yesPayment += $"已支付团款({(int)item.PayPercentage}%):{item.PayMoney} {currObj.Remark}(如有需要,请在此处填写明细)\r\n";
  5438. }
  5439. else
  5440. {
  5441. noPayment += $"剩余团款:{item.PayMoney}{currObj.Remark}(如有需要,请在此处填写明细)\r\n";
  5442. }
  5443. }
  5444. lastStr = yesPayment + noPayment;
  5445. foreach (var item in arr)
  5446. {
  5447. if (existsId.FirstOrDefault(x => x.Sid == item.SId && DateTime.Compare(x.DataPrice, item.DatePrice.ObjToDate()) == 0) == null && !overspendSoure.Values.Contains(item.SId))
  5448. {
  5449. if (thisSid != item.SId)
  5450. {
  5451. if (thisSid == -1)
  5452. {
  5453. thisSid = item.SId;
  5454. }
  5455. else
  5456. {
  5457. //合并小计行
  5458. //创建合并区域的实例
  5459. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5460. rowStartIndex, // 起始行索引(0-based)
  5461. rowStartIndex, // 结束行索引(0-based)
  5462. 0, // 起始列索引(0-based)
  5463. 3 // 结束列索引(0-based)
  5464. );
  5465. sheet.AddMergedRegion(cellRangeAddress);
  5466. var CellStyle = workbook.CreateCellStyle();
  5467. CellStyle.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5468. CellStyle.FillForegroundColor = IndexedColors.Yellow.Index; // 选择填充颜色
  5469. CellStyle.FillPattern = FillPattern.SolidForeground; // 填充方式
  5470. for (int i = 0; i <= clounmCount; i++)
  5471. {
  5472. if (i > 6)
  5473. {
  5474. var CellStyle1 = workbook.CreateCellStyle();
  5475. CellStyle1.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5476. IFont Font = workbook.CreateFont(); // 创建字体
  5477. Font.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(i).CellStyle.GetFont(workbook));
  5478. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  5479. CellStyle1.SetFont(Font);
  5480. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle1;
  5481. }
  5482. else
  5483. {
  5484. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle;
  5485. }
  5486. }
  5487. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue("合计:");
  5488. sheet.GetRow(rowStartIndex).GetCell(4).SetCellValue(arr.Where(x => x.SId == thisSid).Sum(x => x.Count * x.Price).ToString("F2"));
  5489. //超时合计
  5490. sheet.GetRow(rowStartIndex).GetCell(7).SetCellValue("超时合计:");
  5491. //超时数
  5492. sheet.GetRow(rowStartIndex).GetCell(8).SetCellValue(chaoshiNumber == 0 ? "" : chaoshiNumber.ToString());
  5493. //超时合计费用
  5494. sheet.GetRow(rowStartIndex).GetCell(9).SetCellValue(totalNumber == 0 ? "" : totalNumber.ToString());
  5495. thisSid = item.SId;
  5496. cloneRowFn();
  5497. chaoshiNumber = 0;
  5498. totalNumber = 0;
  5499. }
  5500. }
  5501. IRow row = sheet.GetRow(rowStartIndex);
  5502. var whereForResult = arr.Where(x => x.SId == item.SId && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5503. var isOpenOverspendSoure = overspendSoure.Keys.Contains(item.SId);
  5504. List<Grp_CarTouristGuideGroundReservationsContentExtend> overspendWhereForResult = null;
  5505. if (isOpenOverspendSoure)
  5506. {
  5507. overspendWhereForResult = arr.Where(x => x.SId == overspendSoure[item.SId] && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5508. chaoshiNumber += overspendWhereForResult.Sum(x => x.Count);
  5509. totalNumber += overspendWhereForResult.Sum(x => x.Count * x.Price);
  5510. }
  5511. for (int i = 0; i <= clounmCount; i++)
  5512. {
  5513. var cell = row.GetCell(i);
  5514. var setCellValue = InIndexOutFunction(i, whereForResult, overspendWhereForResult);
  5515. if (cell == null)
  5516. {
  5517. cell = row.CreateCell(i);
  5518. }
  5519. var fontRed = workbook.CreateCellStyle(); // 创建单元格样式
  5520. fontRed.CloneStyleFrom(cell.CellStyle);
  5521. IFont Font = workbook.CreateFont(); // 创建字体
  5522. Font.CloneStyleFrom(cell.CellStyle.GetFont(workbook));
  5523. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  5524. fontRed.SetFont(Font);
  5525. byte[] rgb = new byte[3] { 255, 242, 204 };
  5526. var BackgroundColor255_242_204 = workbook.CreateCellStyle();
  5527. BackgroundColor255_242_204.CloneStyleFrom(cell.CellStyle);
  5528. byte[] rgb1 = new byte[3] { 189, 215, 238 };
  5529. if (workbook is XSSFWorkbook)
  5530. {
  5531. BackgroundColor255_242_204.FillForegroundColor = 0;
  5532. ((XSSFColor)BackgroundColor255_242_204.FillForegroundColorColor).SetRgb(rgb);
  5533. BackgroundColor255_242_204.FillPattern = FillPattern.SolidForeground;
  5534. }
  5535. else
  5536. {
  5537. BackgroundColor255_242_204.FillForegroundColor = (((HSSFWorkbook)workbook).GetCustomPalette().FindSimilarColor(rgb[0], rgb[1], rgb[2])).Indexed;
  5538. }
  5539. if (i == 1 || i > 6)
  5540. {
  5541. if (i > 6)
  5542. {
  5543. fontRed.FillForegroundColor = 0;
  5544. ((XSSFColor)fontRed.FillForegroundColorColor).SetRgb(rgb1);
  5545. fontRed.FillPattern = FillPattern.SolidForeground;
  5546. }
  5547. cell.CellStyle = fontRed;
  5548. }
  5549. if (i > 2 && i < 7)
  5550. {
  5551. cell.CellStyle = BackgroundColor255_242_204;
  5552. }
  5553. cell.SetCellValue(setCellValue); //写入单元格
  5554. }
  5555. if (overspendSoure.ContainsKey(thisSid)) {
  5556. var overspendId = overspendSoure[thisSid];
  5557. whereForResult = arr.Where(x => x.SId == item.SId && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5558. }
  5559. cloneRowFn();
  5560. existsId.Add(new CarCompare
  5561. {
  5562. DataPrice = item.DatePrice.ObjToDate(),
  5563. Sid = item.SId
  5564. });
  5565. }
  5566. if (item.Equals(lastElem))
  5567. {
  5568. //合并小计行
  5569. //创建合并区域的实例
  5570. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5571. rowStartIndex, // 起始行索引(0-based)
  5572. rowStartIndex, // 结束行索引(0-based)
  5573. 0, // 起始列索引(0-based)
  5574. 3 // 结束列索引(0-based)
  5575. );
  5576. sheet.AddMergedRegion(cellRangeAddress);
  5577. var CellStyle = workbook.CreateCellStyle();
  5578. CellStyle.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5579. CellStyle.FillForegroundColor = IndexedColors.Yellow.Index; // 选择填充颜色
  5580. CellStyle.FillPattern = FillPattern.SolidForeground; // 填充方式
  5581. for (int i = 0; i <= clounmCount; i++)
  5582. {
  5583. if (i > 6)
  5584. {
  5585. var CellStyle1 = workbook.CreateCellStyle();
  5586. CellStyle1.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5587. IFont Font = workbook.CreateFont(); // 创建字体
  5588. Font.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(i).CellStyle.GetFont(workbook));
  5589. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  5590. CellStyle1.SetFont(Font);
  5591. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle1;
  5592. }
  5593. else
  5594. {
  5595. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle;
  5596. }
  5597. }
  5598. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue("合计:");
  5599. sheet.GetRow(rowStartIndex).GetCell(4).SetCellValue(arr.Where(x => x.SId == thisSid).Sum(x => x.Count * x.Price).ToString("F2"));
  5600. //超时合计
  5601. sheet.GetRow(rowStartIndex).GetCell(7).SetCellValue("超时合计:");
  5602. //超时数
  5603. sheet.GetRow(rowStartIndex).GetCell(8).SetCellValue(chaoshiNumber == 0 ? "" : chaoshiNumber.ToString());
  5604. //超时合计费用
  5605. sheet.GetRow(rowStartIndex).GetCell(9).SetCellValue(totalNumber == 0 ? "" : totalNumber.ToString());
  5606. cloneRowFn();
  5607. // 创建合并区域的实例
  5608. cellRangeAddress = new CellRangeAddress(
  5609. rowStartIndex, // 起始行索引(0-based)
  5610. rowStartIndex, // 结束行索引(0-based)
  5611. 0, // 起始列索引(0-based)
  5612. initStyleRow.LastCellNum - 1 // 结束列索引(0-based)
  5613. );
  5614. // 添加合并区域
  5615. sheet.AddMergedRegion(cellRangeAddress);
  5616. sheet.GetRow(rowStartIndex).Height = 30 * 30;
  5617. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue(lastStr);
  5618. }
  5619. }
  5620. mergeRow();
  5621. // 保存修改后的Excel文件到新文件
  5622. //string newFilePath = Path.Combine(Path.GetDirectoryName(filePath), keyValue +"_" + Path.GetFileName(filePath));
  5623. // new FileStream(newFilePath, FileMode.CreateNew)
  5624. using (var stream = new MemoryStream())
  5625. {
  5626. workbook.Write(stream, true);
  5627. stream.Flush();
  5628. stream.Seek(0, SeekOrigin.Begin);
  5629. MemoryStream memoryStream = new MemoryStream();
  5630. stream.CopyTo(memoryStream);
  5631. memoryStream.Seek(0, SeekOrigin.Begin);
  5632. Zips.Add(keyValue + "_" + "费用明细表.xlsx", memoryStream);
  5633. }
  5634. workbook.Close();
  5635. workbook.Dispose();
  5636. }
  5637. catch (Exception ex)
  5638. {
  5639. jw.Msg = "出现异常!" + ex.Message;
  5640. return Ok(jw);
  5641. }
  5642. }
  5643. if (Zips.Count > 0)
  5644. {
  5645. IOOperatorHelper io = new IOOperatorHelper();
  5646. var byts = io.ConvertZipStream(Zips);
  5647. io.ByteToFile(byts, AppSettingsHelper.Get("ExcelBasePath") + $"\\ExportLocalGuidePriceDetail\\{group.TeamName}_地接费用明细.zip");
  5648. //http://132.232.92.186:24/Office/Word/EnterExitCost/File/
  5649. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("OfficeBaseUrl") + $"\\Office\\Excel\\ExportLocalGuidePriceDetail\\{group.TeamName}_地接费用明细.zip" });
  5650. }
  5651. else
  5652. {
  5653. jw.Msg = "暂无生成文件!";
  5654. }
  5655. return Ok(jw);
  5656. }
  5657. private string InIndexOutFunction(int i, List<Grp_CarTouristGuideGroundReservationsContentExtend> arr, List<Grp_CarTouristGuideGroundReservationsContentExtend> arrOverspendSoure)
  5658. {
  5659. string outStr = string.Empty;
  5660. switch (i)
  5661. {
  5662. case 0:
  5663. outStr = arr[0].SidName;
  5664. break;
  5665. case 1:
  5666. outStr = arr[0].DataPriceStr;
  5667. break;
  5668. case 2:
  5669. outStr = string.Join("-", arr.Select(x => x.PriceContent));
  5670. break;
  5671. case 4:
  5672. outStr = arr.Sum(x => x.Subtotal).ToString("F2");
  5673. break;
  5674. case 7:
  5675. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  5676. {
  5677. var curr = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == arrOverspendSoure[0].Currency && x.IsDel == 0);
  5678. var unit = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == arrOverspendSoure[0].Units && x.IsDel == 0);
  5679. outStr = arrOverspendSoure.Sum(x => x.Price).ToString("F2") + curr?.Remark + "/" + unit?.Name;
  5680. }
  5681. break;
  5682. case 8:
  5683. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  5684. {
  5685. outStr = arrOverspendSoure.Sum(x => x.Count).ToString();
  5686. }
  5687. break;
  5688. case 9:
  5689. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  5690. {
  5691. outStr = arrOverspendSoure.Sum(x => x.Count * x.Price).ToString();
  5692. }
  5693. break;
  5694. case 10:
  5695. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  5696. {
  5697. outStr = string.Join("-", arrOverspendSoure.Select(x => x.PriceContent));
  5698. }
  5699. break;
  5700. }
  5701. return outStr;
  5702. }
  5703. #region OP行程单
  5704. /// <summary>
  5705. /// OP行程单初始化
  5706. /// </summary>
  5707. /// <param name="dto"></param>
  5708. /// <returns></returns>
  5709. [HttpPost]
  5710. public IActionResult InitOpTravel(InitOpTravelDto dto)
  5711. {
  5712. var jw = JsonView(false);
  5713. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  5714. var group = groupList.First();
  5715. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  5716. if (group == null)
  5717. {
  5718. jw.Msg = "暂无团组!";
  5719. return Ok(jw);
  5720. }
  5721. group = groupList.Find(x => x.Id == diid);
  5722. if (group == null)
  5723. {
  5724. jw.Msg = "请输入正确的团组ID!";
  5725. return Ok(jw);
  5726. }
  5727. string city = string.Empty;
  5728. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(x => x.IsDel == 0 && x.DiId == diid).ToList();
  5729. if (blackCode.Count > 0)
  5730. {
  5731. var black = blackCode.First();
  5732. black.BlackCode = black.BlackCode == null ? "" : black.BlackCode;
  5733. var blackSp = Regex.Split(black.BlackCode, "\\d+\\.", RegexOptions.IgnoreCase).Where(x => !string.IsNullOrWhiteSpace(x)).ToArray();
  5734. if (blackSp.Length > 0)
  5735. {
  5736. try
  5737. {
  5738. var cityArrCode = new List<string>(20);
  5739. foreach (var item in blackSp)
  5740. {
  5741. var itemSp = item.Split(' ').Where(x => !string.IsNullOrWhiteSpace(x)).ToList();
  5742. var IndexSelect = itemSp[2];
  5743. var cityArrCodeLength = cityArrCode.Count - 1;
  5744. var startCity = IndexSelect.Substring(0, 3);
  5745. if (cityArrCodeLength > 0)
  5746. {
  5747. var arrEndCity = cityArrCode[cityArrCodeLength];
  5748. if (arrEndCity != startCity)
  5749. {
  5750. cityArrCode.Add(startCity.ToUpper());
  5751. }
  5752. }
  5753. else
  5754. {
  5755. cityArrCode.Add(startCity.ToUpper());
  5756. }
  5757. var endCity = IndexSelect.Substring(3, 3);
  5758. cityArrCode.Add(endCity.ToUpper());
  5759. }
  5760. var cityThree = string.Empty;
  5761. cityArrCode.ForEach(x => cityThree += "'" + x + "',");
  5762. cityThree = cityThree.TrimEnd(',');
  5763. if (string.IsNullOrWhiteSpace(cityThree))
  5764. {
  5765. throw new
  5766. Exception("error");
  5767. }
  5768. string sql = $"SELECT * FROM Res_ThreeCode rtc WHERE UPPER(rtc.Three) in ({cityThree}) ";
  5769. var cityArr = _sqlSugar.SqlQueryable<Res_ThreeCode>(sql).ToList();
  5770. foreach (var item in cityArrCode)
  5771. {
  5772. var find = cityArr.Find(x => x.Three.ToUpper() == item.ToUpper());
  5773. if (find != null)
  5774. {
  5775. city += find.City + "/";
  5776. }
  5777. else
  5778. {
  5779. city += item + "三字码未收入/";
  5780. }
  5781. }
  5782. city = city.TrimEnd('/');
  5783. }
  5784. catch (Exception e)
  5785. {
  5786. city = "黑屏代码格式不正确!";
  5787. }
  5788. }
  5789. }
  5790. else
  5791. {
  5792. city = "未录入黑屏代码";
  5793. }
  5794. var OpTravelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0).OrderBy(x => x.Days).Select(x => new TravelArrView
  5795. {
  5796. Date = x.Date,
  5797. Days = x.Days,
  5798. Diffgroup = x.Diffgroup,
  5799. Diid = x.Diid,
  5800. Traffic_First = x.Traffic_First,
  5801. Traffic_Second = x.Traffic_Second,
  5802. Trip = x.Trip,
  5803. WeekDay = x.WeekDay,
  5804. Id = x.Id
  5805. }).ToList();
  5806. jw.Data = new
  5807. {
  5808. groupList = groupList.Select(x => new
  5809. {
  5810. x.Id,
  5811. x.TeamName,
  5812. x.TourCode
  5813. }).ToList(),
  5814. groupInfo = new
  5815. {
  5816. group.VisitDays,
  5817. group.TourCode,
  5818. group.VisitPNumber,
  5819. group.TeamName,
  5820. city
  5821. },
  5822. OpTravelList
  5823. };
  5824. jw.Code = 200;
  5825. jw.Msg = "操作成功!";
  5826. return Ok(jw);
  5827. }
  5828. /// <summary>
  5829. /// 删除团组行程单
  5830. /// </summary>
  5831. /// <returns></returns>
  5832. [HttpPost]
  5833. public IActionResult DelTravel(DelOpTravelDto dto)
  5834. {
  5835. var jw = JsonView(false);
  5836. if (dto.UserId <= 0 || dto.Diid <= 0)
  5837. {
  5838. jw.Msg = "请输入正确的参数!";
  5839. return Ok(jw);
  5840. }
  5841. var isTrue = _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Diid == dto.Diid && x.IsDel == 0)
  5842. .SetColumns(x => new Grp_TravelList
  5843. {
  5844. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  5845. DeleteUserId = dto.UserId,
  5846. IsDel = 1,
  5847. }).ExecuteCommand();
  5848. jw = JsonView(true);
  5849. return Ok(jw);
  5850. }
  5851. /// <summary>
  5852. /// 行程单保存
  5853. /// </summary>
  5854. /// <returns></returns>
  5855. [HttpPost]
  5856. public IActionResult TravelSave(TravelSaveDto dto)
  5857. {
  5858. var jw = JsonView(false);
  5859. if (dto.Arr.Count > 0)
  5860. {
  5861. try
  5862. {
  5863. _sqlSugar.BeginTran();
  5864. foreach (var item in dto.Arr)
  5865. {
  5866. if (item.Id == 0)
  5867. {
  5868. throw new Exception("请传入正确的Id");
  5869. }
  5870. _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Id == item.Id)
  5871. .SetColumns(x => new Grp_TravelList
  5872. {
  5873. Trip = item.Trip
  5874. }).ExecuteCommand();
  5875. }
  5876. _sqlSugar.CommitTran();
  5877. jw = JsonView(true);
  5878. }
  5879. catch (Exception ex)
  5880. {
  5881. _sqlSugar.RollbackTran();
  5882. jw.Msg = "程序异常!" + ex.Message;
  5883. }
  5884. }
  5885. else
  5886. {
  5887. jw.Msg = "请传入正确的参数!";
  5888. }
  5889. return Ok(jw);
  5890. }
  5891. /// <summary>
  5892. /// 导出行程单
  5893. /// </summary>
  5894. /// <param name="dto"></param>
  5895. /// <returns></returns>
  5896. [HttpPost]
  5897. public IActionResult ExportTravel(InitOpTravelDto dto)
  5898. {
  5899. var jw = JsonView(false);
  5900. int diid = 0;
  5901. var Find = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid);
  5902. if (Find == null)
  5903. {
  5904. jw.Msg = "请选择正确的团组!";
  5905. return Ok(jw);
  5906. }
  5907. else
  5908. {
  5909. diid = Find.Id;
  5910. }
  5911. //数据源
  5912. List<Grp_TravelList> _travelList = new List<Grp_TravelList>();
  5913. DataTable dtBlack = null;
  5914. try
  5915. {
  5916. dtBlack = GeneralMethod.GetTableByBlackCode(diid);
  5917. }
  5918. catch (Exception)
  5919. {
  5920. jw.Msg = "机票黑屏代码有误!";
  5921. return Ok(jw);
  5922. }
  5923. string CityStr = string.Empty;
  5924. if (dtBlack.Rows.Count == 0)
  5925. {
  5926. jw.Msg = "机票黑屏代码有误!";
  5927. return Ok(jw);
  5928. }
  5929. else
  5930. {
  5931. foreach (DataRow row in dtBlack.Rows)
  5932. {
  5933. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  5934. {
  5935. jw.Msg = "机票黑屏代码有误!" + row["Error"].ToString();
  5936. return Ok(jw);
  5937. }
  5938. }
  5939. CityStr = GeneralMethod.GetGroupCityLine(diid,"/");
  5940. _travelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0 && x.Issel == 1).ToList();
  5941. }
  5942. //创建数据源Table
  5943. DataTable dtSource = new DataTable();
  5944. dtSource.Columns.Add("Days", typeof(string));
  5945. dtSource.Columns.Add("Date", typeof(string));
  5946. dtSource.Columns.Add("Week", typeof(string));
  5947. dtSource.Columns.Add("Traffic", typeof(string));
  5948. dtSource.Columns.Add("Trip", typeof(string));
  5949. //获取数据,放到datatable
  5950. foreach (var item in _travelList)
  5951. {
  5952. DataRow dr = dtSource.NewRow();
  5953. dr["Days"] = item.Days;
  5954. dr["Date"] = item.Date;
  5955. dr["Week"] = item.WeekDay;
  5956. dr["Traffic"] = item.Traffic_First
  5957. + "\r\n"
  5958. + item.Traffic_Second;
  5959. dr["Trip"] = item.Trip;
  5960. dtSource.Rows.Add(dr);
  5961. }
  5962. Dictionary<string, string> dic = new Dictionary<string, string>();
  5963. dic.Add("Dele", Find.TeamName.ToString() + GetNum(Find.VisitDays.ToString()));
  5964. dic.Add("City", CityStr);
  5965. dic.Add("Days", Find.VisitDays.ToString());
  5966. dic.Add("DeleCode", Find.TourCode);
  5967. dic.Add("Pnum", Find.VisitPNumber.ToString());
  5968. //模板路径
  5969. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Travel/日行程3.docx";
  5970. //载入模板
  5971. Document doc = null;
  5972. DocumentBuilder builder = null;
  5973. try
  5974. {
  5975. //载入模板
  5976. doc = new Document(tempPath);
  5977. builder = new DocumentBuilder(doc);
  5978. }
  5979. catch (Exception)
  5980. {
  5981. jw.Msg = "模板位置不存在!";
  5982. return Ok(jw);
  5983. }
  5984. foreach (var key in dic.Keys)
  5985. {
  5986. Bookmark bookmark = doc.Range.Bookmarks[key];
  5987. if (bookmark != null)
  5988. {
  5989. builder.MoveToBookmark(key);
  5990. builder.Write(dic[key]);
  5991. }
  5992. }
  5993. //获取word里所有表格
  5994. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  5995. //获取所填表格的序数
  5996. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  5997. try
  5998. {
  5999. //循环赋值
  6000. for (int i = 0; i < dtSource.Rows.Count; i++)
  6001. {
  6002. builder.MoveToCell(0, i + 1, 0, 0);
  6003. builder.Write(dtSource.Rows[i]["Days"].ToString());
  6004. builder.MoveToCell(0, i + 1, 1, 0);
  6005. builder.Write(dtSource.Rows[i]["Date"].ToString() + "\r\n" + dtSource.Rows[i]["Week"].ToString());
  6006. builder.MoveToCell(0, i + 1, 2, 0);
  6007. builder.Write(dtSource.Rows[i]["Traffic"].ToString());
  6008. var trip = dtSource.Rows[i]["Trip"].ToString();
  6009. builder.MoveToCell(0, i + 1, 3, 0);
  6010. builder.Write(trip);
  6011. var cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 1, true);
  6012. var paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  6013. // 获取特定索引的段落
  6014. Paragraph paragraph = (Paragraph)paragraphs[0];
  6015. Run run = paragraph.Runs[0];
  6016. Aspose.Words.Font font = run.Font;
  6017. font.Name = "黑体";
  6018. //设置双休红色
  6019. cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 3, true);
  6020. paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  6021. paragraph = (Paragraph)paragraphs[1];
  6022. if (paragraph.GetText().Contains("星期六") || paragraph.GetText().Contains("星期日"))
  6023. {
  6024. run = paragraph.Runs[0];
  6025. font = run.Font;
  6026. font.Color = Color.Red;
  6027. }
  6028. }
  6029. }
  6030. catch (Exception ex)
  6031. {
  6032. }
  6033. //删除多余行
  6034. while (tableOne.Rows.Count > 1 + dtSource.Rows.Count)
  6035. {
  6036. tableOne.Rows.RemoveAt(1 + dtSource.Rows.Count);//(1+dtSource.Rows.Count + 1)-1
  6037. }
  6038. string savePath = AppSettingsHelper.Get("WordBasePath") + "Travel/export/";
  6039. if (!Directory.Exists(savePath))
  6040. {
  6041. try
  6042. {
  6043. Directory.CreateDirectory(savePath);
  6044. }
  6045. catch
  6046. {
  6047. }
  6048. }
  6049. string path = savePath + Find.TeamName + "出访日程.docx";
  6050. string ftpPath = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + "Travel/export/" + Find.TeamName + "出访日程.docx";
  6051. try
  6052. {
  6053. doc.Save(path, Aspose.Words.SaveFormat.Doc);
  6054. jw = JsonView(true, "导出成功", ftpPath);
  6055. }
  6056. catch (Exception)
  6057. {
  6058. jw = JsonView(false);
  6059. }
  6060. return Ok(jw);
  6061. }
  6062. /// <summary>
  6063. /// 根据大写数字返回小写数字或根据小写数字返回大写数字
  6064. /// </summary>
  6065. /// <param name="num"></param>
  6066. /// <returns></returns>
  6067. string GetNum(string num)
  6068. {
  6069. string str = "";
  6070. switch (num)
  6071. {
  6072. case "1":
  6073. str = "一";
  6074. break;
  6075. case "2":
  6076. str = "二";
  6077. break;
  6078. case "3":
  6079. str = "三";
  6080. break;
  6081. case "4":
  6082. str = "四";
  6083. break;
  6084. case "5":
  6085. str = "五";
  6086. break;
  6087. case "6":
  6088. str = "六";
  6089. break;
  6090. case "7":
  6091. str = "七";
  6092. break;
  6093. case "8":
  6094. str = "八";
  6095. break;
  6096. case "9":
  6097. str = "九";
  6098. break;
  6099. case "10":
  6100. str = "十";
  6101. break;
  6102. case "11":
  6103. str = "十一";
  6104. break;
  6105. case "12":
  6106. str = "十二";
  6107. break;
  6108. case "一":
  6109. str = "1";
  6110. break;
  6111. case "二":
  6112. str = "2";
  6113. break;
  6114. case "三":
  6115. str = "3";
  6116. break;
  6117. case "四":
  6118. str = "4";
  6119. break;
  6120. case "五":
  6121. str = "5";
  6122. break;
  6123. case "六":
  6124. str = "6";
  6125. break;
  6126. case "七":
  6127. str = "7";
  6128. break;
  6129. case "八":
  6130. str = "8";
  6131. break;
  6132. case "九":
  6133. str = "9";
  6134. break;
  6135. case "十":
  6136. str = "10";
  6137. break;
  6138. case "十一":
  6139. str = "11";
  6140. break;
  6141. case "十二":
  6142. str = "12";
  6143. break;
  6144. }
  6145. return str;
  6146. }
  6147. #endregion
  6148. #endregion
  6149. #region 团组成本
  6150. /// <summary>
  6151. /// 团组成本数据初始化
  6152. /// </summary>
  6153. /// <param name="dto"></param>
  6154. /// <returns></returns>
  6155. [HttpPost]
  6156. public async Task<IActionResult> GroupCostInit(GroupCostInItDto dto)
  6157. {
  6158. var groupList = _sqlSugar.SqlQueryable<DelegationInfoAndIsTrueView>($@"
  6159. Select a.Id,TeamName GroupName,b.isTrue From Grp_DelegationInfo a left join (select top 100 percent Diid, CASE
  6160. WHEN COUNT(*) >= 0 THEN 'True'
  6161. ELSE 'False' END as isTrue from Grp_GroupCost where Isdel = 0 and date != '' group by Diid) b on a.Id = b.Diid
  6162. Where TeamName != '' And IsDel = 0 Order By a.Id Desc
  6163. ").ToList(); //团组列表
  6164. int diid = dto.Diid == -1 ? groupList.First().Id : dto.Diid;
  6165. var groupInfo = await _groupRepository.PostShareGroupInfo(new ShareGroupInfoDto { PortType = 1, Id = diid }); //团组信息
  6166. List<Res_CountryFeeCost> visaCountryInfoArr = new List<Res_CountryFeeCost>();
  6167. var groupinfoValue = (groupInfo.Data as Web_ShareGroupInfoView);
  6168. if (groupinfoValue != null)
  6169. {
  6170. var countryArr = groupinfoValue.VisitCountry ??= string.Empty;
  6171. var spArr = new string[1] { countryArr };
  6172. if (countryArr.Contains("|"))
  6173. {
  6174. spArr = countryArr.Split("|");
  6175. }
  6176. else if (countryArr.Contains("、"))
  6177. {
  6178. spArr = countryArr.Split("、");
  6179. }
  6180. foreach (var item in spArr.Where(x => !string.IsNullOrWhiteSpace(x)).ToList())
  6181. {
  6182. var dbQueryCountry = _sqlSugar.Queryable<Res_CountryFeeCost>().First(x => x.VisaCountry.Contains(item));
  6183. if (dbQueryCountry != null)
  6184. {
  6185. visaCountryInfoArr.Add(dbQueryCountry);
  6186. }
  6187. }
  6188. }
  6189. var groupChecks = _checkBoxs.GetCheckBoxsByDiid(diid); //团组选中信息 可枚举
  6190. var groupCost = _GroupCostRepository.GetAllByDiid(diid); //团组列表信息
  6191. var create = _GroupCostRepository.
  6192. CreateGroupCostByBlackCode(dto.Diid);
  6193. if (groupCost.Count == 0 && create.Code == 0)
  6194. {
  6195. groupCost = (create.Data as List<Grp_GroupCost>) ?? new List<Grp_GroupCost>();
  6196. }
  6197. var groupCostMap = _mapper.Map<List<Grp_GroupCostDto>>(groupCost);
  6198. var hotelNumber = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(diid); //酒店数量 可枚举
  6199. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(diid); //成本系数 可枚举
  6200. groupCostMap = groupCostMap.Select(x =>
  6201. {
  6202. if (DateTime.TryParse(x.Date, out DateTime dataForamt))
  6203. {
  6204. x.Date = dataForamt.ToString("yyyy-MM-dd");
  6205. }
  6206. return x;
  6207. }).ToList();
  6208. //GroupCostParameter.Add(new
  6209. // Grp_GroupCostParameter());
  6210. var GroupCostParameterMap = _mapper.Map<List<Grp_GroupCostParameterDto>>(GroupCostParameter);
  6211. bool hotelIsTrue = _sqlSugar.Queryable<Grp_HotelInquiry>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).Count() > 0;
  6212. return Ok(JsonView(new
  6213. {
  6214. groupList,
  6215. groupInfo,
  6216. groupChecks,
  6217. groupCost = groupCostMap,
  6218. hotelNumber,
  6219. GroupCostParameter = GroupCostParameterMap,
  6220. visaCountryInfoArr = visaCountryInfoArr.Select(x => new
  6221. {
  6222. x.VisaCountry,
  6223. x.VisaPrice,
  6224. x.Id,
  6225. }).ToList(),
  6226. baoPi = _GroupCostParameterRepository.GetBaoPi(diid),
  6227. blackCodeIsTrue = create.Code == 0 ? true : false,
  6228. hotelIsTrue = hotelIsTrue,
  6229. }));
  6230. }
  6231. /// <summary>
  6232. /// 团组成本信息保存
  6233. /// </summary>
  6234. /// <param name="dto"></param>
  6235. /// <returns></returns>
  6236. [HttpPost]
  6237. public async Task<IActionResult> SaveGroupCost(GroupCostSavaDto dto)
  6238. {
  6239. if (dto.Diid <= 0 || dto.Userid <= 0)
  6240. {
  6241. return Ok(JsonView(false));
  6242. }
  6243. JsonView jw = null;
  6244. bool isTrue = false;
  6245. #region 复制团组成本
  6246. //if (dto.Diid == 2581)
  6247. //{
  6248. // dto.Diid = 2599;
  6249. // dto.CheckBoxs.ForEach(x =>
  6250. // {
  6251. // x.Diid = 2599;
  6252. // });
  6253. // dto.GroupCosts.ForEach(x =>
  6254. // {
  6255. // x.Diid = 2599;
  6256. // });
  6257. // dto.CostTypeHotelNumbers.ForEach(x =>
  6258. // {
  6259. // x.Diid = 2599;
  6260. // });
  6261. // dto.GroupCostParameters.ForEach(x =>
  6262. // {
  6263. // x.DiId = 2599;
  6264. // });
  6265. //}
  6266. #endregion
  6267. var Grp_groups = _mapper.Map<List<Grp_GroupCost>>(dto.GroupCosts);
  6268. Grp_groups.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; }); //.ToString("yyyy-MM-dd HH:mm:ss")
  6269. var Grp_CheckBoxs = _mapper.Map<List<Grp_CheckBoxs>>(dto.CheckBoxs);
  6270. Grp_CheckBoxs.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; });
  6271. var Grp_HotelNumber = _mapper.Map<List<Grp_CostTypeHotelNumber>>(dto.CostTypeHotelNumbers);
  6272. var Grp_CostParameters = _mapper.Map<List<Grp_GroupCostParameter>>(dto.GroupCostParameters);
  6273. try
  6274. {
  6275. _sqlSugar.BeginTran();
  6276. isTrue = await _GroupCostRepository.
  6277. SaveGroupCostList(Grp_groups, dto.Diid, dto.Userid); //列表
  6278. isTrue = await _checkBoxs.SaveCheckBoxs(Grp_CheckBoxs, dto.Diid); //选中项
  6279. isTrue = await _CostTypeHotelNumberRepository.SaveHotelNumber(Grp_HotelNumber, dto.Userid, dto.Diid); //酒店房间数量
  6280. isTrue = await _GroupCostParameterRepository.SaveAsync(Grp_CostParameters, dto.Userid, dto.Diid); //系数
  6281. _sqlSugar.CommitTran();
  6282. jw = JsonView(true, "保存成功!", isTrue);
  6283. }
  6284. catch (Exception)
  6285. {
  6286. _sqlSugar.RollbackTran();
  6287. jw = JsonView(false);
  6288. }
  6289. return Ok(jw);
  6290. }
  6291. /// <summary>
  6292. /// 司兼导数据
  6293. /// </summary>
  6294. /// <param name="dto"></param>
  6295. /// <returns></returns>
  6296. [HttpPost]
  6297. public IActionResult GetCarGuides(CarGuidesDto dto)
  6298. {
  6299. JsonView jw = null;
  6300. var Data = _sqlSugar.SqlQueryable<Grp_CarGuides>($@" select * from Grp_CarGuides where isdel = 0 ").ToList();
  6301. jw = JsonView(true, "获取成功!", Data);
  6302. return Ok(jw);
  6303. }
  6304. /// <summary>
  6305. /// 导游数据
  6306. /// </summary>
  6307. /// <param name="dto"></param>
  6308. /// <returns></returns>
  6309. [HttpPost]
  6310. public IActionResult GetGuidesInfo(CarGuidesDto dto)
  6311. {
  6312. JsonView jw = null;
  6313. //var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" SELECT* FROM (
  6314. // 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
  6315. // where RowNumber BETWEEN {(dto.Page - 1) * dto.Size + 1} and {(dto.Page) * dto.Size}").ToList();
  6316. var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" select * from Grp_GuidesInfo where isdel = 0 ").ToList();
  6317. jw = JsonView(true, "获取成功!", Data);
  6318. return Ok(jw);
  6319. }
  6320. /// <summary>
  6321. /// 成本车数据
  6322. /// </summary>
  6323. /// <param name="dto"></param>
  6324. /// <returns></returns>
  6325. [HttpPost]
  6326. public IActionResult GetCarInfo(CarGuidesDto dto)
  6327. {
  6328. JsonView jw = null;
  6329. var Data = _sqlSugar.SqlQueryable<Grp_CarInfo>($@" select * from Grp_CarInfo where isdel = 0 ").ToList();
  6330. jw = JsonView(true, "获取成功!", Data);
  6331. return Ok(jw);
  6332. }
  6333. /// <summary>
  6334. /// 景点数据
  6335. /// </summary>
  6336. /// <param name="dto"></param>
  6337. /// <returns></returns>
  6338. [HttpPost]
  6339. public IActionResult GetScenicSpotInfo(CarGuidesDto dto)
  6340. {
  6341. var Data = _sqlSugar.SqlQueryable<Grp_ScenicSpotInfo>($@" select * from Grp_ScenicSpotInfo where isdel = 0 ").ToList();
  6342. return Ok(JsonView(true, "获取成功!", Data));
  6343. }
  6344. /// <summary>
  6345. /// 成本通知
  6346. /// </summary>
  6347. /// <param name="dto"></param>
  6348. /// <returns></returns>
  6349. [HttpPost]
  6350. public async Task<IActionResult> GroupIsShare(GroupIsShareDto dto)
  6351. {
  6352. if (dto.Diid < 0)
  6353. {
  6354. return Ok(JsonView(false));
  6355. }
  6356. JsonView jw = null;
  6357. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterMainByDiid(dto.Diid);
  6358. if (GroupCostParameter != null)
  6359. {
  6360. int IsShare = 0;
  6361. if (GroupCostParameter.IsShare == 0) IsShare = 1;
  6362. else if (GroupCostParameter.IsShare == 1) IsShare = 0;
  6363. bool isTrue = await _GroupCostParameterRepository.UpdateIsShareById(GroupCostParameter.Id, IsShare);
  6364. string msg = string.Empty;
  6365. if (isTrue)
  6366. {
  6367. if (IsShare == 0)
  6368. {
  6369. msg = "禁止通知,其他模块操作人员不可见此成本信息!";
  6370. }
  6371. else
  6372. {
  6373. #region 企微通知对应岗位用户
  6374. try
  6375. {
  6376. AppNoticeLibrary.SendUserMsg_GroupShare_ToJob(dto.Diid);
  6377. }
  6378. catch (Exception ex)
  6379. {
  6380. }
  6381. #endregion
  6382. msg = "通知成功,其他模块操作人员可见此成本信息!";
  6383. }
  6384. jw = JsonView(isTrue, msg, new { IsShare });
  6385. }
  6386. else
  6387. {
  6388. msg = "修改失败!";
  6389. jw = JsonView(isTrue, msg);
  6390. }
  6391. }
  6392. else
  6393. {
  6394. jw = JsonView(false, "该团没有数据,请添加数据,保存后再操作!");
  6395. }
  6396. return Ok(jw);
  6397. }
  6398. /// <summary>
  6399. /// 导出报价单
  6400. /// </summary>
  6401. /// <param name="dto"></param>
  6402. /// <returns></returns>
  6403. [HttpPost]
  6404. public async Task<IActionResult> ExportPriceCheckWordFile(GroupCostExportWordFile dto)
  6405. {
  6406. if (dto.Diid == 0)
  6407. {
  6408. return Ok(JsonView(false, "请传递团组id"));
  6409. }
  6410. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  6411. if (deleInfo.Code != 0)
  6412. {
  6413. return Ok(JsonView(false, "团组信息查询失败!"));
  6414. }
  6415. var di = deleInfo.Data as DelegationInfoWebView;
  6416. if (di != null)
  6417. {
  6418. //文件名
  6419. string strFileName = di.TeamName + "-收款账单.doc";
  6420. //获取模板
  6421. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/收款账单(四川)模板.doc");
  6422. //载入模板
  6423. Document doc = new Document(tmppath);
  6424. decimal TotalPrice = 0.00M;
  6425. string itemStr = string.Empty;
  6426. Dictionary<string, string> airSouer = new Dictionary<string, string>();
  6427. //airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  6428. airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  6429. airSouer.Add("JJCSGR", "经济舱及酒店单人间");
  6430. airSouer.Add("GWCSGR", "公务舱及酒店单人间");
  6431. airSouer.Add("GWCJSES", "公务舱及酒店小套房");
  6432. airSouer.Add("GWCSUITE", "公务舱及酒店套房");
  6433. airSouer.Add("JJCSUITE", "经济舱及酒店套房");
  6434. var groupCostType = dto.airs.GroupBy(x => x.costType).OrderBy(x => x.Key);
  6435. foreach (var cost in groupCostType)
  6436. {
  6437. var List = cost.ToList();
  6438. if (cost.Key == "A")
  6439. {
  6440. foreach (var ListItem in List)
  6441. {
  6442. if (ListItem.number > 0)
  6443. {
  6444. if (ListItem.code.Contains("TBR"))
  6445. {
  6446. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6447. }
  6448. else
  6449. {
  6450. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6451. }
  6452. TotalPrice += (ListItem.number * ListItem.price);
  6453. }
  6454. }
  6455. }
  6456. else
  6457. {
  6458. itemStr = itemStr.Insert(0, "A段\r\n");
  6459. itemStr += "B段\r\n";
  6460. foreach (var ListItem in List)
  6461. {
  6462. if (ListItem.number > 0)
  6463. {
  6464. if (ListItem.code.Contains("TBR"))
  6465. {
  6466. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6467. }
  6468. else
  6469. {
  6470. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6471. }
  6472. TotalPrice += (ListItem.number * ListItem.price);
  6473. }
  6474. }
  6475. }
  6476. }
  6477. #region 替换Word模板书签内容
  6478. Dictionary<string, string> marks = new Dictionary<string, string>();
  6479. marks.Add("To", di.ClientUnit);//付款方
  6480. marks.Add("ToTel", di.TellPhone);//付款方电话
  6481. marks.Add("Date", DateTime.Now.ToString("yyyy-MM-dd"));//导出时间
  6482. marks.Add("Team", di.VisitCountry.Replace(" ", "、"));//团队名称
  6483. marks.Add("TontractTime", (di.VisitDate).ToString("yyyy年MM月dd日"));//付款日期
  6484. marks.Add("PayDay", (di.PayDay).ToString());//付款预期
  6485. marks.Add("PaymentMoney", (di.PaymentMoney).ToString("#0.00"));//付款金额
  6486. marks.Add("WeChat", di.WeChatNo ?? "");//微信号
  6487. marks.Add("PayItemContent", itemStr);//详细信息
  6488. marks.Add("Total", TotalPrice.ToString("F2"));//合计
  6489. #endregion
  6490. ////注
  6491. //if (doc.Range.Bookmarks["Attention"] != null)
  6492. //{
  6493. // Bookmark mark = doc.Range.Bookmarks["Attention"];
  6494. // mark.Text = frList[0].Attention;
  6495. //}
  6496. foreach (var item in marks.Keys)
  6497. {
  6498. if (doc.Range.Bookmarks[item] != null)
  6499. {
  6500. Bookmark mark = doc.Range.Bookmarks[item];
  6501. mark.Text = marks[item];
  6502. }
  6503. }
  6504. byte[] bytes = null;
  6505. using (MemoryStream stream = new MemoryStream())
  6506. {
  6507. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  6508. bytes = stream.ToArray();
  6509. }
  6510. //doc.Save((AppSettingsHelper.Get("WordBasePath") + "Template/") + strFileName);
  6511. return Ok(JsonView(true, "", new
  6512. {
  6513. Data = bytes,
  6514. strFileName,
  6515. }));
  6516. }
  6517. else
  6518. {
  6519. return Ok(JsonView(false, "团组信息不存在!"));
  6520. }
  6521. }
  6522. /// <summary>
  6523. /// 导出团组成本
  6524. /// </summary>
  6525. /// <param name="dto"></param>
  6526. /// <returns></returns>
  6527. [HttpPost]
  6528. public async Task<IActionResult> ExportGroupCostExcelFile(GroupCostExportExcelFile dto)
  6529. {
  6530. var jw = JsonView(false);
  6531. if (dto.Diid == 0)
  6532. {
  6533. return Ok(JsonView(false, "请传递团组id"));
  6534. }
  6535. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  6536. if (deleInfo.Code != 0)
  6537. {
  6538. return Ok(JsonView(false, "团组信息查询失败!"));
  6539. }
  6540. var di = deleInfo.Data as DelegationInfoWebView;
  6541. if (di == null)
  6542. {
  6543. return Ok(JsonView(false, "团组信息查询失败!"));
  6544. }
  6545. List<GroupCost_Excel> List_GC1 = new List<GroupCost_Excel>();
  6546. WorkbookDesigner designer = new WorkbookDesigner();
  6547. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + ("Template/团组-成本.xls"));
  6548. var List_GC = _GroupCostRepository.GetAllByDiid(dto.Diid);
  6549. for (int i = 0; i < List_GC.Count; i++)
  6550. {
  6551. GroupCost_Excel gc = new GroupCost_Excel();
  6552. gc.Id = List_GC[i].Id;
  6553. gc.Diid = List_GC[i].Diid.ToString();
  6554. gc.DAY = List_GC[i].DAY;
  6555. string week = "";
  6556. if (!string.IsNullOrEmpty(List_GC[i].Date.Trim()))
  6557. week = CultureInfo.CurrentCulture.DateTimeFormat.GetDayName(Convert.ToDateTime(List_GC[i].Date).DayOfWeek);
  6558. gc.Date = (List_GC[i].Date + "\n" + week).ToString();
  6559. gc.ITIN = List_GC[i].ITIN;
  6560. gc.CarType = List_GC[i].CarType;
  6561. gc.CarTiming = List_GC[i].CarTiming.ToString() == "0" ? "/" : List_GC[i].CarTiming.ToString();
  6562. gc.CarCost = List_GC[i].CarCost.ToString() == "0" ? "/" : List_GC[i].CarCost.ToString();
  6563. gc.CarNumber = List_GC[i].CarNumber.ToString() == "0" ? "/" : List_GC[i].CarNumber.ToString();
  6564. gc.TGS = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGS.ToString();
  6565. gc.TGWH = List_GC[i].TGWH.ToString() == "0" ? "/" : List_GC[i].TGWH.ToString();
  6566. gc.TGN = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGN.ToString();
  6567. gc.TGOF = List_GC[i].TGOF.ToString() == "0" ? "/" : List_GC[i].TGOF.ToString();
  6568. gc.TGM = List_GC[i].TGM.ToString() == "0" ? "/" : List_GC[i].TGM.ToString();
  6569. gc.TGA = List_GC[i].TGA.ToString() == "0" ? "/" : List_GC[i].TGA.ToString();
  6570. gc.TGTF = List_GC[i].TGTF.ToString() == "0" ? "/" : List_GC[i].TGTF.ToString();
  6571. gc.TGEF = List_GC[i].TGEF.ToString() == "0" ? "/" : List_GC[i].TGEF.ToString();
  6572. gc.CFS = List_GC[i].CFS.ToString() == "0" ? "/" : List_GC[i].CFS.ToString();
  6573. gc.CFM = List_GC[i].CFM.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  6574. gc.CFOF = List_GC[i].CFOF.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  6575. gc.B = List_GC[i].B.ToString() == "0" ? "/" : List_GC[i].B.ToString();
  6576. gc.L = List_GC[i].L.ToString() == "0" ? "/" : List_GC[i].L.ToString();
  6577. gc.D = List_GC[i].D.ToString() == "0" ? "/" : List_GC[i].D.ToString();
  6578. gc.TBR = List_GC[i].TBR.ToString() == "0" ? "/" : List_GC[i].TBR.ToString();
  6579. gc.SGR = List_GC[i].SGR.ToString() == "0" ? "/" : List_GC[i].SGR.ToString();
  6580. gc.JS_ES = List_GC[i].JS_ES.ToString() == "0" ? "/" : List_GC[i].JS_ES.ToString();
  6581. gc.Suite = List_GC[i].Suite.ToString() == "0" ? "/" : List_GC[i].Suite.ToString();
  6582. gc.ACCON = List_GC[i].ACCON.ToString() == "0" ? "/" : List_GC[i].ACCON.ToString();
  6583. gc.TV = List_GC[i].TV.ToString() == "0" ? "/" : List_GC[i].TV.ToString();
  6584. gc.iL = List_GC[i].iL.ToString() == "0" ? "/" : List_GC[i].iL.ToString();
  6585. gc.IF = List_GC[i].IF.ToString() == "0" ? "/" : List_GC[i].IF.ToString();
  6586. gc.EF = List_GC[i].EF.ToString() == "0" ? "/" : List_GC[i].EF.ToString();
  6587. gc.B_R_F = List_GC[i].B_R_F.ToString() == "0" ? "/" : List_GC[i].B_R_F.ToString();
  6588. gc.TE = List_GC[i].TE.ToString() == "0" ? "/" : List_GC[i].TE.ToString();
  6589. gc.TGTips = List_GC[i].TGTips.ToString() == "0" ? "/" : List_GC[i].TGTips.ToString();
  6590. gc.DRVTips = List_GC[i].DRVTips.ToString() == "0" ? "/" : List_GC[i].DRVTips.ToString();
  6591. gc.PC = List_GC[i].PC.ToString() == "0" ? "/" : List_GC[i].PC.ToString();
  6592. gc.TLF = List_GC[i].TLF.ToString() == "0" ? "/" : List_GC[i].TLF.ToString();
  6593. gc.ECT = List_GC[i].ECT.ToString() == "0" ? "/" : List_GC[i].ECT.ToString();
  6594. List_GC1.Add(gc);
  6595. }
  6596. var dt = CommonFun.GetDataTableFromIList(List_GC1);
  6597. dt.TableName = "TB";
  6598. //报表标题等不用dt的值
  6599. designer.SetDataSource("TeamName", dto.title.TeamName);
  6600. designer.SetDataSource("Pnumber", dto.title.GroupNumber);
  6601. designer.SetDataSource("Tax", dto.title.Tax);
  6602. //designer.SetDataSource("FFYS", lblHotelCB.Text);
  6603. designer.SetDataSource("Currency", dto.title.Currency);
  6604. //designer.SetDataSource("HotelXS", txtHotelXS.Text);
  6605. designer.SetDataSource("Rate", dto.title.Rate);
  6606. var hotels = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(dto.Diid);
  6607. var Aparams = hotels.Find(x => x.Type == "Default");
  6608. if (Aparams == null)
  6609. {
  6610. return Ok(jw);
  6611. }
  6612. //酒店数量
  6613. var txtSGRNumber = Aparams.SGR.ToString();
  6614. var txtTBRNumber = Aparams.TBR.ToString();
  6615. var txtJSESNumber = Aparams.JSES.ToString();
  6616. var txtSUITENumbe = Aparams.SUITE.ToString();
  6617. if (dto.costType == "B")
  6618. {
  6619. Aparams = hotels.Find(x => x.Type == "A");
  6620. var Bparams = hotels.Find(x => x.Type == "B");
  6621. if (Aparams == null || Bparams == null)
  6622. {
  6623. return Ok(jw);
  6624. }
  6625. txtSGRNumber = "A段人数:" + Aparams.SGR.ToString() + " B段人数:" + Bparams.SGR.ToString();
  6626. txtTBRNumber = "A段人数:" + Aparams.TBR.ToString() + " B段人数:" + Bparams.TBR.ToString();
  6627. txtJSESNumber = "A段人数:" + Aparams.JSES.ToString() + " B段人数:" + Bparams.JSES.ToString();
  6628. txtSUITENumbe = "A段人数:" + Aparams.SUITE.ToString() + " B段人数:" + Bparams.SUITE.ToString();
  6629. }
  6630. designer.SetDataSource("SGRNumber", txtSGRNumber);
  6631. designer.SetDataSource("TBRNumber", txtTBRNumber);
  6632. designer.SetDataSource("JSESNumber", txtJSESNumber);
  6633. designer.SetDataSource("SUITENumber", txtSUITENumbe);
  6634. var ws = designer.Workbook.Worksheets[0];
  6635. int Row = List_GC.Count;
  6636. int startIndex = 11;
  6637. int HideRows = 0;
  6638. List<int> hideRowsList = new List<int>();
  6639. decimal TzZCB2 = 0.00M, TzZLR2 = 0.00M, TzZBJ2 = 0.00M;
  6640. #region A段left数据
  6641. var left = dto.leftInfo.Find(x => x.Type == "A");
  6642. if (left == null)
  6643. {
  6644. return Ok(jw);
  6645. }
  6646. var leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("签证"));
  6647. if (leftBindData != null)
  6648. {
  6649. designer.SetDataSource("VisaDRCB", leftBindData.cb);
  6650. designer.SetDataSource("VisaRS", leftBindData.rs);
  6651. designer.SetDataSource("VisaXS", leftBindData.xs);
  6652. designer.SetDataSource("VisaZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6653. designer.SetDataSource("VisaDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6654. designer.SetDataSource("VisaZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6655. designer.SetDataSource("VisaDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6656. designer.SetDataSource("VisaZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6657. }
  6658. else
  6659. {
  6660. hideRowsList.Add(Row + startIndex + HideRows);
  6661. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6662. }
  6663. HideRows += 2;
  6664. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("保险"));
  6665. if (leftBindData != null)
  6666. {
  6667. designer.SetDataSource("BXDRCB", leftBindData.cb);
  6668. designer.SetDataSource("BXRS", leftBindData.rs);
  6669. designer.SetDataSource("BXXS", leftBindData.xs);
  6670. designer.SetDataSource("BXZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6671. designer.SetDataSource("BXDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6672. designer.SetDataSource("BXZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6673. designer.SetDataSource("BXDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6674. designer.SetDataSource("BXZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6675. }
  6676. else
  6677. {
  6678. hideRowsList.Add(Row + startIndex + HideRows);
  6679. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6680. }
  6681. HideRows += 2;
  6682. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  6683. if (leftBindData != null)
  6684. {
  6685. designer.SetDataSource("HSDRCB", leftBindData.cb);
  6686. designer.SetDataSource("HSRS", leftBindData.rs);
  6687. designer.SetDataSource("HSXS", leftBindData.xs);
  6688. designer.SetDataSource("HSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6689. designer.SetDataSource("HSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6690. designer.SetDataSource("HSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6691. designer.SetDataSource("HSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6692. designer.SetDataSource("HSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6693. }
  6694. else
  6695. {
  6696. hideRowsList.Add(Row + startIndex + HideRows);
  6697. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6698. }
  6699. HideRows += 2;
  6700. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  6701. if (leftBindData != null)
  6702. {
  6703. designer.SetDataSource("JPJJCCB", leftBindData.cb);
  6704. designer.SetDataSource("JPJJCPnum", leftBindData.rs);
  6705. designer.SetDataSource("JPJJCXS", leftBindData.xs);
  6706. designer.SetDataSource("JPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6707. designer.SetDataSource("JPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6708. designer.SetDataSource("JPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6709. designer.SetDataSource("JPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6710. designer.SetDataSource("JPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6711. }
  6712. else
  6713. {
  6714. hideRowsList.Add(Row + startIndex + HideRows);
  6715. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6716. }
  6717. HideRows += 2;
  6718. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  6719. if (leftBindData != null)
  6720. {
  6721. designer.SetDataSource("JPGWCCB", leftBindData.cb);
  6722. designer.SetDataSource("JPGWCPNum", leftBindData.rs);
  6723. designer.SetDataSource("JPGWCXS", leftBindData.xs);
  6724. designer.SetDataSource("JPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6725. designer.SetDataSource("JPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6726. designer.SetDataSource("JPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6727. designer.SetDataSource("JPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6728. designer.SetDataSource("JPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6729. }
  6730. else
  6731. {
  6732. hideRowsList.Add(Row + startIndex + HideRows);
  6733. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6734. }
  6735. HideRows += 2;
  6736. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  6737. if (leftBindData != null)
  6738. {
  6739. ////TBR
  6740. designer.SetDataSource("HotelTBRDRCB", leftBindData.cb);
  6741. designer.SetDataSource("HotelTBRRS", leftBindData.rs);
  6742. designer.SetDataSource("HotelTBRXS", leftBindData.xs);
  6743. designer.SetDataSource("HotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6744. designer.SetDataSource("HotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6745. designer.SetDataSource("HotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6746. designer.SetDataSource("HotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6747. designer.SetDataSource("HotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6748. }
  6749. else
  6750. {
  6751. hideRowsList.Add(Row + startIndex + HideRows);
  6752. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6753. }
  6754. HideRows += 2;
  6755. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  6756. if (leftBindData != null)
  6757. {
  6758. ////SGR
  6759. designer.SetDataSource("HotelSGRDRCB", leftBindData.cb);
  6760. designer.SetDataSource("HotelSGRRS", leftBindData.rs);
  6761. designer.SetDataSource("HotelSGRXS", leftBindData.xs);
  6762. designer.SetDataSource("HotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6763. designer.SetDataSource("HotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6764. designer.SetDataSource("HotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6765. designer.SetDataSource("HotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6766. designer.SetDataSource("HotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6767. }
  6768. else
  6769. {
  6770. hideRowsList.Add(Row + startIndex + HideRows);
  6771. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6772. }
  6773. HideRows += 2;
  6774. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  6775. if (leftBindData != null)
  6776. {
  6777. ////JS/ES
  6778. designer.SetDataSource("HotelJSESDRCB", leftBindData.cb);
  6779. designer.SetDataSource("HotelJSESRS", leftBindData.rs);
  6780. designer.SetDataSource("HotelJSESXS", leftBindData.xs);
  6781. designer.SetDataSource("HotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6782. designer.SetDataSource("HotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6783. designer.SetDataSource("HotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6784. designer.SetDataSource("HotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6785. designer.SetDataSource("HotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6786. }
  6787. else
  6788. {
  6789. hideRowsList.Add(Row + startIndex + HideRows);
  6790. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6791. }
  6792. HideRows += 2;
  6793. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  6794. if (leftBindData != null)
  6795. {
  6796. ////SUITE
  6797. designer.SetDataSource("HotelSUITEDRCB", leftBindData.cb);
  6798. designer.SetDataSource("HotelSUITERS", leftBindData.rs);
  6799. designer.SetDataSource("HotelSUITEXS", leftBindData.xs);
  6800. designer.SetDataSource("HotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6801. designer.SetDataSource("HotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6802. designer.SetDataSource("HotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6803. designer.SetDataSource("HotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6804. designer.SetDataSource("HotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6805. }
  6806. else
  6807. {
  6808. hideRowsList.Add(Row + startIndex + HideRows);
  6809. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6810. }
  6811. HideRows += 2;
  6812. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  6813. if (leftBindData != null)
  6814. {
  6815. designer.SetDataSource("DJDRCB", leftBindData.cb);
  6816. designer.SetDataSource("DJRS", leftBindData.rs);
  6817. designer.SetDataSource("DJXS", leftBindData.xs);
  6818. designer.SetDataSource("DJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6819. designer.SetDataSource("DJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6820. designer.SetDataSource("DJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6821. designer.SetDataSource("DJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6822. designer.SetDataSource("DJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6823. }
  6824. else
  6825. {
  6826. hideRowsList.Add(Row + startIndex + HideRows);
  6827. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6828. }
  6829. HideRows += 2;
  6830. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  6831. if (leftBindData != null)
  6832. {
  6833. designer.SetDataSource("HCPCB", leftBindData.cb);
  6834. designer.SetDataSource("HCPRS", leftBindData.rs);
  6835. designer.SetDataSource("HCPXS", leftBindData.xs);
  6836. designer.SetDataSource("HCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6837. designer.SetDataSource("HCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6838. designer.SetDataSource("HCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6839. designer.SetDataSource("HCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6840. designer.SetDataSource("HCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6841. }
  6842. else
  6843. {
  6844. hideRowsList.Add(Row + startIndex + HideRows);
  6845. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6846. }
  6847. HideRows += 2;
  6848. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  6849. if (leftBindData != null)
  6850. {
  6851. designer.SetDataSource("CPCB", leftBindData.cb);
  6852. designer.SetDataSource("CPRS", leftBindData.rs);
  6853. designer.SetDataSource("CPXS", leftBindData.xs);
  6854. designer.SetDataSource("CPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6855. designer.SetDataSource("CPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6856. designer.SetDataSource("CPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6857. designer.SetDataSource("CPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6858. designer.SetDataSource("CPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6859. }
  6860. else
  6861. {
  6862. hideRowsList.Add(Row + startIndex + HideRows);
  6863. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6864. }
  6865. HideRows += 2;
  6866. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  6867. if (leftBindData != null)
  6868. {
  6869. designer.SetDataSource("GWDRCD", leftBindData.cb);
  6870. designer.SetDataSource("GWRS", leftBindData.rs);
  6871. designer.SetDataSource("GWXS", leftBindData.xs);
  6872. designer.SetDataSource("GWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6873. designer.SetDataSource("GWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6874. designer.SetDataSource("GWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6875. designer.SetDataSource("GWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6876. designer.SetDataSource("GWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6877. }
  6878. else
  6879. {
  6880. hideRowsList.Add(Row + startIndex + HideRows);
  6881. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6882. }
  6883. HideRows += 2;
  6884. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  6885. if (leftBindData != null)
  6886. {
  6887. designer.SetDataSource("LYJDRCB", leftBindData.cb);
  6888. designer.SetDataSource("LYJRS", leftBindData.rs);
  6889. designer.SetDataSource("LYJXS", leftBindData.xs);
  6890. designer.SetDataSource("LYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6891. designer.SetDataSource("LYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6892. designer.SetDataSource("LYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6893. designer.SetDataSource("LYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6894. designer.SetDataSource("LYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6895. }
  6896. else
  6897. {
  6898. hideRowsList.Add(Row + startIndex + HideRows);
  6899. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6900. }
  6901. #endregion
  6902. #region A段Right信息
  6903. var right = dto.rightInfo.Find(x => x.Type == "A");
  6904. if (right == null)
  6905. {
  6906. return Ok(jw);
  6907. }
  6908. HideRows += 4;
  6909. var rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  6910. if (rightBindData != null)
  6911. {
  6912. //经济舱 + 双人间 TBR
  6913. designer.SetDataSource("lblJJCTBRDRCB", rightBindData.cb);
  6914. designer.SetDataSource("txtJJCTBRRS", rightBindData.rs);
  6915. designer.SetDataSource("lblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  6916. designer.SetDataSource("lblJJCTBRDRBJ", rightBindData.bj);
  6917. designer.SetDataSource("lblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  6918. designer.SetDataSource("lblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  6919. designer.SetDataSource("lblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  6920. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  6921. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  6922. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  6923. }
  6924. else
  6925. {
  6926. hideRowsList.Add(Row + startIndex + HideRows);
  6927. }
  6928. HideRows += 2;
  6929. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  6930. if (rightBindData != null)
  6931. {
  6932. //经济舱 + 单人间 SGR
  6933. designer.SetDataSource("lblJJCSGRDRCB", rightBindData.cb);
  6934. designer.SetDataSource("txtJJCSGRRS", rightBindData.rs);
  6935. designer.SetDataSource("lblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  6936. designer.SetDataSource("lblJJCSGRDRBJ", rightBindData.bj);
  6937. designer.SetDataSource("lblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  6938. designer.SetDataSource("lblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  6939. designer.SetDataSource("lblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  6940. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  6941. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  6942. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  6943. }
  6944. else
  6945. {
  6946. hideRowsList.Add(Row + startIndex + HideRows);
  6947. }
  6948. HideRows += 2;
  6949. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  6950. if (rightBindData != null)
  6951. {
  6952. //公务舱 + 单人间 SGR
  6953. designer.SetDataSource("lblGWCSGRCB", rightBindData.cb);
  6954. designer.SetDataSource("lblGWCSGRRS", rightBindData.rs);
  6955. designer.SetDataSource("lblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  6956. designer.SetDataSource("lblGWCSGRDRBJ", rightBindData.bj);
  6957. designer.SetDataSource("lblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  6958. designer.SetDataSource("lblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  6959. designer.SetDataSource("lblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  6960. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  6961. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  6962. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  6963. }
  6964. else
  6965. {
  6966. hideRowsList.Add(Row + startIndex + HideRows);
  6967. }
  6968. HideRows += 2;
  6969. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  6970. if (rightBindData != null)
  6971. {
  6972. //公务舱 + 小套房 JSES
  6973. designer.SetDataSource("lblGWCJSESDRCB", rightBindData.cb);
  6974. designer.SetDataSource("txtGWCJSESRS", rightBindData.rs);
  6975. designer.SetDataSource("lblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  6976. designer.SetDataSource("lblGWCJSESDRBJ", rightBindData.bj);
  6977. designer.SetDataSource("lblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  6978. designer.SetDataSource("lblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  6979. designer.SetDataSource("lblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  6980. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  6981. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  6982. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  6983. }
  6984. else
  6985. {
  6986. hideRowsList.Add(Row + startIndex + HideRows);
  6987. }
  6988. HideRows += 2;
  6989. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  6990. if (rightBindData != null)
  6991. {
  6992. //公务舱 + 小套房 JSES
  6993. designer.SetDataSource("lblGWCSUITEDRCB", rightBindData.cb);
  6994. designer.SetDataSource("txtGWCSUITERS", rightBindData.rs);
  6995. designer.SetDataSource("lblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  6996. designer.SetDataSource("lblGWCSUITEDRBJ", rightBindData.bj);
  6997. designer.SetDataSource("lblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  6998. designer.SetDataSource("lblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  6999. designer.SetDataSource("lblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7000. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7001. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7002. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7003. }
  7004. else
  7005. {
  7006. hideRowsList.Add(Row + startIndex + HideRows);
  7007. }
  7008. HideRows += 2;
  7009. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7010. if (rightBindData != null)
  7011. {
  7012. //经济舱 + 大套房
  7013. designer.SetDataSource("lblJJCSUITEDRCB", rightBindData.cb);
  7014. designer.SetDataSource("txtJJCSUITERS", rightBindData.rs);
  7015. designer.SetDataSource("lblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7016. designer.SetDataSource("lblJJCSUITEDRBJ", rightBindData.bj);
  7017. designer.SetDataSource("lblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7018. designer.SetDataSource("lblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7019. designer.SetDataSource("lblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7020. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7021. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7022. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7023. }
  7024. else
  7025. {
  7026. hideRowsList.Add(Row + startIndex + HideRows);
  7027. }
  7028. #endregion
  7029. #region B段标题清空
  7030. designer.SetDataSource("CostBDRCB", "");
  7031. designer.SetDataSource("CostBRS", "");
  7032. designer.SetDataSource("CostBXS", "");
  7033. designer.SetDataSource("CostBZCB", "");
  7034. designer.SetDataSource("CostBDRBJ", "");
  7035. designer.SetDataSource("CostBZBJ", "");
  7036. designer.SetDataSource("CostBDRLR", "");
  7037. designer.SetDataSource("CostBZLR", "");
  7038. designer.SetDataSource("CostBDRCBOM", "");
  7039. designer.SetDataSource("CostBRSOM", "");
  7040. designer.SetDataSource("CostBZCBOM", "");
  7041. designer.SetDataSource("CostBDRBJOM", "");
  7042. designer.SetDataSource("CostBZBJOM", "");
  7043. designer.SetDataSource("CostBDRLROM", "");
  7044. designer.SetDataSource("CostBZLROM", "");
  7045. #endregion
  7046. designer.SetDataSource("HotelTBRName", "酒店TBR单间成本(CNY)");
  7047. designer.SetDataSource("HotelSGRName", "酒店SGR单间成本(CNY)");
  7048. designer.SetDataSource("HotelJSESName", "酒店JSES单间成本(CNY)");
  7049. designer.SetDataSource("HotelSUITEName", "酒店SUITE单间成本(CNY)");
  7050. designer.SetDataSource("DJName", "地接(CNY)");
  7051. designer.SetDataSource("HCPName", "地接-火车票(CNY)");
  7052. designer.SetDataSource("CPName", "地接-船票(CNY)");
  7053. designer.SetDataSource("GWName", "公务(CNY)");
  7054. designer.SetDataSource("YQHName", "邀请函(CNY)");
  7055. designer.SetDataSource("LYJName", "零用金(CNY)");
  7056. designer.SetDataSource("HSName", "核酸检测(CNY)");
  7057. designer.SetDataSource("AirGWCName", "机票-公务舱(CNY)");
  7058. designer.SetDataSource("AirJJCName", "机票-经济舱(CNY)");
  7059. designer.SetDataSource("BXName", "保险(CNY)");
  7060. designer.SetDataSource("VisaName", "签证(CNY)");
  7061. #region B段基本数据
  7062. if (dto.costType == "B")
  7063. {
  7064. left = dto.leftInfo.Find(x => x.Type == "B");
  7065. if (left == null)
  7066. {
  7067. return Ok(jw);
  7068. }
  7069. #region B段left数据
  7070. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  7071. if (leftBindData != null)
  7072. {
  7073. designer.SetDataSource("BHSDRCB", leftBindData.cb);
  7074. designer.SetDataSource("BHSRS", leftBindData.rs);
  7075. designer.SetDataSource("BHSXS", leftBindData.xs);
  7076. designer.SetDataSource("BHSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7077. designer.SetDataSource("BHSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7078. designer.SetDataSource("BHSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7079. designer.SetDataSource("BHSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7080. designer.SetDataSource("BHSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7081. }
  7082. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  7083. if (leftBindData != null)
  7084. {
  7085. designer.SetDataSource("BJPJJCCB", leftBindData.cb);
  7086. designer.SetDataSource("BJPJJCPnum", leftBindData.rs);
  7087. designer.SetDataSource("BJPJJCXS", leftBindData.xs);
  7088. designer.SetDataSource("BJPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7089. designer.SetDataSource("BJPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7090. designer.SetDataSource("BJPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7091. designer.SetDataSource("BJPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7092. designer.SetDataSource("BJPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7093. }
  7094. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  7095. if (leftBindData != null)
  7096. {
  7097. designer.SetDataSource("BJPGWCCB", leftBindData.cb);
  7098. designer.SetDataSource("BJPGWCPNum", leftBindData.rs);
  7099. designer.SetDataSource("BJPGWCXS", leftBindData.xs);
  7100. designer.SetDataSource("BJPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7101. designer.SetDataSource("BJPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7102. designer.SetDataSource("BJPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7103. designer.SetDataSource("BJPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7104. designer.SetDataSource("BJPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7105. }
  7106. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  7107. if (leftBindData != null)
  7108. {
  7109. designer.SetDataSource("BHCPCB", leftBindData.cb);
  7110. designer.SetDataSource("BHCPRS", leftBindData.rs);
  7111. designer.SetDataSource("BHCPXS", leftBindData.xs);
  7112. designer.SetDataSource("BHCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7113. designer.SetDataSource("BHCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7114. designer.SetDataSource("BHCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7115. designer.SetDataSource("BHCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7116. designer.SetDataSource("BHCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7117. }
  7118. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  7119. if (leftBindData != null)
  7120. {
  7121. designer.SetDataSource("BCPCB", leftBindData.cb);
  7122. designer.SetDataSource("BCPRS", leftBindData.rs);
  7123. designer.SetDataSource("BCPXS", leftBindData.xs);
  7124. designer.SetDataSource("BCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7125. designer.SetDataSource("BCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7126. designer.SetDataSource("BCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7127. designer.SetDataSource("BCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7128. designer.SetDataSource("BCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7129. }
  7130. //TBR
  7131. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  7132. if (leftBindData != null)
  7133. {
  7134. designer.SetDataSource("BHotelTBRDRCB", leftBindData.cb);
  7135. designer.SetDataSource("BHotelTBRRS", leftBindData.rs);
  7136. designer.SetDataSource("BHotelTBRXS", leftBindData.xs);
  7137. designer.SetDataSource("BHotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7138. designer.SetDataSource("BHotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7139. designer.SetDataSource("BHotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7140. designer.SetDataSource("BHotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7141. designer.SetDataSource("BHotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7142. }
  7143. //SGR
  7144. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  7145. if (leftBindData != null)
  7146. {
  7147. designer.SetDataSource("BHotelSGRDRCB", leftBindData.cb);
  7148. designer.SetDataSource("BHotelSGRRS", leftBindData.rs);
  7149. designer.SetDataSource("BHotelSGRXS", leftBindData.xs);
  7150. designer.SetDataSource("BHotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7151. designer.SetDataSource("BHotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7152. designer.SetDataSource("BHotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7153. designer.SetDataSource("BHotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7154. designer.SetDataSource("BHotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7155. }
  7156. //JS/ES
  7157. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  7158. if (leftBindData != null)
  7159. {
  7160. designer.SetDataSource("BHotelJSESDRCB", leftBindData.cb);
  7161. designer.SetDataSource("BHotelJSESRS", leftBindData.rs);
  7162. designer.SetDataSource("BHotelJSESXS", leftBindData.xs);
  7163. designer.SetDataSource("BHotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7164. designer.SetDataSource("BHotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7165. designer.SetDataSource("BHotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7166. designer.SetDataSource("BHotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7167. designer.SetDataSource("BHotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7168. }
  7169. //SUITE
  7170. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  7171. if (leftBindData != null)
  7172. {
  7173. designer.SetDataSource("BHotelSUITEDRCB", leftBindData.cb);
  7174. designer.SetDataSource("BHotelSUITERS", leftBindData.rs);
  7175. designer.SetDataSource("BHotelSUITEXS", leftBindData.xs);
  7176. designer.SetDataSource("BHotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7177. designer.SetDataSource("BHotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7178. designer.SetDataSource("BHotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7179. designer.SetDataSource("BHotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7180. designer.SetDataSource("BHotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7181. }
  7182. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  7183. if (leftBindData != null)
  7184. {
  7185. designer.SetDataSource("BDJDRCB", leftBindData.cb);
  7186. designer.SetDataSource("BDJRS", leftBindData.rs);
  7187. designer.SetDataSource("BDJXS", leftBindData.xs);
  7188. designer.SetDataSource("BDJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7189. designer.SetDataSource("BDJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7190. designer.SetDataSource("BDJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7191. designer.SetDataSource("BDJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7192. designer.SetDataSource("BDJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7193. }
  7194. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  7195. if (leftBindData != null)
  7196. {
  7197. designer.SetDataSource("BGWDRCD", leftBindData.cb);
  7198. designer.SetDataSource("BGWRS", leftBindData.rs);
  7199. designer.SetDataSource("BGWXS", leftBindData.xs);
  7200. designer.SetDataSource("BGWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7201. designer.SetDataSource("BGWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7202. designer.SetDataSource("BGWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7203. designer.SetDataSource("BGWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7204. designer.SetDataSource("BGWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7205. }
  7206. #region 优化方案
  7207. //Dictionary<string, object> excelBind = new Dictionary<string, object>();
  7208. //excelBind.Add("零用金", new {
  7209. //cb="",
  7210. //rs="",
  7211. //xs ="",
  7212. //zcb = "",
  7213. //});
  7214. #endregion
  7215. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  7216. if (leftBindData != null)
  7217. {
  7218. designer.SetDataSource("BLYJDRCB", leftBindData.cb);
  7219. designer.SetDataSource("BLYJRS", leftBindData.rs);
  7220. designer.SetDataSource("BLYJXS", leftBindData.xs);
  7221. designer.SetDataSource("BLYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7222. designer.SetDataSource("BLYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7223. designer.SetDataSource("BLYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7224. designer.SetDataSource("BLYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7225. designer.SetDataSource("BLYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7226. }
  7227. #endregion
  7228. #region B段Right信息
  7229. right = dto.rightInfo.Find(x => x.Type == "B");
  7230. if (right == null)
  7231. {
  7232. return Ok(jw);
  7233. }
  7234. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  7235. if (rightBindData != null)
  7236. {
  7237. //经济舱 + 双人间 TBR
  7238. designer.SetDataSource("BlblJJCTBRDRCB", rightBindData.cb);
  7239. designer.SetDataSource("BtxtJJCTBRRS", rightBindData.rs);
  7240. designer.SetDataSource("BlblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7241. designer.SetDataSource("BlblJJCTBRDRBJ", rightBindData.bj);
  7242. designer.SetDataSource("BlblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7243. designer.SetDataSource("BlblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7244. designer.SetDataSource("BlblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7245. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7246. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7247. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7248. }
  7249. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  7250. if (rightBindData != null)
  7251. {
  7252. //经济舱 + 单人间 SGR
  7253. designer.SetDataSource("BlblJJCSGRDRCB", rightBindData.cb);
  7254. designer.SetDataSource("BtxtJJCSGRRS", rightBindData.rs);
  7255. designer.SetDataSource("BlblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7256. designer.SetDataSource("BlblJJCSGRDRBJ", rightBindData.bj);
  7257. designer.SetDataSource("BlblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7258. designer.SetDataSource("BlblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7259. designer.SetDataSource("BlblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7260. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7261. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7262. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7263. }
  7264. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  7265. if (rightBindData != null)
  7266. {
  7267. //公务舱 + 单人间 SGR
  7268. designer.SetDataSource("BlblGWCSGRCB", rightBindData.cb);
  7269. designer.SetDataSource("BlblGWCSGRRS", rightBindData.rs);
  7270. designer.SetDataSource("BlblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7271. designer.SetDataSource("BlblGWCSGRDRBJ", rightBindData.bj);
  7272. designer.SetDataSource("BlblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7273. designer.SetDataSource("BlblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7274. designer.SetDataSource("BlblGWCSGRZLR", (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. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7280. if (rightBindData != null)
  7281. {
  7282. //公务舱 + 小套房 JSES
  7283. designer.SetDataSource("BlblGWCJSESDRCB", rightBindData.cb);
  7284. designer.SetDataSource("BtxtGWCJSESRS", rightBindData.rs);
  7285. designer.SetDataSource("BlblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7286. designer.SetDataSource("BlblGWCJSESDRBJ", rightBindData.bj);
  7287. designer.SetDataSource("BlblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7288. designer.SetDataSource("BlblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7289. designer.SetDataSource("BlblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7290. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7291. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7292. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7293. }
  7294. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  7295. if (rightBindData != null)
  7296. {
  7297. //公务舱 + 小套房 JSES
  7298. designer.SetDataSource("BlblGWCSUITEDRCB", rightBindData.cb);
  7299. designer.SetDataSource("BtxtGWCSUITERS", rightBindData.rs);
  7300. designer.SetDataSource("BlblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7301. designer.SetDataSource("BlblGWCSUITEDRBJ", rightBindData.bj);
  7302. designer.SetDataSource("BlblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7303. designer.SetDataSource("BlblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7304. designer.SetDataSource("BlblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7305. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7306. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7307. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7308. }
  7309. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7310. if (rightBindData != null)
  7311. {
  7312. //经济舱 + 大套房
  7313. designer.SetDataSource("BlblJJCSUITEDRCB", rightBindData.cb);
  7314. designer.SetDataSource("BtxtJJCSUITERS", rightBindData.rs);
  7315. designer.SetDataSource("BlblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7316. designer.SetDataSource("BlblJJCSUITEDRBJ", rightBindData.bj);
  7317. designer.SetDataSource("BlblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7318. designer.SetDataSource("BlblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7319. designer.SetDataSource("BlblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7320. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7321. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7322. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7323. }
  7324. #endregion
  7325. #region 标题
  7326. designer.SetDataSource("CostBDRCB", "单人成本");
  7327. designer.SetDataSource("CostBRS", "人数");
  7328. designer.SetDataSource("CostBXS", "系数");
  7329. designer.SetDataSource("CostBZCB", "总成本");
  7330. designer.SetDataSource("CostBDRBJ", "单人报价");
  7331. designer.SetDataSource("CostBZBJ", "总报价");
  7332. designer.SetDataSource("CostBDRLR", "单人利润");
  7333. designer.SetDataSource("CostBZLR", "总利润");
  7334. designer.SetDataSource("CostBDRCBOM", "单人成本");
  7335. designer.SetDataSource("CostBRSOM", "人数");
  7336. designer.SetDataSource("CostBZCBOM", "总成本");
  7337. designer.SetDataSource("CostBDRBJOM", "单人报价");
  7338. designer.SetDataSource("CostBZBJOM", "总报价");
  7339. designer.SetDataSource("CostBDRLROM", "单人利润");
  7340. designer.SetDataSource("CostBZLROM", "总利润");
  7341. #endregion
  7342. }
  7343. #endregion
  7344. designer.SetDataSource("TzZCB2", TzZCB2);
  7345. designer.SetDataSource("TzZBJ2", TzZBJ2);
  7346. designer.SetDataSource("TzZLR2", TzZLR2);
  7347. string[] dataSourceKeys = new string[]
  7348. {
  7349. "VF",
  7350. "TGS",
  7351. "TGOF",
  7352. "TGM",
  7353. "TGA",
  7354. "TGTF",
  7355. "TGEF",
  7356. "CFM",
  7357. "CFOF",
  7358. "B",
  7359. "L",
  7360. "D",
  7361. "TBR",
  7362. "SGR",
  7363. "JSES",
  7364. "Suite",
  7365. "TV",
  7366. "1L",
  7367. "IF",
  7368. "EF",
  7369. "BRF",
  7370. "TE",
  7371. "TGT",
  7372. "DRVT",
  7373. "PC",
  7374. "TLF",
  7375. "ECT"
  7376. };
  7377. foreach (var item in dataSourceKeys)
  7378. {
  7379. var find = dto.titleModel.FirstOrDefault(x => x.label.Replace(" ", "").Replace("/", "") == item);
  7380. if (find != null)
  7381. {
  7382. designer.SetDataSource(item, find.text);
  7383. }
  7384. else
  7385. {
  7386. designer.SetDataSource(item, 0);
  7387. }
  7388. }
  7389. designer.SetDataSource(dt);
  7390. //根据数据源处理生成报表内容
  7391. designer.Process();
  7392. designer.Workbook.Worksheets[0].Name = "清单";
  7393. Worksheet sheet = designer.Workbook.Worksheets[0];
  7394. foreach (var Rowindex in hideRowsList)
  7395. {
  7396. ws.Cells.HideRows(Rowindex, 2);
  7397. }
  7398. byte[] bytes = null;
  7399. string strFileName = di.TeamName + "-团组-成本.xls";
  7400. using (MemoryStream stream = new MemoryStream())
  7401. {
  7402. designer.Workbook.Save(stream, Aspose.Cells.SaveFormat.Xlsx);
  7403. bytes = stream.ToArray();
  7404. }
  7405. return Ok(JsonView(true, "", new
  7406. {
  7407. Data = bytes,
  7408. strFileName,
  7409. }));
  7410. }
  7411. /// <summary>
  7412. /// 导出客户报表
  7413. /// </summary>
  7414. /// <returns></returns>
  7415. [HttpPost]
  7416. public async Task<IActionResult> ExportClientWordFile(ExportClientWordFileDto dto)
  7417. {
  7418. var jw = JsonView(false);
  7419. if (dto.Diid == 0)
  7420. {
  7421. return Ok(JsonView(false, "请传递团组id"));
  7422. }
  7423. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  7424. if (deleInfo.Code != 0)
  7425. {
  7426. return Ok(JsonView(false, "团组信息查询失败!"));
  7427. }
  7428. var di = deleInfo.Data as DelegationInfoWebView;
  7429. if (di == null)
  7430. {
  7431. return Ok(JsonView(false, "团组信息查询失败!"));
  7432. }
  7433. //文件名
  7434. //string strFileName = di.TeamName + "-团组-客户报价.doc";
  7435. //获取模板
  7436. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/团组-客户报价.doc");
  7437. //载入模板
  7438. Document doc = new Document(tmppath);
  7439. Aspose.Words.DocumentBuilder builder = new Aspose.Words.DocumentBuilder(doc);
  7440. Dictionary<string, string> DickeyValue = new Dictionary<string, string>();
  7441. DickeyValue.Add("DickeyValue", di.TeamName); //团组名
  7442. var ParameterList = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(dto.Diid);
  7443. var AParameter = ParameterList.Find(x => x.CostType == "A");
  7444. var BParameter = ParameterList.Find(x => x.CostType == "B");
  7445. if (AParameter == null)
  7446. {
  7447. return Ok(JsonView(false, "系数不存在!"));
  7448. }
  7449. string CarGuides, TzNumber, CarGuides1, Meal, SubsidizedMeals, NightRepair, AttractionsTickets, MiscellaneousFees, ATip, TzHotelDesc, Offcial, PettyCash, Visa, TrainTicket, TicketPrice
  7450. , TzAirDesc, TzZCost;
  7451. CarGuides = TzNumber = CarGuides1 = Meal = SubsidizedMeals = NightRepair = AttractionsTickets = MiscellaneousFees = ATip = TzHotelDesc = Offcial = PettyCash = Visa = TrainTicket = TicketPrice
  7452. = TzAirDesc = TzZCost = string.Empty;
  7453. TzNumber = AParameter.CostTypenumber.ToString();
  7454. CarGuides = "RMB " + (AParameter.DJCB * AParameter.DJXS).ToString("#0.00");
  7455. CarGuides1 = dto.CarGuides1;
  7456. Meal = dto.Meal;
  7457. SubsidizedMeals = dto.SubsidizedMeals;
  7458. NightRepair = dto.NightRepair;
  7459. AttractionsTickets = dto.AttractionsTickets;
  7460. MiscellaneousFees = dto.MiscellaneousFees;
  7461. ATip = dto.ATip;
  7462. TzHotelDesc = "";
  7463. Offcial = "RMB " + (AParameter.GWCB * AParameter.GWXS).ToString("#0.00");
  7464. PettyCash = "RMB " + (AParameter.LYJCB * AParameter.LYJXS).ToString("#0.00");
  7465. Visa = "RMB " + (AParameter.VisaCB * AParameter.VisaXS + AParameter.HSCB * AParameter.HSXS + AParameter.BXCB * AParameter.BXXS).ToString("#0.00");
  7466. TrainTicket = "RMB " + (AParameter.HCPCB * AParameter.HCPXS).ToString("#0.00");
  7467. TicketPrice = "RMB " + (AParameter.CPCB * AParameter.CPXS).ToString("#0.00");
  7468. TzAirDesc = "";
  7469. TzZCost = dto.TzZCost;
  7470. var TzHotelDescArr = new string[] { "SGR", "JSES", "SUITE", "TBR" };
  7471. var TzAirDescArr = new string[] { "经济舱", "公务舱" };
  7472. var index = 1;
  7473. var AinfoArr = dto.leftInfo.Find(x => x.Type == "A");
  7474. foreach (var item in TzHotelDescArr)
  7475. {
  7476. if (AinfoArr != null)
  7477. {
  7478. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7479. if (Ainfo != null)
  7480. {
  7481. if (int.Parse(Ainfo.rs) <= 0)
  7482. {
  7483. continue;
  7484. }
  7485. var hotelText = string.Empty;
  7486. switch (item)
  7487. {
  7488. case "SGR":
  7489. hotelText = "单人间";
  7490. break;
  7491. case "JSES":
  7492. hotelText = "小套房";
  7493. break;
  7494. case "SUITE":
  7495. hotelText = "套房";
  7496. break;
  7497. case "TBR":
  7498. hotelText = "双人间";
  7499. break;
  7500. }
  7501. if (item != "TBR")
  7502. {
  7503. 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";
  7504. }
  7505. else
  7506. {
  7507. 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";
  7508. }
  7509. index++;
  7510. }
  7511. }
  7512. }
  7513. index = 1;
  7514. foreach (var item in TzAirDescArr)
  7515. {
  7516. if (AinfoArr != null)
  7517. {
  7518. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7519. if (Ainfo != null)
  7520. {
  7521. if (int.Parse(Ainfo.rs) <= 0)
  7522. {
  7523. continue;
  7524. }
  7525. 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";
  7526. index++;
  7527. }
  7528. }
  7529. }
  7530. if (dto.costType == "B")
  7531. {
  7532. if (BParameter == null)
  7533. {
  7534. return Ok(JsonView(false, "B段系数不存在!"));
  7535. }
  7536. CarGuides = CarGuides.Insert(0, "A段 ") + " B段 RMB" + (BParameter.DJCB * BParameter.DJXS).ToString("#0.00");
  7537. Offcial = Offcial.Insert(0, "A段 ") + " B段 RMB " + (BParameter.GWCB * BParameter.GWXS).ToString("#0.00");
  7538. PettyCash = PettyCash.Insert(0, "A段 ") + " B段 RMB " + (BParameter.LYJCB * BParameter.LYJXS).ToString("#0.00");
  7539. Visa = Visa.Insert(0, "A段 ") + " B段 RMB " + (BParameter.VisaCB * BParameter.VisaXS + BParameter.HSCB * BParameter.HSXS + BParameter.BXCB * BParameter.BXXS).ToString("#0.00");
  7540. TrainTicket = TrainTicket.Insert(0, "A段 ") + " B段 RMB " + (BParameter.HCPCB * BParameter.HCPXS).ToString("#0.00");
  7541. TicketPrice = TicketPrice.Insert(0, "A段 ") + " B段 RMB " + (BParameter.CPCB * BParameter.CPXS).ToString("#0.00");
  7542. AinfoArr = dto.leftInfo.Find(x => x.Type == "B");
  7543. foreach (var item in TzHotelDescArr)
  7544. {
  7545. if (AinfoArr != null)
  7546. {
  7547. TzHotelDesc += "B段信息 \r\n";
  7548. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7549. if (Ainfo != null)
  7550. {
  7551. if (int.Parse(Ainfo.rs) <= 0)
  7552. {
  7553. continue;
  7554. }
  7555. var hotelText = string.Empty;
  7556. switch (item)
  7557. {
  7558. case "SGR":
  7559. hotelText = "单人间";
  7560. break;
  7561. case "JSES":
  7562. hotelText = "小套房";
  7563. break;
  7564. case "SUITE":
  7565. hotelText = "套房";
  7566. break;
  7567. case "TBR":
  7568. hotelText = "双人间";
  7569. break;
  7570. }
  7571. if (item != "TBR")
  7572. {
  7573. 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";
  7574. }
  7575. else
  7576. {
  7577. 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";
  7578. }
  7579. index++;
  7580. }
  7581. TzHotelDesc = TzHotelDesc.Insert(0, "A段信息 \r\n");
  7582. }
  7583. }
  7584. index = 1;
  7585. foreach (var item in TzAirDescArr)
  7586. {
  7587. if (AinfoArr != null)
  7588. {
  7589. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7590. if (Ainfo != null)
  7591. {
  7592. if (int.Parse(Ainfo.rs) <= 0)
  7593. {
  7594. continue;
  7595. }
  7596. 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";
  7597. index++;
  7598. }
  7599. }
  7600. }
  7601. }
  7602. Visa = Visa.Insert(0, "签证及保险(含核酸检测): ");
  7603. DickeyValue.Add("TzNumber", TzNumber); //团组人数
  7604. DickeyValue.Add("CarGuides", CarGuides); //地接单人报价
  7605. DickeyValue.Add("CarGuides1", CarGuides1); // 地接 - 车导费
  7606. DickeyValue.Add("Meal", Meal); // 地接 - 餐费
  7607. DickeyValue.Add("SubsidizedMeals", SubsidizedMeals);// 地接 - 餐补
  7608. DickeyValue.Add("NightRepair", NightRepair); // 地接 - 宿补
  7609. DickeyValue.Add("AttractionsTickets", AttractionsTickets); // 地接 - 景点
  7610. DickeyValue.Add("MiscellaneousFees", MiscellaneousFees); // 地接 - 杂费
  7611. DickeyValue.Add("ATip", ATip); // 地接 - 小费
  7612. DickeyValue.Add("TzHotelDesc", TzHotelDesc); //酒店
  7613. DickeyValue.Add("Offcial", Offcial); // 公务单人报价
  7614. DickeyValue.Add("PettyCash", PettyCash); // 零用金单人报价
  7615. DickeyValue.Add("Visa", Visa); // 签证单人报价
  7616. DickeyValue.Add("TrainTicket", TrainTicket); //火车票
  7617. DickeyValue.Add("TicketPrice", TicketPrice); //船票
  7618. DickeyValue.Add("TzAirDesc", TzAirDesc); //机票
  7619. DickeyValue.Add("TzZCost", TzZCost);
  7620. foreach (var key in DickeyValue.Keys)
  7621. {
  7622. if (doc.Range.Bookmarks[key] != null)
  7623. {
  7624. Bookmark mark = doc.Range.Bookmarks[key];
  7625. mark.Text = DickeyValue[key];
  7626. }
  7627. }
  7628. byte[] bytes = null;
  7629. string strFileName = di.TeamName + "-客户报价.doc";
  7630. using (MemoryStream stream = new MemoryStream())
  7631. {
  7632. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  7633. bytes = stream.ToArray();
  7634. }
  7635. return Ok(JsonView(true, "", new
  7636. {
  7637. Data = bytes,
  7638. strFileName,
  7639. }));
  7640. }
  7641. /// <summary>
  7642. /// 团组成本 各模块(酒店,地接,机票)成本提示
  7643. /// </summary>
  7644. /// <param name="dto"></param>
  7645. /// <returns></returns>
  7646. [HttpPost]
  7647. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  7648. public async Task<IActionResult> PostGroupCostModulePrompt(GroupCostModulePromptDto dto)
  7649. {
  7650. try
  7651. {
  7652. #region 参数验证
  7653. if (dto.DiId < 0)
  7654. {
  7655. return Ok(JsonView(false, "请传入有效的DiId参数!"));
  7656. }
  7657. List<int> cTableIds = new List<int>() {
  7658. 76 ,//酒店预订
  7659. 77 ,//行程
  7660. 79 ,//车/导游地接
  7661. 80 ,//签证
  7662. 81 ,//邀请/公务活
  7663. 82 ,//团组客户保险
  7664. 85 ,//机票预订
  7665. 98 ,//其他款项
  7666. 285 ,//收款退还
  7667. 751 ,//酒店早餐
  7668. 1015 // 超支费用
  7669. };
  7670. if (dto.CTable < 0 && !cTableIds.Contains(dto.CTable))
  7671. {
  7672. return Ok(JsonView(false, "请传入有效的CTable参数!"));
  7673. }
  7674. #endregion
  7675. //Grp_GroupCostParameter 预算表 Grp_GroupCost 详细费用列表
  7676. var _GroupCostParameters = _usersRep._sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  7677. if (_GroupCostParameters.Count <= 0)
  7678. {
  7679. return Ok(JsonView(false, "暂无该团组成本信息!", new List<dynamic>()));
  7680. }
  7681. if (_GroupCostParameters[0].IsShare == 0)
  7682. {
  7683. return Ok(JsonView(false, "该团组成本未完成!", new List<dynamic>()));
  7684. }
  7685. var _GroupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  7686. //处理date为空问题
  7687. if (_GroupCosts.Count > 0)
  7688. {
  7689. for (int i = 0; i < _GroupCosts.Count; i++)
  7690. {
  7691. if (string.IsNullOrEmpty(_GroupCosts[i].Date))
  7692. {
  7693. if (i > 0)
  7694. {
  7695. _GroupCosts[i].Date = _GroupCosts[i - 1].Date;
  7696. }
  7697. }
  7698. }
  7699. }
  7700. GroupCostModulePromptView _view = new GroupCostModulePromptView();
  7701. List<GroupCostModulePromptInfo> _ModulePromptInfos = new List<GroupCostModulePromptInfo>(); //机票存储多段
  7702. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  7703. string currCode = "";
  7704. #region currCode 验证
  7705. bool isInt = int.TryParse(_GroupCostParameters[0].Currency, out int intCurrency);
  7706. if (isInt)
  7707. {
  7708. var currData = currDatas.Find(it => it.Id == intCurrency);
  7709. if (currData != null)
  7710. {
  7711. currCode = currData.Name;
  7712. }
  7713. }
  7714. else
  7715. {
  7716. currCode = _GroupCostParameters[0].Currency.Trim();
  7717. }
  7718. #endregion
  7719. //op,酒店单段模式存储
  7720. GroupCostModulePromptInfo _ModulePromptInfo = new GroupCostModulePromptInfo()
  7721. {
  7722. CurrencyCode = currCode,
  7723. Rate = _GroupCostParameters[0].Rate,
  7724. CostType = _GroupCostParameters[0].CostType,
  7725. CostTypeStartTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeStartTime).ToString("yyyy-MM-dd"),
  7726. CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeendTime).ToString("yyyy-MM-dd"),
  7727. CostTypeNumber = _GroupCostParameters[0].CostTypenumber
  7728. };
  7729. List<dynamic> _ModuleSubPromptInfo = new List<dynamic>(); // 存储CTbale != 85 的动态数据
  7730. if (_GroupCostParameters.Count == 2)
  7731. {
  7732. _ModulePromptInfo.CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[1].CostTypeendTime).ToString("yyyy-MM-dd");
  7733. }
  7734. foreach (var item in _GroupCostParameters)
  7735. {
  7736. decimal _rate = 1;
  7737. decimal _rate1 = item.Rate;
  7738. decimal _scale = 1;
  7739. //decimal _scale = 0.95M; 雷怡 2024-06-11 10:06:08 屏蔽
  7740. #region 处理地接价格比例 总经理 国交部经理 主管 不下调 其他人 下调 5%
  7741. //var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  7742. //if (userInfo != null)
  7743. //{
  7744. // if (userInfo.DepId == 1 || userInfo.DepId == 7)
  7745. // {
  7746. // if (userInfo.JobPostId == 1 || userInfo.JobPostId == 22 || userInfo.JobPostId == 32)
  7747. // {
  7748. // _scale = 1.00M;
  7749. // }
  7750. // }
  7751. //}
  7752. #endregion
  7753. GroupCostModulePromptInfo modulePromptInfo = new GroupCostModulePromptInfo()
  7754. {
  7755. CurrencyCode = currCode,
  7756. Rate = _rate1,
  7757. CostType = item.CostType,
  7758. CostTypeStartTime = Convert.ToDateTime(item.CostTypeStartTime).ToString("yyyy-MM-dd"),
  7759. CostTypeEndTime = Convert.ToDateTime(item.CostTypeendTime).ToString("yyyy-MM-dd"),
  7760. CostTypeNumber = item.CostTypenumber
  7761. };
  7762. if (_GroupCostParameters.Count > 1)
  7763. {
  7764. modulePromptInfo.CostTypeNumber = item.CostTypenumber;
  7765. }
  7766. else
  7767. {
  7768. modulePromptInfo.CostTypeNumber = item.LYJRS;
  7769. }
  7770. if (dto.CTable == 79)//
  7771. {
  7772. modulePromptInfo.IndividualCost = item.DJCB / modulePromptInfo.CostTypeNumber;
  7773. modulePromptInfo.TotalCost = item.DJCB;
  7774. }
  7775. List<string> costTypes = new List<string>() { "A", "B" };
  7776. List<Grp_GroupCost> _GroupCostsTypeData = new List<Grp_GroupCost>();
  7777. var _GroupCostsDuplicates = _GroupCostParameters.GroupBy(x => x.CostType).Select(y => y.FirstOrDefault());
  7778. if (_GroupCostsDuplicates.Count() == 1)
  7779. {
  7780. _GroupCostsTypeData = _GroupCosts;
  7781. }
  7782. else
  7783. {
  7784. _GroupCostsTypeData = _GroupCosts.Where(it => Convert.ToDateTime(it.Date) >= Convert.ToDateTime(item.CostTypeStartTime) &&
  7785. Convert.ToDateTime(it.Date) <= Convert.ToDateTime(item.CostTypeendTime)).ToList();
  7786. }
  7787. /*
  7788. * 76 酒店预订
  7789. * 77 行程
  7790. * 79 车/导游地接
  7791. * 80 签证
  7792. * 81 邀请/公务活动
  7793. * 82 团组客户保险
  7794. * 85 机票预订
  7795. * 98 其他款项
  7796. * 285 收款退还
  7797. * 751 酒店早餐
  7798. * 1015 超支费用
  7799. */
  7800. switch (dto.CTable)
  7801. {
  7802. case 76: // 酒店预订
  7803. _ModuleSubPromptInfo.AddRange(
  7804. _GroupCostsTypeData.Select(it => new
  7805. {
  7806. it.DAY,
  7807. it.Date,
  7808. it.ACCON,
  7809. it.ITIN,
  7810. it.SGR,
  7811. it.TBR,
  7812. it.JS_ES,
  7813. it.Suite
  7814. })
  7815. );
  7816. break;
  7817. case 79: // 车/导游地接
  7818. _ModuleSubPromptInfo.AddRange(
  7819. _GroupCostsTypeData.Select(it => new
  7820. {
  7821. Date = it.Date, //日期
  7822. CarFee = (it.CarCost + it.CFM + it.CFOF) * _rate * _scale, //车费用
  7823. GuideFee = (it.TGS + it.TGOF + it.TGM + it.TGA + it.TGTF + it.TGEF) * _rate * _scale, //导游费用
  7824. MealFee = (it.B + it.L + it.D) * _rate * _scale, //餐食费
  7825. TicketFee = it.EF * _rate * _scale, //门票费
  7826. TipFee = (it.TGTips + it.DRVTips) * _rate * _scale, //小费
  7827. AirportTransferFee = 0.00M,
  7828. DrinksSnacksFruitFee = it.B_R_F * _rate * _scale, //饮料零食水果
  7829. TravelSupplies = it.TE * _rate * _scale, //出行物资
  7830. LeadersFee = it.TLF * _rate * _scale, //领队费
  7831. CarFee1 = it.CarCost * _rate * _scale,
  7832. CarType = it.CarType, //车型
  7833. SpentCash = it.PC * _rate * _scale, //零用金
  7834. })
  7835. );
  7836. break;
  7837. case 85: // 机票
  7838. List<dynamic> datas = new List<dynamic>();
  7839. datas.Add(
  7840. new
  7841. {
  7842. AirType = "经济舱",
  7843. AirNum = item.JJCRS,
  7844. AirDRCB = item.JJCCB,
  7845. AirZCB = (item.JJCRS * item.JJCCB)
  7846. }
  7847. );
  7848. datas.Add(
  7849. new
  7850. {
  7851. AirType = "公务舱",
  7852. AirNum = item.GWCRS,
  7853. AirDRCB = item.GWCCB,
  7854. AirZCB = (item.GWCRS * item.GWCCB)
  7855. }
  7856. );
  7857. var groupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  7858. var initDatas = groupCosts.Select(it => new { date = it.Date, week = it.Date.GetWeek() == "" ? "-" : it.Date.GetWeek(), itinerary = it.ITIN }).ToList();
  7859. modulePromptInfo.Data = new {
  7860. airFeeData = datas,
  7861. airInitData = initDatas
  7862. };
  7863. _ModulePromptInfos.Add(modulePromptInfo);
  7864. break;
  7865. default:
  7866. break;
  7867. }
  7868. }
  7869. if (dto.CTable != 85)
  7870. {
  7871. _ModulePromptInfo.Data = _ModuleSubPromptInfo;
  7872. _ModulePromptInfos.Add(_ModulePromptInfo);
  7873. }
  7874. _view.ModulePromptInfos = _ModulePromptInfos;
  7875. return Ok(JsonView(true, "操作成功!", _view));
  7876. }
  7877. catch (Exception ex)
  7878. {
  7879. return Ok(JsonView(false, ex.Message));
  7880. }
  7881. }
  7882. /// <summary>
  7883. /// 根据黑屏代码重新生成行程
  7884. /// </summary>
  7885. /// <param name="dto"></param>
  7886. /// <returns></returns>
  7887. [HttpPost]
  7888. public IActionResult CraeteGroupCostTravel(GroupCostInItDto dto)
  7889. {
  7890. var jw = JsonView(false);
  7891. var Create = _GroupCostRepository.
  7892. CreateGroupCostByBlackCode(dto.Diid);
  7893. jw.Msg = Create.Msg;
  7894. if (Create.Code == 0)
  7895. {
  7896. jw.Code = 200;
  7897. jw.Data = new
  7898. {
  7899. groupCost = Create.Data,
  7900. blackCodeIsTrue = true
  7901. };
  7902. }
  7903. else
  7904. {
  7905. jw.Code = 400;
  7906. jw.Data = new
  7907. {
  7908. groupCost = Create.Data,
  7909. blackCodeIsTrue = false,
  7910. };
  7911. }
  7912. return Ok(jw);
  7913. }
  7914. /// <summary>
  7915. /// 成本获取OP历史车费用
  7916. /// </summary>
  7917. /// <param name="dto"></param>
  7918. /// <returns></returns>
  7919. [HttpPost]
  7920. public async Task<IActionResult> GetHistoryCarData(HistoryCarDataDto dto)
  7921. {
  7922. var jw = JsonView(false);
  7923. try
  7924. {
  7925. List<HistoryCarDataView> dbResult = new List<HistoryCarDataView>();
  7926. //获取现有所有车的数据
  7927. if (!dto.Param.IsNullOrWhiteSpace())
  7928. {
  7929. string sql = $@"
  7930. SELECT gdi.TeamName , gctggr.Area, gctggr.PriceName , gctggrc.Id ,gctggrc.Price , gctggrc.DatePrice , gctggrc.PriceContent , gctggrc.Currency , gctggr.ServiceStartTime , gctggr.ServiceEndTime
  7931. FROM Grp_CarTouristGuideGroundReservationsContent gctggrc inner join Grp_CarTouristGuideGroundReservations gctggr on
  7932. gctggrc.CTGGRId = gctggr.Id inner JOIN Grp_DelegationInfo gdi on gctggr.DiId = gdi.Id LEFT JOIN Sys_SetData ssd on ssd.Id = gctggr.PriceType
  7933. 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
  7934. AND gctggr.ServiceEndTime is not NULL
  7935. ORDER by gctggrc.id DESC
  7936. ";
  7937. dbResult = await _sqlSugar.SqlQueryable<HistoryCarDataView>(sql).ToListAsync();
  7938. var numeberResult = await Task.Run(() =>
  7939. {
  7940. var numberArr = dbResult.Where(x => int.TryParse(x.Area, out int number)).ToList();
  7941. _ = dbResult.RemoveAll(x => int.TryParse(x.Area, out int number));
  7942. return numberArr;
  7943. });
  7944. var cityArr = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  7945. foreach (var item in numeberResult)
  7946. {
  7947. var find = cityArr.Find(x => x.Id == int.Parse(item.Area)) ?? new Grp_NationalTravelFee
  7948. {
  7949. Country = "数据异常!",
  7950. City = string.Empty,
  7951. };
  7952. item.Area = find.Country + " " + find.City;
  7953. }
  7954. dbResult.AddRange(numeberResult);
  7955. if (dto.Param.Contains("、"))
  7956. {
  7957. var sp = dto.Param.Split("、");
  7958. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  7959. .Where(x =>
  7960. {
  7961. return System.Array.Exists(sp, e =>
  7962. {
  7963. bool where = false;
  7964. if (x.Area != null)
  7965. {
  7966. where = x.Area.Contains(e);
  7967. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  7968. {
  7969. return false;
  7970. }
  7971. }
  7972. if (x.PriceName != null && !where)
  7973. {
  7974. where = x.PriceName.Contains(e);
  7975. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  7976. {
  7977. return false;
  7978. }
  7979. }
  7980. return where;
  7981. });
  7982. }).ToList();
  7983. }
  7984. else
  7985. {
  7986. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  7987. .Where(x =>
  7988. {
  7989. bool where = false;
  7990. if (x.Area != null)
  7991. {
  7992. where = x.Area.Contains(dto.Param);
  7993. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  7994. {
  7995. return false;
  7996. }
  7997. }
  7998. if (x.PriceName != null && !where)
  7999. {
  8000. where = x.PriceName.Contains(dto.Param);
  8001. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  8002. {
  8003. return false;
  8004. }
  8005. }
  8006. return where;
  8007. }
  8008. )
  8009. .ToList();
  8010. }
  8011. }
  8012. var view = dbResult.Select(x => {
  8013. decimal dp = 0.00M;
  8014. var startB = DateTime.TryParse(x.Start.ToString(), out DateTime startD);
  8015. var endB = DateTime.TryParse(x.End.ToString(), out DateTime endD);
  8016. if (string.IsNullOrWhiteSpace(x.DatePrice))
  8017. {
  8018. if (startB && endB)
  8019. {
  8020. var timesp = endD.Subtract(startD);
  8021. if ((timesp.Days + 1) != 0)
  8022. {
  8023. dp = x.Price / (timesp.Days + 1);
  8024. }
  8025. }
  8026. }
  8027. else
  8028. {
  8029. dp = x.Price;
  8030. }
  8031. return new
  8032. {
  8033. start = startB ? startD.ToString("yyyy-MM-dd") : "",
  8034. end = endB ? endD.ToString("yyyy-MM-dd") : "",
  8035. x.Area,
  8036. x.id,
  8037. price = x.Price.ToString("F2"),
  8038. x.PriceName,
  8039. x.PriceContent,
  8040. x.TeamName,
  8041. x.DatePrice,
  8042. dayPrice = dp.ToString("F2"),
  8043. };
  8044. }).OrderByDescending(x => x.id).ToList();
  8045. jw = JsonView(true, "获取成功!", view);
  8046. }
  8047. catch (Exception e)
  8048. {
  8049. jw = JsonView(false, e.Message);
  8050. }
  8051. return Ok(jw);
  8052. }
  8053. #endregion
  8054. #region 酒店预订 新 雷怡 2023-12-28 17:45
  8055. /// <summary>
  8056. /// 酒店预订
  8057. /// 酒店费用列表 根据团组Id查询
  8058. /// </summary>
  8059. /// <param name="_dto"></param>
  8060. /// <returns></returns>
  8061. [HttpPost]
  8062. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8063. public async Task<IActionResult> PostHotelReservationsItemsByDiId(HotelReservationItemDto _dto)
  8064. {
  8065. #region 参数验证
  8066. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8067. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8068. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8069. #region 团组操作权限验证 76 酒店预定模块
  8070. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8071. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8072. #endregion
  8073. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8074. #region 页面操作权限验证
  8075. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8076. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8077. #endregion
  8078. #endregion
  8079. return Ok(await _hotelPriceRep._ItemsByDiId(_dto.PortType, _dto.DiId));
  8080. }
  8081. /// <summary>
  8082. /// 酒店预订
  8083. /// 基础数据
  8084. /// </summary>
  8085. /// <param name="_dto"></param>
  8086. /// <returns></returns>
  8087. [HttpPost]
  8088. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8089. public async Task<IActionResult> PostHotelReservationsBasicsDataInit(HotelReservationBasicsDataInitDto _dto)
  8090. {
  8091. #region 参数验证
  8092. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8093. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8094. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8095. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8096. #region 页面操作权限验证
  8097. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8098. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8099. #endregion
  8100. #region 团组操作权限验证 76 酒店预定模块
  8101. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8102. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8103. #endregion
  8104. #endregion
  8105. return Ok(await _hotelPriceRep._BasicsDataInit(_dto.PortType, _dto.DiId));
  8106. }
  8107. /// <summary>
  8108. /// 酒店预订
  8109. /// 创建 入住卷号码
  8110. /// </summary>
  8111. /// <param name="_dto"></param>
  8112. /// <returns></returns>
  8113. [HttpPost]
  8114. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8115. public async Task<IActionResult> PostHotelReservationsCreateCheckVolumeNo(HotelReservationBasicsDataInitDto _dto)
  8116. {
  8117. try
  8118. {
  8119. #region 参数验证
  8120. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8121. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8122. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8123. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8124. #region 页面操作权限验证
  8125. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8126. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8127. #endregion
  8128. #region 团组操作权限验证 76 酒店预定模块
  8129. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8130. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8131. #endregion
  8132. #endregion
  8133. Result data = await _hotelPriceRep._CreateCheckVolumeNo(_dto.DiId);
  8134. if (data.Code != 0)
  8135. {
  8136. return Ok(JsonView(false, data.Msg));
  8137. }
  8138. return Ok(JsonView(true, data.Msg, data.Data));
  8139. }
  8140. catch (Exception ex)
  8141. {
  8142. return Ok(JsonView(false, ex.Message));
  8143. }
  8144. }
  8145. /// <summary>
  8146. /// 酒店预订
  8147. /// 详情
  8148. /// </summary>
  8149. /// <param name="_dto"></param>
  8150. /// <returns></returns>
  8151. [HttpPost]
  8152. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8153. public async Task<IActionResult> PostHotelReservationsDetails(HotelReservationsDetailsDto _dto)
  8154. {
  8155. #region 参数验证
  8156. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入正确的UserId参数"));
  8157. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8158. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入正确的DiId参数"));
  8159. #region 团组操作权限验证 76 酒店预定模块
  8160. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8161. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8162. #endregion
  8163. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8164. #region 页面操作权限验证
  8165. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8166. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8167. #endregion
  8168. #endregion
  8169. return Ok(await _hotelPriceRep._Details(_dto.PortType, _dto.Id));
  8170. }
  8171. /// <summary>
  8172. /// 酒店预订
  8173. /// Add Or Edit
  8174. /// </summary>
  8175. /// <param name="_dto"></param>
  8176. /// <returns></returns>
  8177. [HttpPost]
  8178. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8179. public async Task<IActionResult> PostHotelReservationsAddOrEdit(HotelReservationsAddOrEditDto _dto)
  8180. {
  8181. #region 参数验证
  8182. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8183. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8184. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8185. #region 团组操作权限验证 76 酒店预定模块
  8186. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8187. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8188. #endregion
  8189. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8190. #region 页面操作权限验证
  8191. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8192. if (_dto.Id == 0) // Add
  8193. {
  8194. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  8195. }
  8196. else if (_dto.Id > 1) // Edit
  8197. {
  8198. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  8199. } else return Ok(JsonView(false, "请输入正确的数据Id!"));
  8200. #endregion
  8201. #endregion
  8202. JsonView _view = await _hotelPriceRep._AddOrEdit(_dto);
  8203. if (_view.Code != 200)
  8204. {
  8205. return Ok(_view);
  8206. }
  8207. #region 应用推送
  8208. try
  8209. {
  8210. int ccpId = (int)_view.Data.GetType().GetProperty("ccpId").GetValue(_view.Data, null);
  8211. int sign = (int)_view.Data.GetType().GetProperty("sign").GetValue(_view.Data, null);
  8212. int hotelId = (int)_view.Data.GetType().GetProperty("hotelId").GetValue(_view.Data, null);
  8213. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  8214. //自动审核
  8215. await _feeAuditRep.FeeAutomaticAudit(1,_dto.DiId,hotelId);
  8216. }
  8217. catch (Exception ex)
  8218. {
  8219. }
  8220. #endregion
  8221. return Ok(_view);
  8222. }
  8223. /// <summary>
  8224. /// 酒店预订
  8225. /// Del
  8226. /// </summary>
  8227. /// <param name="_dto"></param>
  8228. /// <returns></returns>
  8229. [HttpPost]
  8230. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8231. public async Task<IActionResult> PostHotelReservationsDel(HotelReservationsDelDto _dto)
  8232. {
  8233. #region 参数验证
  8234. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8235. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8236. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8237. #region 团组操作权限验证 76 酒店预定模块
  8238. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8239. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8240. #endregion
  8241. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8242. #region 页面操作权限验证
  8243. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8244. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  8245. #endregion
  8246. #endregion
  8247. return Ok(await _hotelPriceRep._Del(_dto.Id, _dto.UserId));
  8248. }
  8249. /// <summary>
  8250. /// 酒店预订
  8251. /// 生成VOUCHER
  8252. /// 2024.05.06 之前版本
  8253. /// </summary>
  8254. /// <param name="_dto"></param>
  8255. /// <returns></returns>
  8256. [HttpPost]
  8257. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8258. public async Task<IActionResult> PostHotelReservationsCreateVoucher1(HotelReservationsCreateVoucherDto _dto)
  8259. {
  8260. try
  8261. {
  8262. #region 参数验证
  8263. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8264. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8265. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8266. #region 团组操作权限验证 76 酒店预定模块
  8267. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8268. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8269. #endregion
  8270. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8271. #region 页面操作权限验证
  8272. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8273. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8274. #endregion
  8275. #endregion
  8276. Grp_HotelReservations hr = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.Id == _dto.Id).FirstAsync();
  8277. //判断数据是否完整
  8278. if (hr != null)
  8279. {
  8280. if (!string.IsNullOrEmpty(hr.DetermineNo))
  8281. {
  8282. string strFileName = "HotelStatement/";
  8283. Grp_DelegationInfo dele = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == _dto.DiId).FirstAsync();
  8284. if (dele != null)
  8285. strFileName += dele.TourCode;
  8286. //载入模板
  8287. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/酒店预订模板.doc";
  8288. Document doc = new Document(sss);
  8289. DocumentBuilder builder = new DocumentBuilder(doc);
  8290. #region 替换Word模板书签内容
  8291. //这里可以创建个DataTable循环添加书签的值,这里提示一下就不多做修改了
  8292. //入住卷预定号码
  8293. if (doc.Range.Bookmarks["VNO"] != null)
  8294. {
  8295. Bookmark mark = doc.Range.Bookmarks["VNO"];
  8296. mark.Text = hr.CheckNumber;
  8297. }
  8298. //酒店时间
  8299. if (doc.Range.Bookmarks["Date"] != null)
  8300. {
  8301. Bookmark mark = doc.Range.Bookmarks["Date"];
  8302. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  8303. }
  8304. //团号
  8305. if (doc.Range.Bookmarks["TNo"] != null)
  8306. {
  8307. Bookmark mark = doc.Range.Bookmarks["TNo"];
  8308. mark.Text = dele.TourCode;
  8309. }
  8310. //预定号码
  8311. if (doc.Range.Bookmarks["BookingId"] != null)
  8312. {
  8313. Bookmark mark = doc.Range.Bookmarks["BookingId"];
  8314. mark.Text = hr.ReservationsNo;
  8315. }
  8316. if (doc.Range.Bookmarks["HotelConfirmNo"] != null)
  8317. {
  8318. Bookmark mark = doc.Range.Bookmarks["HotelConfirmNo"];
  8319. mark.Text = hr.DetermineNo;
  8320. }
  8321. //酒店城市
  8322. if (doc.Range.Bookmarks["City"] != null)
  8323. {
  8324. Bookmark mark = doc.Range.Bookmarks["City"];
  8325. mark.Text = hr.City;
  8326. }
  8327. //酒店名称
  8328. if (doc.Range.Bookmarks["HName"] != null)
  8329. {
  8330. Bookmark mark = doc.Range.Bookmarks["HName"];
  8331. mark.Text = hr.HotelName;
  8332. }
  8333. //酒店地址
  8334. if (doc.Range.Bookmarks["Address"] != null)
  8335. {
  8336. Bookmark mark = doc.Range.Bookmarks["Address"];
  8337. mark.Text = hr.HotelAddress;
  8338. }
  8339. //酒店电话
  8340. if (doc.Range.Bookmarks["Tel"] != null)
  8341. {
  8342. Bookmark mark = doc.Range.Bookmarks["Tel"];
  8343. mark.Text = hr.HotelTel;
  8344. }
  8345. //酒店传真
  8346. if (doc.Range.Bookmarks["Fax"] != null)
  8347. {
  8348. Bookmark mark = doc.Range.Bookmarks["Fax"];
  8349. if (!string.IsNullOrWhiteSpace(hr.HotelFax))
  8350. {
  8351. mark.Text = hr.HotelFax;
  8352. }
  8353. }
  8354. //入住时间
  8355. if (doc.Range.Bookmarks["CIn"] != null)
  8356. {
  8357. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  8358. Bookmark mark = doc.Range.Bookmarks["CIn"];
  8359. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year;
  8360. }
  8361. //退房时间
  8362. if (doc.Range.Bookmarks["COut"] != null)
  8363. {
  8364. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  8365. Bookmark mark = doc.Range.Bookmarks["COut"];
  8366. mark.Text = dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8367. }
  8368. //客户名称
  8369. if (doc.Range.Bookmarks["GName"] != null)
  8370. {
  8371. string guestName = "";
  8372. string[] clients = new string[] { };
  8373. if (hr.GuestName.Contains(","))
  8374. {
  8375. clients = hr.GuestName.Split(",");
  8376. }
  8377. else
  8378. {
  8379. clients = new string[] { hr.GuestName };
  8380. }
  8381. List<int> clientIds_int = new List<int>();
  8382. if (clients.Length > 0)
  8383. {
  8384. foreach (var item in clients)
  8385. {
  8386. if (item.IsNumeric())
  8387. {
  8388. clientIds_int.Add(int.Parse(item));
  8389. }
  8390. }
  8391. }
  8392. if (clientIds_int.Count > 0)
  8393. {
  8394. var _clientDatas = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && clientIds_int.Contains(it.Id)).ToList();
  8395. foreach (var client in _clientDatas)
  8396. {
  8397. //男
  8398. if (client.Sex == 0) guestName += $"Mr.";
  8399. //女
  8400. else if (client.Sex == 1) guestName += $"Ms.";
  8401. if (!String.IsNullOrEmpty(client.FirstName + client.LastName))
  8402. {
  8403. guestName += $"{string.Join("", client.FirstName.GetTotalPingYin()).ToUpper()} {string.Join("", client.LastName.GetTotalPingYin()).ToUpper()},";
  8404. }
  8405. //guestName += $"{client.Pinyin},";
  8406. }
  8407. if (guestName.Length > 0)
  8408. {
  8409. guestName = guestName.Substring(0, guestName.Length - 1);
  8410. }
  8411. }
  8412. else
  8413. {
  8414. guestName = hr.GuestName;
  8415. }
  8416. Bookmark mark = doc.Range.Bookmarks["GName"];
  8417. mark.Text = guestName;
  8418. }
  8419. //房间介绍
  8420. if (doc.Range.Bookmarks["ROOM"] != null)
  8421. {
  8422. Bookmark mark = doc.Range.Bookmarks["ROOM"];
  8423. mark.Text = hr.RoomExplanation;
  8424. }
  8425. //报价描述
  8426. if (doc.Range.Bookmarks["NOTE"] != null)
  8427. {
  8428. Bookmark mark = doc.Range.Bookmarks["NOTE"];
  8429. Sys_SetData ss = _sqlSugar.Queryable<Sys_SetData>().First(a => a.Id == hr.ReservationsWebsite);
  8430. if (ss != null)
  8431. mark.Text = ss.Name;
  8432. }
  8433. //入住时间
  8434. if (doc.Range.Bookmarks["CheckIn"] != null)
  8435. {
  8436. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  8437. Bookmark mark = doc.Range.Bookmarks["CheckIn"];
  8438. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year + " ";
  8439. }
  8440. //退房时间
  8441. if (doc.Range.Bookmarks["CheckOut"] != null)
  8442. {
  8443. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  8444. Bookmark mark = doc.Range.Bookmarks["CheckOut"];
  8445. mark.Text = " " + dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8446. }
  8447. //日期
  8448. if (doc.Range.Bookmarks["DT"] != null)
  8449. {
  8450. Bookmark mark = doc.Range.Bookmarks["DT"];
  8451. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  8452. }
  8453. //名称
  8454. if (doc.Range.Bookmarks["VName"] != null)
  8455. {
  8456. Bookmark mark = doc.Range.Bookmarks["VName"];
  8457. mark.Text = hr.HotelName;
  8458. }
  8459. //号码
  8460. if (doc.Range.Bookmarks["VOUCHERNO"] != null)
  8461. {
  8462. Bookmark mark = doc.Range.Bookmarks["VOUCHERNO"];
  8463. mark.Text = hr.CheckNumber;
  8464. }
  8465. #endregion
  8466. strFileName += "VOUCHER.doc";
  8467. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  8468. doc.Save(fileDir);
  8469. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  8470. return Ok(JsonView(true, "操作成功!", Url));
  8471. }
  8472. else
  8473. {
  8474. return Ok(JsonView(false, "酒店确定号码未填写,无法生成Voucher!"));
  8475. }
  8476. }
  8477. else
  8478. {
  8479. return Ok(JsonView(false, "该条数据已删除或不存在!"));
  8480. }
  8481. }
  8482. catch (Exception ex)
  8483. {
  8484. return Ok(JsonView(false, ex.Message));
  8485. }
  8486. }
  8487. /// <summary>
  8488. /// 酒店预订
  8489. /// 生成VOUCHER
  8490. /// 2024.05.06 之后版本
  8491. /// </summary>
  8492. /// <param name="_dto"></param>
  8493. /// <returns></returns>
  8494. [HttpPost]
  8495. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8496. public async Task<IActionResult> PostHotelReservationsCreateVoucher(HotelReservationsCreateVoucherDto _dto)
  8497. {
  8498. #region 参数验证
  8499. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  8500. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8501. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  8502. #region 团组操作权限验证 76 酒店预定模块
  8503. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8504. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  8505. #endregion
  8506. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8507. #region 页面操作权限验证
  8508. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8509. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8510. #endregion
  8511. #endregion
  8512. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  8513. //判断数据是否完整
  8514. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "请先录入酒店预订信息!", ""));
  8515. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  8516. string strFileName = "HotelStatement/";
  8517. string guestNames = ""; //格式Mr.xxx Ms.xxx
  8518. List<HotelVoucherInfoView> vouchers = new List<HotelVoucherInfoView>();
  8519. #region 数据处理
  8520. List<int> guestIds = new List<int>();
  8521. int index = 0;
  8522. foreach (var item in hrDtas)
  8523. {
  8524. if (item.GuestName.Contains(","))
  8525. {
  8526. string[] guestIdArr = item.GuestName.Split(',');
  8527. foreach (var guestIdStr in guestIdArr)
  8528. {
  8529. bool guestBool = int.TryParse(guestIdStr, out int guestId);
  8530. if (guestBool)
  8531. {
  8532. guestIds.Add(guestId);
  8533. }
  8534. }
  8535. }
  8536. else guestNames += item.GuestName;
  8537. var voucherInfo = new HotelVoucherInfoView()
  8538. {
  8539. HotelName = item.HotelName,
  8540. CheckInDate = item.CheckInDate,
  8541. CheckOutDate = item.CheckOutDate,
  8542. ConfirmationNumber = item.DetermineNo.Trim(),
  8543. RoomType = item.RoomExplanation
  8544. };
  8545. vouchers.Add(voucherInfo);
  8546. }
  8547. if (guestIds.Count > 0)
  8548. {
  8549. guestIds = guestIds.Distinct().ToList();
  8550. var guestDatas = await _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && guestIds.Contains(it.Id)).ToListAsync();
  8551. if (guestDatas.Count > 0)
  8552. {
  8553. guestNames = "";
  8554. foreach (var guest in guestDatas)
  8555. {
  8556. string guestName = "";
  8557. if (guest.Sex == 0) guestName += @"MR.";
  8558. else if (guest.Sex == 1) guestName += @"MS.";
  8559. if (guest.Pinyin == null) guestName += $"{string.Join("", guest.LastName.GetTotalPingYin()).ToUpper()}/{string.Join("", guest.FirstName.GetTotalPingYin()).ToUpper()}";
  8560. else guestName += @$"{guest.Pinyin.Replace(" ", "")}";
  8561. guestNames += @$"{guestName.Trim()}、";
  8562. }
  8563. if (guestNames.Length > 0)
  8564. {
  8565. guestNames = guestNames.Substring(0, guestNames.Length - 1);
  8566. }
  8567. }
  8568. }
  8569. #endregion
  8570. //载入模板
  8571. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/Voucher-2024Versions.docx";
  8572. Document doc = new Document(sss);
  8573. DocumentBuilder builder = new DocumentBuilder(doc);
  8574. if (doc.Range.Bookmarks["GuestName"] != null)
  8575. {
  8576. Bookmark mark = doc.Range.Bookmarks["GuestName"];
  8577. mark.Text = guestNames;
  8578. }
  8579. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  8580. Aspose.Words.Tables.Table table = allTables[0] as Aspose.Words.Tables.Table;
  8581. vouchers = vouchers.OrderBy(it => it.CheckInDate).ToList();
  8582. for (int i = 1; i <= vouchers.Count; i++)
  8583. {
  8584. HotelVoucherInfoView hviv = vouchers[i - 1];
  8585. builder.MoveToCell(0, i, 0, 0);
  8586. builder.Write(hviv.HotelName);
  8587. builder.MoveToCell(0, i, 1, 0);
  8588. builder.Write(hviv.CheckInDate);
  8589. builder.MoveToCell(0, i, 2, 0);
  8590. builder.Write(hviv.CheckOutDate);
  8591. builder.MoveToCell(0, i, 3, 0);
  8592. builder.Write(hviv.RoomType);
  8593. builder.MoveToCell(0, i, 4, 0);
  8594. builder.Write(hviv.ConfirmationNumber);
  8595. }
  8596. //删除多余行
  8597. int currRowIndex = vouchers.Count + 1;
  8598. int delRows = 21 - currRowIndex;
  8599. if (delRows > 0)
  8600. {
  8601. for (int i = 0; i < delRows; i++)
  8602. {
  8603. table.Rows.RemoveAt(currRowIndex);
  8604. //cultivateRowIndex++;
  8605. }
  8606. }
  8607. strFileName += "VOUCHER.docx";
  8608. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  8609. doc.Save(fileDir);
  8610. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  8611. return Ok(JsonView(true, "操作成功!", Url));
  8612. }
  8613. /// <summary>
  8614. /// 酒店预订
  8615. /// 生成 预定成本 Excel
  8616. /// </summary>
  8617. /// <param name="_dto"></param>
  8618. /// <returns></returns>
  8619. [HttpPost]
  8620. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8621. public async Task<IActionResult> PostHotelReservationsPredictedCostFileDownload(HotelReservations_PCFD_DTO _dto)
  8622. {
  8623. #region 参数验证
  8624. var vadalitor = new HotelReservations_PCFD_DTOFoalidator();
  8625. var vadalitorRes = await vadalitor.ValidateAsync(_dto);
  8626. if (!vadalitorRes.IsValid)
  8627. {
  8628. var errors = new StringBuilder();
  8629. foreach (var valid in vadalitorRes.Errors) errors.AppendLine(valid.ErrorMessage);
  8630. return Ok(JsonView(StatusCodes.Status400BadRequest, errors.ToString(), ""));
  8631. }
  8632. #region 团组操作权限验证 76 酒店预定模块
  8633. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8634. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8635. #endregion
  8636. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8637. #region 页面操作权限验证
  8638. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8639. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8640. #endregion
  8641. #endregion
  8642. decimal _rate = 1.00M;
  8643. string _currency = "";
  8644. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.STid == 66).ToList();
  8645. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  8646. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "酒店预订费用未录入,不支持预定成本Excel导出", ""));
  8647. Grp_GroupCostParameter _GroupCostParameter = await _sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).FirstAsync();
  8648. if (_GroupCostParameter == null) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用未录入,不支持预定成本Excel导出", ""));
  8649. if (string.IsNullOrEmpty(_GroupCostParameter.Currency))
  8650. {
  8651. return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用“币种为录入”未录入,不支持预定成本Excel导出", ""));
  8652. }
  8653. _currency = _GroupCostParameter.Currency;
  8654. bool isIntType = int.TryParse(_currency, out int currId);
  8655. if (isIntType)
  8656. {
  8657. _currency = currDatas.Find(it => it.Id == currId)?.Name ?? "";
  8658. }
  8659. var teamRate = await _teamRateRep.PostGroupTeamRateItemByDiIdAndCTableId(1, _dto.DiId, 76);
  8660. var currInfo = teamRate.Find(it => it.CurrencyCode.Equals(_currency));
  8661. if (currInfo == null)
  8662. {
  8663. return Ok(JsonView(StatusCodes.Status400BadRequest, $"团组汇率-->酒店模块 {_currency} 币种未设置汇率,不支持预定成本Excel导出", ""));
  8664. }
  8665. if (!_currency.ToUpper().Equals("CNY"))
  8666. {
  8667. _rate = _GroupCostParameter.Rate;
  8668. }
  8669. _rate = currInfo.Rate;
  8670. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  8671. string strFileName = "HotelStatement/";
  8672. string guestNames = ""; //格式Mr.xxx Ms.xxx
  8673. List<HotelReservations_PCFD_View> pcfds = new List<HotelReservations_PCFD_View>();
  8674. var hotelSubData = _sqlSugar.Queryable<Grp_HotelReservationsContent>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToList();
  8675. var ccpData = _sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && it.DIId == _dto.DiId && it.CTable == 76).ToList();
  8676. #region 数据处理
  8677. foreach (var item in hrDtas)
  8678. {
  8679. var ccpInfo = ccpData.Where(it => it.DIId == _dto.DiId && it.CId == item.Id).First();
  8680. var roomInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 1).FirstOrDefault(); //房费
  8681. var breakfastInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 2).FirstOrDefault(); //早餐
  8682. var governmentRentInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 3).FirstOrDefault(); //地税
  8683. var cityTaxInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 4).FirstOrDefault(); //城市税
  8684. string roomCurr = currDatas.Find(it => it.Id == roomInfo.Currency)?.Name ?? "";
  8685. string singleRoomFeeStr = string.Empty,
  8686. doubleRoomFeeStr = string.Empty,
  8687. suiteRoomFeeStr = string.Empty,
  8688. otherRoomFeeStr = string.Empty,
  8689. payMoneyStr = string.Empty,
  8690. cardPriceStr = string.Empty;
  8691. if (roomCurr.Equals(_currency))
  8692. {
  8693. singleRoomFeeStr = $"{item.SingleRoomPrice.ToString("#0.00")} {_currency}";
  8694. doubleRoomFeeStr = $"{item.DoubleRoomPrice.ToString("#0.00")} {_currency}";
  8695. suiteRoomFeeStr = $"{item.SuiteRoomPrice.ToString("#0.00")} {_currency}";
  8696. otherRoomFeeStr = $"{item.OtherRoomPrice.ToString("#0.00")} {_currency}";
  8697. payMoneyStr = $"{ccpInfo.PayMoney.ToString("#0.00")} {_currency}";
  8698. cardPriceStr = $"{item.CardPrice.ToString("#0.00")} {_currency}";
  8699. }
  8700. else
  8701. {
  8702. singleRoomFeeStr = $"{(item.SingleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SingleRoomPrice.ToString("#0.00")} {roomCurr}";
  8703. doubleRoomFeeStr = $"{(item.DoubleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.DoubleRoomPrice.ToString("#0.00")} {roomCurr}";
  8704. suiteRoomFeeStr = $"{(item.SuiteRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SuiteRoomPrice.ToString("#0.00")} {roomCurr}";
  8705. otherRoomFeeStr = $"{(item.OtherRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.OtherRoomPrice.ToString("#0.00")} {roomCurr}";
  8706. payMoneyStr = $"{(ccpInfo.PayMoney / _rate).ToString("#0.00")} {_currency}\r\n{ccpInfo.PayMoney.ToString("#0.00")} {roomCurr}";
  8707. cardPriceStr = $"{(item.CardPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.CardPrice.ToString("#0.00")} {roomCurr}";
  8708. }
  8709. string breakfastPriceStr = string.Empty,
  8710. breakfastCurrency = currDatas.Find(it => it.Id == item.BreakfastCurrency)?.Name ?? "",
  8711. governmentRentStr = string.Empty,
  8712. governmentRentCurrency = currDatas.Find(it => it.Id == item.GovernmentRentCurrency)?.Name ?? "",
  8713. cityTaxStrStr = string.Empty,
  8714. cityTaxStrCurrency = currDatas.Find(it => it.Id == item.CityTaxCurrency)?.Name ?? "";
  8715. breakfastPriceStr = $"{breakfastInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == breakfastInfo?.Currency)?.Name}";
  8716. governmentRentStr = $"{governmentRentInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == governmentRentInfo?.Currency)?.Name}";
  8717. cityTaxStrStr = $"{cityTaxInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == cityTaxInfo?.Currency)?.Name}";
  8718. pcfds.Add(new HotelReservations_PCFD_View()
  8719. {
  8720. City = item.City,
  8721. HotelName = item.HotelName,
  8722. Date = $"{item.CheckInDate} - {item.CheckOutDate}",
  8723. // SingleRoomCount = item.SingleRoomCount,
  8724. SingleRoomPrice = singleRoomFeeStr,
  8725. // DoubleRoomCount = item.DoubleRoomCount,
  8726. DoubleRoomPrice = doubleRoomFeeStr,
  8727. //SuiteRoomCount = item.SuiteRoomCount,
  8728. SuiteRoomPrice = suiteRoomFeeStr,
  8729. OtherRoomPrice = otherRoomFeeStr,
  8730. //OtherRoomCount = item.OtherRoomCount,
  8731. BreakfastPrice = breakfastPriceStr,
  8732. GovernmentRent = governmentRentStr,
  8733. CityTax = cityTaxStrStr,
  8734. RoomExplanation = item.RoomExplanation,
  8735. PayTypeName = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.Id == roomInfo.PayDId).First()?.Name ?? "",
  8736. PayTime = roomInfo.ConsumptionDate,
  8737. BankNo = roomInfo.BankNo,
  8738. PayMoney = payMoneyStr,
  8739. //PayMoneys = ccpInfo.PayMoney.ToString("#0.00"),
  8740. ConsumptionPatterns = roomInfo.ConsumptionPatterns,
  8741. CardPrice = cardPriceStr,
  8742. Remark = ccpInfo.Remark
  8743. });
  8744. }
  8745. #endregion
  8746. //载入模板
  8747. WorkbookDesigner designer = new WorkbookDesigner();
  8748. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/酒店预订成本.xls");
  8749. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == _dto.DiId).First();
  8750. var userInfo = _sqlSugar.Queryable<Sys_Users>().Where(it => it.Id == hrDtas[0].CreateUserId).First();
  8751. designer.SetDataSource("TourNo", groupInfo.TourCode);
  8752. designer.SetDataSource("TeamName", $"{groupInfo.TeamName} 团组成本币种:{_currency} 团组汇率-->酒店模块汇率:{_rate.ToString("#0.0000")}");
  8753. designer.SetDataSource("Opertor", userInfo.CnName);
  8754. DataTable dt = CommonFun.GetDataTableFromIList<HotelReservations_PCFD_View>(pcfds);
  8755. dt.TableName = "ViewMyHotelReservations";
  8756. designer.SetDataSource(dt);
  8757. designer.Process();
  8758. string fileName = ($"HotelReservation/{groupInfo.TeamName}_酒店预订成本_" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xls").Replace(":", "");
  8759. string serverPath = AppSettingsHelper.Get("ExcelBasePath") + fileName;
  8760. designer.Workbook.Save(serverPath);
  8761. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  8762. #region 删除指定行
  8763. bool singleDel = true, doubleDel = true, suiteDel = true, otherDel = true, zcDel = true, dsDel = true, cssDel = true, cpDel = true, remarkDel = true;
  8764. int singleIndex = dt.Columns["SingleRoomPrice"].Ordinal,
  8765. doubleIndex = dt.Columns["DoubleRoomPrice"].Ordinal,
  8766. suiteIndex = dt.Columns["SuiteRoomPrice"].Ordinal,
  8767. otherIndex = dt.Columns["OtherRoomPrice"].Ordinal,
  8768. zcIndex = dt.Columns["BreakfastPrice"].Ordinal,
  8769. dsIndex = dt.Columns["GovernmentRent"].Ordinal,
  8770. cssIndex = dt.Columns["CityTax"].Ordinal,
  8771. cpIndex = dt.Columns["ConsumptionPatterns"].Ordinal,
  8772. remarkIndex = dt.Columns["Remark"].Ordinal;
  8773. //删除指定列
  8774. foreach (DataRow item in dt.Rows)
  8775. {
  8776. string singleStr = item["SingleRoomPrice"].ToString();
  8777. bool containsDigitButNotZero1 = !singleStr.StartsWith("0") && Regex.IsMatch(singleStr, @"[1-9]");
  8778. if (containsDigitButNotZero1) singleDel = false;
  8779. singleIndex = dt.Columns["SingleRoomPrice"].Ordinal;
  8780. string doubleStr = item["DoubleRoomPrice"].ToString();
  8781. bool containsDigitButNotZero2 = !doubleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  8782. if (containsDigitButNotZero2) doubleDel = false;
  8783. string suiteStr = item["SuiteRoomPrice"].ToString();
  8784. bool containsDigitButNotZero3 = !singleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  8785. if (containsDigitButNotZero3) suiteDel = false;
  8786. string otherStr = item["OtherRoomPrice"].ToString();
  8787. bool containsDigitButNotZero4 = !otherStr.StartsWith("0") && Regex.IsMatch(otherStr, @"[1-9]");
  8788. if (containsDigitButNotZero4) otherDel = false;
  8789. string zcStr = item["BreakfastPrice"].ToString();
  8790. bool containsDigitButNotZero5 = !zcStr.StartsWith("0") && Regex.IsMatch(zcStr, @"[1-9]");
  8791. if (containsDigitButNotZero5) zcDel = false;
  8792. string dsStr = item["GovernmentRent"].ToString();
  8793. bool containsDigitButNotZero6 = !dsStr.StartsWith("0") && Regex.IsMatch(dsStr, @"[1-9]");
  8794. if (containsDigitButNotZero6) dsDel = false;
  8795. string cssStr = item["CityTax"].ToString();
  8796. bool containsDigitButNotZero7 = !cssStr.StartsWith("0") && Regex.IsMatch(cssStr, @"[1-9]");
  8797. if (containsDigitButNotZero7) cssDel = false;
  8798. string cpStr = item["ConsumptionPatterns"].ToString();
  8799. if (!string.IsNullOrEmpty(cpStr)) cpDel = false;
  8800. string remarkStr = item["Remark"].ToString();
  8801. if (!string.IsNullOrEmpty(remarkStr)) remarkDel = false;
  8802. }
  8803. DeleteColumn(serverPath, remarkIndex, remarkDel);
  8804. DeleteColumn(serverPath, cpIndex, cpDel);
  8805. DeleteColumn(serverPath, dsIndex, dsDel);
  8806. DeleteColumn(serverPath, cssIndex, cssDel);
  8807. DeleteColumn(serverPath, zcIndex, zcDel);
  8808. DeleteColumn(serverPath, otherIndex, otherDel);
  8809. DeleteColumn(serverPath, suiteIndex, suiteDel);
  8810. DeleteColumn(serverPath, doubleIndex, doubleDel);
  8811. DeleteColumn(serverPath, singleIndex, singleDel);
  8812. #endregion
  8813. //只保留第一个表格
  8814. DeleteSheet(serverPath);
  8815. return Ok(JsonView(true, "操作成功", url = rst));
  8816. }
  8817. /// <summary>
  8818. /// 删除指定列
  8819. /// </summary>
  8820. /// <param name="file"></param>
  8821. /// <param name="columnIndex"></param>
  8822. /// <param name="isDel"></param>
  8823. private void DeleteColumn(string file, int columnIndex, bool isDel)
  8824. {
  8825. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  8826. //wb.Save(file);
  8827. Aspose.Cells.Worksheet sheet1 = wb.Worksheets[0];
  8828. if (sheet1 != null)
  8829. {
  8830. if (isDel)
  8831. {
  8832. Cells cells = sheet1.Cells;
  8833. cells.DeleteColumn(columnIndex);
  8834. }
  8835. }
  8836. wb.Save(file);
  8837. }
  8838. /// <summary>
  8839. /// 删除sheet
  8840. /// </summary>
  8841. /// <param name="file"></param>
  8842. /// <param name="sheetName"></param>
  8843. private void DeleteSheet(string file, string sheetName = "")
  8844. {
  8845. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  8846. //wb.Save(file);
  8847. List<string> sheets = new List<string>();
  8848. foreach (var item in wb.Worksheets)
  8849. {
  8850. sheets.Add(item.Name);
  8851. }
  8852. if (sheets.Count > 0)
  8853. {
  8854. sheets.RemoveAt(0);//不删除第一个sheet
  8855. foreach (var item in sheets)
  8856. {
  8857. wb.Worksheets.RemoveAt(item);
  8858. }
  8859. }
  8860. wb.Save(file);
  8861. }
  8862. /// <summary>
  8863. /// 酒店预订
  8864. /// 确认单
  8865. /// </summary>
  8866. /// <param name="_dto"></param>
  8867. /// <returns></returns>
  8868. [HttpPost]
  8869. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8870. public async Task<IActionResult> PostHotelReservationsConfirmationSlip(HotelReservationsConfirmationSlipDto _dto)
  8871. {
  8872. try
  8873. {
  8874. #region 参数验证
  8875. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  8876. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8877. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  8878. #region 团组操作权限验证 76 酒店预定模块
  8879. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8880. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  8881. #endregion
  8882. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8883. #region 页面操作权限验证
  8884. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8885. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8886. #endregion
  8887. #endregion
  8888. //团组信息
  8889. Grp_DelegationInfo di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(a => a.Id == _dto.DiId);
  8890. //酒店数据
  8891. List<Grp_HotelReservations> listhoteldata = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(a => a.DiId == _dto.DiId && a.IsDel == 0).ToListAsync();
  8892. if (listhoteldata.Count < 0)
  8893. {
  8894. return Ok(JsonView(StatusCodes.Status400BadRequest, "当前团组暂无酒店预订信息!", ""));
  8895. }
  8896. //利datatable存储
  8897. DataTable dt = new DataTable();
  8898. dt.Columns.Add("CheckInDate", typeof(string));
  8899. dt.Columns.Add("City", typeof(string));
  8900. dt.Columns.Add("Hotel", typeof(string));
  8901. dt.Columns.Add("Room", typeof(string));
  8902. for (int i = 0; i < listhoteldata.Count; i++)
  8903. {
  8904. DateTime dayStart = Convert.ToDateTime(listhoteldata[i].CheckInDate);
  8905. DateTime dayEnd = Convert.ToDateTime(listhoteldata[i].CheckOutDate);
  8906. while (dayStart < dayEnd)
  8907. {
  8908. string temp = "";
  8909. DataRow row = dt.NewRow();
  8910. row["CheckInDate"] = dayStart.ToString("yyyy-MM-dd");
  8911. row["City"] = listhoteldata[i].City;
  8912. row["Hotel"] = listhoteldata[i].HotelName;
  8913. if (listhoteldata[i].SingleRoomCount > 0)
  8914. {
  8915. temp = listhoteldata[i].SingleRoomCount + "个单间" + "\r\n";
  8916. }
  8917. if (listhoteldata[i].DoubleRoomCount > 0)
  8918. {
  8919. temp = temp + listhoteldata[i].DoubleRoomCount + "个标间" + "\r\n";
  8920. }
  8921. if (listhoteldata[i].SuiteRoomCount > 0)
  8922. {
  8923. temp = temp + listhoteldata[i].SuiteRoomCount + "个套房" + "\r\n";
  8924. }
  8925. if (listhoteldata[i].OtherRoomCount > 0)
  8926. {
  8927. temp = temp + listhoteldata[i].OtherRoomCount + "个其他房型" + "\r\n";
  8928. }
  8929. row["Room"] = temp;
  8930. dt.Rows.Add(row);
  8931. dayStart = dayStart.AddDays(1);
  8932. }
  8933. }
  8934. Dictionary<string, string> dic = new Dictionary<string, string>();
  8935. dic.Add("Dele", di.TeamName);
  8936. dic.Add("City", di.VisitCountry);
  8937. //模板路径
  8938. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/酒店用房确认单-模板.doc";
  8939. //载入模板
  8940. Aspose.Words.Document doc = new Aspose.Words.Document(tempPath);
  8941. DocumentBuilder builder = new DocumentBuilder(doc);
  8942. foreach (var key in dic.Keys)
  8943. {
  8944. builder.MoveToBookmark(key);
  8945. builder.Write(dic[key]);
  8946. }
  8947. //获取word里所有表格
  8948. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  8949. //获取所填表格的序数
  8950. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  8951. var rowStart = tableOne.Rows[0]; //获取第1行
  8952. //循环赋值
  8953. for (int i = 0; i < dt.Rows.Count; i++)
  8954. {
  8955. builder.MoveToCell(0, i + 1, 0, 0);
  8956. builder.Write(dt.Rows[i]["CheckInDate"].ToString());
  8957. builder.MoveToCell(0, i + 1, 1, 0);
  8958. builder.Write(dt.Rows[i]["City"].ToString());
  8959. builder.MoveToCell(0, i + 1, 2, 0);
  8960. builder.Write(dt.Rows[i]["Hotel"].ToString());
  8961. builder.MoveToCell(0, i + 1, 3, 0);
  8962. builder.Write(dt.Rows[i]["Room"].ToString());
  8963. }
  8964. //删除多余行
  8965. while (tableOne.Rows.Count > dt.Rows.Count + 1)
  8966. {
  8967. tableOne.Rows.RemoveAt(dt.Rows.Count + 1);
  8968. }
  8969. string strFileName = di.TeamName + "酒店确认单.doc";
  8970. doc.Save(AppSettingsHelper.Get("WordBasePath") + "HotelStatement/" + strFileName);
  8971. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/HotelStatement/" + strFileName;
  8972. return Ok(JsonView(true, "成功", url));
  8973. }
  8974. catch (Exception ex)
  8975. {
  8976. return Ok(JsonView(StatusCodes.Status400BadRequest, ex.Message, ""));
  8977. }
  8978. }
  8979. #endregion
  8980. #region 团组状态
  8981. /// <summary>
  8982. /// 团组状态列表 Page
  8983. /// </summary>
  8984. /// <param name="dto">团组列表请求dto</param>
  8985. /// <returns></returns>
  8986. [HttpPost]
  8987. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8988. public async Task<IActionResult> PostGroupStatusPageList(GroupStatusListDto dto)
  8989. {
  8990. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  8991. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  8992. {
  8993. string sqlWhere = string.Empty;
  8994. if (dto.IsSure == 0) //未完成
  8995. {
  8996. sqlWhere += string.Format(@" And IsSure = 0");
  8997. }
  8998. else if (dto.IsSure == 1) //已完成
  8999. {
  9000. sqlWhere += string.Format(@" And IsSure = 1");
  9001. }
  9002. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  9003. {
  9004. string tj = dto.SearchCriteria;
  9005. 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}%')",
  9006. tj, tj, tj, tj, tj);
  9007. }
  9008. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  9009. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  9010. VisitDate,VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  9011. From (
  9012. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  9013. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  9014. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  9015. VisitDate,VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  9016. From Grp_DelegationInfo gdi
  9017. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  9018. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  9019. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  9020. Where gdi.IsDel = 0 {0}
  9021. ) temp ", sqlWhere);
  9022. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  9023. var _DelegationList = await _sqlSugar.SqlQueryable<GroupStatusView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  9024. return Ok(JsonView(true, "查询成功!", _DelegationList, total));
  9025. }
  9026. else
  9027. {
  9028. return Ok(JsonView(false, "查询失败"));
  9029. }
  9030. }
  9031. /// <summary>
  9032. /// 团组状态
  9033. /// 设置操作完成
  9034. /// </summary>
  9035. /// <param name="dto">团组列表请求dto</param>
  9036. /// <returns></returns>
  9037. [HttpPost]
  9038. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9039. public async Task<IActionResult> PostGroupStatusSetOperationComplete(GroupStatusSetOperationCompleteDto dto)
  9040. {
  9041. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  9042. Grp_DelegationInfo _DelegationInfo = new Grp_DelegationInfo()
  9043. {
  9044. Id = dto.Id,
  9045. IsSure = 1
  9046. };
  9047. var result = await _sqlSugar.Updateable(_DelegationInfo)
  9048. .UpdateColumns(it => new { it.IsSure })
  9049. .WhereColumns(it => new { it.Id })
  9050. .ExecuteCommandAsync();
  9051. if (result > 0)
  9052. {
  9053. return Ok(JsonView(true, "操作完成!"));
  9054. }
  9055. return Ok(JsonView(false, "操作失败!"));
  9056. }
  9057. #endregion
  9058. #region 保险费用录入
  9059. /// <summary>
  9060. /// 根据团组Id查询保险费用列表
  9061. /// </summary>
  9062. /// <param name="dto"></param>
  9063. /// <returns></returns>
  9064. [HttpPost]
  9065. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9066. public async Task<IActionResult> CustomersByDiId(CustomersByDiIdDto dto)
  9067. {
  9068. try
  9069. {
  9070. Result groupData = await _customersRep.CustomersByDiId(dto);
  9071. if (groupData.Code != 0)
  9072. {
  9073. return Ok(JsonView(false, groupData.Msg));
  9074. }
  9075. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9076. }
  9077. catch (Exception ex)
  9078. {
  9079. return Ok(JsonView(false, ex.Message));
  9080. }
  9081. }
  9082. /// <summary>
  9083. /// 根据保险费用Id查询保险费用详细
  9084. /// </summary>
  9085. /// <param name="dto"></param>
  9086. /// <returns></returns>
  9087. [HttpPost]
  9088. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9089. public async Task<IActionResult> CustomersById(CustomersByIdDto dto)
  9090. {
  9091. try
  9092. {
  9093. Result groupData = await _customersRep.CustomersById(dto);
  9094. if (groupData.Code != 0)
  9095. {
  9096. return Ok(JsonView(false, groupData.Msg));
  9097. }
  9098. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9099. }
  9100. catch (Exception ex)
  9101. {
  9102. return Ok(JsonView(false, ex.Message));
  9103. }
  9104. }
  9105. /// <summary>
  9106. /// 保险费用录入页面初始化绑定
  9107. /// </summary>
  9108. /// <param name="dto"></param>
  9109. /// <returns></returns>
  9110. [HttpPost]
  9111. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9112. public async Task<IActionResult> CustomersInitialize(CustomersInitializeDto dto)
  9113. {
  9114. try
  9115. {
  9116. Result groupData = await _customersRep.CustomersInitialize(dto);
  9117. if (groupData.Code != 0)
  9118. {
  9119. return Ok(JsonView(false, groupData.Msg));
  9120. }
  9121. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9122. }
  9123. catch (Exception ex)
  9124. {
  9125. return Ok(JsonView(false, ex.Message));
  9126. }
  9127. }
  9128. /// <summary>
  9129. /// 保险费用操作(Status:1.新增,2.修改)
  9130. /// </summary>
  9131. /// <param name="dto"></param>
  9132. /// <returns></returns>
  9133. [HttpPost]
  9134. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9135. public async Task<IActionResult> OpCustomers(OpCustomersDto dto)
  9136. {
  9137. try
  9138. {
  9139. Result groupData = await _customersRep.OpCustomers(dto);
  9140. if (groupData.Code != 0)
  9141. {
  9142. return Ok(JsonView(false, groupData.Msg));
  9143. }
  9144. #region 应用推送
  9145. try
  9146. {
  9147. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  9148. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  9149. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  9150. }
  9151. catch (Exception ex)
  9152. {
  9153. }
  9154. #endregion
  9155. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9156. }
  9157. catch (Exception ex)
  9158. {
  9159. return Ok(JsonView(false, ex.Message));
  9160. }
  9161. }
  9162. /// <summary>
  9163. /// 保险文件上传
  9164. /// </summary>
  9165. /// <param name="file"></param>
  9166. /// <returns></returns>
  9167. [HttpPost]
  9168. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9169. public async Task<IActionResult> UploadCus(IFormFile file)
  9170. {
  9171. try
  9172. {
  9173. if (file != null)
  9174. {
  9175. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  9176. //文件名称
  9177. string projectFileName = file.FileName;
  9178. //上传的文件的路径
  9179. string filePath = "";
  9180. if (!Directory.Exists(fileDir))
  9181. {
  9182. Directory.CreateDirectory(fileDir);
  9183. }
  9184. //上传的文件的路径
  9185. filePath = fileDir + $@"\保险费用文件上传\{projectFileName}";
  9186. using (FileStream fs = System.IO.File.Create(filePath))
  9187. {
  9188. file.CopyTo(fs);
  9189. fs.Flush();
  9190. }
  9191. return Ok(JsonView(true, "上传成功!", projectFileName));
  9192. }
  9193. else
  9194. {
  9195. return Ok(JsonView(false, "上传失败!"));
  9196. }
  9197. }
  9198. catch (Exception ex)
  9199. {
  9200. return Ok(JsonView(false, "程序错误!"));
  9201. throw;
  9202. }
  9203. }
  9204. /// <summary>
  9205. /// 保险删除指定文件
  9206. /// </summary>
  9207. /// <param name="dto"></param>
  9208. /// <returns></returns>
  9209. [HttpPost]
  9210. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9211. public async Task<IActionResult> DelFileCus(DelFileDto dto)
  9212. {
  9213. try
  9214. {
  9215. string filePath = "";
  9216. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  9217. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  9218. //int id = 0;
  9219. filePath = fileDir + "/保险费用文件上传/" + dto.fileName;
  9220. // 删除该文件
  9221. try
  9222. {
  9223. System.IO.File.Delete(filePath);
  9224. 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()
  9225. {
  9226. Attachment = "",
  9227. }).ExecuteCommandAsync();
  9228. if (result != 0)
  9229. {
  9230. return Ok(JsonView(true, "成功!"));
  9231. }
  9232. else
  9233. {
  9234. return Ok(JsonView(false, "失败!"));
  9235. }
  9236. }
  9237. catch (Exception)
  9238. {
  9239. 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()
  9240. {
  9241. Attachment = "",
  9242. }).ExecuteCommandAsync();
  9243. if (result != 0)
  9244. {
  9245. return Ok(JsonView(true, "成功!"));
  9246. }
  9247. else
  9248. {
  9249. return Ok(JsonView(false, "失败!"));
  9250. }
  9251. }
  9252. }
  9253. catch (Exception ex)
  9254. {
  9255. return Ok(JsonView(false, "程序错误!"));
  9256. throw;
  9257. }
  9258. }
  9259. /// <summary>
  9260. /// 保险费用操作(删除)
  9261. /// </summary>
  9262. /// <param name="dto"></param>
  9263. /// <returns></returns>
  9264. [HttpPost]
  9265. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9266. public async Task<IActionResult> DelCustomers(DelBaseDto dto)
  9267. {
  9268. try
  9269. {
  9270. var res = await _customersRep.SoftDeleteByIdAsync<Grp_Customers>(dto.Id.ToString(), dto.DeleteUserId);
  9271. if (!res)
  9272. {
  9273. return Ok(JsonView(false, "删除失败"));
  9274. }
  9275. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 82).SetColumns(a => new Grp_CreditCardPayment()
  9276. {
  9277. IsDel = 1,
  9278. DeleteUserId = dto.DeleteUserId,
  9279. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  9280. }).ExecuteCommandAsync();
  9281. return Ok(JsonView(true, "删除成功!"));
  9282. }
  9283. catch (Exception ex)
  9284. {
  9285. return Ok(JsonView(false, "程序错误!"));
  9286. throw;
  9287. }
  9288. }
  9289. #endregion
  9290. #region 接团客户名单 PageId 104
  9291. /// <summary>
  9292. /// 接团客户名单
  9293. /// 迁移数据(慎用!)
  9294. /// </summary>
  9295. /// <param name="dto"></param>
  9296. /// <returns></returns>
  9297. [HttpPost]
  9298. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9299. public async Task<IActionResult> PostTourClientListChange()
  9300. {
  9301. try
  9302. {
  9303. _sqlSugar.ChangeDatabase(DBEnum.OA2014DB);
  9304. //var groupClinetData1
  9305. string sql = string.Format($"Select * From DeleClient Where Isdel = 0");
  9306. var oldOAClientList = await _sqlSugar.SqlQueryable<OA2021_DeleClient>(sql).Where(it => it.Isdel == 0).ToListAsync();
  9307. int updateCount = 0;
  9308. if (oldOAClientList.Count > 0)
  9309. {
  9310. _sqlSugar.ChangeDatabase(DBEnum.OA2023DB);
  9311. _sqlSugar.BeginTran();
  9312. var clientComInfos = _sqlSugar.Queryable<Crm_CustomerCompany>().Where(it => it.IsDel == 0).ToList();
  9313. var clientInfos = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0).ToList();
  9314. foreach (var item in oldOAClientList)
  9315. {
  9316. int comId = 0;
  9317. string format = "yyyy-MM-dd HH:mm:ss";
  9318. string data11 = "1990-01-01 00:00";
  9319. var data1 = IsValidDate(item.OPdate, format);
  9320. if (data1) data11 = item.OPdate;
  9321. //客户公司验证
  9322. if (!string.IsNullOrEmpty(item.Company))
  9323. {
  9324. var clientComInfo = clientComInfos.Where(it => it.CompanyFullName.Equals(item.Company)).FirstOrDefault();
  9325. if (clientComInfo == null) // add
  9326. {
  9327. var addInfo = new Crm_CustomerCompany()
  9328. {
  9329. CompanyAbbreviation = "",
  9330. CompanyFullName = item.Company,
  9331. Address = "",
  9332. PostCodes = "",
  9333. LastedOpUserId = item.OPer,
  9334. LastedOpDt = Convert.ToDateTime(data11),
  9335. CreateUserId = item.OPer,
  9336. CreateTime = Convert.ToDateTime(data11),
  9337. IsDel = 0
  9338. };
  9339. var comId1 = _sqlSugar.Insertable<Crm_CustomerCompany>(addInfo).ExecuteReturnIdentity();
  9340. if (comId1 > 0) comId = comId1;
  9341. }
  9342. else comId = clientComInfo.Id;
  9343. }
  9344. //客户人员验证
  9345. int clientId = 0;
  9346. string name = item.LastName + item.Name;
  9347. if (!string.IsNullOrEmpty(name))
  9348. {
  9349. var clientInfo = clientInfos.Where(it => (it.LastName + it.FirstName).Equals(name)).FirstOrDefault();
  9350. if (clientInfo == null)
  9351. {
  9352. DateTime? dateTime = null;
  9353. var isDt = DateTime.TryParse(item.Birthday, out DateTime birthDayDt);
  9354. if (isDt) dateTime = birthDayDt;
  9355. var addInfo1 = new Crm_DeleClient()
  9356. {
  9357. CrmCompanyId = comId,
  9358. DiId = -1,
  9359. LastName = item.LastName,
  9360. FirstName = item.Name,
  9361. OldName = "",
  9362. Pinyin = item.Pinyin,
  9363. Sex = item.Sex == "男" ? 0 : item.Sex == "女" ? 1 : -1,
  9364. Marriage = 0,
  9365. Phone = item.Phone,
  9366. Job = item.Job,
  9367. BirthDay = dateTime
  9368. };
  9369. var clientId1 = _sqlSugar.Insertable<Crm_DeleClient>(addInfo1).ExecuteReturnIdentity();
  9370. if (clientId1 > 0) clientId = clientId1;
  9371. }
  9372. else clientId = clientInfo.Id;
  9373. }
  9374. if (clientId < 1)
  9375. {
  9376. continue;
  9377. }
  9378. int airType = 0;
  9379. if (item.AirType == "超经舱") airType = 459;
  9380. else if (item.AirType == "公务舱") airType = 458;
  9381. else if (item.AirType == "经济舱") airType = 460;
  9382. else if (item.AirType == "其他") airType = 565;
  9383. else if (item.AirType == "头等舱") airType = 457;
  9384. var _TourClientListEntity = new Grp_TourClientList()
  9385. {
  9386. DiId = item.Diid,
  9387. ClientId = clientId,
  9388. CreateUserId = item.OPer,
  9389. CreateTime = Convert.ToDateTime(data11),
  9390. Remark = item.Remark,
  9391. IsDel = item.Isdel,
  9392. ShippingSpaceTypeId = airType,
  9393. ShippingSpaceSpecialNeeds = item.AirRemark,
  9394. HotelSpecialNeeds = item.RoomType
  9395. };
  9396. var _TourClientList = _sqlSugar.Insertable<Grp_TourClientList>(_TourClientListEntity).ExecuteCommand();
  9397. if (_TourClientList > 0)
  9398. {
  9399. updateCount++;
  9400. }
  9401. }
  9402. _sqlSugar.CommitTran();
  9403. }
  9404. return Ok(JsonView(true, $"更新条数:{updateCount}条"));
  9405. }
  9406. catch (Exception ex)
  9407. {
  9408. _sqlSugar.RollbackTran();
  9409. return Ok(JsonView(false, ex.Message));
  9410. }
  9411. return Ok(JsonView(true));
  9412. }
  9413. private bool IsValidDate(string dateString, string format)
  9414. {
  9415. DateTime dateValue;
  9416. bool valid = DateTime.TryParseExact(dateString, format, CultureInfo.InvariantCulture, DateTimeStyles.None, out dateValue);
  9417. return valid;
  9418. }
  9419. /// <summary>
  9420. /// 接团客户名单
  9421. /// 根据团组Id查询List
  9422. /// </summary>
  9423. /// <param name="dto"></param>
  9424. /// <returns></returns>
  9425. [HttpPost]
  9426. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9427. public async Task<IActionResult> PostTourClientListByDiId(TourClientListByDiIdDto _dto)
  9428. {
  9429. #region 参数验证
  9430. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId"));
  9431. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9432. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId!"));
  9433. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9434. #region 页面操作权限验证
  9435. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9436. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9437. #endregion
  9438. #endregion
  9439. var viewData = await _tourClientListRep._ItemByDiId(_dto.PortType, _dto.DiId);
  9440. if (viewData.Code != 0)
  9441. {
  9442. return Ok(JsonView(false, viewData.Msg));
  9443. }
  9444. return Ok(JsonView(viewData.Data));
  9445. }
  9446. /// <summary>
  9447. /// 接团客户名单
  9448. /// 基础数据 Init
  9449. /// </summary>
  9450. /// <param name="_dto"></param>
  9451. /// <returns></returns>
  9452. [HttpPost]
  9453. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9454. public async Task<IActionResult> PostTourClientListBasicDataInit(TourClientListBasicDataInitDto _dto)
  9455. {
  9456. #region 参数验证
  9457. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9458. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9459. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9460. #region 页面操作权限验证
  9461. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9462. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9463. #endregion
  9464. #endregion
  9465. var viewData = await _tourClientListRep._BasicDataInit(_dto.PortType);
  9466. if (viewData.Code != 0)
  9467. {
  9468. return Ok(JsonView(false, viewData.Msg));
  9469. }
  9470. return Ok(JsonView(viewData.Data));
  9471. }
  9472. /// <summary>
  9473. /// 接团客户名单
  9474. /// 根据 Id查询 Details
  9475. /// </summary>
  9476. /// <param name="_dto"></param>
  9477. /// <returns></returns>
  9478. [HttpPost]
  9479. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9480. public async Task<IActionResult> PostTourClientListDetails(TourClientListDetailsDto _dto)
  9481. {
  9482. #region 参数验证
  9483. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9484. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9485. if (_dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  9486. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9487. #region 页面操作权限验证
  9488. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9489. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9490. #endregion
  9491. #endregion
  9492. var viewData = await _tourClientListRep._Details(_dto.PortType, _dto.Id);
  9493. if (viewData.Code != 0)
  9494. {
  9495. return Ok(JsonView(false, viewData.Msg));
  9496. }
  9497. return Ok(JsonView(viewData.Data));
  9498. }
  9499. /// <summary>
  9500. /// 接团客户名单
  9501. /// Add Or Edit
  9502. /// </summary>
  9503. /// <param name="_dto"></param>
  9504. /// <returns></returns>
  9505. [HttpPost]
  9506. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9507. public async Task<IActionResult> PostTourClientListAddOrEdit(TourClientListAddOrEditDto _dto)
  9508. {
  9509. #region 参数验证
  9510. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9511. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9512. if (_dto.Id < 0) return Ok(JsonView(false, "请传入有效的Id参数!"));
  9513. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9514. #region 页面操作权限验证
  9515. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9516. if (_dto.Id == 0) //添加
  9517. {
  9518. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  9519. }
  9520. else if (_dto.Id >= 0) //修改
  9521. {
  9522. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  9523. }
  9524. #endregion
  9525. #endregion
  9526. var viewData = await _tourClientListRep._AddOrEdit(_dto);
  9527. if (viewData.Code != 0)
  9528. {
  9529. return Ok(JsonView(false, viewData.Msg));
  9530. }
  9531. return Ok(JsonView(true));
  9532. }
  9533. /// <summary>
  9534. /// 接团客户名单
  9535. /// AddMultiple(添加多个)
  9536. /// </summary>
  9537. /// <param name="_dto"></param>
  9538. /// <returns></returns>
  9539. [HttpPost]
  9540. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9541. public async Task<IActionResult> PostTourClientListAddMultiple(TourClientListAddMultipleDto _dto)
  9542. {
  9543. #region 参数验证
  9544. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9545. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9546. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9547. #region 页面操作权限验证
  9548. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9549. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  9550. #endregion
  9551. #endregion
  9552. var viewData = await _tourClientListRep._AddMultiple(_dto);
  9553. if (viewData.Code != 0)
  9554. {
  9555. return Ok(JsonView(false, viewData.Msg));
  9556. }
  9557. return Ok(JsonView(true));
  9558. }
  9559. /// <summary>
  9560. /// 接团客户名单
  9561. /// Del
  9562. /// </summary>
  9563. /// <param name="_dto"></param>
  9564. /// <returns></returns>
  9565. [HttpPost]
  9566. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9567. public async Task<IActionResult> PostTourClientListDel(TourClientListDelDto _dto)
  9568. {
  9569. #region 参数验证
  9570. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9571. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9572. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9573. #region 页面操作权限验证
  9574. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9575. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  9576. #endregion
  9577. #endregion
  9578. var viewData = await _tourClientListRep._Del(_dto.Id, _dto.UserId);
  9579. if (viewData.Code != 0)
  9580. {
  9581. return Ok(JsonView(false, viewData.Msg));
  9582. }
  9583. return Ok(JsonView(true));
  9584. }
  9585. /// <summary>
  9586. /// 接团客户名单
  9587. /// 文件下载 客户名单
  9588. /// </summary>
  9589. /// <param name="_dto"></param>
  9590. /// <returns></returns>
  9591. [HttpPost]
  9592. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9593. public async Task<IActionResult> PostTourClientListDownloadFile(PostTourClientListDownloadFile _dto)
  9594. {
  9595. #region 参数验证
  9596. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9597. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9598. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数"));
  9599. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9600. #region 页面操作权限验证
  9601. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9602. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9603. #endregion
  9604. #endregion
  9605. string clientSql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  9606. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  9607. From Grp_TourClientList tcl
  9608. Left Join
  9609. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  9610. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  9611. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  9612. From Crm_DeleClient dc
  9613. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  9614. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  9615. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  9616. Where dc.IsDel = 0) temp
  9617. On temp.DcId =tcl.ClientId
  9618. Where tcl.IsDel = 0 And tcl.DiId = {0}", _dto.DiId);
  9619. List<TourClientListDetailsView> DcList = await _sqlSugar.SqlQueryable<TourClientListDetailsView>(clientSql).ToListAsync();
  9620. if (DcList.Count < 0) return Ok(JsonView(false, "该团未录入客户名单!"));
  9621. //载入模板
  9622. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/dwon_团组人员列表模板.doc";
  9623. if (_dto.Language == 1)
  9624. {
  9625. tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/EN_Down_团组人员列表模板.doc";
  9626. }
  9627. //载入模板
  9628. var doc = new Document(tempPath);
  9629. DocumentBuilder builder = new DocumentBuilder(doc);
  9630. //获取word里所有表格
  9631. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  9632. //获取所填表格的序数
  9633. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  9634. var rowStart = tableOne.Rows[0]; //获取第1行
  9635. if (_dto.Language == 0)
  9636. {
  9637. //循环赋值
  9638. for (int i = 0; i < DcList.Count; i++)
  9639. {
  9640. builder.MoveToCell(0, i + 1, 0, 0);
  9641. builder.Write(DcList[i].LastName + DcList[i].FirstName);
  9642. builder.MoveToCell(0, i + 1, 1, 0);
  9643. int sex = DcList[i].Sex;
  9644. string sexStr = string.Empty;
  9645. if (sex == 0) sexStr = "男";
  9646. else if (sex == 1) sexStr = "女";
  9647. else sexStr = "未设置";
  9648. builder.Write(sexStr);
  9649. builder.MoveToCell(0, i + 1, 2, 0);
  9650. string birthDay = DcList[i].BirthDay;
  9651. string birthDayStr = string.Empty;
  9652. if (!string.IsNullOrEmpty(birthDay))
  9653. {
  9654. birthDayStr = Convert.ToDateTime(birthDay).ToString("yyyy-MM-dd");
  9655. }
  9656. builder.Write(birthDayStr);
  9657. builder.MoveToCell(0, i + 1, 3, 0);
  9658. string company = "";
  9659. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  9660. {
  9661. company = DcList[i].CompanyFullName.ToString();
  9662. }
  9663. builder.Write(company);
  9664. builder.MoveToCell(0, i + 1, 4, 0);
  9665. builder.Write(DcList[i].Job);
  9666. }
  9667. }
  9668. else if (_dto.Language == 1)
  9669. {
  9670. List<Res_PositionEnglishComparison> listPEC = _setDataRep.Query<Res_PositionEnglishComparison>(s => s.IsDel == 0).ToList();
  9671. List<Res_CompanyEnglishComparison> listCEC = _setDataRep.Query<Res_CompanyEnglishComparison>(s => s.IsDel == 0).ToList();
  9672. //循环赋值
  9673. for (int i = 0; i < DcList.Count; i++)
  9674. {
  9675. string PYName = "";
  9676. if (DcList[i].Pinyin.Length > 0 && DcList[i].Pinyin.IndexOf('/') > -1)
  9677. {
  9678. string PY_Last = DcList[i].Pinyin.Split('/')[0];
  9679. string PY_First = DcList[i].Pinyin.Split('/')[1];
  9680. PYName = PY_First + " " + PY_Last;
  9681. }
  9682. else
  9683. {
  9684. string PY_Last = DcList[i].LastName.GetTotalPingYin().Count > 0 ? DcList[i].LastName.GetTotalPingYin()[0].ToUpper() : "";
  9685. string PY_First = DcList[i].FirstName.GetTotalPingYin().Count > 0 ? DcList[i].FirstName.GetTotalPingYin()[0].ToUpper() : "";
  9686. PYName = PY_First + " " + PY_Last;
  9687. }
  9688. builder.MoveToCell(0, i + 1, 0, 0);
  9689. builder.Write(PYName);
  9690. string sex = DcList[i].Sex == 0 ? "Male" : DcList[i].Sex == 1 ? "Female" : "";
  9691. builder.MoveToCell(0, i + 1, 1, 0);
  9692. builder.Write(sex);
  9693. DateTime birthDt;
  9694. bool b_birth = DateTime.TryParse(DcList[i].BirthDay, out birthDt);
  9695. string birthday = b_birth ? birthDt.ToString("yyyy-MM-dd") : "";
  9696. builder.MoveToCell(0, i + 1, 2, 0);
  9697. builder.Write(birthday);
  9698. string company = "";
  9699. try
  9700. {
  9701. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  9702. {
  9703. //查询对照表
  9704. Res_CompanyEnglishComparison tempCec = listCEC.FirstOrDefault(s => s.zhName.Contains(DcList[i].CompanyFullName.ToString().Trim()));
  9705. if (tempCec != null)
  9706. {
  9707. company = tempCec.enName;
  9708. }
  9709. //翻译
  9710. else
  9711. {
  9712. company = await YouDaoApiTools.GetOCR_ReTrans(DcList[i].CompanyFullName.ToString().Trim());
  9713. }
  9714. }
  9715. }
  9716. catch (Exception)
  9717. {
  9718. }
  9719. builder.MoveToCell(0, i + 1, 3, 0);
  9720. builder.Write(company);
  9721. string job = "";
  9722. try
  9723. {
  9724. if (!string.IsNullOrEmpty(DcList[i].Job.ToString()))
  9725. {
  9726. //查询对照表
  9727. Res_PositionEnglishComparison tempPec = listPEC.FirstOrDefault(s => s.zhName == DcList[i].Job.ToString().Trim());
  9728. if (tempPec != null)
  9729. {
  9730. job = tempPec.enName;
  9731. }
  9732. //翻译
  9733. else
  9734. {
  9735. job = await YouDaoApiTools.GetOCR_ReTrans(DcList[i].Job.ToString().Trim());
  9736. }
  9737. }
  9738. }
  9739. catch (Exception ex)
  9740. {
  9741. }
  9742. builder.MoveToCell(0, i + 1, 4, 0);
  9743. builder.Write(job);
  9744. }
  9745. }
  9746. //删除多余行
  9747. while (tableOne.Rows.Count > DcList.Count + 1)
  9748. {
  9749. tableOne.Rows.RemoveAt(DcList.Count + 1);
  9750. }
  9751. string fileName = "组团人员名单(" + DateTime.Now.ToString("yyyyhhddHHmmss") + ").doc";
  9752. var fileDir = AppSettingsHelper.Get("WordBasePath") + "TourClientList/" + fileName;
  9753. doc.Save(fileDir);
  9754. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/TourClientList/" + fileName;
  9755. return Ok(JsonView(true, "操作成功!", Url));
  9756. }
  9757. #endregion
  9758. #region 团组倒推表
  9759. /// <summary>
  9760. /// 倒推表基础数据
  9761. /// Init
  9762. /// </summary>
  9763. /// <param name="dto"></param>
  9764. /// <returns></returns>
  9765. [HttpPost]
  9766. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9767. public async Task<IActionResult> PostInvertedListInit()
  9768. {
  9769. var viewData = await _invertedListRep._Init();
  9770. if (viewData.Code != 0)
  9771. {
  9772. return Ok(JsonView(false, viewData.Msg));
  9773. }
  9774. return Ok(JsonView(viewData.Data));
  9775. }
  9776. /// <summary>
  9777. /// 倒推表
  9778. /// Info
  9779. /// </summary>
  9780. /// <param name="dto"></param>
  9781. /// <returns></returns>
  9782. [HttpPost]
  9783. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9784. public async Task<IActionResult> PostInvertedListInfo(InvertedListCreateDto dto)
  9785. {
  9786. var viewData = await _invertedListRep._Info(dto.PortType, dto.DiId);
  9787. if (viewData.Code != 0)
  9788. {
  9789. return Ok(JsonView(false, viewData.Msg));
  9790. }
  9791. return Ok(JsonView(viewData.Data));
  9792. }
  9793. /// <summary>
  9794. /// 倒推表
  9795. /// Create
  9796. /// </summary>
  9797. /// <param name="dto"></param>
  9798. /// <returns></returns>
  9799. [HttpPost]
  9800. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9801. public async Task<IActionResult> PostInvertedListCreate(InvertedListCreateDto dto)
  9802. {
  9803. var viewData = await _invertedListRep._Create(dto.PortType, dto.DiId);
  9804. if (viewData.Code != 0)
  9805. {
  9806. return Ok(JsonView(false, viewData.Msg));
  9807. }
  9808. return Ok(JsonView(viewData.Data));
  9809. }
  9810. /// <summary>
  9811. /// 倒推表
  9812. /// Update
  9813. /// </summary>
  9814. /// <param name="dto"></param>
  9815. /// <returns></returns>
  9816. [HttpPost]
  9817. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9818. public async Task<IActionResult> PostInvertedListUpdate(InvertedListUpdateDto dto)
  9819. {
  9820. var viewData = await _invertedListRep._Update(dto);
  9821. if (viewData.Code != 0)
  9822. {
  9823. return Ok(JsonView(false, viewData.Msg));
  9824. }
  9825. return Ok(JsonView(viewData.Data));
  9826. }
  9827. /// <summary>
  9828. /// 倒推表
  9829. /// File Download
  9830. /// </summary>
  9831. /// <param name="dto"></param>
  9832. /// <returns></returns>
  9833. [HttpPost]
  9834. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9835. public async Task<IActionResult> PostInvertedListFileDownload(InvertedListFileDownloadDto dto)
  9836. {
  9837. var info2 = await _invertedListRep._Info(1, dto.DiId);
  9838. if (info2.Code != 0)
  9839. {
  9840. return Ok(JsonView(false, "倒推表数据未生成,请先生成倒退表数据!"));
  9841. }
  9842. var info1 = info2.Data as InvertedListInfoView;
  9843. var info = await _invertedListRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == dto.DiId).FirstAsync();
  9844. string teamName = "";
  9845. if (info != null) teamName = info.TeamName;
  9846. //载入模板
  9847. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/倒退表模板20200617.doc");
  9848. DocumentBuilder builder = new DocumentBuilder(doc);
  9849. //利用键值对存放数据
  9850. Dictionary<string, string> dic = new Dictionary<string, string>();
  9851. dic.Add("TeamName", teamName);
  9852. dic.Add("StartTime", info1.AirportdDropOffDt.ConvertToDatetime()); //开始时间
  9853. dic.Add("BPtime", info1.ApprovalDataDt.ConvertToDatetime());
  9854. dic.Add("BPRemark", info1.ApprovalDataRemark);
  9855. dic.Add("SQtime", info1.ApprovalDt.ConvertToDatetime());
  9856. dic.Add("SQRemark", info1.ApprovalRemark);
  9857. dic.Add("CPJtime", info1.IssueApprovalDt.ConvertToDatetime());
  9858. dic.Add("CPJRemark", info1.IssueApprovalRemark);
  9859. //dic.Add("HZtime", info1.ApplyPassportDt.ConvertToDatetime());
  9860. //dic.Add("HZRemark", info1.ApplyPassportRemark);
  9861. dic.Add("QZtime", info1.VisaInformationDt.ConvertToDatetime());
  9862. dic.Add("QZRemark", info1.VisaInformationRemark);
  9863. dic.Add("SQQZtime", info1.SendVisaDt.ConvertToDatetime());
  9864. dic.Add("SQQZRemark", info1.SendVisaRemark);
  9865. dic.Add("CQtime", info1.IssueVisaDt.ConvertToDatetime());
  9866. dic.Add("CQRemark", info1.IssueVisaRemark);
  9867. dic.Add("XQHtime", info1.PreTripMeetingDt.ConvertToDatetime());
  9868. dic.Add("XQHRemark", info1.PreTripMeetingRemark);
  9869. dic.Add("SJtime", info1.AirportdDropOffDt.ConvertToDatetime());
  9870. dic.Add("SJRemark", info1.AirportdDropOffRemark);
  9871. #region 填充word模板书签内容
  9872. foreach (var key in dic.Keys)
  9873. {
  9874. builder.MoveToBookmark(key);
  9875. builder.Write(dic[key]);
  9876. }
  9877. #endregion
  9878. var fileDir = AppSettingsHelper.Get("WordBasePath");
  9879. string fileName = $"{teamName}团出行准备流程表.doc";
  9880. string filePath = fileDir + $@"InvertedList/{fileName}";
  9881. doc.Save(filePath);
  9882. string Url = $@"{AppSettingsHelper.Get("WordBaseUrl")}Office/Word/InvertedList/{fileName}";
  9883. return Ok(JsonView(true, "操作成功!", Url));
  9884. }
  9885. #endregion
  9886. #region 三公签证费用(签证费、代办费)
  9887. /// <summary>
  9888. /// 三公签证费用(签证费、代办费)
  9889. /// List
  9890. /// </summary>
  9891. /// <returns></returns>
  9892. [HttpPost]
  9893. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9894. public async Task<IActionResult> PostVisaFeeList(VisaFeeListDto _dto)
  9895. {
  9896. var _view = await _visaFeeInfoRep._List(_dto.PortType, _dto.DiId);
  9897. if (_view.Code != 0)
  9898. {
  9899. return Ok(JsonView(false, _view.Msg));
  9900. }
  9901. return Ok(JsonView(true, "操作成功!", _view.Data));
  9902. }
  9903. /// <summary>
  9904. /// 三公签证费用(签证费、代办费)
  9905. /// Add Or Update
  9906. /// </summary>
  9907. /// <returns></returns>
  9908. [HttpPost]
  9909. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9910. public async Task<IActionResult> PostVisaFeeAddAndUpdate(VisaFeeAddAndUpdateDto _dto)
  9911. {
  9912. var _view = await _visaFeeInfoRep._Update(_dto);
  9913. if (_view.Code != 0)
  9914. {
  9915. return Ok(JsonView(false, _view.Msg));
  9916. }
  9917. return Ok(JsonView(true, _view.Msg));
  9918. }
  9919. #endregion
  9920. #region 酒店询价
  9921. /// <summary>
  9922. /// 酒店询价
  9923. /// Init
  9924. /// </summary>
  9925. /// <param name="dto"></param>
  9926. /// <returns></returns>
  9927. [HttpPost]
  9928. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9929. public async Task<IActionResult> PostHotelInquiryInit()
  9930. {
  9931. var res = await _hotelInquiryRep._Init();
  9932. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  9933. return Ok(JsonView(true, res.Msg, res.Data));
  9934. }
  9935. /// <summary>
  9936. /// 酒店询价
  9937. /// page Item
  9938. /// </summary>
  9939. /// <param name="_dto"></param>
  9940. /// <returns></returns>
  9941. [HttpPost]
  9942. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9943. public async Task<IActionResult> PostHotelInquiryPageItem(HotelInquiryPageItemDto _dto)
  9944. {
  9945. var res = await _hotelInquiryRep._PageItem(_dto.PageIndex, _dto.PageSize, _dto.PortType, _dto.DiId);
  9946. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  9947. var view = res.Data as PageDataViewBase;
  9948. return Ok(JsonView(true, res.Msg, view.Data, view.Total));
  9949. }
  9950. /// <summary>
  9951. /// 酒店询价
  9952. /// info
  9953. /// </summary>
  9954. /// <param name="_dto"></param>
  9955. /// <returns></returns>
  9956. [HttpPost]
  9957. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9958. public async Task<IActionResult> PostHotelInquiryInfo(HotelInquiryInfoDto _dto)
  9959. {
  9960. var res = await _hotelInquiryRep._Info(_dto.PortType, _dto.Id);
  9961. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  9962. return Ok(JsonView(true, res.Msg, res.Data));
  9963. }
  9964. /// <summary>
  9965. /// 酒店询价
  9966. /// Add Or Edit
  9967. /// </summary>
  9968. /// <param name="_dto"></param>
  9969. /// <returns></returns>
  9970. [HttpPost]
  9971. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9972. public async Task<IActionResult> PostHotelInquiryAddOrEdit(HotelInquiryAddOrEditDto _dto)
  9973. {
  9974. var res = await _hotelInquiryRep._AddOrEdit(_dto);
  9975. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  9976. return Ok(JsonView(true, res.Msg, res.Data));
  9977. }
  9978. /// <summary>
  9979. /// 酒店询价
  9980. /// Del
  9981. /// </summary>
  9982. /// <param name="_dto"></param>
  9983. /// <returns></returns>
  9984. [HttpPost]
  9985. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9986. public async Task<IActionResult> PostHotelInquiryDel(HotelInquiryDelDto _dto)
  9987. {
  9988. var res = await _hotelInquiryRep._Del(_dto.Id, _dto.DeleteUserId);
  9989. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  9990. return Ok(JsonView(true, res.Msg, res.Data));
  9991. }
  9992. #endregion
  9993. #region 下载匹配op行程单
  9994. /// <summary>
  9995. /// 匹配op行程单
  9996. /// Init
  9997. /// </summary>
  9998. /// <param name="dto">团组列表请求dto</param>
  9999. /// <returns></returns>
  10000. [HttpPost]
  10001. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10002. public async Task<IActionResult> PostMateOpGroupInit(MateOpGroupInitDto dto)
  10003. {
  10004. Stopwatch stopwatch = Stopwatch.StartNew(); // 创建并启动Stopwatch
  10005. if (dto.CurrUserId < 1) return Ok(JsonView(false, MsgTips.UserId));
  10006. bool isDepStatus = await GeneralMethod.IsMarketingStaff(dto.CurrUserId);
  10007. List<Grp_DelegationInfo> groupInfos = new List<Grp_DelegationInfo>();
  10008. groupInfos = _sqlSugar.Queryable<Grp_DelegationInfo>()
  10009. .Where(it => it.IsDel == 0)
  10010. .WhereIF(isDepStatus, it => it.JietuanOperator == dto.CurrUserId)
  10011. .OrderByDescending(it => it.CreateUserId)
  10012. .ToList();
  10013. if (groupInfos.Count < 1) return Ok(JsonView(false,"暂无和你相关的团组信息!"));
  10014. var country = groupInfos.Select(it => it.VisitCountry).ToList();
  10015. var diids = groupInfos.Select(it => it.Id).ToList();
  10016. List<string> countrys = new List<string>();
  10017. foreach (var item in country)
  10018. {
  10019. var data = _groupRepository.FormartTeamName(item);
  10020. var dataArray = _groupRepository.GroupSplitCountry(data);
  10021. if (dataArray.Count > 0) countrys.AddRange(dataArray);
  10022. }
  10023. countrys = countrys.Where(it => !string.IsNullOrEmpty(it)).Distinct().ToList();
  10024. List<string> areaArray = new List<string>(); //GetGroupCityLine
  10025. var areaItem = GeneralMethod.GetGroupCityLineItem(diids, "-");
  10026. foreach (var item in areaItem)
  10027. {
  10028. string areaStr = item.Value;
  10029. if (!string.IsNullOrEmpty(areaStr))
  10030. {
  10031. string[] str1 = areaStr.Split("-");
  10032. if (str1.Length > 0)
  10033. {
  10034. areaArray.AddRange(str1);
  10035. }
  10036. }
  10037. }
  10038. if (areaArray.Count > 0) areaArray = areaArray.Distinct().ToList();
  10039. var cityDatas = _sqlSugar.Queryable<Sys_Cities>()
  10040. .Where(it => it.IsDel == 0 && areaArray.Contains(it.Name_CN))
  10041. .Select(it => new { id = it.Id, parentId = it.CountriesId, name = it.Name_CN })
  10042. .ToList();
  10043. List<int> countriesIds = cityDatas.Select(it => it.parentId).ToList();
  10044. var countriesDatas = _sqlSugar.Queryable<Sys_Countries>()
  10045. .Where(it => countriesIds.Contains(it.Id))
  10046. .Select(it => new { it.Id, Name = it.Name_CN })
  10047. .ToList();
  10048. var teamNames = groupInfos.Where(it => !string.IsNullOrEmpty(it.TeamName) )
  10049. .Select(it => it.TeamName).ToList();
  10050. stopwatch.Stop();
  10051. return Ok(JsonView(true, $"操作成功,耗时{stopwatch.ElapsedMilliseconds} ms", new { teamNames,countriesDatas, citiesDatas = cityDatas }));
  10052. }
  10053. ///// <summary>
  10054. ///// 匹配op行程单
  10055. ///// Init 查询区域数据
  10056. ///// </summary>
  10057. ///// <param name="dto">团组列表请求dto</param>
  10058. ///// <returns></returns>
  10059. //[HttpPost]
  10060. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10061. //public async Task<IActionResult> PostMateOpGroupCountryChangeData(MateOpGroupCountryChangeDataDto dto)
  10062. //{
  10063. // Stopwatch stopwatch = Stopwatch.StartNew(); // 创建并启动Stopwatch
  10064. // List<Sys_Cities> cityDatas = new List<Sys_Cities>();
  10065. // string countriesDataStr = await RedisRepository.RedisFactory.CreateRedisRepository().StringGetAsync<string>("CityDatas");//string 取
  10066. // if (string.IsNullOrEmpty(countriesDataStr))
  10067. // {
  10068. // cityDatas = await _sqlSugar.Queryable<Sys_Cities>().Where(it => it.IsDel == 0).ToListAsync();
  10069. // TimeSpan ts = DateTime.Now.AddHours(2).TimeOfDay; //设置redis 过期时间 2
  10070. // await RedisRepository.RedisFactory.CreateRedisRepository().StringSetAsync<string>("CountriesDatas", JsonConvert.SerializeObject(cityDatas), ts);//string 存
  10071. // }
  10072. // else
  10073. // {
  10074. // cityDatas = JsonConvert.DeserializeObject<List<Sys_Cities>>(countriesDataStr);
  10075. // }
  10076. // var provinceData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 1).ToList();
  10077. // var citiesData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 2).ToList();
  10078. // var countiesData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 3).ToList();
  10079. // List<dynamic> childList = new List<dynamic>();
  10080. // int parentId = dto.CountriesId;
  10081. // if (provinceData.Count > 1)
  10082. // {
  10083. // foreach (var item1 in provinceData)
  10084. // {
  10085. // List<dynamic> childList1 = new List<dynamic>();
  10086. // var citiesData1 = citiesData.Where(it => it.ParentId == item1.Id).ToList();
  10087. // foreach (var item2 in citiesData1)
  10088. // {
  10089. // List<dynamic> childList2 = new List<dynamic>();
  10090. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10091. // foreach (var item3 in countiesData1)
  10092. // {
  10093. // childList2.Add(new
  10094. // {
  10095. // id = item3.Id,
  10096. // parentId = item2.Id,
  10097. // level = "district",
  10098. // name = item3.Name_CN,
  10099. // });
  10100. // }
  10101. // childList1.Add(new
  10102. // {
  10103. // id = item2.Id,
  10104. // parentId = item1.Id,
  10105. // level = "city",
  10106. // name = item2.Name_CN,
  10107. // childList = childList2
  10108. // });
  10109. // }
  10110. // childList.Add(new
  10111. // {
  10112. // id = item1.Id,
  10113. // parentId = parentId,
  10114. // level = "province",
  10115. // name = item1.Name_CN,
  10116. // childList = childList1
  10117. // });
  10118. // }
  10119. // //城市
  10120. // var citiesData2 = citiesData.Where(it => it.ParentId == 0).ToList();
  10121. // foreach (var item2 in citiesData2)
  10122. // {
  10123. // List<dynamic> childList22 = new List<dynamic>();
  10124. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10125. // foreach (var item3 in countiesData1)
  10126. // {
  10127. // childList22.Add(new
  10128. // {
  10129. // id = item3.Id,
  10130. // parentId = item2.Id,
  10131. // level = "district",
  10132. // name = item3.Name_CN,
  10133. // });
  10134. // }
  10135. // childList.Add(new
  10136. // {
  10137. // id = item2.Id,
  10138. // parentId = parentId,
  10139. // level = "city",
  10140. // name = item2.Name_CN,
  10141. // childList = childList22
  10142. // });
  10143. // }
  10144. // }
  10145. // else
  10146. // {
  10147. // foreach (var item2 in citiesData)
  10148. // {
  10149. // string cname = item2.Name_CN;
  10150. // List<dynamic> childList1 = new List<dynamic>();
  10151. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10152. // foreach (var item3 in countiesData1)
  10153. // {
  10154. // childList1.Add(new
  10155. // {
  10156. // Id = item3.Id,
  10157. // parentId = item2.Id,
  10158. // level = "district",
  10159. // name = item3.Name_CN
  10160. // });
  10161. // }
  10162. // childList.Add(new
  10163. // {
  10164. // id = item2.Id,
  10165. // parentId = parentId,
  10166. // level = "city",
  10167. // name = item2.Name_CN,
  10168. // childList = childList1
  10169. // });
  10170. // }
  10171. // }
  10172. // stopwatch.Stop();
  10173. // return Ok(JsonView(true, $"操作成功,耗时{stopwatch.ElapsedMilliseconds} ms", childList));
  10174. //}
  10175. /// <summary>
  10176. /// 匹配op行程单
  10177. /// 接团信息列表 Page
  10178. /// </summary>
  10179. /// <param name="dto">团组列表请求dto</param>
  10180. /// <returns></returns>
  10181. [HttpPost]
  10182. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10183. public async Task<IActionResult> PostMateOpGroupPageList(MateOpGroupPageListDto dto)
  10184. {
  10185. var swatch = new Stopwatch();
  10186. swatch.Start();
  10187. #region 参数验证
  10188. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  10189. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  10190. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10191. #region 页面操作权限验证
  10192. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  10193. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  10194. #endregion
  10195. #endregion
  10196. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) // web/Android
  10197. {
  10198. var _view = await GeneralMethod.MateOpGroupPageListRedis();
  10199. string sqlWhere = "";
  10200. if (!string.IsNullOrEmpty(dto.Country))
  10201. {
  10202. _view = _view.Where(x => !string.IsNullOrEmpty(x.VisitCountry) && x.VisitCountry.Contains(dto.Country)).ToList();
  10203. }
  10204. if (!string.IsNullOrEmpty(dto.Area))
  10205. {
  10206. _view = _view.Where(x => !string.IsNullOrEmpty(x.RouteCity) && x.RouteCity.Contains(dto.Area)).ToList();
  10207. }
  10208. if (!string.IsNullOrEmpty(dto.TeamName))
  10209. {
  10210. _view = _view.Where(x => !string.IsNullOrEmpty(x.TeamName) && x.TeamName.Contains(dto.TeamName)).ToList();
  10211. }
  10212. int startIndex = (dto.PageIndex - 1) * dto.PageSize; // 计算开始的索引
  10213. int endIndex = startIndex + dto.PageSize - 1; // 计算结束的索引
  10214. var _view1 = _view.Skip(startIndex).Take(endIndex).ToList();
  10215. swatch.Stop();
  10216. return Ok(JsonView(true, $"查询成功!耗时 {swatch.ElapsedMilliseconds} ms", _view1, _view.Count));
  10217. }
  10218. else
  10219. {
  10220. return Ok(JsonView(false, "查询失败"));
  10221. }
  10222. }
  10223. /// <summary>
  10224. /// 匹配op行程单
  10225. /// 行程单下载
  10226. /// </summary>
  10227. /// <param name="dto">团组列表请求dto</param>
  10228. /// <returns></returns>
  10229. [HttpPost]
  10230. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10231. public async Task<IActionResult> PostMateOpGroupDownload(MateOpGroupDownloadDto dto)
  10232. {
  10233. #region 参数验证
  10234. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  10235. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  10236. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10237. #region 页面操作权限验证
  10238. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  10239. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限"));
  10240. #endregion
  10241. #endregion
  10242. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) // web/Android
  10243. {
  10244. var res = ExportTravel(new InitOpTravelDto() { Diid = dto.diId });
  10245. return Ok(res.GetType().GetProperty("Value").GetValue(res, null));
  10246. }
  10247. else
  10248. {
  10249. return Ok(JsonView(false, "下载失败!"));
  10250. }
  10251. }
  10252. #endregion
  10253. #region 国家信息 数据 注释
  10254. //[HttpPost]
  10255. //public async Task<IActionResult> LoadCitiesInitData(List<int> dto)
  10256. //{
  10257. // List<Grp_GroupsTaskAssignment> infos = new List<Grp_GroupsTaskAssignment>();
  10258. // foreach (var item in dto)
  10259. // {
  10260. // infos.Add(new Grp_GroupsTaskAssignment()
  10261. // {
  10262. // DIId = item,
  10263. // CTId = 82,
  10264. // UId = 248,
  10265. // IsEnable = 1,
  10266. // CreateUserId = 233,
  10267. // CreateTime = DateTime.Now,
  10268. // IsDel = 0
  10269. // });
  10270. // infos.Add(new Grp_GroupsTaskAssignment()
  10271. // {
  10272. // DIId = item,
  10273. // CTId = 82,
  10274. // UId = 286,
  10275. // IsEnable = 1,
  10276. // CreateUserId = 233,
  10277. // CreateTime = DateTime.Now,
  10278. // IsDel = 0
  10279. // });
  10280. // }
  10281. // int add = _sqlSugar.Insertable<Grp_GroupsTaskAssignment>(infos).ExecuteCommand();
  10282. // return Ok("操作成功");
  10283. //}
  10284. //public class paramJsonDto
  10285. //{
  10286. // public List<CountriesInfo> str { get; set; }
  10287. //}
  10288. //[HttpPost]
  10289. //public async Task<IActionResult> LoadCitiesInitData(paramJsonDto dto)
  10290. //{
  10291. // //List<CountriesInfo> infos = new List<CountriesInfo>();
  10292. // //infos = JsonConvert.DeserializeObject<List<CountriesInfo>>(dto.str);
  10293. // List<Sys_Cities> cities = new List<Sys_Cities>();
  10294. // List<Sys_Cities> districts = new List<Sys_Cities>();
  10295. // var counties = _sqlSugar.Queryable<Sys_Countries>().Where(it => it.IsDel == 0).ToList();
  10296. // _sqlSugar.BeginTran();
  10297. // int countitiesIndex = 0;
  10298. // foreach (var item in dto.str)
  10299. // {
  10300. // dynamic data = item.c;
  10301. // int countriesId = counties.Find(it => it.Name_CN.Equals(item.cn))?.Id ?? 0;
  10302. // if (data != null)
  10303. // {
  10304. // countitiesIndex++;
  10305. // foreach (var item1 in data)
  10306. // {
  10307. // string cnname = item1.cn;
  10308. // string enname = item1.en;
  10309. // Sys_Cities provinceInfo = new Sys_Cities()
  10310. // {
  10311. // CountriesId = countriesId,
  10312. // Name_CN = cnname,
  10313. // Name_EN = enname,
  10314. // ParentId = 0,
  10315. // IsCapital = 1,
  10316. // CreateUserId = 208,
  10317. // CreateTime = DateTime.Now,
  10318. // IsDel = 0
  10319. // };
  10320. // if (item1.lv == "province") //省份
  10321. // {
  10322. // provinceInfo.Level = 1;
  10323. // int provinceId = 0;
  10324. // var provinceInfo1 = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 1 && it.Name_CN.Equals(cnname)).First();
  10325. // if (provinceInfo1 != null) provinceId = provinceInfo1.Id;
  10326. // else provinceId = _sqlSugar.Insertable<Sys_Cities>(provinceInfo).ExecuteReturnIdentity();
  10327. // var data1 = item1.c;
  10328. // foreach (var item2 in data1)
  10329. // {
  10330. // if (item2.lv == "city")
  10331. // {
  10332. // string citycnname = item2.cn;
  10333. // string cityenname = item2.en;
  10334. // Sys_Cities cityInfo = new Sys_Cities()
  10335. // {
  10336. // CountriesId = countriesId,
  10337. // ParentId = provinceId,
  10338. // Level = 2,
  10339. // Name_CN = citycnname,
  10340. // Name_EN = cityenname,
  10341. // IsCapital = 1,
  10342. // CreateUserId = 208,
  10343. // CreateTime = DateTime.Now,
  10344. // IsDel = 0
  10345. // };
  10346. // if (item2.c != null)
  10347. // {
  10348. // int cityId = 0;
  10349. // var citiesInfo = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 2 && it.Name_CN.Equals(citycnname)).First();
  10350. // if (citiesInfo != null) cityId = citiesInfo.Id;
  10351. // else cityId = _sqlSugar.Insertable<Sys_Cities>(cityInfo).ExecuteReturnIdentity();
  10352. // foreach (var item3 in item2.c)
  10353. // {
  10354. // if (item3.lv == "district")
  10355. // {
  10356. // var districtInfo = new Sys_Cities()
  10357. // {
  10358. // CountriesId = countriesId,
  10359. // Name_CN = item3.cn,
  10360. // Name_EN = item3.en,
  10361. // Level = 3,
  10362. // ParentId = cityId,
  10363. // IsCapital = 1,
  10364. // CreateUserId = 208,
  10365. // CreateTime = DateTime.Now,
  10366. // IsDel = 0
  10367. // };
  10368. // //if (districts.Find(it => it.CountriesId == countriesId && it.ParentId == cityId && it.Name_CN.Equals(districtInfo.Name_CN)) == null)
  10369. // //{
  10370. // districts.Add(districtInfo);
  10371. // //}
  10372. // }
  10373. // }
  10374. // }
  10375. // else
  10376. // {
  10377. // //if (cities.Find(it => it.CountriesId == countriesId && it.ParentId == provinceId && it.Name_CN.Equals(citycnname)) == null)
  10378. // //{
  10379. // cities.Add(cityInfo);
  10380. // //}
  10381. // }
  10382. // }
  10383. // }
  10384. // }
  10385. // else if (item1.lv == "city")//城市
  10386. // {
  10387. // provinceInfo.Level = 2;
  10388. // if (item1.c != null)
  10389. // {
  10390. // int cityId = 0;
  10391. // var citiesInfo = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 1 && it.Name_CN.Equals(provinceInfo.Name_CN)).First();
  10392. // if (citiesInfo != null) cityId = citiesInfo.Id;
  10393. // else cityId = _sqlSugar.Insertable<Sys_Cities>(provinceInfo).ExecuteReturnIdentity();
  10394. // foreach (var item3 in item1.c)
  10395. // {
  10396. // if (item3.lv == "district")
  10397. // {
  10398. // var districtInfo = new Sys_Cities()
  10399. // {
  10400. // CountriesId = countriesId,
  10401. // Name_CN = item3.cn,
  10402. // Name_EN = item3.en,
  10403. // Level = 3,
  10404. // ParentId = cityId,
  10405. // IsCapital = 1,
  10406. // CreateUserId = 208,
  10407. // CreateTime = DateTime.Now,
  10408. // IsDel = 0
  10409. // };
  10410. // //if (districts.Find(it => it.CountriesId == countriesId && it.ParentId == cityId && it.Name_CN.Equals(districtInfo.Name_CN)) == null)
  10411. // //{
  10412. // districts.Add(districtInfo);
  10413. // //}
  10414. // }
  10415. // }
  10416. // }
  10417. // else
  10418. // {
  10419. // //if (cities.Find(it => it.CountriesId == countriesId && it.Name_CN.Equals(provinceInfo.Name_CN)) == null)
  10420. // //{
  10421. // cities.Add(provinceInfo);
  10422. // //}
  10423. // }
  10424. // }
  10425. // }
  10426. // }
  10427. // }
  10428. // var procinceDatas = _sqlSugar.Queryable<Sys_Cities>().ToList();
  10429. // cities = cities.Distinct().ToList();
  10430. // districts = districts.Distinct().ToList();
  10431. // var citiesDatas = cities.Where(it => it.Level == 2).ToList();
  10432. // //var districtDatas = cities.Where(it => it.Level == 3).ToList();
  10433. // cities.AddRange(districts);
  10434. // var citiesAdd = _sqlSugar.Insertable<Sys_Cities>(cities).ExecuteReturnIdentity();
  10435. // //_sqlSugar.RollbackTran();
  10436. // _sqlSugar.CommitTran();
  10437. // return Ok(JsonView(false, "操作成功!"));
  10438. //}
  10439. //[HttpPost]
  10440. //public async Task<IActionResult> LoadCitiesInitInfo(CounrtiesDto dto)
  10441. //{
  10442. // List<CountitiesInfo> infos = dto.MyProperty;
  10443. // List<Sys_Cities> cityInfos = new List<Sys_Cities>();
  10444. // _sqlSugar.BeginTran();
  10445. // var countities = _sqlSugar.Queryable<Sys_Countries>().Where(it => it.IsDel == 0).ToList();
  10446. // var citities = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.IsDel == 0 && it.Level == 2).ToList();
  10447. // foreach (var item in infos)
  10448. // {
  10449. // var countryInfo = countities.Where(it => it.ThreeCode.Equals(item.country_code3)).FirstOrDefault();
  10450. // if (countryInfo != null)
  10451. // {
  10452. // var cityInfo = citities.Where(it => it.CountriesId == countryInfo.Id).ToList();
  10453. // var cityInfo1 = cityInfo.Where(it => item.capital_name_chinese.Contains(it.Name_CN)).FirstOrDefault();
  10454. // if (cityInfo1 != null)
  10455. // {
  10456. // cityInfo1.IsCapital = 0;
  10457. // cityInfos.Add(cityInfo1);
  10458. // }
  10459. // }
  10460. // }
  10461. // var update = _sqlSugar.Updateable<Sys_Cities>(cityInfos)
  10462. // .UpdateColumns(it => it.IsCapital)
  10463. // .WhereColumns(it => it.Id)
  10464. // .ExecuteCommand();
  10465. // //_sqlSugar.RollbackTran();
  10466. // _sqlSugar.CommitTran();
  10467. // return Ok(JsonView(false, "操作成功!"));
  10468. //}
  10469. //public class CounrtiesDto
  10470. //{
  10471. // public List<CountitiesInfo> MyProperty { get; set; }
  10472. //}
  10473. //public class CountitiesInfo
  10474. //{
  10475. // /// <summary>
  10476. // /// 圣约翰
  10477. // /// </summary>
  10478. // public string capital_name_chinese { get; set; }
  10479. // /// <summary>
  10480. // ///
  10481. // /// </summary>
  10482. // public string capital_name { get; set; }
  10483. // /// <summary>
  10484. // ///
  10485. // /// </summary>
  10486. // public string country_type { get; set; }
  10487. // /// <summary>
  10488. // /// 安提瓜和巴布达
  10489. // /// </summary>
  10490. // public string country_name_chinese { get; set; }
  10491. // /// <summary>
  10492. // /// 安提瓜和巴布达
  10493. // /// </summary>
  10494. // public string country_name_chinese_short { get; set; }
  10495. // /// <summary>
  10496. // /// 安提瓜和巴布达
  10497. // /// </summary>
  10498. // public string country_name_chinese_UN { get; set; }
  10499. // /// <summary>
  10500. // ///
  10501. // /// </summary>
  10502. // public string country_name_english_abbreviation { get; set; }
  10503. // /// <summary>
  10504. // ///
  10505. // /// </summary>
  10506. // public string country_name_english_formal { get; set; }
  10507. // /// <summary>
  10508. // ///
  10509. // /// </summary>
  10510. // public string country_name_english_UN { get; set; }
  10511. // /// <summary>
  10512. // ///
  10513. // /// </summary>
  10514. // public string continent_name { get; set; }
  10515. // /// <summary>
  10516. // ///
  10517. // /// </summary>
  10518. // public string subregion_name { get; set; }
  10519. // /// <summary>
  10520. // ///
  10521. // /// </summary>
  10522. // public string country_code2 { get; set; }
  10523. // /// <summary>
  10524. // ///
  10525. // /// </summary>
  10526. // public string country_code3 { get; set; }
  10527. // /// <summary>
  10528. // ///
  10529. // /// </summary>
  10530. // public string phone_code { get; set; }
  10531. //}
  10532. //public class CountriesInfo : BasicInfo
  10533. //{
  10534. // public List<CitiesInfo> c { get; set; }
  10535. //}
  10536. //public class CitiesInfo : BasicInfo
  10537. //{
  10538. // public List<AreaInfo> c { get; set; }
  10539. //}
  10540. //public class AreaInfo : BasicInfo
  10541. //{
  10542. // public List<AreaInfo> c { get; set; }
  10543. //}
  10544. //public class BasicInfo
  10545. //{
  10546. // public string code { get; set; }
  10547. // public string cn { get; set; }
  10548. // public string lv { get; set; }
  10549. // public string en { get; set; }
  10550. //}
  10551. #endregion
  10552. #region 查看邀请方
  10553. /// <summary>
  10554. /// 查看邀请方
  10555. /// 邀请方信息 Init
  10556. /// </summary>
  10557. /// <param name="dto"></param>
  10558. /// <returns></returns>
  10559. [HttpPost]
  10560. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10561. public async Task<IActionResult> PostGroupLinkInvitingUnitNameInit(GroupLinkInvitingUnitNameInitDto dto)
  10562. {
  10563. string sqlWhere = string.Empty;
  10564. if (!string.IsNullOrEmpty(dto.Search))
  10565. {
  10566. sqlWhere = string.Format($@" And UnitName Like '%{dto.Search}%'");
  10567. }
  10568. string sql = string.Format($@"Select
  10569. ROW_NUMBER() Over(Order By Id desc) As Row_Number,
  10570. Id,
  10571. UnitName
  10572. From Res_InvitationOfficialActivityData
  10573. Where IsDel = 0
  10574. And (UnitName != '' Or UnitName != null) {sqlWhere}");
  10575. RefAsync<int> total = 0;
  10576. var _views = await _sqlSugar.SqlQueryable<GroupLinkInvitingUnitNameInitView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  10577. return Ok(JsonView(true, MsgTips.Succeed, _views, total));
  10578. }
  10579. /// <summary>
  10580. /// 查看邀请方
  10581. /// 国家信息 Init
  10582. /// </summary>
  10583. /// <param name="dto"></param>
  10584. /// <returns></returns>
  10585. [HttpPost]
  10586. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10587. public async Task<IActionResult> PostGroupLinkInvitingCountryInit(GroupLinkInvitingUnitNameInitDto dto)
  10588. {
  10589. var groupInfos = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).OrderByDescending(it => it.CreateUserId).ToListAsync();
  10590. var country = groupInfos.Select(it => it.VisitCountry).ToList();
  10591. var diids = groupInfos.Select(it => it.Id).ToList();
  10592. List<string> countrys = new List<string>();
  10593. foreach (var item in country)
  10594. {
  10595. var data = _groupRepository.FormartTeamName(item);
  10596. var dataArray = _groupRepository.GroupSplitCountry(data);
  10597. if (dataArray.Count > 0) countrys.AddRange(dataArray);
  10598. }
  10599. countrys = countrys.Distinct().ToList();
  10600. for (int i = 0; i < countrys.Count; i++)
  10601. {
  10602. string item = countrys[i];
  10603. if (string.IsNullOrEmpty(item) || item.Contains("-"))
  10604. {
  10605. countrys.Remove(item);
  10606. i--;
  10607. }
  10608. }
  10609. RefAsync<int> total = 0;
  10610. var countyDatas = await _sqlSugar.Queryable<Sys_Countries>()
  10611. .Where(it => countrys.Contains(it.Name_CN))
  10612. .WhereIF(!string.IsNullOrEmpty(dto.Search), it => it.Name_CN.Contains(dto.Search))
  10613. .Select(it => new { id = it.Id, name = it.Name_CN })
  10614. .ToPageListAsync(dto.PageIndex,dto.PageSize, total);
  10615. return Ok(JsonView(true, MsgTips.Succeed, countyDatas, total));
  10616. }
  10617. /// <summary>
  10618. /// 查看邀请方
  10619. /// 城市信息 Init
  10620. /// </summary>
  10621. /// <param name="dto"></param>
  10622. /// <returns></returns>
  10623. [HttpPost]
  10624. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10625. public async Task<IActionResult> PostGroupLinkInvitingCityInit(GroupLinkInvitingCityInitDto dto)
  10626. {
  10627. if (dto.CountiesId < 1) return Ok(JsonView(false, "请传入有效的国家Id"));
  10628. RefAsync<int> total = 0;
  10629. var countyDatas = await _sqlSugar.Queryable<Sys_Cities>()
  10630. .Where(it => it.CountriesId == dto.CountiesId)
  10631. .WhereIF(!string.IsNullOrEmpty(dto.Search), it => it.Name_CN.Contains(dto.Search))
  10632. .OrderBy(it => new { IsCapital = SqlFunc.Asc(it.IsCapital), Id = SqlFunc.Asc(it.Id) })
  10633. .Select(it => new { id = it.Id, name = it.Name_CN })
  10634. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  10635. return Ok(JsonView(true, MsgTips.Succeed, countyDatas, total));
  10636. }
  10637. /// <summary>
  10638. /// 查看邀请方
  10639. /// 团组名称 Init
  10640. /// </summary>
  10641. /// <param name="dto"></param>
  10642. /// <returns></returns>
  10643. [HttpPost]
  10644. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10645. public async Task<IActionResult> PostGroupLinkInvitingGroupInit(GroupLinkInvitingDto dto)
  10646. {
  10647. var watch = new Stopwatch();
  10648. watch.Start();
  10649. RefAsync<int> total = 0;
  10650. var countyDatas = await _sqlSugar.Queryable<Res_OfficialActivities>()
  10651. .InnerJoin<Grp_DelegationInfo>((oa,di) => oa.DiId == di.Id)
  10652. .Where((oa, di) => oa.IsDel == 0)
  10653. .WhereIF(!string.IsNullOrEmpty(dto.Search), (oa, di) => di.TeamName.Contains(dto.Search))
  10654. .OrderBy((oa, di) => new { id = SqlFunc.Desc(di.Id) })
  10655. .Select((oa, di) => new { id = di.Id, name = di.TeamName })
  10656. .Distinct()
  10657. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  10658. watch.Stop();
  10659. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", countyDatas, total));
  10660. }
  10661. /// <summary>
  10662. /// 查看邀请方
  10663. /// 团组 & 邀请方信息
  10664. /// </summary>
  10665. /// <param name="dto"></param>
  10666. /// <returns></returns>
  10667. [HttpPost]
  10668. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10669. public async Task<IActionResult> PostGroupLinkInvitingPageList(GroupLinkInvitingPageListDto dto)
  10670. {
  10671. var watch = new Stopwatch();
  10672. watch.Start();
  10673. RefAsync<int> total = 0;
  10674. var infos = await _sqlSugar.Queryable<GroupLinkInvitingPageListView>()
  10675. .AS("Grp_DelegationInfo")
  10676. .Includes(x => x.InvitingInfos)
  10677. .Where(x => x.IsDel == 0 && x.InvitingInfos.Any(z => z.IsDel == 0))
  10678. .WhereIF(!string.IsNullOrEmpty(dto.Counrty), x => x.VisitCountry.Contains(dto.Counrty))
  10679. .WhereIF(!string.IsNullOrEmpty(dto.Area), x => x.InvitingInfos.Any(z => z.Area.Contains(dto.Area))) //
  10680. .WhereIF(!string.IsNullOrEmpty(dto.TeamName), x => x.TeamName.Contains(dto.TeamName)) //
  10681. .WhereIF(!string.IsNullOrEmpty(dto.UnitName), x => x.InvitingInfos.Any(z => z.Client.Contains(dto.UnitName)))
  10682. .OrderBy(x => new { JietuanTime = SqlFunc.Desc(x.VisitStartDate) })
  10683. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  10684. var userDatas = _sqlSugar.Queryable<Sys_Users>().Where(x => x.IsDel == 0).ToList();
  10685. var setDatas = _sqlSugar.Queryable<Sys_SetData>().Where(x => x.IsDel == 0).ToList();
  10686. infos.ForEach(x => {
  10687. x.TeamDid = setDatas.Find(y => int.Parse(x.TeamDid) == y.Id)?.Name ?? "-";
  10688. x.JietuanOperator = userDatas.Find(y => int.Parse(x.JietuanOperator) == y.Id)?.CnName ?? "-";
  10689. x.TeamLevSId = setDatas.Find(y => int.Parse(x.TeamLevSId) == y.Id)?.Name ?? "-";
  10690. x.InvitingInfos = x.InvitingInfos.Where(it => it.IsDel == 0).ToList();
  10691. });
  10692. watch.Stop();
  10693. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", infos, total));
  10694. }
  10695. #endregion
  10696. #region 报批行程
  10697. /// <summary>
  10698. /// 报批行程初始化
  10699. /// </summary>
  10700. /// <param name="dto"></param>
  10701. /// <returns></returns>
  10702. [HttpPost]
  10703. public IActionResult ApprovalJourneyInit(ApprovalJourneyDto dto)
  10704. {
  10705. const int chiNumber = 5;
  10706. var jw = JsonView(false);
  10707. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  10708. var group = groupList.First();
  10709. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  10710. group = groupList.First(x => x.Id == diid);
  10711. if (group == null)
  10712. {
  10713. jw.Msg = "暂无团组!";
  10714. return Ok(jw);
  10715. }
  10716. var data = new
  10717. {
  10718. groupList = groupList.Select(x => new
  10719. {
  10720. x.TeamName,
  10721. x.Id
  10722. }),
  10723. content = new ArrayList(),
  10724. groupInfo = new
  10725. {
  10726. group.VisitDays,
  10727. group.TourCode,
  10728. group.VisitPNumber,
  10729. group.TeamName,
  10730. group.Id,
  10731. visitStartDate = group.VisitStartDate.ToString("yyyy-MM-dd"),
  10732. visitEndDate = group.VisitEndDate.ToString("yyyy-MM-dd")
  10733. },
  10734. };
  10735. var resultArr = new ArrayList();
  10736. var content = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.Diid == diid && x.IsDel == 0).ToList();
  10737. if (content.Count == 0)
  10738. {
  10739. var stay = "-";
  10740. var cityPath = "-";
  10741. //添加城市路径以及住宿地
  10742. //黑屏代码数据
  10743. DataTable dtBlack = GeneralMethod.GetTableByBlackCode(group.Id);
  10744. if (dtBlack.Rows.Count == 0 || string.IsNullOrWhiteSpace(dtBlack.Rows[0][1].ToString()))
  10745. {
  10746. jw = JsonView(true, "黑屏代码有误!", data);
  10747. return Ok(jw);
  10748. }
  10749. foreach (DataRow row in dtBlack.Rows)
  10750. {
  10751. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  10752. {
  10753. jw = JsonView(true, "黑屏代码有误!" + row["Error"].ToString(), data);
  10754. return Ok(jw);
  10755. }
  10756. }
  10757. //黑屏代码获取时间区间
  10758. var timeArr = GeneralMethod.GetTimeListByDataTable(dtBlack);
  10759. string[] Day = new string[] { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" };
  10760. _sqlSugar.BeginTran();
  10761. for (int i = 0; i < timeArr.Count; i++)
  10762. {
  10763. stay = "-";
  10764. cityPath = "-";
  10765. DateTime NewData = DateTime.Parse(timeArr[i]);
  10766. string week = Day[Convert.ToInt32(NewData.DayOfWeek.ToString("d"))].ToString();
  10767. Grp_ApprovalTravel appro = new Grp_ApprovalTravel();
  10768. var tbSelect = dtBlack.Select(string.Format("Day = '{0}'", NewData.ToString("yyyy-MM-dd")));
  10769. if (tbSelect.Length > 0)
  10770. {
  10771. List<string> threeCodeStr = new List<string>();
  10772. foreach (var item in tbSelect)
  10773. {
  10774. var threeCode = item["Three"].ToString() ?? "";
  10775. if (threeCode.Length == 6)
  10776. {
  10777. var start = threeCode.Substring(0, 3);
  10778. var end = threeCode.Substring(3, 3);
  10779. if (threeCodeStr.Count == 0)
  10780. {
  10781. threeCodeStr.Add(start);
  10782. threeCodeStr.Add(end);
  10783. }
  10784. else
  10785. {
  10786. if (threeCodeStr[threeCodeStr.Count - 1] == start)
  10787. {
  10788. threeCodeStr.Add(end);
  10789. }
  10790. else {
  10791. threeCodeStr.Add(start);
  10792. threeCodeStr.Add(end);
  10793. }
  10794. }
  10795. }
  10796. }
  10797. var threeCodeList = _threeCodeRepository.QueryThreeCodeArray(threeCodeStr);
  10798. var last = threeCodeStr.Last();
  10799. foreach (var item in threeCodeStr)
  10800. {
  10801. cityPath += (threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】") + "-";
  10802. if(item.Equals(last))
  10803. {
  10804. stay = threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】";
  10805. }
  10806. }
  10807. cityPath = cityPath.Trim('-');
  10808. }
  10809. appro.Date = "第" + intToString(i + 1) + "天 " + NewData.Month + "月" + NewData.Day + "日(" + week + ") " + cityPath + " 宿:" + stay;
  10810. appro.Diid = diid ?? -1;
  10811. var thisId = _sqlSugar.Insertable<Grp_ApprovalTravel>(appro).ExecuteReturnIdentity();
  10812. appro.Id = thisId;
  10813. appro.CreateUserId = dto.UserId;
  10814. appro.CreateTime = DateTime.Now;
  10815. content.Add(appro);
  10816. }
  10817. _sqlSugar.CommitTran();
  10818. }
  10819. foreach (var x in content)
  10820. {
  10821. var chiList = _sqlSugar.Queryable<Grp_ApprovalTravelDetails>().Where(x1 => x1.ParentId == x.Id && x1.IsDel == 0).ToList();
  10822. if (chiList.Count < chiNumber)
  10823. {
  10824. for (int i = chiList.Count; i < chiNumber; i++)
  10825. {
  10826. chiList.Add(new Grp_ApprovalTravelDetails());
  10827. }
  10828. }
  10829. resultArr.Add(new
  10830. {
  10831. x.Id,
  10832. x.Date,
  10833. x.Diid,
  10834. chiList = chiList.Select(x1 => new
  10835. {
  10836. timeInterval = x1.Time == null ? new string [1] : x1.Time.Split('-'),
  10837. x1.Details,
  10838. x1.ParentId,
  10839. x1.Id
  10840. })
  10841. });
  10842. }
  10843. data = data with
  10844. {
  10845. content = resultArr,
  10846. };
  10847. jw = JsonView(true,"获取成功!",data);
  10848. return Ok(jw);
  10849. }
  10850. /// <summary>
  10851. /// 报批行程删除
  10852. /// </summary>
  10853. /// <param name="dto"></param>
  10854. /// <returns></returns>
  10855. [HttpPost]
  10856. public IActionResult DeleteApprovalJourney(DeleteApprovalJourney dto)
  10857. {
  10858. var jw = JsonView(false);
  10859. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x=>x.Id == dto.Diid && x.IsDel == 0);
  10860. if (group == null)
  10861. {
  10862. jw.Msg = "团组参数有误!";
  10863. return Ok(jw);
  10864. }
  10865. try
  10866. {
  10867. _sqlSugar.BeginTran();
  10868. var arr = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.Diid == dto.Diid && x.IsDel == 0).Select(x=>x.Id).ToList();
  10869. _ = _sqlSugar.Updateable<Grp_ApprovalTravelDetails>().SetColumns(x => new Grp_ApprovalTravelDetails
  10870. {
  10871. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  10872. DeleteUserId = dto.uesrId,
  10873. IsDel = 1
  10874. }).Where(x => arr.Contains(x.ParentId) && x.IsDel == 0).ExecuteCommand();
  10875. _ = _sqlSugar.Updateable<Grp_ApprovalTravel>().SetColumns(x => new Grp_ApprovalTravel
  10876. {
  10877. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  10878. DeleteUserId = dto.uesrId,
  10879. IsDel = 1
  10880. }).Where(x => arr.Contains(x.Id)).ExecuteCommand();
  10881. _sqlSugar.CommitTran();
  10882. jw = JsonView(true, "删除成功");
  10883. }
  10884. catch (Exception ex)
  10885. {
  10886. jw = JsonView(false, ex.Message);
  10887. }
  10888. return Ok(jw);
  10889. }
  10890. /// <summary>
  10891. /// 报批行程保存
  10892. /// </summary>
  10893. /// <param name="dto"></param>
  10894. /// <returns></returns>
  10895. [HttpPost]
  10896. public IActionResult SaveApprovalJourney(SaveApprovalJourney dto)
  10897. {
  10898. var jw = JsonView(false);
  10899. var Find = dto.Arr.Find(x => x.id == 0);
  10900. if (Find != null)
  10901. {
  10902. jw.Msg = "生成的ID为0!";
  10903. return Ok(jw);
  10904. }
  10905. foreach (var item in dto.Arr)
  10906. {
  10907. foreach (var chi in item.chiList)
  10908. {
  10909. if (chi.parentId == 0)
  10910. {
  10911. chi.parentId = item.id;
  10912. }
  10913. }
  10914. }
  10915. var chiArr = dto.Arr.SelectMany(x => x.chiList).ToList();
  10916. _sqlSugar.BeginTran();
  10917. if (chiArr.Where(x=>x.id == 0).Count() == chiArr.Count)
  10918. {
  10919. var parentIds = dto.Arr.Select(x => x.id).ToList();
  10920. _sqlSugar.Updateable<Grp_ApprovalTravelDetails>().Where(x => parentIds.Contains(x.ParentId) && x.IsDel == 0).SetColumns(x=>new Grp_ApprovalTravelDetails
  10921. {
  10922. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  10923. DeleteUserId = dto.UserId,
  10924. IsDel = 1
  10925. }).ExecuteCommand();
  10926. }
  10927. try
  10928. {
  10929. _ = _sqlSugar.Insertable<Grp_ApprovalTravelDetails>(chiArr.Where(x => x.id == 0).Select(x => new Grp_ApprovalTravelDetails
  10930. {
  10931. CreateTime = DateTime.Now,
  10932. CreateUserId = dto.UserId,
  10933. Details = x.details,
  10934. ParentId = x.parentId,
  10935. Time = x.timeInterval.Count > 1 ? x.timeInterval[0] + "-" + x.timeInterval[1] : "",
  10936. Remark = "",
  10937. IsDel = 0
  10938. }).ToList()).ExecuteCommand();
  10939. _ = _sqlSugar.Updateable<Grp_ApprovalTravelDetails>(chiArr.Where(x => x.id != 0).Select(x => new Grp_ApprovalTravelDetails
  10940. {
  10941. Id = x.id,
  10942. Details = x.details,
  10943. ParentId = x.parentId,
  10944. Time = x.timeInterval.Count > 1 ? x.timeInterval[0] + "-" + x.timeInterval[1] : "",
  10945. }).ToList()).UpdateColumns(x=> new Grp_ApprovalTravelDetails
  10946. {
  10947. Details = x.Details,
  10948. ParentId = x.ParentId,
  10949. Time = x.Time
  10950. }).ExecuteCommand();
  10951. _ = _sqlSugar.Updateable<Grp_ApprovalTravel>(dto.Arr.Where(x => x.id != 0).Select(x => new Grp_ApprovalTravel
  10952. {
  10953. Id = x.id,
  10954. Date = x.date,
  10955. }).ToList()).UpdateColumns(x => new Grp_ApprovalTravel
  10956. {
  10957. Date = x.Date
  10958. }).ExecuteCommand();
  10959. _sqlSugar.CommitTran();
  10960. jw = JsonView(true, "保存成功!");
  10961. }
  10962. catch (Exception ex)
  10963. {
  10964. _sqlSugar.RollbackTran();
  10965. jw = JsonView(false, "保存失败!" + ex.Message);
  10966. }
  10967. return Ok(jw);
  10968. }
  10969. /// <summary>
  10970. /// 报批行程生成
  10971. /// </summary>
  10972. /// <param name="dto"></param>
  10973. /// <returns></returns>
  10974. [HttpPost]
  10975. public IActionResult CreateApprovalJourney(CreateApprovalJourneyDto dto)
  10976. {
  10977. var jw = JsonView(false);
  10978. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  10979. if (group == null)
  10980. {
  10981. jw.Msg = "暂无该团组!";
  10982. return Ok(jw);
  10983. }
  10984. //黑屏代码数据
  10985. DataTable dtBlack = GeneralMethod.GetTableByBlackCode(group.Id);
  10986. if (dtBlack.Rows.Count == 0 || string.IsNullOrWhiteSpace(dtBlack.Rows[0][1].ToString()))
  10987. {
  10988. jw.Msg = "黑屏代码有误!";
  10989. return Ok(jw);
  10990. }
  10991. foreach (DataRow row in dtBlack.Rows)
  10992. {
  10993. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  10994. {
  10995. jw.Msg = "黑屏代码有误!" + row["Error"].ToString();
  10996. return Ok(jw);
  10997. }
  10998. }
  10999. var officialActivitiesArr = _sqlSugar.Queryable<Res_OfficialActivities>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).ToList();
  11000. var resultArr = new ArrayList();
  11001. if (officialActivitiesArr.Count == 0)
  11002. {
  11003. jw.Msg = "暂无公务出访信息!";
  11004. return Ok(jw);
  11005. }
  11006. try
  11007. {
  11008. _sqlSugar.BeginTran();
  11009. DeleteApprovalJourney(new
  11010. Domain.Dtos.Groups.DeleteApprovalJourney
  11011. {
  11012. Diid = dto.Diid,
  11013. uesrId = dto.Userid
  11014. });
  11015. var stay = "-";
  11016. var cityPath = "-";
  11017. //添加城市路径以及住宿地
  11018. //黑屏代码获取时间区间
  11019. var timeArr = GeneralMethod.GetTimeListByDataTable(dtBlack);
  11020. var empty = "【未收入该三字码!请机票同事录入】";
  11021. string[] Day = new string[] { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" };
  11022. for (int i = 0; i < timeArr.Count; i++)
  11023. {
  11024. stay = "-";
  11025. cityPath = "-";
  11026. var chiarr = new List<Grp_ApprovalTravelDetails>();
  11027. DateTime NewData = DateTime.Parse(timeArr[i]);
  11028. 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();
  11029. var tbSelect = dtBlack.Select(string.Format("Day = '{0}'", NewData.ToString("yyyy-MM-dd")));
  11030. if (tbSelect.Length > 0)
  11031. {
  11032. List<string> threeCodeStr = new List<string>();
  11033. bool isTrade = false;
  11034. string trip = string.Empty;
  11035. var rowLast = tbSelect.Last();
  11036. var rowFirst = tbSelect.First();
  11037. var airStartTime = rowFirst["StartTime"].ToString() ?? "0000";
  11038. var airEndTime = rowLast["EndTime"].ToString() ?? "0000";
  11039. var takeOffTime = DateTime.Parse(timeArr[i]);
  11040. var fallToTime = DateTime.Parse(timeArr[i]);
  11041. takeOffTime = takeOffTime.AddHours(int.Parse(airStartTime.Substring(0, 2)));
  11042. takeOffTime = takeOffTime.AddMinutes(int.Parse(airStartTime.Substring(2, 2)));
  11043. fallToTime = fallToTime.AddHours(int.Parse(airEndTime.Substring(0, 2)));
  11044. fallToTime = fallToTime.AddMinutes(int.Parse(airEndTime.Substring(2, 2)));
  11045. foreach (var item in tbSelect)
  11046. {
  11047. var start = string.Empty;
  11048. var end = string.Empty;
  11049. var threeCode = item["Three"].ToString() ?? "";
  11050. if (threeCode.Length == 6)
  11051. {
  11052. start = threeCode.Substring(0, 3);
  11053. end = threeCode.Substring(3, 3);
  11054. if (threeCodeStr.Count == 0)
  11055. {
  11056. threeCodeStr.Add(start);
  11057. threeCodeStr.Add(end);
  11058. }
  11059. else
  11060. {
  11061. if (threeCodeStr[threeCodeStr.Count - 1] == start)
  11062. {
  11063. threeCodeStr.Add(end);
  11064. }
  11065. else
  11066. {
  11067. threeCodeStr.Add(start);
  11068. threeCodeStr.Add(end);
  11069. }
  11070. }
  11071. }
  11072. //处理机票信息
  11073. var start_Object = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three.ToUpper() == start.ToUpper());
  11074. var end_Object = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three.ToUpper() == end.ToUpper());
  11075. if (start_Object == null)
  11076. {
  11077. start_Object = new Res_ThreeCode()
  11078. {
  11079. AirPort = empty,
  11080. AirPort_En = empty,
  11081. City = empty,
  11082. Country = empty,
  11083. Four = empty,
  11084. Three = empty,
  11085. };
  11086. }
  11087. if (end_Object == null)
  11088. {
  11089. end_Object = new Res_ThreeCode()
  11090. {
  11091. AirPort = empty,
  11092. AirPort_En = empty,
  11093. City = empty,
  11094. Country = empty,
  11095. Four = empty,
  11096. Three = empty,
  11097. };
  11098. }
  11099. //机型判断
  11100. string airModel = item["AirModel"].ToString();
  11101. airModel = GeneralMethod.GetLonger(airModel!.Substring(0, 1)) + airModel;
  11102. string flightTime = item["FlightTime"].ToString();
  11103. if (flightTime!.Contains(":"))
  11104. {
  11105. flightTime = flightTime.Replace(":", "小时");
  11106. flightTime += "分钟";
  11107. }
  11108. if (flightTime.Contains("H"))
  11109. {
  11110. flightTime = flightTime.Replace("H", "小时");
  11111. }
  11112. if (flightTime.Contains("M"))
  11113. {
  11114. flightTime = flightTime.Replace("M", "分钟");
  11115. }
  11116. //航班号
  11117. string flightcode = item["Fliagtcode"].ToString();
  11118. var aircompany = _sqlSugar.Queryable<Res_AirCompany>().First(x => x.ShortCode.ToUpper() == flightcode!.Substring(0, 2).ToUpper() && x.IsDel == 0);
  11119. var hsEmpty = "【此航司" + flightcode!.Substring(0, 2).ToUpper() + "未收录,请机票同事录入】";
  11120. if (aircompany == null)
  11121. {
  11122. aircompany = new Res_AirCompany
  11123. {
  11124. CnName = hsEmpty,
  11125. EnName = hsEmpty,
  11126. ShortCode = hsEmpty,
  11127. };
  11128. }
  11129. //从成都天府国际机场搭乘四川航空公司3U3961飞往东京
  11130. trip += $" 从{start_Object.AirPort}搭乘{aircompany.CnName} {flightcode} 飞往 {end_Object.City};\r\n ({start_Object.AirPort}/{end_Object.AirPort} 机型:{airModel} 飞行时间{flightTime});\r\n";
  11131. isTrade = Convert.ToBoolean(item["isTransitShipment"]);
  11132. if (isTrade)
  11133. {
  11134. trip += $"抵达{end_Object.AirPort}{item["EndBuilding"].ToString().Trim()}航站楼(中转时间: 行李直达)";
  11135. }
  11136. else
  11137. {
  11138. trip += $"抵达{end_Object.AirPort}{item["EndBuilding"].ToString().Trim()}航站楼,办理入境手续,之后前往提取行李\r\n";
  11139. }
  11140. }
  11141. chiarr.Add(new Grp_ApprovalTravelDetails
  11142. {
  11143. Time = takeOffTime.ToString("HH:mm") + "-" + fallToTime.ToString("HH:mm"),
  11144. CreateTime = DateTime.Now,
  11145. CreateUserId = dto.Userid,
  11146. ParentId = 0,
  11147. Details = trip
  11148. }) ;
  11149. var threeCodeList = _threeCodeRepository.QueryThreeCodeArray(threeCodeStr);
  11150. var last = threeCodeStr.Last();
  11151. foreach (var item in threeCodeStr)
  11152. {
  11153. cityPath += (threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】") + "-";
  11154. if (item.Equals(last))
  11155. {
  11156. stay = threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】";
  11157. }
  11158. }
  11159. cityPath = cityPath.Trim('-');
  11160. }
  11161. string week = Day[Convert.ToInt32(NewData.DayOfWeek.ToString("d"))].ToString();
  11162. Grp_ApprovalTravel appro = new Grp_ApprovalTravel();
  11163. appro.Date = "第" + intToString(i + 1) + "天 " + NewData.Month + "月" + NewData.Day + "日(" + week + ") " + cityPath + " 宿:" + stay;
  11164. appro.Diid = dto.Diid;
  11165. var thisId = _sqlSugar.Insertable<Grp_ApprovalTravel>(appro).ExecuteReturnIdentity();
  11166. appro.Id = thisId;
  11167. appro.CreateUserId = dto.Userid;
  11168. appro.CreateTime = DateTime.Now;
  11169. foreach (var item in gwinfo)
  11170. {
  11171. Grp_ApprovalTravelDetails chi = new Grp_ApprovalTravelDetails();
  11172. chi.Details = "拜访" + item.Client;
  11173. if (string.IsNullOrWhiteSpace(item.ReqSample))
  11174. {
  11175. chi.Details += "," + item.ReqSample;
  11176. }
  11177. chi.ParentId = thisId;
  11178. chi.Time = item.Time;
  11179. chiarr.Add(chi);
  11180. }
  11181. if (chiarr.Count < 5)
  11182. {
  11183. for (int j = chiarr.Count; j < 5; j++)
  11184. {
  11185. chiarr.Add(new
  11186. Grp_ApprovalTravelDetails());
  11187. }
  11188. }
  11189. resultArr.Add(new
  11190. {
  11191. appro.Id,
  11192. appro.Date,
  11193. appro.Diid,
  11194. chiList = chiarr.Select(x1 => new
  11195. {
  11196. timeInterval = x1.Time == null ? new string[1] : x1.Time.Split('-'),
  11197. x1.Details,
  11198. x1.ParentId,
  11199. x1.Id
  11200. })
  11201. });
  11202. }
  11203. _sqlSugar.CommitTran();
  11204. jw = JsonView(true, "生成成功!", resultArr);
  11205. }
  11206. catch (Exception ex)
  11207. {
  11208. jw.Code = 400;
  11209. jw.Msg = "生成失败!" + ex.Message;
  11210. }
  11211. return Ok(jw);
  11212. }
  11213. /// <summary>
  11214. /// 报批行程word导出
  11215. /// </summary>
  11216. /// <param name="dto"></param>
  11217. /// <returns></returns>
  11218. [HttpPost]
  11219. public IActionResult ExportApprovalJourneyWord(ExportApprovalJourneyWord dto)
  11220. {
  11221. var jw = JsonView(false);
  11222. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  11223. if (group == null)
  11224. {
  11225. jw.Msg = "暂无该团组!";
  11226. return Ok(jw);
  11227. }
  11228. //模板路径
  11229. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "Template/公务行程导出模板.docx");
  11230. //载入模板
  11231. Document doc = new Document(tempPath);
  11232. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  11233. //获取所填表格的序数
  11234. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  11235. Aspose.Words.Tables.Row titleRowClone = null;
  11236. Aspose.Words.Tables.Row CenterRowClone = null;
  11237. int index = 0;
  11238. int indexChi = 0;
  11239. int SetIndex = 0;
  11240. var ApprovalTravelArr = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid).ToList();
  11241. //获取数据,放到datatable
  11242. foreach (var item in ApprovalTravelArr)
  11243. {
  11244. if (index > 0)
  11245. {
  11246. titleRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[0].Clone(true);
  11247. tableOne.AppendChild(titleRowClone);
  11248. }
  11249. var textTime = item.Date;
  11250. var ChiRep = _sqlSugar.Queryable<Grp_ApprovalTravelDetails>().Where(x => x.IsDel == 0 && x.ParentId == item.Id).ToList();
  11251. SetCells(tableOne, doc, SetIndex, 0, textTime);
  11252. SetIndex++;
  11253. if (ChiRep.Count > 0)
  11254. {
  11255. foreach (var itemChi in ChiRep)
  11256. {
  11257. var txtTime = itemChi.Time;
  11258. var txtDetail = itemChi.Details;
  11259. if (indexChi > 0)
  11260. {
  11261. CenterRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[1].Clone(true);
  11262. tableOne.AppendChild(CenterRowClone);
  11263. }
  11264. if (string.IsNullOrEmpty(txtTime) && string.IsNullOrEmpty(txtDetail))
  11265. {
  11266. SetCells(tableOne, doc, SetIndex, 0, "");
  11267. SetCells(tableOne, doc, SetIndex, 1, "");
  11268. indexChi++;
  11269. SetIndex++;
  11270. break;
  11271. }
  11272. SetCells(tableOne, doc, SetIndex, 0, txtTime);
  11273. SetCells(tableOne, doc, SetIndex, 1, txtDetail);
  11274. indexChi++;
  11275. SetIndex++;
  11276. }
  11277. }
  11278. else
  11279. {
  11280. if (indexChi > 0)
  11281. {
  11282. CenterRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[1].Clone(true);
  11283. tableOne.AppendChild(CenterRowClone);
  11284. }
  11285. SetCells(tableOne, doc, SetIndex, 0, "");
  11286. SetCells(tableOne, doc, SetIndex, 1, "");
  11287. indexChi++;
  11288. SetIndex++;
  11289. }
  11290. index++;
  11291. }
  11292. string strFileName = "/Travel/ExportApprovalJourneyWord/" + group.TeamName + "商邀出访日程.doc";
  11293. doc.Save(AppSettingsHelper.Get("WordBasePath") + strFileName);
  11294. jw.Data = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + strFileName; ;
  11295. jw.Code = 200;
  11296. jw.Msg = "";
  11297. return Ok(jw);
  11298. }
  11299. private string intToString(int numberVal)
  11300. {
  11301. string numberval = numberVal.ToString();
  11302. Dictionary<char, string> Number = new Dictionary<char, string>();
  11303. Number.Add('1', "一");
  11304. Number.Add('2', "二");
  11305. Number.Add('3', "三");
  11306. Number.Add('4', "四");
  11307. Number.Add('5', "五");
  11308. Number.Add('6', "六");
  11309. Number.Add('7', "七");
  11310. Number.Add('8', "八");
  11311. Number.Add('9', "九");
  11312. string stringNumberVal = string.Empty;
  11313. for (int i = 0; i < numberval.Length; i++)
  11314. {
  11315. if (i == 0)
  11316. {
  11317. stringNumberVal += Number[numberval[i]];
  11318. }
  11319. else if (i >= 1)
  11320. {
  11321. if (numberval[i] == '0')
  11322. {
  11323. stringNumberVal = "十";
  11324. }
  11325. else
  11326. {
  11327. stringNumberVal += "十" + Number[numberval[i]];
  11328. }
  11329. }
  11330. }
  11331. return stringNumberVal;
  11332. }
  11333. private void SetCells(Aspose.Words.Tables.Table table, Document doc, int rows, int cells, string val)
  11334. {
  11335. //获取table中的某个单元格,从0开始
  11336. Cell lshCell = table.Rows[rows].Cells[cells];
  11337. //将单元格中的第一个段落移除
  11338. lshCell.FirstParagraph.Remove();
  11339. //新建一个段落
  11340. Paragraph p = new Paragraph(doc);
  11341. var r = new Run(doc, val);
  11342. //把设置的值赋给之前新建的段落
  11343. p.AppendChild(r);
  11344. //将此段落加到单元格内
  11345. lshCell.AppendChild(p);
  11346. }
  11347. [HttpPost]
  11348. public async Task<IActionResult> ServerHttp(string paramStr)
  11349. {
  11350. paramStr = paramStr.TrimEnd('\'');
  11351. paramStr = paramStr.TrimStart('\'');
  11352. JsonView jw = JsonView(false);
  11353. JObject param = JObject.Parse(paramStr);
  11354. if (!param.ContainsKey("url"))
  11355. {
  11356. jw.Msg = "url null";
  11357. return Ok(jw);
  11358. }
  11359. string url = param["url"]!.ToString();
  11360. var methon = "get";
  11361. Dictionary<string, string> bodyValues = null;
  11362. Dictionary<string, string> headValues = null;
  11363. if (param.ContainsKey("methon"))
  11364. {
  11365. methon = param["methon"]!.ToString();
  11366. }
  11367. if (param.ContainsKey("header"))
  11368. {
  11369. var header = param["header"]!.ToString();
  11370. JObject headerJobject = JObject.Parse(header);
  11371. headValues = new Dictionary<string, string>();
  11372. foreach (JProperty item in headerJobject.Properties())
  11373. {
  11374. var value = item.Value.ToString();
  11375. var head = item.Path;
  11376. headValues.Add(head, value);
  11377. }
  11378. }
  11379. if (param.ContainsKey("body"))
  11380. {
  11381. var body = param["body"]!.ToString();
  11382. bodyValues = new Dictionary<string, string>();
  11383. JObject bodyJobject = JObject.Parse(body);
  11384. foreach (JProperty item in bodyJobject.Properties())
  11385. {
  11386. var value = item.Value.ToString();
  11387. var head = item.Path;
  11388. bodyValues.Add(head, value);
  11389. }
  11390. }
  11391. HttpClient client = new HttpClient();
  11392. string responseString = string.Empty;
  11393. if (param.ContainsKey("isJson"))
  11394. {
  11395. }
  11396. if (headValues != null)
  11397. {
  11398. foreach (var item in headValues.Keys)
  11399. {
  11400. client.DefaultRequestHeaders.Add(item, headValues[item]);
  11401. }
  11402. }
  11403. try
  11404. {
  11405. if (methon == "get")
  11406. {
  11407. responseString = await client.GetStringAsync(url);
  11408. }
  11409. else if (methon == "post")
  11410. {
  11411. if (bodyValues == null)
  11412. {
  11413. jw.Msg = "methon post body null";
  11414. return Ok(jw);
  11415. }
  11416. // 数据转化为 key=val 格式
  11417. var content = new FormUrlEncodedContent(bodyValues);
  11418. var response = await client.PostAsync(url, content);
  11419. // 获取数据
  11420. responseString = await response.Content.ReadAsStringAsync();
  11421. }
  11422. else
  11423. {
  11424. jw.Msg = "methon error";
  11425. }
  11426. jw = JsonView(true, "success", responseString);
  11427. }
  11428. catch (Exception ex)
  11429. {
  11430. jw.Msg = "error " + ex.Message;
  11431. jw.Data = ex.StackTrace;
  11432. }
  11433. finally
  11434. {
  11435. client.Dispose();
  11436. }
  11437. return Ok(jw);
  11438. }
  11439. #endregion
  11440. // /// <summary>
  11441. // ///
  11442. // /// </summary>
  11443. // /// <param name="_dto"></param>
  11444. // /// <returns></returns>
  11445. // [HttpPost]
  11446. // [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11447. // public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  11448. // {
  11449. // _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  11450. // string sql = string.Format(@" Select * From Visa With(Nolock) ");
  11451. // List<OA2014_Visa> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_Visa>(sql).ToList();
  11452. // _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  11453. // Dictionary<string, int> dic_psg = new Dictionary<string, int>();
  11454. // dic_psg.Add("客人", 974);
  11455. // dic_psg.Add("司机", 975);
  11456. // dic_psg.Add("导游", 976);
  11457. // dic_psg.Add("公司内部人员", 977);
  11458. // dic_psg.Add("司机/导游/公司内部人员", 978);
  11459. // foreach (var item in list_visa)
  11460. // {
  11461. // Grp_VisaInfo temp = new Grp_VisaInfo();
  11462. // temp.Id = item.Id;
  11463. // temp.DIId = item.DIId;
  11464. // temp.VisaClient = item.VisaClient;
  11465. // temp.VisaPrice = Convert.ToDecimal(item.VisaPrice);
  11466. // temp.VisaCurrency = item.VisaCurrency;
  11467. // temp.IsThird = item.IsThird;
  11468. // if (dic_psg.ContainsKey(item.PassengerType))
  11469. // {
  11470. // temp.PassengerType = dic_psg[item.PassengerType];
  11471. // }
  11472. // else {
  11473. // temp.PassengerType = -1;
  11474. // }
  11475. // temp.VisaNumber = item.VisaNumber;
  11476. // temp.VisaFreeNumber = item.VisaFreeNumber;
  11477. // temp.CreateUserId = item.Operators;
  11478. // DateTime dt_ct;
  11479. // bool b_ct = DateTime.TryParse(item.OperatorsDate, out dt_ct);
  11480. // if (b_ct)
  11481. // {
  11482. // temp.CreateTime = dt_ct;
  11483. // }
  11484. // else
  11485. // {
  11486. // temp.CreateTime = DateTime.Now;
  11487. // }
  11488. // temp.DeleteTime = "";
  11489. // temp.DeleteUserId = 0;
  11490. // temp.Remark = item.Remark;
  11491. // if (string.IsNullOrEmpty(temp.Remark)) {
  11492. // temp.Remark = "";
  11493. // }
  11494. // temp.IsDel = item.IsDel;
  11495. // temp.VisaDescription = item.VisaAttachment;
  11496. // string sqlInsert = string.Format(@" INSERT INTO [dbo].[Grp_VisaInfo]
  11497. //([Id]
  11498. // ,[DIId]
  11499. // ,[VisaClient]
  11500. // ,[VisaPrice]
  11501. // ,[VisaCurrency]
  11502. // ,[IsThird]
  11503. // ,[PassengerType]
  11504. // ,[VisaNumber]
  11505. // ,[VisaFreeNumber]
  11506. // ,[CreateUserId]
  11507. // ,[CreateTime]
  11508. // ,[DeleteTime]
  11509. // ,[DeleteUserId]
  11510. // ,[Remark]
  11511. // ,[IsDel]
  11512. // ,[visaDescription])
  11513. // VALUES
  11514. // ({0},{1},'{2}',{3},{4}
  11515. //,{5},{6},{7},{8},{9}
  11516. //,'{10}','{11}',{12},'{13}',{14},'{15}') ",temp.Id,temp.DIId,temp.VisaClient,temp.VisaPrice,temp.VisaCurrency,
  11517. //temp.IsThird,temp.PassengerType,temp.VisaNumber,temp.VisaNumber,temp.CreateUserId,
  11518. //temp.CreateTime, temp.DeleteTime, temp.DeleteUserId, temp.Remark,temp.IsDel,temp.VisaDescription
  11519. //);
  11520. // await _airTicketResRep.ExecuteCommandAsync(sqlInsert);
  11521. // }
  11522. // return Ok(JsonView(true, "操作成功!"));
  11523. // }
  11524. /// <summary>
  11525. /// 123132123
  11526. /// </summary>
  11527. /// <param name="_dto"></param>
  11528. /// <returns></returns>
  11529. [HttpPost]
  11530. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11531. public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  11532. {
  11533. _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  11534. string sql = string.Format(@" Select * From grouopExceed where id > 20 And id not in (26,27) ");
  11535. List<OA2014_grouopExceed> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_grouopExceed>(sql).ToList();
  11536. _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  11537. Dictionary<int, int> dicDetail = new Dictionary<int, int>();
  11538. dicDetail.Add(789, 1034);
  11539. dicDetail.Add(790, 1035);
  11540. dicDetail.Add(791, 1036);
  11541. dicDetail.Add(792, 1037);
  11542. dicDetail.Add(793, 1038);
  11543. dicDetail.Add(794, 1039);
  11544. dicDetail.Add(795, 1040);
  11545. dicDetail.Add(796, 1041);
  11546. dicDetail.Add(797, 1042);
  11547. dicDetail.Add(798, 1043);
  11548. dicDetail.Add(801, 1044);
  11549. dicDetail.Add(802, 1045);
  11550. dicDetail.Add(803, 1046);
  11551. Dictionary<int, int> dic = new Dictionary<int, int>();
  11552. dic.Add(806, 1027);
  11553. dic.Add(807, 1028);
  11554. dic.Add(808, 1029);
  11555. dic.Add(809, 1030);
  11556. dic.Add(810, 1031);
  11557. dic.Add(811, 1032);
  11558. dic.Add(812, 1033);
  11559. foreach (var item in list_visa)
  11560. {
  11561. Fin_GroupExtraCost temp = new Fin_GroupExtraCost();
  11562. temp.Coefficient = item.coefficient;
  11563. DateTime dtCrt;
  11564. bool b1 = DateTime.TryParse(item.OperatorsDate, out dtCrt);
  11565. if (b1)
  11566. {
  11567. temp.CreateTime = dtCrt;
  11568. }
  11569. else
  11570. {
  11571. temp.CreateTime = DateTime.Now;
  11572. }
  11573. temp.CreateUserId = item.Operators;
  11574. temp.DeleteTime = "";
  11575. temp.DeleteUserId = 0;
  11576. temp.DiId = int.Parse(item.DIID);
  11577. temp.FilePath = item.FilePath;
  11578. temp.IsDel = item.IsDel;
  11579. temp.Price = item.Price;
  11580. temp.PriceCount = 1;
  11581. temp.PriceCurrency = item.Currency;
  11582. int detailId = 0;
  11583. if (dicDetail.ContainsKey(item.PriceTypeDetail))
  11584. {
  11585. detailId = dicDetail[item.PriceTypeDetail];
  11586. }
  11587. temp.PriceDetailType = detailId;
  11588. temp.PriceDt = DateTime.Now;
  11589. temp.PriceName = item.PriceName;
  11590. temp.PriceSum = item.Price;
  11591. int tid = 0;
  11592. if (dic.ContainsKey(item.PriceType))
  11593. {
  11594. tid = dic[item.PriceType];
  11595. }
  11596. temp.PriceType = tid;
  11597. temp.Remark = item.Remark;
  11598. await _airTicketResRep.AddAsync<Fin_GroupExtraCost>(temp);
  11599. }
  11600. return Ok(JsonView(true, "操作成功!"));
  11601. }
  11602. }
  11603. }