GroupsController.cs 619 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585
  1. using Aspose.Cells;
  2. using Aspose.Cells.Drawing.Texts;
  3. using Aspose.Words;
  4. using Aspose.Words.Tables;
  5. using NPOI.Util;
  6. using OASystem.API.OAMethodLib;
  7. using OASystem.API.OAMethodLib.File;
  8. using OASystem.Domain.Dtos.Groups;
  9. using OASystem.Domain.Entities.Groups;
  10. using OASystem.Domain.ViewModels.Groups;
  11. using OASystem.Infrastructure.Repositories.Groups;
  12. using TencentCloud.Ocr.V20181119.Models;
  13. using OASystem.Infrastructure.Tools;
  14. using System.Web;
  15. using System.Data;
  16. using static OASystem.Infrastructure.Repositories.Groups.AirTicketResRepository;
  17. using static OpenAI.GPT3.ObjectModels.SharedModels.IOpenAiModels;
  18. using Cell = Aspose.Words.Tables.Cell;
  19. using Row = Aspose.Words.Tables.Row;
  20. using System.Runtime.Intrinsics.Arm;
  21. using Microsoft.AspNetCore.Mvc.Filters;
  22. using OASystem.Domain.Entities.Customer;
  23. using NPOI.SS.Formula.Functions;
  24. using OASystem.Domain.Dtos.CRM;
  25. using System.Diagnostics;
  26. using MathNet.Numerics.Statistics.Mcmc;
  27. using AlibabaCloud.OpenApiClient.Models;
  28. using System;
  29. using NPOI.HPSF;
  30. using SqlSugar;
  31. using System.Collections;
  32. using Org.BouncyCastle.Ocsp;
  33. using System.Globalization;
  34. using static QRCoder.PayloadGenerator;
  35. using Bookmark = Aspose.Words.Bookmark;
  36. using Aspose.Words.Fields;
  37. using NPOI.POIFS.FileSystem;
  38. using Microsoft.AspNetCore.Mvc.ViewEngines;
  39. using OASystem.Domain.ViewModels.QiYeWeChat;
  40. using OASystem.Domain.Entities.Financial;
  41. using NPOI.POIFS.Crypt.Dsig;
  42. using System.Diagnostics.Eventing.Reader;
  43. using System.IO;
  44. using StackExchange.Redis;
  45. using Org.BouncyCastle.Utilities;
  46. using Aspose.Words.Drawing;
  47. using Aspose.Cells.Charts;
  48. using static NPOI.HSSF.Util.HSSFColor;
  49. using Quartz.Util;
  50. using Google.Protobuf.WellKnownTypes;
  51. using Microsoft.AspNetCore.SignalR;
  52. using OASystem.API.OAMethodLib.Hub.HubClients;
  53. using OASystem.API.OAMethodLib.Hub.Hubs;
  54. using System.Collections.Generic;
  55. using OASystem.API.OAMethodLib.JuHeAPI;
  56. using static Microsoft.EntityFrameworkCore.DbLoggerCategory;
  57. using SixLabors.Fonts.Tables.AdvancedTypographic;
  58. using Microsoft.EntityFrameworkCore;
  59. using System.Security.Cryptography.Xml;
  60. using MathNet.Numerics;
  61. using System.Security.Policy;
  62. using System.Xml;
  63. using OASystem.Domain.Dtos.QiYeWeChat;
  64. using static NPOI.POIFS.Crypt.CryptoFunctions;
  65. using Aspose.Words.Lists;
  66. using OASystem.API.OAMethodLib.YouDaoAPI;
  67. using NPOI.XSSF.Streaming.Values;
  68. using OASystem.API.OAMethodLib.Quartz.Business;
  69. using System.Linq;
  70. using NPOI.POIFS.NIO;
  71. using OASystem.API.OAMethodLib.QiYeWeChatAPI.AppNotice;
  72. using OASystem.Domain.ViewModels.Statistics;
  73. using NPOI.XSSF.Model;
  74. using NetTaste;
  75. using Microsoft.AspNetCore.Http;
  76. using EyeSoft.Collections.Generic;
  77. using NPOI.HSSF.Util;
  78. using NPOI.HSSF.UserModel;
  79. using NPOI.SS.UserModel;
  80. using NPOI.XSSF.UserModel;
  81. using MySqlX.XDevAPI.Relational;
  82. using SqlSugar.Extensions;
  83. using Table = Aspose.Words.Tables.Table;
  84. using Aspose.Cells.Tables;
  85. using NPOI.SS.Util;
  86. using RestSharp.Extensions;
  87. using Microsoft.AspNetCore.WebUtilities;
  88. using K4os.Compression.LZ4.Internal;
  89. using static Pipelines.Sockets.Unofficial.SocketConnection;
  90. using System.Diagnostics.PerformanceData;
  91. using System.Drawing.Printing;
  92. using OASystem.Domain.Dtos.FileDto;
  93. namespace OASystem.API.Controllers
  94. {
  95. /// <summary>
  96. /// 团组相关
  97. /// </summary>
  98. //[Authorize]
  99. [Route("api/[controller]/[action]")]
  100. public class GroupsController : ControllerBase
  101. {
  102. private readonly GrpScheduleRepository _grpScheduleRep;
  103. private readonly IMapper _mapper;
  104. private readonly DelegationInfoRepository _groupRepository;
  105. private readonly TaskAssignmentRepository _taskAssignmentRep;
  106. private readonly AirTicketResRepository _airTicketResRep;
  107. private readonly DecreasePaymentsRepository _decreasePaymentsRep;
  108. private readonly InvitationOfficialActivitiesRepository _InvitationOfficialActivitiesRep;
  109. private readonly DelegationEnDataRepository _delegationEnDataRep;
  110. private readonly DelegationVisaRepository _delegationVisaRep;
  111. private readonly VisaPriceRepository _visaPriceRep;
  112. private readonly CarTouristGuideGroundRepository _carTouristGuideGroundRep;
  113. private readonly HotelPriceRepository _hotelPriceRep;
  114. private readonly CustomersRepository _customersRep;
  115. private readonly MessageRepository _message;
  116. private readonly SqlSugarClient _sqlSugar;
  117. private readonly TourClientListRepository _tourClientListRep;
  118. private readonly TeamRateRepository _teamRateRep;
  119. #region 成本相关
  120. private readonly CheckBoxsRepository _checkBoxs;
  121. private readonly GroupCostRepository _GroupCostRepository;
  122. private readonly CostTypeHotelNumberRepository _CostTypeHotelNumberRepository;
  123. private readonly GroupCostParameterRepository _GroupCostParameterRepository;
  124. #endregion
  125. private readonly SetDataRepository _setDataRep;
  126. private string url;
  127. private string path;
  128. private readonly EnterExitCostRepository _enterExitCostRep;
  129. private readonly IHubContext<ChatHub, IChatClient> _hubContext;
  130. private readonly UsersRepository _usersRep;
  131. private readonly IJuHeApiService _juHeApi;
  132. private readonly InvertedListRepository _invertedListRep;
  133. private readonly VisaFeeInfoRepository _visaFeeInfoRep;
  134. private readonly TicketBlackCodeRepository _ticketBlackCodeRep;
  135. private readonly ThreeCodeRepository _threeCodeRepository;
  136. private readonly HotelInquiryRepository _hotelInquiryRep;
  137. private readonly FeeAuditRepository _feeAuditRep;
  138. public GroupsController(IMapper mapper, SqlSugarClient sqlSugar, GrpScheduleRepository grpScheduleRep, DelegationInfoRepository groupRepository,
  139. TaskAssignmentRepository taskAssignmentRep, AirTicketResRepository airTicketResRep, DecreasePaymentsRepository decreasePaymentsRep,
  140. InvitationOfficialActivitiesRepository InvitationOfficialActivitiesRep, DelegationEnDataRepository delegationEnDataRep, EnterExitCostRepository enterExitCostRep
  141. , DelegationVisaRepository delegationVisaRep, MessageRepository message, VisaPriceRepository visaPriceRep, CarTouristGuideGroundRepository carTouristGuideGroundRep,
  142. CheckBoxsRepository checkBoxs, GroupCostRepository GroupCostRepository, CostTypeHotelNumberRepository CostTypeHotelNumberRepository,
  143. GroupCostParameterRepository GroupCostParameterRepository, HotelPriceRepository hotelPriceRep, CustomersRepository customersRep, SetDataRepository setDataRep,
  144. TourClientListRepository tourClientListRep, TeamRateRepository teamRateRep, IHubContext<ChatHub, IChatClient> hubContext, UsersRepository usersRep, IJuHeApiService juHeApi,
  145. InvertedListRepository invertedListRep, VisaFeeInfoRepository visaFeeInfoRep, TicketBlackCodeRepository ticketBlackCodeRep, HotelInquiryRepository hotelInquiryRep,
  146. ThreeCodeRepository threeCodeRepository, FeeAuditRepository feeAuditRep)
  147. {
  148. _mapper = mapper;
  149. _grpScheduleRep = grpScheduleRep;
  150. _groupRepository = groupRepository;
  151. _taskAssignmentRep = taskAssignmentRep;
  152. _airTicketResRep = airTicketResRep;
  153. _sqlSugar = sqlSugar;
  154. url = AppSettingsHelper.Get("ExcelBaseUrl");
  155. path = AppSettingsHelper.Get("ExcelBasePath");
  156. if (!System.IO.Directory.Exists(path))
  157. {
  158. System.IO.Directory.CreateDirectory(path);//不存在就创建文件夹
  159. }
  160. _decreasePaymentsRep = decreasePaymentsRep;
  161. _InvitationOfficialActivitiesRep = InvitationOfficialActivitiesRep;
  162. _delegationEnDataRep = delegationEnDataRep;
  163. _enterExitCostRep = enterExitCostRep;
  164. _delegationVisaRep = delegationVisaRep;
  165. _message = message;
  166. _visaPriceRep = visaPriceRep;
  167. _carTouristGuideGroundRep = carTouristGuideGroundRep;
  168. _checkBoxs = checkBoxs;
  169. _GroupCostRepository = GroupCostRepository;
  170. _CostTypeHotelNumberRepository = CostTypeHotelNumberRepository;
  171. _GroupCostParameterRepository = GroupCostParameterRepository;
  172. _hotelPriceRep = hotelPriceRep;
  173. _customersRep = customersRep;
  174. _setDataRep = setDataRep;
  175. _tourClientListRep = tourClientListRep;
  176. _teamRateRep = teamRateRep;
  177. _hubContext = hubContext;
  178. _usersRep = usersRep;
  179. _juHeApi = juHeApi;
  180. _invertedListRep = invertedListRep;
  181. _visaFeeInfoRep = visaFeeInfoRep;
  182. _ticketBlackCodeRep = ticketBlackCodeRep;
  183. _hotelInquiryRep = hotelInquiryRep;
  184. _threeCodeRepository = threeCodeRepository;
  185. _feeAuditRep = feeAuditRep;
  186. }
  187. #region 流程管控
  188. /// <summary>
  189. /// 获取团组流程管控信息
  190. /// </summary>
  191. /// <param name="paras">参数Json字符串</param>
  192. /// <returns></returns>
  193. [HttpPost]
  194. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  195. public async Task<IActionResult> PostSearchGrpSchedule(JsonDtoBase _jsonDto)
  196. {
  197. if (string.IsNullOrEmpty(_jsonDto.Paras))
  198. {
  199. return Ok(JsonView(false, "参数为空"));
  200. }
  201. Grp_ScheduleDto _ScheduleDto = JsonConvert.DeserializeObject<Grp_ScheduleDto>(_jsonDto.Paras);
  202. if (_ScheduleDto != null)
  203. {
  204. if (_ScheduleDto.SearchType == 2)//获取列表
  205. {
  206. List<Grp_ScheduleView> _grpScheduleViewList = await _grpScheduleRep.GetViewList_GrpSchedule(_ScheduleDto);
  207. return Ok(JsonView(_grpScheduleViewList));
  208. }
  209. else//获取对象
  210. {
  211. Grp_ScheduleCombinView _grpScheduleView = await _grpScheduleRep.GetView_GrpSchedule(_ScheduleDto);
  212. if (_grpScheduleView != null)
  213. {
  214. return Ok(JsonView(_grpScheduleView));
  215. }
  216. }
  217. }
  218. else
  219. {
  220. return Ok(JsonView(false, "参数反序列化失败"));
  221. }
  222. return Ok(JsonView(false, "暂无数据!"));
  223. }
  224. /// <summary>
  225. /// 修改团组流程管控详细表数据
  226. /// </summary>
  227. /// <param name="paras"></param>
  228. /// <returns></returns>
  229. [HttpPost]
  230. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  231. public async Task<IActionResult> PostUpdateGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  232. {
  233. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  234. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  235. .SetColumns(it => it.Duty == _detail.Duty)
  236. .SetColumns(it => it.ExpectBeginDt == _detail.ExpectBeginDt)
  237. .SetColumns(it => it.ExpectEndDt == _detail.ExpectEndDt)
  238. .SetColumns(it => it.JobContent == _detail.JobContent)
  239. .SetColumns(it => it.Remark == _detail.Remark)
  240. .SetColumns(it => it.StepStatus == _detail.StepStatus)
  241. .Where(s => s.Id == dto.Id)
  242. //.UpdateColumns(s => new { s.Duty, s.ExpectBeginDt, s.ExpectEndDt, s.JobContent, s.Remark, s.StepStatus })
  243. .ExecuteCommandAsync();
  244. if (result > 0)
  245. {
  246. return Ok(JsonView(true, "保存成功!"));
  247. }
  248. return Ok(JsonView(false, "保存失败!"));
  249. }
  250. /// <summary>
  251. /// 删除团组流程管控详细表数据,删除人Id请放在Duty
  252. /// </summary>
  253. /// <param name="dto"></param>
  254. /// <returns></returns>
  255. [HttpPost]
  256. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  257. public async Task<ActionResult> PostDeleteGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  258. {
  259. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  260. _detail.IsDel = 1;
  261. _detail.DeleteUserId = dto.Duty;
  262. _detail.DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  263. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  264. .SetColumns(it => it.IsDel == _detail.IsDel)
  265. .SetColumns(it => it.DeleteUserId == _detail.DeleteUserId)
  266. .SetColumns(it => it.DeleteTime == _detail.DeleteTime)
  267. .Where(it => it.Id == dto.Id)
  268. //.UpdateColumns(s => new { s.IsDel, s.DeleteUserId, s.DeleteTime })
  269. //.WhereColumns(s => s.Id == dto.Id)
  270. .ExecuteCommandAsync();
  271. if (result > 0)
  272. {
  273. return Ok(JsonView(true, "删除成功!"));
  274. }
  275. return Ok(JsonView(false, "删除失败!"));
  276. }
  277. /// <summary>
  278. /// 增加团组流程管控详细表数据
  279. /// </summary>
  280. /// <param name="dto"></param>
  281. /// <returns></returns>
  282. [HttpPost]
  283. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  284. public async Task<ActionResult> PostInsertGrpScheduleDetail(Grp_ScheduleDetailInsertDto dto)
  285. {
  286. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  287. if (DateTime.Now < _detail.ExpectBeginDt)
  288. {
  289. _detail.StepStatus = 0;
  290. }
  291. else
  292. {//若大于设置时间,不考虑设置的预计结束日期,统一视为进行中
  293. _detail.StepStatus = 1;
  294. }
  295. var result = await _grpScheduleRep._sqlSugar.Insertable(_detail).ExecuteReturnIdentityAsync();
  296. if (result > 0)
  297. {
  298. Grp_ScheduleDetailView _result = await _grpScheduleRep.GetInsertBackData(result);
  299. return Ok(JsonView(true, "添加成功!", _result));
  300. }
  301. return Ok(JsonView(false, "添加失败!"));
  302. }
  303. #endregion
  304. #region 团组基本信息
  305. /// <summary>
  306. /// 接团信息列表
  307. /// </summary>
  308. /// <param name="dto">团组列表请求dto</param>
  309. /// <returns></returns>
  310. [HttpPost]
  311. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  312. public async Task<IActionResult> GetGroupList(GroupListDto dto)
  313. {
  314. var groupData = await _groupRepository.GetGroupList(dto);
  315. if (groupData.Code != 0)
  316. {
  317. return Ok(JsonView(false, groupData.Msg));
  318. }
  319. return Ok(JsonView(groupData.Data));
  320. }
  321. /// <summary>
  322. /// 接团信息列表 Page
  323. /// </summary>
  324. /// <param name="dto">团组列表请求dto</param>
  325. /// <returns></returns>
  326. [HttpPost]
  327. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  328. public async Task<IActionResult> PostGroupPageList(GroupPageListDto dto)
  329. {
  330. #region 参数验证
  331. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  332. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  333. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  334. #region 页面操作权限验证
  335. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  336. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  337. #endregion
  338. #endregion
  339. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  340. {
  341. string sqlWhere = string.Empty;
  342. if (dto.IsSure == 0) //未完成
  343. {
  344. sqlWhere += string.Format(@" And IsSure = 0");
  345. }
  346. else if (dto.IsSure == 1) //已完成
  347. {
  348. sqlWhere += string.Format(@" And IsSure = 1");
  349. }
  350. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  351. {
  352. string tj = dto.SearchCriteria;
  353. 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}%')",
  354. tj, tj, tj, tj, tj);
  355. }
  356. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  357. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  358. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  359. JietuanOperator,IsSure,CreateTime
  360. From (
  361. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  362. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  363. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  364. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  365. su.CnName JietuanOperator,IsSure,gdi.CreateTime
  366. From Grp_DelegationInfo gdi
  367. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  368. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  369. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  370. Where gdi.IsDel = 0 {0}
  371. ) temp", sqlWhere);
  372. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  373. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  374. #region 处理所属部门
  375. /*
  376. * 1.sq 和 gyy 等显示 市场部
  377. * 2.王鸽和主管及张总还有管理员号统一国交部
  378. * 2-1. 4 管理员 ,21 张海麟
  379. */
  380. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  381. List<int> userIds1 = new List<int>() { 4, 21 };
  382. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  383. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  384. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  385. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  386. .ToList();
  387. foreach (var item in _DelegationList)
  388. {
  389. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  390. }
  391. #endregion
  392. var _view = new
  393. {
  394. PageFuncAuth = pageFunAuthView,
  395. Data = _DelegationList
  396. };
  397. return Ok(JsonView(true, "查询成功!", _view, total));
  398. }
  399. else
  400. {
  401. return Ok(JsonView(false, "查询失败"));
  402. }
  403. }
  404. /// <summary>
  405. /// 团组列表
  406. /// </summary>
  407. /// <returns></returns>
  408. [HttpPost]
  409. public async Task<IActionResult> GetGroupListByWhere(GroupListByWhere dto)
  410. {
  411. #region 参数验证
  412. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  413. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  414. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  415. #region 页面操作权限验证
  416. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  417. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  418. #endregion
  419. #endregion
  420. if (dto.PortType != 1 && dto.PortType != 2)
  421. {
  422. return Ok(JsonView(false, "查询失败!"));
  423. }
  424. string orderbyStr = "order by gdi.CreateTime Desc";
  425. string sqlWhere = string.Empty;
  426. if (dto.IsSure == 0) //未完成
  427. {
  428. sqlWhere += string.Format(@" And IsSure = 0");
  429. }
  430. else if (dto.IsSure == 1) //已完成
  431. {
  432. sqlWhere += string.Format(@" And IsSure = 1");
  433. }
  434. //团组类型
  435. if (dto.TeamDid > 0)
  436. {
  437. sqlWhere += string.Format(@"And TeamDid = {0} ", dto.TeamDid);
  438. }
  439. //团组名称
  440. if (!string.IsNullOrEmpty(dto.TeamName))
  441. {
  442. sqlWhere += string.Format(@"And TeamName Like '%{0}%'", dto.TeamName);
  443. }
  444. //客户名称
  445. if (!string.IsNullOrEmpty(dto.ClientName))
  446. {
  447. sqlWhere += string.Format(@"And ClientName Like '%{0}%'", dto.ClientName);
  448. }
  449. //客户单位
  450. if (!string.IsNullOrEmpty(dto.ClientUnit))
  451. {
  452. sqlWhere += string.Format(@"And ClientUnit Like '%{0}%'", dto.ClientUnit);
  453. }
  454. //出访时间
  455. if (!string.IsNullOrEmpty(dto.visitDataTime))
  456. {
  457. sqlWhere += string.Format(@"And VisitDate >= '{0}'", dto.visitDataTime);
  458. orderbyStr = "order by gdi.VisitDate";
  459. }
  460. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  461. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  462. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  463. JietuanOperator,IsSure,CreateTime
  464. From (
  465. Select row_number() over({0}) as Row_Number,
  466. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  467. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  468. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  469. su.CnName JietuanOperator,IsSure,gdi.CreateTime
  470. From Grp_DelegationInfo gdi
  471. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  472. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  473. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  474. Where gdi.IsDel = 0 {1}
  475. ) temp ", orderbyStr, sqlWhere);
  476. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  477. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  478. #region 处理所属部门
  479. /*
  480. * 1.sq 和 gyy 等显示 市场部
  481. * 2.王鸽和主管及张总还有管理员号统一国交部
  482. * 2-1. 4 管理员 ,21 张海麟
  483. */
  484. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  485. List<int> userIds1 = new List<int>() { 4, 21 };
  486. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  487. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  488. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  489. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  490. .ToList();
  491. foreach (var item in _DelegationList)
  492. {
  493. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  494. }
  495. #endregion
  496. var _view = new
  497. {
  498. PageFuncAuth = pageFunAuthView,
  499. Data = _DelegationList
  500. };
  501. return Ok(JsonView(true, "查询成功!", _view, total));
  502. }
  503. /// <summary>
  504. /// 接团信息详情
  505. /// </summary>
  506. /// <param name="dto">团组info请求dto</param>
  507. /// <returns></returns>
  508. [HttpPost]
  509. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  510. public async Task<IActionResult> GetGroupInfo(GroupInfoDto dto)
  511. {
  512. var groupData = await _groupRepository.GetGroupInfo(dto);
  513. if (groupData.Code != 0)
  514. {
  515. return Ok(JsonView(false, groupData.Msg));
  516. }
  517. return Ok(JsonView(groupData.Data));
  518. }
  519. /// <summary>
  520. /// 接团信息 编辑添加
  521. /// 基础信息数据源
  522. /// </summary>
  523. /// <param name="dto"></param>
  524. /// <returns></returns>
  525. [HttpPost]
  526. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  527. public async Task<IActionResult> GroupEditBasicSource(GroupListDto dto)
  528. {
  529. var groupData = await _groupRepository.GroupEditBasicSource(dto);
  530. if (groupData.Code != 0)
  531. {
  532. return Ok(JsonView(false, groupData.Msg));
  533. }
  534. return Ok(JsonView(groupData.Data));
  535. }
  536. /// <summary>
  537. /// 接团信息 操作(增改)
  538. /// </summary>
  539. /// <param name="dto"></param>
  540. /// <returns></returns>
  541. [HttpPost]
  542. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  543. public async Task<IActionResult> GroupOperation(GroupOperationDto dto)
  544. {
  545. try
  546. {
  547. var groupData = await _groupRepository.GroupOperation(dto);
  548. if (groupData.Code != 0)
  549. {
  550. return Ok(JsonView(false, groupData.Msg));
  551. }
  552. int diId = 0;
  553. //添加时 默认加入团组汇率
  554. if (dto.Status == 1) //添加
  555. {
  556. diId = groupData.Data;
  557. //添加默认币种
  558. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  559. //默认分配权限
  560. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  561. //消息提示 王鸽 主管号
  562. List<int> _managerIds = new List<int>() { 22, 32 };
  563. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  564. if (userIds.Count > 0)
  565. {
  566. userIds.Add(208);
  567. //创建团组管控
  568. GroupStepForDelegation.CreateWorkStep(diId);
  569. //发送消息
  570. string groupName = dto.TeamName;
  571. string createGroupUser = string.Empty;
  572. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  573. if (userInfo != null) createGroupUser = userInfo.CnName;
  574. string title = $"系统通知";
  575. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  576. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  577. }
  578. //默认创建倒推表
  579. await _invertedListRep._Create(dto.UserId, diId);
  580. }
  581. else if (dto.Status == 2)
  582. {
  583. diId = dto.Id;
  584. }
  585. return Ok(JsonView(true, "操作成功!", diId));
  586. }
  587. catch (Exception ex)
  588. {
  589. Logs("[response]" + JsonConvert.SerializeObject(dto));
  590. Logs(ex.Message);
  591. return Ok(JsonView(false, ex.Message));
  592. }
  593. }
  594. /// <summary>
  595. /// 接团流程操作(增改)
  596. /// 安卓端使用 建团时添加客户名单
  597. /// </summary>
  598. /// <param name="dto"></param>
  599. /// <returns></returns>
  600. [HttpPost]
  601. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  602. public async Task<IActionResult> GroupProcessOperation(GroupProcessOperationDto dto)
  603. {
  604. try
  605. {
  606. #region 参数验证
  607. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  608. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  609. #region 页面操作权限验证
  610. //pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 104);
  611. //if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "客户名单您没有添加权限!"));
  612. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 27);
  613. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "团组操作您没有添加权限!"));
  614. #endregion
  615. #endregion
  616. _sqlSugar.BeginTran();
  617. var _dto = new GroupOperationDto();
  618. _dto = _mapper.Map<GroupProcessOperationDto, GroupOperationDto>(dto);
  619. var groupData = await _groupRepository.GroupOperation(_dto);
  620. if (groupData.Code != 0)
  621. {
  622. return Ok(JsonView(false, "团组操作添加失败!" + groupData.Msg));
  623. }
  624. int diId = 0;
  625. //添加时 默认加入团组汇率
  626. if (dto.Status == 1) //添加
  627. {
  628. diId = groupData.Data;
  629. //添加默认币种
  630. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  631. //默认分配权限
  632. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  633. //消息提示 王鸽 主管号
  634. List<int> _managerIds = new List<int>() { 22, 32 };
  635. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  636. if (userIds.Count > 0)
  637. {
  638. userIds.Add(208);
  639. //创建团组管控
  640. GroupStepForDelegation.CreateWorkStep(diId);
  641. //发送消息
  642. string groupName = dto.TeamName;
  643. string createGroupUser = string.Empty;
  644. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  645. if (userInfo != null) createGroupUser = userInfo.CnName;
  646. string title = $"系统通知";
  647. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  648. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  649. }
  650. }
  651. if (dto.Status == 2)
  652. {
  653. diId = dto.Id;
  654. if (diId == 0)
  655. {
  656. return Ok(JsonView(false, "修改失败! 未添加团组id" + groupData.Msg));
  657. }
  658. }
  659. var viewData = await _tourClientListRep.OperMultiple(dto.TourClientListInfos, diId, dto.UserId);
  660. if (viewData.Code != 0)
  661. {
  662. _sqlSugar.RollbackTran();
  663. return Ok(JsonView(false, "客户名单添加失败!" + viewData.Msg));
  664. }
  665. _sqlSugar.CommitTran();
  666. return Ok(JsonView(true, "添加成功"));
  667. }
  668. catch (Exception ex)
  669. {
  670. _sqlSugar.RollbackTran();
  671. return Ok(JsonView(false, ex.Message));
  672. }
  673. }
  674. /// <summary>
  675. /// 接团信息 操作(删除)
  676. /// </summary>
  677. /// <param name="dto"></param>
  678. /// <returns></returns>
  679. [HttpPost]
  680. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  681. public async Task<IActionResult> GroupDel(GroupDelDto dto)
  682. {
  683. try
  684. {
  685. var groupData = await _groupRepository.GroupDel(dto);
  686. if (groupData.Code != 0)
  687. {
  688. return Ok(JsonView(false, groupData.Msg));
  689. }
  690. return Ok(JsonView(true));
  691. }
  692. catch (Exception ex)
  693. {
  694. Logs("[response]" + JsonConvert.SerializeObject(dto));
  695. Logs(ex.Message);
  696. return Ok(JsonView(false, ex.Message));
  697. }
  698. }
  699. /// <summary>
  700. /// 获取团组销售报价号
  701. /// 团组添加时 使用
  702. /// </summary>
  703. /// <returns></returns>
  704. [HttpPost]
  705. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  706. public async Task<IActionResult> GetGroupSalesQuoteNo()
  707. {
  708. var groupData = await _groupRepository.GetGroupSalesQuoteNo();
  709. if (groupData.Code != 0)
  710. {
  711. return Ok(JsonView(false, groupData.Msg));
  712. }
  713. object salesQuoteNo = new
  714. {
  715. SalesQuoteNo = groupData.Data
  716. };
  717. return Ok(JsonView(salesQuoteNo));
  718. }
  719. /// <summary>
  720. /// 设置确认出团
  721. /// </summary>
  722. /// <param name="dto"></param>
  723. /// <returns></returns>
  724. [HttpPost]
  725. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  726. public async Task<IActionResult> SetConfirmationGroup(ConfirmationGroupDto dto)
  727. {
  728. var groupData = await _groupRepository.ConfirmationGroup(dto);
  729. if (groupData.Code != 0)
  730. {
  731. return Ok(JsonView(false, groupData.Msg));
  732. }
  733. var groupInfo = _groupRepository.Query(s => s.Id == dto.GroupId).First();
  734. #region OA消息推送
  735. try
  736. {
  737. string groupName = groupInfo.TeamName;
  738. List<Sys_Users> listUser = _airTicketResRep.Query<Sys_Users>(s => s.DepId == 7 && s.IsDel == 0).ToList();
  739. List<int> userIds = new List<int>();
  740. listUser.ForEach(s => userIds.Add(s.Id));
  741. string title = $"系统通知";
  742. string content = $"团组[{groupName}]已确认出团!";
  743. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, dto.GroupId);
  744. }
  745. catch (Exception ex)
  746. {
  747. }
  748. #endregion
  749. #region 应用推送
  750. try
  751. {
  752. await AppNoticeLibrary.SendChatMsg_GroupStatus_Create(dto.GroupId, QiyeWeChatEnum.CompanyCRMChat);
  753. Sys_Users users = _airTicketResRep.Query<Sys_Users>(s => s.Id == groupInfo.JietuanOperator).First();
  754. Sys_Department department = _airTicketResRep.Query<Sys_Department>(s => s.Id == users.DepId).First();
  755. if (department.Id == 6 && !string.IsNullOrEmpty(users.QiyeChatUserId))
  756. {
  757. List<string> userList = new List<string>() { users.QiyeChatUserId };
  758. await AppNoticeLibrary.SendUserMsg_GroupStatus_Create(dto.GroupId, userList);
  759. }
  760. }
  761. catch (Exception ex)
  762. {
  763. }
  764. #endregion
  765. GroupStepForDelegation.CreateWorkStep(dto.GroupId); //创建管控流程
  766. return Ok(JsonView(true, "操作成功!", groupData.Data));
  767. }
  768. /// <summary>
  769. /// 获取团组名称data And 签证国别Data
  770. /// </summary>
  771. /// <param name="dto"></param>
  772. /// <returns></returns>
  773. [HttpPost]
  774. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  775. public async Task<IActionResult> GetGroupNameAndVisaNationality(GroupNameDto dto)
  776. {
  777. var groupData = await _groupRepository.GetGroupNameAndVisaNationality(dto);
  778. if (groupData.Code != 0)
  779. {
  780. return Ok(JsonView(false, groupData.Msg));
  781. }
  782. return Ok(JsonView(groupData.Data));
  783. }
  784. /// <summary>
  785. /// 根据CTable类型返回对应的团组名称及简单数据(APP端)
  786. /// </summary>
  787. /// <returns></returns>
  788. [HttpPost]
  789. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  790. public async Task<IActionResult> PostGroupNameAndEasy(DecreasePaymentsDto dto)
  791. {
  792. try
  793. {
  794. Result groupData = await _decreasePaymentsRep.PostGroupNameAndEasy(dto);
  795. if (groupData.Code != 0)
  796. {
  797. return Ok(JsonView(false, groupData.Msg));
  798. }
  799. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  800. }
  801. catch (Exception ex)
  802. {
  803. return Ok(JsonView(false, "程序错误!"));
  804. throw;
  805. }
  806. }
  807. #endregion
  808. #region 团组&签证
  809. /// <summary>
  810. /// 根据团组Id获取签证客户信息List
  811. /// </summary>
  812. /// <param name="dto">请求dto</param>
  813. /// <returns></returns>
  814. [HttpPost]
  815. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  816. public async Task<IActionResult> GetCrmByGroupId(ClientByGroupIdDto dto)
  817. {
  818. var groupData = await _groupRepository.GetCrmByGroupId(dto);
  819. if (groupData.Code != 0)
  820. {
  821. return Ok(JsonView(false, groupData.Msg));
  822. }
  823. return Ok(JsonView(groupData.Data));
  824. }
  825. /// <summary>
  826. /// IOS获取团组签证拍照上传进度01(团组列表)
  827. /// </summary>
  828. /// <param name="dto">请求dto</param>
  829. /// <returns></returns>
  830. [HttpPost]
  831. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  832. public async Task<IActionResult> PostIOSVisaProgress(IOS_VisaDto dto)
  833. {
  834. if (dto == null)
  835. {
  836. return Ok(JsonView(false, "参数为空"));
  837. }
  838. DelegationVisaViewList visaList = _delegationVisaRep.GetDelegationList(dto);
  839. return Ok(JsonView(visaList));
  840. }
  841. /// <summary>
  842. /// IOS获取团组签证拍照上传进度02(团组签证详情\人员列表\国家)
  843. /// </summary>
  844. /// <returns></returns>
  845. [HttpPost]
  846. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  847. public async Task<ActionResult> PostIOSVisaProgressContent(IOS_VisaCustomerListDto dto)
  848. {
  849. if (dto == null)
  850. {
  851. return Ok(JsonView(false, "请求错误:"));
  852. }
  853. List<DelegationVisaProgressView> list = _delegationVisaRep.GetDelegationProgressList(dto.diId);
  854. return Ok(JsonView(list));
  855. }
  856. /// <summary>
  857. /// IOS获取团组签证拍照上传进度03(相册)
  858. /// </summary>
  859. /// <returns></returns>
  860. [HttpPost]
  861. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  862. public async Task<ActionResult> PostIOSVisaProgressImageList(IOS_VisaImageListDto dto)
  863. {
  864. if (dto == null)
  865. {
  866. return Ok(JsonView(false, "请求错误:"));
  867. }
  868. List<VisaProgressImageView> list = _delegationVisaRep.GetVisaProgressImageList(dto.visaProgressCustomerId, dto.picType);
  869. string url = AppSettingsHelper.Get("VisaProgressImageBaseUrl") + AppSettingsHelper.Get("VisaProgressImageFtpPath");
  870. list.ForEach(s => s.url = url);
  871. return Ok(JsonView(list));
  872. }
  873. /// <summary>
  874. /// IOS获取团组签证拍照上传进度04(图片上传)
  875. /// </summary>
  876. /// <param name="dto"></param>
  877. /// <returns></returns>
  878. [HttpPost]
  879. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  880. public async Task<ActionResult> PostIOSVisaProgressUploadImage(IOS_VisaUploadImageDto dto)
  881. {
  882. //string result = decodeBase64ToImage(dto.base64DataURL, dto.imageName);
  883. //if (!string.IsNullOrEmpty(result))
  884. //{
  885. //}
  886. //else {
  887. // return Ok(JsonView(false, "上传失败"));
  888. //}
  889. DateTime dt1970 = new DateTime(1970, 1, 1, 0, 0, 0, 0);
  890. int sucNum = 0;
  891. try
  892. {
  893. foreach (var item in dto.base64DataList)
  894. {
  895. string imageName = dto.imageName + ((DateTime.Now.Ticks - dt1970.Ticks) / 10000).ToString();
  896. string result = decodeBase64ToImage(item, imageName);
  897. if (!string.IsNullOrEmpty(result))
  898. {
  899. Grp_VisaProgressCustomerPicture pic = new Grp_VisaProgressCustomerPicture();
  900. pic.CreateUserId = dto.CreateUserId;
  901. pic.PicName = imageName;
  902. pic.PicPath = result;
  903. pic.VisaProgressCustomerId = dto.visaProgressCustomerId;
  904. int insertResult = await _delegationVisaRep.AddAsync<Grp_VisaProgressCustomerPicture>(pic);
  905. if (insertResult > 0)
  906. {
  907. sucNum++;
  908. }
  909. }
  910. }
  911. }
  912. catch (Exception ex)
  913. {
  914. return Ok(JsonView(false, ex.Message));
  915. }
  916. string msg = string.Format(@"成功上传{0}张", sucNum);
  917. return Ok(JsonView(true, msg));
  918. }
  919. private string decodeBase64ToImage(string base64DataURL, string imgName)
  920. {
  921. string filename = "";//声明一个string类型的相对路径
  922. String base64 = base64DataURL.Substring(base64DataURL.IndexOf(",") + 1); //将‘,’以前的多余字符串删除
  923. System.Drawing.Bitmap bitmap = null;//定义一个Bitmap对象,接收转换完成的图片
  924. try//会有异常抛出,try,catch一下
  925. {
  926. byte[] arr = Convert.FromBase64String(base64);//将纯净资源Base64转换成等效的8位无符号整形数组
  927. System.IO.MemoryStream ms = new System.IO.MemoryStream(arr);//转换成无法调整大小的MemoryStream对象
  928. bitmap = new System.Drawing.Bitmap(ms);//将MemoryStream对象转换成Bitmap对象
  929. var fileDir = AppSettingsHelper.Get("VisaProgressImageBasePath");
  930. //文件名称
  931. filename = "VisaProgress_" + DateTime.Now.ToString("yyyyMMddHHmmss") + "_" + imgName + ".jpeg";//所要保存的相对路径及名字
  932. //上传的文件的路径
  933. string filePath = "";
  934. if (!Directory.Exists(fileDir))
  935. {
  936. Directory.CreateDirectory(fileDir);
  937. }
  938. //上传的文件的路径
  939. filePath = fileDir + filename;
  940. //string url = HttpRuntime.AppDomainAppPath.ToString();
  941. //string tmpRootDir = System.Web.HttpContext.Current.Server.MapPath(System.Web.HttpContext.Current.Request.ApplicationPath.ToString()); //获取程序根目录
  942. //string imagesurl2 = tmpRootDir + filename; //转换成绝对路径
  943. bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Jpeg);//保存到服务器路径
  944. //bitmap.Save(filePath + ".bmp", System.Drawing.Imaging.ImageFormat.Bmp);
  945. //bitmap.Save(filePath + ".gif", System.Drawing.Imaging.ImageFormat.Gif);
  946. //bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Png);
  947. ms.Close();//关闭当前流,并释放所有与之关联的资源
  948. bitmap.Dispose();
  949. }
  950. catch (Exception e)
  951. {
  952. string massage = e.Message;
  953. Logs("IOS图片上传Error:" + massage);
  954. //filename = e.Message;
  955. }
  956. return filename;//返回相对路径
  957. }
  958. /// <summary>
  959. /// IOS获取团组签证拍照上传进度05(修改签证状态/通知)
  960. /// </summary>
  961. /// <param name="dto"></param>
  962. /// <returns></returns>
  963. [HttpPost]
  964. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  965. public async Task<ActionResult> PostIOSVisaProgressChangeStatus(IOS_VisaChangeStatusDto dto)
  966. {
  967. if (dto == null)
  968. {
  969. return Ok(JsonView(false, "请求错误:"));
  970. }
  971. string msg = "参数错误";
  972. if (dto.diId > 0 && dto.visaStatus > 0 && dto.visaStatus < 4)
  973. {
  974. try
  975. {
  976. //_delegationVisaRep.BeginTran();
  977. var updCount = await _delegationVisaRep._sqlSugar.Updateable<Grp_VisaProgressCustomer>()
  978. .SetColumns(it => it.WorkStatus == dto.visaStatus)
  979. .Where(s => s.Id == dto.visaProgressCustomerId)
  980. .ExecuteCommandAsync();
  981. if (updCount > 0 && dto.publishCode == 1)
  982. {
  983. _delegationVisaRep.ChangeDataBase(DBEnum.OA2014DB); //切换到新OA后删除
  984. string sqlDelegation = string.Format(@" Select * From DelegationInfo With(Nolock) Where Id = {0} ", dto.diId);
  985. OA2021_DelegationInfo groupData = _sqlSugar.SqlQueryable<OA2021_DelegationInfo>(sqlDelegation).First();
  986. //GroupInfoDto grpDto = new GroupInfoDto() { Id = dto.diId };
  987. //var groupData = await _groupRepository.GetGroupInfo(grpDto);
  988. _delegationVisaRep.ChangeDataBase(DBEnum.OA2023DB); //切换到新OA后删除
  989. if (groupData == null)
  990. {
  991. _delegationVisaRep.RollbackTran();
  992. }
  993. string title = string.Format(@"[签证进度更新]");
  994. string content = string.Format(@"测试文本");
  995. bool rst = await _message.AddMsg(new MessageDto()
  996. {
  997. Type = MessageTypeEnum.GroupVisaProgressUpdate,
  998. IssuerId = dto.publisher,
  999. Title = title,
  1000. Content = content,
  1001. ReleaseTime = DateTime.Now,
  1002. UIdList = new List<int> {
  1003. 234
  1004. }
  1005. });
  1006. if (rst)
  1007. {
  1008. return Ok(JsonView(true, "发送通知成功"));
  1009. }
  1010. }
  1011. //_delegationVisaRep.CommitTran();
  1012. }
  1013. catch (Exception)
  1014. {
  1015. //_delegationVisaRep.RollbackTran();
  1016. }
  1017. }
  1018. return Ok(JsonView(true, msg));
  1019. }
  1020. #endregion
  1021. #region 团组任务分配
  1022. /// <summary>
  1023. /// 团组任务分配初始化
  1024. /// </summary>
  1025. /// <param name="dto"></param>
  1026. /// <returns></returns>
  1027. [HttpPost]
  1028. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1029. public async Task<IActionResult> GetTaskAssignmen()
  1030. {
  1031. var groupData = await _taskAssignmentRep.GetTaskAssignmen();
  1032. if (groupData.Code != 0)
  1033. {
  1034. return Ok(JsonView(false, groupData.Msg));
  1035. }
  1036. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1037. }
  1038. /// <summary>
  1039. /// 团组任务分配查询
  1040. /// </summary>
  1041. /// <param name="dto"></param>
  1042. /// <returns></returns>
  1043. [HttpPost]
  1044. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1045. public async Task<IActionResult> TaskAssignmenQuery(TaskAssignmenQueryDto dto)
  1046. {
  1047. var groupData = await _taskAssignmentRep.TaskAssignmenQuery(dto);
  1048. if (groupData.Code != 0)
  1049. {
  1050. return Ok(JsonView(false, groupData.Msg));
  1051. }
  1052. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1053. }
  1054. /// <summary>
  1055. /// 团组任务分配操作
  1056. /// </summary>
  1057. /// <param name="dto"></param>
  1058. /// <returns></returns>
  1059. [HttpPost]
  1060. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1061. public async Task<IActionResult> GetTaskAssignmenOp(TaskAssignmenDto dto)
  1062. {
  1063. Result groupData = await _taskAssignmentRep.GetTaskAssignmenOp(dto);
  1064. if (groupData.Code != 0)
  1065. {
  1066. return Ok(JsonView(false, groupData.Msg));
  1067. }
  1068. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1069. }
  1070. #endregion
  1071. #region 团组费用审核
  1072. /// <summary>
  1073. /// 费用审核
  1074. /// 团组列表 Page
  1075. /// </summary>
  1076. /// <param name="_dto">团组列表请求dto</param>
  1077. /// <returns></returns>
  1078. [HttpPost]
  1079. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1080. public async Task<IActionResult> PostExpenseAuditGroupPageItems(ExpenseAuditGroupPageItemsDto _dto)
  1081. {
  1082. #region 参数验证
  1083. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1084. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1085. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1086. #region 页面操作权限验证
  1087. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1088. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1089. #endregion
  1090. #endregion
  1091. if (_dto.PortType == 1 || _dto.PortType == 2 || _dto.PortType == 2) // web/Android/IOS
  1092. {
  1093. string sqlWhere = string.Empty;
  1094. if (_dto.IsSure == 0) //未完成
  1095. {
  1096. sqlWhere += string.Format(@" And IsSure = 0");
  1097. }
  1098. else if (_dto.IsSure == 1) //已完成
  1099. {
  1100. sqlWhere += string.Format(@" And IsSure = 1");
  1101. }
  1102. if (!string.IsNullOrEmpty(_dto.SearchCriteria))
  1103. {
  1104. string tj = _dto.SearchCriteria;
  1105. 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}%')",
  1106. tj, tj, tj, tj, tj);
  1107. }
  1108. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  1109. TeamName,ClientName,ClientUnit, TeamLevId,TeamLev,VisitDate,
  1110. VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  1111. From (
  1112. Select row_number() over(order by gdi.VisitDate Desc) as Row_Number,
  1113. gdi.Id,SalesQuoteNo,TourCode,ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,
  1114. ClientName,ClientUnit,ssd.Id TeamTypeId, ssd.Name TeamType,VisitDate,
  1115. VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  1116. From Grp_DelegationInfo gdi
  1117. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  1118. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  1119. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  1120. Where gdi.IsDel = 0 {0}
  1121. ) temp ", sqlWhere);
  1122. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  1123. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(_dto.PageIndex, _dto.PageSize, total);//ToPageAsync
  1124. var _view = new
  1125. {
  1126. PageFuncAuth = pageFunAuthView,
  1127. Data = _DelegationList
  1128. };
  1129. return Ok(JsonView(true, "查询成功!", _view, total));
  1130. }
  1131. else
  1132. {
  1133. return Ok(JsonView(false, "查询失败"));
  1134. }
  1135. }
  1136. /// <summary>
  1137. /// 获取团组费用审核
  1138. /// </summary>
  1139. /// <param name="paras">参数Json字符串</param>
  1140. /// <returns></returns>
  1141. [HttpPost]
  1142. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1143. public async Task<IActionResult> PostSearchGrpCreditCardPayment(Search_GrpCreditCardPaymentDto _dto)
  1144. {
  1145. try
  1146. {
  1147. #region 参数验证
  1148. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1149. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1150. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  1151. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1152. #region 页面操作权限验证
  1153. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1154. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1155. #endregion
  1156. #endregion
  1157. Grp_CreditCardPaymentView _view = new Grp_CreditCardPaymentView();
  1158. List<SimplClientInfo> clientNameList = getSimplClientList(_dto.DiId);
  1159. #region 费用清单
  1160. var exp = Expressionable.Create<Grp_CreditCardPayment>();
  1161. exp.AndIF(_dto.AuditStatus != -1, it => it.IsAuditGM == _dto.AuditStatus);
  1162. exp.AndIF(_dto.Label != -1, it => it.CTable == _dto.Label);
  1163. List<Grp_CreditCardPayment> entityList = _groupRepository
  1164. .Query<Grp_CreditCardPayment>(s => s.DIId == _dto.DiId && s.IsDel == 0 && s.CreateUserId > 0)
  1165. .Where(exp.ToExpression())
  1166. .ToList();
  1167. List<Grp_CreditCardPaymentDetailView> detailList = new List<Grp_CreditCardPaymentDetailView>();
  1168. List<CreditCardPaymentCurrencyPriceItem> ccpCurrencyPrices = new List<CreditCardPaymentCurrencyPriceItem>();
  1169. /*
  1170. * 76://酒店预订
  1171. */
  1172. List<Grp_HotelReservations> _HotelReservations = await _groupRepository
  1173. .Query<Grp_HotelReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1174. .ToListAsync();
  1175. List<Grp_HotelReservationsContent> _HotelReservationsContents = await _groupRepository
  1176. .Query<Grp_HotelReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1177. .ToListAsync();
  1178. /*
  1179. * 79://车/导游地接
  1180. */
  1181. List<Grp_CarTouristGuideGroundReservations> _CarTouristGuideGroundReservations = await _groupRepository
  1182. .Query<Grp_CarTouristGuideGroundReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1183. .ToListAsync();
  1184. List<Grp_CarTouristGuideGroundReservationsContent> _CarTouristGuideGroundReservationsContent = await _groupRepository
  1185. .Query<Grp_CarTouristGuideGroundReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1186. .ToListAsync();
  1187. /*
  1188. * 80: //签证
  1189. */
  1190. List<Grp_VisaInfo> _VisaInfos = await _groupRepository
  1191. .Query<Grp_VisaInfo>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1192. .ToListAsync();
  1193. /*
  1194. *81: //邀请/公务活动
  1195. */
  1196. List<Grp_InvitationOfficialActivities> _InvitationOfficialActivities = await _groupRepository
  1197. .Query<Grp_InvitationOfficialActivities>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1198. .ToListAsync();
  1199. /*
  1200. * 82: //团组客户保险
  1201. */
  1202. List<Grp_Customers> _Customers = await _groupRepository.Query<Grp_Customers>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1203. /*
  1204. * Lable = 85 机票预订
  1205. */
  1206. List<Grp_AirTicketReservations> p_AirTicketReservations = await _groupRepository
  1207. .Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1208. .ToListAsync();
  1209. /*
  1210. * 85 机票预定
  1211. */
  1212. List<Grp_AirTicketReservations> _AirTicketReservations = await _groupRepository.Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1213. /*
  1214. * 98 其他款项
  1215. */
  1216. List<Grp_DecreasePayments> _DecreasePayments = await _groupRepository
  1217. .Query<Grp_DecreasePayments>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1218. .ToListAsync();
  1219. /*
  1220. * 285:收款退还
  1221. */
  1222. List<Fin_PaymentRefundAndOtherMoney> _PaymentRefundAndOtherMoneys = await _groupRepository
  1223. .Query<Fin_PaymentRefundAndOtherMoney>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1224. .ToListAsync();
  1225. /*
  1226. * 1015: //超支费用
  1227. */
  1228. List<Fin_GroupExtraCost> _GroupExtraCosts = await _groupRepository.Query<Fin_GroupExtraCost>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1229. /*
  1230. * 币种信息
  1231. */
  1232. var currencyItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 66 && s.IsDel == 0).ToListAsync();
  1233. /*
  1234. * 车/导游地接 费用类型
  1235. */
  1236. var carFeeTypeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 17 && s.IsDel == 0).ToListAsync();
  1237. /*
  1238. * 车/导游地接 费用类型
  1239. */
  1240. var carFeeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 83 && s.IsDel == 0).ToListAsync();
  1241. var initDatas = await _groupRepository.Query<Sys_SetData>(s => s.IsDel == 0).ToListAsync();
  1242. var cityData = await _groupRepository.Query<Grp_NationalTravelFee>(s => s.IsDel == 0).ToListAsync();
  1243. /*
  1244. * 用户信息
  1245. */
  1246. var userItems = await _groupRepository.Query<Sys_Users>(s => s.IsDel == 0).ToListAsync();
  1247. /*
  1248. * 费用模块
  1249. */
  1250. Sys_SetData sdPriceName = _groupRepository.Query<Sys_SetData>(s => s.Id == _dto.Label).First();
  1251. string priceModule = string.Empty;
  1252. if (sdPriceName != null)
  1253. {
  1254. priceModule = sdPriceName.Name;
  1255. }
  1256. /*
  1257. * 成本信息
  1258. */
  1259. var groupCost = _groupRepository.Query<Grp_GroupCostParameter>(s => s.DiId == _dto.DiId && s.IsDel == 0).First();
  1260. decimal _groupRate = 0.0000M;
  1261. string _groupCurrencyCode = "-";
  1262. if (groupCost != null)
  1263. {
  1264. _groupRate = groupCost.Rate;
  1265. if (int.TryParse(groupCost.Currency, out int _currency))
  1266. {
  1267. _groupCurrencyCode = currencyItems.Find(it => it.Id == _currency)?.Name ?? "-";
  1268. }
  1269. else _groupCurrencyCode = groupCost.Currency;
  1270. }
  1271. string costContentSql = $"Select * From Grp_GroupCost";
  1272. var groupCostDetails = _sqlSugar.SqlQueryable<GroupCostAuditView>(costContentSql).Where(x => x.IsDel == 0 && x.Diid == _dto.DiId).ToList();
  1273. //处理日期为空的天数
  1274. for (int i = 0; i < groupCostDetails.Count; i++)
  1275. if (i != 0)
  1276. if (string.IsNullOrEmpty(groupCostDetails[i].Date))
  1277. groupCostDetails[i].Date = groupCostDetails[i - 1].Date;
  1278. /*
  1279. * 处理详情数据
  1280. */
  1281. foreach (var entity in entityList)
  1282. {
  1283. Grp_CreditCardPaymentDetailView _detail = new Grp_CreditCardPaymentDetailView();
  1284. _detail.Id = entity.Id;
  1285. _detail.PriceName = priceModule;
  1286. _detail.PayType = initDatas.Find(it => it.Id == entity.PayDId)?.Name ?? "-";
  1287. _detail.CardType = initDatas.Find(it => it.Id == entity.CTDId)?.Name ?? "-";
  1288. /*
  1289. * 应付款金额
  1290. */
  1291. Sys_SetData sdPaymentCurrency_WaitPay = currencyItems.Where(s => s.Id == entity.PaymentCurrency).FirstOrDefault();
  1292. string PaymentCurrency_WaitPay = "Unknown";
  1293. string hotelCurrncyCode = "Unknown";
  1294. string hotelCurrncyName = "Unknown";
  1295. if (sdPaymentCurrency_WaitPay != null)
  1296. {
  1297. PaymentCurrency_WaitPay = sdPaymentCurrency_WaitPay.Name;
  1298. hotelCurrncyCode = sdPaymentCurrency_WaitPay.Name;
  1299. hotelCurrncyName = sdPaymentCurrency_WaitPay.Remark;
  1300. if (hotelCurrncyCode.Equals("CNY"))
  1301. {
  1302. entity.DayRate = 1.0000M;
  1303. }
  1304. }
  1305. _detail.WaitPay = entity.PayMoney.ConvertToDecimal1().ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1306. /*
  1307. * 此次付款金额
  1308. */
  1309. decimal CurrPayStr = 0;
  1310. if (entity.PayPercentage == 0)
  1311. {
  1312. if (entity.PayThenMoney != 0)
  1313. CurrPayStr = (entity.PayThenMoney * entity.DayRate).ConvertToDecimal1();
  1314. }
  1315. else
  1316. {
  1317. if (entity.PayMoney != 0)
  1318. {
  1319. CurrPayStr = (entity.PayMoney * entity.PayPercentage / 100 * entity.DayRate).ConvertToDecimal1();
  1320. }
  1321. }
  1322. _detail.CurrPay = CurrPayStr.ToString("#0.00") + " CNY";
  1323. /*
  1324. * 剩余尾款
  1325. */
  1326. decimal BalanceStr = 0;
  1327. if (CurrPayStr != 0)
  1328. {
  1329. if (entity.PayMoney - (CurrPayStr / entity.DayRate) < 0.01M)
  1330. BalanceStr = 0;
  1331. else
  1332. BalanceStr = (entity.PayMoney - CurrPayStr / entity.DayRate).ConvertToDecimal1();
  1333. }
  1334. _detail.Balance = BalanceStr.ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1335. /*
  1336. * Bus名称
  1337. */
  1338. _detail.BusName = "待增加";
  1339. /*
  1340. *费用所属
  1341. */
  1342. switch (entity.CTable)
  1343. {
  1344. case 76://酒店预订
  1345. Grp_HotelReservations hotelReservations = _HotelReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1346. if (hotelReservations != null)
  1347. {
  1348. DateTime checkIn = Convert.ToDateTime(hotelReservations.CheckInDate),
  1349. checkOut = Convert.ToDateTime(hotelReservations.CheckOutDate);
  1350. int hotel_days = (int)(checkOut - checkIn).TotalDays;
  1351. string roomFeeStr = "", roomFeestr1 = "";
  1352. //是否比较房型价格
  1353. bool __isSingle = false, __isDouble = false, __isSuite = false, __isOther = false;
  1354. roomFeeStr += $"<br/><span style='width:70px;display: inline-block;'></span>";
  1355. if (hotelReservations.SingleRoomPrice > 0)
  1356. { roomFeestr1 += $"单间:{hotelReservations.SingleRoomPrice.ToString("#0.00")} * {hotelReservations.SingleRoomCount}"; __isSingle = true; }
  1357. if (hotelReservations.DoubleRoomPrice > 0)
  1358. { roomFeestr1 += $"双人间:{hotelReservations.DoubleRoomPrice.ToString("#0.00")} * {hotelReservations.DoubleRoomCount}"; __isDouble = true; }
  1359. if (hotelReservations.SuiteRoomPrice > 0)
  1360. { roomFeestr1 += $"套房:{hotelReservations.SuiteRoomPrice.ToString("#0.00")} * {hotelReservations.SuiteRoomCount}"; __isSuite = true; }
  1361. if (hotelReservations.OtherRoomPrice > 0)
  1362. { roomFeestr1 += $"其他:{hotelReservations.OtherRoomPrice.ToString("#0.00")} * {hotelReservations.OtherRoomCount}"; __isOther = true; }
  1363. if (roomFeestr1.Length > 0) roomFeeStr += roomFeestr1;
  1364. else roomFeeStr += " 0.00 * 0";
  1365. decimal governmentRentFee = 0.00M, cityTaxFee = 0.00M, breakfastFee = 0.00M, roomFee = 0.00M;
  1366. string governmentRentBool = "否", cityTaxBool = "否", breakfastBool = "否", roomBool = "否";
  1367. string governmentRentCode = "", governmentRentName = "", cityTaxCode = "", cityTaxName = "", breakfastCode = "", breakfastName = "", roomCode = "", roomName = "";
  1368. var _HotelReservationsContents1 = _HotelReservationsContents.Where(it => it.HrId == hotelReservations.Id).ToList();
  1369. /*
  1370. * 费用类型
  1371. * 1:房费
  1372. * 2:早餐
  1373. * 3:地税
  1374. * 4:城市税
  1375. * </summary>
  1376. */
  1377. //地税
  1378. var governmentRentData = _HotelReservationsContents1.Find(it => it.PriceType == 3);
  1379. if (governmentRentData != null)
  1380. {
  1381. governmentRentBool = governmentRentData.IsOppay == 1 ? "是" : "否";
  1382. governmentRentFee = governmentRentData.Price;
  1383. var governmentRentCurrData = currencyItems.Find(s => s.Id == governmentRentData.Currency);
  1384. if (governmentRentCurrData != null)
  1385. {
  1386. governmentRentCode = governmentRentCurrData.Name;
  1387. governmentRentName = $"({governmentRentCurrData.Remark})";
  1388. }
  1389. }
  1390. //城市税
  1391. var cityTaxData = _HotelReservationsContents1.Find(it => it.PriceType == 4);
  1392. if (cityTaxData != null)
  1393. {
  1394. cityTaxBool = cityTaxData.IsOppay == 1 ? "是" : "否";
  1395. cityTaxFee = cityTaxData.Price;
  1396. var cityTaxCurrData = currencyItems.Find(s => s.Id == cityTaxData.Currency);
  1397. if (cityTaxCurrData != null)
  1398. {
  1399. cityTaxCode = cityTaxCurrData.Name;
  1400. cityTaxName = $"({cityTaxCurrData.Remark})";
  1401. }
  1402. }
  1403. //酒店早餐
  1404. var breakfastData = _HotelReservationsContents1.Find(it => it.PriceType == 2);
  1405. if (breakfastData != null)
  1406. {
  1407. breakfastBool = breakfastData.IsOppay == 1 ? "是" : "否";
  1408. breakfastFee = breakfastData.Price;
  1409. var breakfastCurrData = currencyItems.Find(s => s.Id == breakfastData.Currency);
  1410. if (breakfastCurrData != null)
  1411. {
  1412. breakfastCode = breakfastCurrData.Name;
  1413. breakfastName = $"({breakfastCurrData.Remark})";
  1414. }
  1415. }
  1416. //房间费用
  1417. var roomData = _HotelReservationsContents1.Find(it => it.PriceType == 1);
  1418. if (roomData != null)
  1419. {
  1420. _detail.PayType = initDatas.Find(it => it.Id == roomData.PayDId)?.Name ?? "-";
  1421. _detail.CardType = initDatas.Find(it => it.Id == roomData.CTDId)?.Name ?? "-";
  1422. roomBool = roomData.IsOppay == 1 ? "是" : "否";
  1423. roomFee = roomData.Price;
  1424. var roomCurrData = currencyItems.Find(s => s.Id == roomData.Currency);
  1425. if (roomCurrData != null)
  1426. {
  1427. roomCode = roomCurrData.Name;
  1428. roomName = $"({roomCurrData.Remark})";
  1429. }
  1430. }
  1431. string hotelCostTitalStr = "<span style='font-weight:800;'>成本信息</span><br/>";
  1432. string hotelCostStr = "";
  1433. decimal hotelCsotTotal = 0.00M;
  1434. if (groupCost != null)
  1435. {
  1436. if (int.TryParse(groupCost.Currency, out int currencyId)) groupCost.Currency = currencyItems.Find(s => s.Id == currencyId)?.Name ?? "-";
  1437. hotelCostStr += $"{groupCost.Currency}(汇率:{groupCost.Rate.ToString("#0.0000")})<br/>";
  1438. }
  1439. if (checkOut > checkIn) checkOut = checkOut.AddDays(-1);
  1440. var hotelCostDetails = groupCostDetails.Where(x => Convert.ToDateTime(x.Date) >= checkIn && Convert.ToDateTime(x.Date) <= checkOut).ToList();
  1441. string hotelCost_day = "";
  1442. var hotelCostDetails1 = hotelCostDetails.GroupBy(x => x.Date);
  1443. foreach (var item in hotelCostDetails1)
  1444. {
  1445. hotelCsotTotal += item.Sum(x => x.HotelSingleRoomFee) + item.Sum(x => x.HotelDoubleRoomFee) + item.Sum(x => x.HotelSuiteRoomFee) + item.Sum(x => x.HotelSuiteFee);
  1446. hotelCost_day += @$"{item.First()?.Date ?? "-"}";
  1447. if (item.Sum(x => x.HotelSingleRoomFee) != 0) hotelCost_day += @$" 单间:{item.Sum(x => x.HotelSingleRoomFee).ToString("#0.00")}";
  1448. else { if (__isSingle) hotelCost_day += @$" 单间:0.00"; }
  1449. if (item.Sum(x => x.HotelDoubleRoomFee) != 0) hotelCost_day += @$" 双人间:{item.Sum(x => x.HotelDoubleRoomFee).ToString("#0.00")}";
  1450. else { if (__isDouble) hotelCost_day += @$" 双人间:0.00"; }
  1451. if (item.Sum(x => x.HotelSuiteRoomFee) != 0) hotelCost_day += @$" 小套房/豪华套房:{item.Sum(x => x.HotelSuiteRoomFee).ToString("#0.00")}";
  1452. else { if (__isSuite) hotelCost_day += @$" 小套房/豪华套房:0.00"; }
  1453. if (item.Sum(x => x.HotelSuiteFee) != 0) hotelCost_day += @$" 套房:{item.Sum(x => x.HotelSuiteFee).ToString("#0.00")}";
  1454. else { if (__isOther) hotelCost_day += @$" 套房:0.00"; }
  1455. hotelCost_day += @$"</br>";
  1456. }
  1457. string hotelBreakfastStr = "", hotelGovernmentRentStr = "", hotelCityTaxStr = "";
  1458. if (breakfastFee > 0) hotelBreakfastStr = $"酒店早餐: {breakfastFee.ToString("#0.00")} {breakfastCode} {breakfastName} 当时汇率 {breakfastData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{breakfastBool}<br/><br/>";
  1459. if (governmentRentFee > 0) hotelGovernmentRentStr = $"地税: {governmentRentFee.ToString("#0.00")} {governmentRentCode} {governmentRentName} 当时汇率 {governmentRentData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{governmentRentBool}<br/><br/>";
  1460. if (cityTaxFee > 0) hotelCityTaxStr = $"城市税: {cityTaxFee.ToString("#0.00")} {cityTaxCode} {cityTaxName} 当时汇率 {cityTaxData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{cityTaxBool}<br/>";
  1461. string hotelCostTotalStr = "";// $"&nbsp;&nbsp;成本合计:{hotelCsotTotal.ToString("#0.00")}<br/>";
  1462. _detail.PriceMsgContent = $"{hotelCostTitalStr}{hotelCostStr}{hotelCostTotalStr}{hotelCost_day}<br/>" +
  1463. $"<span style='font-weight:800;'>{hotelReservations.HotelName} [{hotelReservations.CheckInDate} - {hotelReservations.CheckOutDate}]</span><br/>" +
  1464. $"信用卡金额:{_detail.WaitPay} ({hotelCurrncyName})<br/>" +
  1465. $"房间说明: {hotelReservations.Remark} <br/>" +
  1466. $"房间费用: {roomCode} {roomName} 当时汇率 {roomData?.Rate.ToString("#0.0000")}{roomFeeStr} <br/>是否由地接代付:{roomBool}<br/><br/>" +
  1467. $"{hotelBreakfastStr}" +
  1468. $"{hotelGovernmentRentStr}" +
  1469. $"{hotelCityTaxStr}";
  1470. _detail.PriceNameContent = hotelReservations.HotelName;
  1471. }
  1472. break;
  1473. case 79://车/导游地接
  1474. Grp_CarTouristGuideGroundReservations touristGuideGroundReservations = _CarTouristGuideGroundReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1475. if (touristGuideGroundReservations != null)
  1476. {
  1477. if (!string.IsNullOrEmpty(touristGuideGroundReservations.BusName))
  1478. {
  1479. _detail.BusName = touristGuideGroundReservations.BusName;
  1480. }
  1481. _detail.PriceNameContent = touristGuideGroundReservations.PriceName;
  1482. //bool isInt = int.TryParse(touristGuideGroundReservations.Area, out int cityId);
  1483. //if (isInt)
  1484. //{
  1485. // var cityInfo = cityData.Find(it => it.Id == cityId);
  1486. // if (cityInfo != null)
  1487. // {
  1488. // string nameContent = $@"{cityInfo.Country}-{cityInfo.City}";
  1489. // var carFeeItem = carFeeItems.Find(it => it.Id == touristGuideGroundReservations.PriceType);
  1490. // if (carFeeItem != null)
  1491. // {
  1492. // nameContent += $@"({carFeeItem.Name})";
  1493. // }
  1494. // _detail.PriceNameContent = nameContent;
  1495. // }
  1496. //}
  1497. //else
  1498. //{
  1499. // _detail.PriceNameContent = touristGuideGroundReservations.Area;
  1500. //}
  1501. var touristGuideGroundReservationsContents =
  1502. _CarTouristGuideGroundReservationsContent.Where(s => s.CTGGRId == touristGuideGroundReservations.Id && s.IsDel == 0 && s.Price != 0).ToList();
  1503. string priceMsg = $"<span style='font-weight:800;'>{touristGuideGroundReservations.PriceName}({touristGuideGroundReservations.ServiceStartTime} - {touristGuideGroundReservations.ServiceEndTime})</span><br/>";
  1504. foreach (var item in touristGuideGroundReservationsContents)
  1505. {
  1506. string typeName = "Unknown";
  1507. string carCurrencyCode = "Unknown";
  1508. string carCurrencyName = "Unknown";
  1509. var carTypeData = carFeeTypeItems.Where(s => s.Id == item.SId && s.IsDel == 0).FirstOrDefault();
  1510. if (carTypeData != null) typeName = carTypeData.Name;
  1511. var currencyData = currencyItems.Where(s => s.Id == item.Currency && s.IsDel == 0).FirstOrDefault();
  1512. if (currencyData != null)
  1513. {
  1514. carCurrencyCode = currencyData.Name;
  1515. carCurrencyName = currencyData.Remark;
  1516. }
  1517. string opCostStr = string.Empty;
  1518. decimal opCostTypePrice = 0.00M;
  1519. #region 处理成本各项费用
  1520. var opDate = item.DatePrice?.ToString("yyyy-MM-dd");
  1521. var opCost = groupCostDetails.Where(x => x.Date.Equals(opDate)).ToList();
  1522. if (opCost.Count > 0)
  1523. {
  1524. switch (item.SId)
  1525. {
  1526. case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //91车费
  1527. //case 982: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //982 车超时费 -- 暂无
  1528. case 92: opCostTypePrice = opCost.Sum(x => x.GuideFee); break; //92 导游费
  1529. case 94: opCostTypePrice = opCost.Sum(x => x.GuideScenicFee); break; //94 导游景点费
  1530. case 95: opCostTypePrice = opCost.Sum(x => x.GuideTipFee); break; //95 导游小费
  1531. case 983: opCostTypePrice = opCost.Sum(x => x.GuideMealFee); break; //983 导游餐补
  1532. case 984: opCostTypePrice = opCost.Sum(x => x.GuideMealFee); break; //984 导游房补
  1533. case 985: opCostTypePrice = opCost.Sum(x => x.GuideRoomFee); break; //985 导游交通
  1534. //case 96: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //96 接送机费 -- 暂无
  1535. //case 97: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //97 其他费用 -- 暂无
  1536. case 979: opCostTypePrice = opCost.Sum(x => x.DriverFee); break; //979 司机工资
  1537. case 980: opCostTypePrice = opCost.Sum(x => x.DriverTipFee); break; //980 司机小费
  1538. case 981: opCostTypePrice = opCost.Sum(x => x.DriverMealFee); break; //981 司机餐补
  1539. case 988: opCostTypePrice = opCost.Sum(x => x.ClientBreakfastFee); break; //988 客户早餐费用
  1540. case 93: opCostTypePrice = opCost.Sum(x => x.ClientDinnerFee); break; //93 客户午餐费用
  1541. case 989: opCostTypePrice = opCost.Sum(x => x.ClientLunchFee); break; //989 客户晚餐费用
  1542. case 990: opCostTypePrice = opCost.Sum(x => x.ScenicTicketFee); break; //990 景点门票费
  1543. case 991: opCostTypePrice = opCost.Sum(x => x.DrinkSnackFruitFee); break; //991 饮料/零食/水果
  1544. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //992 住补费用 -- 暂无
  1545. case 994: opCostTypePrice = opCost.Sum(x => x.TranslatorFee); break; //994 翻译费
  1546. case 1059: opCostTypePrice = opCost.Sum(x => x.GuideOverTimeFee); break; //1059 导游超时费用
  1547. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1070 尾款金额
  1548. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1071 其他额外费用
  1549. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1073 翻译超时费
  1550. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1074 早餐超支费用
  1551. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1075 午餐超支费用
  1552. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1076 晚餐超支费用
  1553. }
  1554. opCostStr = $"&nbsp;&nbsp;/&nbsp;&nbsp;成本:{opCostTypePrice.ToString("#0.00")} {_groupCurrencyCode}(汇率:{_groupRate.ToString("#0.0000")})";
  1555. }
  1556. #endregion
  1557. priceMsg += $"日期:{item.DatePrice?.ToString("yyyy-MM-dd") ?? "-"}<br/>" +
  1558. $"{typeName}:{item.Price.ToString("#0.00")} {carCurrencyCode}(汇率:{entity.DayRate.ToString("#0.0000")}) {opCostStr}<br/>" +
  1559. $"明细:{item.PriceContent ?? "-"}<br/>" +
  1560. $"备注:{item.Remark ?? "-"}<br/><br/>";
  1561. }
  1562. _detail.PriceMsgContent = priceMsg;
  1563. }
  1564. break;
  1565. case 80: //签证
  1566. Grp_VisaInfo visaInfo = _VisaInfos.Where(s => s.Id == entity.CId).FirstOrDefault();
  1567. if (visaInfo != null)
  1568. {
  1569. _detail.PriceNameContent = getClientNameStr(clientNameList, visaInfo.VisaClient);
  1570. _detail.PriceMsgContent = $"签证描述:{visaInfo.VisaDescription}<br/> 备注:{visaInfo.Remark}";
  1571. }
  1572. break;
  1573. case 81: //邀请/公务活动
  1574. Grp_InvitationOfficialActivities _ioa = _InvitationOfficialActivities.Where(s => s.Id == entity.CId).FirstOrDefault();
  1575. if (_ioa != null)
  1576. {
  1577. string inviteCurrName = "Unknown", //邀请费用币种 Name
  1578. inviteCurrCode = "Unknown", //邀请费用币种 Code
  1579. sendCurrName = "Unknown", //快递费用币种 Name
  1580. sendCurrCode = "Unknown", //快递费用币种 Code
  1581. eventsCurrName = "Unknown", //公务活动费币种 Name
  1582. eventsCurrCode = "Unknown", //公务活动费币种 Code
  1583. translateCurrName = "Unknown", //公务翻译费 Name
  1584. translateCurrCode = "Unknown"; //公务翻译费 Code
  1585. #region 处理费用币种
  1586. var inviteCurrData = currencyItems.Where(s => s.Id == _ioa.InviteCurrency && s.IsDel == 0).FirstOrDefault();
  1587. if (inviteCurrData != null)
  1588. {
  1589. inviteCurrName = inviteCurrData.Remark;
  1590. inviteCurrCode = inviteCurrData.Name;
  1591. }
  1592. var sendCurrData = currencyItems.Where(s => s.Id == _ioa.SendCurrency && s.IsDel == 0).FirstOrDefault();
  1593. if (sendCurrData != null)
  1594. {
  1595. sendCurrName = sendCurrData.Remark;
  1596. sendCurrCode = sendCurrData.Name;
  1597. }
  1598. var eventsCurrData = currencyItems.Where(s => s.Id == _ioa.EventsCurrency && s.IsDel == 0).FirstOrDefault();
  1599. if (eventsCurrData != null)
  1600. {
  1601. eventsCurrName = eventsCurrData.Remark;
  1602. eventsCurrCode = eventsCurrData.Name;
  1603. }
  1604. var translateCurrData = currencyItems.Where(s => s.Id == _ioa.TranslateCurrency && s.IsDel == 0).FirstOrDefault();
  1605. if (translateCurrData != null)
  1606. {
  1607. translateCurrName = translateCurrData.Remark;
  1608. translateCurrCode = translateCurrData.Name;
  1609. }
  1610. #endregion
  1611. _detail.PriceNameContent = _ioa.InviterArea;
  1612. _detail.PriceMsgContent = $@"邀请费用:{_ioa.InviteCost.ToString("#0.00")} {inviteCurrCode}({inviteCurrName})<br/>" +
  1613. $@"快递费用:{_ioa.SendCost.ToString("#0.00")} {sendCurrCode}({sendCurrName})<br/>" +
  1614. $@"公务活动费:{_ioa.EventsCost.ToString("#0.00")} {eventsCurrCode}({eventsCurrName})<br/>" +
  1615. $@"公务翻译费:{_ioa.TranslateCost.ToString("#0.00")} {translateCurrCode}({translateCurrName})<br/>" +
  1616. $@"备注:" + _ioa.Remark + "<br/>";
  1617. }
  1618. break;
  1619. case 82: //团组客户保险
  1620. Grp_Customers customers = _Customers.Where(s => s.Id == entity.CId && s.IsDel == 0).FirstOrDefault();
  1621. if (customers != null)
  1622. {
  1623. _detail.PriceNameContent = getClientNameStr(clientNameList, customers.ClientName);
  1624. _detail.PriceMsgContent = "备注:" + customers.Remark + "<br/>";
  1625. }
  1626. break;
  1627. case 85: //机票预订
  1628. Grp_AirTicketReservations jpRes = _AirTicketReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1629. if (jpRes != null)
  1630. {
  1631. string FlightsDescription = jpRes.FlightsDescription;
  1632. string PriceDescription = jpRes.PriceDescription;
  1633. _detail.PriceMsgContent = "航班号:" + jpRes.FlightsCode + "<br/>城市A-B:" + jpRes.FlightsCity + "<br/>航班描述:" + FlightsDescription.Replace("\r\n", "<br />") + "<br/>" + "价格描述:" + PriceDescription;
  1634. _detail.PriceNameContent = "(" + jpRes.FlightsCode + ")";
  1635. }
  1636. break;
  1637. case 98://其他款项
  1638. Grp_DecreasePayments gdpRes = _DecreasePayments.Where(s => s.Id == entity.CId).FirstOrDefault();
  1639. if (gdpRes != null)
  1640. {
  1641. _detail.PriceMsgContent = "备注:" + gdpRes.Remark;
  1642. _detail.PriceNameContent = gdpRes.PriceName;
  1643. }
  1644. break;
  1645. case 285://收款退还
  1646. Fin_PaymentRefundAndOtherMoney refundAndOtherMoney = _PaymentRefundAndOtherMoneys.Where(s => s.Id == entity.CId).FirstOrDefault();
  1647. if (refundAndOtherMoney != null)
  1648. {
  1649. _detail.PriceMsgContent = "备注:" + refundAndOtherMoney.Remark;
  1650. _detail.PriceNameContent = refundAndOtherMoney.PriceName;
  1651. }
  1652. break;
  1653. case 751://酒店早餐
  1654. break;
  1655. case 1015://超支费用
  1656. Fin_GroupExtraCost groupExtraCost = _GroupExtraCosts.Where(s => s.Id == entity.CId).FirstOrDefault();
  1657. if (groupExtraCost != null)
  1658. {
  1659. _detail.PriceNameContent = groupExtraCost.PriceName;
  1660. _detail.PriceMsgContent = "备注:" + groupExtraCost.Remark;
  1661. }
  1662. break;
  1663. default:
  1664. break;
  1665. }
  1666. /*
  1667. * 申请人
  1668. */
  1669. string operatorName = " - ";
  1670. Sys_Users _opUser = userItems.Where(s => s.Id == entity.CreateUserId).FirstOrDefault();
  1671. if (_opUser != null)
  1672. {
  1673. operatorName = _opUser.CnName;
  1674. }
  1675. _detail.OperatorName = operatorName;
  1676. /*
  1677. * 审核人
  1678. */
  1679. string auditOperatorName = "Unknown";
  1680. if (entity.AuditGMOperate == 0)
  1681. auditOperatorName = " - ";
  1682. else if (entity.AuditGMOperate == 4)
  1683. auditOperatorName = "自动审核";
  1684. else
  1685. {
  1686. Sys_Users _adUser = userItems.Where(s => s.Id == entity.AuditGMOperate).FirstOrDefault();
  1687. if (_adUser != null)
  1688. {
  1689. auditOperatorName = _adUser.CnName;
  1690. }
  1691. }
  1692. _detail.AuditOperatorName = auditOperatorName;
  1693. /*
  1694. * 超预算比例
  1695. */
  1696. string overBudgetStr = "";
  1697. if (entity.ExceedBudget == -1)
  1698. overBudgetStr = sdPriceName.Name + "尚无预算";
  1699. else if (entity.ExceedBudget == 0)
  1700. {
  1701. if (entity.CTable == 76 || entity.CTable == 79)
  1702. {
  1703. if (entity.IsAuditGM == 3) overBudgetStr = "未超预算";
  1704. else overBudgetStr = "超预算";
  1705. }
  1706. else
  1707. {
  1708. overBudgetStr = "未超预算";
  1709. }
  1710. }
  1711. else
  1712. overBudgetStr = entity.ExceedBudget.ToString("P");
  1713. _detail.OverBudget = overBudgetStr;
  1714. /*
  1715. * 费用总计
  1716. */
  1717. ccpCurrencyPrices.Add(new CreditCardPaymentCurrencyPriceItem()
  1718. {
  1719. CurrencyId = entity.PaymentCurrency,
  1720. CurrencyName = PaymentCurrency_WaitPay,
  1721. AmountPayable = entity.PayMoney,
  1722. ThisPayment = CurrPayStr,
  1723. BalancePayment = BalanceStr,
  1724. AuditedFunds = CurrPayStr
  1725. });
  1726. _detail.IsAuditGM = entity.IsAuditGM;
  1727. detailList.Add(_detail);
  1728. }
  1729. #endregion
  1730. _view.DetailList = new List<Grp_CreditCardPaymentDetailView>(detailList);
  1731. /*
  1732. * 下方描述处理
  1733. */
  1734. List<CreditCardPaymentCurrencyPriceItem> nonDuplicat = ccpCurrencyPrices.Where((x, i) => ccpCurrencyPrices.FindIndex(z => z.CurrencyId == x.CurrencyId) == i).ToList();//Lambda表达式去重
  1735. CreditCardPaymentCurrencyPriceItem ccpCurrencyPrice = nonDuplicat.Where(it => it.CurrencyId == 836).FirstOrDefault();
  1736. if (ccpCurrencyPrice != null)
  1737. {
  1738. int CNYIndex = nonDuplicat.IndexOf(ccpCurrencyPrice);
  1739. nonDuplicat.MoveItemAtIndexToFront(CNYIndex);
  1740. }
  1741. else
  1742. {
  1743. nonDuplicat.OrderBy(it => it.CurrencyId).ToList();
  1744. }
  1745. string amountPayableStr = string.Format(@"应付款总金额: ");
  1746. string thisPaymentStr = string.Format(@"此次付款总金额: ");
  1747. string balancePaymentStr = string.Format(@"目前剩余尾款总金额: ");
  1748. string auditedFundsStr = string.Format(@"已审费用总额: ");
  1749. foreach (var item in nonDuplicat)
  1750. {
  1751. var strs = ccpCurrencyPrices.Where(it => it.CurrencyId == item.CurrencyId).ToList();
  1752. if (strs.Count > 0)
  1753. {
  1754. decimal amountPayable = strs.Sum(it => it.AmountPayable);
  1755. decimal balancePayment = strs.Sum(it => it.BalancePayment);
  1756. amountPayableStr += string.Format(@"{0}{1}&nbsp;|", amountPayable.ToString("#0.00"), item.CurrencyName);
  1757. //单独处理此次付款金额
  1758. if (item.CurrencyId == 836) //人民币
  1759. {
  1760. decimal thisPayment = ccpCurrencyPrices.Sum(it => it.ThisPayment);
  1761. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", thisPayment.ToString("#0.00"), item.CurrencyName);
  1762. }
  1763. else
  1764. {
  1765. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1766. }
  1767. balancePaymentStr += string.Format(@"{0}{1}&nbsp;|", balancePayment.ToString("#0.00"), item.CurrencyName);
  1768. //单独处理已审核费用
  1769. if (item.CurrencyId == 836) //人民币
  1770. {
  1771. decimal auditedFunds = ccpCurrencyPrices.Sum(it => it.AuditedFunds);
  1772. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", auditedFunds.ToString("#0.00"), item.CurrencyName);
  1773. }
  1774. else
  1775. {
  1776. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1777. }
  1778. }
  1779. }
  1780. _view.TotalStr1 = amountPayableStr.Substring(0, amountPayableStr.Length - 1);
  1781. _view.TotalStr2 = thisPaymentStr.Substring(0, thisPaymentStr.Length - 1);
  1782. _view.TotalStr3 = balancePaymentStr.Substring(0, balancePaymentStr.Length - 1);
  1783. _view.TotalStr4 = auditedFundsStr.Substring(0, auditedFundsStr.Length - 1);
  1784. var _view1 = new
  1785. {
  1786. PageFuncAuth = pageFunAuthView,
  1787. Data = _view
  1788. };
  1789. return Ok(JsonView(_view1));
  1790. }
  1791. catch (Exception ex)
  1792. {
  1793. return Ok(JsonView(false, ex.Message));
  1794. }
  1795. }
  1796. /// <summary>
  1797. /// 费用审核
  1798. /// 修改团组费用审核状态
  1799. /// </summary>
  1800. /// <param name="_dto">参数Json字符串</param>
  1801. /// <returns></returns>
  1802. [HttpPost]
  1803. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1804. public async Task<IActionResult> PostAuditGrpCreditCardPayment(Edit_GrpCreditCardPaymentDto _dto)
  1805. {
  1806. #region 参数验证
  1807. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1808. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1809. #endregion
  1810. #region 页面操作权限验证
  1811. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1812. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1813. if (pageFunAuthView.AuditAuth == 0) return Ok(JsonView(false, "您没有审核权限"));
  1814. #endregion
  1815. List<string> idList = _dto.CreditIdStr.Split(',').ToList();
  1816. Grp_CreditCardPayment _detail = _mapper.Map<Grp_CreditCardPayment>(_dto);
  1817. DateTime dtNow = DateTime.Now;
  1818. _groupRepository.BeginTran();
  1819. int rst = 0;
  1820. var creditDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && idList.Contains(it.Id.ToString())).ToList();
  1821. var creditTypeDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 16).ToList();
  1822. var creditCurrencyDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  1823. var groupDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).ToList();
  1824. List<dynamic> msgDatas = new List<dynamic>();
  1825. Dictionary<int, int> dic_ccp_user = new Dictionary<int, int>() { };
  1826. foreach (var item in idList)
  1827. {
  1828. int CreditId = int.Parse(item);
  1829. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_CreditCardPayment>()
  1830. .SetColumns(it => it.IsAuditGM == _dto.AuditCode)
  1831. .SetColumns(it => it.AuditGMOperate == _dto.UserId)
  1832. .SetColumns(it => it.AuditGMDate == dtNow.ToString("yyyy-MM-dd HH:mm:ss"))
  1833. .Where(s => s.Id == CreditId)
  1834. .ExecuteCommandAsync();
  1835. if (result < 1)
  1836. {
  1837. rst = -1;
  1838. _groupRepository.RollbackTran();
  1839. return Ok(JsonView(false, "操作失败并回滚!"));
  1840. }
  1841. var creditData = creditDatas.Where(it => it.Id == CreditId).FirstOrDefault();
  1842. if (creditData != null)
  1843. {
  1844. #region 应用通知配置
  1845. try
  1846. {
  1847. dic_ccp_user.Add(creditData.Id, creditData.CreateUserId);
  1848. }
  1849. catch (Exception ex)
  1850. {
  1851. }
  1852. #endregion
  1853. string auditStr = _dto.AuditCode == 1 ? "已通过" : _dto.AuditCode == 2 ? "未通过" : "未审核";
  1854. string groupNameStr = string.Empty;
  1855. var groupData = groupDatas.Where(it => it.Id == creditData.DIId).FirstOrDefault();
  1856. if (groupData != null) groupNameStr = groupData.TeamName;
  1857. string creditTypeStr = string.Empty;
  1858. var creditTypeData = creditTypeDatas.Where(it => it.Id == creditData.CTable).FirstOrDefault();
  1859. if (creditTypeData != null) creditTypeStr = creditTypeData.Name;
  1860. string creditCurrency = string.Empty;
  1861. var creditCurrencyData = creditCurrencyDatas.Where(it => it.Id == creditData.PaymentCurrency).FirstOrDefault();
  1862. if (creditCurrencyData != null) creditCurrency = creditCurrencyData.Name;
  1863. if (creditCurrency.Equals("CNY"))
  1864. {
  1865. creditData.DayRate = 1.0000M;
  1866. }
  1867. if (creditData.PayPercentage == 0.00M)
  1868. {
  1869. creditData.PayPercentage = 100M;
  1870. }
  1871. decimal CNYPrice = (creditData.PayMoney * (creditData.PayPercentage / 100)) * creditData.DayRate;
  1872. string msgTitle = $"[{groupNameStr}({creditTypeStr})]的费用申请";
  1873. string msgContent = "";
  1874. if (creditCurrency.Equals("CNY"))
  1875. {
  1876. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY) {auditStr}!";
  1877. }
  1878. else
  1879. {
  1880. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY({creditData.PayMoney.ToString("0.00")} {creditCurrency})) {auditStr}!";
  1881. }
  1882. msgDatas.Add(new { DiId = creditData.DIId, UserId = creditData.CreateUserId, MsgTitle = msgTitle, MsgContent = msgContent });
  1883. }
  1884. }
  1885. if (rst == 0)
  1886. {
  1887. _groupRepository.CommitTran();
  1888. foreach (var item in msgDatas)
  1889. {
  1890. //发送消息
  1891. GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupExpenseAudit, item.MsgTitle, item.MsgContent, new List<int>() { item.UserId }, item.DiId);
  1892. }
  1893. #region 应用推送
  1894. try
  1895. {
  1896. foreach (var ccpId in dic_ccp_user.Keys)
  1897. {
  1898. List<string> templist = new List<string>() { dic_ccp_user[ccpId].ToString() };
  1899. await AppNoticeLibrary.SendUserMsg_GroupStatus_AuditFee(ccpId, templist, QiyeWeChatEnum.CaiWuChat);
  1900. }
  1901. }
  1902. catch (Exception)
  1903. {
  1904. }
  1905. #endregion
  1906. return Ok(JsonView(true, "操作成功!"));
  1907. }
  1908. return Ok(JsonView(false, "操作失败!"));
  1909. }
  1910. #endregion
  1911. #region 机票费用录入
  1912. /// <summary>
  1913. /// 机票录入当前登录人可操作团组
  1914. /// </summary>
  1915. /// <param name="dto"></param>
  1916. /// <returns></returns>
  1917. [HttpPost]
  1918. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1919. public async Task<IActionResult> AirTicketResSelect(AirTicketResDto dto)
  1920. {
  1921. try
  1922. {
  1923. Result groupData = await _airTicketResRep.AirTicketResSelect(dto);
  1924. if (groupData.Code != 0)
  1925. {
  1926. return Ok(JsonView(false, groupData.Msg));
  1927. }
  1928. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1929. }
  1930. catch (Exception ex)
  1931. {
  1932. return Ok(JsonView(false, "程序错误!"));
  1933. throw;
  1934. }
  1935. }
  1936. /// <summary>
  1937. /// 机票费用录入列表
  1938. /// </summary>
  1939. /// <param name="dto"></param>
  1940. /// <returns></returns>
  1941. [HttpPost]
  1942. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1943. public async Task<IActionResult> AirTicketResList(AirTicketResDto dto)
  1944. {
  1945. try
  1946. {
  1947. Result groupData = await _airTicketResRep.AirTicketResList(dto);
  1948. if (groupData.Code != 0)
  1949. {
  1950. return Ok(JsonView(false, groupData.Msg));
  1951. }
  1952. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1953. }
  1954. catch (Exception ex)
  1955. {
  1956. return Ok(JsonView(false, ex.Message));
  1957. throw;
  1958. }
  1959. }
  1960. /// <summary>
  1961. /// 根据id查询费用录入信息
  1962. /// </summary>
  1963. /// <param name="dto"></param>
  1964. /// <returns></returns>
  1965. [HttpPost]
  1966. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1967. public async Task<IActionResult> AirTicketResById(AirTicketResByIdDto dto)
  1968. {
  1969. try
  1970. {
  1971. Result groupData = await _airTicketResRep.AirTicketResById(dto);
  1972. if (groupData.Code != 0)
  1973. {
  1974. return Ok(JsonView(false, groupData.Msg));
  1975. }
  1976. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1977. }
  1978. catch (Exception ex)
  1979. {
  1980. return Ok(JsonView(false, "程序错误!"));
  1981. throw;
  1982. }
  1983. }
  1984. /// <summary>
  1985. /// 机票费用录入操作(Status:1.新增,2.修改)
  1986. /// </summary>
  1987. /// <param name="dto"></param>
  1988. /// <returns></returns>
  1989. [HttpPost]
  1990. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1991. public async Task<IActionResult> OpAirTicketRes(AirTicketResOpDto dto)
  1992. {
  1993. try
  1994. {
  1995. Result groupData = await _airTicketResRep.OpAirTicketRes(dto, _setDataRep.PostCurrencyByDiid);
  1996. if (groupData.Code != 0)
  1997. {
  1998. return Ok(JsonView(false, groupData.Msg));
  1999. }
  2000. #region 应用推送
  2001. try
  2002. {
  2003. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2004. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2005. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2006. }
  2007. catch (Exception ex)
  2008. {
  2009. }
  2010. #endregion
  2011. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2012. }
  2013. catch (Exception ex)
  2014. {
  2015. return Ok(JsonView(false, "程序错误!"));
  2016. throw;
  2017. }
  2018. }
  2019. /// <summary>
  2020. /// 根据舱位类型查询接团客户名单信息
  2021. /// </summary>
  2022. /// <param name="dto"></param>
  2023. /// <returns></returns>
  2024. [HttpPost]
  2025. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2026. public async Task<IActionResult> tankType(AirTicketResByIdDto dto)
  2027. {
  2028. try
  2029. {
  2030. List<Crm_GroupCustomer> crm_Groups = _sqlSugar.Queryable<Crm_GroupCustomer>().Where(a => a.IsDel == 0 && a.AirType == dto.Id).ToList();
  2031. if (crm_Groups.Count != 0)
  2032. {
  2033. List<dynamic> Customer = new List<dynamic>();
  2034. foreach (var item in crm_Groups)
  2035. {
  2036. var data = new
  2037. {
  2038. Id = item.Id,
  2039. Pinyin = item.Pinyin,
  2040. Name = item.LastName + item.FirstName
  2041. };
  2042. Customer.Add(data);
  2043. }
  2044. return Ok(JsonView(true, "查询成功!", Customer));
  2045. }
  2046. return Ok(JsonView(true, "暂无数据", crm_Groups));
  2047. }
  2048. catch (Exception ex)
  2049. {
  2050. return Ok(JsonView(false, "程序错误!"));
  2051. throw;
  2052. }
  2053. }
  2054. /// <summary>
  2055. /// 根据团号获取客户信息
  2056. /// </summary>
  2057. /// <param name="dto"></param>
  2058. /// <returns></returns>
  2059. [HttpPost]
  2060. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2061. public IActionResult QueryClientInfoByDIID(QueryClientInfoByDIIDDto dto)
  2062. {
  2063. var jw = JsonView(false);
  2064. if (dto.DIID < 1)
  2065. {
  2066. jw.Msg += "请输入正确的diid";
  2067. return Ok(jw);
  2068. }
  2069. var arr = getSimplClientList(dto.DIID);
  2070. jw = JsonView(true, "获取成功!", arr);
  2071. return Ok(jw);
  2072. }
  2073. private List<SimplClientInfo> getSimplClientList(int diId)
  2074. {
  2075. 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);
  2076. List<SimplClientInfo> arr = _sqlSugar.SqlQueryable<SimplClientInfo>(sql).ToList();
  2077. return arr;
  2078. }
  2079. private string getClientNameStr(List<SimplClientInfo> list, string origin)
  2080. {
  2081. string result = origin;
  2082. if (Regex.Match(origin, @"\d+,?").Value.Length > 0)
  2083. {
  2084. string[] temparr = origin.Split(',');
  2085. string fistrStr = temparr[0];
  2086. int count = temparr.Count();
  2087. int tempId;
  2088. bool success = int.TryParse(fistrStr, out tempId);
  2089. if (success)
  2090. {
  2091. SimplClientInfo tempInfo = list.FirstOrDefault(s => s.Id == tempId);
  2092. if (tempInfo != null)
  2093. {
  2094. if (count > 1)
  2095. {
  2096. result = string.Format(@"{0}{1}等{2}人", tempInfo.LastName, tempInfo.FirstName, count);
  2097. }
  2098. else
  2099. {
  2100. result = string.Format(@"{0}{1}", tempInfo.LastName, tempInfo.FirstName);
  2101. }
  2102. }
  2103. }
  2104. }
  2105. return result;
  2106. }
  2107. /// <summary>
  2108. /// 机票费用录入,删除
  2109. /// </summary>
  2110. /// <param name="dto"></param>
  2111. /// <returns></returns>
  2112. [HttpPost]
  2113. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2114. public async Task<IActionResult> DelAirTicketRes(DelBaseDto dto)
  2115. {
  2116. try
  2117. {
  2118. var res = await _airTicketResRep.SoftDeleteByIdAsync<Grp_AirTicketReservations>(dto.Id.ToString(), dto.DeleteUserId);
  2119. if (res)
  2120. {
  2121. var result = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.CTable == 85).SetColumns(a => new Grp_CreditCardPayment()
  2122. {
  2123. IsDel = 1,
  2124. DeleteUserId = dto.DeleteUserId,
  2125. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  2126. }).ExecuteCommandAsync();
  2127. return Ok(JsonView(true, "删除成功!"));
  2128. }
  2129. return Ok(JsonView(false, "删除失败!"));
  2130. }
  2131. catch (Exception ex)
  2132. {
  2133. return Ok(JsonView(false, "程序错误!"));
  2134. throw;
  2135. }
  2136. }
  2137. /// <summary>
  2138. /// 导出机票录入报表
  2139. /// </summary>
  2140. /// <param name="dto"></param>
  2141. /// <returns></returns>
  2142. [HttpPost]
  2143. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2144. public async Task<IActionResult> DeriveAirTicketRes(AirTicketResDto dto)
  2145. {
  2146. try
  2147. {
  2148. Result groupData = await _airTicketResRep.DeriveAirTicketRes(dto);
  2149. if (groupData.Code != 0)
  2150. {
  2151. return Ok(JsonView(StatusCodes.Status400BadRequest, groupData.Msg, ""));
  2152. }
  2153. else
  2154. {
  2155. List<AirTicketReservationsPayView> AirTicketReservations = groupData.Data.GetType().GetProperty("AirTicketRes").GetValue(groupData.Data);
  2156. if (AirTicketReservations.Count != 0)
  2157. {
  2158. Grp_DelegationInfo DelegationInfo = groupData.Data.GetType().GetProperty("Delegation").GetValue(groupData.Data);
  2159. Sys_Users _Users = groupData.Data.GetType().GetProperty("Users").GetValue(groupData.Data);
  2160. string diCode = DelegationInfo != null ? DelegationInfo.TourCode : "XXX";
  2161. string diName = DelegationInfo != null ? DelegationInfo.TeamName : "XXX";
  2162. WorkbookDesigner designer = new WorkbookDesigner();
  2163. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/机票预订费用报表模板.xlsx");
  2164. decimal countCost = 0;
  2165. foreach (var item in AirTicketReservations)
  2166. {
  2167. #region 处理客人姓名
  2168. string clientNames = _tourClientListRep._ResolveCustomerName(item.ClientName);
  2169. item.ClientName = clientNames;
  2170. #endregion
  2171. if (item.BankType == "其他")
  2172. {
  2173. item.BankNo = "--";
  2174. }
  2175. else
  2176. {
  2177. if (!string.IsNullOrEmpty(item.BankType))
  2178. {
  2179. item.BankNo = item.BankType + ":" + item.BankNo?.Substring(0, 3);
  2180. }
  2181. }
  2182. item.PrePrice = System.Decimal.Round(item.PrePrice, 2);
  2183. item.Price = System.Decimal.Round(item.Price, 2);
  2184. countCost += Convert.ToDecimal(item.Price);
  2185. }
  2186. designer.SetDataSource("Export", AirTicketReservations);
  2187. designer.SetDataSource("ExportDiCode", diCode);
  2188. designer.SetDataSource("ExportDiName", diName);
  2189. designer.SetDataSource("ExportOpUserName", _Users.CnName);
  2190. designer.SetDataSource("ExportCountCost", countCost + "(" + AirTicketReservations[0].CurrencyStr);
  2191. designer.Process();
  2192. string fileName = ("AirfareStatement/" + diName + "机票费用报表" + "_" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xlsx").Replace(":", "");
  2193. designer.Workbook.Save(AppSettingsHelper.Get("ExcelBasePath") + fileName);
  2194. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  2195. return Ok(JsonView(true, "成功", url = rst));
  2196. }
  2197. else
  2198. {
  2199. return Ok(JsonView(StatusCodes.Status400BadRequest, "暂无数据!", ""));
  2200. }
  2201. }
  2202. }
  2203. catch (Exception ex)
  2204. {
  2205. return Ok(JsonView(StatusCodes.Status400BadRequest, ex.Message, ""));
  2206. throw;
  2207. }
  2208. }
  2209. Dictionary<string, string> transDic = new Dictionary<string, string>();
  2210. /// <summary>
  2211. /// 行程单导出
  2212. /// </summary>
  2213. /// <param name="dto"></param>
  2214. /// <returns></returns>
  2215. [HttpPost]
  2216. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2217. public async Task<IActionResult> ItineraryAirTicketRes(ItineraryAirTicketResDto dto)
  2218. {
  2219. try
  2220. {
  2221. Result groupData = await _airTicketResRep.ItineraryAirTicketRes(dto);
  2222. if (groupData.Code != 0)
  2223. {
  2224. return Ok(JsonView(StatusCodes.Status400BadRequest, groupData.Msg, ""));
  2225. }
  2226. else
  2227. {
  2228. List<AirTicketReservationsView> _AirTicketReservations = groupData.Data;
  2229. if (dto.Language == "CN")
  2230. {
  2231. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_CN.docx");
  2232. DocumentBuilder builder = new DocumentBuilder(doc);
  2233. int tableIndex = 0;//表格索引
  2234. //得到文档中的第一个表格
  2235. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2236. foreach (var item in _AirTicketReservations)
  2237. {
  2238. #region 处理固定数据
  2239. string[] FlightsCode = item.FlightsCode.Split('/');
  2240. if (FlightsCode.Length != 0)
  2241. {
  2242. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2243. if (_AirCompany != null)
  2244. {
  2245. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2246. }
  2247. else
  2248. {
  2249. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2250. }
  2251. }
  2252. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2253. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2254. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2255. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2256. string name = "";
  2257. foreach (string clientName in nameArray)
  2258. {
  2259. if (!name.Contains(clientName))
  2260. {
  2261. name += clientName + ",";
  2262. }
  2263. }
  2264. if (!string.IsNullOrWhiteSpace(name))
  2265. {
  2266. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2267. }
  2268. else
  2269. {
  2270. table.Range.Bookmarks["ClientName"].Text = "--";
  2271. }
  2272. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2273. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2274. table.Range.Bookmarks["JointTicket"].Text = "--";
  2275. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2276. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2277. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2278. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2279. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2280. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2281. #endregion
  2282. #region 循环数据处理
  2283. List<AirInfo> airs = new List<AirInfo>();
  2284. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2285. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2286. for (int i = 0; i < FlightsCode.Length; i++)
  2287. {
  2288. AirInfo air = new AirInfo();
  2289. string[] tempstr = DayArray[i]
  2290. .Replace("\r\n", string.Empty)
  2291. .Replace("\\r\\n", string.Empty)
  2292. .TrimStart().TrimEnd()
  2293. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2294. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2295. string starCity = "";
  2296. if (star_Three != null)
  2297. {
  2298. starCity = star_Three.AirPort;
  2299. }
  2300. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2301. string EndCity = "";
  2302. if (End_Three != null)
  2303. {
  2304. EndCity = End_Three.AirPort;
  2305. }
  2306. air.Destination = starCity + "/" + EndCity;
  2307. air.Flight = FlightsCode[i];
  2308. air.SeatingClass = item.CTypeName;
  2309. string dateTime = tempstr[2];
  2310. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2311. air.FlightDate = DateTemp;
  2312. air.DepartureTime = tempstr[5];
  2313. air.LandingTime = tempstr[6];
  2314. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2315. air.TicketStatus = "--";
  2316. air.Luggage = "--";
  2317. air.DepartureTerminal = "--";
  2318. air.LandingTerminal = "--";
  2319. airs.Add(air);
  2320. }
  2321. int row = 13;
  2322. for (int i = 0; i < airs.Count; i++)
  2323. {
  2324. if (airs.Count > 2)
  2325. {
  2326. for (int j = 0; j < airs.Count - 2; j++)
  2327. {
  2328. var CopyRow = table.Rows[12].Clone(true);
  2329. table.Rows.Add(CopyRow);
  2330. }
  2331. }
  2332. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2333. int index = 0;
  2334. foreach (PropertyInfo property in properties)
  2335. {
  2336. string value = property.GetValue(airs[i]).ToString();
  2337. Cell ishcel0 = table.Rows[row].Cells[index];
  2338. Paragraph p = new Paragraph(doc);
  2339. string s = value;
  2340. p.AppendChild(new Run(doc, s));
  2341. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2342. ishcel0.AppendChild(p);
  2343. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2344. index++;
  2345. }
  2346. row++;
  2347. }
  2348. #endregion
  2349. Paragraph lastParagraph = new Paragraph(doc);
  2350. //第一个表格末尾加段落
  2351. table.ParentNode.InsertAfter(lastParagraph, table);
  2352. //复制第一个表格
  2353. Table cloneTable = (Table)table.Clone(true);
  2354. //在文档末尾段落后面加入复制的表格
  2355. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2356. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2357. {
  2358. int rownewsIndex = 13;
  2359. for (int i = 0; i < 2; i++)
  2360. {
  2361. var CopyRow = table.Rows[12].Clone(true);
  2362. table.Rows.RemoveAt(13);
  2363. table.Rows.Add(CopyRow);
  2364. rownewsIndex++;
  2365. }
  2366. }
  2367. else
  2368. {
  2369. table.Rows.RemoveAt(12);
  2370. }
  2371. cloneTable.Rows.RemoveAt(12);
  2372. }
  2373. if (_AirTicketReservations.Count != 0)
  2374. {
  2375. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2376. if (FlightsCode.Length != 0)
  2377. {
  2378. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2379. if (_AirCompany != null)
  2380. {
  2381. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2382. }
  2383. else
  2384. {
  2385. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2386. }
  2387. }
  2388. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2389. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2390. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2391. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2392. string name = "";
  2393. foreach (string clientName in nameArray)
  2394. {
  2395. if (!name.Contains(clientName))
  2396. {
  2397. name += clientName + ",";
  2398. }
  2399. }
  2400. if (!string.IsNullOrWhiteSpace(name))
  2401. {
  2402. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2403. }
  2404. else
  2405. {
  2406. table.Range.Bookmarks["ClientName"].Text = "--";
  2407. }
  2408. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2409. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2410. table.Range.Bookmarks["JointTicket"].Text = "--";
  2411. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2412. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2413. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2414. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2415. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2416. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2417. }
  2418. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2419. //保存合并后的文档
  2420. string fileName = "AirItinerary/电子客票中文行程单_CN.docx";
  2421. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2422. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2423. return Ok(JsonView(true, "成功!", rst));
  2424. }
  2425. else
  2426. {
  2427. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_EN.docx");
  2428. DocumentBuilder builder = new DocumentBuilder(doc);
  2429. int tableIndex = 0;//表格索引
  2430. //得到文档中的第一个表格
  2431. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2432. List<string> texts = new List<string>();
  2433. foreach (var item in _AirTicketReservations)
  2434. {
  2435. string[] FlightsCode = item.FlightsCode.Split('/');
  2436. if (FlightsCode.Length != 0)
  2437. {
  2438. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2439. if (_AirCompany != null)
  2440. {
  2441. if (!transDic.ContainsKey(_AirCompany.CnName))
  2442. {
  2443. transDic.Add(_AirCompany.CnName, _AirCompany.EnName);
  2444. }
  2445. }
  2446. else
  2447. {
  2448. if (!transDic.ContainsKey("--"))
  2449. {
  2450. transDic.Add("--", "--");
  2451. }
  2452. }
  2453. }
  2454. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2455. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2456. string name = "";
  2457. foreach (string clientName in nameArray)
  2458. {
  2459. name += clientName + ",";
  2460. }
  2461. if (!texts.Contains(name))
  2462. {
  2463. texts.Add(name);
  2464. }
  2465. List<AirInfo> airs = new List<AirInfo>();
  2466. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2467. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2468. for (int i = 0; i < FlightsCode.Length; i++)
  2469. {
  2470. AirInfo air = new AirInfo();
  2471. string[] tempstr = DayArray[i]
  2472. .Replace("\r\n", string.Empty)
  2473. .Replace("\\r\\n", string.Empty)
  2474. .TrimStart().TrimEnd()
  2475. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2476. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2477. if (star_Three != null)
  2478. {
  2479. if (!transDic.ContainsKey(star_Three.AirPort))
  2480. {
  2481. transDic.Add(star_Three.AirPort, star_Three.AirPort_En);
  2482. }
  2483. }
  2484. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2485. if (End_Three != null)
  2486. {
  2487. if (!transDic.ContainsKey(End_Three.AirPort))
  2488. {
  2489. transDic.Add(End_Three.AirPort, End_Three.AirPort_En);
  2490. }
  2491. }
  2492. if (!texts.Contains(item.CTypeName))
  2493. {
  2494. texts.Add(item.CTypeName);
  2495. }
  2496. }
  2497. }
  2498. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  2499. if (transData.Count > 0)
  2500. {
  2501. foreach (TranslateResult item in transData)
  2502. {
  2503. if (!transDic.ContainsKey(item.Query))
  2504. {
  2505. transDic.Add(item.Query, item.Translation);
  2506. }
  2507. }
  2508. }
  2509. foreach (var item in _AirTicketReservations)
  2510. {
  2511. #region 处理固定数据
  2512. string[] FlightsCode = item.FlightsCode.Split('/');
  2513. if (FlightsCode.Length != 0)
  2514. {
  2515. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2516. if (_AirCompany != null)
  2517. {
  2518. string str = "--";
  2519. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2520. if (!string.IsNullOrEmpty(translateResult))
  2521. {
  2522. str = translateResult;
  2523. str = _airTicketResRep.Processing(str);
  2524. }
  2525. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2526. }
  2527. else
  2528. {
  2529. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2530. }
  2531. }
  2532. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2533. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2534. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2535. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2536. string names = "";
  2537. foreach (string clientName in nameArray)
  2538. {
  2539. names += clientName + ",";
  2540. }
  2541. if (!string.IsNullOrWhiteSpace(names))
  2542. {
  2543. string str = "--";
  2544. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2545. if (!string.IsNullOrEmpty(translateResult))
  2546. {
  2547. str = translateResult;
  2548. str = _airTicketResRep.Processing(str);
  2549. }
  2550. table.Range.Bookmarks["ClientName"].Text = str;
  2551. }
  2552. else
  2553. {
  2554. table.Range.Bookmarks["ClientName"].Text = "--";
  2555. }
  2556. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2557. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2558. table.Range.Bookmarks["JointTicket"].Text = "--";
  2559. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2560. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2561. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2562. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2563. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2564. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2565. #endregion
  2566. #region 循环数据处理
  2567. List<AirInfo> airs = new List<AirInfo>();
  2568. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2569. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2570. for (int i = 0; i < FlightsCode.Length; i++)
  2571. {
  2572. AirInfo air = new AirInfo();
  2573. string[] tempstr = DayArray[i]
  2574. .Replace("\r\n", string.Empty)
  2575. .Replace("\\r\\n", string.Empty)
  2576. .TrimStart().TrimEnd()
  2577. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2578. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2579. string starCity = "";
  2580. if (star_Three != null)
  2581. {
  2582. string str2 = "--";
  2583. string translateResult2 = transDic.Where(s => s.Key == star_Three.AirPort).FirstOrDefault().Value;
  2584. if (!string.IsNullOrEmpty(translateResult2))
  2585. {
  2586. str2 = translateResult2;
  2587. str2 = _airTicketResRep.Processing(str2);
  2588. }
  2589. starCity = str2;
  2590. }
  2591. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2592. string EndCity = "";
  2593. if (End_Three != null)
  2594. {
  2595. string str1 = "--";
  2596. string translateResult1 = transDic.Where(s => s.Key == End_Three.AirPort).FirstOrDefault().Value;
  2597. if (!string.IsNullOrEmpty(translateResult1))
  2598. {
  2599. str1 = translateResult1;
  2600. str1 = _airTicketResRep.Processing(str1);
  2601. }
  2602. EndCity = str1;
  2603. }
  2604. air.Destination = starCity + "/" + EndCity;
  2605. air.Flight = FlightsCode[i];
  2606. string str = "--";
  2607. string translateResult = transDic.Where(s => s.Key == item.CTypeName).FirstOrDefault().Value;
  2608. if (!string.IsNullOrEmpty(translateResult))
  2609. {
  2610. str = translateResult;
  2611. str = _airTicketResRep.Processing(str);
  2612. }
  2613. air.SeatingClass = str;
  2614. string dateTime = tempstr[2];
  2615. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2616. air.FlightDate = DateTemp;
  2617. air.DepartureTime = tempstr[5];
  2618. air.LandingTime = tempstr[6];
  2619. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2620. air.TicketStatus = "--";
  2621. air.Luggage = "--";
  2622. air.DepartureTerminal = "--";
  2623. air.LandingTerminal = "--";
  2624. airs.Add(air);
  2625. }
  2626. int row = 13;
  2627. for (int i = 0; i < airs.Count; i++)
  2628. {
  2629. if (airs.Count > 2)
  2630. {
  2631. for (int j = 0; j < airs.Count - 2; j++)
  2632. {
  2633. var CopyRow = table.Rows[12].Clone(true);
  2634. table.Rows.Add(CopyRow);
  2635. }
  2636. }
  2637. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2638. int index = 0;
  2639. foreach (PropertyInfo property in properties)
  2640. {
  2641. string value = property.GetValue(airs[i]).ToString();
  2642. Cell ishcel0 = table.Rows[row].Cells[index];
  2643. Paragraph p = new Paragraph(doc);
  2644. string s = value;
  2645. p.AppendChild(new Run(doc, s));
  2646. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2647. ishcel0.AppendChild(p);
  2648. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2649. //ishcel0.CellFormat.VerticalAlignment=
  2650. index++;
  2651. }
  2652. row++;
  2653. }
  2654. #endregion
  2655. Paragraph lastParagraph = new Paragraph(doc);
  2656. //第一个表格末尾加段落
  2657. table.ParentNode.InsertAfter(lastParagraph, table);
  2658. //复制第一个表格
  2659. Table cloneTable = (Table)table.Clone(true);
  2660. //在文档末尾段落后面加入复制的表格
  2661. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2662. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2663. {
  2664. int rownewsIndex = 13;
  2665. for (int i = 0; i < 2; i++)
  2666. {
  2667. var CopyRow = table.Rows[12].Clone(true);
  2668. table.Rows.RemoveAt(13);
  2669. table.Rows.Add(CopyRow);
  2670. rownewsIndex++;
  2671. }
  2672. }
  2673. else
  2674. {
  2675. table.Rows.RemoveAt(12);
  2676. }
  2677. cloneTable.Rows.RemoveAt(12);
  2678. }
  2679. if (_AirTicketReservations.Count != 0)
  2680. {
  2681. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2682. if (FlightsCode.Length != 0)
  2683. {
  2684. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2685. if (_AirCompany != null)
  2686. {
  2687. string str = "--";
  2688. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2689. if (!string.IsNullOrEmpty(translateResult))
  2690. {
  2691. str = translateResult;
  2692. str = _airTicketResRep.Processing(str);
  2693. }
  2694. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2695. }
  2696. else
  2697. {
  2698. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2699. }
  2700. }
  2701. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2702. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2703. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2704. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2705. string names = "";
  2706. foreach (string clientName in nameArray)
  2707. {
  2708. names += clientName + ",";
  2709. }
  2710. if (!string.IsNullOrWhiteSpace(names))
  2711. {
  2712. string str = "--";
  2713. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2714. if (!string.IsNullOrEmpty(translateResult))
  2715. {
  2716. str = translateResult;
  2717. str = _airTicketResRep.Processing(str);
  2718. }
  2719. table.Range.Bookmarks["ClientName"].Text = str;
  2720. }
  2721. else
  2722. {
  2723. table.Range.Bookmarks["ClientName"].Text = "--";
  2724. }
  2725. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2726. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2727. table.Range.Bookmarks["JointTicket"].Text = "--";
  2728. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2729. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2730. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2731. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2732. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2733. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2734. }
  2735. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2736. //保存合并后的文档
  2737. string fileName = "AirItinerary/电子客票英文行程单_EN.docx";
  2738. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2739. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2740. return Ok(JsonView(true, "成功!", rst));
  2741. }
  2742. }
  2743. }
  2744. catch (Exception ex)
  2745. {
  2746. return Ok(JsonView(StatusCodes.Status400BadRequest, "程序错误!", ""));
  2747. throw;
  2748. }
  2749. }
  2750. #endregion
  2751. #region 团组增减款项 --> 其他款项
  2752. /// <summary>
  2753. /// 团组增减款项下拉框绑定
  2754. /// </summary>
  2755. /// <param name="dto"></param>
  2756. /// <returns></returns>
  2757. [HttpPost]
  2758. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2759. public async Task<IActionResult> DecreasePaymentsSelect(DecreasePaymentsDto dto)
  2760. {
  2761. #region 参数验证
  2762. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2763. if (dto.CTId < 1) return Ok(JsonView(false, "请传入有效的CTId参数!"));
  2764. #endregion
  2765. return Ok(await _decreasePaymentsRep.DecreasePaymentsSelect(dto));
  2766. }
  2767. /// <summary>
  2768. /// 根据团组Id查询团组增减款项
  2769. /// </summary>
  2770. /// <param name="dto"></param>
  2771. /// <returns></returns>
  2772. [HttpPost]
  2773. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2774. public async Task<IActionResult> DecreasePaymentsList(DecreasePaymentsListDto dto)
  2775. {
  2776. #region 参数验证
  2777. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2778. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  2779. #endregion
  2780. return Ok(await _decreasePaymentsRep.DecreasePaymentsList(dto));
  2781. }
  2782. /// <summary>
  2783. /// 团组增减款项操作(Status:1.新增,2.修改)
  2784. /// </summary>
  2785. /// <param name="dto"></param>
  2786. /// <returns></returns>
  2787. [HttpPost]
  2788. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2789. public async Task<IActionResult> OpDecreasePayments(DecreasePaymentsOpDto dto)
  2790. {
  2791. JsonView groupData = await _decreasePaymentsRep.OpDecreasePayments(dto);
  2792. if (groupData.Code != 200)
  2793. {
  2794. return Ok(JsonView(false, groupData.Msg));
  2795. }
  2796. #region 应用推送
  2797. int ccpId = (int)groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2798. int sign = (int)groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2799. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2800. #endregion
  2801. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2802. }
  2803. /// <summary>
  2804. /// 团组增减款项操作 删除
  2805. /// </summary>
  2806. /// <param name="dto"></param>
  2807. /// <returns></returns>
  2808. [HttpPost]
  2809. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2810. public async Task<IActionResult> DelDecreasePayments(DelBaseDto dto)
  2811. {
  2812. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  2813. if (dto.DeleteUserId < 1) return Ok(JsonView(false, "请传入有效的DeleteUserId参数!"));
  2814. var res = await _decreasePaymentsRep._Del(dto.Id, dto.DeleteUserId);
  2815. if (res.Code == 0)
  2816. {
  2817. return Ok(JsonView(true, "删除成功!"));
  2818. }
  2819. return Ok(JsonView(false, "删除失败!"));
  2820. }
  2821. /// <summary>
  2822. /// 根据团组增减款项Id查询
  2823. /// </summary>
  2824. /// <param name="dto"></param>
  2825. /// <returns></returns>
  2826. [HttpPost]
  2827. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2828. public async Task<IActionResult> QueryDecreasePaymentsById(DecreasePaymentsByIdDto dto)
  2829. {
  2830. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的数据Id!"));
  2831. return Ok(await _decreasePaymentsRep.QueryDecreasePaymentsById(dto));
  2832. }
  2833. /// <summary>
  2834. /// 查询供应商名称
  2835. /// </summary>
  2836. /// <param name="dto"></param>
  2837. /// <returns></returns>
  2838. [HttpPost]
  2839. public IActionResult QueryAssociateSupplier(AssociateSupplierDto dto)
  2840. {
  2841. var dbResult = _sqlSugar.Queryable<Grp_DecreasePayments>()
  2842. .Where(x => x.SupplierName.Contains(dto.param) && x.IsDel == 0).ToList()
  2843. ?? new List<Grp_DecreasePayments>();
  2844. dbResult = dbResult.Distinct(new
  2845. ProductComparer()).ToList();
  2846. var jw = JsonView(true, "success", dbResult.OrderByDescending(x => x.Id).Select(x => new
  2847. {
  2848. x.Id,
  2849. x.SupplierAddress,
  2850. x.SupplierArea,
  2851. x.SupplierContact,
  2852. x.SupplierContactNumber,
  2853. x.SupplierEmail,
  2854. x.SupplierName,
  2855. x.SupplierSocialAccount,
  2856. x.SupplierTypeId,
  2857. }).ToList());
  2858. return Ok(jw);
  2859. }
  2860. #endregion
  2861. #region 文件上传、删除
  2862. /// <summary>
  2863. /// region 文件上传 可以带参数
  2864. /// </summary>
  2865. /// <param name="file"></param>
  2866. /// <returns></returns>
  2867. [HttpPost]
  2868. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2869. public async Task<IActionResult> UploadProject(IFormFile file)
  2870. {
  2871. try
  2872. {
  2873. var TypeName = Request.Headers["TypeName"].ToString();
  2874. if (file != null)
  2875. {
  2876. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2877. //文件名称
  2878. string projectFileName = file.FileName;
  2879. //上传的文件的路径
  2880. string filePath = "";
  2881. if (TypeName == "A")//A代表团组增减款项
  2882. {
  2883. if (!Directory.Exists(fileDir))
  2884. {
  2885. Directory.CreateDirectory(fileDir);
  2886. }
  2887. //上传的文件的路径
  2888. filePath = fileDir + $@"\团组增减款项相关文件\{projectFileName}";
  2889. }
  2890. else if (TypeName == "B")//B代表商邀相关文件
  2891. {
  2892. if (!Directory.Exists(fileDir))
  2893. {
  2894. Directory.CreateDirectory(fileDir);
  2895. }
  2896. //上传的文件的路径
  2897. filePath = fileDir + $@"\商邀相关文件\{projectFileName}";
  2898. }
  2899. using (FileStream fs = System.IO.File.Create(filePath))
  2900. {
  2901. file.CopyTo(fs);
  2902. fs.Flush();
  2903. }
  2904. return Ok(JsonView(true, "上传成功!", projectFileName));
  2905. }
  2906. else
  2907. {
  2908. return Ok(JsonView(false, "上传失败!"));
  2909. }
  2910. }
  2911. catch (Exception ex)
  2912. {
  2913. return Ok(JsonView(false, "程序错误!"));
  2914. throw;
  2915. }
  2916. }
  2917. /// <summary>
  2918. /// 删除指定文件
  2919. /// </summary>
  2920. /// <param name="dto"></param>
  2921. /// <returns></returns>
  2922. [HttpPost]
  2923. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2924. public async Task<IActionResult> DelFile(DelFileDto dto)
  2925. {
  2926. try
  2927. {
  2928. var TypeName = Request.Headers["TypeName"].ToString();
  2929. string filePath = "";
  2930. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2931. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  2932. int id = 0;
  2933. if (TypeName == "A")
  2934. {
  2935. filePath = fileDir + "/团组增减款项相关文件/" + dto.fileName;
  2936. // 删除该文件
  2937. System.IO.File.Delete(filePath);
  2938. id = await _sqlSugar.Updateable<Grp_DecreasePayments>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_DecreasePayments { FilePath = "" }).ExecuteCommandAsync();
  2939. }
  2940. else if (TypeName == "B")
  2941. {
  2942. filePath = fileDir + "/商邀相关文件/" + dto.fileName;
  2943. // 删除该文件
  2944. System.IO.File.Delete(filePath);
  2945. id = await _sqlSugar.Updateable<Grp_InvitationOfficialActivities>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_InvitationOfficialActivities { Attachment = "" }).ExecuteCommandAsync();
  2946. }
  2947. if (id != 0)
  2948. {
  2949. return Ok(JsonView(true, "成功!"));
  2950. }
  2951. else
  2952. {
  2953. return Ok(JsonView(false, "失败!"));
  2954. }
  2955. }
  2956. catch (Exception ex)
  2957. {
  2958. return Ok(JsonView(false, "程序错误!"));
  2959. throw;
  2960. }
  2961. }
  2962. #endregion
  2963. #region 商邀费用录入
  2964. /// <summary>
  2965. /// 根据团组Id查询商邀费用列表
  2966. /// </summary>
  2967. /// <param name="dto"></param>
  2968. /// <returns></returns>
  2969. [HttpPost]
  2970. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2971. public async Task<IActionResult> InvitationOfficialActivitiesList(InvitationOfficialActivitiesListDto dto)
  2972. {
  2973. try
  2974. {
  2975. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesList(dto);
  2976. if (groupData.Code != 0)
  2977. {
  2978. return Ok(JsonView(false, groupData.Msg));
  2979. }
  2980. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2981. }
  2982. catch (Exception ex)
  2983. {
  2984. return Ok(JsonView(false, "程序错误!"));
  2985. throw;
  2986. }
  2987. }
  2988. //
  2989. /// <summary>
  2990. /// 商邀费用 Info Page 基础数据源
  2991. /// </summary>
  2992. /// <param name="dto"></param>
  2993. /// <returns></returns>
  2994. [HttpPost]
  2995. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2996. public async Task<IActionResult> InvitationOfficialActivityInitBasicData()
  2997. {
  2998. try
  2999. {
  3000. Result groupData = await _InvitationOfficialActivitiesRep._InitBasicData();
  3001. if (groupData.Code != 0)
  3002. {
  3003. return Ok(JsonView(false, groupData.Msg));
  3004. }
  3005. return Ok(JsonView(true, "操作成功", groupData.Data));
  3006. }
  3007. catch (Exception ex)
  3008. {
  3009. return Ok(JsonView(false, ex.Message));
  3010. throw;
  3011. }
  3012. }
  3013. /// <summary>
  3014. /// 根据商邀费用ID查询C表和商邀费用数据
  3015. /// </summary>
  3016. /// <param name="dto"></param>
  3017. /// <returns></returns>
  3018. [HttpPost]
  3019. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3020. public async Task<IActionResult> InvitationOfficialActivitiesById(InvitationOfficialActivitiesByIdDto dto)
  3021. {
  3022. try
  3023. {
  3024. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesById(dto);
  3025. if (groupData.Code != 0)
  3026. {
  3027. return Ok(JsonView(false, groupData.Msg));
  3028. }
  3029. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3030. }
  3031. catch (Exception ex)
  3032. {
  3033. return Ok(JsonView(false, ex.Message));
  3034. throw;
  3035. }
  3036. }
  3037. /// <summary>
  3038. /// 商邀费用录入操作(Status:1.新增,2.修改)
  3039. /// </summary>
  3040. /// <param name="dto"></param>
  3041. /// <returns></returns>
  3042. [HttpPost]
  3043. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3044. public async Task<IActionResult> OpInvitationOfficialActivities(OpInvitationOfficialActivitiesDto dto)
  3045. {
  3046. try
  3047. {
  3048. Result groupData = await _InvitationOfficialActivitiesRep.OpInvitationOfficialActivities(dto, _setDataRep.PostCurrencyByDiid);
  3049. if (groupData.Code != 0)
  3050. {
  3051. return Ok(JsonView(false, groupData.Msg));
  3052. }
  3053. #region 应用推送
  3054. try
  3055. {
  3056. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  3057. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  3058. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  3059. }
  3060. catch (Exception ex)
  3061. {
  3062. }
  3063. #endregion
  3064. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3065. }
  3066. catch (Exception ex)
  3067. {
  3068. return Ok(JsonView(false, "程序错误!"));
  3069. throw;
  3070. }
  3071. }
  3072. /// <summary>
  3073. /// 商邀删除
  3074. /// </summary>
  3075. /// <param name="dto"></param>
  3076. /// <returns></returns>
  3077. [HttpPost]
  3078. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3079. public async Task<IActionResult> DelInvitationOfficialActivities(DelBaseDto dto)
  3080. {
  3081. try
  3082. {
  3083. _sqlSugar.BeginTran();
  3084. var res1 = _sqlSugar.Updateable<Grp_InvitationOfficialActivities>()
  3085. .SetColumns(it => new Grp_InvitationOfficialActivities()
  3086. {
  3087. IsDel = 1,
  3088. DeleteUserId = dto.DeleteUserId,
  3089. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  3090. })
  3091. .Where(it => it.Id == dto.Id)
  3092. .ExecuteCommand();
  3093. if (res1 > 0)
  3094. {
  3095. int _diId = 0;
  3096. var _ioaInfo = _sqlSugar.Queryable<Grp_InvitationOfficialActivities>().Where(it => it.Id == dto.Id).First();
  3097. if (_ioaInfo != null)
  3098. {
  3099. _diId = _ioaInfo.DiId;
  3100. }
  3101. var res2 = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  3102. .SetColumns(a => new Grp_CreditCardPayment()
  3103. {
  3104. IsDel = 1,
  3105. DeleteUserId = dto.DeleteUserId,
  3106. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  3107. })
  3108. .Where(a => a.CId == dto.Id && a.DIId == _diId && a.CTable == 81)
  3109. .ExecuteCommand();
  3110. if (res2 > 0)
  3111. {
  3112. _sqlSugar.CommitTran();
  3113. return Ok(JsonView(true, "删除成功!"));
  3114. }
  3115. }
  3116. _sqlSugar.RollbackTran();
  3117. return Ok(JsonView(false, "删除失败"));
  3118. }
  3119. catch (Exception ex)
  3120. {
  3121. _sqlSugar.RollbackTran();
  3122. return Ok(JsonView(false, ex.Message));
  3123. }
  3124. }
  3125. /// <summary>
  3126. /// 团组模块文件上传
  3127. /// </summary>
  3128. /// <param name="dto"></param>
  3129. /// <returns></returns>
  3130. [HttpPost]
  3131. public IActionResult CommonSaveFile([FromForm] CommonSaveFileDto dto)
  3132. {
  3133. var jw = JsonView(false);
  3134. if (dto.File == null)
  3135. {
  3136. jw.Msg = "无文件信息!";
  3137. return Ok(jw);
  3138. }
  3139. var nameSp = dto.File.Name.Split(".");
  3140. if (nameSp.Length < 2)
  3141. {
  3142. jw.Msg = "拓展名称有误!";
  3143. return Ok(jw);
  3144. }
  3145. var existsName = new string[]{ "RAR", "ZIP", "ARJ","GZ","Z","7Z","TAR" };
  3146. if (!existsName.Contains(nameSp[1].ToUpper()))
  3147. {
  3148. jw.Msg = $"请使用指定拓展名!({string.Join("-",existsName)})";
  3149. return Ok(jw);
  3150. }
  3151. var Ctable = _sqlSugar.Queryable<Sys_SetData>().First(x => x.STid == 16 && x.IsDel == 0 && x.Id == dto.Ctable);
  3152. if (Ctable == null)
  3153. {
  3154. jw.Msg = "Ctable指向有误!";
  3155. return Ok(jw);
  3156. }
  3157. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  3158. if (groupInfo == null)
  3159. {
  3160. jw.Msg = "团组信息不存在!";
  3161. return Ok(jw);
  3162. }
  3163. var path = "\\GroupModelFiles\\" + groupInfo.TeamName + "\\" + Ctable.Name;
  3164. var fileBase = AppSettingsHelper.Get("GrpFileBasePath") + path;
  3165. try
  3166. {
  3167. if (!Directory.Exists(fileBase))
  3168. {
  3169. Directory.CreateDirectory(fileBase);
  3170. }
  3171. var saveFilePath = fileBase + dto.File.Name;
  3172. Grp_GroupModelFile file = new Grp_GroupModelFile()
  3173. {
  3174. Cid = dto.Cid,
  3175. CreateTime = DateTime.Now,
  3176. CreateUserId = dto.Userid,
  3177. Ctable = dto.Ctable,
  3178. Diid = dto.Diid,
  3179. IsDel = 0,
  3180. FilePath = saveFilePath,
  3181. };
  3182. using (FileStream fs = System.IO.File.Create(saveFilePath))
  3183. {
  3184. dto.File.CopyTo(fs);
  3185. fs.Flush();
  3186. }
  3187. var addResult = _sqlSugar.Insertable<Grp_GroupModelFile>(file).ExecuteCommand();
  3188. jw = JsonView(true, "保存成功!", new
  3189. {
  3190. url = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("GrpFileFtpPath") + path
  3191. }) ;
  3192. }
  3193. catch (Exception ex)
  3194. {
  3195. jw = JsonView(false, $"保存失败! ({ex.Message}) ", new
  3196. {
  3197. url = ""
  3198. }) ;
  3199. }
  3200. return Ok(jw);
  3201. }
  3202. #endregion
  3203. #region 团组英文资料
  3204. /// <summary>
  3205. /// 查询团组英文所有资料
  3206. /// </summary>
  3207. /// <param name="dto"></param>
  3208. /// <returns></returns>
  3209. [HttpPost]
  3210. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3211. public async Task<IActionResult> QueryDelegationEnData(QueryDelegationEnDataDto dto)
  3212. {
  3213. try
  3214. {
  3215. Result groupData = await _delegationEnDataRep.QueryDelegationEnData(dto);
  3216. if (groupData.Code != 0)
  3217. {
  3218. return Ok(JsonView(false, groupData.Msg));
  3219. }
  3220. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3221. }
  3222. catch (Exception ex)
  3223. {
  3224. return Ok(JsonView(false, "程序错误!"));
  3225. throw;
  3226. }
  3227. }
  3228. /// <summary>
  3229. /// 团组英文资料操作(Status:1.新增,2.修改)
  3230. /// </summary>
  3231. /// <param name="dto"></param>
  3232. /// <returns></returns>
  3233. [HttpPost]
  3234. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3235. public async Task<IActionResult> OpDelegationEnData(OpDelegationEnDataDto dto)
  3236. {
  3237. try
  3238. {
  3239. Result groupData = await _delegationEnDataRep.OpDelegationEnData(dto);
  3240. if (groupData.Code != 0)
  3241. {
  3242. return Ok(JsonView(false, groupData.Msg));
  3243. }
  3244. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3245. }
  3246. catch (Exception ex)
  3247. {
  3248. return Ok(JsonView(false, "程序错误!"));
  3249. throw;
  3250. }
  3251. }
  3252. /// <summary>
  3253. /// 团组英文资料Id查询数据
  3254. /// </summary>
  3255. /// <param name="dto"></param>
  3256. /// <returns></returns>
  3257. [HttpPost]
  3258. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3259. public async Task<IActionResult> QueryDelegationEnDataById(QueryDelegationEnDataByIdDto dto)
  3260. {
  3261. try
  3262. {
  3263. Grp_DelegationEnData _DelegationEnData = await _sqlSugar.Queryable<Grp_DelegationEnData>().FirstAsync(it => it.Id == dto.Id && it.IsDel == 0);
  3264. if (_DelegationEnData != null)
  3265. {
  3266. return Ok(JsonView(true, "查询成功!", _DelegationEnData));
  3267. }
  3268. return Ok(JsonView(true, "暂无数据!", _DelegationEnData));
  3269. }
  3270. catch (Exception ex)
  3271. {
  3272. return Ok(JsonView(false, "程序错误!"));
  3273. throw;
  3274. }
  3275. }
  3276. /// <summary>
  3277. /// 团组英文资料删除
  3278. /// </summary>
  3279. /// <param name="dto"></param>
  3280. /// <returns></returns>
  3281. [HttpPost]
  3282. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3283. public async Task<IActionResult> DelDelegationEnData(DelBaseDto dto)
  3284. {
  3285. try
  3286. {
  3287. var res = await _delegationEnDataRep.SoftDeleteByIdAsync<Grp_DelegationEnData>(dto.Id.ToString(), dto.DeleteUserId);
  3288. if (!res)
  3289. {
  3290. return Ok(JsonView(false, "删除失败"));
  3291. }
  3292. return Ok(JsonView(true, "删除成功!"));
  3293. }
  3294. catch (Exception ex)
  3295. {
  3296. return Ok(JsonView(false, "程序错误!"));
  3297. throw;
  3298. }
  3299. }
  3300. #endregion
  3301. #region 导出邀请函
  3302. /// <summary>
  3303. /// 导出邀请函页面初始化
  3304. /// </summary>
  3305. /// <param name="dto"></param>
  3306. /// <returns></returns>
  3307. [HttpPost]
  3308. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3309. public async Task<IActionResult> QueryinvitationLetter(DecreasePaymentsListDto dto)
  3310. {
  3311. try
  3312. {
  3313. List<Grp_DelegationInfo> grp_Delegations = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(a => a.IsDel == 0).OrderBy(a => a.Id, OrderByType.Desc).ToList();
  3314. List<Crm_DeleClient> crm_Deles = new List<Crm_DeleClient>();
  3315. if (dto.DiId == 0)
  3316. {
  3317. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == grp_Delegations[0].Id && a.IsDel == 0).ToListAsync();
  3318. }
  3319. else
  3320. {
  3321. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == dto.DiId && a.IsDel == 0).ToListAsync();
  3322. }
  3323. return Ok(JsonView(true, "查询成功!", new
  3324. {
  3325. deleClient = crm_Deles,
  3326. delegations = grp_Delegations
  3327. }));
  3328. }
  3329. catch (Exception ex)
  3330. {
  3331. return Ok(JsonView(false, "程序错误!"));
  3332. throw;
  3333. }
  3334. }
  3335. /// <summary>
  3336. /// 导出邀请函
  3337. /// </summary>
  3338. /// <param name="dto"></param>
  3339. /// <returns></returns>
  3340. [HttpPost]
  3341. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3342. public async Task<IActionResult> invitationLetter(DecreasePaymentsListDto dto)
  3343. {
  3344. #region 参数验证
  3345. //if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  3346. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  3347. #endregion
  3348. try
  3349. {
  3350. Dictionary<string, string> transDic = new Dictionary<string, string>();
  3351. string sql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  3352. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  3353. From Grp_TourClientList tcl
  3354. Left Join
  3355. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  3356. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  3357. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  3358. From Crm_DeleClient dc
  3359. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  3360. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  3361. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  3362. Where dc.IsDel = 0) temp
  3363. On temp.DcId =tcl.ClientId
  3364. Where tcl.IsDel = 0 And tcl.DiId = {0}", dto.DiId);
  3365. var datas = _sqlSugar.SqlQueryable<TourClientListDetailsView>(sql).ToList();
  3366. List<string> texts = new List<string>();
  3367. if (datas.Count != 0)
  3368. {
  3369. foreach (TourClientListDetailsView item in datas)
  3370. {
  3371. if (!string.IsNullOrWhiteSpace(item.Pinyin))
  3372. {
  3373. transDic.Add(item.LastName + item.FirstName, item.Pinyin);
  3374. }
  3375. else
  3376. {
  3377. string name = item.LastName + item.FirstName;
  3378. texts.Add(name);
  3379. }
  3380. if (!string.IsNullOrEmpty(item.Job) && !texts.Contains(item.Job))
  3381. {
  3382. if (!transDic.ContainsKey(item.Job))
  3383. {
  3384. texts.Add(item.Job);
  3385. }
  3386. }
  3387. if (!string.IsNullOrEmpty(item.CompanyFullName))
  3388. {
  3389. texts.Add(item.CompanyFullName);
  3390. }
  3391. }
  3392. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  3393. if (transData.Count > 0)
  3394. {
  3395. foreach (TranslateResult item in transData)
  3396. {
  3397. if (!transDic.ContainsKey(item.Query))
  3398. {
  3399. transDic.Add(item.Query, item.Translation);
  3400. }
  3401. }
  3402. }
  3403. List<GuestList> list = new List<GuestList>();
  3404. foreach (TourClientListDetailsView dele in datas)
  3405. {
  3406. GuestList guestList = new GuestList();
  3407. if (!string.IsNullOrWhiteSpace(dele.Pinyin))
  3408. {
  3409. guestList.Name = dele.Pinyin;
  3410. }
  3411. else
  3412. {
  3413. string Name = transDic.Where(s => s.Key == dele.LastName + dele.FirstName).FirstOrDefault().Value;
  3414. guestList.Name = Name;
  3415. }
  3416. if (dele.Sex == 0)
  3417. {
  3418. guestList.Sex = "Male";
  3419. }
  3420. else if (dele.Sex == 1)
  3421. {
  3422. guestList.Sex = "Female";
  3423. }
  3424. guestList.DOB = dele.BirthDay.Replace('-', '.');
  3425. if (!string.IsNullOrEmpty(dele.Job))
  3426. {
  3427. guestList.Job = dele.Job;
  3428. }
  3429. list.Add(guestList);
  3430. }
  3431. //载入模板
  3432. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/邀请函模板0210.docx");
  3433. DocumentBuilder builder = new DocumentBuilder(doc);
  3434. //获取word里所有表格
  3435. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3436. //获取所填表格的序数
  3437. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  3438. var rowStart = tableOne.Rows[0]; //获取第1行
  3439. //循环赋值
  3440. for (int i = 0; i < list.Count; i++)
  3441. {
  3442. builder.MoveToCell(0, i + 1, 0, 0);
  3443. builder.Write(list[i].Name.ToString());
  3444. builder.MoveToCell(0, i + 1, 1, 0);
  3445. builder.Write(list[i].Sex.ToString());
  3446. builder.MoveToCell(0, i + 1, 2, 0);
  3447. builder.Write(list[i].DOB.ToString());
  3448. builder.MoveToCell(0, i + 1, 3, 0);
  3449. builder.Write(list[i].Job.ToString());
  3450. }
  3451. //删除多余行
  3452. while (tableOne.Rows.Count > list.Count + 1)
  3453. {
  3454. tableOne.Rows.RemoveAt(list.Count + 1);
  3455. }
  3456. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  3457. string fileName = "邀请函" + DateTime.Now.ToString("yyyy-MM-dd") + ".docx";
  3458. string filePath = fileDir + $@"商邀相关文件/{fileName}";
  3459. doc.Save(filePath);
  3460. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/GrpFile/商邀相关文件/" + fileName;
  3461. return Ok(JsonView(true, "操作成功!", Url));
  3462. }
  3463. else
  3464. {
  3465. return Ok(JsonView(false, "该团组客户名单暂未录入!"));
  3466. }
  3467. }
  3468. catch (Exception ex)
  3469. {
  3470. return Ok(JsonView(false, ex.Message));
  3471. throw;
  3472. }
  3473. }
  3474. #endregion
  3475. #region 团组经理模块 出入境费用
  3476. ///// <summary>
  3477. ///// 团组模块 - 出入境费用
  3478. ///// </summary>
  3479. ///// <returns></returns>
  3480. //[HttpPost]
  3481. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3482. //public async Task<IActionResult> SetEnterExitCostCurrencyChange()
  3483. //{
  3484. // try
  3485. // {
  3486. // var data = await _enterExitCostRep.SetEnterExitCostCurrencyChange();
  3487. // if (data.Code != 0)
  3488. // {
  3489. // return Ok(JsonView(false, data.Msg));
  3490. // }
  3491. // return Ok(JsonView(true, "查询成功!"));
  3492. // }
  3493. // catch (Exception ex)
  3494. // {
  3495. // return Ok(JsonView(false, ex.Message));
  3496. // throw;
  3497. // }
  3498. //}
  3499. /// <summary>
  3500. /// 团组模块 - 出入境费用 - 子项 地区更改为 nationalTravelFee 的id
  3501. /// </summary>
  3502. /// <returns></returns>
  3503. [HttpPost]
  3504. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3505. public async Task<IActionResult> SetDayAndCostAreaChange()
  3506. {
  3507. try
  3508. {
  3509. var nationalTravelFee = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  3510. var dayAndCost = await _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0).ToListAsync();
  3511. var unite = dayAndCost.Where(a => nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //交集
  3512. var merge = dayAndCost.Where(a => !nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //差集
  3513. foreach (var item in unite) //处理交集数据
  3514. {
  3515. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault().Id;
  3516. }
  3517. foreach (var item in merge) //处理差集数据
  3518. {
  3519. int nationalTravelFeeId = 0;
  3520. var cityData = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault();
  3521. if (cityData != null) nationalTravelFeeId = cityData.Id;
  3522. else
  3523. {
  3524. var countryData = nationalTravelFee.Where(it => it.Country.Trim() == item.Place.Trim()).FirstOrDefault();
  3525. if (countryData != null) nationalTravelFeeId = countryData.Id;
  3526. }
  3527. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFeeId;
  3528. }
  3529. //只更新dayAndCost 的 nationalTravelFeeId;
  3530. var result = _sqlSugar.Updateable(dayAndCost).UpdateColumns(it => new { it.NationalTravelFeeId }).ExecuteCommand();
  3531. if (result > 0) return Ok(JsonView(true, "nationalTravelFeeId列更新成功!"));
  3532. else return Ok(JsonView(false, "nationalTravelFeeId列更新失败!"));
  3533. }
  3534. catch (Exception ex)
  3535. {
  3536. return Ok(JsonView(false, ex.Message));
  3537. throw;
  3538. }
  3539. }
  3540. /// <summary>
  3541. /// 团组模块 - 出入境费用 - 基础数据源(团组名称/币种类型)
  3542. /// </summary>
  3543. /// <returns></returns>
  3544. [HttpPost]
  3545. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3546. public async Task<IActionResult> GetEnterExitCostDataSource(PortDtoBase dto)
  3547. {
  3548. try
  3549. {
  3550. var groupNameData = await _groupRepository.GetGroupNameList(new GroupNameDto { PortType = dto.PortType });
  3551. string sql = string.Format("Select * From Sys_SetData Where IsDel = 0");
  3552. //SetDataInfoView
  3553. var dataSource = await _sqlSugar.SqlQueryable<Sys_SetData>(sql).ToListAsync();
  3554. var currencyData = dataSource.Where(it => it.STid == 66).ToList(); //所有币种
  3555. List<SetDataInfoView> _CurrencyData = _mapper.Map<List<SetDataInfoView>>(currencyData);
  3556. var wordTypeData = dataSource.Where(it => it.STid == 72).ToList(); //三公费用-Word明细类型
  3557. List<SetDataInfoView> _WordTypeData = _mapper.Map<List<SetDataInfoView>>(wordTypeData);
  3558. var excelTypeData = dataSource.Where(it => it.STid == 73).ToList(); //三公费用-Excel明细类型
  3559. List<SetDataInfoView> _ExcelTypeData = _mapper.Map<List<SetDataInfoView>>(excelTypeData);
  3560. //默认币种显示
  3561. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3562. {
  3563. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 7.5000M },
  3564. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 8.0000M },
  3565. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 9.5000M },
  3566. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0500M },
  3567. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.9500M },
  3568. };
  3569. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3570. if (_currencyRate.Count > 0)
  3571. {
  3572. foreach (var item in _currencyInfos)
  3573. {
  3574. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3575. if (rateInfo != null)
  3576. {
  3577. decimal rate1 = Convert.ToDecimal(rateInfo.FSellPri) / 100.00M;
  3578. rate1 *= 1.035M;
  3579. item.Rate = Convert.ToDecimal(rate1.ToString("#0.00")) + 0.01M;
  3580. }
  3581. }
  3582. }
  3583. return Ok(JsonView(true, "查询成功!", new
  3584. {
  3585. GroupNameData = groupNameData.Data,
  3586. CurrencyData = _CurrencyData,
  3587. WordTypeData = _WordTypeData,
  3588. ExcelTypeData = _ExcelTypeData,
  3589. CurrencyInit = _currencyInfos
  3590. }));
  3591. }
  3592. catch (Exception ex)
  3593. {
  3594. return Ok(JsonView(false, ex.Message));
  3595. throw;
  3596. }
  3597. }
  3598. /// <summary>
  3599. /// 团组模块 - 出入境费用
  3600. /// 实时汇率 tips
  3601. /// 签证费用 tips
  3602. /// </summary>
  3603. /// <returns></returns>
  3604. [HttpPost]
  3605. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3606. public async Task<IActionResult> GetEnterExitCostCorrelationTips(EnterExitCostInfobyDiIdDto dto)
  3607. {
  3608. var groupInfo = await _sqlSugar.Queryable<Grp_DelegationInfo>().FirstAsync(it => it.Id == dto.DiId && it.IsDel == 0);
  3609. //默认币种显示
  3610. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3611. {
  3612. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 7.5000M },
  3613. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 8.0000M },
  3614. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 9.5000M },
  3615. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0500M },
  3616. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.9500M },
  3617. };
  3618. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3619. List<dynamic> reteInfos = new List<dynamic>();
  3620. if (_currencyRate.Count > 0)
  3621. {
  3622. foreach (var item in _currencyInfos)
  3623. {
  3624. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3625. if (rateInfo != null)
  3626. {
  3627. item.Rate = Convert.ToDecimal((Convert.ToDecimal(rateInfo.FSellPri == null ? 0.00M : rateInfo.FSellPri) / 100.00M).ToString("#0.0000"));
  3628. decimal rate1 = item.Rate;
  3629. rate1 *= 1.03M;
  3630. decimal rate2 = Convert.ToDecimal(rate1.ToString("#0.00")) + 0.01M;
  3631. reteInfos.Add(new
  3632. {
  3633. currCode = item.CurrencyCode,
  3634. currName = item.CurrencyName,
  3635. rate = rate2,
  3636. lastUpdateDt = rateInfo.Date + " " + rateInfo.Time
  3637. });
  3638. }
  3639. }
  3640. }
  3641. var visaData = await _visaFeeInfoRep.EntryAndExitTips(dto.DiId);
  3642. var airData = await _ticketBlackCodeRep.EntryAndExitTips(dto.DiId);
  3643. return Ok(JsonView(true, "查询成功!", new
  3644. {
  3645. //GroupNameData = groupNameData.Data,
  3646. visaData = visaData.Data,
  3647. airData = airData.Data,
  3648. reteInfos = reteInfos
  3649. }));
  3650. }
  3651. /// <summary>
  3652. /// 团组模块 - 出入境费用 - Info
  3653. /// </summary>
  3654. /// <returns></returns>
  3655. [HttpPost]
  3656. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3657. public async Task<IActionResult> GetEnterExitCostInfobyDiId(EnterExitCostInfobyDiIdDto dto)
  3658. {
  3659. try
  3660. {
  3661. var data = await _enterExitCostRep.GetEnterExitCostInfoByDiId(dto);
  3662. if (data.Code != 0)
  3663. {
  3664. return Ok(JsonView(false, data.Msg));
  3665. }
  3666. return Ok(JsonView(true, "查询成功!", data.Data));
  3667. }
  3668. catch (Exception ex)
  3669. {
  3670. return Ok(JsonView(false, ex.Message));
  3671. }
  3672. }
  3673. /// <summary>
  3674. /// 团组模块 - 出入境费用 - Add And Update
  3675. /// </summary>
  3676. /// <returns></returns>
  3677. [HttpPost]
  3678. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3679. public async Task<IActionResult> PostEnterExitCostOperate(EnterExitCostOperateDto dto)
  3680. {
  3681. try
  3682. {
  3683. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  3684. if (data.Code != 0)
  3685. {
  3686. return Ok(JsonView(false, data.Msg));
  3687. }
  3688. //生成默认文件pdf并且通知人员
  3689. var fileView = await GeneralMethod.EnterExitCostDownload(new EnterExitCostDownloadDto()
  3690. {
  3691. DiId = dto.DiId,
  3692. ExportType = 1,
  3693. SubTypeId = 1005
  3694. }, "pdf");
  3695. //发送通知
  3696. string fileUrl = (string)fileView.Data.GetType().GetProperty("Url").GetValue(fileView.Data, null);
  3697. int sign = (int)data.Data.GetType().GetProperty("sign").GetValue(data.Data, null);
  3698. string md5Sign = GeneralMethod.Encrypt($"{sign}&fileName={fileUrl}");
  3699. string url = string.Format("http://oa.pan-american-intl.com:4399/#/Sankunginfo?sign={0}&fileName={1}", sign,fileUrl);
  3700. await AppNoticeLibrary.SendUserMsg_GroupShare_ToGM(dto.DiId, new List<string>() { "208","233","21" }, dto.UserId, url);
  3701. return Ok(JsonView(true, data.Msg, data.Data));
  3702. }
  3703. catch (Exception ex)
  3704. {
  3705. return Ok(JsonView(false, ex.Message));
  3706. }
  3707. }
  3708. /// <summary>
  3709. /// 团组模块 - 出入境费用 - Confirm 费用
  3710. /// </summary>
  3711. /// <returns></returns>
  3712. [HttpPost]
  3713. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3714. public async Task<IActionResult> PostEnterExitCostIsConfirm(ConfirmCostDto dto)
  3715. {
  3716. //TODO:测试完毕需把对应的用户ID更改
  3717. //1、数据表添加字段
  3718. //2、更改字段接口()
  3719. var _view = await _enterExitCostRep.ConfirmCost(dto);
  3720. //3、确认成功 给财务发送消息
  3721. if (_view.Code == 200)
  3722. {
  3723. if (dto.Type == 1)
  3724. {
  3725. int diId = _enterExitCostRep._sqlSugar.Queryable<Grp_EnterExitCost>().Where(x => x.IsDel == 0 && x.Id == dto.Id).First()?.DiId ?? 0;
  3726. await AppNoticeLibrary.SendUserMsg_GroupShare_ToFinance(diId);
  3727. }
  3728. }
  3729. return Ok(_view);
  3730. }
  3731. /// <summary>
  3732. /// 团组模块 - 出入境费用 - File downlaod
  3733. /// </summary>
  3734. /// <param name="dto"></param>
  3735. /// <returns></returns>
  3736. [HttpPost]
  3737. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3738. public async Task<IActionResult> PostEnterExitCostDownload(EnterExitCostDownloadDto dto)
  3739. {
  3740. try
  3741. {
  3742. if (dto.DiId < 1)
  3743. {
  3744. return Ok(JsonView(false, "请传入有效的DiId参数;"));
  3745. }
  3746. if (dto.ExportType < 1)
  3747. {
  3748. return Ok(JsonView(false, "请传入有效的ExportType参数; 1 明细表 2 表格"));
  3749. }
  3750. if (dto.SubTypeId < 1)
  3751. {
  3752. return Ok(JsonView(false, @"请传入有效的SubTypeId参数;
  3753. 1 明细表 --> 1005(默认明细表) 1006(因公出国(境)经费测算明细表) 1007(四川省商务厅出国经费财政先行审核表)
  3754. 2 表格 --> 1008(派员单位出(境)任务和预算审批意见表) 1009(省级单位出(境)经费报销单)
  3755. 3 团组成员名单 1 团组成员名单"));
  3756. }
  3757. var _EnterExitCosts = _sqlSugar.Queryable<Grp_EnterExitCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  3758. var _DayAndCosts = _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  3759. if (_EnterExitCosts == null)
  3760. {
  3761. return Ok(JsonView(false, "该团组未填写出入境费用;"));
  3762. }
  3763. //数据源
  3764. List<Grp_DayAndCost> dac1 = _DayAndCosts.Where(it => it.Type == 1).ToList(); //住宿费
  3765. List<Grp_DayAndCost> dac2 = _DayAndCosts.Where(it => it.Type == 2).ToList(); //伙食费
  3766. List<Grp_DayAndCost> dac3 = _DayAndCosts.Where(it => it.Type == 3).ToList(); //公杂费
  3767. List<Grp_DayAndCost> dac4 = _DayAndCosts.Where(it => it.Type == 4).ToList(); //培训费
  3768. var _CurrDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  3769. var _DelegationInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == dto.DiId).First();
  3770. var DeleClientList = _sqlSugar.Queryable<Grp_TourClientList>()
  3771. .LeftJoin<Crm_DeleClient>((tcl, dc) => tcl.ClientId == dc.Id && dc.IsDel == 0)
  3772. .LeftJoin<Crm_CustomerCompany>((tcl, dc, cc) => dc.CrmCompanyId == cc.Id && dc.IsDel == 0)
  3773. .Where((tcl, dc, cc) => tcl.IsDel == 0 && tcl.DiId == dto.DiId)
  3774. .Select((tcl, dc, cc) => new
  3775. {
  3776. Name = dc.LastName + dc.FirstName,
  3777. Sex = dc.Sex,
  3778. Birthday = dc.BirthDay,
  3779. Company = cc.CompanyFullName,
  3780. Job = dc.Job
  3781. })
  3782. .ToList();
  3783. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  3784. var threeCodes = _sqlSugar.Queryable<Res_ThreeCode>().Where(it => it.IsDel == 0).ToList();
  3785. var placeData = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(it => it.IsDel == 0).ToList();
  3786. var rateDatas = await _EnterExitCosts.CurrencyRemark.SplitExchangeRate();
  3787. _DelegationInfo.VisitCountry = _DelegationInfo.VisitCountry.Replace("|", "、");
  3788. if (dto.ExportType == 1) //明细表
  3789. {
  3790. if (dto.SubTypeId == 1005) //1005(默认明细表)
  3791. {
  3792. //获取模板
  3793. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/出入境费用表模板.docx");
  3794. //载入模板
  3795. Document doc = new Document(tempPath);
  3796. DocumentBuilder builder = new DocumentBuilder(doc);
  3797. //利用键值对存放数据
  3798. Dictionary<string, string> dic = new Dictionary<string, string>();
  3799. decimal stayFeeTotal = _DayAndCosts.Where(it => it.Type == 1).Sum(it => it.SubTotal); // 住宿费
  3800. decimal mealsFeeTotal = _DayAndCosts.Where(it => it.Type == 2).Sum(it => it.SubTotal); // 伙食费费
  3801. decimal miscellaneousFeeTotal = _DayAndCosts.Where(it => it.Type == 3).Sum(it => it.SubTotal); // 公杂费
  3802. decimal tainFeeTotal = _DayAndCosts.Where(it => it.Type == 4).Sum(it => it.SubTotal); // 培训费
  3803. decimal insidePayTotal = _EnterExitCosts.InsidePay;
  3804. string row1_1 = "";
  3805. if (_EnterExitCosts.Visa > 0)
  3806. {
  3807. //insidePayTotal += _EnterExitCosts.Visa;
  3808. row1_1 = $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 人民币/人";
  3809. if (!string.IsNullOrEmpty(_EnterExitCosts.VisaRemark))
  3810. {
  3811. row1_1 += $"\t签证费用描述: : {_EnterExitCosts.VisaRemark} 人民币/人";
  3812. }
  3813. }
  3814. string row1_2 = "";
  3815. if (_EnterExitCosts.YiMiao > 0)
  3816. {
  3817. //insidePayTotal += _EnterExitCosts.YiMiao;
  3818. row1_2 += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")} 人民币/人";
  3819. }
  3820. if (_EnterExitCosts.HeSuan > 0)
  3821. {
  3822. //insidePayTotal += _EnterExitCosts.HeSuan;
  3823. row1_2 += $"核酸检测费:{_EnterExitCosts.HeSuan.ToString("#0.00")} 人民币/人";
  3824. }
  3825. if (_EnterExitCosts.Service > 0)
  3826. {
  3827. //insidePayTotal += _EnterExitCosts.Service;
  3828. row1_2 += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")} 人民币/人";
  3829. }
  3830. string row1_3 = "";
  3831. if (_EnterExitCosts.Safe > 0)
  3832. {
  3833. //insidePayTotal += _EnterExitCosts.Safe;
  3834. row1_3 += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")} 人民币/人";
  3835. }
  3836. if (_EnterExitCosts.Ticket > 0)
  3837. {
  3838. //insidePayTotal += _EnterExitCosts.Ticket;
  3839. row1_3 += $"参展门票:{_EnterExitCosts.Ticket.ToString("#0.00")} 人民币/人";
  3840. }
  3841. string row1 = "";
  3842. if (!string.IsNullOrEmpty(row1_1)) row1 += $"{row1_1}\r\n";
  3843. if (!string.IsNullOrEmpty(row1_2)) row1 += $"{row1_2}\r\n";
  3844. if (!string.IsNullOrEmpty(row1_3)) row1 += $"{row1_3}";
  3845. dic.Add("InsidePay", insidePayTotal.ToString("#0.00"));
  3846. dic.Add("Row1Str", row1);
  3847. dic.Add("OutsideJJ", _EnterExitCosts.OutsideJJPay.ToString("#0.00"));
  3848. dic.Add("OutsaideGW", _EnterExitCosts.OutsaideGWPay.ToString("#0.00"));
  3849. dic.Add("AirJJ", _EnterExitCosts.AirJJ.ToString("#0.00"));
  3850. dic.Add("AirGW", _EnterExitCosts.AirGW.ToString("#0.00"));
  3851. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  3852. dic.Add("SubZS", stayFeeTotal.ToString("#0.00"));
  3853. dic.Add("SubHS", mealsFeeTotal.ToString("#0.00"));
  3854. string miscellaneousFeeTotalStr = miscellaneousFeeTotal.ToString("#0.00");
  3855. dic.Add("SubGZF", miscellaneousFeeTotalStr);
  3856. //dic.Add("SubPX", tainFeeTotal.ToString("#0.00"));
  3857. decimal subJJC = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal + _EnterExitCosts.OutsideJJPay;
  3858. decimal subGWC = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal + _EnterExitCosts.OutsaideGWPay;
  3859. dic.Add("SubJJC", subJJC.ToString("#0.00"));
  3860. dic.Add("SubGWC", subGWC.ToString("#0.00"));
  3861. #region 填充word模板书签内容
  3862. foreach (var key in dic.Keys)
  3863. {
  3864. builder.MoveToBookmark(key);
  3865. builder.Write(dic[key]);
  3866. }
  3867. #endregion
  3868. #region 填充word表格内容
  3869. ////获读取指定表格方法二
  3870. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3871. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  3872. for (int i = 0; i < dac1.Count; i++)
  3873. {
  3874. Grp_DayAndCost dac = dac1[i];
  3875. if (dac == null) continue;
  3876. builder.MoveToCell(0, i, 0, 0);
  3877. builder.Write("第" + dac.Days.ToString() + "晚:");
  3878. builder.MoveToCell(0, i, 1, 0);
  3879. //builder.Write(placeData.Find(it => it.Id == dac.NationalTravelFeeId)?.Country ?? "Unknown");
  3880. //builder.Write(dac.Place == null ? "" : dac.Place);
  3881. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3882. builder.MoveToCell(0, i, 2, 0);
  3883. builder.Write("费用标准:");
  3884. string curr = "";
  3885. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  3886. if (currData != null)
  3887. {
  3888. curr = currData.Name;
  3889. }
  3890. builder.MoveToCell(0, i, 3, 0);
  3891. builder.Write(dac.Cost.ToString("#0.00") + curr);
  3892. builder.MoveToCell(0, i, 4, 0);
  3893. builder.Write("费用小计:");
  3894. builder.MoveToCell(0, i, 5, 0);
  3895. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  3896. }
  3897. //删除多余行
  3898. while (table1.Rows.Count > dac1.Count)
  3899. {
  3900. table1.Rows.RemoveAt(dac1.Count);
  3901. }
  3902. Aspose.Words.Tables.Table table2 = allTables[1] as Aspose.Words.Tables.Table;
  3903. for (int i = 0; i < dac2.Count; i++)
  3904. {
  3905. Grp_DayAndCost dac = dac2[i];
  3906. if (dac == null) continue;
  3907. builder.MoveToCell(1, i, 0, 0);
  3908. builder.Write("第" + dac.Days.ToString() + "天:");
  3909. builder.MoveToCell(1, i, 1, 0);
  3910. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3911. builder.MoveToCell(1, i, 2, 0);
  3912. builder.Write("费用标准:");
  3913. string curr = "";
  3914. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  3915. if (currData != null)
  3916. {
  3917. curr = currData.Name;
  3918. }
  3919. builder.MoveToCell(1, i, 3, 0);
  3920. builder.Write(dac.Cost.ToString("#0.00") + curr);
  3921. builder.MoveToCell(1, i, 4, 0);
  3922. builder.Write("费用小计:");
  3923. builder.MoveToCell(1, i, 5, 0);
  3924. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  3925. }
  3926. //删除多余行
  3927. while (table2.Rows.Count > dac2.Count)
  3928. {
  3929. table2.Rows.RemoveAt(dac2.Count);
  3930. }
  3931. Aspose.Words.Tables.Table table3 = allTables[2] as Aspose.Words.Tables.Table;
  3932. for (int i = 0; i < dac3.Count; i++)
  3933. {
  3934. Grp_DayAndCost dac = dac3[i];
  3935. if (dac == null) continue;
  3936. builder.MoveToCell(2, i, 0, 0);
  3937. builder.Write("第" + dac.Days.ToString() + "天:");
  3938. builder.MoveToCell(2, i, 1, 0);
  3939. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3940. builder.MoveToCell(2, i, 2, 0);
  3941. builder.Write("费用标准:");
  3942. string curr = "";
  3943. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  3944. if (currData != null)
  3945. {
  3946. curr = currData.Name;
  3947. }
  3948. builder.MoveToCell(2, i, 3, 0);
  3949. builder.Write(dac.Cost.ToString("#0.00") + curr);
  3950. builder.MoveToCell(2, i, 4, 0);
  3951. builder.Write("费用小计:");
  3952. builder.MoveToCell(2, i, 5, 0);
  3953. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  3954. }
  3955. //删除多余行
  3956. while (table3.Rows.Count > dac3.Count)
  3957. {
  3958. table3.Rows.RemoveAt(dac3.Count);
  3959. }
  3960. #endregion
  3961. //文件名
  3962. string strFileName = $"{_DelegationInfo.TeamName}出入境费用{Guid.NewGuid().ToString()}.docx";
  3963. AsposeHelper.removewatermark_v2180();
  3964. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  3965. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  3966. return Ok(JsonView(true, "成功", new { Url = url }));
  3967. }
  3968. else if (dto.SubTypeId == 1006)//1006(因公出国(境)经费测算明细表)
  3969. {
  3970. //获取模板
  3971. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/因公出国(境)经费测算明细表.docx");
  3972. //载入模板
  3973. Document doc = new Document(tempPath);
  3974. DocumentBuilder builder = new DocumentBuilder(doc);
  3975. Dictionary<string, string> dic = new Dictionary<string, string>();
  3976. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  3977. {
  3978. List<string> list = new List<string>();
  3979. try
  3980. {
  3981. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  3982. foreach (var item in spilitArr)
  3983. {
  3984. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  3985. var depCode = spDotandEmpty[2].Substring(0, 3);
  3986. var arrCode = spDotandEmpty[2].Substring(3, 3);
  3987. string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  3988. arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  3989. list.Add(depName);
  3990. list.Add(arrName);
  3991. }
  3992. list = list.Distinct().ToList();
  3993. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  3994. }
  3995. catch (Exception)
  3996. {
  3997. dic.Add("ReturnCode", "行程录入不正确!");
  3998. }
  3999. }
  4000. else
  4001. {
  4002. dic.Add("ReturnCode", "未录入行程!");
  4003. }
  4004. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4005. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4006. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4007. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4008. {
  4009. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4010. dic.Add("Day", sp.Days.ToString());
  4011. }
  4012. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4013. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4014. //var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  4015. //dic.Add("Names", Names);
  4016. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4017. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4018. decimal dac1totalPrice = 0.00M;
  4019. int accommodationStartIndex = 6, foodandotherStartIndex = 22;
  4020. foreach (var dac in dac1)
  4021. {
  4022. if (dac.SubTotal == 0.00M)
  4023. {
  4024. continue;
  4025. }
  4026. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  4027. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  4028. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4029. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4030. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  4031. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  4032. builder.Write(currency);//币种
  4033. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  4034. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4035. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  4036. builder.Write("");//人数
  4037. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  4038. builder.Write("");//天数
  4039. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  4040. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4041. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  4042. decimal rate = 0.00M;
  4043. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  4044. builder.Write(rate.ToString("#0.0000"));//汇率
  4045. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4046. decimal rbmPrice = dac.SubTotal;
  4047. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4048. accommodationStartIndex++;
  4049. dac1totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  4050. }
  4051. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4052. for (int i = 21; i > (dac1.Count == 0 ? 1 : dac1.Count) + 6; i--)
  4053. {
  4054. table1.Rows.RemoveAt(i - 1);
  4055. foodandotherStartIndex--;
  4056. }
  4057. if (dac2.Count == dac3.Count)//国家 币种 金额
  4058. {
  4059. for (int i = 0; i < dac2.Count; i++)
  4060. {
  4061. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4062. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4063. }
  4064. }
  4065. decimal dac2totalPrice = 0.00M;
  4066. foreach (var dac in dac2)
  4067. {
  4068. if (dac.SubTotal == 0)
  4069. {
  4070. continue;
  4071. }
  4072. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  4073. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4074. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  4075. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  4076. builder.Write(currency);//币种
  4077. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  4078. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4079. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  4080. builder.Write("");//人数
  4081. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  4082. builder.Write("");//天数
  4083. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  4084. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4085. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  4086. decimal rate = 0.00M;
  4087. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  4088. builder.Write(rate.ToString("#0.0000"));//汇率
  4089. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  4090. decimal rbmPrice = dac.SubTotal;
  4091. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4092. foodandotherStartIndex++;
  4093. dac2totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  4094. }
  4095. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  4096. for (int i = foodandotherStartIndex + (15 - dac2.Count); i > (dac2.Count == 0 ? 1 : 0) + foodandotherStartIndex; i--)
  4097. {
  4098. table1.Rows.RemoveAt(i - 1);
  4099. }
  4100. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4101. string otherFeeStr = "";
  4102. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  4103. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  4104. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  4105. if (otherFeeStr.Length > 0)
  4106. {
  4107. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  4108. otherFeeStr = $"({otherFeeStr})";
  4109. dic.Add("OtherFeeStr", otherFeeStr);
  4110. }
  4111. //总计
  4112. decimal allPrice = dac1totalPrice + dac2totalPrice + _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket;
  4113. //国际旅费
  4114. string outsideJJ = "";
  4115. string allPriceJJ = "";
  4116. if (_EnterExitCosts.SumJJC == 1)
  4117. {
  4118. outsideJJ = string.Format(@"经济舱:{0} 元/人", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4119. allPriceJJ = string.Format(@"经济舱:{0} 元/人", (allPrice + _EnterExitCosts.OutsideJJPay).ToString("#0.00"));
  4120. }
  4121. string outsideGW = "";
  4122. string allPriceGW = "";
  4123. if (_EnterExitCosts.SumGWC == 1)
  4124. {
  4125. outsideGW = string.Format(@"公务舱:{0} 元/人", _EnterExitCosts.AirGW.ToString("#0.00"));
  4126. allPriceGW = string.Format(@"公务舱:{0} 元/人", (allPrice + _EnterExitCosts.OutsaideGWPay).ToString("#0.00"));
  4127. }
  4128. if (_EnterExitCosts.SumJJC == 1 || _EnterExitCosts.SumGWC == 1)
  4129. {
  4130. string InTravelPriceStr = string.Format(@" ({0} {1})", outsideJJ, outsideGW);
  4131. dic.Add("InTravelPrice", InTravelPriceStr);
  4132. string FinalSumPriceStr = string.Format(@" ({0} {1})", allPriceJJ, allPriceGW);
  4133. dic.Add("FinalSumPrice", FinalSumPriceStr);
  4134. }
  4135. //dic.Add("VisaPay", _EnterExitCosts.Visa.ToString("#0.00"));
  4136. //dic.Add("SafePay", _EnterExitCosts.Safe.ToString("#0.00"));
  4137. //dic.Add("YiMiao", _EnterExitCosts.YiMiao.ToString("#0.00"));
  4138. foreach (var key in dic.Keys)
  4139. {
  4140. builder.MoveToBookmark(key);
  4141. builder.Write(dic[key]);
  4142. }
  4143. //模板文件名
  4144. string strFileName = $"{_DelegationInfo.TeamName}因公出国(境)经费测算明细表.docx";
  4145. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4146. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4147. return Ok(JsonView(true, "成功", new { Url = url }));
  4148. }
  4149. else if (dto.SubTypeId == 1007) //1007(四川省商务厅出国经费财政先行审核表)
  4150. {
  4151. //获取模板
  4152. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/四川省商务厅出国经费财政先行审核表.xls");
  4153. //载入模板
  4154. WorkbookDesigner designer = new WorkbookDesigner();
  4155. designer.Workbook = new Workbook(tempPath);
  4156. Dictionary<string, string> dic = new Dictionary<string, string>();
  4157. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4158. {
  4159. List<string> list = new List<string>();
  4160. try
  4161. {
  4162. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4163. foreach (var item in spilitArr)
  4164. {
  4165. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4166. var depCode = spDotandEmpty[2].Substring(0, 3);
  4167. var arrCode = spDotandEmpty[2].Substring(3, 3);
  4168. string depName = threeCodes.Find(it => it.Three.Equals(depCode))?.City ?? "Unknwon",
  4169. arrName = threeCodes.Find(it => it.Three.Equals(arrCode))?.City ?? "Unknown";
  4170. list.Add(depName);
  4171. list.Add(arrName);
  4172. }
  4173. list = list.Distinct().ToList();
  4174. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4175. }
  4176. catch (Exception)
  4177. {
  4178. dic.Add("ReturnCode", "行程录入不正确!");
  4179. }
  4180. }
  4181. else
  4182. {
  4183. dic.Add("ReturnCode", "未录入行程!");
  4184. }
  4185. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4186. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4187. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4188. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4189. {
  4190. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4191. dic.Add("Day", sp.Days.ToString());
  4192. }
  4193. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4194. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4195. var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  4196. designer.SetDataSource("ClientUnit", _DelegationInfo.ClientUnit);
  4197. designer.SetDataSource("VisitCountry", _DelegationInfo.VisitCountry);
  4198. designer.SetDataSource("Group", _DelegationInfo.TeamName);
  4199. designer.SetDataSource("ClientUnitTitle", _DelegationInfo.TeamName);
  4200. designer.SetDataSource("Name", Names);
  4201. designer.SetDataSource("VisitStartDate", dic["VisitStartDate"] + "-" + dic["VisitEndDate"]);
  4202. designer.SetDataSource("Day", dic["Day"] + "天");
  4203. designer.SetDataSource("ReturnCode", dic["ReturnCode"]);
  4204. designer.SetDataSource("ReturnCodeAir", dic["ReturnCodeAir"]);
  4205. int startIndex = 10;
  4206. const int startIndexcopy = 10;
  4207. if (dac2.Count == dac3.Count)//国家 币种 金额
  4208. {
  4209. for (int i = 0; i < dac2.Count; i++)
  4210. {
  4211. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4212. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4213. }
  4214. }
  4215. DataTable dtdac1 = new DataTable();
  4216. List<string> place = new List<string>();
  4217. dtdac1.Columns.AddRange(new DataColumn[] {
  4218. new DataColumn(){ ColumnName = "city"},
  4219. new DataColumn(){ ColumnName = "curr"},
  4220. new DataColumn(){ ColumnName = "criterion"},
  4221. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  4222. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  4223. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  4224. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  4225. new DataColumn(){ ColumnName = "costRMB", DataType = typeof(decimal) },
  4226. });
  4227. DataTable dtdac2 = new DataTable();
  4228. dtdac2.Columns.AddRange(new DataColumn[] {
  4229. new DataColumn(){ ColumnName = "city"},
  4230. new DataColumn(){ ColumnName = "curr"},
  4231. new DataColumn(){ ColumnName = "criterion"},
  4232. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  4233. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  4234. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  4235. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  4236. new DataColumn(){ ColumnName = "costRMB",DataType = typeof(decimal)},
  4237. });
  4238. dtdac1.TableName = "tb1";
  4239. dtdac2.TableName = "tb2";
  4240. decimal dac1totalPrice = 0.00M, dac2totalPrice = 0.00M;
  4241. foreach (var item in dac1)
  4242. {
  4243. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  4244. if (place.Contains(item.Place))
  4245. {
  4246. continue;
  4247. }
  4248. DataRow row = dtdac1.NewRow();
  4249. row["city"] = item.Place;
  4250. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  4251. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4252. row["curr"] = currency;
  4253. row["rate"] = rate.ToString("#0.0000");
  4254. row["criterion"] = item.Cost.ToString("#0.00");
  4255. row["number"] = 1;
  4256. row["day"] = dac1.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  4257. //row["costRMB"] = rbmPrice;
  4258. dtdac1.Rows.Add(row);
  4259. place.Add(item.Place);
  4260. }
  4261. place = new List<string>();
  4262. foreach (var item in dac2)
  4263. {
  4264. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  4265. if (place.Contains(item.Place))
  4266. {
  4267. continue;
  4268. }
  4269. DataRow row = dtdac2.NewRow();
  4270. row["city"] = item.Place;
  4271. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  4272. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4273. row["curr"] = currency;
  4274. row["rate"] = rate.ToString("#0.0000");
  4275. row["criterion"] = item.Cost.ToString("#0.00");
  4276. row["number"] = 1;
  4277. row["day"] = dac2.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  4278. //row["cost"] = item.SubTotal;
  4279. //row["costRMB"] = rbmPrice;
  4280. dtdac2.Rows.Add(row);
  4281. place.Add(item.Place);
  4282. //dac2totalPrice += rbmPrice;
  4283. }
  4284. dac1totalPrice = dac1.Sum(it => it.SubTotal);
  4285. dac2totalPrice = dac2.Sum(it => it.SubTotal);
  4286. designer.SetDataSource("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4287. designer.SetDataSource("dac2totalPrice", dac2totalPrice);
  4288. designer.SetDataSource("cityTranffic", @$"其中:国外城市间机票费: {_EnterExitCosts.CityTranffic.ToString("#0.00")} 元");
  4289. designer.SetDataSource("sumCityTranffic", @$"{_EnterExitCosts.CityTranffic.ToString("#0.00")} ");
  4290. string cell4Str = $" 4.国际旅费:经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 元/人,公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")} 元/人";
  4291. string cellStr = $" 5.其他费用(";
  4292. if (_EnterExitCosts.Visa > 0) cellStr += $"签证费:{_EnterExitCosts.Visa.ToString("#0.00")}元,";
  4293. if (_EnterExitCosts.YiMiao > 0) cellStr += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")}元,";
  4294. if (_EnterExitCosts.HeSuan > 0) cellStr += $"核酸费:{_EnterExitCosts.HeSuan.ToString("#0.00")}元,";
  4295. if (_EnterExitCosts.Safe > 0) cellStr += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")}元,";
  4296. if (_EnterExitCosts.Ticket > 0) cellStr += $"参展门票费:{_EnterExitCosts.Ticket.ToString("#0.00")}元,";
  4297. if (_EnterExitCosts.Service > 0) cellStr += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")}元,";
  4298. if (cellStr.Length > 8)
  4299. {
  4300. cellStr = cellStr.Substring(0, cellStr.Length - 1);
  4301. }
  4302. cellStr += ")";
  4303. decimal otherFee = _EnterExitCosts.Visa + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.Service;
  4304. decimal s = dac1totalPrice + dac2totalPrice + _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay + otherFee;
  4305. decimal pxFee = dac4.Sum(it => it.Cost);
  4306. decimal glvFee = _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay;
  4307. string celllastStr1 = "";
  4308. if (dac1totalPrice > 0) celllastStr1 += $"住宿费 {dac1totalPrice.ToString("#0.00")} 元";
  4309. if (dac2totalPrice > 0) celllastStr1 += $",伙食费和公杂费 {dac2totalPrice.ToString("#0.00")} 元";
  4310. if (pxFee > 0) celllastStr1 += $",培训费 {pxFee.ToString("#0.00")} 元";
  4311. celllastStr1 += $",国际旅费 元";
  4312. if (otherFee > 0) celllastStr1 += $",其他费用 {otherFee.ToString("#0.00")} 元";
  4313. string celllastStr = $" 经审核,{celllastStr1},本次出国经费预算合计为 元。其中:市本级安排 。";
  4314. designer.SetDataSource("cell4Str", cell4Str);
  4315. designer.SetDataSource("cellStr", cellStr);
  4316. designer.SetDataSource("cellSum", (_EnterExitCosts.Visa + _EnterExitCosts.Safe).ToString("#0.00"));
  4317. designer.SetDataSource("cellSum4", (_EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay).ToString("#0.00"));
  4318. designer.SetDataSource("celllastStr", celllastStr);
  4319. Workbook wb = designer.Workbook;
  4320. var sheet = wb.Worksheets[0];
  4321. //绑定datatable数据集
  4322. designer.SetDataSource(dtdac1);
  4323. designer.SetDataSource(dtdac2);
  4324. designer.Process();
  4325. var rowStart = dtdac1.Rows.Count;
  4326. while (rowStart > 0)
  4327. {
  4328. sheet.Cells[startIndex, 8].Formula = $"=G{startIndex + 1} * H{startIndex + 1}";
  4329. sheet.Cells[startIndex, 6].Formula = $"=E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4330. startIndex++;
  4331. rowStart--;
  4332. }
  4333. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + 1}: I{startIndex})";
  4334. startIndex += 1; //总计行
  4335. rowStart = dtdac2.Rows.Count;
  4336. while (rowStart > 0)
  4337. {
  4338. sheet.Cells[startIndex, 8].Formula = $"= G{startIndex + 1} * H{startIndex + 1}";
  4339. sheet.Cells[startIndex, 6].Formula = $"= E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4340. startIndex++;
  4341. rowStart--;
  4342. }
  4343. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + dtdac1.Rows.Count + 2}: I{startIndex})";
  4344. wb.CalculateFormula(true);
  4345. //模板文件名
  4346. string strFileName = $"{_DelegationInfo.TeamName}-四川省商务厅出国经费财政先行审核表{DateTime.Now.ToString("yyyyMMddHHmmss")}.xls"; ;//$".xls";
  4347. designer.Workbook.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4348. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4349. return Ok(JsonView(true, "成功", new { Url = url }));
  4350. }
  4351. else if (dto.SubTypeId == 1066) //成都市因公临时出国任务和预算审批意见表(外专培训团专用)
  4352. {
  4353. //获取模板
  4354. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/成都市因公临时出国任务和预算审批意见表.docx");
  4355. //载入模板
  4356. Document doc = new Document(tempPath);
  4357. DocumentBuilder builder = new DocumentBuilder(doc);
  4358. Dictionary<string, string> dic = new Dictionary<string, string>();
  4359. dic.Add("GroupName", _DelegationInfo.TeamName);
  4360. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4361. string missionLeader = ""; //团负责人默认接团客户名单第一个人
  4362. string missionLeaderJob = "";//负责人job
  4363. int groupNumber = 0; //团人数
  4364. if (DeleClientList.Count > 0)
  4365. {
  4366. missionLeader = DeleClientList[0]?.Name ?? "";
  4367. missionLeaderJob = DeleClientList[0]?.Job ?? "";
  4368. }
  4369. dic.Add("MissionLeader", missionLeader); //团负责人
  4370. dic.Add("MissionLeaderJob", missionLeaderJob); //团负责人job
  4371. dic.Add("GroupNumber", _DelegationInfo.VisitPNumber.ToString()); //团人数
  4372. #region MyRegion
  4373. //if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4374. //{
  4375. // List<string> list = new List<string>();
  4376. // try
  4377. // {
  4378. // var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4379. // foreach (var item in spilitArr)
  4380. // {
  4381. // var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4382. // var depCode = spDotandEmpty[2].Substring(0, 3);
  4383. // var arrCode = spDotandEmpty[2].Substring(3, 3);
  4384. // string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  4385. // arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  4386. // list.Add(depName);
  4387. // list.Add(arrName);
  4388. // }
  4389. // list = list.Distinct().ToList();
  4390. // dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4391. // }
  4392. // catch (Exception)
  4393. // {
  4394. // dic.Add("ReturnCode", "行程录入不正确!");
  4395. // }
  4396. //}
  4397. //else
  4398. //{
  4399. // dic.Add("ReturnCode", "未录入行程!");
  4400. //}
  4401. List<string> countrys = _groupRepository.GroupSplitCountry(_DelegationInfo.VisitCountry);
  4402. dic.Add("ReturnCode", string.Join("、", countrys));
  4403. #endregion
  4404. //dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4405. //dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4406. //dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4407. //if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4408. //{
  4409. // TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4410. // dic.Add("Day", sp.Days.ToString());
  4411. //}
  4412. dic.Add("Day", _DelegationInfo.VisitDays.ToString());
  4413. dic.Add("CultivateDay", dac4.Count.ToString()); //培训天数
  4414. // dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4415. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4416. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4417. //培训人员名单
  4418. int cultivateRowIndex = 7;
  4419. foreach (var item in DeleClientList)
  4420. {
  4421. builder.MoveToCell(0, cultivateRowIndex, 0, 0);
  4422. builder.Write(item.Name);
  4423. builder.MoveToCell(0, cultivateRowIndex, 1, 0);
  4424. builder.Write(item.Sex == 0 ? "男" : item.Sex == 1 ? "女" : "");
  4425. builder.MoveToCell(0, cultivateRowIndex, 2, 0);
  4426. string birthDay = "";
  4427. if (item.Birthday != null)
  4428. {
  4429. DateTime dt = Convert.ToDateTime(item.Birthday);
  4430. birthDay = $"{dt.Year}.{dt.Month}";
  4431. }
  4432. builder.Write(birthDay);
  4433. builder.MoveToCell(0, cultivateRowIndex, 3, 0);
  4434. builder.Write(item.Company);
  4435. builder.MoveToCell(0, cultivateRowIndex, 4, 0);
  4436. builder.Write(item.Job);
  4437. cultivateRowIndex++;
  4438. }
  4439. //删除多余行
  4440. //cultivateRowIndex -= 2;
  4441. int delRows = 10 + 7 - cultivateRowIndex;
  4442. if (delRows > 0)
  4443. {
  4444. for (int i = 0; i < delRows; i++)
  4445. {
  4446. table1.Rows.RemoveAt(cultivateRowIndex);
  4447. //cultivateRowIndex++;
  4448. }
  4449. }
  4450. decimal hotelFeeTotal = dac1.Sum(it => it.SubTotal);//住宿费
  4451. dic.Add("HotelFeeTotal", hotelFeeTotal.ToString("#0.00"));
  4452. decimal mealsFeeTotal = dac2.Sum(it => it.SubTotal);//伙食费
  4453. dic.Add("MealsFeeTotal", mealsFeeTotal.ToString("#0.00"));
  4454. decimal miscellaneousFeeTotal = dac3.Sum(it => it.SubTotal);//公杂费
  4455. dic.Add("MiscellaneousFeeTotal", miscellaneousFeeTotal.ToString("#0.00"));
  4456. decimal trainingFeeTotal = dac4.Sum(it => it.SubTotal);//培训费
  4457. dic.Add("TrainingFeeTotal", trainingFeeTotal.ToString("#0.00"));
  4458. decimal cityTranfficFeeToatal = _EnterExitCosts.CityTranffic; //城市区间交通费
  4459. dic.Add("CityTranfficFeeToatal", cityTranfficFeeToatal.ToString("#0.00"));//
  4460. //其他费用
  4461. decimal otherFeeTotal = _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Service;
  4462. dic.Add("OtherFeeTotal", otherFeeTotal.ToString("#0.00"));
  4463. //其他费用合计
  4464. decimal _otherFeeTotal = hotelFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + trainingFeeTotal + cityTranfficFeeToatal + otherFeeTotal;
  4465. decimal _jjcFeeToatal = _EnterExitCosts.AirJJ + _otherFeeTotal; //经济舱
  4466. decimal _gwcFeeToatal = _EnterExitCosts.AirGW + _otherFeeTotal; //公务舱
  4467. //公务舱合计
  4468. //国际旅费
  4469. string outsideJJ = "";
  4470. string allPriceJJ = "";
  4471. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 0)
  4472. {
  4473. dic.Add("AirFeeTotal", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4474. dic.Add("FeeTotal", _jjcFeeToatal.ToString("#0.00"));
  4475. }
  4476. if (_EnterExitCosts.SumGWC == 1 && _EnterExitCosts.SumJJC == 0)
  4477. {
  4478. dic.Add("AirFeeTotal", _EnterExitCosts.AirGW.ToString("#0.00"));
  4479. dic.Add("FeeTotal", _gwcFeeToatal.ToString("#0.00"));
  4480. }
  4481. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 1)
  4482. {
  4483. string airFeeTotalStr = string.Format(@$"经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")}");
  4484. dic.Add("AirFeeTotal", airFeeTotalStr);
  4485. string feeTotalStr = string.Format(@$"经济舱:{_jjcFeeToatal.ToString("#0.00")} 公务舱:{_gwcFeeToatal.ToString("#0.00")}");
  4486. dic.Add("FeeTotal", feeTotalStr);
  4487. }
  4488. foreach (var key in dic.Keys)
  4489. {
  4490. builder.MoveToBookmark(key);
  4491. builder.Write(dic[key]);
  4492. }
  4493. //模板文件名
  4494. string strFileName = $"{_DelegationInfo.TeamName}-成都市因公临时出国任务和预算审批意见表(外专培训团专用).docx";
  4495. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4496. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4497. return Ok(JsonView(true, "成功", new { Url = url }));
  4498. }
  4499. }
  4500. else if (dto.ExportType == 2) //表格
  4501. {
  4502. //利用键值对存放数据
  4503. Dictionary<string, string> dic = new Dictionary<string, string>();
  4504. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4505. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4506. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4507. dic.Add("Day", sp.Days.ToString());
  4508. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4509. if (dto.SubTypeId == 1008) //1008(派员单位出(境)任务和预算审批意见表)
  4510. {
  4511. //获取模板
  4512. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/派员单位出(境)任务和预算审批意见表.docx");
  4513. //载入模板
  4514. Document doc = new Document(tempPath);
  4515. DocumentBuilder builder = new DocumentBuilder(doc);
  4516. dic.Add("TeamName", _DelegationInfo.TeamName);
  4517. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4518. //dic.Add("TellPhone", _DelegationInfo.TellPhone);
  4519. string missionLeaderName = "",
  4520. missionLeaderJob = "";
  4521. if (DeleClientList.Count > 0)
  4522. {
  4523. missionLeaderName = DeleClientList[0].Name;
  4524. missionLeaderJob = DeleClientList[0].Job;
  4525. }
  4526. dic.Add("MissionLeaderName", missionLeaderName);
  4527. dic.Add("MissionLeaderJob", missionLeaderJob);
  4528. dic.Add("VisitPNumber", _DelegationInfo.VisitPNumber.ToString());
  4529. dic.Add("VisitPurpose", _DelegationInfo.VisitPurpose);
  4530. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4531. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4532. int rowCount = 10;//总人数行
  4533. int startRowIndex = 7; //起始行
  4534. for (int i = 0; i < DeleClientList.Count; i++)
  4535. {
  4536. builder.MoveToCell(0, startRowIndex, 0, 0);
  4537. builder.Write(DeleClientList[i].Name); //出国人员姓名
  4538. builder.MoveToCell(0, startRowIndex, 1, 0);
  4539. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  4540. builder.Write(sex);//性别
  4541. builder.MoveToCell(0, startRowIndex, 2, 0);
  4542. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));//出生年月
  4543. builder.MoveToCell(0, startRowIndex, 3, 0);
  4544. builder.Write(DeleClientList[i].Company);//工作单位
  4545. builder.MoveToCell(0, startRowIndex, 4, 0);
  4546. builder.Write(DeleClientList[i].Job);//职务及级别
  4547. builder.MoveToCell(0, startRowIndex, 5, 0);
  4548. builder.Write("");//人员属性
  4549. builder.MoveToCell(0, startRowIndex, 6, 0);
  4550. builder.Write("");//上次出国时间
  4551. startRowIndex++;
  4552. }
  4553. int nullRow = rowCount - DeleClientList.Count;//空行
  4554. for (int i = 0; i < nullRow; i++)
  4555. {
  4556. table1.Rows.Remove(table1.Rows[startRowIndex]);
  4557. }
  4558. foreach (var key in dic.Keys)
  4559. {
  4560. builder.MoveToBookmark(key);
  4561. builder.Write(dic[key]);
  4562. }
  4563. //模板文件名
  4564. string strFileName = $"派员单位出(境)任务和预算审批意见表.docx";
  4565. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4566. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4567. return Ok(JsonView(true, "成功", new { Url = url }));
  4568. }
  4569. else if (dto.SubTypeId == 1009)//1009(省级单位出(境)经费报销单)
  4570. {
  4571. //获取模板
  4572. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/省级单位出(境)经费报销单.docx");
  4573. //载入模板
  4574. Document doc = new Document(tempPath);
  4575. DocumentBuilder builder = new DocumentBuilder(doc);
  4576. dic.Add("GroupClient", _DelegationInfo.ClientUnit);
  4577. var Names = string.Join("、", DeleClientList.Select(x => x.Name)).TrimEnd('、');
  4578. dic.Add("Names", Names);
  4579. int accommodationRows = 12, foodandotherRows = 12;
  4580. var Dac1currCn = dac1.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4581. var Dac2currCn = dac2.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4582. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4583. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4584. int accommodationStartIndex = 6;
  4585. decimal dac1totalPrice = 0.00M;
  4586. foreach (var dac in dac1)
  4587. {
  4588. if (dac.SubTotal == 0)
  4589. {
  4590. continue;
  4591. }
  4592. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  4593. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  4594. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4595. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  4596. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  4597. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  4598. builder.Write(currency);//币种
  4599. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  4600. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4601. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  4602. builder.Write("");//人数
  4603. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  4604. builder.Write("");//天数
  4605. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  4606. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4607. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  4608. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4609. builder.Write(rate.ToString("#0.0000"));//汇率
  4610. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4611. decimal rbmPrice = rate * dac.SubTotal;
  4612. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4613. accommodationStartIndex++;
  4614. dac1totalPrice += rbmPrice;
  4615. }
  4616. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4617. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4618. builder.Write("小计");
  4619. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4620. builder.Write(dac1totalPrice.ToString("#0.00"));
  4621. accommodationStartIndex++;
  4622. int nullRow = accommodationRows - dac1.Count;
  4623. //删除空行
  4624. //if (nullRow > 0)
  4625. //{
  4626. // int rowIndex = accommodationStartIndex;
  4627. // for (int i = 0; i < nullRow; i++)
  4628. // {
  4629. // Row row = table1.Rows[rowIndex];
  4630. // row.Remove();
  4631. // rowIndex++;
  4632. // }
  4633. //}
  4634. if (dac2.Count == dac3.Count)//国家 币种 金额
  4635. {
  4636. for (int i = 0; i < dac2.Count; i++)
  4637. {
  4638. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4639. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4640. }
  4641. }
  4642. int foodandotherStartIndex = 19;//
  4643. decimal dac2totalPrice = 0.00M;
  4644. foreach (var dac in dac2)
  4645. {
  4646. if (dac.SubTotal == 0)
  4647. {
  4648. continue;
  4649. }
  4650. //foodandotherStartIndex = 12;
  4651. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  4652. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  4653. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  4654. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  4655. builder.Write(currency);//币种
  4656. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  4657. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4658. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  4659. builder.Write("");//人数
  4660. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  4661. builder.Write("");//天数
  4662. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  4663. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4664. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  4665. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4666. builder.Write(rate.ToString("#0.0000"));//汇率
  4667. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  4668. decimal rbmPrice = rate * dac.SubTotal;
  4669. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4670. foodandotherStartIndex++;
  4671. dac2totalPrice += rbmPrice;
  4672. }
  4673. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  4674. //删除空行
  4675. if (dac2.Count < foodandotherRows)
  4676. {
  4677. //int nullRow = accommodationRows - dac2.Count;
  4678. //while (table2.Rows.Count > dac2.Count)
  4679. //{
  4680. // table2.Rows.RemoveAt(dac2.Count);
  4681. //}
  4682. }
  4683. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4684. string otherFeeStr = "";
  4685. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  4686. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  4687. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  4688. if (otherFeeStr.Length > 0)
  4689. {
  4690. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  4691. otherFeeStr = $"({otherFeeStr})";
  4692. dic.Add("OtherFeeStr", otherFeeStr);
  4693. }
  4694. foreach (var key in dic.Keys)
  4695. {
  4696. builder.MoveToBookmark(key);
  4697. builder.Write(dic[key]);
  4698. }
  4699. //模板文件名
  4700. string strFileName = $"省级单位出(境)经费报销单.docx";
  4701. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4702. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4703. return Ok(JsonView(true, "成功", new { Url = url }));
  4704. }
  4705. }
  4706. else if (dto.ExportType == 3)
  4707. {
  4708. if (dto.SubTypeId == 1) //团组成员名单
  4709. {
  4710. if (DeleClientList.Count < 1)
  4711. {
  4712. return Ok(JsonView(false, "团组成员暂未录入!!!"));
  4713. }
  4714. //获取模板
  4715. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/dwon_团组人员列表模板.doc");
  4716. //载入模板
  4717. Document doc = new Document(tempPath);
  4718. DocumentBuilder builder = new DocumentBuilder(doc);
  4719. //获取word里所有表格
  4720. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4721. //获取所填表格的序数
  4722. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  4723. var rowStart = tableOne.Rows[0]; //获取第1行
  4724. //循环赋值
  4725. for (int i = 0; i < DeleClientList.Count; i++)
  4726. {
  4727. builder.MoveToCell(0, i + 1, 0, 0);
  4728. builder.Write(DeleClientList[i].Name);
  4729. builder.MoveToCell(0, i + 1, 1, 0);
  4730. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  4731. builder.Write(sex);
  4732. builder.MoveToCell(0, i + 1, 2, 0);
  4733. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));
  4734. builder.MoveToCell(0, i + 1, 3, 0);
  4735. builder.Write(DeleClientList[i].Company);
  4736. builder.MoveToCell(0, i + 1, 4, 0);
  4737. builder.Write(DeleClientList[i].Job);
  4738. }
  4739. //删除多余行
  4740. while (tableOne.Rows.Count > DeleClientList.Count + 1)
  4741. {
  4742. tableOne.Rows.RemoveAt(DeleClientList.Count + 1);
  4743. }
  4744. string strFileName = $"{_DelegationInfo.TeamName}组团人员名单({DateTime.Now.ToString("yyyyMMddHHmmss")}).doc";
  4745. //C:/Server/File/OA2023/Office/Word/EnterExitCost/File/
  4746. //C:\Server\File\OA2023\Office\Word\EnterExitCost\File\
  4747. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4748. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4749. return Ok(JsonView(true, "成功", new { Url = url }));
  4750. }
  4751. }
  4752. return Ok(JsonView(false, "操作失败!"));
  4753. }
  4754. catch (Exception ex)
  4755. {
  4756. return Ok(JsonView(false, ex.Message));
  4757. }
  4758. }
  4759. /// <summary>
  4760. /// 获取三公费用标准city
  4761. /// </summary>
  4762. /// <param name="placeData"></param>
  4763. /// <param name="nationalTravelFeeId"></param>
  4764. /// <returns></returns>
  4765. private string GetEnterExitCostExportCity(List<Grp_NationalTravelFee> placeData, int nationalTravelFeeId)
  4766. {
  4767. string _city = string.Empty;
  4768. if (placeData.Count < 1) return _city;
  4769. var data = placeData.Find(it => it.Id == nationalTravelFeeId);
  4770. if (data == null) return _city;
  4771. string country = data.Country;
  4772. string city = data.City;
  4773. if (city.Contains("其他城市") || city.Contains("所有城市")) _city = $"{country}-{city}";
  4774. else _city = city;
  4775. return _city;
  4776. }
  4777. /// <summary>
  4778. /// 团组模块 - 出入境费用 - 明细表导出
  4779. /// </summary>
  4780. /// <returns></returns>
  4781. [HttpPost]
  4782. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4783. public async Task<IActionResult> PostEnterExitCostExportDetailsList(EnterExitCostOperateDto dto)
  4784. {
  4785. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  4786. if (data.Code != 0)
  4787. {
  4788. return Ok(JsonView(false, data.Msg));
  4789. }
  4790. return Ok(JsonView(true, data.Msg, data.Data));
  4791. }
  4792. /// <summary>
  4793. /// 团组模块 - 出入境费用 - 一键清空
  4794. /// </summary>
  4795. /// <returns></returns>
  4796. [HttpPost]
  4797. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4798. public async Task<IActionResult> PostEnterExitCostOneClickClear(EnterExitCostOneClickClearDto dto)
  4799. {
  4800. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数;"));
  4801. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数;"));
  4802. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数;"));
  4803. var _view = await _enterExitCostRep._OneClickClear(dto.Id, dto.DiId, dto.UserId);
  4804. if (_view.Code == 0)
  4805. {
  4806. return Ok(JsonView(true, "操作成功"));
  4807. }
  4808. return Ok(JsonView(false, "操作失败"));
  4809. }
  4810. /// <summary>
  4811. /// 团组模块 - 出入境费用 - 子项删除
  4812. /// </summary>
  4813. /// <returns></returns>
  4814. [HttpPost]
  4815. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4816. public async Task<IActionResult> PostEnterExitCostSubItemDel(EnterExitCostSubItemDelDto dto)
  4817. {
  4818. try
  4819. {
  4820. var data = await _enterExitCostRep.PostEnterExitCostSubItemDel(dto);
  4821. if (data.Code != 0)
  4822. {
  4823. return Ok(JsonView(false, data.Msg));
  4824. }
  4825. return Ok(JsonView(true, "操作成功!", data.Data));
  4826. }
  4827. catch (Exception ex)
  4828. {
  4829. return Ok(JsonView(false, ex.Message));
  4830. }
  4831. }
  4832. /// <summary>
  4833. /// 团组模块 - 出入境国家费用标准 List
  4834. /// </summary>
  4835. /// <returns></returns>
  4836. [HttpPost]
  4837. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4838. public async Task<IActionResult> GetNationalTravelFeeData(PortDtoBase dto)
  4839. {
  4840. try
  4841. {
  4842. Stopwatch sw = new Stopwatch();
  4843. sw.Start();
  4844. string nationalTravelFeeSql = string.Format(@"Select ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.* From Grp_NationalTravelFee gntf
  4845. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  4846. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  4847. Where gntf.Isdel = 0");
  4848. var nationalTravelFeeData = _sqlSugar.SqlQueryable<NationalTravelFeeInfoView>(nationalTravelFeeSql).ToList();
  4849. //var nationalTravel = nationalTravelFeeData.GroupBy(it => it.Country).Select(it1 => it1.FirstOrDefault());
  4850. //List<dynamic> nationalTravelFeeData1 = new List<dynamic>();
  4851. //foreach (var item in nationalTravel)
  4852. //{
  4853. // var cityData = nationalTravelFeeData.Where(it => it.Country == item.Country).ToList();
  4854. // var otherData = cityData.Where(it => it.City.Contains("其他城市")).FirstOrDefault();
  4855. // if (otherData != null)
  4856. // {
  4857. // cityData.Remove(otherData);
  4858. // cityData.Add(otherData);
  4859. // }
  4860. // nationalTravelFeeData1.Add(new
  4861. // {
  4862. // Country = item.Country,
  4863. // CityData = cityData
  4864. // });
  4865. //}
  4866. sw.Stop();
  4867. return Ok(JsonView(true, "查询成功!耗时:" + sw.ElapsedMilliseconds + "ms", nationalTravelFeeData));
  4868. }
  4869. catch (Exception ex)
  4870. {
  4871. return Ok(JsonView(false, ex.Message));
  4872. throw;
  4873. }
  4874. }
  4875. /// <summary>
  4876. /// 团组模块 - 出入境国家费用标准 Page List Data Source
  4877. /// </summary>
  4878. /// <returns></returns>
  4879. [HttpPost]
  4880. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4881. public async Task<IActionResult> GetNationalTravelFeePageDataSource()
  4882. {
  4883. string sql = string.Format(@"Select * From Grp_NationalTravelFee Where Isdel = 0 ");
  4884. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<Grp_NationalTravelFee>(sql).ToListAsync();
  4885. List<string> countryData = new List<string>();
  4886. countryData.AddRange(nationalTravelFeeData.Select(it => it.Country).ToList());
  4887. countryData = countryData.Distinct().ToList();
  4888. List<dynamic> dataSource = new List<dynamic>();
  4889. foreach (var item in countryData)
  4890. {
  4891. List<string> cityData1 = new List<string>();
  4892. cityData1 = nationalTravelFeeData.Where(it => it.Country == item).Select(it => it.City).ToList();
  4893. var countryData2 = new
  4894. {
  4895. CountryName = item,
  4896. CityData = cityData1
  4897. };
  4898. dataSource.Add(countryData2);
  4899. }
  4900. return Ok(JsonView(true, "查询成功!", dataSource));
  4901. }
  4902. /// <summary>
  4903. /// 团组模块 - 出入境国家费用标准 Page List
  4904. /// </summary>
  4905. /// <returns></returns>
  4906. [HttpPost]
  4907. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4908. public async Task<IActionResult> PostNationalTravelFeePage(NationalTravelFeePageDto dto)
  4909. {
  4910. int portId = dto.PortType;
  4911. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  4912. if (dto.PageIndex == 0) return Ok(JsonView(false, "当前页码数不能为0!"));
  4913. if (dto.PageSize == 0) return Ok(JsonView(false, "每页条数不能0!"));
  4914. string whereSql = string.Empty;
  4915. if (!string.IsNullOrEmpty(dto.Country))
  4916. {
  4917. whereSql += string.Format(@" And gntf.Country ='{0}'", dto.Country);
  4918. }
  4919. if (!string.IsNullOrEmpty(dto.City))
  4920. {
  4921. whereSql += string.Format(@" And gntf.City='{0}'", dto.City);
  4922. }
  4923. string pageSql = string.Format(@"Select * From (
  4924. Select row_number() over(order by gntf.LastUpdateTime Desc) as RowNumber,
  4925. ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.*
  4926. From Grp_NationalTravelFee gntf
  4927. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  4928. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  4929. Where gntf.Isdel = 0 {0} ) temp ", whereSql);
  4930. RefAsync<int> total = 0;
  4931. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeePageInfoView>(pageSql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  4932. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData, (int)total));
  4933. }
  4934. /// <summary>
  4935. /// 团组模块 - 出入境国家费用标准 根据城市查询
  4936. /// </summary>
  4937. /// <returns></returns>
  4938. [HttpPost]
  4939. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4940. public async Task<IActionResult> PostNationalTravelFeeInfoByCountryAndCity(NationalTravelFeeByCountryAndCityDto dto)
  4941. {
  4942. if (dto == null) return Ok(JsonView(false, "请传入参数!"));
  4943. int portId = dto.PortType;
  4944. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  4945. string whereSql = string.Empty;
  4946. if (!string.IsNullOrEmpty(dto.Country))
  4947. {
  4948. whereSql = string.Format(@"And Country = '{0}' ", dto.Country);
  4949. }
  4950. if (!string.IsNullOrEmpty(dto.City))
  4951. {
  4952. whereSql = string.Format(@"And City = '{0}' ", dto.City);
  4953. }
  4954. string sql = string.Format(@"Select gntf.Country,gntf.City,gntf.Currency,ssd.Name as CurrencyCode,
  4955. ssd.Remark as CurrencyName,gntf.RoomCost,gntf.FoodCost,gntf.PublicCost,
  4956. gntf.LastUpdateUserId,su.CnName as LastUpdateUserName,gntf.LastUpdateTime
  4957. From Grp_NationalTravelFee gntf
  4958. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  4959. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  4960. Where gntf.Isdel = 0 {0} ", whereSql);
  4961. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeeInfoByCountryAndCityView>(sql).FirstAsync();
  4962. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData));
  4963. }
  4964. /// <summary>
  4965. /// 团组模块 - 出入境国家费用标准 - Add Or Update
  4966. /// </summary>
  4967. /// <returns></returns>
  4968. [HttpPost]
  4969. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4970. public async Task<IActionResult> PostNationalTravelFeeOperate(NationalTravelFeeOperateDto dto)
  4971. {
  4972. try
  4973. {
  4974. var data = await _enterExitCostRep.PostNationalTravelFeeOperate(dto);
  4975. if (data.Code != 0)
  4976. {
  4977. return Ok(JsonView(false, data.Msg));
  4978. }
  4979. return Ok(JsonView(true, "操作成功!", data.Data));
  4980. }
  4981. catch (Exception ex)
  4982. {
  4983. return Ok(JsonView(false, ex.Message));
  4984. }
  4985. }
  4986. /// <summary>
  4987. /// 团组模块 - 出入境国家费用标准 - Del
  4988. /// </summary>
  4989. /// <returns></returns>
  4990. [HttpPost]
  4991. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4992. public async Task<IActionResult> PostNationalTravelFeeDel(NationalTravelFeeDelDto dto)
  4993. {
  4994. try
  4995. {
  4996. Grp_NationalTravelFee _nationalTravelFee = new Grp_NationalTravelFee()
  4997. {
  4998. Id = dto.Id,
  4999. DeleteUserId = dto.DeleteUserId,
  5000. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  5001. IsDel = 1
  5002. };
  5003. var delStatus = await _enterExitCostRep._sqlSugar.Updateable<Grp_NationalTravelFee>(_nationalTravelFee)
  5004. .UpdateColumns(it => new { it.DeleteTime, it.DeleteUserId, it.IsDel })
  5005. .WhereColumns(it => new { it.Id })
  5006. .ExecuteCommandAsync();
  5007. if (delStatus <= 0)
  5008. {
  5009. return Ok(JsonView(false, "删除失败!"));
  5010. }
  5011. return Ok(JsonView(true, "操作成功!"));
  5012. }
  5013. catch (Exception ex)
  5014. {
  5015. return Ok(JsonView(false, ex.Message));
  5016. }
  5017. }
  5018. #endregion
  5019. #region 签证费用录入
  5020. /// <summary>
  5021. /// 根据diid查询签证费用列表
  5022. /// </summary>
  5023. /// <param name="dto"></param>
  5024. /// <returns></returns>
  5025. [HttpPost]
  5026. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5027. public async Task<IActionResult> QueryVisaByDiId(VisaPriceDto dto)
  5028. {
  5029. try
  5030. {
  5031. Result groupData = await _visaPriceRep.PostVisaByDiId(dto);
  5032. if (groupData.Code != 0)
  5033. {
  5034. return Ok(JsonView(false, groupData.Msg));
  5035. }
  5036. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5037. }
  5038. catch (Exception ex)
  5039. {
  5040. return Ok(JsonView(false, ex.Message));
  5041. }
  5042. }
  5043. /// <summary>
  5044. /// 根据签证费用Id查询单条数据及c表数据
  5045. /// </summary>
  5046. /// <param name="dto"></param>
  5047. /// <returns></returns>
  5048. [HttpPost]
  5049. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5050. public async Task<IActionResult> QueryVisaById(PostVisaByIdDto dto)
  5051. {
  5052. try
  5053. {
  5054. Result groupData = await _visaPriceRep.PostVisaById(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. /// 签证费用删除
  5068. /// </summary>
  5069. /// <param name="dto"></param>
  5070. /// <returns></returns>
  5071. [HttpPost]
  5072. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5073. public async Task<IActionResult> DelVisaPrice(DelBaseDto dto)
  5074. {
  5075. _sqlSugar.BeginTran();
  5076. var res = await _visaPriceRep.SoftDeleteByIdAsync<Grp_VisaInfo>(dto.Id.ToString(), dto.DeleteUserId);
  5077. if (!res)
  5078. {
  5079. _sqlSugar.RollbackTran();
  5080. return Ok(JsonView(false, "删除失败"));
  5081. }
  5082. var resSub = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  5083. .Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 80)
  5084. .SetColumns(a => new Grp_CreditCardPayment()
  5085. {
  5086. IsDel = 1,
  5087. DeleteUserId = dto.DeleteUserId,
  5088. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5089. }).ExecuteCommand();
  5090. if (resSub < 1)
  5091. {
  5092. _sqlSugar.RollbackTran();
  5093. return Ok(JsonView(false, "删除失败"));
  5094. }
  5095. _sqlSugar.CommitTran();
  5096. return Ok(JsonView(true, "删除成功!"));
  5097. }
  5098. /// <summary>
  5099. /// 签证费用录入下拉框初始化
  5100. /// </summary>
  5101. /// <returns></returns>
  5102. [HttpPost]
  5103. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5104. public async Task<IActionResult> VisaPriceAddSelect()
  5105. {
  5106. try
  5107. {
  5108. //支付方式
  5109. List<Sys_SetData> Payment = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 14 && a.IsDel == 0).ToList();
  5110. List<SetDataInfoView> _Payment = _mapper.Map<List<SetDataInfoView>>(Payment);
  5111. //币种
  5112. List<Sys_SetData> CurrencyList = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 66 && a.IsDel == 0).ToList();
  5113. List<SetDataInfoView> _CurrencyList = _mapper.Map<List<SetDataInfoView>>(CurrencyList);
  5114. //乘客类型
  5115. List<Sys_SetData> PassengerType = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 69 && a.IsDel == 0).ToList();
  5116. List<SetDataInfoView> _PassengerType = _mapper.Map<List<SetDataInfoView>>(PassengerType);
  5117. //卡类型
  5118. List<Sys_SetData> BankCard = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 15 && a.IsDel == 0).ToList();
  5119. List<SetDataInfoView> _BankCard = _mapper.Map<List<SetDataInfoView>>(BankCard);
  5120. var data = new
  5121. {
  5122. Payment = _Payment,
  5123. CurrencyList = _CurrencyList,
  5124. PassengerType = _PassengerType,
  5125. BankCard = _BankCard
  5126. };
  5127. return Ok(JsonView(true, "查询成功!", data));
  5128. }
  5129. catch (Exception ex)
  5130. {
  5131. return Ok(JsonView(false, "程序错误!"));
  5132. throw;
  5133. }
  5134. }
  5135. /// <summary>
  5136. /// 签证费用录入操作(Status:1.新增,2.修改)
  5137. /// </summary>
  5138. /// <param name="dto"></param>
  5139. /// <returns></returns>
  5140. [HttpPost]
  5141. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5142. public async Task<IActionResult> OpVisaPrice(OpVisaPriceDto dto)
  5143. {
  5144. try
  5145. {
  5146. Result groupData = await _visaPriceRep.OpVisaPrice(dto);
  5147. if (groupData.Code != 0)
  5148. {
  5149. return Ok(JsonView(false, groupData.Msg));
  5150. }
  5151. #region 应用推送
  5152. try
  5153. {
  5154. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  5155. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  5156. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  5157. }
  5158. catch (Exception ex)
  5159. {
  5160. }
  5161. #endregion
  5162. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5163. }
  5164. catch (Exception ex)
  5165. {
  5166. return Ok(JsonView(false, ex.Message));
  5167. }
  5168. }
  5169. #endregion
  5170. #region op费用录入
  5171. /// <summary>
  5172. /// 根据diid查询op费用列表
  5173. /// </summary>
  5174. /// <param name="dto"></param>
  5175. /// <returns></returns>
  5176. [HttpPost]
  5177. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5178. public async Task<IActionResult> QueryCarTouristGuideGroundByDiId(CarTouristGuideGroundDto dto)
  5179. {
  5180. try
  5181. {
  5182. Result groupData = await _carTouristGuideGroundRep.QueryCarTouristGuideGroundByDiId(dto);
  5183. if (groupData.Code != 0)
  5184. {
  5185. return Ok(JsonView(false, groupData.Msg));
  5186. }
  5187. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5188. }
  5189. catch (Exception ex)
  5190. {
  5191. return Ok(JsonView(false, ex.Message));
  5192. }
  5193. }
  5194. /// <summary>
  5195. /// 根据op费用Id查询单条数据及c表数据
  5196. /// </summary>
  5197. /// <param name="dto"></param>
  5198. /// <returns></returns>
  5199. [HttpPost]
  5200. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5201. public async Task<IActionResult> QueryCarTouristGuideGroundById(CarTouristGuideGroundIdDto dto)
  5202. {
  5203. try
  5204. {
  5205. Grp_CarTouristGuideGroundReservations _groupData = await _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().FirstAsync(a => a.Id == dto.Id && a.IsDel == 0);
  5206. Grp_CreditCardPayment _creditCardPayment = await _sqlSugar.Queryable<Grp_CreditCardPayment>().FirstAsync(a => a.CId == dto.Id && a.CTable == 79 && a.IsDel == 0);
  5207. var data = new
  5208. {
  5209. CarTouristGuideGround = _groupData,
  5210. CreditCardPayment = _creditCardPayment
  5211. };
  5212. return Ok(JsonView(true, "查询成功!", data));
  5213. }
  5214. catch (Exception ex)
  5215. {
  5216. return Ok(JsonView(false, "程序错误!"));
  5217. }
  5218. }
  5219. /// <summary>
  5220. /// op费用删除
  5221. /// </summary>
  5222. /// <param name="dto"></param>
  5223. /// <returns></returns>
  5224. [HttpPost]
  5225. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5226. public async Task<IActionResult> DelCarTouristGuideGround(DelBaseDto dto)
  5227. {
  5228. try
  5229. {
  5230. var res = await _carTouristGuideGroundRep.SoftDeleteByIdAsync<Grp_CarTouristGuideGroundReservations>(dto.Id.ToString(), dto.DeleteUserId);
  5231. if (!res)
  5232. {
  5233. return Ok(JsonView(false, "删除失败"));
  5234. }
  5235. var result = await _sqlSugar.Updateable<Grp_CarTouristGuideGroundReservationsContent>().Where(a => a.CTGGRId == dto.Id && a.IsDel == 0).SetColumns(a => new Grp_CarTouristGuideGroundReservationsContent()
  5236. {
  5237. IsDel = 1,
  5238. DeleteUserId = dto.DeleteUserId,
  5239. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5240. }).ExecuteCommandAsync();
  5241. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 79).SetColumns(a => new Grp_CreditCardPayment()
  5242. {
  5243. IsDel = 1,
  5244. DeleteUserId = dto.DeleteUserId,
  5245. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5246. }).ExecuteCommandAsync();
  5247. return Ok(JsonView(true, "删除成功!"));
  5248. }
  5249. catch (Exception ex)
  5250. {
  5251. return Ok(JsonView(false, "程序错误!"));
  5252. throw;
  5253. }
  5254. }
  5255. /// <summary>
  5256. /// op费用录入操作(Status:1.新增,2.修改)
  5257. /// </summary>
  5258. /// <param name="dto"></param>
  5259. /// <returns></returns>
  5260. [HttpPost]
  5261. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5262. public async Task<IActionResult> OpCarTouristGuideGround(OpCarTouristGuideGroundDto dto)
  5263. {
  5264. try
  5265. {
  5266. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGround(dto);
  5267. if (groupData.Code != 0)
  5268. {
  5269. return Ok(JsonView(false, groupData.Msg));
  5270. }
  5271. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5272. }
  5273. catch (Exception ex)
  5274. {
  5275. return Ok(JsonView(false, ex.Message));
  5276. }
  5277. }
  5278. /// <summary>
  5279. /// 填写费用详细页面初始化绑定
  5280. /// </summary>
  5281. /// <param name="dto"></param>
  5282. /// <returns></returns>
  5283. [HttpPost]
  5284. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5285. public IActionResult CarTouristGuideGroundContentInitialize(CarTouristGuideGroundContentDto dto)
  5286. {
  5287. try
  5288. {
  5289. Result groupData = _carTouristGuideGroundRep.CarTouristGuideGroundContent(dto);
  5290. if (groupData.Code != 0)
  5291. {
  5292. return Ok(JsonView(false, groupData.Msg));
  5293. }
  5294. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5295. }
  5296. catch (Exception ex)
  5297. {
  5298. return Ok(JsonView(false, ex.Message));
  5299. }
  5300. }
  5301. /// <summary>
  5302. /// 根据op费用Id查询详细数据
  5303. /// </summary>
  5304. /// <param name="dto"></param>
  5305. /// <returns></returns>
  5306. [HttpPost]
  5307. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5308. public IActionResult OpCarTouristGuideGroundContentById(CarTouristGuideGroundIdDto dto)
  5309. {
  5310. try
  5311. {
  5312. Result groupData = _carTouristGuideGroundRep.OpCarTouristGuideGroundContentById(dto);
  5313. if (groupData.Code != 0)
  5314. {
  5315. return Ok(JsonView(false, groupData.Msg));
  5316. }
  5317. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5318. }
  5319. catch (Exception ex)
  5320. {
  5321. return Ok(JsonView(false, ex.Message));
  5322. }
  5323. }
  5324. /// <summary>
  5325. /// OP费用录入填写详情
  5326. /// </summary>
  5327. /// <param name="dto"></param>
  5328. /// <returns></returns>
  5329. [HttpPost]
  5330. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5331. public async Task<IActionResult> OpCarTouristGuideGroundContent(OpCarTouristGuideGroundContentDto dto)
  5332. {
  5333. try
  5334. {
  5335. #region 参数校验
  5336. if (dto.Currency <= 0) return Ok(JsonView(false, "币种错误!"));
  5337. var di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.DiId && x.IsDel == 0);
  5338. if (di == null) return Ok(JsonView(false, "团组错误!"));
  5339. #endregion
  5340. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGroundContent(dto);
  5341. if (groupData.Code != 0)
  5342. {
  5343. return Ok(JsonView(false, groupData.Msg));
  5344. }
  5345. //自动审核
  5346. await _feeAuditRep.FeeAutomaticAudit(2, dto.DiId, dto.CTGGRId);
  5347. #region 应用推送
  5348. try
  5349. {
  5350. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  5351. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  5352. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  5353. }
  5354. catch (Exception ex)
  5355. {
  5356. }
  5357. #endregion
  5358. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5359. }
  5360. catch (Exception ex)
  5361. {
  5362. return Ok(JsonView(false, ex.Message));
  5363. }
  5364. }
  5365. /// <summary>
  5366. /// 获取三公详细所有城市
  5367. /// </summary>
  5368. /// <returns></returns>
  5369. [HttpGet]
  5370. public IActionResult OpCarCityResult()
  5371. {
  5372. var jw = JsonView(false);
  5373. var data = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(x => x.IsDel == 0).Select(x => new
  5374. {
  5375. x.Id,
  5376. x.Country,
  5377. x.City,
  5378. }).ToList();
  5379. if (data.Count > 0)
  5380. {
  5381. jw = JsonView(true, "获取成功!", data);
  5382. }
  5383. else
  5384. {
  5385. jw.Msg = "城市数据为空!";
  5386. jw.Data = new string[0];
  5387. }
  5388. return Ok(jw);
  5389. }
  5390. /// <summary>
  5391. /// 导出地接费用明细
  5392. /// </summary>
  5393. /// <param name="dto"></param>
  5394. /// <returns></returns>
  5395. [HttpPost]
  5396. public IActionResult ExportLocalGuidePriceDetail(ExportLocalGuidePriceDetailDto dto)
  5397. {
  5398. var jw = JsonView(false);
  5399. if (dto.Diid < 1)
  5400. {
  5401. jw.Msg = "请输入正确的diid!";
  5402. return Ok(jw);
  5403. }
  5404. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  5405. if (group == null)
  5406. {
  5407. jw.Msg = "未找到团组信息!";
  5408. return Ok(jw);
  5409. }
  5410. var localGuideArr = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).ToList();
  5411. if (localGuideArr.Count == 0)
  5412. {
  5413. jw.Msg = "该团组暂无地接信息!";
  5414. return Ok(jw);
  5415. }
  5416. var localGroup = localGuideArr.GroupBy(x => x.Area).ToList();
  5417. var overspendSoure = new Dictionary<int, int>
  5418. {
  5419. { 91, 982 }, //车
  5420. { 92 , 1059} ,//导游
  5421. { 994 , 1073}, //翻译
  5422. { 988 , 1074 }, //早餐
  5423. { 93 , 1075 }, //午餐
  5424. { 989 , 1076 }, //晚餐
  5425. };
  5426. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  5427. foreach (var groupArr in localGroup)
  5428. {
  5429. var keyValue = groupArr.Key;
  5430. if (int.TryParse(keyValue, out int cityid))
  5431. {
  5432. var city = _sqlSugar.Queryable<Grp_NationalTravelFee>().First(x => x.Id == cityid && x.IsDel == 0);
  5433. keyValue = city == null ? keyValue : city.Country + "-" + city.City;
  5434. }
  5435. List<List<Grp_CarTouristGuideGroundReservationsContentExtend>> contentArr = new List<List<Grp_CarTouristGuideGroundReservationsContentExtend>>();
  5436. foreach (var item in groupArr)
  5437. {
  5438. var content = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservationsContent, Sys_SetData>((a, b) => a.SId == b.Id
  5439. ).Where((a, b) => a.CTGGRId == item.Id && a.Price != 0M && a.IsDel == 0 && b.IsDel == 0).Select((a, b) =>
  5440. new Grp_CarTouristGuideGroundReservationsContentExtend
  5441. {
  5442. Count = a.Count,
  5443. CreateTime = a.CreateTime,
  5444. CreateUserId = a.CreateUserId,
  5445. CTGGRId = a.CTGGRId,
  5446. Currency = a.Currency,
  5447. DatePrice = a.DatePrice,
  5448. DeleteTime = a.DeleteTime,
  5449. DeleteUserId = a.DeleteUserId,
  5450. DiId = a.DiId,
  5451. Id = a.Id,
  5452. IsDel = a.IsDel,
  5453. Price = a.Price,
  5454. PriceContent = a.PriceContent,
  5455. Remark = a.Remark,
  5456. SId = a.SId,
  5457. SidName = b.Name,
  5458. Units = a.Units,
  5459. }
  5460. ).ToList();
  5461. if (content.Count > 0)
  5462. {
  5463. contentArr.Add(content);
  5464. }
  5465. }
  5466. //open excel
  5467. //set excel
  5468. //save excel
  5469. try
  5470. {
  5471. string filePath = AppSettingsHelper.Get("ExcelBasePath") + "\\Template\\地接费用明细.xlsx";
  5472. IWorkbook workbook;
  5473. if (Path.GetExtension(filePath).ToLower() == ".xls")
  5474. {
  5475. workbook = new HSSFWorkbook(new FileStream(filePath, FileMode.Open, FileAccess.Read));
  5476. }
  5477. else
  5478. {
  5479. workbook = new XSSFWorkbook(new FileStream(filePath, FileMode.Open, FileAccess.Read));
  5480. }
  5481. ISheet sheet = workbook.GetSheetAt(0);
  5482. var rowStartIndex = 2;
  5483. var clounmCount = 10;
  5484. var initStyleRow = sheet.GetRow(2);
  5485. var arr = contentArr.SelectMany(x => x).OrderBy(x => x.SId).ToList();
  5486. //var overspendArrDetail =
  5487. var existsId = new List<CarCompare>();
  5488. var lastElem = arr.Last();
  5489. var thisSid = -1;
  5490. var curr = arr.Count > 0 ? arr[0].Currency : -1;
  5491. var currObj = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == curr && x.IsDel == 0) ?? new Sys_SetData
  5492. {
  5493. Name = "未知币种!",
  5494. Remark = "未知币种!",
  5495. };
  5496. sheet.GetRow(0).GetCell(1).SetCellValue($"{keyValue}费用明细(货币:{currObj.Remark})");
  5497. Action cloneRowFn = () =>
  5498. {
  5499. rowStartIndex++;
  5500. var cloneRow = sheet.CreateRow(rowStartIndex);
  5501. // 复制样式
  5502. for (int i = initStyleRow.FirstCellNum; i < initStyleRow.LastCellNum; i++)
  5503. {
  5504. ICell sourceCell = initStyleRow.GetCell(i);
  5505. ICell targetCell = cloneRow.GetCell(i) ?? cloneRow.CreateCell(i);
  5506. // 确保单元格存在样式
  5507. if (sourceCell.CellStyle != null)
  5508. {
  5509. targetCell.CellStyle = sourceCell.CellStyle;
  5510. }
  5511. }
  5512. };
  5513. var mergeRow = () =>
  5514. {
  5515. for (int i = 2; i < sheet.LastRowNum; i++)
  5516. {
  5517. var row = sheet.GetRow(i);
  5518. var cellFirst = row.GetCell(0);
  5519. var thisIndex = i + 1;
  5520. while (thisIndex < sheet.LastRowNum)
  5521. {
  5522. var nextRow = sheet.GetRow(thisIndex);
  5523. var nextCellFirst = nextRow.GetCell(0);
  5524. if (cellFirst != null && nextCellFirst != null && cellFirst.ToString().Trim() == nextCellFirst.ToString().Trim())
  5525. {
  5526. thisIndex++;
  5527. }
  5528. else
  5529. {
  5530. break;
  5531. }
  5532. }
  5533. thisIndex--;
  5534. if (thisIndex != i)
  5535. {
  5536. //合并row
  5537. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5538. i, // 起始行索引(0-based)
  5539. thisIndex, // 结束行索引(0-based)
  5540. 0, // 起始列索引(0-based)
  5541. 0 // 结束列索引(0-based)
  5542. );
  5543. sheet.AddMergedRegion(cellRangeAddress);
  5544. i = thisIndex;
  5545. }
  5546. }
  5547. };
  5548. var chaoshiNumber = 0;
  5549. var totalNumber = 0.00M;
  5550. string lastStr = "";
  5551. var queryCarArrByCityAndDiid = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations, Grp_CreditCardPayment>((x, b) => x.Id == b.CId && b.IsDel == 0 && b.CTable == 79)
  5552. .Where(x => x.DiId == dto.Diid && x.Area == groupArr.Key).Select((x, b) => new
  5553. {
  5554. b.IsAuditGM,
  5555. x.Id,
  5556. x.Area,
  5557. b.PayPercentage,
  5558. b.PayMoney,
  5559. }).ToList();
  5560. string yesPayment = "", noPayment = "";
  5561. foreach (var item in queryCarArrByCityAndDiid)
  5562. {
  5563. if (item.IsAuditGM == 1)
  5564. {
  5565. yesPayment += $"已支付团款({(int)item.PayPercentage}%):{item.PayMoney} {currObj.Remark}(如有需要,请在此处填写明细)\r\n";
  5566. }
  5567. else
  5568. {
  5569. noPayment += $"剩余团款:{item.PayMoney}{currObj.Remark}(如有需要,请在此处填写明细)\r\n";
  5570. }
  5571. }
  5572. lastStr = yesPayment + noPayment;
  5573. foreach (var item in arr)
  5574. {
  5575. if (existsId.FirstOrDefault(x => x.Sid == item.SId && DateTime.Compare(x.DataPrice, item.DatePrice.ObjToDate()) == 0) == null && !overspendSoure.Values.Contains(item.SId))
  5576. {
  5577. if (thisSid != item.SId)
  5578. {
  5579. if (thisSid == -1)
  5580. {
  5581. thisSid = item.SId;
  5582. }
  5583. else
  5584. {
  5585. //合并小计行
  5586. //创建合并区域的实例
  5587. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5588. rowStartIndex, // 起始行索引(0-based)
  5589. rowStartIndex, // 结束行索引(0-based)
  5590. 0, // 起始列索引(0-based)
  5591. 3 // 结束列索引(0-based)
  5592. );
  5593. sheet.AddMergedRegion(cellRangeAddress);
  5594. var CellStyle = workbook.CreateCellStyle();
  5595. CellStyle.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5596. CellStyle.FillForegroundColor = IndexedColors.Yellow.Index; // 选择填充颜色
  5597. CellStyle.FillPattern = FillPattern.SolidForeground; // 填充方式
  5598. for (int i = 0; i <= clounmCount; i++)
  5599. {
  5600. if (i > 6)
  5601. {
  5602. var CellStyle1 = workbook.CreateCellStyle();
  5603. CellStyle1.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5604. IFont Font = workbook.CreateFont(); // 创建字体
  5605. Font.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(i).CellStyle.GetFont(workbook));
  5606. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  5607. CellStyle1.SetFont(Font);
  5608. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle1;
  5609. }
  5610. else
  5611. {
  5612. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle;
  5613. }
  5614. }
  5615. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue("合计:");
  5616. sheet.GetRow(rowStartIndex).GetCell(4).SetCellValue(arr.Where(x => x.SId == thisSid).Sum(x => x.Count * x.Price).ToString("F2"));
  5617. //超时合计
  5618. sheet.GetRow(rowStartIndex).GetCell(7).SetCellValue("超时合计:");
  5619. //超时数
  5620. sheet.GetRow(rowStartIndex).GetCell(8).SetCellValue(chaoshiNumber == 0 ? "" : chaoshiNumber.ToString());
  5621. //超时合计费用
  5622. sheet.GetRow(rowStartIndex).GetCell(9).SetCellValue(totalNumber == 0 ? "" : totalNumber.ToString());
  5623. thisSid = item.SId;
  5624. cloneRowFn();
  5625. chaoshiNumber = 0;
  5626. totalNumber = 0;
  5627. }
  5628. }
  5629. IRow row = sheet.GetRow(rowStartIndex);
  5630. var whereForResult = arr.Where(x => x.SId == item.SId && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5631. var isOpenOverspendSoure = overspendSoure.Keys.Contains(item.SId);
  5632. List<Grp_CarTouristGuideGroundReservationsContentExtend> overspendWhereForResult = null;
  5633. if (isOpenOverspendSoure)
  5634. {
  5635. overspendWhereForResult = arr.Where(x => x.SId == overspendSoure[item.SId] && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5636. chaoshiNumber += overspendWhereForResult.Sum(x => x.Count);
  5637. totalNumber += overspendWhereForResult.Sum(x => x.Count * x.Price);
  5638. }
  5639. for (int i = 0; i <= clounmCount; i++)
  5640. {
  5641. var cell = row.GetCell(i);
  5642. var setCellValue = InIndexOutFunction(i, whereForResult, overspendWhereForResult);
  5643. if (cell == null)
  5644. {
  5645. cell = row.CreateCell(i);
  5646. }
  5647. var fontRed = workbook.CreateCellStyle(); // 创建单元格样式
  5648. fontRed.CloneStyleFrom(cell.CellStyle);
  5649. IFont Font = workbook.CreateFont(); // 创建字体
  5650. Font.CloneStyleFrom(cell.CellStyle.GetFont(workbook));
  5651. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  5652. fontRed.SetFont(Font);
  5653. byte[] rgb = new byte[3] { 255, 242, 204 };
  5654. var BackgroundColor255_242_204 = workbook.CreateCellStyle();
  5655. BackgroundColor255_242_204.CloneStyleFrom(cell.CellStyle);
  5656. byte[] rgb1 = new byte[3] { 189, 215, 238 };
  5657. if (workbook is XSSFWorkbook)
  5658. {
  5659. BackgroundColor255_242_204.FillForegroundColor = 0;
  5660. ((XSSFColor)BackgroundColor255_242_204.FillForegroundColorColor).SetRgb(rgb);
  5661. BackgroundColor255_242_204.FillPattern = FillPattern.SolidForeground;
  5662. }
  5663. else
  5664. {
  5665. BackgroundColor255_242_204.FillForegroundColor = (((HSSFWorkbook)workbook).GetCustomPalette().FindSimilarColor(rgb[0], rgb[1], rgb[2])).Indexed;
  5666. }
  5667. if (i == 1 || i > 6)
  5668. {
  5669. if (i > 6)
  5670. {
  5671. fontRed.FillForegroundColor = 0;
  5672. ((XSSFColor)fontRed.FillForegroundColorColor).SetRgb(rgb1);
  5673. fontRed.FillPattern = FillPattern.SolidForeground;
  5674. }
  5675. cell.CellStyle = fontRed;
  5676. }
  5677. if (i > 2 && i < 7)
  5678. {
  5679. cell.CellStyle = BackgroundColor255_242_204;
  5680. }
  5681. cell.SetCellValue(setCellValue); //写入单元格
  5682. }
  5683. if (overspendSoure.ContainsKey(thisSid))
  5684. {
  5685. var overspendId = overspendSoure[thisSid];
  5686. whereForResult = arr.Where(x => x.SId == item.SId && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5687. }
  5688. cloneRowFn();
  5689. existsId.Add(new CarCompare
  5690. {
  5691. DataPrice = item.DatePrice.ObjToDate(),
  5692. Sid = item.SId
  5693. });
  5694. }
  5695. if (item.Equals(lastElem))
  5696. {
  5697. //合并小计行
  5698. //创建合并区域的实例
  5699. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5700. rowStartIndex, // 起始行索引(0-based)
  5701. rowStartIndex, // 结束行索引(0-based)
  5702. 0, // 起始列索引(0-based)
  5703. 3 // 结束列索引(0-based)
  5704. );
  5705. sheet.AddMergedRegion(cellRangeAddress);
  5706. var CellStyle = workbook.CreateCellStyle();
  5707. CellStyle.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5708. CellStyle.FillForegroundColor = IndexedColors.Yellow.Index; // 选择填充颜色
  5709. CellStyle.FillPattern = FillPattern.SolidForeground; // 填充方式
  5710. for (int i = 0; i <= clounmCount; i++)
  5711. {
  5712. if (i > 6)
  5713. {
  5714. var CellStyle1 = workbook.CreateCellStyle();
  5715. CellStyle1.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5716. IFont Font = workbook.CreateFont(); // 创建字体
  5717. Font.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(i).CellStyle.GetFont(workbook));
  5718. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  5719. CellStyle1.SetFont(Font);
  5720. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle1;
  5721. }
  5722. else
  5723. {
  5724. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle;
  5725. }
  5726. }
  5727. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue("合计:");
  5728. sheet.GetRow(rowStartIndex).GetCell(4).SetCellValue(arr.Where(x => x.SId == thisSid).Sum(x => x.Count * x.Price).ToString("F2"));
  5729. //超时合计
  5730. sheet.GetRow(rowStartIndex).GetCell(7).SetCellValue("超时合计:");
  5731. //超时数
  5732. sheet.GetRow(rowStartIndex).GetCell(8).SetCellValue(chaoshiNumber == 0 ? "" : chaoshiNumber.ToString());
  5733. //超时合计费用
  5734. sheet.GetRow(rowStartIndex).GetCell(9).SetCellValue(totalNumber == 0 ? "" : totalNumber.ToString());
  5735. cloneRowFn();
  5736. // 创建合并区域的实例
  5737. cellRangeAddress = new CellRangeAddress(
  5738. rowStartIndex, // 起始行索引(0-based)
  5739. rowStartIndex, // 结束行索引(0-based)
  5740. 0, // 起始列索引(0-based)
  5741. initStyleRow.LastCellNum - 1 // 结束列索引(0-based)
  5742. );
  5743. // 添加合并区域
  5744. sheet.AddMergedRegion(cellRangeAddress);
  5745. sheet.GetRow(rowStartIndex).Height = 30 * 30;
  5746. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue(lastStr);
  5747. }
  5748. }
  5749. mergeRow();
  5750. // 保存修改后的Excel文件到新文件
  5751. //string newFilePath = Path.Combine(Path.GetDirectoryName(filePath), keyValue +"_" + Path.GetFileName(filePath));
  5752. // new FileStream(newFilePath, FileMode.CreateNew)
  5753. using (var stream = new MemoryStream())
  5754. {
  5755. workbook.Write(stream, true);
  5756. stream.Flush();
  5757. stream.Seek(0, SeekOrigin.Begin);
  5758. MemoryStream memoryStream = new MemoryStream();
  5759. stream.CopyTo(memoryStream);
  5760. memoryStream.Seek(0, SeekOrigin.Begin);
  5761. Zips.Add(keyValue + "_" + "费用明细表.xlsx", memoryStream);
  5762. }
  5763. workbook.Close();
  5764. workbook.Dispose();
  5765. }
  5766. catch (Exception ex)
  5767. {
  5768. jw.Msg = "出现异常!" + ex.Message;
  5769. return Ok(jw);
  5770. }
  5771. }
  5772. if (Zips.Count > 0)
  5773. {
  5774. IOOperatorHelper io = new IOOperatorHelper();
  5775. var byts = io.ConvertZipStream(Zips);
  5776. io.ByteToFile(byts, AppSettingsHelper.Get("ExcelBasePath") + $"\\ExportLocalGuidePriceDetail\\{group.TeamName}_地接费用明细.zip");
  5777. //http://132.232.92.186:24/Office/Word/EnterExitCost/File/
  5778. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("OfficeBaseUrl") + $"\\Office\\Excel\\ExportLocalGuidePriceDetail\\{group.TeamName}_地接费用明细.zip" });
  5779. }
  5780. else
  5781. {
  5782. jw.Msg = "暂无生成文件!";
  5783. }
  5784. return Ok(jw);
  5785. }
  5786. private string InIndexOutFunction(int i, List<Grp_CarTouristGuideGroundReservationsContentExtend> arr, List<Grp_CarTouristGuideGroundReservationsContentExtend> arrOverspendSoure)
  5787. {
  5788. string outStr = string.Empty;
  5789. switch (i)
  5790. {
  5791. case 0:
  5792. outStr = arr[0].SidName;
  5793. break;
  5794. case 1:
  5795. outStr = arr[0].DataPriceStr;
  5796. break;
  5797. case 2:
  5798. outStr = string.Join("-", arr.Select(x => x.PriceContent));
  5799. break;
  5800. case 4:
  5801. outStr = arr.Sum(x => x.Subtotal).ToString("F2");
  5802. break;
  5803. case 7:
  5804. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  5805. {
  5806. var curr = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == arrOverspendSoure[0].Currency && x.IsDel == 0);
  5807. var unit = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == arrOverspendSoure[0].Units && x.IsDel == 0);
  5808. outStr = arrOverspendSoure.Sum(x => x.Price).ToString("F2") + curr?.Remark + "/" + unit?.Name;
  5809. }
  5810. break;
  5811. case 8:
  5812. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  5813. {
  5814. outStr = arrOverspendSoure.Sum(x => x.Count).ToString();
  5815. }
  5816. break;
  5817. case 9:
  5818. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  5819. {
  5820. outStr = arrOverspendSoure.Sum(x => x.Count * x.Price).ToString();
  5821. }
  5822. break;
  5823. case 10:
  5824. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  5825. {
  5826. outStr = string.Join("-", arrOverspendSoure.Select(x => x.PriceContent));
  5827. }
  5828. break;
  5829. }
  5830. return outStr;
  5831. }
  5832. #region OP行程单
  5833. /// <summary>
  5834. /// OP行程单初始化
  5835. /// </summary>
  5836. /// <param name="dto"></param>
  5837. /// <returns></returns>
  5838. [HttpPost]
  5839. public IActionResult InitOpTravel(InitOpTravelDto dto)
  5840. {
  5841. var jw = JsonView(false);
  5842. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  5843. var group = groupList.First();
  5844. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  5845. if (group == null)
  5846. {
  5847. jw.Msg = "暂无团组!";
  5848. return Ok(jw);
  5849. }
  5850. group = groupList.Find(x => x.Id == diid);
  5851. if (group == null)
  5852. {
  5853. jw.Msg = "请输入正确的团组ID!";
  5854. return Ok(jw);
  5855. }
  5856. string city = string.Empty;
  5857. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(x => x.IsDel == 0 && x.DiId == diid).ToList();
  5858. if (blackCode.Count > 0)
  5859. {
  5860. var black = blackCode.First();
  5861. black.BlackCode = black.BlackCode == null ? "" : black.BlackCode;
  5862. var blackSp = Regex.Split(black.BlackCode, "\\d+\\.", RegexOptions.IgnoreCase).Where(x => !string.IsNullOrWhiteSpace(x)).ToArray();
  5863. if (blackSp.Length > 0)
  5864. {
  5865. try
  5866. {
  5867. var cityArrCode = new List<string>(20);
  5868. foreach (var item in blackSp)
  5869. {
  5870. var itemSp = item.Split(' ').Where(x => !string.IsNullOrWhiteSpace(x)).ToList();
  5871. var IndexSelect = itemSp[2];
  5872. var cityArrCodeLength = cityArrCode.Count - 1;
  5873. var startCity = IndexSelect.Substring(0, 3);
  5874. if (cityArrCodeLength > 0)
  5875. {
  5876. var arrEndCity = cityArrCode[cityArrCodeLength];
  5877. if (arrEndCity != startCity)
  5878. {
  5879. cityArrCode.Add(startCity.ToUpper());
  5880. }
  5881. }
  5882. else
  5883. {
  5884. cityArrCode.Add(startCity.ToUpper());
  5885. }
  5886. var endCity = IndexSelect.Substring(3, 3);
  5887. cityArrCode.Add(endCity.ToUpper());
  5888. }
  5889. var cityThree = string.Empty;
  5890. cityArrCode.ForEach(x => cityThree += "'" + x + "',");
  5891. cityThree = cityThree.TrimEnd(',');
  5892. if (string.IsNullOrWhiteSpace(cityThree))
  5893. {
  5894. throw new
  5895. Exception("error");
  5896. }
  5897. string sql = $"SELECT * FROM Res_ThreeCode rtc WHERE UPPER(rtc.Three) in ({cityThree}) ";
  5898. var cityArr = _sqlSugar.SqlQueryable<Res_ThreeCode>(sql).ToList();
  5899. foreach (var item in cityArrCode)
  5900. {
  5901. var find = cityArr.Find(x => x.Three.ToUpper() == item.ToUpper());
  5902. if (find != null)
  5903. {
  5904. city += find.City + "/";
  5905. }
  5906. else
  5907. {
  5908. city += item + "三字码未收入/";
  5909. }
  5910. }
  5911. city = city.TrimEnd('/');
  5912. }
  5913. catch (Exception e)
  5914. {
  5915. city = "黑屏代码格式不正确!";
  5916. }
  5917. }
  5918. }
  5919. else
  5920. {
  5921. city = "未录入黑屏代码";
  5922. }
  5923. var OpTravelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0).OrderBy(x => x.Days).Select(x => new TravelArrView
  5924. {
  5925. Date = x.Date,
  5926. Days = x.Days,
  5927. Diffgroup = x.Diffgroup,
  5928. Diid = x.Diid,
  5929. Traffic_First = x.Traffic_First,
  5930. Traffic_Second = x.Traffic_Second,
  5931. Trip = x.Trip,
  5932. WeekDay = x.WeekDay,
  5933. Id = x.Id
  5934. }).ToList();
  5935. jw.Data = new
  5936. {
  5937. groupList = groupList.Select(x => new
  5938. {
  5939. x.Id,
  5940. x.TeamName,
  5941. x.TourCode
  5942. }).ToList(),
  5943. groupInfo = new
  5944. {
  5945. group.VisitDays,
  5946. group.TourCode,
  5947. group.VisitPNumber,
  5948. group.TeamName,
  5949. city
  5950. },
  5951. OpTravelList
  5952. };
  5953. jw.Code = 200;
  5954. jw.Msg = "操作成功!";
  5955. return Ok(jw);
  5956. }
  5957. /// <summary>
  5958. /// 删除团组行程单
  5959. /// </summary>
  5960. /// <returns></returns>
  5961. [HttpPost]
  5962. public IActionResult DelTravel(DelOpTravelDto dto)
  5963. {
  5964. var jw = JsonView(false);
  5965. if (dto.UserId <= 0 || dto.Diid <= 0)
  5966. {
  5967. jw.Msg = "请输入正确的参数!";
  5968. return Ok(jw);
  5969. }
  5970. var isTrue = _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Diid == dto.Diid && x.IsDel == 0)
  5971. .SetColumns(x => new Grp_TravelList
  5972. {
  5973. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  5974. DeleteUserId = dto.UserId,
  5975. IsDel = 1,
  5976. }).ExecuteCommand();
  5977. jw = JsonView(true);
  5978. return Ok(jw);
  5979. }
  5980. /// <summary>
  5981. /// 行程单保存
  5982. /// </summary>
  5983. /// <returns></returns>
  5984. [HttpPost]
  5985. public IActionResult TravelSave(TravelSaveDto dto)
  5986. {
  5987. var jw = JsonView(false);
  5988. if (dto.Arr.Count > 0)
  5989. {
  5990. try
  5991. {
  5992. _sqlSugar.BeginTran();
  5993. foreach (var item in dto.Arr)
  5994. {
  5995. if (item.Id == 0)
  5996. {
  5997. throw new Exception("请传入正确的Id");
  5998. }
  5999. _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Id == item.Id)
  6000. .SetColumns(x => new Grp_TravelList
  6001. {
  6002. Trip = item.Trip
  6003. }).ExecuteCommand();
  6004. }
  6005. _sqlSugar.CommitTran();
  6006. jw = JsonView(true);
  6007. }
  6008. catch (Exception ex)
  6009. {
  6010. _sqlSugar.RollbackTran();
  6011. jw.Msg = "程序异常!" + ex.Message;
  6012. }
  6013. }
  6014. else
  6015. {
  6016. jw.Msg = "请传入正确的参数!";
  6017. }
  6018. return Ok(jw);
  6019. }
  6020. /// <summary>
  6021. /// 导出行程单
  6022. /// </summary>
  6023. /// <param name="dto"></param>
  6024. /// <returns></returns>
  6025. [HttpPost]
  6026. public IActionResult ExportTravel(ExportTravelDto dto)
  6027. {
  6028. var jw = JsonView(false);
  6029. jw.Data = "";
  6030. int diid = 0;
  6031. var Find = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid);
  6032. if (Find == null)
  6033. {
  6034. jw.Msg = "请选择正确的团组!";
  6035. return Ok(jw);
  6036. }
  6037. else
  6038. {
  6039. diid = Find.Id;
  6040. }
  6041. //数据源
  6042. List<Grp_TravelList> _travelList = new List<Grp_TravelList>();
  6043. DataTable dtBlack = null;
  6044. try
  6045. {
  6046. dtBlack = GeneralMethod.GetTableByBlackCode(diid);
  6047. }
  6048. catch (Exception)
  6049. {
  6050. jw.Msg = "机票黑屏代码有误!";
  6051. return Ok(jw);
  6052. }
  6053. string CityStr = string.Empty;
  6054. if (dtBlack.Rows.Count == 0)
  6055. {
  6056. jw.Msg = "机票黑屏代码有误!";
  6057. return Ok(jw);
  6058. }
  6059. else
  6060. {
  6061. foreach (DataRow row in dtBlack.Rows)
  6062. {
  6063. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  6064. {
  6065. jw.Msg = "机票黑屏代码有误!" + row["Error"].ToString();
  6066. return Ok(jw);
  6067. }
  6068. }
  6069. CityStr = GeneralMethod.GetGroupCityLine(diid, "/");
  6070. _travelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0 && x.Issel == 1).ToList();
  6071. }
  6072. //创建数据源Table
  6073. DataTable dtSource = new DataTable();
  6074. dtSource.Columns.Add("Days", typeof(string));
  6075. dtSource.Columns.Add("Date", typeof(string));
  6076. dtSource.Columns.Add("Week", typeof(string));
  6077. dtSource.Columns.Add("Traffic", typeof(string));
  6078. dtSource.Columns.Add("Trip", typeof(string));
  6079. //获取数据,放到datatable
  6080. foreach (var item in _travelList)
  6081. {
  6082. DataRow dr = dtSource.NewRow();
  6083. dr["Days"] = item.Days;
  6084. dr["Date"] = item.Date;
  6085. dr["Week"] = item.WeekDay;
  6086. dr["Traffic"] = item.Traffic_First
  6087. + "\r\n"
  6088. + item.Traffic_Second;
  6089. dr["Trip"] = item.Trip;
  6090. dtSource.Rows.Add(dr);
  6091. }
  6092. Dictionary<string, string> dic = new Dictionary<string, string>();
  6093. dic.Add("Dele", Find.TeamName.ToString() + GetNum(Find.VisitDays.ToString()));
  6094. dic.Add("City", CityStr);
  6095. dic.Add("Days", Find.VisitDays.ToString());
  6096. dic.Add("DeleCode", Find.TourCode);
  6097. dic.Add("Pnum", Find.VisitPNumber.ToString());
  6098. //模板路径
  6099. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Travel/日行程3.docx";
  6100. //载入模板
  6101. Document doc = null;
  6102. DocumentBuilder builder = null;
  6103. try
  6104. {
  6105. //载入模板
  6106. doc = new Document(tempPath);
  6107. builder = new DocumentBuilder(doc);
  6108. }
  6109. catch (Exception)
  6110. {
  6111. jw.Msg = "模板位置不存在!";
  6112. return Ok(jw);
  6113. }
  6114. foreach (var key in dic.Keys)
  6115. {
  6116. Bookmark bookmark = doc.Range.Bookmarks[key];
  6117. if (bookmark != null)
  6118. {
  6119. builder.MoveToBookmark(key);
  6120. builder.Write(dic[key]);
  6121. }
  6122. }
  6123. //获取word里所有表格
  6124. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  6125. //获取所填表格的序数
  6126. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  6127. try
  6128. {
  6129. //循环赋值
  6130. for (int i = 0; i < dtSource.Rows.Count; i++)
  6131. {
  6132. builder.MoveToCell(0, i + 1, 0, 0);
  6133. builder.Write(dtSource.Rows[i]["Days"].ToString());
  6134. builder.MoveToCell(0, i + 1, 1, 0);
  6135. builder.Write(dtSource.Rows[i]["Date"].ToString() + "\r\n" + dtSource.Rows[i]["Week"].ToString());
  6136. builder.MoveToCell(0, i + 1, 2, 0);
  6137. builder.Write(dtSource.Rows[i]["Traffic"].ToString());
  6138. var trip = dtSource.Rows[i]["Trip"].ToString();
  6139. builder.MoveToCell(0, i + 1, 3, 0);
  6140. builder.Write(trip);
  6141. var cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 1, true);
  6142. var paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  6143. // 获取特定索引的段落
  6144. Paragraph paragraph = (Paragraph)paragraphs[0];
  6145. Run run = paragraph.Runs[0];
  6146. Aspose.Words.Font font = run.Font;
  6147. font.Name = "黑体";
  6148. //设置双休红色
  6149. cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 3, true);
  6150. paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  6151. paragraph = (Paragraph)paragraphs[1];
  6152. if (paragraph.GetText().Contains("星期六") || paragraph.GetText().Contains("星期日"))
  6153. {
  6154. run = paragraph.Runs[0];
  6155. font = run.Font;
  6156. font.Color = Color.Red;
  6157. }
  6158. }
  6159. }
  6160. catch (Exception ex)
  6161. {
  6162. }
  6163. //删除多余行
  6164. while (tableOne.Rows.Count > 1 + dtSource.Rows.Count)
  6165. {
  6166. tableOne.Rows.RemoveAt(1 + dtSource.Rows.Count);//(1+dtSource.Rows.Count + 1)-1
  6167. }
  6168. string savePath = AppSettingsHelper.Get("WordBasePath") + "Travel/export/";
  6169. if (!Directory.Exists(savePath))
  6170. {
  6171. try
  6172. {
  6173. Directory.CreateDirectory(savePath);
  6174. }
  6175. catch
  6176. {
  6177. }
  6178. }
  6179. string path = savePath + Find.TeamName + "出访日程";
  6180. string ftpPath = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + "Travel/export/" + Find.TeamName + "出访日程";
  6181. try
  6182. {
  6183. Aspose.Words.SaveFormat saveFormat = Aspose.Words.SaveFormat.Doc;
  6184. string postfix = ".docx";
  6185. if (dto.IsPDF == 1)
  6186. {
  6187. saveFormat = Aspose.Words.SaveFormat.Pdf;
  6188. postfix = ".pdf";
  6189. }
  6190. doc.Save(path + postfix, saveFormat);
  6191. jw = JsonView(true, "导出成功", ftpPath + postfix);
  6192. }
  6193. catch (Exception)
  6194. {
  6195. jw = JsonView(false);
  6196. }
  6197. return Ok(jw);
  6198. }
  6199. /// <summary>
  6200. /// 根据大写数字返回小写数字或根据小写数字返回大写数字
  6201. /// </summary>
  6202. /// <param name="num"></param>
  6203. /// <returns></returns>
  6204. string GetNum(string num)
  6205. {
  6206. string str = "";
  6207. switch (num)
  6208. {
  6209. case "1":
  6210. str = "一";
  6211. break;
  6212. case "2":
  6213. str = "二";
  6214. break;
  6215. case "3":
  6216. str = "三";
  6217. break;
  6218. case "4":
  6219. str = "四";
  6220. break;
  6221. case "5":
  6222. str = "五";
  6223. break;
  6224. case "6":
  6225. str = "六";
  6226. break;
  6227. case "7":
  6228. str = "七";
  6229. break;
  6230. case "8":
  6231. str = "八";
  6232. break;
  6233. case "9":
  6234. str = "九";
  6235. break;
  6236. case "10":
  6237. str = "十";
  6238. break;
  6239. case "11":
  6240. str = "十一";
  6241. break;
  6242. case "12":
  6243. str = "十二";
  6244. break;
  6245. case "一":
  6246. str = "1";
  6247. break;
  6248. case "二":
  6249. str = "2";
  6250. break;
  6251. case "三":
  6252. str = "3";
  6253. break;
  6254. case "四":
  6255. str = "4";
  6256. break;
  6257. case "五":
  6258. str = "5";
  6259. break;
  6260. case "六":
  6261. str = "6";
  6262. break;
  6263. case "七":
  6264. str = "7";
  6265. break;
  6266. case "八":
  6267. str = "8";
  6268. break;
  6269. case "九":
  6270. str = "9";
  6271. break;
  6272. case "十":
  6273. str = "10";
  6274. break;
  6275. case "十一":
  6276. str = "11";
  6277. break;
  6278. case "十二":
  6279. str = "12";
  6280. break;
  6281. }
  6282. return str;
  6283. }
  6284. #endregion
  6285. #endregion
  6286. #region 团组成本
  6287. /// <summary>
  6288. /// 团组成本数据初始化
  6289. /// </summary>
  6290. /// <param name="dto"></param>
  6291. /// <returns></returns>
  6292. [HttpPost]
  6293. public async Task<IActionResult> GroupCostInit(GroupCostInItDto dto)
  6294. {
  6295. var groupList = _sqlSugar.SqlQueryable<DelegationInfoAndIsTrueView>($@"
  6296. Select a.Id,TeamName GroupName,b.isTrue From Grp_DelegationInfo a left join (select top 100 percent Diid, CASE
  6297. WHEN COUNT(*) >= 0 THEN 'True'
  6298. ELSE 'False' END as isTrue from Grp_GroupCost where Isdel = 0 and date != '' group by Diid) b on a.Id = b.Diid
  6299. Where TeamName != '' And IsDel = 0 Order By a.Id Desc
  6300. ").ToList(); //团组列表
  6301. int diid = dto.Diid == -1 ? groupList.First().Id : dto.Diid;
  6302. var groupInfo = await _groupRepository.PostShareGroupInfo(new ShareGroupInfoDto { PortType = 1, Id = diid }); //团组信息
  6303. List<Res_CountryFeeCost> visaCountryInfoArr = new List<Res_CountryFeeCost>();
  6304. var groupinfoValue = (groupInfo.Data as Web_ShareGroupInfoView);
  6305. if (groupinfoValue != null)
  6306. {
  6307. var countryArr = groupinfoValue.VisitCountry ??= string.Empty;
  6308. var spArr = new string[1] { countryArr };
  6309. if (countryArr.Contains("|"))
  6310. {
  6311. spArr = countryArr.Split("|");
  6312. }
  6313. else if (countryArr.Contains("、"))
  6314. {
  6315. spArr = countryArr.Split("、");
  6316. }
  6317. foreach (var item in spArr.Where(x => !string.IsNullOrWhiteSpace(x)).ToList())
  6318. {
  6319. var dbQueryCountry = _sqlSugar.Queryable<Res_CountryFeeCost>().First(x => x.VisaCountry.Contains(item));
  6320. if (dbQueryCountry != null)
  6321. {
  6322. visaCountryInfoArr.Add(dbQueryCountry);
  6323. }
  6324. }
  6325. }
  6326. var groupChecks = _checkBoxs.GetCheckBoxsByDiid(diid); //团组选中信息 可枚举
  6327. var groupCost = _GroupCostRepository.GetAllByDiid(diid); //团组列表信息
  6328. var create = _GroupCostRepository.
  6329. CreateGroupCostByBlackCode(dto.Diid);
  6330. if (groupCost.Count == 0 && create.Code == 0)
  6331. {
  6332. groupCost = (create.Data as List<Grp_GroupCost>) ?? new List<Grp_GroupCost>();
  6333. }
  6334. var groupCostMap = _mapper.Map<List<Grp_GroupCostDto>>(groupCost);
  6335. var hotelNumber = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(diid); //酒店数量 可枚举
  6336. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(diid); //成本系数 可枚举
  6337. groupCostMap = groupCostMap.Select(x =>
  6338. {
  6339. if (DateTime.TryParse(x.Date, out DateTime dataForamt))
  6340. {
  6341. x.Date = dataForamt.ToString("yyyy-MM-dd");
  6342. }
  6343. return x;
  6344. }).ToList();
  6345. //GroupCostParameter.Add(new
  6346. // Grp_GroupCostParameter());
  6347. var GroupCostParameterMap = _mapper.Map<List<Grp_GroupCostParameterDto>>(GroupCostParameter);
  6348. bool hotelIsTrue = _sqlSugar.Queryable<Grp_HotelInquiry>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).Count() > 0;
  6349. return Ok(JsonView(new
  6350. {
  6351. groupList,
  6352. groupInfo,
  6353. groupChecks,
  6354. groupCost = groupCostMap,
  6355. hotelNumber,
  6356. GroupCostParameter = GroupCostParameterMap,
  6357. visaCountryInfoArr = visaCountryInfoArr.Select(x => new
  6358. {
  6359. x.VisaCountry,
  6360. x.VisaPrice,
  6361. x.Id,
  6362. }).ToList(),
  6363. baoPi = _GroupCostParameterRepository.GetBaoPi(diid),
  6364. blackCodeIsTrue = create.Code == 0 ? true : false,
  6365. hotelIsTrue = hotelIsTrue,
  6366. }));
  6367. }
  6368. /// <summary>
  6369. /// 团组成本信息保存
  6370. /// </summary>
  6371. /// <param name="dto"></param>
  6372. /// <returns></returns>
  6373. [HttpPost]
  6374. public async Task<IActionResult> SaveGroupCost(GroupCostSavaDto dto)
  6375. {
  6376. if (dto.Diid <= 0 || dto.Userid <= 0)
  6377. {
  6378. return Ok(JsonView(false));
  6379. }
  6380. JsonView jw = null;
  6381. bool isTrue = false;
  6382. #region 复制团组成本
  6383. //if (dto.Diid == 2581)
  6384. //{
  6385. // dto.Diid = 2599;
  6386. // dto.CheckBoxs.ForEach(x =>
  6387. // {
  6388. // x.Diid = 2599;
  6389. // });
  6390. // dto.GroupCosts.ForEach(x =>
  6391. // {
  6392. // x.Diid = 2599;
  6393. // });
  6394. // dto.CostTypeHotelNumbers.ForEach(x =>
  6395. // {
  6396. // x.Diid = 2599;
  6397. // });
  6398. // dto.GroupCostParameters.ForEach(x =>
  6399. // {
  6400. // x.DiId = 2599;
  6401. // });
  6402. //}
  6403. #endregion
  6404. var Grp_groups = _mapper.Map<List<Grp_GroupCost>>(dto.GroupCosts);
  6405. Grp_groups.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; }); //.ToString("yyyy-MM-dd HH:mm:ss")
  6406. var Grp_CheckBoxs = _mapper.Map<List<Grp_CheckBoxs>>(dto.CheckBoxs);
  6407. Grp_CheckBoxs.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; });
  6408. var Grp_HotelNumber = _mapper.Map<List<Grp_CostTypeHotelNumber>>(dto.CostTypeHotelNumbers);
  6409. var Grp_CostParameters = _mapper.Map<List<Grp_GroupCostParameter>>(dto.GroupCostParameters);
  6410. try
  6411. {
  6412. _sqlSugar.BeginTran();
  6413. isTrue = await _GroupCostRepository.
  6414. SaveGroupCostList(Grp_groups, dto.Diid, dto.Userid); //列表
  6415. isTrue = await _checkBoxs.SaveCheckBoxs(Grp_CheckBoxs, dto.Diid); //选中项
  6416. isTrue = await _CostTypeHotelNumberRepository.SaveHotelNumber(Grp_HotelNumber, dto.Userid, dto.Diid); //酒店房间数量
  6417. isTrue = await _GroupCostParameterRepository.SaveAsync(Grp_CostParameters, dto.Userid, dto.Diid); //系数
  6418. _sqlSugar.CommitTran();
  6419. jw = JsonView(true, "保存成功!", isTrue);
  6420. }
  6421. catch (Exception)
  6422. {
  6423. _sqlSugar.RollbackTran();
  6424. jw = JsonView(false);
  6425. }
  6426. return Ok(jw);
  6427. }
  6428. /// <summary>
  6429. /// 司兼导数据
  6430. /// </summary>
  6431. /// <param name="dto"></param>
  6432. /// <returns></returns>
  6433. [HttpPost]
  6434. public IActionResult GetCarGuides(CarGuidesDto dto)
  6435. {
  6436. JsonView jw = null;
  6437. var Data = _sqlSugar.SqlQueryable<Grp_CarGuides>($@" select * from Grp_CarGuides where isdel = 0 ").ToList();
  6438. jw = JsonView(true, "获取成功!", Data);
  6439. return Ok(jw);
  6440. }
  6441. /// <summary>
  6442. /// 导游数据
  6443. /// </summary>
  6444. /// <param name="dto"></param>
  6445. /// <returns></returns>
  6446. [HttpPost]
  6447. public IActionResult GetGuidesInfo(CarGuidesDto dto)
  6448. {
  6449. JsonView jw = null;
  6450. //var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" SELECT* FROM (
  6451. // 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
  6452. // where RowNumber BETWEEN {(dto.Page - 1) * dto.Size + 1} and {(dto.Page) * dto.Size}").ToList();
  6453. var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" select * from Grp_GuidesInfo where isdel = 0 ").ToList();
  6454. jw = JsonView(true, "获取成功!", Data);
  6455. return Ok(jw);
  6456. }
  6457. /// <summary>
  6458. /// 成本车数据
  6459. /// </summary>
  6460. /// <param name="dto"></param>
  6461. /// <returns></returns>
  6462. [HttpPost]
  6463. public IActionResult GetCarInfo(CarGuidesDto dto)
  6464. {
  6465. JsonView jw = null;
  6466. var Data = _sqlSugar.SqlQueryable<Grp_CarInfo>($@" select * from Grp_CarInfo where isdel = 0 ").ToList();
  6467. jw = JsonView(true, "获取成功!", Data);
  6468. return Ok(jw);
  6469. }
  6470. /// <summary>
  6471. /// 景点数据
  6472. /// </summary>
  6473. /// <param name="dto"></param>
  6474. /// <returns></returns>
  6475. [HttpPost]
  6476. public IActionResult GetScenicSpotInfo(CarGuidesDto dto)
  6477. {
  6478. var Data = _sqlSugar.SqlQueryable<Grp_ScenicSpotInfo>($@" select * from Grp_ScenicSpotInfo where isdel = 0 ").ToList();
  6479. return Ok(JsonView(true, "获取成功!", Data));
  6480. }
  6481. /// <summary>
  6482. /// 成本通知
  6483. /// </summary>
  6484. /// <param name="dto"></param>
  6485. /// <returns></returns>
  6486. [HttpPost]
  6487. public async Task<IActionResult> GroupIsShare(GroupIsShareDto dto)
  6488. {
  6489. if (dto.Diid < 0)
  6490. {
  6491. return Ok(JsonView(false));
  6492. }
  6493. JsonView jw = null;
  6494. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterMainByDiid(dto.Diid);
  6495. if (GroupCostParameter != null)
  6496. {
  6497. int IsShare = 0;
  6498. if (GroupCostParameter.IsShare == 0) IsShare = 1;
  6499. else if (GroupCostParameter.IsShare == 1) IsShare = 0;
  6500. bool isTrue = await _GroupCostParameterRepository.UpdateIsShareById(GroupCostParameter.Id, IsShare);
  6501. string msg = string.Empty;
  6502. if (isTrue)
  6503. {
  6504. if (IsShare == 0)
  6505. {
  6506. msg = "禁止通知,其他模块操作人员不可见此成本信息!";
  6507. }
  6508. else
  6509. {
  6510. #region 企微通知对应岗位用户
  6511. try
  6512. {
  6513. AppNoticeLibrary.SendUserMsg_GroupShare_ToJob(dto.Diid);
  6514. }
  6515. catch (Exception ex)
  6516. {
  6517. }
  6518. #endregion
  6519. msg = "通知成功,其他模块操作人员可见此成本信息!";
  6520. }
  6521. jw = JsonView(isTrue, msg, new { IsShare });
  6522. }
  6523. else
  6524. {
  6525. msg = "修改失败!";
  6526. jw = JsonView(isTrue, msg);
  6527. }
  6528. }
  6529. else
  6530. {
  6531. jw = JsonView(false, "该团没有数据,请添加数据,保存后再操作!");
  6532. }
  6533. return Ok(jw);
  6534. }
  6535. /// <summary>
  6536. /// 导出报价单
  6537. /// </summary>
  6538. /// <param name="dto"></param>
  6539. /// <returns></returns>
  6540. [HttpPost]
  6541. public async Task<IActionResult> ExportPriceCheckWordFile(GroupCostExportWordFile dto)
  6542. {
  6543. if (dto.Diid == 0)
  6544. {
  6545. return Ok(JsonView(false, "请传递团组id"));
  6546. }
  6547. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  6548. if (deleInfo.Code != 0)
  6549. {
  6550. return Ok(JsonView(false, "团组信息查询失败!"));
  6551. }
  6552. var di = deleInfo.Data as DelegationInfoWebView;
  6553. if (di != null)
  6554. {
  6555. //文件名
  6556. string strFileName = di.TeamName + "-收款账单.doc";
  6557. //获取模板
  6558. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/收款账单(四川)模板.doc");
  6559. //载入模板
  6560. Document doc = new Document(tmppath);
  6561. decimal TotalPrice = 0.00M;
  6562. string itemStr = string.Empty;
  6563. Dictionary<string, string> airSouer = new Dictionary<string, string>();
  6564. //airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  6565. airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  6566. airSouer.Add("JJCSGR", "经济舱及酒店单人间");
  6567. airSouer.Add("GWCSGR", "公务舱及酒店单人间");
  6568. airSouer.Add("GWCJSES", "公务舱及酒店小套房");
  6569. airSouer.Add("GWCSUITE", "公务舱及酒店套房");
  6570. airSouer.Add("JJCSUITE", "经济舱及酒店套房");
  6571. var groupCostType = dto.airs.GroupBy(x => x.costType).OrderBy(x => x.Key);
  6572. foreach (var cost in groupCostType)
  6573. {
  6574. var List = cost.ToList();
  6575. if (cost.Key == "A")
  6576. {
  6577. foreach (var ListItem in List)
  6578. {
  6579. if (ListItem.number > 0)
  6580. {
  6581. if (ListItem.code.Contains("TBR"))
  6582. {
  6583. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6584. }
  6585. else
  6586. {
  6587. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6588. }
  6589. TotalPrice += (ListItem.number * ListItem.price);
  6590. }
  6591. }
  6592. }
  6593. else
  6594. {
  6595. itemStr = itemStr.Insert(0, "A段\r\n");
  6596. itemStr += "B段\r\n";
  6597. foreach (var ListItem in List)
  6598. {
  6599. if (ListItem.number > 0)
  6600. {
  6601. if (ListItem.code.Contains("TBR"))
  6602. {
  6603. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6604. }
  6605. else
  6606. {
  6607. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6608. }
  6609. TotalPrice += (ListItem.number * ListItem.price);
  6610. }
  6611. }
  6612. }
  6613. }
  6614. #region 替换Word模板书签内容
  6615. Dictionary<string, string> marks = new Dictionary<string, string>();
  6616. marks.Add("To", di.ClientUnit);//付款方
  6617. marks.Add("ToTel", di.TellPhone);//付款方电话
  6618. marks.Add("Date", DateTime.Now.ToString("yyyy-MM-dd"));//导出时间
  6619. marks.Add("Team", di.VisitCountry.Replace(" ", "、"));//团队名称
  6620. marks.Add("TontractTime", (di.VisitDate).ToString("yyyy年MM月dd日"));//付款日期
  6621. marks.Add("PayDay", (di.PayDay).ToString());//付款预期
  6622. marks.Add("PaymentMoney", (di.PaymentMoney).ToString("#0.00"));//付款金额
  6623. marks.Add("WeChat", di.WeChatNo ?? "");//微信号
  6624. marks.Add("PayItemContent", itemStr);//详细信息
  6625. marks.Add("Total", TotalPrice.ToString("F2"));//合计
  6626. #endregion
  6627. ////注
  6628. //if (doc.Range.Bookmarks["Attention"] != null)
  6629. //{
  6630. // Bookmark mark = doc.Range.Bookmarks["Attention"];
  6631. // mark.Text = frList[0].Attention;
  6632. //}
  6633. foreach (var item in marks.Keys)
  6634. {
  6635. if (doc.Range.Bookmarks[item] != null)
  6636. {
  6637. Bookmark mark = doc.Range.Bookmarks[item];
  6638. mark.Text = marks[item];
  6639. }
  6640. }
  6641. byte[] bytes = null;
  6642. using (MemoryStream stream = new MemoryStream())
  6643. {
  6644. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  6645. bytes = stream.ToArray();
  6646. }
  6647. //doc.Save((AppSettingsHelper.Get("WordBasePath") + "Template/") + strFileName);
  6648. return Ok(JsonView(true, "", new
  6649. {
  6650. Data = bytes,
  6651. strFileName,
  6652. }));
  6653. }
  6654. else
  6655. {
  6656. return Ok(JsonView(false, "团组信息不存在!"));
  6657. }
  6658. }
  6659. /// <summary>
  6660. /// 导出团组成本
  6661. /// </summary>
  6662. /// <param name="dto"></param>
  6663. /// <returns></returns>
  6664. [HttpPost]
  6665. public async Task<IActionResult> ExportGroupCostExcelFile(GroupCostExportExcelFile dto)
  6666. {
  6667. var jw = JsonView(false);
  6668. if (dto.Diid == 0)
  6669. {
  6670. return Ok(JsonView(false, "请传递团组id"));
  6671. }
  6672. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  6673. if (deleInfo.Code != 0)
  6674. {
  6675. return Ok(JsonView(false, "团组信息查询失败!"));
  6676. }
  6677. var di = deleInfo.Data as DelegationInfoWebView;
  6678. if (di == null)
  6679. {
  6680. return Ok(JsonView(false, "团组信息查询失败!"));
  6681. }
  6682. List<GroupCost_Excel> List_GC1 = new List<GroupCost_Excel>();
  6683. WorkbookDesigner designer = new WorkbookDesigner();
  6684. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + ("Template/团组-成本.xls"));
  6685. var List_GC = _GroupCostRepository.GetAllByDiid(dto.Diid);
  6686. for (int i = 0; i < List_GC.Count; i++)
  6687. {
  6688. GroupCost_Excel gc = new GroupCost_Excel();
  6689. gc.Id = List_GC[i].Id;
  6690. gc.Diid = List_GC[i].Diid.ToString();
  6691. gc.DAY = List_GC[i].DAY;
  6692. string week = "";
  6693. if (!string.IsNullOrEmpty(List_GC[i].Date.Trim()))
  6694. week = CultureInfo.CurrentCulture.DateTimeFormat.GetDayName(Convert.ToDateTime(List_GC[i].Date).DayOfWeek);
  6695. gc.Date = (List_GC[i].Date + "\n" + week).ToString();
  6696. gc.ITIN = List_GC[i].ITIN;
  6697. gc.CarType = List_GC[i].CarType;
  6698. gc.CarTiming = List_GC[i].CarTiming.ToString() == "0" ? "/" : List_GC[i].CarTiming.ToString();
  6699. gc.CarCost = List_GC[i].CarCost.ToString() == "0" ? "/" : List_GC[i].CarCost.ToString();
  6700. gc.CarNumber = List_GC[i].CarNumber.ToString() == "0" ? "/" : List_GC[i].CarNumber.ToString();
  6701. gc.TGS = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGS.ToString();
  6702. gc.TGWH = List_GC[i].TGWH.ToString() == "0" ? "/" : List_GC[i].TGWH.ToString();
  6703. gc.TGN = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGN.ToString();
  6704. gc.TGOF = List_GC[i].TGOF.ToString() == "0" ? "/" : List_GC[i].TGOF.ToString();
  6705. gc.TGM = List_GC[i].TGM.ToString() == "0" ? "/" : List_GC[i].TGM.ToString();
  6706. gc.TGA = List_GC[i].TGA.ToString() == "0" ? "/" : List_GC[i].TGA.ToString();
  6707. gc.TGTF = List_GC[i].TGTF.ToString() == "0" ? "/" : List_GC[i].TGTF.ToString();
  6708. gc.TGEF = List_GC[i].TGEF.ToString() == "0" ? "/" : List_GC[i].TGEF.ToString();
  6709. gc.CFS = List_GC[i].CFS.ToString() == "0" ? "/" : List_GC[i].CFS.ToString();
  6710. gc.CFM = List_GC[i].CFM.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  6711. gc.CFOF = List_GC[i].CFOF.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  6712. gc.B = List_GC[i].B.ToString() == "0" ? "/" : List_GC[i].B.ToString();
  6713. gc.L = List_GC[i].L.ToString() == "0" ? "/" : List_GC[i].L.ToString();
  6714. gc.D = List_GC[i].D.ToString() == "0" ? "/" : List_GC[i].D.ToString();
  6715. gc.TBR = List_GC[i].TBR.ToString() == "0" ? "/" : List_GC[i].TBR.ToString();
  6716. gc.SGR = List_GC[i].SGR.ToString() == "0" ? "/" : List_GC[i].SGR.ToString();
  6717. gc.JS_ES = List_GC[i].JS_ES.ToString() == "0" ? "/" : List_GC[i].JS_ES.ToString();
  6718. gc.Suite = List_GC[i].Suite.ToString() == "0" ? "/" : List_GC[i].Suite.ToString();
  6719. gc.ACCON = List_GC[i].ACCON.ToString() == "0" ? "/" : List_GC[i].ACCON.ToString();
  6720. gc.TV = List_GC[i].TV.ToString() == "0" ? "/" : List_GC[i].TV.ToString();
  6721. gc.iL = List_GC[i].iL.ToString() == "0" ? "/" : List_GC[i].iL.ToString();
  6722. gc.IF = List_GC[i].IF.ToString() == "0" ? "/" : List_GC[i].IF.ToString();
  6723. gc.EF = List_GC[i].EF.ToString() == "0" ? "/" : List_GC[i].EF.ToString();
  6724. gc.B_R_F = List_GC[i].B_R_F.ToString() == "0" ? "/" : List_GC[i].B_R_F.ToString();
  6725. gc.TE = List_GC[i].TE.ToString() == "0" ? "/" : List_GC[i].TE.ToString();
  6726. gc.TGTips = List_GC[i].TGTips.ToString() == "0" ? "/" : List_GC[i].TGTips.ToString();
  6727. gc.DRVTips = List_GC[i].DRVTips.ToString() == "0" ? "/" : List_GC[i].DRVTips.ToString();
  6728. gc.PC = List_GC[i].PC.ToString() == "0" ? "/" : List_GC[i].PC.ToString();
  6729. gc.TLF = List_GC[i].TLF.ToString() == "0" ? "/" : List_GC[i].TLF.ToString();
  6730. gc.ECT = List_GC[i].ECT.ToString() == "0" ? "/" : List_GC[i].ECT.ToString();
  6731. List_GC1.Add(gc);
  6732. }
  6733. var dt = CommonFun.GetDataTableFromIList(List_GC1);
  6734. dt.TableName = "TB";
  6735. //报表标题等不用dt的值
  6736. designer.SetDataSource("TeamName", dto.title.TeamName);
  6737. designer.SetDataSource("Pnumber", dto.title.GroupNumber);
  6738. designer.SetDataSource("Tax", dto.title.Tax);
  6739. //designer.SetDataSource("FFYS", lblHotelCB.Text);
  6740. designer.SetDataSource("Currency", dto.title.Currency);
  6741. //designer.SetDataSource("HotelXS", txtHotelXS.Text);
  6742. designer.SetDataSource("Rate", dto.title.Rate);
  6743. var hotels = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(dto.Diid);
  6744. var Aparams = hotels.Find(x => x.Type == "Default");
  6745. if (Aparams == null)
  6746. {
  6747. return Ok(jw);
  6748. }
  6749. //酒店数量
  6750. var txtSGRNumber = Aparams.SGR.ToString();
  6751. var txtTBRNumber = Aparams.TBR.ToString();
  6752. var txtJSESNumber = Aparams.JSES.ToString();
  6753. var txtSUITENumbe = Aparams.SUITE.ToString();
  6754. if (dto.costType == "B")
  6755. {
  6756. Aparams = hotels.Find(x => x.Type == "A");
  6757. var Bparams = hotels.Find(x => x.Type == "B");
  6758. if (Aparams == null || Bparams == null)
  6759. {
  6760. return Ok(jw);
  6761. }
  6762. txtSGRNumber = "A段人数:" + Aparams.SGR.ToString() + " B段人数:" + Bparams.SGR.ToString();
  6763. txtTBRNumber = "A段人数:" + Aparams.TBR.ToString() + " B段人数:" + Bparams.TBR.ToString();
  6764. txtJSESNumber = "A段人数:" + Aparams.JSES.ToString() + " B段人数:" + Bparams.JSES.ToString();
  6765. txtSUITENumbe = "A段人数:" + Aparams.SUITE.ToString() + " B段人数:" + Bparams.SUITE.ToString();
  6766. }
  6767. designer.SetDataSource("SGRNumber", txtSGRNumber);
  6768. designer.SetDataSource("TBRNumber", txtTBRNumber);
  6769. designer.SetDataSource("JSESNumber", txtJSESNumber);
  6770. designer.SetDataSource("SUITENumber", txtSUITENumbe);
  6771. var ws = designer.Workbook.Worksheets[0];
  6772. int Row = List_GC.Count;
  6773. int startIndex = 11;
  6774. int HideRows = 0;
  6775. List<int> hideRowsList = new List<int>();
  6776. decimal TzZCB2 = 0.00M, TzZLR2 = 0.00M, TzZBJ2 = 0.00M;
  6777. #region A段left数据
  6778. var left = dto.leftInfo.Find(x => x.Type == "A");
  6779. if (left == null)
  6780. {
  6781. return Ok(jw);
  6782. }
  6783. var leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("签证"));
  6784. if (leftBindData != null)
  6785. {
  6786. designer.SetDataSource("VisaDRCB", leftBindData.cb);
  6787. designer.SetDataSource("VisaRS", leftBindData.rs);
  6788. designer.SetDataSource("VisaXS", leftBindData.xs);
  6789. designer.SetDataSource("VisaZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6790. designer.SetDataSource("VisaDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6791. designer.SetDataSource("VisaZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6792. designer.SetDataSource("VisaDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6793. designer.SetDataSource("VisaZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6794. }
  6795. else
  6796. {
  6797. hideRowsList.Add(Row + startIndex + HideRows);
  6798. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6799. }
  6800. HideRows += 2;
  6801. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("保险"));
  6802. if (leftBindData != null)
  6803. {
  6804. designer.SetDataSource("BXDRCB", leftBindData.cb);
  6805. designer.SetDataSource("BXRS", leftBindData.rs);
  6806. designer.SetDataSource("BXXS", leftBindData.xs);
  6807. designer.SetDataSource("BXZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6808. designer.SetDataSource("BXDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6809. designer.SetDataSource("BXZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6810. designer.SetDataSource("BXDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6811. designer.SetDataSource("BXZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6812. }
  6813. else
  6814. {
  6815. hideRowsList.Add(Row + startIndex + HideRows);
  6816. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6817. }
  6818. HideRows += 2;
  6819. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  6820. if (leftBindData != null)
  6821. {
  6822. designer.SetDataSource("HSDRCB", leftBindData.cb);
  6823. designer.SetDataSource("HSRS", leftBindData.rs);
  6824. designer.SetDataSource("HSXS", leftBindData.xs);
  6825. designer.SetDataSource("HSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6826. designer.SetDataSource("HSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6827. designer.SetDataSource("HSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6828. designer.SetDataSource("HSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6829. designer.SetDataSource("HSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6830. }
  6831. else
  6832. {
  6833. hideRowsList.Add(Row + startIndex + HideRows);
  6834. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6835. }
  6836. HideRows += 2;
  6837. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  6838. if (leftBindData != null)
  6839. {
  6840. designer.SetDataSource("JPJJCCB", leftBindData.cb);
  6841. designer.SetDataSource("JPJJCPnum", leftBindData.rs);
  6842. designer.SetDataSource("JPJJCXS", leftBindData.xs);
  6843. designer.SetDataSource("JPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6844. designer.SetDataSource("JPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6845. designer.SetDataSource("JPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6846. designer.SetDataSource("JPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6847. designer.SetDataSource("JPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6848. }
  6849. else
  6850. {
  6851. hideRowsList.Add(Row + startIndex + HideRows);
  6852. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6853. }
  6854. HideRows += 2;
  6855. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  6856. if (leftBindData != null)
  6857. {
  6858. designer.SetDataSource("JPGWCCB", leftBindData.cb);
  6859. designer.SetDataSource("JPGWCPNum", leftBindData.rs);
  6860. designer.SetDataSource("JPGWCXS", leftBindData.xs);
  6861. designer.SetDataSource("JPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6862. designer.SetDataSource("JPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6863. designer.SetDataSource("JPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6864. designer.SetDataSource("JPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6865. designer.SetDataSource("JPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6866. }
  6867. else
  6868. {
  6869. hideRowsList.Add(Row + startIndex + HideRows);
  6870. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6871. }
  6872. HideRows += 2;
  6873. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  6874. if (leftBindData != null)
  6875. {
  6876. ////TBR
  6877. designer.SetDataSource("HotelTBRDRCB", leftBindData.cb);
  6878. designer.SetDataSource("HotelTBRRS", leftBindData.rs);
  6879. designer.SetDataSource("HotelTBRXS", leftBindData.xs);
  6880. designer.SetDataSource("HotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6881. designer.SetDataSource("HotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6882. designer.SetDataSource("HotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6883. designer.SetDataSource("HotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6884. designer.SetDataSource("HotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6885. }
  6886. else
  6887. {
  6888. hideRowsList.Add(Row + startIndex + HideRows);
  6889. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6890. }
  6891. HideRows += 2;
  6892. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  6893. if (leftBindData != null)
  6894. {
  6895. ////SGR
  6896. designer.SetDataSource("HotelSGRDRCB", leftBindData.cb);
  6897. designer.SetDataSource("HotelSGRRS", leftBindData.rs);
  6898. designer.SetDataSource("HotelSGRXS", leftBindData.xs);
  6899. designer.SetDataSource("HotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6900. designer.SetDataSource("HotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6901. designer.SetDataSource("HotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6902. designer.SetDataSource("HotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6903. designer.SetDataSource("HotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6904. }
  6905. else
  6906. {
  6907. hideRowsList.Add(Row + startIndex + HideRows);
  6908. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6909. }
  6910. HideRows += 2;
  6911. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  6912. if (leftBindData != null)
  6913. {
  6914. ////JS/ES
  6915. designer.SetDataSource("HotelJSESDRCB", leftBindData.cb);
  6916. designer.SetDataSource("HotelJSESRS", leftBindData.rs);
  6917. designer.SetDataSource("HotelJSESXS", leftBindData.xs);
  6918. designer.SetDataSource("HotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6919. designer.SetDataSource("HotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6920. designer.SetDataSource("HotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6921. designer.SetDataSource("HotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6922. designer.SetDataSource("HotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6923. }
  6924. else
  6925. {
  6926. hideRowsList.Add(Row + startIndex + HideRows);
  6927. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6928. }
  6929. HideRows += 2;
  6930. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  6931. if (leftBindData != null)
  6932. {
  6933. ////SUITE
  6934. designer.SetDataSource("HotelSUITEDRCB", leftBindData.cb);
  6935. designer.SetDataSource("HotelSUITERS", leftBindData.rs);
  6936. designer.SetDataSource("HotelSUITEXS", leftBindData.xs);
  6937. designer.SetDataSource("HotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6938. designer.SetDataSource("HotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6939. designer.SetDataSource("HotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6940. designer.SetDataSource("HotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6941. designer.SetDataSource("HotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6942. }
  6943. else
  6944. {
  6945. hideRowsList.Add(Row + startIndex + HideRows);
  6946. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6947. }
  6948. HideRows += 2;
  6949. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  6950. if (leftBindData != null)
  6951. {
  6952. designer.SetDataSource("DJDRCB", leftBindData.cb);
  6953. designer.SetDataSource("DJRS", leftBindData.rs);
  6954. designer.SetDataSource("DJXS", leftBindData.xs);
  6955. designer.SetDataSource("DJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6956. designer.SetDataSource("DJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6957. designer.SetDataSource("DJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6958. designer.SetDataSource("DJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6959. designer.SetDataSource("DJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6960. }
  6961. else
  6962. {
  6963. hideRowsList.Add(Row + startIndex + HideRows);
  6964. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6965. }
  6966. HideRows += 2;
  6967. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  6968. if (leftBindData != null)
  6969. {
  6970. designer.SetDataSource("HCPCB", leftBindData.cb);
  6971. designer.SetDataSource("HCPRS", leftBindData.rs);
  6972. designer.SetDataSource("HCPXS", leftBindData.xs);
  6973. designer.SetDataSource("HCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6974. designer.SetDataSource("HCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6975. designer.SetDataSource("HCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6976. designer.SetDataSource("HCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6977. designer.SetDataSource("HCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6978. }
  6979. else
  6980. {
  6981. hideRowsList.Add(Row + startIndex + HideRows);
  6982. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6983. }
  6984. HideRows += 2;
  6985. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  6986. if (leftBindData != null)
  6987. {
  6988. designer.SetDataSource("CPCB", leftBindData.cb);
  6989. designer.SetDataSource("CPRS", leftBindData.rs);
  6990. designer.SetDataSource("CPXS", leftBindData.xs);
  6991. designer.SetDataSource("CPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6992. designer.SetDataSource("CPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6993. designer.SetDataSource("CPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6994. designer.SetDataSource("CPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6995. designer.SetDataSource("CPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6996. }
  6997. else
  6998. {
  6999. hideRowsList.Add(Row + startIndex + HideRows);
  7000. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7001. }
  7002. HideRows += 2;
  7003. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  7004. if (leftBindData != null)
  7005. {
  7006. designer.SetDataSource("GWDRCD", leftBindData.cb);
  7007. designer.SetDataSource("GWRS", leftBindData.rs);
  7008. designer.SetDataSource("GWXS", leftBindData.xs);
  7009. designer.SetDataSource("GWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7010. designer.SetDataSource("GWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7011. designer.SetDataSource("GWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7012. designer.SetDataSource("GWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7013. designer.SetDataSource("GWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7014. }
  7015. else
  7016. {
  7017. hideRowsList.Add(Row + startIndex + HideRows);
  7018. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7019. }
  7020. HideRows += 2;
  7021. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  7022. if (leftBindData != null)
  7023. {
  7024. designer.SetDataSource("LYJDRCB", leftBindData.cb);
  7025. designer.SetDataSource("LYJRS", leftBindData.rs);
  7026. designer.SetDataSource("LYJXS", leftBindData.xs);
  7027. designer.SetDataSource("LYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7028. designer.SetDataSource("LYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7029. designer.SetDataSource("LYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7030. designer.SetDataSource("LYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7031. designer.SetDataSource("LYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7032. }
  7033. else
  7034. {
  7035. hideRowsList.Add(Row + startIndex + HideRows);
  7036. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7037. }
  7038. #endregion
  7039. #region A段Right信息
  7040. var right = dto.rightInfo.Find(x => x.Type == "A");
  7041. if (right == null)
  7042. {
  7043. return Ok(jw);
  7044. }
  7045. HideRows += 4;
  7046. var rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  7047. if (rightBindData != null)
  7048. {
  7049. //经济舱 + 双人间 TBR
  7050. designer.SetDataSource("lblJJCTBRDRCB", rightBindData.cb);
  7051. designer.SetDataSource("txtJJCTBRRS", rightBindData.rs);
  7052. designer.SetDataSource("lblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7053. designer.SetDataSource("lblJJCTBRDRBJ", rightBindData.bj);
  7054. designer.SetDataSource("lblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7055. designer.SetDataSource("lblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7056. designer.SetDataSource("lblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7057. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7058. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7059. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7060. }
  7061. else
  7062. {
  7063. hideRowsList.Add(Row + startIndex + HideRows);
  7064. }
  7065. HideRows += 2;
  7066. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  7067. if (rightBindData != null)
  7068. {
  7069. //经济舱 + 单人间 SGR
  7070. designer.SetDataSource("lblJJCSGRDRCB", rightBindData.cb);
  7071. designer.SetDataSource("txtJJCSGRRS", rightBindData.rs);
  7072. designer.SetDataSource("lblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7073. designer.SetDataSource("lblJJCSGRDRBJ", rightBindData.bj);
  7074. designer.SetDataSource("lblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7075. designer.SetDataSource("lblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7076. designer.SetDataSource("lblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7077. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7078. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7079. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7080. }
  7081. else
  7082. {
  7083. hideRowsList.Add(Row + startIndex + HideRows);
  7084. }
  7085. HideRows += 2;
  7086. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  7087. if (rightBindData != null)
  7088. {
  7089. //公务舱 + 单人间 SGR
  7090. designer.SetDataSource("lblGWCSGRCB", rightBindData.cb);
  7091. designer.SetDataSource("lblGWCSGRRS", rightBindData.rs);
  7092. designer.SetDataSource("lblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7093. designer.SetDataSource("lblGWCSGRDRBJ", rightBindData.bj);
  7094. designer.SetDataSource("lblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7095. designer.SetDataSource("lblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7096. designer.SetDataSource("lblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7097. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7098. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7099. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7100. }
  7101. else
  7102. {
  7103. hideRowsList.Add(Row + startIndex + HideRows);
  7104. }
  7105. HideRows += 2;
  7106. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7107. if (rightBindData != null)
  7108. {
  7109. //公务舱 + 小套房 JSES
  7110. designer.SetDataSource("lblGWCJSESDRCB", rightBindData.cb);
  7111. designer.SetDataSource("txtGWCJSESRS", rightBindData.rs);
  7112. designer.SetDataSource("lblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7113. designer.SetDataSource("lblGWCJSESDRBJ", rightBindData.bj);
  7114. designer.SetDataSource("lblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7115. designer.SetDataSource("lblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7116. designer.SetDataSource("lblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7117. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7118. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7119. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7120. }
  7121. else
  7122. {
  7123. hideRowsList.Add(Row + startIndex + HideRows);
  7124. }
  7125. HideRows += 2;
  7126. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  7127. if (rightBindData != null)
  7128. {
  7129. //公务舱 + 小套房 JSES
  7130. designer.SetDataSource("lblGWCSUITEDRCB", rightBindData.cb);
  7131. designer.SetDataSource("txtGWCSUITERS", rightBindData.rs);
  7132. designer.SetDataSource("lblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7133. designer.SetDataSource("lblGWCSUITEDRBJ", rightBindData.bj);
  7134. designer.SetDataSource("lblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7135. designer.SetDataSource("lblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7136. designer.SetDataSource("lblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7137. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7138. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7139. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7140. }
  7141. else
  7142. {
  7143. hideRowsList.Add(Row + startIndex + HideRows);
  7144. }
  7145. HideRows += 2;
  7146. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7147. if (rightBindData != null)
  7148. {
  7149. //经济舱 + 大套房
  7150. designer.SetDataSource("lblJJCSUITEDRCB", rightBindData.cb);
  7151. designer.SetDataSource("txtJJCSUITERS", rightBindData.rs);
  7152. designer.SetDataSource("lblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7153. designer.SetDataSource("lblJJCSUITEDRBJ", rightBindData.bj);
  7154. designer.SetDataSource("lblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7155. designer.SetDataSource("lblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7156. designer.SetDataSource("lblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7157. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7158. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7159. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7160. }
  7161. else
  7162. {
  7163. hideRowsList.Add(Row + startIndex + HideRows);
  7164. }
  7165. #endregion
  7166. #region B段标题清空
  7167. designer.SetDataSource("CostBDRCB", "");
  7168. designer.SetDataSource("CostBRS", "");
  7169. designer.SetDataSource("CostBXS", "");
  7170. designer.SetDataSource("CostBZCB", "");
  7171. designer.SetDataSource("CostBDRBJ", "");
  7172. designer.SetDataSource("CostBZBJ", "");
  7173. designer.SetDataSource("CostBDRLR", "");
  7174. designer.SetDataSource("CostBZLR", "");
  7175. designer.SetDataSource("CostBDRCBOM", "");
  7176. designer.SetDataSource("CostBRSOM", "");
  7177. designer.SetDataSource("CostBZCBOM", "");
  7178. designer.SetDataSource("CostBDRBJOM", "");
  7179. designer.SetDataSource("CostBZBJOM", "");
  7180. designer.SetDataSource("CostBDRLROM", "");
  7181. designer.SetDataSource("CostBZLROM", "");
  7182. #endregion
  7183. designer.SetDataSource("HotelTBRName", "酒店TBR单间成本(CNY)");
  7184. designer.SetDataSource("HotelSGRName", "酒店SGR单间成本(CNY)");
  7185. designer.SetDataSource("HotelJSESName", "酒店JSES单间成本(CNY)");
  7186. designer.SetDataSource("HotelSUITEName", "酒店SUITE单间成本(CNY)");
  7187. designer.SetDataSource("DJName", "地接(CNY)");
  7188. designer.SetDataSource("HCPName", "地接-火车票(CNY)");
  7189. designer.SetDataSource("CPName", "地接-船票(CNY)");
  7190. designer.SetDataSource("GWName", "公务(CNY)");
  7191. designer.SetDataSource("YQHName", "邀请函(CNY)");
  7192. designer.SetDataSource("LYJName", "零用金(CNY)");
  7193. designer.SetDataSource("HSName", "核酸检测(CNY)");
  7194. designer.SetDataSource("AirGWCName", "机票-公务舱(CNY)");
  7195. designer.SetDataSource("AirJJCName", "机票-经济舱(CNY)");
  7196. designer.SetDataSource("BXName", "保险(CNY)");
  7197. designer.SetDataSource("VisaName", "签证(CNY)");
  7198. #region B段基本数据
  7199. if (dto.costType == "B")
  7200. {
  7201. left = dto.leftInfo.Find(x => x.Type == "B");
  7202. if (left == null)
  7203. {
  7204. return Ok(jw);
  7205. }
  7206. #region B段left数据
  7207. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  7208. if (leftBindData != null)
  7209. {
  7210. designer.SetDataSource("BHSDRCB", leftBindData.cb);
  7211. designer.SetDataSource("BHSRS", leftBindData.rs);
  7212. designer.SetDataSource("BHSXS", leftBindData.xs);
  7213. designer.SetDataSource("BHSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7214. designer.SetDataSource("BHSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7215. designer.SetDataSource("BHSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7216. designer.SetDataSource("BHSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7217. designer.SetDataSource("BHSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7218. }
  7219. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  7220. if (leftBindData != null)
  7221. {
  7222. designer.SetDataSource("BJPJJCCB", leftBindData.cb);
  7223. designer.SetDataSource("BJPJJCPnum", leftBindData.rs);
  7224. designer.SetDataSource("BJPJJCXS", leftBindData.xs);
  7225. designer.SetDataSource("BJPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7226. designer.SetDataSource("BJPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7227. designer.SetDataSource("BJPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7228. designer.SetDataSource("BJPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7229. designer.SetDataSource("BJPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7230. }
  7231. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  7232. if (leftBindData != null)
  7233. {
  7234. designer.SetDataSource("BJPGWCCB", leftBindData.cb);
  7235. designer.SetDataSource("BJPGWCPNum", leftBindData.rs);
  7236. designer.SetDataSource("BJPGWCXS", leftBindData.xs);
  7237. designer.SetDataSource("BJPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7238. designer.SetDataSource("BJPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7239. designer.SetDataSource("BJPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7240. designer.SetDataSource("BJPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7241. designer.SetDataSource("BJPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7242. }
  7243. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  7244. if (leftBindData != null)
  7245. {
  7246. designer.SetDataSource("BHCPCB", leftBindData.cb);
  7247. designer.SetDataSource("BHCPRS", leftBindData.rs);
  7248. designer.SetDataSource("BHCPXS", leftBindData.xs);
  7249. designer.SetDataSource("BHCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7250. designer.SetDataSource("BHCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7251. designer.SetDataSource("BHCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7252. designer.SetDataSource("BHCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7253. designer.SetDataSource("BHCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7254. }
  7255. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  7256. if (leftBindData != null)
  7257. {
  7258. designer.SetDataSource("BCPCB", leftBindData.cb);
  7259. designer.SetDataSource("BCPRS", leftBindData.rs);
  7260. designer.SetDataSource("BCPXS", leftBindData.xs);
  7261. designer.SetDataSource("BCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7262. designer.SetDataSource("BCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7263. designer.SetDataSource("BCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7264. designer.SetDataSource("BCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7265. designer.SetDataSource("BCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7266. }
  7267. //TBR
  7268. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  7269. if (leftBindData != null)
  7270. {
  7271. designer.SetDataSource("BHotelTBRDRCB", leftBindData.cb);
  7272. designer.SetDataSource("BHotelTBRRS", leftBindData.rs);
  7273. designer.SetDataSource("BHotelTBRXS", leftBindData.xs);
  7274. designer.SetDataSource("BHotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7275. designer.SetDataSource("BHotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7276. designer.SetDataSource("BHotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7277. designer.SetDataSource("BHotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7278. designer.SetDataSource("BHotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7279. }
  7280. //SGR
  7281. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  7282. if (leftBindData != null)
  7283. {
  7284. designer.SetDataSource("BHotelSGRDRCB", leftBindData.cb);
  7285. designer.SetDataSource("BHotelSGRRS", leftBindData.rs);
  7286. designer.SetDataSource("BHotelSGRXS", leftBindData.xs);
  7287. designer.SetDataSource("BHotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7288. designer.SetDataSource("BHotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7289. designer.SetDataSource("BHotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7290. designer.SetDataSource("BHotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7291. designer.SetDataSource("BHotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7292. }
  7293. //JS/ES
  7294. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  7295. if (leftBindData != null)
  7296. {
  7297. designer.SetDataSource("BHotelJSESDRCB", leftBindData.cb);
  7298. designer.SetDataSource("BHotelJSESRS", leftBindData.rs);
  7299. designer.SetDataSource("BHotelJSESXS", leftBindData.xs);
  7300. designer.SetDataSource("BHotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7301. designer.SetDataSource("BHotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7302. designer.SetDataSource("BHotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7303. designer.SetDataSource("BHotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7304. designer.SetDataSource("BHotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7305. }
  7306. //SUITE
  7307. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  7308. if (leftBindData != null)
  7309. {
  7310. designer.SetDataSource("BHotelSUITEDRCB", leftBindData.cb);
  7311. designer.SetDataSource("BHotelSUITERS", leftBindData.rs);
  7312. designer.SetDataSource("BHotelSUITEXS", leftBindData.xs);
  7313. designer.SetDataSource("BHotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7314. designer.SetDataSource("BHotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7315. designer.SetDataSource("BHotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7316. designer.SetDataSource("BHotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7317. designer.SetDataSource("BHotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7318. }
  7319. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  7320. if (leftBindData != null)
  7321. {
  7322. designer.SetDataSource("BDJDRCB", leftBindData.cb);
  7323. designer.SetDataSource("BDJRS", leftBindData.rs);
  7324. designer.SetDataSource("BDJXS", leftBindData.xs);
  7325. designer.SetDataSource("BDJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7326. designer.SetDataSource("BDJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7327. designer.SetDataSource("BDJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7328. designer.SetDataSource("BDJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7329. designer.SetDataSource("BDJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7330. }
  7331. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  7332. if (leftBindData != null)
  7333. {
  7334. designer.SetDataSource("BGWDRCD", leftBindData.cb);
  7335. designer.SetDataSource("BGWRS", leftBindData.rs);
  7336. designer.SetDataSource("BGWXS", leftBindData.xs);
  7337. designer.SetDataSource("BGWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7338. designer.SetDataSource("BGWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7339. designer.SetDataSource("BGWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7340. designer.SetDataSource("BGWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7341. designer.SetDataSource("BGWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7342. }
  7343. #region 优化方案
  7344. //Dictionary<string, object> excelBind = new Dictionary<string, object>();
  7345. //excelBind.Add("零用金", new {
  7346. //cb="",
  7347. //rs="",
  7348. //xs ="",
  7349. //zcb = "",
  7350. //});
  7351. #endregion
  7352. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  7353. if (leftBindData != null)
  7354. {
  7355. designer.SetDataSource("BLYJDRCB", leftBindData.cb);
  7356. designer.SetDataSource("BLYJRS", leftBindData.rs);
  7357. designer.SetDataSource("BLYJXS", leftBindData.xs);
  7358. designer.SetDataSource("BLYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7359. designer.SetDataSource("BLYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7360. designer.SetDataSource("BLYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7361. designer.SetDataSource("BLYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7362. designer.SetDataSource("BLYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7363. }
  7364. #endregion
  7365. #region B段Right信息
  7366. right = dto.rightInfo.Find(x => x.Type == "B");
  7367. if (right == null)
  7368. {
  7369. return Ok(jw);
  7370. }
  7371. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  7372. if (rightBindData != null)
  7373. {
  7374. //经济舱 + 双人间 TBR
  7375. designer.SetDataSource("BlblJJCTBRDRCB", rightBindData.cb);
  7376. designer.SetDataSource("BtxtJJCTBRRS", rightBindData.rs);
  7377. designer.SetDataSource("BlblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7378. designer.SetDataSource("BlblJJCTBRDRBJ", rightBindData.bj);
  7379. designer.SetDataSource("BlblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7380. designer.SetDataSource("BlblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7381. designer.SetDataSource("BlblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7382. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7383. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7384. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7385. }
  7386. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  7387. if (rightBindData != null)
  7388. {
  7389. //经济舱 + 单人间 SGR
  7390. designer.SetDataSource("BlblJJCSGRDRCB", rightBindData.cb);
  7391. designer.SetDataSource("BtxtJJCSGRRS", rightBindData.rs);
  7392. designer.SetDataSource("BlblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7393. designer.SetDataSource("BlblJJCSGRDRBJ", rightBindData.bj);
  7394. designer.SetDataSource("BlblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7395. designer.SetDataSource("BlblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7396. designer.SetDataSource("BlblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7397. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7398. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7399. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7400. }
  7401. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  7402. if (rightBindData != null)
  7403. {
  7404. //公务舱 + 单人间 SGR
  7405. designer.SetDataSource("BlblGWCSGRCB", rightBindData.cb);
  7406. designer.SetDataSource("BlblGWCSGRRS", rightBindData.rs);
  7407. designer.SetDataSource("BlblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7408. designer.SetDataSource("BlblGWCSGRDRBJ", rightBindData.bj);
  7409. designer.SetDataSource("BlblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7410. designer.SetDataSource("BlblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7411. designer.SetDataSource("BlblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7412. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7413. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7414. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7415. }
  7416. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7417. if (rightBindData != null)
  7418. {
  7419. //公务舱 + 小套房 JSES
  7420. designer.SetDataSource("BlblGWCJSESDRCB", rightBindData.cb);
  7421. designer.SetDataSource("BtxtGWCJSESRS", rightBindData.rs);
  7422. designer.SetDataSource("BlblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7423. designer.SetDataSource("BlblGWCJSESDRBJ", rightBindData.bj);
  7424. designer.SetDataSource("BlblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7425. designer.SetDataSource("BlblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7426. designer.SetDataSource("BlblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7427. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7428. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7429. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7430. }
  7431. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  7432. if (rightBindData != null)
  7433. {
  7434. //公务舱 + 小套房 JSES
  7435. designer.SetDataSource("BlblGWCSUITEDRCB", rightBindData.cb);
  7436. designer.SetDataSource("BtxtGWCSUITERS", rightBindData.rs);
  7437. designer.SetDataSource("BlblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7438. designer.SetDataSource("BlblGWCSUITEDRBJ", rightBindData.bj);
  7439. designer.SetDataSource("BlblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7440. designer.SetDataSource("BlblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7441. designer.SetDataSource("BlblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7442. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7443. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7444. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7445. }
  7446. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7447. if (rightBindData != null)
  7448. {
  7449. //经济舱 + 大套房
  7450. designer.SetDataSource("BlblJJCSUITEDRCB", rightBindData.cb);
  7451. designer.SetDataSource("BtxtJJCSUITERS", rightBindData.rs);
  7452. designer.SetDataSource("BlblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7453. designer.SetDataSource("BlblJJCSUITEDRBJ", rightBindData.bj);
  7454. designer.SetDataSource("BlblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7455. designer.SetDataSource("BlblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7456. designer.SetDataSource("BlblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7457. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7458. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7459. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7460. }
  7461. #endregion
  7462. #region 标题
  7463. designer.SetDataSource("CostBDRCB", "单人成本");
  7464. designer.SetDataSource("CostBRS", "人数");
  7465. designer.SetDataSource("CostBXS", "系数");
  7466. designer.SetDataSource("CostBZCB", "总成本");
  7467. designer.SetDataSource("CostBDRBJ", "单人报价");
  7468. designer.SetDataSource("CostBZBJ", "总报价");
  7469. designer.SetDataSource("CostBDRLR", "单人利润");
  7470. designer.SetDataSource("CostBZLR", "总利润");
  7471. designer.SetDataSource("CostBDRCBOM", "单人成本");
  7472. designer.SetDataSource("CostBRSOM", "人数");
  7473. designer.SetDataSource("CostBZCBOM", "总成本");
  7474. designer.SetDataSource("CostBDRBJOM", "单人报价");
  7475. designer.SetDataSource("CostBZBJOM", "总报价");
  7476. designer.SetDataSource("CostBDRLROM", "单人利润");
  7477. designer.SetDataSource("CostBZLROM", "总利润");
  7478. #endregion
  7479. }
  7480. #endregion
  7481. designer.SetDataSource("TzZCB2", TzZCB2);
  7482. designer.SetDataSource("TzZBJ2", TzZBJ2);
  7483. designer.SetDataSource("TzZLR2", TzZLR2);
  7484. string[] dataSourceKeys = new string[]
  7485. {
  7486. "VF",
  7487. "TGS",
  7488. "TGOF",
  7489. "TGM",
  7490. "TGA",
  7491. "TGTF",
  7492. "TGEF",
  7493. "CFM",
  7494. "CFOF",
  7495. "B",
  7496. "L",
  7497. "D",
  7498. "TBR",
  7499. "SGR",
  7500. "JSES",
  7501. "Suite",
  7502. "TV",
  7503. "1L",
  7504. "IF",
  7505. "EF",
  7506. "BRF",
  7507. "TE",
  7508. "TGT",
  7509. "DRVT",
  7510. "PC",
  7511. "TLF",
  7512. "ECT"
  7513. };
  7514. foreach (var item in dataSourceKeys)
  7515. {
  7516. var find = dto.titleModel.FirstOrDefault(x => x.label.Replace(" ", "").Replace("/", "") == item);
  7517. if (find != null)
  7518. {
  7519. designer.SetDataSource(item, find.text);
  7520. }
  7521. else
  7522. {
  7523. designer.SetDataSource(item, 0);
  7524. }
  7525. }
  7526. designer.SetDataSource(dt);
  7527. //根据数据源处理生成报表内容
  7528. designer.Process();
  7529. designer.Workbook.Worksheets[0].Name = "清单";
  7530. Worksheet sheet = designer.Workbook.Worksheets[0];
  7531. foreach (var Rowindex in hideRowsList)
  7532. {
  7533. ws.Cells.HideRows(Rowindex, 2);
  7534. }
  7535. byte[] bytes = null;
  7536. string strFileName = di.TeamName + "-团组-成本.xls";
  7537. using (MemoryStream stream = new MemoryStream())
  7538. {
  7539. designer.Workbook.Save(stream, Aspose.Cells.SaveFormat.Xlsx);
  7540. bytes = stream.ToArray();
  7541. }
  7542. return Ok(JsonView(true, "", new
  7543. {
  7544. Data = bytes,
  7545. strFileName,
  7546. }));
  7547. }
  7548. /// <summary>
  7549. /// 导出客户报表
  7550. /// </summary>
  7551. /// <returns></returns>
  7552. [HttpPost]
  7553. public async Task<IActionResult> ExportClientWordFile(ExportClientWordFileDto dto)
  7554. {
  7555. var jw = JsonView(false);
  7556. if (dto.Diid == 0)
  7557. {
  7558. return Ok(JsonView(false, "请传递团组id"));
  7559. }
  7560. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  7561. if (deleInfo.Code != 0)
  7562. {
  7563. return Ok(JsonView(false, "团组信息查询失败!"));
  7564. }
  7565. var di = deleInfo.Data as DelegationInfoWebView;
  7566. if (di == null)
  7567. {
  7568. return Ok(JsonView(false, "团组信息查询失败!"));
  7569. }
  7570. //文件名
  7571. //string strFileName = di.TeamName + "-团组-客户报价.doc";
  7572. //获取模板
  7573. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/团组-客户报价.doc");
  7574. //载入模板
  7575. Document doc = new Document(tmppath);
  7576. Aspose.Words.DocumentBuilder builder = new Aspose.Words.DocumentBuilder(doc);
  7577. Dictionary<string, string> DickeyValue = new Dictionary<string, string>();
  7578. DickeyValue.Add("DickeyValue", di.TeamName); //团组名
  7579. var ParameterList = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(dto.Diid);
  7580. var AParameter = ParameterList.Find(x => x.CostType == "A");
  7581. var BParameter = ParameterList.Find(x => x.CostType == "B");
  7582. if (AParameter == null)
  7583. {
  7584. return Ok(JsonView(false, "系数不存在!"));
  7585. }
  7586. string CarGuides, TzNumber, CarGuides1, Meal, SubsidizedMeals, NightRepair, AttractionsTickets, MiscellaneousFees, ATip, TzHotelDesc, Offcial, PettyCash, Visa, TrainTicket, TicketPrice
  7587. , TzAirDesc, TzZCost;
  7588. CarGuides = TzNumber = CarGuides1 = Meal = SubsidizedMeals = NightRepair = AttractionsTickets = MiscellaneousFees = ATip = TzHotelDesc = Offcial = PettyCash = Visa = TrainTicket = TicketPrice
  7589. = TzAirDesc = TzZCost = string.Empty;
  7590. TzNumber = AParameter.CostTypenumber.ToString();
  7591. CarGuides = "RMB " + (AParameter.DJCB * AParameter.DJXS).ToString("#0.00");
  7592. CarGuides1 = dto.CarGuides1;
  7593. Meal = dto.Meal;
  7594. SubsidizedMeals = dto.SubsidizedMeals;
  7595. NightRepair = dto.NightRepair;
  7596. AttractionsTickets = dto.AttractionsTickets;
  7597. MiscellaneousFees = dto.MiscellaneousFees;
  7598. ATip = dto.ATip;
  7599. TzHotelDesc = "";
  7600. Offcial = "RMB " + (AParameter.GWCB * AParameter.GWXS).ToString("#0.00");
  7601. PettyCash = "RMB " + (AParameter.LYJCB * AParameter.LYJXS).ToString("#0.00");
  7602. Visa = "RMB " + (AParameter.VisaCB * AParameter.VisaXS + AParameter.HSCB * AParameter.HSXS + AParameter.BXCB * AParameter.BXXS).ToString("#0.00");
  7603. TrainTicket = "RMB " + (AParameter.HCPCB * AParameter.HCPXS).ToString("#0.00");
  7604. TicketPrice = "RMB " + (AParameter.CPCB * AParameter.CPXS).ToString("#0.00");
  7605. TzAirDesc = "";
  7606. TzZCost = dto.TzZCost;
  7607. var TzHotelDescArr = new string[] { "SGR", "JSES", "SUITE", "TBR" };
  7608. var TzAirDescArr = new string[] { "经济舱", "公务舱" };
  7609. var index = 1;
  7610. var AinfoArr = dto.leftInfo.Find(x => x.Type == "A");
  7611. foreach (var item in TzHotelDescArr)
  7612. {
  7613. if (AinfoArr != null)
  7614. {
  7615. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7616. if (Ainfo != null)
  7617. {
  7618. if (int.Parse(Ainfo.rs) <= 0)
  7619. {
  7620. continue;
  7621. }
  7622. var hotelText = string.Empty;
  7623. switch (item)
  7624. {
  7625. case "SGR":
  7626. hotelText = "单人间";
  7627. break;
  7628. case "JSES":
  7629. hotelText = "小套房";
  7630. break;
  7631. case "SUITE":
  7632. hotelText = "套房";
  7633. break;
  7634. case "TBR":
  7635. hotelText = "双人间";
  7636. break;
  7637. }
  7638. if (item != "TBR")
  7639. {
  7640. 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";
  7641. }
  7642. else
  7643. {
  7644. 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";
  7645. }
  7646. index++;
  7647. }
  7648. }
  7649. }
  7650. index = 1;
  7651. foreach (var item in TzAirDescArr)
  7652. {
  7653. if (AinfoArr != null)
  7654. {
  7655. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7656. if (Ainfo != null)
  7657. {
  7658. if (int.Parse(Ainfo.rs) <= 0)
  7659. {
  7660. continue;
  7661. }
  7662. 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";
  7663. index++;
  7664. }
  7665. }
  7666. }
  7667. if (dto.costType == "B")
  7668. {
  7669. if (BParameter == null)
  7670. {
  7671. return Ok(JsonView(false, "B段系数不存在!"));
  7672. }
  7673. CarGuides = CarGuides.Insert(0, "A段 ") + " B段 RMB" + (BParameter.DJCB * BParameter.DJXS).ToString("#0.00");
  7674. Offcial = Offcial.Insert(0, "A段 ") + " B段 RMB " + (BParameter.GWCB * BParameter.GWXS).ToString("#0.00");
  7675. PettyCash = PettyCash.Insert(0, "A段 ") + " B段 RMB " + (BParameter.LYJCB * BParameter.LYJXS).ToString("#0.00");
  7676. Visa = Visa.Insert(0, "A段 ") + " B段 RMB " + (BParameter.VisaCB * BParameter.VisaXS + BParameter.HSCB * BParameter.HSXS + BParameter.BXCB * BParameter.BXXS).ToString("#0.00");
  7677. TrainTicket = TrainTicket.Insert(0, "A段 ") + " B段 RMB " + (BParameter.HCPCB * BParameter.HCPXS).ToString("#0.00");
  7678. TicketPrice = TicketPrice.Insert(0, "A段 ") + " B段 RMB " + (BParameter.CPCB * BParameter.CPXS).ToString("#0.00");
  7679. AinfoArr = dto.leftInfo.Find(x => x.Type == "B");
  7680. foreach (var item in TzHotelDescArr)
  7681. {
  7682. if (AinfoArr != null)
  7683. {
  7684. TzHotelDesc += "B段信息 \r\n";
  7685. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7686. if (Ainfo != null)
  7687. {
  7688. if (int.Parse(Ainfo.rs) <= 0)
  7689. {
  7690. continue;
  7691. }
  7692. var hotelText = string.Empty;
  7693. switch (item)
  7694. {
  7695. case "SGR":
  7696. hotelText = "单人间";
  7697. break;
  7698. case "JSES":
  7699. hotelText = "小套房";
  7700. break;
  7701. case "SUITE":
  7702. hotelText = "套房";
  7703. break;
  7704. case "TBR":
  7705. hotelText = "双人间";
  7706. break;
  7707. }
  7708. if (item != "TBR")
  7709. {
  7710. 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";
  7711. }
  7712. else
  7713. {
  7714. 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";
  7715. }
  7716. index++;
  7717. }
  7718. TzHotelDesc = TzHotelDesc.Insert(0, "A段信息 \r\n");
  7719. }
  7720. }
  7721. index = 1;
  7722. foreach (var item in TzAirDescArr)
  7723. {
  7724. if (AinfoArr != null)
  7725. {
  7726. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7727. if (Ainfo != null)
  7728. {
  7729. if (int.Parse(Ainfo.rs) <= 0)
  7730. {
  7731. continue;
  7732. }
  7733. 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";
  7734. index++;
  7735. }
  7736. }
  7737. }
  7738. }
  7739. Visa = Visa.Insert(0, "签证及保险(含核酸检测): ");
  7740. DickeyValue.Add("TzNumber", TzNumber); //团组人数
  7741. DickeyValue.Add("CarGuides", CarGuides); //地接单人报价
  7742. DickeyValue.Add("CarGuides1", CarGuides1); // 地接 - 车导费
  7743. DickeyValue.Add("Meal", Meal); // 地接 - 餐费
  7744. DickeyValue.Add("SubsidizedMeals", SubsidizedMeals);// 地接 - 餐补
  7745. DickeyValue.Add("NightRepair", NightRepair); // 地接 - 宿补
  7746. DickeyValue.Add("AttractionsTickets", AttractionsTickets); // 地接 - 景点
  7747. DickeyValue.Add("MiscellaneousFees", MiscellaneousFees); // 地接 - 杂费
  7748. DickeyValue.Add("ATip", ATip); // 地接 - 小费
  7749. DickeyValue.Add("TzHotelDesc", TzHotelDesc); //酒店
  7750. DickeyValue.Add("Offcial", Offcial); // 公务单人报价
  7751. DickeyValue.Add("PettyCash", PettyCash); // 零用金单人报价
  7752. DickeyValue.Add("Visa", Visa); // 签证单人报价
  7753. DickeyValue.Add("TrainTicket", TrainTicket); //火车票
  7754. DickeyValue.Add("TicketPrice", TicketPrice); //船票
  7755. DickeyValue.Add("TzAirDesc", TzAirDesc); //机票
  7756. DickeyValue.Add("TzZCost", TzZCost);
  7757. foreach (var key in DickeyValue.Keys)
  7758. {
  7759. if (doc.Range.Bookmarks[key] != null)
  7760. {
  7761. Bookmark mark = doc.Range.Bookmarks[key];
  7762. mark.Text = DickeyValue[key];
  7763. }
  7764. }
  7765. byte[] bytes = null;
  7766. string strFileName = di.TeamName + "-客户报价.doc";
  7767. using (MemoryStream stream = new MemoryStream())
  7768. {
  7769. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  7770. bytes = stream.ToArray();
  7771. }
  7772. return Ok(JsonView(true, "", new
  7773. {
  7774. Data = bytes,
  7775. strFileName,
  7776. }));
  7777. }
  7778. /// <summary>
  7779. /// 团组成本 各模块(酒店,地接,机票)成本提示
  7780. /// </summary>
  7781. /// <param name="dto"></param>
  7782. /// <returns></returns>
  7783. [HttpPost]
  7784. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  7785. public async Task<IActionResult> PostGroupCostModulePrompt(GroupCostModulePromptDto dto)
  7786. {
  7787. try
  7788. {
  7789. #region 参数验证
  7790. if (dto.DiId < 0)
  7791. {
  7792. return Ok(JsonView(false, "请传入有效的DiId参数!"));
  7793. }
  7794. List<int> cTableIds = new List<int>() {
  7795. 76 ,//酒店预订
  7796. 77 ,//行程
  7797. 79 ,//车/导游地接
  7798. 80 ,//签证
  7799. 81 ,//邀请/公务活
  7800. 82 ,//团组客户保险
  7801. 85 ,//机票预订
  7802. 98 ,//其他款项
  7803. 285 ,//收款退还
  7804. 751 ,//酒店早餐
  7805. 1015 // 超支费用
  7806. };
  7807. if (dto.CTable < 0 && !cTableIds.Contains(dto.CTable))
  7808. {
  7809. return Ok(JsonView(false, "请传入有效的CTable参数!"));
  7810. }
  7811. #endregion
  7812. //Grp_GroupCostParameter 预算表 Grp_GroupCost 详细费用列表
  7813. var _GroupCostParameters = _usersRep._sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  7814. if (_GroupCostParameters.Count <= 0)
  7815. {
  7816. return Ok(JsonView(false, "暂无该团组成本信息!", new List<dynamic>()));
  7817. }
  7818. if (_GroupCostParameters[0].IsShare == 0)
  7819. {
  7820. return Ok(JsonView(false, "该团组成本未完成!", new List<dynamic>()));
  7821. }
  7822. var _GroupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  7823. //处理date为空问题
  7824. if (_GroupCosts.Count > 0)
  7825. {
  7826. for (int i = 0; i < _GroupCosts.Count; i++)
  7827. {
  7828. if (string.IsNullOrEmpty(_GroupCosts[i].Date))
  7829. {
  7830. if (i > 0)
  7831. {
  7832. _GroupCosts[i].Date = _GroupCosts[i - 1].Date;
  7833. }
  7834. }
  7835. }
  7836. }
  7837. GroupCostModulePromptView _view = new GroupCostModulePromptView();
  7838. List<GroupCostModulePromptInfo> _ModulePromptInfos = new List<GroupCostModulePromptInfo>(); //机票存储多段
  7839. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  7840. string currCode = "";
  7841. #region currCode 验证
  7842. bool isInt = int.TryParse(_GroupCostParameters[0].Currency, out int intCurrency);
  7843. if (isInt)
  7844. {
  7845. var currData = currDatas.Find(it => it.Id == intCurrency);
  7846. if (currData != null)
  7847. {
  7848. currCode = currData.Name;
  7849. }
  7850. }
  7851. else
  7852. {
  7853. currCode = _GroupCostParameters[0].Currency.Trim();
  7854. }
  7855. #endregion
  7856. //op,酒店单段模式存储
  7857. GroupCostModulePromptInfo _ModulePromptInfo = new GroupCostModulePromptInfo()
  7858. {
  7859. CurrencyCode = currCode,
  7860. Rate = _GroupCostParameters[0].Rate,
  7861. CostType = _GroupCostParameters[0].CostType,
  7862. CostTypeStartTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeStartTime).ToString("yyyy-MM-dd"),
  7863. CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeendTime).ToString("yyyy-MM-dd"),
  7864. CostTypeNumber = _GroupCostParameters[0].CostTypenumber
  7865. };
  7866. List<dynamic> _ModuleSubPromptInfo = new List<dynamic>(); // 存储CTbale != 85 的动态数据
  7867. if (_GroupCostParameters.Count == 2)
  7868. {
  7869. _ModulePromptInfo.CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[1].CostTypeendTime).ToString("yyyy-MM-dd");
  7870. }
  7871. foreach (var item in _GroupCostParameters)
  7872. {
  7873. decimal _rate = 1;
  7874. decimal _rate1 = item.Rate;
  7875. decimal _scale = 1;
  7876. //decimal _scale = 0.95M; 雷怡 2024-06-11 10:06:08 屏蔽
  7877. #region 处理地接价格比例 总经理 国交部经理 主管 不下调 其他人 下调 5%
  7878. //var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  7879. //if (userInfo != null)
  7880. //{
  7881. // if (userInfo.DepId == 1 || userInfo.DepId == 7)
  7882. // {
  7883. // if (userInfo.JobPostId == 1 || userInfo.JobPostId == 22 || userInfo.JobPostId == 32)
  7884. // {
  7885. // _scale = 1.00M;
  7886. // }
  7887. // }
  7888. //}
  7889. #endregion
  7890. GroupCostModulePromptInfo modulePromptInfo = new GroupCostModulePromptInfo()
  7891. {
  7892. CurrencyCode = currCode,
  7893. Rate = _rate1,
  7894. CostType = item.CostType,
  7895. CostTypeStartTime = Convert.ToDateTime(item.CostTypeStartTime).ToString("yyyy-MM-dd"),
  7896. CostTypeEndTime = Convert.ToDateTime(item.CostTypeendTime).ToString("yyyy-MM-dd"),
  7897. CostTypeNumber = item.CostTypenumber
  7898. };
  7899. if (_GroupCostParameters.Count > 1)
  7900. {
  7901. modulePromptInfo.CostTypeNumber = item.CostTypenumber;
  7902. }
  7903. else
  7904. {
  7905. modulePromptInfo.CostTypeNumber = item.LYJRS;
  7906. }
  7907. if (dto.CTable == 79)//
  7908. {
  7909. modulePromptInfo.IndividualCost = item.DJCB / modulePromptInfo.CostTypeNumber;
  7910. modulePromptInfo.TotalCost = item.DJCB;
  7911. }
  7912. List<string> costTypes = new List<string>() { "A", "B" };
  7913. List<Grp_GroupCost> _GroupCostsTypeData = new List<Grp_GroupCost>();
  7914. var _GroupCostsDuplicates = _GroupCostParameters.GroupBy(x => x.CostType).Select(y => y.FirstOrDefault());
  7915. if (_GroupCostsDuplicates.Count() == 1)
  7916. {
  7917. _GroupCostsTypeData = _GroupCosts;
  7918. }
  7919. else
  7920. {
  7921. _GroupCostsTypeData = _GroupCosts.Where(it => Convert.ToDateTime(it.Date) >= Convert.ToDateTime(item.CostTypeStartTime) &&
  7922. Convert.ToDateTime(it.Date) <= Convert.ToDateTime(item.CostTypeendTime)).ToList();
  7923. }
  7924. /*
  7925. * 76 酒店预订
  7926. * 77 行程
  7927. * 79 车/导游地接
  7928. * 80 签证
  7929. * 81 邀请/公务活动
  7930. * 82 团组客户保险
  7931. * 85 机票预订
  7932. * 98 其他款项
  7933. * 285 收款退还
  7934. * 751 酒店早餐
  7935. * 1015 超支费用
  7936. */
  7937. switch (dto.CTable)
  7938. {
  7939. case 76: // 酒店预订
  7940. _ModuleSubPromptInfo.AddRange(
  7941. _GroupCostsTypeData.Select(it => new
  7942. {
  7943. it.DAY,
  7944. it.Date,
  7945. it.ACCON,
  7946. it.ITIN,
  7947. it.SGR,
  7948. it.TBR,
  7949. it.JS_ES,
  7950. it.Suite
  7951. })
  7952. );
  7953. break;
  7954. case 79: // 车/导游地接
  7955. _ModuleSubPromptInfo.AddRange(
  7956. _GroupCostsTypeData.Select(it => new
  7957. {
  7958. Date = it.Date, //日期
  7959. CarFee = it.CarCost * _rate * _scale, //车费用
  7960. CarType = it.CarType, //车型
  7961. DriverFee = it.CFS * _rate * _scale, //司机工资
  7962. DriverTipsFee = it.DRVTips * _rate * _scale, //司机小费
  7963. DriverMealSubsidy = it.CFM * _rate * _scale, //司机餐补
  7964. DriverOvertimeFee = it.CFOF * _rate * _scale, //司机超时费用
  7965. GuideFee = it.TGS * _rate * _scale, //导游费用
  7966. GuideOvertimeFee = it.TGOF * _rate * _scale, //导游超时费用
  7967. GuideMealSubsidy = it.TGM * _rate * _scale, //导游餐补
  7968. GuideRoomSubsidy = it.TGA * _rate * _scale, //导游房补
  7969. GuideCarFare = it.TGTF * _rate * _scale, //导游交通费
  7970. GuideSpotFee = it.TGEF * _rate * _scale, //导游景点费
  7971. GuideTipsFee = it.TGTips * _rate * _scale, //导游小费
  7972. Breakfast = it.B * _rate * _scale, //早餐费
  7973. Lunch = it.L * _rate * _scale, //午餐费
  7974. Dinner = it.D * _rate * _scale, //晚餐费
  7975. TicketFee = it.EF * _rate * _scale, //门票费
  7976. SpentCash = it.PC * _rate * _scale, //零用金
  7977. LeadersFee = it.TLF * _rate * _scale, //领队费
  7978. DrinksSnacksFruitFee = it.B_R_F * _rate * _scale, //饮料零食水果
  7979. TravelSupplies = it.TE * _rate * _scale, //出行物资
  7980. })
  7981. );
  7982. break;
  7983. case 85: // 机票
  7984. List<dynamic> datas = new List<dynamic>();
  7985. datas.Add(
  7986. new
  7987. {
  7988. AirType = "经济舱",
  7989. AirNum = item.JJCRS,
  7990. AirDRCB = item.JJCCB,
  7991. AirZCB = (item.JJCRS * item.JJCCB)
  7992. }
  7993. );
  7994. datas.Add(
  7995. new
  7996. {
  7997. AirType = "公务舱",
  7998. AirNum = item.GWCRS,
  7999. AirDRCB = item.GWCCB,
  8000. AirZCB = (item.GWCRS * item.GWCCB)
  8001. }
  8002. );
  8003. var groupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  8004. var initDatas = groupCosts.Select(it => new { date = it.Date, week = it.Date.GetWeek() == "" ? "-" : it.Date.GetWeek(), itinerary = it.ITIN }).ToList();
  8005. modulePromptInfo.Data = new
  8006. {
  8007. airFeeData = datas,
  8008. airInitData = initDatas
  8009. };
  8010. _ModulePromptInfos.Add(modulePromptInfo);
  8011. break;
  8012. default:
  8013. break;
  8014. }
  8015. }
  8016. if (dto.CTable != 85)
  8017. {
  8018. _ModulePromptInfo.Data = _ModuleSubPromptInfo;
  8019. _ModulePromptInfos.Add(_ModulePromptInfo);
  8020. }
  8021. _view.ModulePromptInfos = _ModulePromptInfos;
  8022. return Ok(JsonView(true, "操作成功!", _view));
  8023. }
  8024. catch (Exception ex)
  8025. {
  8026. return Ok(JsonView(false, ex.Message));
  8027. }
  8028. }
  8029. /// <summary>
  8030. /// 根据黑屏代码重新生成行程
  8031. /// </summary>
  8032. /// <param name="dto"></param>
  8033. /// <returns></returns>
  8034. [HttpPost]
  8035. public IActionResult CraeteGroupCostTravel(GroupCostInItDto dto)
  8036. {
  8037. var jw = JsonView(false);
  8038. var Create = _GroupCostRepository.
  8039. CreateGroupCostByBlackCode(dto.Diid);
  8040. jw.Msg = Create.Msg;
  8041. if (Create.Code == 0)
  8042. {
  8043. jw.Code = 200;
  8044. jw.Data = new
  8045. {
  8046. groupCost = Create.Data,
  8047. blackCodeIsTrue = true
  8048. };
  8049. }
  8050. else
  8051. {
  8052. jw.Code = 400;
  8053. jw.Data = new
  8054. {
  8055. groupCost = Create.Data,
  8056. blackCodeIsTrue = false,
  8057. };
  8058. }
  8059. return Ok(jw);
  8060. }
  8061. /// <summary>
  8062. /// 成本获取OP历史车费用
  8063. /// </summary>
  8064. /// <param name="dto"></param>
  8065. /// <returns></returns>
  8066. [HttpPost]
  8067. public async Task<IActionResult> GetHistoryCarData(HistoryCarDataDto dto)
  8068. {
  8069. var jw = JsonView(false);
  8070. try
  8071. {
  8072. List<HistoryCarDataView> dbResult = new List<HistoryCarDataView>();
  8073. //获取现有所有车的数据
  8074. if (!dto.Param.IsNullOrWhiteSpace())
  8075. {
  8076. string sql = $@"
  8077. SELECT gdi.TeamName , gctggr.Area, gctggr.PriceName , gctggrc.Id ,gctggrc.Price , gctggrc.DatePrice , gctggrc.PriceContent , gctggrc.Currency , gctggr.ServiceStartTime , gctggr.ServiceEndTime
  8078. FROM Grp_CarTouristGuideGroundReservationsContent gctggrc inner join Grp_CarTouristGuideGroundReservations gctggr on
  8079. gctggrc.CTGGRId = gctggr.Id inner JOIN Grp_DelegationInfo gdi on gctggr.DiId = gdi.Id LEFT JOIN Sys_SetData ssd on ssd.Id = gctggr.PriceType
  8080. 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
  8081. AND gctggr.ServiceEndTime is not NULL
  8082. ORDER by gctggrc.id DESC
  8083. ";
  8084. dbResult = await _sqlSugar.SqlQueryable<HistoryCarDataView>(sql).ToListAsync();
  8085. var numeberResult = await Task.Run(() =>
  8086. {
  8087. var numberArr = dbResult.Where(x => int.TryParse(x.Area, out int number)).ToList();
  8088. _ = dbResult.RemoveAll(x => int.TryParse(x.Area, out int number));
  8089. return numberArr;
  8090. });
  8091. var cityArr = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  8092. foreach (var item in numeberResult)
  8093. {
  8094. var find = cityArr.Find(x => x.Id == int.Parse(item.Area)) ?? new Grp_NationalTravelFee
  8095. {
  8096. Country = "数据异常!",
  8097. City = string.Empty,
  8098. };
  8099. item.Area = find.Country + " " + find.City;
  8100. }
  8101. dbResult.AddRange(numeberResult);
  8102. if (dto.Param.Contains("、"))
  8103. {
  8104. var sp = dto.Param.Split("、");
  8105. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  8106. .Where(x =>
  8107. {
  8108. return System.Array.Exists(sp, e =>
  8109. {
  8110. bool where = false;
  8111. if (x.Area != null)
  8112. {
  8113. where = x.Area.Contains(e);
  8114. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  8115. {
  8116. return false;
  8117. }
  8118. }
  8119. if (x.PriceName != null && !where)
  8120. {
  8121. where = x.PriceName.Contains(e);
  8122. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  8123. {
  8124. return false;
  8125. }
  8126. }
  8127. return where;
  8128. });
  8129. }).ToList();
  8130. }
  8131. else
  8132. {
  8133. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  8134. .Where(x =>
  8135. {
  8136. bool where = false;
  8137. if (x.Area != null)
  8138. {
  8139. where = x.Area.Contains(dto.Param);
  8140. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  8141. {
  8142. return false;
  8143. }
  8144. }
  8145. if (x.PriceName != null && !where)
  8146. {
  8147. where = x.PriceName.Contains(dto.Param);
  8148. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  8149. {
  8150. return false;
  8151. }
  8152. }
  8153. return where;
  8154. }
  8155. )
  8156. .ToList();
  8157. }
  8158. }
  8159. var view = dbResult.Select(x =>
  8160. {
  8161. decimal dp = 0.00M;
  8162. var startB = DateTime.TryParse(x.Start.ToString(), out DateTime startD);
  8163. var endB = DateTime.TryParse(x.End.ToString(), out DateTime endD);
  8164. if (string.IsNullOrWhiteSpace(x.DatePrice))
  8165. {
  8166. if (startB && endB)
  8167. {
  8168. var timesp = endD.Subtract(startD);
  8169. if ((timesp.Days + 1) != 0)
  8170. {
  8171. dp = x.Price / (timesp.Days + 1);
  8172. }
  8173. }
  8174. }
  8175. else
  8176. {
  8177. dp = x.Price;
  8178. }
  8179. return new
  8180. {
  8181. start = startB ? startD.ToString("yyyy-MM-dd") : "",
  8182. end = endB ? endD.ToString("yyyy-MM-dd") : "",
  8183. x.Area,
  8184. x.id,
  8185. price = x.Price.ToString("F2"),
  8186. x.PriceName,
  8187. x.PriceContent,
  8188. x.TeamName,
  8189. x.DatePrice,
  8190. dayPrice = dp.ToString("F2"),
  8191. };
  8192. }).OrderByDescending(x => x.id).ToList();
  8193. jw = JsonView(true, "获取成功!", view);
  8194. }
  8195. catch (Exception e)
  8196. {
  8197. jw = JsonView(false, e.Message);
  8198. }
  8199. return Ok(jw);
  8200. }
  8201. #endregion
  8202. #region 酒店预订 新 雷怡 2023-12-28 17:45
  8203. /// <summary>
  8204. /// 酒店预订
  8205. /// 酒店费用列表 根据团组Id查询
  8206. /// </summary>
  8207. /// <param name="_dto"></param>
  8208. /// <returns></returns>
  8209. [HttpPost]
  8210. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8211. public async Task<IActionResult> PostHotelReservationsItemsByDiId(HotelReservationItemDto _dto)
  8212. {
  8213. #region 参数验证
  8214. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8215. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8216. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8217. #region 团组操作权限验证 76 酒店预定模块
  8218. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8219. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8220. #endregion
  8221. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8222. #region 页面操作权限验证
  8223. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8224. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8225. #endregion
  8226. #endregion
  8227. return Ok(await _hotelPriceRep._ItemsByDiId(_dto.PortType, _dto.DiId));
  8228. }
  8229. /// <summary>
  8230. /// 酒店预订
  8231. /// 基础数据
  8232. /// </summary>
  8233. /// <param name="_dto"></param>
  8234. /// <returns></returns>
  8235. [HttpPost]
  8236. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8237. public async Task<IActionResult> PostHotelReservationsBasicsDataInit(HotelReservationBasicsDataInitDto _dto)
  8238. {
  8239. #region 参数验证
  8240. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8241. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8242. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8243. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8244. #region 页面操作权限验证
  8245. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8246. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8247. #endregion
  8248. #region 团组操作权限验证 76 酒店预定模块
  8249. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8250. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8251. #endregion
  8252. #endregion
  8253. return Ok(await _hotelPriceRep._BasicsDataInit(_dto.PortType, _dto.DiId));
  8254. }
  8255. /// <summary>
  8256. /// 酒店预订
  8257. /// 创建 入住卷号码
  8258. /// </summary>
  8259. /// <param name="_dto"></param>
  8260. /// <returns></returns>
  8261. [HttpPost]
  8262. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8263. public async Task<IActionResult> PostHotelReservationsCreateCheckVolumeNo(HotelReservationBasicsDataInitDto _dto)
  8264. {
  8265. try
  8266. {
  8267. #region 参数验证
  8268. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8269. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8270. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8271. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8272. #region 页面操作权限验证
  8273. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8274. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8275. #endregion
  8276. #region 团组操作权限验证 76 酒店预定模块
  8277. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8278. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8279. #endregion
  8280. #endregion
  8281. Result data = await _hotelPriceRep._CreateCheckVolumeNo(_dto.DiId);
  8282. if (data.Code != 0)
  8283. {
  8284. return Ok(JsonView(false, data.Msg));
  8285. }
  8286. return Ok(JsonView(true, data.Msg, data.Data));
  8287. }
  8288. catch (Exception ex)
  8289. {
  8290. return Ok(JsonView(false, ex.Message));
  8291. }
  8292. }
  8293. /// <summary>
  8294. /// 酒店预订
  8295. /// 详情
  8296. /// </summary>
  8297. /// <param name="_dto"></param>
  8298. /// <returns></returns>
  8299. [HttpPost]
  8300. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8301. public async Task<IActionResult> PostHotelReservationsDetails(HotelReservationsDetailsDto _dto)
  8302. {
  8303. #region 参数验证
  8304. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入正确的UserId参数"));
  8305. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8306. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入正确的DiId参数"));
  8307. #region 团组操作权限验证 76 酒店预定模块
  8308. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8309. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8310. #endregion
  8311. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8312. #region 页面操作权限验证
  8313. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8314. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8315. #endregion
  8316. #endregion
  8317. return Ok(await _hotelPriceRep._Details(_dto.PortType, _dto.Id));
  8318. }
  8319. /// <summary>
  8320. /// 酒店预订
  8321. /// Add Or Edit
  8322. /// </summary>
  8323. /// <param name="_dto"></param>
  8324. /// <returns></returns>
  8325. [HttpPost]
  8326. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8327. public async Task<IActionResult> PostHotelReservationsAddOrEdit(HotelReservationsAddOrEditDto _dto)
  8328. {
  8329. #region 参数验证
  8330. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8331. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8332. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8333. #region 团组操作权限验证 76 酒店预定模块
  8334. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8335. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8336. #endregion
  8337. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8338. #region 页面操作权限验证
  8339. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8340. if (_dto.Id == 0) // Add
  8341. {
  8342. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  8343. }
  8344. else if (_dto.Id > 1) // Edit
  8345. {
  8346. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  8347. }
  8348. else return Ok(JsonView(false, "请输入正确的数据Id!"));
  8349. #endregion
  8350. #endregion
  8351. JsonView _view = await _hotelPriceRep._AddOrEdit(_dto);
  8352. if (_view.Code != 200)
  8353. {
  8354. return Ok(_view);
  8355. }
  8356. #region 应用推送
  8357. try
  8358. {
  8359. int ccpId = (int)_view.Data.GetType().GetProperty("ccpId").GetValue(_view.Data, null);
  8360. int sign = (int)_view.Data.GetType().GetProperty("sign").GetValue(_view.Data, null);
  8361. int hotelId = (int)_view.Data.GetType().GetProperty("hotelId").GetValue(_view.Data, null);
  8362. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  8363. //自动审核
  8364. await _feeAuditRep.FeeAutomaticAudit(1, _dto.DiId, hotelId);
  8365. }
  8366. catch (Exception ex)
  8367. {
  8368. }
  8369. #endregion
  8370. return Ok(_view);
  8371. }
  8372. /// <summary>
  8373. /// 酒店预订
  8374. /// Del
  8375. /// </summary>
  8376. /// <param name="_dto"></param>
  8377. /// <returns></returns>
  8378. [HttpPost]
  8379. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8380. public async Task<IActionResult> PostHotelReservationsDel(HotelReservationsDelDto _dto)
  8381. {
  8382. #region 参数验证
  8383. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8384. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8385. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8386. #region 团组操作权限验证 76 酒店预定模块
  8387. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8388. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8389. #endregion
  8390. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8391. #region 页面操作权限验证
  8392. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8393. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  8394. #endregion
  8395. #endregion
  8396. return Ok(await _hotelPriceRep._Del(_dto.Id, _dto.UserId));
  8397. }
  8398. /// <summary>
  8399. /// 酒店预订
  8400. /// 生成VOUCHER
  8401. /// 2024.05.06 之前版本
  8402. /// </summary>
  8403. /// <param name="_dto"></param>
  8404. /// <returns></returns>
  8405. [HttpPost]
  8406. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8407. public async Task<IActionResult> PostHotelReservationsCreateVoucher1(HotelReservationsCreateVoucherDto _dto)
  8408. {
  8409. try
  8410. {
  8411. #region 参数验证
  8412. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8413. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8414. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8415. #region 团组操作权限验证 76 酒店预定模块
  8416. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8417. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8418. #endregion
  8419. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8420. #region 页面操作权限验证
  8421. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8422. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8423. #endregion
  8424. #endregion
  8425. Grp_HotelReservations hr = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.Id == _dto.Id).FirstAsync();
  8426. //判断数据是否完整
  8427. if (hr != null)
  8428. {
  8429. if (!string.IsNullOrEmpty(hr.DetermineNo))
  8430. {
  8431. string strFileName = "HotelStatement/";
  8432. Grp_DelegationInfo dele = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == _dto.DiId).FirstAsync();
  8433. if (dele != null)
  8434. strFileName += dele.TourCode;
  8435. //载入模板
  8436. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/酒店预订模板.doc";
  8437. Document doc = new Document(sss);
  8438. DocumentBuilder builder = new DocumentBuilder(doc);
  8439. #region 替换Word模板书签内容
  8440. //这里可以创建个DataTable循环添加书签的值,这里提示一下就不多做修改了
  8441. //入住卷预定号码
  8442. if (doc.Range.Bookmarks["VNO"] != null)
  8443. {
  8444. Bookmark mark = doc.Range.Bookmarks["VNO"];
  8445. mark.Text = hr.CheckNumber;
  8446. }
  8447. //酒店时间
  8448. if (doc.Range.Bookmarks["Date"] != null)
  8449. {
  8450. Bookmark mark = doc.Range.Bookmarks["Date"];
  8451. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  8452. }
  8453. //团号
  8454. if (doc.Range.Bookmarks["TNo"] != null)
  8455. {
  8456. Bookmark mark = doc.Range.Bookmarks["TNo"];
  8457. mark.Text = dele.TourCode;
  8458. }
  8459. //预定号码
  8460. if (doc.Range.Bookmarks["BookingId"] != null)
  8461. {
  8462. Bookmark mark = doc.Range.Bookmarks["BookingId"];
  8463. mark.Text = hr.ReservationsNo;
  8464. }
  8465. if (doc.Range.Bookmarks["HotelConfirmNo"] != null)
  8466. {
  8467. Bookmark mark = doc.Range.Bookmarks["HotelConfirmNo"];
  8468. mark.Text = hr.DetermineNo;
  8469. }
  8470. //酒店城市
  8471. if (doc.Range.Bookmarks["City"] != null)
  8472. {
  8473. Bookmark mark = doc.Range.Bookmarks["City"];
  8474. mark.Text = hr.City;
  8475. }
  8476. //酒店名称
  8477. if (doc.Range.Bookmarks["HName"] != null)
  8478. {
  8479. Bookmark mark = doc.Range.Bookmarks["HName"];
  8480. mark.Text = hr.HotelName;
  8481. }
  8482. //酒店地址
  8483. if (doc.Range.Bookmarks["Address"] != null)
  8484. {
  8485. Bookmark mark = doc.Range.Bookmarks["Address"];
  8486. mark.Text = hr.HotelAddress;
  8487. }
  8488. //酒店电话
  8489. if (doc.Range.Bookmarks["Tel"] != null)
  8490. {
  8491. Bookmark mark = doc.Range.Bookmarks["Tel"];
  8492. mark.Text = hr.HotelTel;
  8493. }
  8494. //酒店传真
  8495. if (doc.Range.Bookmarks["Fax"] != null)
  8496. {
  8497. Bookmark mark = doc.Range.Bookmarks["Fax"];
  8498. if (!string.IsNullOrWhiteSpace(hr.HotelFax))
  8499. {
  8500. mark.Text = hr.HotelFax;
  8501. }
  8502. }
  8503. //入住时间
  8504. if (doc.Range.Bookmarks["CIn"] != null)
  8505. {
  8506. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  8507. Bookmark mark = doc.Range.Bookmarks["CIn"];
  8508. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year;
  8509. }
  8510. //退房时间
  8511. if (doc.Range.Bookmarks["COut"] != null)
  8512. {
  8513. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  8514. Bookmark mark = doc.Range.Bookmarks["COut"];
  8515. mark.Text = dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8516. }
  8517. //客户名称
  8518. if (doc.Range.Bookmarks["GName"] != null)
  8519. {
  8520. string guestName = "";
  8521. string[] clients = new string[] { };
  8522. if (hr.GuestName.Contains(","))
  8523. {
  8524. clients = hr.GuestName.Split(",");
  8525. }
  8526. else
  8527. {
  8528. clients = new string[] { hr.GuestName };
  8529. }
  8530. List<int> clientIds_int = new List<int>();
  8531. if (clients.Length > 0)
  8532. {
  8533. foreach (var item in clients)
  8534. {
  8535. if (item.IsNumeric())
  8536. {
  8537. clientIds_int.Add(int.Parse(item));
  8538. }
  8539. }
  8540. }
  8541. if (clientIds_int.Count > 0)
  8542. {
  8543. var _clientDatas = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && clientIds_int.Contains(it.Id)).ToList();
  8544. foreach (var client in _clientDatas)
  8545. {
  8546. //男
  8547. if (client.Sex == 0) guestName += $"Mr.";
  8548. //女
  8549. else if (client.Sex == 1) guestName += $"Ms.";
  8550. if (!String.IsNullOrEmpty(client.FirstName + client.LastName))
  8551. {
  8552. guestName += $"{string.Join("", client.FirstName.GetTotalPingYin()).ToUpper()} {string.Join("", client.LastName.GetTotalPingYin()).ToUpper()},";
  8553. }
  8554. //guestName += $"{client.Pinyin},";
  8555. }
  8556. if (guestName.Length > 0)
  8557. {
  8558. guestName = guestName.Substring(0, guestName.Length - 1);
  8559. }
  8560. }
  8561. else
  8562. {
  8563. guestName = hr.GuestName;
  8564. }
  8565. Bookmark mark = doc.Range.Bookmarks["GName"];
  8566. mark.Text = guestName;
  8567. }
  8568. //房间介绍
  8569. if (doc.Range.Bookmarks["ROOM"] != null)
  8570. {
  8571. Bookmark mark = doc.Range.Bookmarks["ROOM"];
  8572. mark.Text = hr.RoomExplanation;
  8573. }
  8574. //报价描述
  8575. if (doc.Range.Bookmarks["NOTE"] != null)
  8576. {
  8577. Bookmark mark = doc.Range.Bookmarks["NOTE"];
  8578. Sys_SetData ss = _sqlSugar.Queryable<Sys_SetData>().First(a => a.Id == hr.ReservationsWebsite);
  8579. if (ss != null)
  8580. mark.Text = ss.Name;
  8581. }
  8582. //入住时间
  8583. if (doc.Range.Bookmarks["CheckIn"] != null)
  8584. {
  8585. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  8586. Bookmark mark = doc.Range.Bookmarks["CheckIn"];
  8587. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year + " ";
  8588. }
  8589. //退房时间
  8590. if (doc.Range.Bookmarks["CheckOut"] != null)
  8591. {
  8592. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  8593. Bookmark mark = doc.Range.Bookmarks["CheckOut"];
  8594. mark.Text = " " + dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8595. }
  8596. //日期
  8597. if (doc.Range.Bookmarks["DT"] != null)
  8598. {
  8599. Bookmark mark = doc.Range.Bookmarks["DT"];
  8600. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  8601. }
  8602. //名称
  8603. if (doc.Range.Bookmarks["VName"] != null)
  8604. {
  8605. Bookmark mark = doc.Range.Bookmarks["VName"];
  8606. mark.Text = hr.HotelName;
  8607. }
  8608. //号码
  8609. if (doc.Range.Bookmarks["VOUCHERNO"] != null)
  8610. {
  8611. Bookmark mark = doc.Range.Bookmarks["VOUCHERNO"];
  8612. mark.Text = hr.CheckNumber;
  8613. }
  8614. #endregion
  8615. strFileName += "VOUCHER.doc";
  8616. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  8617. doc.Save(fileDir);
  8618. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  8619. return Ok(JsonView(true, "操作成功!", Url));
  8620. }
  8621. else
  8622. {
  8623. return Ok(JsonView(false, "酒店确定号码未填写,无法生成Voucher!"));
  8624. }
  8625. }
  8626. else
  8627. {
  8628. return Ok(JsonView(false, "该条数据已删除或不存在!"));
  8629. }
  8630. }
  8631. catch (Exception ex)
  8632. {
  8633. return Ok(JsonView(false, ex.Message));
  8634. }
  8635. }
  8636. /// <summary>
  8637. /// 酒店预订
  8638. /// 生成VOUCHER
  8639. /// 2024.05.06 之后版本
  8640. /// </summary>
  8641. /// <param name="_dto"></param>
  8642. /// <returns></returns>
  8643. [HttpPost]
  8644. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8645. public async Task<IActionResult> PostHotelReservationsCreateVoucher(HotelReservationsCreateVoucherDto _dto)
  8646. {
  8647. #region 参数验证
  8648. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  8649. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8650. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  8651. #region 团组操作权限验证 76 酒店预定模块
  8652. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8653. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  8654. #endregion
  8655. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8656. #region 页面操作权限验证
  8657. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8658. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8659. #endregion
  8660. #endregion
  8661. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  8662. //判断数据是否完整
  8663. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "请先录入酒店预订信息!", ""));
  8664. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  8665. string strFileName = "HotelStatement/";
  8666. string guestNames = ""; //格式Mr.xxx Ms.xxx
  8667. List<HotelVoucherInfoView> vouchers = new List<HotelVoucherInfoView>();
  8668. #region 数据处理
  8669. List<int> guestIds = new List<int>();
  8670. int index = 0;
  8671. foreach (var item in hrDtas)
  8672. {
  8673. if (item.GuestName.Contains(","))
  8674. {
  8675. string[] guestIdArr = item.GuestName.Split(',');
  8676. foreach (var guestIdStr in guestIdArr)
  8677. {
  8678. bool guestBool = int.TryParse(guestIdStr, out int guestId);
  8679. if (guestBool)
  8680. {
  8681. guestIds.Add(guestId);
  8682. }
  8683. }
  8684. }
  8685. else guestNames += item.GuestName;
  8686. var voucherInfo = new HotelVoucherInfoView()
  8687. {
  8688. HotelName = item.HotelName,
  8689. CheckInDate = item.CheckInDate,
  8690. CheckOutDate = item.CheckOutDate,
  8691. ConfirmationNumber = item.DetermineNo.Trim(),
  8692. RoomType = item.RoomExplanation
  8693. };
  8694. vouchers.Add(voucherInfo);
  8695. }
  8696. if (guestIds.Count > 0)
  8697. {
  8698. guestIds = guestIds.Distinct().ToList();
  8699. var guestDatas = await _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && guestIds.Contains(it.Id)).ToListAsync();
  8700. if (guestDatas.Count > 0)
  8701. {
  8702. guestNames = "";
  8703. foreach (var guest in guestDatas)
  8704. {
  8705. string guestName = "";
  8706. if (guest.Sex == 0) guestName += @"MR.";
  8707. else if (guest.Sex == 1) guestName += @"MS.";
  8708. if (guest.Pinyin == null) guestName += $"{string.Join("", guest.LastName.GetTotalPingYin()).ToUpper()}/{string.Join("", guest.FirstName.GetTotalPingYin()).ToUpper()}";
  8709. else guestName += @$"{guest.Pinyin.Replace(" ", "")}";
  8710. guestNames += @$"{guestName.Trim()}、";
  8711. }
  8712. if (guestNames.Length > 0)
  8713. {
  8714. guestNames = guestNames.Substring(0, guestNames.Length - 1);
  8715. }
  8716. }
  8717. }
  8718. #endregion
  8719. //载入模板
  8720. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/Voucher-2024Versions.docx";
  8721. Document doc = new Document(sss);
  8722. DocumentBuilder builder = new DocumentBuilder(doc);
  8723. if (doc.Range.Bookmarks["GuestName"] != null)
  8724. {
  8725. Bookmark mark = doc.Range.Bookmarks["GuestName"];
  8726. mark.Text = guestNames;
  8727. }
  8728. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  8729. Aspose.Words.Tables.Table table = allTables[0] as Aspose.Words.Tables.Table;
  8730. vouchers = vouchers.OrderBy(it => it.CheckInDate).ToList();
  8731. for (int i = 1; i <= vouchers.Count; i++)
  8732. {
  8733. HotelVoucherInfoView hviv = vouchers[i - 1];
  8734. builder.MoveToCell(0, i, 0, 0);
  8735. builder.Write(hviv.HotelName);
  8736. builder.MoveToCell(0, i, 1, 0);
  8737. builder.Write(hviv.CheckInDate);
  8738. builder.MoveToCell(0, i, 2, 0);
  8739. builder.Write(hviv.CheckOutDate);
  8740. builder.MoveToCell(0, i, 3, 0);
  8741. builder.Write(hviv.RoomType);
  8742. builder.MoveToCell(0, i, 4, 0);
  8743. builder.Write(hviv.ConfirmationNumber);
  8744. }
  8745. //删除多余行
  8746. int currRowIndex = vouchers.Count + 1;
  8747. int delRows = 21 - currRowIndex;
  8748. if (delRows > 0)
  8749. {
  8750. for (int i = 0; i < delRows; i++)
  8751. {
  8752. table.Rows.RemoveAt(currRowIndex);
  8753. //cultivateRowIndex++;
  8754. }
  8755. }
  8756. strFileName += "VOUCHER.docx";
  8757. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  8758. doc.Save(fileDir);
  8759. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  8760. return Ok(JsonView(true, "操作成功!", Url));
  8761. }
  8762. /// <summary>
  8763. /// 酒店预订
  8764. /// 生成 预定成本 Excel
  8765. /// </summary>
  8766. /// <param name="_dto"></param>
  8767. /// <returns></returns>
  8768. [HttpPost]
  8769. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8770. public async Task<IActionResult> PostHotelReservationsPredictedCostFileDownload(HotelReservations_PCFD_DTO _dto)
  8771. {
  8772. #region 参数验证
  8773. var vadalitor = new HotelReservations_PCFD_DTOFoalidator();
  8774. var vadalitorRes = await vadalitor.ValidateAsync(_dto);
  8775. if (!vadalitorRes.IsValid)
  8776. {
  8777. var errors = new StringBuilder();
  8778. foreach (var valid in vadalitorRes.Errors) errors.AppendLine(valid.ErrorMessage);
  8779. return Ok(JsonView(StatusCodes.Status400BadRequest, errors.ToString(), ""));
  8780. }
  8781. #region 团组操作权限验证 76 酒店预定模块
  8782. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8783. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8784. #endregion
  8785. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8786. #region 页面操作权限验证
  8787. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8788. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8789. #endregion
  8790. #endregion
  8791. decimal _rate = 1.00M;
  8792. string _currency = "";
  8793. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.STid == 66).ToList();
  8794. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  8795. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "酒店预订费用未录入,不支持预定成本Excel导出", ""));
  8796. Grp_GroupCostParameter _GroupCostParameter = await _sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).FirstAsync();
  8797. if (_GroupCostParameter == null) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用未录入,不支持预定成本Excel导出", ""));
  8798. if (string.IsNullOrEmpty(_GroupCostParameter.Currency))
  8799. {
  8800. return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用“币种为录入”未录入,不支持预定成本Excel导出", ""));
  8801. }
  8802. _currency = _GroupCostParameter.Currency;
  8803. bool isIntType = int.TryParse(_currency, out int currId);
  8804. if (isIntType)
  8805. {
  8806. _currency = currDatas.Find(it => it.Id == currId)?.Name ?? "";
  8807. }
  8808. var teamRate = await _teamRateRep.PostGroupTeamRateItemByDiIdAndCTableId(1, _dto.DiId, 76);
  8809. var currInfo = teamRate.Find(it => it.CurrencyCode.Equals(_currency));
  8810. if (currInfo == null)
  8811. {
  8812. return Ok(JsonView(StatusCodes.Status400BadRequest, $"团组汇率-->酒店模块 {_currency} 币种未设置汇率,不支持预定成本Excel导出", ""));
  8813. }
  8814. if (!_currency.ToUpper().Equals("CNY"))
  8815. {
  8816. _rate = _GroupCostParameter.Rate;
  8817. }
  8818. _rate = currInfo.Rate;
  8819. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  8820. string strFileName = "HotelStatement/";
  8821. string guestNames = ""; //格式Mr.xxx Ms.xxx
  8822. List<HotelReservations_PCFD_View> pcfds = new List<HotelReservations_PCFD_View>();
  8823. var hotelSubData = _sqlSugar.Queryable<Grp_HotelReservationsContent>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToList();
  8824. var ccpData = _sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && it.DIId == _dto.DiId && it.CTable == 76).ToList();
  8825. #region 数据处理
  8826. foreach (var item in hrDtas)
  8827. {
  8828. var ccpInfo = ccpData.Where(it => it.DIId == _dto.DiId && it.CId == item.Id).First();
  8829. var roomInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 1).FirstOrDefault(); //房费
  8830. var breakfastInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 2).FirstOrDefault(); //早餐
  8831. var governmentRentInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 3).FirstOrDefault(); //地税
  8832. var cityTaxInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 4).FirstOrDefault(); //城市税
  8833. string roomCurr = currDatas.Find(it => it.Id == roomInfo.Currency)?.Name ?? "";
  8834. string singleRoomFeeStr = string.Empty,
  8835. doubleRoomFeeStr = string.Empty,
  8836. suiteRoomFeeStr = string.Empty,
  8837. otherRoomFeeStr = string.Empty,
  8838. payMoneyStr = string.Empty,
  8839. cardPriceStr = string.Empty;
  8840. if (roomCurr.Equals(_currency))
  8841. {
  8842. singleRoomFeeStr = $"{item.SingleRoomPrice.ToString("#0.00")} {_currency}";
  8843. doubleRoomFeeStr = $"{item.DoubleRoomPrice.ToString("#0.00")} {_currency}";
  8844. suiteRoomFeeStr = $"{item.SuiteRoomPrice.ToString("#0.00")} {_currency}";
  8845. otherRoomFeeStr = $"{item.OtherRoomPrice.ToString("#0.00")} {_currency}";
  8846. payMoneyStr = $"{ccpInfo.PayMoney.ToString("#0.00")} {_currency}";
  8847. cardPriceStr = $"{item.CardPrice.ToString("#0.00")} {_currency}";
  8848. }
  8849. else
  8850. {
  8851. singleRoomFeeStr = $"{(item.SingleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SingleRoomPrice.ToString("#0.00")} {roomCurr}";
  8852. doubleRoomFeeStr = $"{(item.DoubleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.DoubleRoomPrice.ToString("#0.00")} {roomCurr}";
  8853. suiteRoomFeeStr = $"{(item.SuiteRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SuiteRoomPrice.ToString("#0.00")} {roomCurr}";
  8854. otherRoomFeeStr = $"{(item.OtherRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.OtherRoomPrice.ToString("#0.00")} {roomCurr}";
  8855. payMoneyStr = $"{(ccpInfo.PayMoney / _rate).ToString("#0.00")} {_currency}\r\n{ccpInfo.PayMoney.ToString("#0.00")} {roomCurr}";
  8856. cardPriceStr = $"{(item.CardPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.CardPrice.ToString("#0.00")} {roomCurr}";
  8857. }
  8858. string breakfastPriceStr = string.Empty,
  8859. breakfastCurrency = currDatas.Find(it => it.Id == item.BreakfastCurrency)?.Name ?? "",
  8860. governmentRentStr = string.Empty,
  8861. governmentRentCurrency = currDatas.Find(it => it.Id == item.GovernmentRentCurrency)?.Name ?? "",
  8862. cityTaxStrStr = string.Empty,
  8863. cityTaxStrCurrency = currDatas.Find(it => it.Id == item.CityTaxCurrency)?.Name ?? "";
  8864. breakfastPriceStr = $"{breakfastInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == breakfastInfo?.Currency)?.Name}";
  8865. governmentRentStr = $"{governmentRentInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == governmentRentInfo?.Currency)?.Name}";
  8866. cityTaxStrStr = $"{cityTaxInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == cityTaxInfo?.Currency)?.Name}";
  8867. pcfds.Add(new HotelReservations_PCFD_View()
  8868. {
  8869. City = item.City,
  8870. HotelName = item.HotelName,
  8871. Date = $"{item.CheckInDate} - {item.CheckOutDate}",
  8872. // SingleRoomCount = item.SingleRoomCount,
  8873. SingleRoomPrice = singleRoomFeeStr,
  8874. // DoubleRoomCount = item.DoubleRoomCount,
  8875. DoubleRoomPrice = doubleRoomFeeStr,
  8876. //SuiteRoomCount = item.SuiteRoomCount,
  8877. SuiteRoomPrice = suiteRoomFeeStr,
  8878. OtherRoomPrice = otherRoomFeeStr,
  8879. //OtherRoomCount = item.OtherRoomCount,
  8880. BreakfastPrice = breakfastPriceStr,
  8881. GovernmentRent = governmentRentStr,
  8882. CityTax = cityTaxStrStr,
  8883. RoomExplanation = item.RoomExplanation,
  8884. PayTypeName = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.Id == roomInfo.PayDId).First()?.Name ?? "",
  8885. PayTime = roomInfo.ConsumptionDate,
  8886. BankNo = roomInfo.BankNo,
  8887. PayMoney = payMoneyStr,
  8888. //PayMoneys = ccpInfo.PayMoney.ToString("#0.00"),
  8889. ConsumptionPatterns = roomInfo.ConsumptionPatterns,
  8890. CardPrice = cardPriceStr,
  8891. Remark = ccpInfo.Remark
  8892. });
  8893. }
  8894. #endregion
  8895. //载入模板
  8896. WorkbookDesigner designer = new WorkbookDesigner();
  8897. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/酒店预订成本.xls");
  8898. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == _dto.DiId).First();
  8899. var userInfo = _sqlSugar.Queryable<Sys_Users>().Where(it => it.Id == hrDtas[0].CreateUserId).First();
  8900. designer.SetDataSource("TourNo", groupInfo.TourCode);
  8901. designer.SetDataSource("TeamName", $"{groupInfo.TeamName} 团组成本币种:{_currency} 团组汇率-->酒店模块汇率:{_rate.ToString("#0.0000")}");
  8902. designer.SetDataSource("Opertor", userInfo.CnName);
  8903. DataTable dt = CommonFun.GetDataTableFromIList<HotelReservations_PCFD_View>(pcfds);
  8904. dt.TableName = "ViewMyHotelReservations";
  8905. designer.SetDataSource(dt);
  8906. designer.Process();
  8907. string fileName = ($"HotelReservation/{groupInfo.TeamName}_酒店预订成本_" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xls").Replace(":", "");
  8908. string serverPath = AppSettingsHelper.Get("ExcelBasePath") + fileName;
  8909. designer.Workbook.Save(serverPath);
  8910. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  8911. #region 删除指定行
  8912. bool singleDel = true, doubleDel = true, suiteDel = true, otherDel = true, zcDel = true, dsDel = true, cssDel = true, cpDel = true, remarkDel = true;
  8913. int singleIndex = dt.Columns["SingleRoomPrice"].Ordinal,
  8914. doubleIndex = dt.Columns["DoubleRoomPrice"].Ordinal,
  8915. suiteIndex = dt.Columns["SuiteRoomPrice"].Ordinal,
  8916. otherIndex = dt.Columns["OtherRoomPrice"].Ordinal,
  8917. zcIndex = dt.Columns["BreakfastPrice"].Ordinal,
  8918. dsIndex = dt.Columns["GovernmentRent"].Ordinal,
  8919. cssIndex = dt.Columns["CityTax"].Ordinal,
  8920. cpIndex = dt.Columns["ConsumptionPatterns"].Ordinal,
  8921. remarkIndex = dt.Columns["Remark"].Ordinal;
  8922. //删除指定列
  8923. foreach (DataRow item in dt.Rows)
  8924. {
  8925. string singleStr = item["SingleRoomPrice"].ToString();
  8926. bool containsDigitButNotZero1 = !singleStr.StartsWith("0") && Regex.IsMatch(singleStr, @"[1-9]");
  8927. if (containsDigitButNotZero1) singleDel = false;
  8928. singleIndex = dt.Columns["SingleRoomPrice"].Ordinal;
  8929. string doubleStr = item["DoubleRoomPrice"].ToString();
  8930. bool containsDigitButNotZero2 = !doubleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  8931. if (containsDigitButNotZero2) doubleDel = false;
  8932. string suiteStr = item["SuiteRoomPrice"].ToString();
  8933. bool containsDigitButNotZero3 = !singleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  8934. if (containsDigitButNotZero3) suiteDel = false;
  8935. string otherStr = item["OtherRoomPrice"].ToString();
  8936. bool containsDigitButNotZero4 = !otherStr.StartsWith("0") && Regex.IsMatch(otherStr, @"[1-9]");
  8937. if (containsDigitButNotZero4) otherDel = false;
  8938. string zcStr = item["BreakfastPrice"].ToString();
  8939. bool containsDigitButNotZero5 = !zcStr.StartsWith("0") && Regex.IsMatch(zcStr, @"[1-9]");
  8940. if (containsDigitButNotZero5) zcDel = false;
  8941. string dsStr = item["GovernmentRent"].ToString();
  8942. bool containsDigitButNotZero6 = !dsStr.StartsWith("0") && Regex.IsMatch(dsStr, @"[1-9]");
  8943. if (containsDigitButNotZero6) dsDel = false;
  8944. string cssStr = item["CityTax"].ToString();
  8945. bool containsDigitButNotZero7 = !cssStr.StartsWith("0") && Regex.IsMatch(cssStr, @"[1-9]");
  8946. if (containsDigitButNotZero7) cssDel = false;
  8947. string cpStr = item["ConsumptionPatterns"].ToString();
  8948. if (!string.IsNullOrEmpty(cpStr)) cpDel = false;
  8949. string remarkStr = item["Remark"].ToString();
  8950. if (!string.IsNullOrEmpty(remarkStr)) remarkDel = false;
  8951. }
  8952. DeleteColumn(serverPath, remarkIndex, remarkDel);
  8953. DeleteColumn(serverPath, cpIndex, cpDel);
  8954. DeleteColumn(serverPath, dsIndex, dsDel);
  8955. DeleteColumn(serverPath, cssIndex, cssDel);
  8956. DeleteColumn(serverPath, zcIndex, zcDel);
  8957. DeleteColumn(serverPath, otherIndex, otherDel);
  8958. DeleteColumn(serverPath, suiteIndex, suiteDel);
  8959. DeleteColumn(serverPath, doubleIndex, doubleDel);
  8960. DeleteColumn(serverPath, singleIndex, singleDel);
  8961. #endregion
  8962. //只保留第一个表格
  8963. DeleteSheet(serverPath);
  8964. return Ok(JsonView(true, "操作成功", url = rst));
  8965. }
  8966. /// <summary>
  8967. /// 删除指定列
  8968. /// </summary>
  8969. /// <param name="file"></param>
  8970. /// <param name="columnIndex"></param>
  8971. /// <param name="isDel"></param>
  8972. private void DeleteColumn(string file, int columnIndex, bool isDel)
  8973. {
  8974. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  8975. //wb.Save(file);
  8976. Aspose.Cells.Worksheet sheet1 = wb.Worksheets[0];
  8977. if (sheet1 != null)
  8978. {
  8979. if (isDel)
  8980. {
  8981. Cells cells = sheet1.Cells;
  8982. cells.DeleteColumn(columnIndex);
  8983. }
  8984. }
  8985. wb.Save(file);
  8986. }
  8987. /// <summary>
  8988. /// 删除sheet
  8989. /// </summary>
  8990. /// <param name="file"></param>
  8991. /// <param name="sheetName"></param>
  8992. private void DeleteSheet(string file, string sheetName = "")
  8993. {
  8994. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  8995. //wb.Save(file);
  8996. List<string> sheets = new List<string>();
  8997. foreach (var item in wb.Worksheets)
  8998. {
  8999. sheets.Add(item.Name);
  9000. }
  9001. if (sheets.Count > 0)
  9002. {
  9003. sheets.RemoveAt(0);//不删除第一个sheet
  9004. foreach (var item in sheets)
  9005. {
  9006. wb.Worksheets.RemoveAt(item);
  9007. }
  9008. }
  9009. wb.Save(file);
  9010. }
  9011. /// <summary>
  9012. /// 酒店预订
  9013. /// 确认单
  9014. /// </summary>
  9015. /// <param name="_dto"></param>
  9016. /// <returns></returns>
  9017. [HttpPost]
  9018. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9019. public async Task<IActionResult> PostHotelReservationsConfirmationSlip(HotelReservationsConfirmationSlipDto _dto)
  9020. {
  9021. try
  9022. {
  9023. #region 参数验证
  9024. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  9025. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  9026. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  9027. #region 团组操作权限验证 76 酒店预定模块
  9028. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9029. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  9030. #endregion
  9031. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9032. #region 页面操作权限验证
  9033. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9034. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9035. #endregion
  9036. #endregion
  9037. //团组信息
  9038. Grp_DelegationInfo di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(a => a.Id == _dto.DiId);
  9039. //酒店数据
  9040. List<Grp_HotelReservations> listhoteldata = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(a => a.DiId == _dto.DiId && a.IsDel == 0).ToListAsync();
  9041. if (listhoteldata.Count < 0)
  9042. {
  9043. return Ok(JsonView(StatusCodes.Status400BadRequest, "当前团组暂无酒店预订信息!", ""));
  9044. }
  9045. //利datatable存储
  9046. DataTable dt = new DataTable();
  9047. dt.Columns.Add("CheckInDate", typeof(string));
  9048. dt.Columns.Add("City", typeof(string));
  9049. dt.Columns.Add("Hotel", typeof(string));
  9050. dt.Columns.Add("Room", typeof(string));
  9051. for (int i = 0; i < listhoteldata.Count; i++)
  9052. {
  9053. DateTime dayStart = Convert.ToDateTime(listhoteldata[i].CheckInDate);
  9054. DateTime dayEnd = Convert.ToDateTime(listhoteldata[i].CheckOutDate);
  9055. while (dayStart < dayEnd)
  9056. {
  9057. string temp = "";
  9058. DataRow row = dt.NewRow();
  9059. row["CheckInDate"] = dayStart.ToString("yyyy-MM-dd");
  9060. row["City"] = listhoteldata[i].City;
  9061. row["Hotel"] = listhoteldata[i].HotelName;
  9062. if (listhoteldata[i].SingleRoomCount > 0)
  9063. {
  9064. temp = listhoteldata[i].SingleRoomCount + "个单间" + "\r\n";
  9065. }
  9066. if (listhoteldata[i].DoubleRoomCount > 0)
  9067. {
  9068. temp = temp + listhoteldata[i].DoubleRoomCount + "个标间" + "\r\n";
  9069. }
  9070. if (listhoteldata[i].SuiteRoomCount > 0)
  9071. {
  9072. temp = temp + listhoteldata[i].SuiteRoomCount + "个套房" + "\r\n";
  9073. }
  9074. if (listhoteldata[i].OtherRoomCount > 0)
  9075. {
  9076. temp = temp + listhoteldata[i].OtherRoomCount + "个其他房型" + "\r\n";
  9077. }
  9078. row["Room"] = temp;
  9079. dt.Rows.Add(row);
  9080. dayStart = dayStart.AddDays(1);
  9081. }
  9082. }
  9083. Dictionary<string, string> dic = new Dictionary<string, string>();
  9084. dic.Add("Dele", di.TeamName);
  9085. dic.Add("City", di.VisitCountry);
  9086. //模板路径
  9087. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/酒店用房确认单-模板.doc";
  9088. //载入模板
  9089. Aspose.Words.Document doc = new Aspose.Words.Document(tempPath);
  9090. DocumentBuilder builder = new DocumentBuilder(doc);
  9091. foreach (var key in dic.Keys)
  9092. {
  9093. builder.MoveToBookmark(key);
  9094. builder.Write(dic[key]);
  9095. }
  9096. //获取word里所有表格
  9097. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  9098. //获取所填表格的序数
  9099. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  9100. var rowStart = tableOne.Rows[0]; //获取第1行
  9101. //循环赋值
  9102. for (int i = 0; i < dt.Rows.Count; i++)
  9103. {
  9104. builder.MoveToCell(0, i + 1, 0, 0);
  9105. builder.Write(dt.Rows[i]["CheckInDate"].ToString());
  9106. builder.MoveToCell(0, i + 1, 1, 0);
  9107. builder.Write(dt.Rows[i]["City"].ToString());
  9108. builder.MoveToCell(0, i + 1, 2, 0);
  9109. builder.Write(dt.Rows[i]["Hotel"].ToString());
  9110. builder.MoveToCell(0, i + 1, 3, 0);
  9111. builder.Write(dt.Rows[i]["Room"].ToString());
  9112. }
  9113. //删除多余行
  9114. while (tableOne.Rows.Count > dt.Rows.Count + 1)
  9115. {
  9116. tableOne.Rows.RemoveAt(dt.Rows.Count + 1);
  9117. }
  9118. string strFileName = di.TeamName + "酒店确认单.doc";
  9119. doc.Save(AppSettingsHelper.Get("WordBasePath") + "HotelStatement/" + strFileName);
  9120. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/HotelStatement/" + strFileName;
  9121. return Ok(JsonView(true, "成功", url));
  9122. }
  9123. catch (Exception ex)
  9124. {
  9125. return Ok(JsonView(StatusCodes.Status400BadRequest, ex.Message, ""));
  9126. }
  9127. }
  9128. #endregion
  9129. #region 团组状态
  9130. /// <summary>
  9131. /// 团组状态列表 Page
  9132. /// </summary>
  9133. /// <param name="dto">团组列表请求dto</param>
  9134. /// <returns></returns>
  9135. [HttpPost]
  9136. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9137. public async Task<IActionResult> PostGroupStatusPageList(GroupStatusListDto dto)
  9138. {
  9139. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  9140. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  9141. {
  9142. string sqlWhere = string.Empty;
  9143. if (dto.IsSure == 0) //未完成
  9144. {
  9145. sqlWhere += string.Format(@" And IsSure = 0");
  9146. }
  9147. else if (dto.IsSure == 1) //已完成
  9148. {
  9149. sqlWhere += string.Format(@" And IsSure = 1");
  9150. }
  9151. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  9152. {
  9153. string tj = dto.SearchCriteria;
  9154. 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}%')",
  9155. tj, tj, tj, tj, tj);
  9156. }
  9157. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  9158. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  9159. VisitDate,VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  9160. From (
  9161. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  9162. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  9163. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  9164. VisitDate,VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  9165. From Grp_DelegationInfo gdi
  9166. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  9167. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  9168. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  9169. Where gdi.IsDel = 0 {0}
  9170. ) temp ", sqlWhere);
  9171. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  9172. var _DelegationList = await _sqlSugar.SqlQueryable<GroupStatusView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  9173. return Ok(JsonView(true, "查询成功!", _DelegationList, total));
  9174. }
  9175. else
  9176. {
  9177. return Ok(JsonView(false, "查询失败"));
  9178. }
  9179. }
  9180. /// <summary>
  9181. /// 团组状态
  9182. /// 设置操作完成
  9183. /// </summary>
  9184. /// <param name="dto">团组列表请求dto</param>
  9185. /// <returns></returns>
  9186. [HttpPost]
  9187. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9188. public async Task<IActionResult> PostGroupStatusSetOperationComplete(GroupStatusSetOperationCompleteDto dto)
  9189. {
  9190. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  9191. Grp_DelegationInfo _DelegationInfo = new Grp_DelegationInfo()
  9192. {
  9193. Id = dto.Id,
  9194. IsSure = 1
  9195. };
  9196. var result = await _sqlSugar.Updateable(_DelegationInfo)
  9197. .UpdateColumns(it => new { it.IsSure })
  9198. .WhereColumns(it => new { it.Id })
  9199. .ExecuteCommandAsync();
  9200. if (result > 0)
  9201. {
  9202. return Ok(JsonView(true, "操作完成!"));
  9203. }
  9204. return Ok(JsonView(false, "操作失败!"));
  9205. }
  9206. #endregion
  9207. #region 保险费用录入
  9208. /// <summary>
  9209. /// 根据团组Id查询保险费用列表
  9210. /// </summary>
  9211. /// <param name="dto"></param>
  9212. /// <returns></returns>
  9213. [HttpPost]
  9214. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9215. public async Task<IActionResult> CustomersByDiId(CustomersByDiIdDto dto)
  9216. {
  9217. try
  9218. {
  9219. Result groupData = await _customersRep.CustomersByDiId(dto);
  9220. if (groupData.Code != 0)
  9221. {
  9222. return Ok(JsonView(false, groupData.Msg));
  9223. }
  9224. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9225. }
  9226. catch (Exception ex)
  9227. {
  9228. return Ok(JsonView(false, ex.Message));
  9229. }
  9230. }
  9231. /// <summary>
  9232. /// 根据保险费用Id查询保险费用详细
  9233. /// </summary>
  9234. /// <param name="dto"></param>
  9235. /// <returns></returns>
  9236. [HttpPost]
  9237. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9238. public async Task<IActionResult> CustomersById(CustomersByIdDto dto)
  9239. {
  9240. try
  9241. {
  9242. Result groupData = await _customersRep.CustomersById(dto);
  9243. if (groupData.Code != 0)
  9244. {
  9245. return Ok(JsonView(false, groupData.Msg));
  9246. }
  9247. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9248. }
  9249. catch (Exception ex)
  9250. {
  9251. return Ok(JsonView(false, ex.Message));
  9252. }
  9253. }
  9254. /// <summary>
  9255. /// 保险费用录入页面初始化绑定
  9256. /// </summary>
  9257. /// <param name="dto"></param>
  9258. /// <returns></returns>
  9259. [HttpPost]
  9260. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9261. public async Task<IActionResult> CustomersInitialize(CustomersInitializeDto dto)
  9262. {
  9263. try
  9264. {
  9265. Result groupData = await _customersRep.CustomersInitialize(dto);
  9266. if (groupData.Code != 0)
  9267. {
  9268. return Ok(JsonView(false, groupData.Msg));
  9269. }
  9270. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9271. }
  9272. catch (Exception ex)
  9273. {
  9274. return Ok(JsonView(false, ex.Message));
  9275. }
  9276. }
  9277. /// <summary>
  9278. /// 保险费用操作(Status:1.新增,2.修改)
  9279. /// </summary>
  9280. /// <param name="dto"></param>
  9281. /// <returns></returns>
  9282. [HttpPost]
  9283. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9284. public async Task<IActionResult> OpCustomers(OpCustomersDto dto)
  9285. {
  9286. try
  9287. {
  9288. Result groupData = await _customersRep.OpCustomers(dto);
  9289. if (groupData.Code != 0)
  9290. {
  9291. return Ok(JsonView(false, groupData.Msg));
  9292. }
  9293. #region 应用推送
  9294. try
  9295. {
  9296. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  9297. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  9298. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  9299. }
  9300. catch (Exception ex)
  9301. {
  9302. }
  9303. #endregion
  9304. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9305. }
  9306. catch (Exception ex)
  9307. {
  9308. return Ok(JsonView(false, ex.Message));
  9309. }
  9310. }
  9311. /// <summary>
  9312. /// 保险文件上传
  9313. /// </summary>
  9314. /// <param name="file"></param>
  9315. /// <returns></returns>
  9316. [HttpPost]
  9317. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9318. public async Task<IActionResult> UploadCus(IFormFile file)
  9319. {
  9320. try
  9321. {
  9322. if (file != null)
  9323. {
  9324. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  9325. //文件名称
  9326. string projectFileName = file.FileName;
  9327. //上传的文件的路径
  9328. string filePath = "";
  9329. if (!Directory.Exists(fileDir))
  9330. {
  9331. Directory.CreateDirectory(fileDir);
  9332. }
  9333. //上传的文件的路径
  9334. filePath = fileDir + $@"\保险费用文件上传\{projectFileName}";
  9335. using (FileStream fs = System.IO.File.Create(filePath))
  9336. {
  9337. file.CopyTo(fs);
  9338. fs.Flush();
  9339. }
  9340. return Ok(JsonView(true, "上传成功!", projectFileName));
  9341. }
  9342. else
  9343. {
  9344. return Ok(JsonView(false, "上传失败!"));
  9345. }
  9346. }
  9347. catch (Exception ex)
  9348. {
  9349. return Ok(JsonView(false, "程序错误!"));
  9350. throw;
  9351. }
  9352. }
  9353. /// <summary>
  9354. /// 保险删除指定文件
  9355. /// </summary>
  9356. /// <param name="dto"></param>
  9357. /// <returns></returns>
  9358. [HttpPost]
  9359. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9360. public async Task<IActionResult> DelFileCus(DelFileDto dto)
  9361. {
  9362. try
  9363. {
  9364. string filePath = "";
  9365. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  9366. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  9367. //int id = 0;
  9368. filePath = fileDir + "/保险费用文件上传/" + dto.fileName;
  9369. // 删除该文件
  9370. try
  9371. {
  9372. System.IO.File.Delete(filePath);
  9373. 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()
  9374. {
  9375. Attachment = "",
  9376. }).ExecuteCommandAsync();
  9377. if (result != 0)
  9378. {
  9379. return Ok(JsonView(true, "成功!"));
  9380. }
  9381. else
  9382. {
  9383. return Ok(JsonView(false, "失败!"));
  9384. }
  9385. }
  9386. catch (Exception)
  9387. {
  9388. 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()
  9389. {
  9390. Attachment = "",
  9391. }).ExecuteCommandAsync();
  9392. if (result != 0)
  9393. {
  9394. return Ok(JsonView(true, "成功!"));
  9395. }
  9396. else
  9397. {
  9398. return Ok(JsonView(false, "失败!"));
  9399. }
  9400. }
  9401. }
  9402. catch (Exception ex)
  9403. {
  9404. return Ok(JsonView(false, "程序错误!"));
  9405. throw;
  9406. }
  9407. }
  9408. /// <summary>
  9409. /// 保险费用操作(删除)
  9410. /// </summary>
  9411. /// <param name="dto"></param>
  9412. /// <returns></returns>
  9413. [HttpPost]
  9414. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9415. public async Task<IActionResult> DelCustomers(DelBaseDto dto)
  9416. {
  9417. try
  9418. {
  9419. var res = await _customersRep.SoftDeleteByIdAsync<Grp_Customers>(dto.Id.ToString(), dto.DeleteUserId);
  9420. if (!res)
  9421. {
  9422. return Ok(JsonView(false, "删除失败"));
  9423. }
  9424. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 82).SetColumns(a => new Grp_CreditCardPayment()
  9425. {
  9426. IsDel = 1,
  9427. DeleteUserId = dto.DeleteUserId,
  9428. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  9429. }).ExecuteCommandAsync();
  9430. return Ok(JsonView(true, "删除成功!"));
  9431. }
  9432. catch (Exception ex)
  9433. {
  9434. return Ok(JsonView(false, "程序错误!"));
  9435. throw;
  9436. }
  9437. }
  9438. #endregion
  9439. #region 接团客户名单 PageId 104
  9440. /// <summary>
  9441. /// 接团客户名单
  9442. /// 迁移数据(慎用!)
  9443. /// </summary>
  9444. /// <param name="dto"></param>
  9445. /// <returns></returns>
  9446. [HttpPost]
  9447. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9448. public async Task<IActionResult> PostTourClientListChange()
  9449. {
  9450. try
  9451. {
  9452. _sqlSugar.ChangeDatabase(DBEnum.OA2014DB);
  9453. //var groupClinetData1
  9454. string sql = string.Format($"Select * From DeleClient Where Isdel = 0");
  9455. var oldOAClientList = await _sqlSugar.SqlQueryable<OA2021_DeleClient>(sql).Where(it => it.Isdel == 0).ToListAsync();
  9456. int updateCount = 0;
  9457. if (oldOAClientList.Count > 0)
  9458. {
  9459. _sqlSugar.ChangeDatabase(DBEnum.OA2023DB);
  9460. _sqlSugar.BeginTran();
  9461. var clientComInfos = _sqlSugar.Queryable<Crm_CustomerCompany>().Where(it => it.IsDel == 0).ToList();
  9462. var clientInfos = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0).ToList();
  9463. foreach (var item in oldOAClientList)
  9464. {
  9465. int comId = 0;
  9466. string format = "yyyy-MM-dd HH:mm:ss";
  9467. string data11 = "1990-01-01 00:00";
  9468. var data1 = IsValidDate(item.OPdate, format);
  9469. if (data1) data11 = item.OPdate;
  9470. //客户公司验证
  9471. if (!string.IsNullOrEmpty(item.Company))
  9472. {
  9473. var clientComInfo = clientComInfos.Where(it => it.CompanyFullName.Equals(item.Company)).FirstOrDefault();
  9474. if (clientComInfo == null) // add
  9475. {
  9476. var addInfo = new Crm_CustomerCompany()
  9477. {
  9478. CompanyAbbreviation = "",
  9479. CompanyFullName = item.Company,
  9480. Address = "",
  9481. PostCodes = "",
  9482. LastedOpUserId = item.OPer,
  9483. LastedOpDt = Convert.ToDateTime(data11),
  9484. CreateUserId = item.OPer,
  9485. CreateTime = Convert.ToDateTime(data11),
  9486. IsDel = 0
  9487. };
  9488. var comId1 = _sqlSugar.Insertable<Crm_CustomerCompany>(addInfo).ExecuteReturnIdentity();
  9489. if (comId1 > 0) comId = comId1;
  9490. }
  9491. else comId = clientComInfo.Id;
  9492. }
  9493. //客户人员验证
  9494. int clientId = 0;
  9495. string name = item.LastName + item.Name;
  9496. if (!string.IsNullOrEmpty(name))
  9497. {
  9498. var clientInfo = clientInfos.Where(it => (it.LastName + it.FirstName).Equals(name)).FirstOrDefault();
  9499. if (clientInfo == null)
  9500. {
  9501. DateTime? dateTime = null;
  9502. var isDt = DateTime.TryParse(item.Birthday, out DateTime birthDayDt);
  9503. if (isDt) dateTime = birthDayDt;
  9504. var addInfo1 = new Crm_DeleClient()
  9505. {
  9506. CrmCompanyId = comId,
  9507. DiId = -1,
  9508. LastName = item.LastName,
  9509. FirstName = item.Name,
  9510. OldName = "",
  9511. Pinyin = item.Pinyin,
  9512. Sex = item.Sex == "男" ? 0 : item.Sex == "女" ? 1 : -1,
  9513. Marriage = 0,
  9514. Phone = item.Phone,
  9515. Job = item.Job,
  9516. BirthDay = dateTime
  9517. };
  9518. var clientId1 = _sqlSugar.Insertable<Crm_DeleClient>(addInfo1).ExecuteReturnIdentity();
  9519. if (clientId1 > 0) clientId = clientId1;
  9520. }
  9521. else clientId = clientInfo.Id;
  9522. }
  9523. if (clientId < 1)
  9524. {
  9525. continue;
  9526. }
  9527. int airType = 0;
  9528. if (item.AirType == "超经舱") airType = 459;
  9529. else if (item.AirType == "公务舱") airType = 458;
  9530. else if (item.AirType == "经济舱") airType = 460;
  9531. else if (item.AirType == "其他") airType = 565;
  9532. else if (item.AirType == "头等舱") airType = 457;
  9533. var _TourClientListEntity = new Grp_TourClientList()
  9534. {
  9535. DiId = item.Diid,
  9536. ClientId = clientId,
  9537. CreateUserId = item.OPer,
  9538. CreateTime = Convert.ToDateTime(data11),
  9539. Remark = item.Remark,
  9540. IsDel = item.Isdel,
  9541. ShippingSpaceTypeId = airType,
  9542. ShippingSpaceSpecialNeeds = item.AirRemark,
  9543. HotelSpecialNeeds = item.RoomType
  9544. };
  9545. var _TourClientList = _sqlSugar.Insertable<Grp_TourClientList>(_TourClientListEntity).ExecuteCommand();
  9546. if (_TourClientList > 0)
  9547. {
  9548. updateCount++;
  9549. }
  9550. }
  9551. _sqlSugar.CommitTran();
  9552. }
  9553. return Ok(JsonView(true, $"更新条数:{updateCount}条"));
  9554. }
  9555. catch (Exception ex)
  9556. {
  9557. _sqlSugar.RollbackTran();
  9558. return Ok(JsonView(false, ex.Message));
  9559. }
  9560. return Ok(JsonView(true));
  9561. }
  9562. private bool IsValidDate(string dateString, string format)
  9563. {
  9564. DateTime dateValue;
  9565. bool valid = DateTime.TryParseExact(dateString, format, CultureInfo.InvariantCulture, DateTimeStyles.None, out dateValue);
  9566. return valid;
  9567. }
  9568. /// <summary>
  9569. /// 接团客户名单
  9570. /// 根据团组Id查询List
  9571. /// </summary>
  9572. /// <param name="dto"></param>
  9573. /// <returns></returns>
  9574. [HttpPost]
  9575. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9576. public async Task<IActionResult> PostTourClientListByDiId(TourClientListByDiIdDto _dto)
  9577. {
  9578. #region 参数验证
  9579. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId"));
  9580. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9581. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId!"));
  9582. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9583. #region 页面操作权限验证
  9584. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9585. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9586. #endregion
  9587. #endregion
  9588. var viewData = await _tourClientListRep._ItemByDiId(_dto.PortType, _dto.DiId);
  9589. if (viewData.Code != 0)
  9590. {
  9591. return Ok(JsonView(false, viewData.Msg));
  9592. }
  9593. return Ok(JsonView(viewData.Data));
  9594. }
  9595. /// <summary>
  9596. /// 接团客户名单
  9597. /// 基础数据 Init
  9598. /// </summary>
  9599. /// <param name="_dto"></param>
  9600. /// <returns></returns>
  9601. [HttpPost]
  9602. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9603. public async Task<IActionResult> PostTourClientListBasicDataInit(TourClientListBasicDataInitDto _dto)
  9604. {
  9605. #region 参数验证
  9606. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9607. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9608. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9609. #region 页面操作权限验证
  9610. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9611. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9612. #endregion
  9613. #endregion
  9614. var viewData = await _tourClientListRep._BasicDataInit(_dto.PortType);
  9615. if (viewData.Code != 0)
  9616. {
  9617. return Ok(JsonView(false, viewData.Msg));
  9618. }
  9619. return Ok(JsonView(viewData.Data));
  9620. }
  9621. /// <summary>
  9622. /// 接团客户名单
  9623. /// 根据 Id查询 Details
  9624. /// </summary>
  9625. /// <param name="_dto"></param>
  9626. /// <returns></returns>
  9627. [HttpPost]
  9628. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9629. public async Task<IActionResult> PostTourClientListDetails(TourClientListDetailsDto _dto)
  9630. {
  9631. #region 参数验证
  9632. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9633. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9634. if (_dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  9635. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9636. #region 页面操作权限验证
  9637. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9638. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9639. #endregion
  9640. #endregion
  9641. var viewData = await _tourClientListRep._Details(_dto.PortType, _dto.Id);
  9642. if (viewData.Code != 0)
  9643. {
  9644. return Ok(JsonView(false, viewData.Msg));
  9645. }
  9646. return Ok(JsonView(viewData.Data));
  9647. }
  9648. /// <summary>
  9649. /// 接团客户名单
  9650. /// Add Or Edit
  9651. /// </summary>
  9652. /// <param name="_dto"></param>
  9653. /// <returns></returns>
  9654. [HttpPost]
  9655. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9656. public async Task<IActionResult> PostTourClientListAddOrEdit(TourClientListAddOrEditDto _dto)
  9657. {
  9658. #region 参数验证
  9659. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9660. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9661. if (_dto.Id < 0) return Ok(JsonView(false, "请传入有效的Id参数!"));
  9662. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9663. #region 页面操作权限验证
  9664. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9665. if (_dto.Id == 0) //添加
  9666. {
  9667. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  9668. }
  9669. else if (_dto.Id >= 0) //修改
  9670. {
  9671. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  9672. }
  9673. #endregion
  9674. #endregion
  9675. var viewData = await _tourClientListRep._AddOrEdit(_dto);
  9676. if (viewData.Code != 0)
  9677. {
  9678. return Ok(JsonView(false, viewData.Msg));
  9679. }
  9680. return Ok(JsonView(true));
  9681. }
  9682. /// <summary>
  9683. /// 接团客户名单
  9684. /// AddMultiple(添加多个)
  9685. /// </summary>
  9686. /// <param name="_dto"></param>
  9687. /// <returns></returns>
  9688. [HttpPost]
  9689. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9690. public async Task<IActionResult> PostTourClientListAddMultiple(TourClientListAddMultipleDto _dto)
  9691. {
  9692. #region 参数验证
  9693. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9694. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9695. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9696. #region 页面操作权限验证
  9697. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9698. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  9699. #endregion
  9700. #endregion
  9701. var viewData = await _tourClientListRep._AddMultiple(_dto);
  9702. if (viewData.Code != 0)
  9703. {
  9704. return Ok(JsonView(false, viewData.Msg));
  9705. }
  9706. return Ok(JsonView(true));
  9707. }
  9708. /// <summary>
  9709. /// 接团客户名单
  9710. /// Del
  9711. /// </summary>
  9712. /// <param name="_dto"></param>
  9713. /// <returns></returns>
  9714. [HttpPost]
  9715. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9716. public async Task<IActionResult> PostTourClientListDel(TourClientListDelDto _dto)
  9717. {
  9718. #region 参数验证
  9719. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9720. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9721. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9722. #region 页面操作权限验证
  9723. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9724. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  9725. #endregion
  9726. #endregion
  9727. var viewData = await _tourClientListRep._Del(_dto.Id, _dto.UserId);
  9728. if (viewData.Code != 0)
  9729. {
  9730. return Ok(JsonView(false, viewData.Msg));
  9731. }
  9732. return Ok(JsonView(true));
  9733. }
  9734. /// <summary>
  9735. /// 接团客户名单
  9736. /// 文件下载 客户名单
  9737. /// </summary>
  9738. /// <param name="_dto"></param>
  9739. /// <returns></returns>
  9740. [HttpPost]
  9741. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9742. public async Task<IActionResult> PostTourClientListDownloadFile(PostTourClientListDownloadFile _dto)
  9743. {
  9744. #region 参数验证
  9745. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9746. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9747. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数"));
  9748. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9749. #region 页面操作权限验证
  9750. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9751. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9752. #endregion
  9753. #endregion
  9754. string clientSql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  9755. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  9756. From Grp_TourClientList tcl
  9757. Left Join
  9758. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  9759. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  9760. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  9761. From Crm_DeleClient dc
  9762. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  9763. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  9764. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  9765. Where dc.IsDel = 0) temp
  9766. On temp.DcId =tcl.ClientId
  9767. Where tcl.IsDel = 0 And tcl.DiId = {0}", _dto.DiId);
  9768. List<TourClientListDetailsView> DcList = await _sqlSugar.SqlQueryable<TourClientListDetailsView>(clientSql).ToListAsync();
  9769. if (DcList.Count < 0) return Ok(JsonView(false, "该团未录入客户名单!"));
  9770. //载入模板
  9771. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/dwon_团组人员列表模板.doc";
  9772. if (_dto.Language == 1)
  9773. {
  9774. tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/EN_Down_团组人员列表模板.doc";
  9775. }
  9776. //载入模板
  9777. var doc = new Document(tempPath);
  9778. DocumentBuilder builder = new DocumentBuilder(doc);
  9779. //获取word里所有表格
  9780. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  9781. //获取所填表格的序数
  9782. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  9783. var rowStart = tableOne.Rows[0]; //获取第1行
  9784. if (_dto.Language == 0)
  9785. {
  9786. //循环赋值
  9787. for (int i = 0; i < DcList.Count; i++)
  9788. {
  9789. builder.MoveToCell(0, i + 1, 0, 0);
  9790. builder.Write(DcList[i].LastName + DcList[i].FirstName);
  9791. builder.MoveToCell(0, i + 1, 1, 0);
  9792. int sex = DcList[i].Sex;
  9793. string sexStr = string.Empty;
  9794. if (sex == 0) sexStr = "男";
  9795. else if (sex == 1) sexStr = "女";
  9796. else sexStr = "未设置";
  9797. builder.Write(sexStr);
  9798. builder.MoveToCell(0, i + 1, 2, 0);
  9799. string birthDay = DcList[i].BirthDay;
  9800. string birthDayStr = string.Empty;
  9801. if (!string.IsNullOrEmpty(birthDay))
  9802. {
  9803. birthDayStr = Convert.ToDateTime(birthDay).ToString("yyyy-MM-dd");
  9804. }
  9805. builder.Write(birthDayStr);
  9806. builder.MoveToCell(0, i + 1, 3, 0);
  9807. string company = "";
  9808. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  9809. {
  9810. company = DcList[i].CompanyFullName.ToString();
  9811. }
  9812. builder.Write(company);
  9813. builder.MoveToCell(0, i + 1, 4, 0);
  9814. builder.Write(DcList[i].Job);
  9815. }
  9816. }
  9817. else if (_dto.Language == 1)
  9818. {
  9819. List<Res_PositionEnglishComparison> listPEC = _setDataRep.Query<Res_PositionEnglishComparison>(s => s.IsDel == 0).ToList();
  9820. List<Res_CompanyEnglishComparison> listCEC = _setDataRep.Query<Res_CompanyEnglishComparison>(s => s.IsDel == 0).ToList();
  9821. //循环赋值
  9822. for (int i = 0; i < DcList.Count; i++)
  9823. {
  9824. string PYName = "";
  9825. if (DcList[i].Pinyin.Length > 0 && DcList[i].Pinyin.IndexOf('/') > -1)
  9826. {
  9827. string PY_Last = DcList[i].Pinyin.Split('/')[0];
  9828. string PY_First = DcList[i].Pinyin.Split('/')[1];
  9829. PYName = PY_First + " " + PY_Last;
  9830. }
  9831. else
  9832. {
  9833. string PY_Last = DcList[i].LastName.GetTotalPingYin().Count > 0 ? DcList[i].LastName.GetTotalPingYin()[0].ToUpper() : "";
  9834. string PY_First = DcList[i].FirstName.GetTotalPingYin().Count > 0 ? DcList[i].FirstName.GetTotalPingYin()[0].ToUpper() : "";
  9835. PYName = PY_First + " " + PY_Last;
  9836. }
  9837. builder.MoveToCell(0, i + 1, 0, 0);
  9838. builder.Write(PYName);
  9839. string sex = DcList[i].Sex == 0 ? "Male" : DcList[i].Sex == 1 ? "Female" : "";
  9840. builder.MoveToCell(0, i + 1, 1, 0);
  9841. builder.Write(sex);
  9842. DateTime birthDt;
  9843. bool b_birth = DateTime.TryParse(DcList[i].BirthDay, out birthDt);
  9844. string birthday = b_birth ? birthDt.ToString("yyyy-MM-dd") : "";
  9845. builder.MoveToCell(0, i + 1, 2, 0);
  9846. builder.Write(birthday);
  9847. string company = "";
  9848. try
  9849. {
  9850. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  9851. {
  9852. //查询对照表
  9853. Res_CompanyEnglishComparison tempCec = listCEC.FirstOrDefault(s => s.zhName.Contains(DcList[i].CompanyFullName.ToString().Trim()));
  9854. if (tempCec != null)
  9855. {
  9856. company = tempCec.enName;
  9857. }
  9858. //翻译
  9859. else
  9860. {
  9861. company = await YouDaoApiTools.GetOCR_ReTrans(DcList[i].CompanyFullName.ToString().Trim());
  9862. }
  9863. }
  9864. }
  9865. catch (Exception)
  9866. {
  9867. }
  9868. builder.MoveToCell(0, i + 1, 3, 0);
  9869. builder.Write(company);
  9870. string job = "";
  9871. try
  9872. {
  9873. if (!string.IsNullOrEmpty(DcList[i].Job.ToString()))
  9874. {
  9875. //查询对照表
  9876. Res_PositionEnglishComparison tempPec = listPEC.FirstOrDefault(s => s.zhName == DcList[i].Job.ToString().Trim());
  9877. if (tempPec != null)
  9878. {
  9879. job = tempPec.enName;
  9880. }
  9881. //翻译
  9882. else
  9883. {
  9884. job = await YouDaoApiTools.GetOCR_ReTrans(DcList[i].Job.ToString().Trim());
  9885. }
  9886. }
  9887. }
  9888. catch (Exception ex)
  9889. {
  9890. }
  9891. builder.MoveToCell(0, i + 1, 4, 0);
  9892. builder.Write(job);
  9893. }
  9894. }
  9895. //删除多余行
  9896. while (tableOne.Rows.Count > DcList.Count + 1)
  9897. {
  9898. tableOne.Rows.RemoveAt(DcList.Count + 1);
  9899. }
  9900. string fileName = "组团人员名单(" + DateTime.Now.ToString("yyyyhhddHHmmss") + ").doc";
  9901. var fileDir = AppSettingsHelper.Get("WordBasePath") + "TourClientList/" + fileName;
  9902. doc.Save(fileDir);
  9903. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/TourClientList/" + fileName;
  9904. return Ok(JsonView(true, "操作成功!", Url));
  9905. }
  9906. #endregion
  9907. #region 团组倒推表
  9908. /// <summary>
  9909. /// 倒推表基础数据
  9910. /// Init
  9911. /// </summary>
  9912. /// <param name="dto"></param>
  9913. /// <returns></returns>
  9914. [HttpPost]
  9915. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9916. public async Task<IActionResult> PostInvertedListInit()
  9917. {
  9918. var viewData = await _invertedListRep._Init();
  9919. if (viewData.Code != 0)
  9920. {
  9921. return Ok(JsonView(false, viewData.Msg));
  9922. }
  9923. return Ok(JsonView(viewData.Data));
  9924. }
  9925. /// <summary>
  9926. /// 倒推表
  9927. /// Info
  9928. /// </summary>
  9929. /// <param name="dto"></param>
  9930. /// <returns></returns>
  9931. [HttpPost]
  9932. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9933. public async Task<IActionResult> PostInvertedListInfo(InvertedListCreateDto dto)
  9934. {
  9935. var viewData = await _invertedListRep._Info(dto.PortType, dto.DiId);
  9936. if (viewData.Code != 0)
  9937. {
  9938. return Ok(JsonView(false, viewData.Msg));
  9939. }
  9940. return Ok(JsonView(viewData.Data));
  9941. }
  9942. /// <summary>
  9943. /// 倒推表
  9944. /// Create
  9945. /// </summary>
  9946. /// <param name="dto"></param>
  9947. /// <returns></returns>
  9948. [HttpPost]
  9949. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9950. public async Task<IActionResult> PostInvertedListCreate(InvertedListCreateDto dto)
  9951. {
  9952. var viewData = await _invertedListRep._Create(dto.PortType, dto.DiId);
  9953. if (viewData.Code != 0)
  9954. {
  9955. return Ok(JsonView(false, viewData.Msg));
  9956. }
  9957. return Ok(JsonView(viewData.Data));
  9958. }
  9959. /// <summary>
  9960. /// 倒推表
  9961. /// Update
  9962. /// </summary>
  9963. /// <param name="dto"></param>
  9964. /// <returns></returns>
  9965. [HttpPost]
  9966. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9967. public async Task<IActionResult> PostInvertedListUpdate(InvertedListUpdateDto dto)
  9968. {
  9969. var viewData = await _invertedListRep._Update(dto);
  9970. if (viewData.Code != 0)
  9971. {
  9972. return Ok(JsonView(false, viewData.Msg));
  9973. }
  9974. return Ok(JsonView(viewData.Data));
  9975. }
  9976. /// <summary>
  9977. /// 倒推表
  9978. /// File Download
  9979. /// </summary>
  9980. /// <param name="dto"></param>
  9981. /// <returns></returns>
  9982. [HttpPost]
  9983. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9984. public async Task<IActionResult> PostInvertedListFileDownload(InvertedListFileDownloadDto dto)
  9985. {
  9986. var info2 = await _invertedListRep._Info(1, dto.DiId);
  9987. if (info2.Code != 0)
  9988. {
  9989. return Ok(JsonView(false, "倒推表数据未生成,请先生成倒退表数据!"));
  9990. }
  9991. var info1 = info2.Data as InvertedListInfoView;
  9992. var info = await _invertedListRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == dto.DiId).FirstAsync();
  9993. string teamName = "";
  9994. if (info != null) teamName = info.TeamName;
  9995. //载入模板
  9996. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/倒退表模板20200617.doc");
  9997. DocumentBuilder builder = new DocumentBuilder(doc);
  9998. //利用键值对存放数据
  9999. Dictionary<string, string> dic = new Dictionary<string, string>();
  10000. dic.Add("TeamName", teamName);
  10001. dic.Add("StartTime", info1.AirportdDropOffDt.ConvertToDatetime()); //开始时间
  10002. dic.Add("BPtime", info1.ApprovalDataDt.ConvertToDatetime());
  10003. dic.Add("BPRemark", info1.ApprovalDataRemark);
  10004. dic.Add("SQtime", info1.ApprovalDt.ConvertToDatetime());
  10005. dic.Add("SQRemark", info1.ApprovalRemark);
  10006. dic.Add("CPJtime", info1.IssueApprovalDt.ConvertToDatetime());
  10007. dic.Add("CPJRemark", info1.IssueApprovalRemark);
  10008. //dic.Add("HZtime", info1.ApplyPassportDt.ConvertToDatetime());
  10009. //dic.Add("HZRemark", info1.ApplyPassportRemark);
  10010. dic.Add("QZtime", info1.VisaInformationDt.ConvertToDatetime());
  10011. dic.Add("QZRemark", info1.VisaInformationRemark);
  10012. dic.Add("SQQZtime", info1.SendVisaDt.ConvertToDatetime());
  10013. dic.Add("SQQZRemark", info1.SendVisaRemark);
  10014. dic.Add("CQtime", info1.IssueVisaDt.ConvertToDatetime());
  10015. dic.Add("CQRemark", info1.IssueVisaRemark);
  10016. dic.Add("XQHtime", info1.PreTripMeetingDt.ConvertToDatetime());
  10017. dic.Add("XQHRemark", info1.PreTripMeetingRemark);
  10018. dic.Add("SJtime", info1.AirportdDropOffDt.ConvertToDatetime());
  10019. dic.Add("SJRemark", info1.AirportdDropOffRemark);
  10020. #region 填充word模板书签内容
  10021. foreach (var key in dic.Keys)
  10022. {
  10023. builder.MoveToBookmark(key);
  10024. builder.Write(dic[key]);
  10025. }
  10026. #endregion
  10027. var fileDir = AppSettingsHelper.Get("WordBasePath");
  10028. string fileName = $"{teamName}团出行准备流程表.doc";
  10029. string filePath = fileDir + $@"InvertedList/{fileName}";
  10030. doc.Save(filePath);
  10031. string Url = $@"{AppSettingsHelper.Get("WordBaseUrl")}Office/Word/InvertedList/{fileName}";
  10032. return Ok(JsonView(true, "操作成功!", Url));
  10033. }
  10034. #endregion
  10035. #region 三公签证费用(签证费、代办费)
  10036. /// <summary>
  10037. /// 三公签证费用(签证费、代办费)
  10038. /// List
  10039. /// </summary>
  10040. /// <returns></returns>
  10041. [HttpPost]
  10042. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10043. public async Task<IActionResult> PostVisaFeeList(VisaFeeListDto _dto)
  10044. {
  10045. var _view = await _visaFeeInfoRep._List(_dto.PortType, _dto.DiId);
  10046. if (_view.Code != 0)
  10047. {
  10048. return Ok(JsonView(false, _view.Msg));
  10049. }
  10050. return Ok(JsonView(true, "操作成功!", _view.Data));
  10051. }
  10052. /// <summary>
  10053. /// 三公签证费用(签证费、代办费)
  10054. /// Add Or Update
  10055. /// </summary>
  10056. /// <returns></returns>
  10057. [HttpPost]
  10058. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10059. public async Task<IActionResult> PostVisaFeeAddAndUpdate(VisaFeeAddAndUpdateDto _dto)
  10060. {
  10061. var _view = await _visaFeeInfoRep._Update(_dto);
  10062. if (_view.Code != 0)
  10063. {
  10064. return Ok(JsonView(false, _view.Msg));
  10065. }
  10066. return Ok(JsonView(true, _view.Msg));
  10067. }
  10068. #endregion
  10069. #region 酒店询价
  10070. /// <summary>
  10071. /// 酒店询价
  10072. /// Init
  10073. /// </summary>
  10074. /// <param name="dto"></param>
  10075. /// <returns></returns>
  10076. [HttpPost]
  10077. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10078. public async Task<IActionResult> PostHotelInquiryInit()
  10079. {
  10080. var res = await _hotelInquiryRep._Init();
  10081. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10082. return Ok(JsonView(true, res.Msg, res.Data));
  10083. }
  10084. /// <summary>
  10085. /// 酒店询价
  10086. /// page Item
  10087. /// </summary>
  10088. /// <param name="_dto"></param>
  10089. /// <returns></returns>
  10090. [HttpPost]
  10091. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10092. public async Task<IActionResult> PostHotelInquiryPageItem(HotelInquiryPageItemDto _dto)
  10093. {
  10094. var res = await _hotelInquiryRep._PageItem(_dto.PageIndex, _dto.PageSize, _dto.PortType, _dto.DiId);
  10095. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10096. var view = res.Data as PageDataViewBase;
  10097. return Ok(JsonView(true, res.Msg, view.Data, view.Total));
  10098. }
  10099. /// <summary>
  10100. /// 酒店询价
  10101. /// info
  10102. /// </summary>
  10103. /// <param name="_dto"></param>
  10104. /// <returns></returns>
  10105. [HttpPost]
  10106. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10107. public async Task<IActionResult> PostHotelInquiryInfo(HotelInquiryInfoDto _dto)
  10108. {
  10109. var res = await _hotelInquiryRep._Info(_dto.PortType, _dto.Id);
  10110. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10111. return Ok(JsonView(true, res.Msg, res.Data));
  10112. }
  10113. /// <summary>
  10114. /// 酒店询价
  10115. /// Add Or Edit
  10116. /// </summary>
  10117. /// <param name="_dto"></param>
  10118. /// <returns></returns>
  10119. [HttpPost]
  10120. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10121. public async Task<IActionResult> PostHotelInquiryAddOrEdit(HotelInquiryAddOrEditDto _dto)
  10122. {
  10123. var res = await _hotelInquiryRep._AddOrEdit(_dto);
  10124. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10125. return Ok(JsonView(true, res.Msg, res.Data));
  10126. }
  10127. /// <summary>
  10128. /// 酒店询价
  10129. /// Del
  10130. /// </summary>
  10131. /// <param name="_dto"></param>
  10132. /// <returns></returns>
  10133. [HttpPost]
  10134. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10135. public async Task<IActionResult> PostHotelInquiryDel(HotelInquiryDelDto _dto)
  10136. {
  10137. var res = await _hotelInquiryRep._Del(_dto.Id, _dto.DeleteUserId);
  10138. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10139. return Ok(JsonView(true, res.Msg, res.Data));
  10140. }
  10141. #endregion
  10142. #region 下载匹配op行程单
  10143. /// <summary>
  10144. /// 匹配op行程单
  10145. /// Init
  10146. /// </summary>
  10147. /// <param name="dto">团组列表请求dto</param>
  10148. /// <returns></returns>
  10149. [HttpPost]
  10150. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10151. public async Task<IActionResult> PostMateOpGroupInit(MateOpGroupInitDto dto)
  10152. {
  10153. Stopwatch stopwatch = Stopwatch.StartNew(); // 创建并启动Stopwatch
  10154. if (dto.CurrUserId < 1) return Ok(JsonView(false, MsgTips.UserId));
  10155. bool isDepStatus = await GeneralMethod.IsMarketingStaff(dto.CurrUserId);
  10156. List<Grp_DelegationInfo> groupInfos = new List<Grp_DelegationInfo>();
  10157. groupInfos = _sqlSugar.Queryable<Grp_DelegationInfo>()
  10158. .Where(it => it.IsDel == 0)
  10159. .WhereIF(isDepStatus, it => it.JietuanOperator == dto.CurrUserId)
  10160. .OrderByDescending(it => it.CreateUserId)
  10161. .ToList();
  10162. if (groupInfos.Count < 1) return Ok(JsonView(false, "暂无和你相关的团组信息!"));
  10163. var country = groupInfos.Select(it => it.VisitCountry).ToList();
  10164. var diids = groupInfos.Select(it => it.Id).ToList();
  10165. List<string> countrys = new List<string>();
  10166. foreach (var item in country)
  10167. {
  10168. var data = _groupRepository.FormartTeamName(item);
  10169. var dataArray = _groupRepository.GroupSplitCountry(data);
  10170. if (dataArray.Count > 0) countrys.AddRange(dataArray);
  10171. }
  10172. countrys = countrys.Where(it => !string.IsNullOrEmpty(it)).Distinct().ToList();
  10173. List<string> areaArray = new List<string>(); //GetGroupCityLine
  10174. var areaItem = GeneralMethod.GetGroupCityLineItem(diids, "-");
  10175. foreach (var item in areaItem)
  10176. {
  10177. string areaStr = item.Value;
  10178. if (!string.IsNullOrEmpty(areaStr))
  10179. {
  10180. string[] str1 = areaStr.Split("-");
  10181. if (str1.Length > 0)
  10182. {
  10183. areaArray.AddRange(str1);
  10184. }
  10185. }
  10186. }
  10187. if (areaArray.Count > 0) areaArray = areaArray.Distinct().ToList();
  10188. var cityDatas = _sqlSugar.Queryable<Sys_Cities>()
  10189. .Where(it => it.IsDel == 0 && areaArray.Contains(it.Name_CN))
  10190. .Select(it => new { id = it.Id, parentId = it.CountriesId, name = it.Name_CN })
  10191. .ToList();
  10192. List<int> countriesIds = cityDatas.Select(it => it.parentId).ToList();
  10193. var countriesDatas = _sqlSugar.Queryable<Sys_Countries>()
  10194. .Where(it => countriesIds.Contains(it.Id))
  10195. .Select(it => new { it.Id, Name = it.Name_CN })
  10196. .ToList();
  10197. var teamNames = groupInfos.Where(it => !string.IsNullOrEmpty(it.TeamName))
  10198. .Select(it => it.TeamName).ToList();
  10199. stopwatch.Stop();
  10200. return Ok(JsonView(true, $"操作成功,耗时{stopwatch.ElapsedMilliseconds} ms", new { teamNames, countriesDatas, citiesDatas = cityDatas }));
  10201. }
  10202. ///// <summary>
  10203. ///// 匹配op行程单
  10204. ///// Init 查询区域数据
  10205. ///// </summary>
  10206. ///// <param name="dto">团组列表请求dto</param>
  10207. ///// <returns></returns>
  10208. //[HttpPost]
  10209. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10210. //public async Task<IActionResult> PostMateOpGroupCountryChangeData(MateOpGroupCountryChangeDataDto dto)
  10211. //{
  10212. // Stopwatch stopwatch = Stopwatch.StartNew(); // 创建并启动Stopwatch
  10213. // List<Sys_Cities> cityDatas = new List<Sys_Cities>();
  10214. // string countriesDataStr = await RedisRepository.RedisFactory.CreateRedisRepository().StringGetAsync<string>("CityDatas");//string 取
  10215. // if (string.IsNullOrEmpty(countriesDataStr))
  10216. // {
  10217. // cityDatas = await _sqlSugar.Queryable<Sys_Cities>().Where(it => it.IsDel == 0).ToListAsync();
  10218. // TimeSpan ts = DateTime.Now.AddHours(2).TimeOfDay; //设置redis 过期时间 2
  10219. // await RedisRepository.RedisFactory.CreateRedisRepository().StringSetAsync<string>("CountriesDatas", JsonConvert.SerializeObject(cityDatas), ts);//string 存
  10220. // }
  10221. // else
  10222. // {
  10223. // cityDatas = JsonConvert.DeserializeObject<List<Sys_Cities>>(countriesDataStr);
  10224. // }
  10225. // var provinceData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 1).ToList();
  10226. // var citiesData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 2).ToList();
  10227. // var countiesData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 3).ToList();
  10228. // List<dynamic> childList = new List<dynamic>();
  10229. // int parentId = dto.CountriesId;
  10230. // if (provinceData.Count > 1)
  10231. // {
  10232. // foreach (var item1 in provinceData)
  10233. // {
  10234. // List<dynamic> childList1 = new List<dynamic>();
  10235. // var citiesData1 = citiesData.Where(it => it.ParentId == item1.Id).ToList();
  10236. // foreach (var item2 in citiesData1)
  10237. // {
  10238. // List<dynamic> childList2 = new List<dynamic>();
  10239. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10240. // foreach (var item3 in countiesData1)
  10241. // {
  10242. // childList2.Add(new
  10243. // {
  10244. // id = item3.Id,
  10245. // parentId = item2.Id,
  10246. // level = "district",
  10247. // name = item3.Name_CN,
  10248. // });
  10249. // }
  10250. // childList1.Add(new
  10251. // {
  10252. // id = item2.Id,
  10253. // parentId = item1.Id,
  10254. // level = "city",
  10255. // name = item2.Name_CN,
  10256. // childList = childList2
  10257. // });
  10258. // }
  10259. // childList.Add(new
  10260. // {
  10261. // id = item1.Id,
  10262. // parentId = parentId,
  10263. // level = "province",
  10264. // name = item1.Name_CN,
  10265. // childList = childList1
  10266. // });
  10267. // }
  10268. // //城市
  10269. // var citiesData2 = citiesData.Where(it => it.ParentId == 0).ToList();
  10270. // foreach (var item2 in citiesData2)
  10271. // {
  10272. // List<dynamic> childList22 = new List<dynamic>();
  10273. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10274. // foreach (var item3 in countiesData1)
  10275. // {
  10276. // childList22.Add(new
  10277. // {
  10278. // id = item3.Id,
  10279. // parentId = item2.Id,
  10280. // level = "district",
  10281. // name = item3.Name_CN,
  10282. // });
  10283. // }
  10284. // childList.Add(new
  10285. // {
  10286. // id = item2.Id,
  10287. // parentId = parentId,
  10288. // level = "city",
  10289. // name = item2.Name_CN,
  10290. // childList = childList22
  10291. // });
  10292. // }
  10293. // }
  10294. // else
  10295. // {
  10296. // foreach (var item2 in citiesData)
  10297. // {
  10298. // string cname = item2.Name_CN;
  10299. // List<dynamic> childList1 = new List<dynamic>();
  10300. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10301. // foreach (var item3 in countiesData1)
  10302. // {
  10303. // childList1.Add(new
  10304. // {
  10305. // Id = item3.Id,
  10306. // parentId = item2.Id,
  10307. // level = "district",
  10308. // name = item3.Name_CN
  10309. // });
  10310. // }
  10311. // childList.Add(new
  10312. // {
  10313. // id = item2.Id,
  10314. // parentId = parentId,
  10315. // level = "city",
  10316. // name = item2.Name_CN,
  10317. // childList = childList1
  10318. // });
  10319. // }
  10320. // }
  10321. // stopwatch.Stop();
  10322. // return Ok(JsonView(true, $"操作成功,耗时{stopwatch.ElapsedMilliseconds} ms", childList));
  10323. //}
  10324. /// <summary>
  10325. /// 匹配op行程单
  10326. /// 接团信息列表 Page
  10327. /// </summary>
  10328. /// <param name="dto">团组列表请求dto</param>
  10329. /// <returns></returns>
  10330. [HttpPost]
  10331. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10332. public async Task<IActionResult> PostMateOpGroupPageList(MateOpGroupPageListDto dto)
  10333. {
  10334. var swatch = new Stopwatch();
  10335. swatch.Start();
  10336. #region 参数验证
  10337. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  10338. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  10339. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10340. #region 页面操作权限验证
  10341. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  10342. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  10343. #endregion
  10344. #endregion
  10345. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) // web/Android
  10346. {
  10347. var _view = await GeneralMethod.MateOpGroupPageListRedis();
  10348. string sqlWhere = "";
  10349. if (!string.IsNullOrEmpty(dto.Country))
  10350. {
  10351. _view = _view.Where(x => !string.IsNullOrEmpty(x.VisitCountry) && x.VisitCountry.Contains(dto.Country)).ToList();
  10352. }
  10353. if (!string.IsNullOrEmpty(dto.Area))
  10354. {
  10355. _view = _view.Where(x => !string.IsNullOrEmpty(x.RouteCity) && x.RouteCity.Contains(dto.Area)).ToList();
  10356. }
  10357. if (!string.IsNullOrEmpty(dto.TeamName))
  10358. {
  10359. _view = _view.Where(x => !string.IsNullOrEmpty(x.TeamName) && x.TeamName.Contains(dto.TeamName)).ToList();
  10360. }
  10361. int startIndex = (dto.PageIndex - 1) * dto.PageSize; // 计算开始的索引
  10362. int endIndex = startIndex + dto.PageSize - 1; // 计算结束的索引
  10363. var _view1 = _view.Skip(startIndex).Take(endIndex).ToList();
  10364. swatch.Stop();
  10365. return Ok(JsonView(true, $"查询成功!耗时 {swatch.ElapsedMilliseconds} ms", _view1, _view.Count));
  10366. }
  10367. else
  10368. {
  10369. return Ok(JsonView(false, "查询失败"));
  10370. }
  10371. }
  10372. /// <summary>
  10373. /// 匹配op行程单
  10374. /// 行程单下载
  10375. /// </summary>
  10376. /// <param name="dto">团组列表请求dto</param>
  10377. /// <returns></returns>
  10378. [HttpPost]
  10379. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10380. public async Task<IActionResult> PostMateOpGroupDownload(MateOpGroupDownloadDto dto)
  10381. {
  10382. #region 参数验证
  10383. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  10384. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  10385. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10386. #region 页面操作权限验证
  10387. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  10388. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限"));
  10389. #endregion
  10390. #endregion
  10391. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) // web/Android
  10392. {
  10393. var res = ExportTravel(new ExportTravelDto() { Diid = dto.diId });
  10394. return Ok(res.GetType().GetProperty("Value").GetValue(res, null));
  10395. }
  10396. else
  10397. {
  10398. return Ok(JsonView(false, "下载失败!"));
  10399. }
  10400. }
  10401. #endregion
  10402. #region 国家信息 数据 注释
  10403. //[HttpPost]
  10404. //public async Task<IActionResult> LoadCitiesInitData(List<int> dto)
  10405. //{
  10406. // List<Grp_GroupsTaskAssignment> infos = new List<Grp_GroupsTaskAssignment>();
  10407. // foreach (var item in dto)
  10408. // {
  10409. // infos.Add(new Grp_GroupsTaskAssignment()
  10410. // {
  10411. // DIId = item,
  10412. // CTId = 82,
  10413. // UId = 248,
  10414. // IsEnable = 1,
  10415. // CreateUserId = 233,
  10416. // CreateTime = DateTime.Now,
  10417. // IsDel = 0
  10418. // });
  10419. // infos.Add(new Grp_GroupsTaskAssignment()
  10420. // {
  10421. // DIId = item,
  10422. // CTId = 82,
  10423. // UId = 286,
  10424. // IsEnable = 1,
  10425. // CreateUserId = 233,
  10426. // CreateTime = DateTime.Now,
  10427. // IsDel = 0
  10428. // });
  10429. // }
  10430. // int add = _sqlSugar.Insertable<Grp_GroupsTaskAssignment>(infos).ExecuteCommand();
  10431. // return Ok("操作成功");
  10432. //}
  10433. //public class paramJsonDto
  10434. //{
  10435. // public List<CountriesInfo> str { get; set; }
  10436. //}
  10437. //[HttpPost]
  10438. //public async Task<IActionResult> LoadCitiesInitData(paramJsonDto dto)
  10439. //{
  10440. // //List<CountriesInfo> infos = new List<CountriesInfo>();
  10441. // //infos = JsonConvert.DeserializeObject<List<CountriesInfo>>(dto.str);
  10442. // List<Sys_Cities> cities = new List<Sys_Cities>();
  10443. // List<Sys_Cities> districts = new List<Sys_Cities>();
  10444. // var counties = _sqlSugar.Queryable<Sys_Countries>().Where(it => it.IsDel == 0).ToList();
  10445. // _sqlSugar.BeginTran();
  10446. // int countitiesIndex = 0;
  10447. // foreach (var item in dto.str)
  10448. // {
  10449. // dynamic data = item.c;
  10450. // int countriesId = counties.Find(it => it.Name_CN.Equals(item.cn))?.Id ?? 0;
  10451. // if (data != null)
  10452. // {
  10453. // countitiesIndex++;
  10454. // foreach (var item1 in data)
  10455. // {
  10456. // string cnname = item1.cn;
  10457. // string enname = item1.en;
  10458. // Sys_Cities provinceInfo = new Sys_Cities()
  10459. // {
  10460. // CountriesId = countriesId,
  10461. // Name_CN = cnname,
  10462. // Name_EN = enname,
  10463. // ParentId = 0,
  10464. // IsCapital = 1,
  10465. // CreateUserId = 208,
  10466. // CreateTime = DateTime.Now,
  10467. // IsDel = 0
  10468. // };
  10469. // if (item1.lv == "province") //省份
  10470. // {
  10471. // provinceInfo.Level = 1;
  10472. // int provinceId = 0;
  10473. // var provinceInfo1 = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 1 && it.Name_CN.Equals(cnname)).First();
  10474. // if (provinceInfo1 != null) provinceId = provinceInfo1.Id;
  10475. // else provinceId = _sqlSugar.Insertable<Sys_Cities>(provinceInfo).ExecuteReturnIdentity();
  10476. // var data1 = item1.c;
  10477. // foreach (var item2 in data1)
  10478. // {
  10479. // if (item2.lv == "city")
  10480. // {
  10481. // string citycnname = item2.cn;
  10482. // string cityenname = item2.en;
  10483. // Sys_Cities cityInfo = new Sys_Cities()
  10484. // {
  10485. // CountriesId = countriesId,
  10486. // ParentId = provinceId,
  10487. // Level = 2,
  10488. // Name_CN = citycnname,
  10489. // Name_EN = cityenname,
  10490. // IsCapital = 1,
  10491. // CreateUserId = 208,
  10492. // CreateTime = DateTime.Now,
  10493. // IsDel = 0
  10494. // };
  10495. // if (item2.c != null)
  10496. // {
  10497. // int cityId = 0;
  10498. // var citiesInfo = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 2 && it.Name_CN.Equals(citycnname)).First();
  10499. // if (citiesInfo != null) cityId = citiesInfo.Id;
  10500. // else cityId = _sqlSugar.Insertable<Sys_Cities>(cityInfo).ExecuteReturnIdentity();
  10501. // foreach (var item3 in item2.c)
  10502. // {
  10503. // if (item3.lv == "district")
  10504. // {
  10505. // var districtInfo = new Sys_Cities()
  10506. // {
  10507. // CountriesId = countriesId,
  10508. // Name_CN = item3.cn,
  10509. // Name_EN = item3.en,
  10510. // Level = 3,
  10511. // ParentId = cityId,
  10512. // IsCapital = 1,
  10513. // CreateUserId = 208,
  10514. // CreateTime = DateTime.Now,
  10515. // IsDel = 0
  10516. // };
  10517. // //if (districts.Find(it => it.CountriesId == countriesId && it.ParentId == cityId && it.Name_CN.Equals(districtInfo.Name_CN)) == null)
  10518. // //{
  10519. // districts.Add(districtInfo);
  10520. // //}
  10521. // }
  10522. // }
  10523. // }
  10524. // else
  10525. // {
  10526. // //if (cities.Find(it => it.CountriesId == countriesId && it.ParentId == provinceId && it.Name_CN.Equals(citycnname)) == null)
  10527. // //{
  10528. // cities.Add(cityInfo);
  10529. // //}
  10530. // }
  10531. // }
  10532. // }
  10533. // }
  10534. // else if (item1.lv == "city")//城市
  10535. // {
  10536. // provinceInfo.Level = 2;
  10537. // if (item1.c != null)
  10538. // {
  10539. // int cityId = 0;
  10540. // var citiesInfo = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 1 && it.Name_CN.Equals(provinceInfo.Name_CN)).First();
  10541. // if (citiesInfo != null) cityId = citiesInfo.Id;
  10542. // else cityId = _sqlSugar.Insertable<Sys_Cities>(provinceInfo).ExecuteReturnIdentity();
  10543. // foreach (var item3 in item1.c)
  10544. // {
  10545. // if (item3.lv == "district")
  10546. // {
  10547. // var districtInfo = new Sys_Cities()
  10548. // {
  10549. // CountriesId = countriesId,
  10550. // Name_CN = item3.cn,
  10551. // Name_EN = item3.en,
  10552. // Level = 3,
  10553. // ParentId = cityId,
  10554. // IsCapital = 1,
  10555. // CreateUserId = 208,
  10556. // CreateTime = DateTime.Now,
  10557. // IsDel = 0
  10558. // };
  10559. // //if (districts.Find(it => it.CountriesId == countriesId && it.ParentId == cityId && it.Name_CN.Equals(districtInfo.Name_CN)) == null)
  10560. // //{
  10561. // districts.Add(districtInfo);
  10562. // //}
  10563. // }
  10564. // }
  10565. // }
  10566. // else
  10567. // {
  10568. // //if (cities.Find(it => it.CountriesId == countriesId && it.Name_CN.Equals(provinceInfo.Name_CN)) == null)
  10569. // //{
  10570. // cities.Add(provinceInfo);
  10571. // //}
  10572. // }
  10573. // }
  10574. // }
  10575. // }
  10576. // }
  10577. // var procinceDatas = _sqlSugar.Queryable<Sys_Cities>().ToList();
  10578. // cities = cities.Distinct().ToList();
  10579. // districts = districts.Distinct().ToList();
  10580. // var citiesDatas = cities.Where(it => it.Level == 2).ToList();
  10581. // //var districtDatas = cities.Where(it => it.Level == 3).ToList();
  10582. // cities.AddRange(districts);
  10583. // var citiesAdd = _sqlSugar.Insertable<Sys_Cities>(cities).ExecuteReturnIdentity();
  10584. // //_sqlSugar.RollbackTran();
  10585. // _sqlSugar.CommitTran();
  10586. // return Ok(JsonView(false, "操作成功!"));
  10587. //}
  10588. //[HttpPost]
  10589. //public async Task<IActionResult> LoadCitiesInitInfo(CounrtiesDto dto)
  10590. //{
  10591. // List<CountitiesInfo> infos = dto.MyProperty;
  10592. // List<Sys_Cities> cityInfos = new List<Sys_Cities>();
  10593. // _sqlSugar.BeginTran();
  10594. // var countities = _sqlSugar.Queryable<Sys_Countries>().Where(it => it.IsDel == 0).ToList();
  10595. // var citities = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.IsDel == 0 && it.Level == 2).ToList();
  10596. // foreach (var item in infos)
  10597. // {
  10598. // var countryInfo = countities.Where(it => it.ThreeCode.Equals(item.country_code3)).FirstOrDefault();
  10599. // if (countryInfo != null)
  10600. // {
  10601. // var cityInfo = citities.Where(it => it.CountriesId == countryInfo.Id).ToList();
  10602. // var cityInfo1 = cityInfo.Where(it => item.capital_name_chinese.Contains(it.Name_CN)).FirstOrDefault();
  10603. // if (cityInfo1 != null)
  10604. // {
  10605. // cityInfo1.IsCapital = 0;
  10606. // cityInfos.Add(cityInfo1);
  10607. // }
  10608. // }
  10609. // }
  10610. // var update = _sqlSugar.Updateable<Sys_Cities>(cityInfos)
  10611. // .UpdateColumns(it => it.IsCapital)
  10612. // .WhereColumns(it => it.Id)
  10613. // .ExecuteCommand();
  10614. // //_sqlSugar.RollbackTran();
  10615. // _sqlSugar.CommitTran();
  10616. // return Ok(JsonView(false, "操作成功!"));
  10617. //}
  10618. //public class CounrtiesDto
  10619. //{
  10620. // public List<CountitiesInfo> MyProperty { get; set; }
  10621. //}
  10622. //public class CountitiesInfo
  10623. //{
  10624. // /// <summary>
  10625. // /// 圣约翰
  10626. // /// </summary>
  10627. // public string capital_name_chinese { get; set; }
  10628. // /// <summary>
  10629. // ///
  10630. // /// </summary>
  10631. // public string capital_name { get; set; }
  10632. // /// <summary>
  10633. // ///
  10634. // /// </summary>
  10635. // public string country_type { get; set; }
  10636. // /// <summary>
  10637. // /// 安提瓜和巴布达
  10638. // /// </summary>
  10639. // public string country_name_chinese { get; set; }
  10640. // /// <summary>
  10641. // /// 安提瓜和巴布达
  10642. // /// </summary>
  10643. // public string country_name_chinese_short { get; set; }
  10644. // /// <summary>
  10645. // /// 安提瓜和巴布达
  10646. // /// </summary>
  10647. // public string country_name_chinese_UN { get; set; }
  10648. // /// <summary>
  10649. // ///
  10650. // /// </summary>
  10651. // public string country_name_english_abbreviation { get; set; }
  10652. // /// <summary>
  10653. // ///
  10654. // /// </summary>
  10655. // public string country_name_english_formal { get; set; }
  10656. // /// <summary>
  10657. // ///
  10658. // /// </summary>
  10659. // public string country_name_english_UN { get; set; }
  10660. // /// <summary>
  10661. // ///
  10662. // /// </summary>
  10663. // public string continent_name { get; set; }
  10664. // /// <summary>
  10665. // ///
  10666. // /// </summary>
  10667. // public string subregion_name { get; set; }
  10668. // /// <summary>
  10669. // ///
  10670. // /// </summary>
  10671. // public string country_code2 { get; set; }
  10672. // /// <summary>
  10673. // ///
  10674. // /// </summary>
  10675. // public string country_code3 { get; set; }
  10676. // /// <summary>
  10677. // ///
  10678. // /// </summary>
  10679. // public string phone_code { get; set; }
  10680. //}
  10681. //public class CountriesInfo : BasicInfo
  10682. //{
  10683. // public List<CitiesInfo> c { get; set; }
  10684. //}
  10685. //public class CitiesInfo : BasicInfo
  10686. //{
  10687. // public List<AreaInfo> c { get; set; }
  10688. //}
  10689. //public class AreaInfo : BasicInfo
  10690. //{
  10691. // public List<AreaInfo> c { get; set; }
  10692. //}
  10693. //public class BasicInfo
  10694. //{
  10695. // public string code { get; set; }
  10696. // public string cn { get; set; }
  10697. // public string lv { get; set; }
  10698. // public string en { get; set; }
  10699. //}
  10700. #endregion
  10701. #region 查看邀请方
  10702. /// <summary>
  10703. /// 查看邀请方
  10704. /// 邀请方信息 Init
  10705. /// </summary>
  10706. /// <param name="dto"></param>
  10707. /// <returns></returns>
  10708. [HttpPost]
  10709. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10710. public async Task<IActionResult> PostGroupLinkInvitingUnitNameInit(GroupLinkInvitingUnitNameInitDto dto)
  10711. {
  10712. string sqlWhere = string.Empty;
  10713. if (!string.IsNullOrEmpty(dto.Search))
  10714. {
  10715. sqlWhere = string.Format($@" And UnitName Like '%{dto.Search}%'");
  10716. }
  10717. string sql = string.Format($@"Select
  10718. ROW_NUMBER() Over(Order By Id desc) As Row_Number,
  10719. Id,
  10720. UnitName
  10721. From Res_InvitationOfficialActivityData
  10722. Where IsDel = 0
  10723. And (UnitName != '' Or UnitName != null) {sqlWhere}");
  10724. RefAsync<int> total = 0;
  10725. var _views = await _sqlSugar.SqlQueryable<GroupLinkInvitingUnitNameInitView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  10726. return Ok(JsonView(true, MsgTips.Succeed, _views, total));
  10727. }
  10728. /// <summary>
  10729. /// 查看邀请方
  10730. /// 国家信息 Init
  10731. /// </summary>
  10732. /// <param name="dto"></param>
  10733. /// <returns></returns>
  10734. [HttpPost]
  10735. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10736. public async Task<IActionResult> PostGroupLinkInvitingCountryInit(GroupLinkInvitingUnitNameInitDto dto)
  10737. {
  10738. var groupInfos = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).OrderByDescending(it => it.CreateUserId).ToListAsync();
  10739. var country = groupInfos.Select(it => it.VisitCountry).ToList();
  10740. var diids = groupInfos.Select(it => it.Id).ToList();
  10741. List<string> countrys = new List<string>();
  10742. foreach (var item in country)
  10743. {
  10744. var data = _groupRepository.FormartTeamName(item);
  10745. var dataArray = _groupRepository.GroupSplitCountry(data);
  10746. if (dataArray.Count > 0) countrys.AddRange(dataArray);
  10747. }
  10748. countrys = countrys.Distinct().ToList();
  10749. for (int i = 0; i < countrys.Count; i++)
  10750. {
  10751. string item = countrys[i];
  10752. if (string.IsNullOrEmpty(item) || item.Contains("-"))
  10753. {
  10754. countrys.Remove(item);
  10755. i--;
  10756. }
  10757. }
  10758. RefAsync<int> total = 0;
  10759. var countyDatas = await _sqlSugar.Queryable<Sys_Countries>()
  10760. .Where(it => countrys.Contains(it.Name_CN))
  10761. .WhereIF(!string.IsNullOrEmpty(dto.Search), it => it.Name_CN.Contains(dto.Search))
  10762. .Select(it => new { id = it.Id, name = it.Name_CN })
  10763. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  10764. return Ok(JsonView(true, MsgTips.Succeed, countyDatas, total));
  10765. }
  10766. /// <summary>
  10767. /// 查看邀请方
  10768. /// 城市信息 Init
  10769. /// </summary>
  10770. /// <param name="dto"></param>
  10771. /// <returns></returns>
  10772. [HttpPost]
  10773. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10774. public async Task<IActionResult> PostGroupLinkInvitingCityInit(GroupLinkInvitingCityInitDto dto)
  10775. {
  10776. if (dto.CountiesId < 1) return Ok(JsonView(false, "请传入有效的国家Id"));
  10777. RefAsync<int> total = 0;
  10778. var countyDatas = await _sqlSugar.Queryable<Sys_Cities>()
  10779. .Where(it => it.CountriesId == dto.CountiesId)
  10780. .WhereIF(!string.IsNullOrEmpty(dto.Search), it => it.Name_CN.Contains(dto.Search))
  10781. .OrderBy(it => new { IsCapital = SqlFunc.Asc(it.IsCapital), Id = SqlFunc.Asc(it.Id) })
  10782. .Select(it => new { id = it.Id, name = it.Name_CN })
  10783. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  10784. return Ok(JsonView(true, MsgTips.Succeed, countyDatas, total));
  10785. }
  10786. /// <summary>
  10787. /// 查看邀请方
  10788. /// 团组名称 Init
  10789. /// </summary>
  10790. /// <param name="dto"></param>
  10791. /// <returns></returns>
  10792. [HttpPost]
  10793. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10794. public async Task<IActionResult> PostGroupLinkInvitingGroupInit(GroupLinkInvitingDto dto)
  10795. {
  10796. var watch = new Stopwatch();
  10797. watch.Start();
  10798. RefAsync<int> total = 0;
  10799. var countyDatas = await _sqlSugar.Queryable<Res_OfficialActivities>()
  10800. .InnerJoin<Grp_DelegationInfo>((oa, di) => oa.DiId == di.Id)
  10801. .Where((oa, di) => oa.IsDel == 0)
  10802. .WhereIF(!string.IsNullOrEmpty(dto.Search), (oa, di) => di.TeamName.Contains(dto.Search))
  10803. .OrderBy((oa, di) => new { id = SqlFunc.Desc(di.Id) })
  10804. .Select((oa, di) => new { id = di.Id, name = di.TeamName })
  10805. .Distinct()
  10806. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  10807. watch.Stop();
  10808. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", countyDatas, total));
  10809. }
  10810. /// <summary>
  10811. /// 查看邀请方
  10812. /// 团组 & 邀请方信息
  10813. /// </summary>
  10814. /// <param name="dto"></param>
  10815. /// <returns></returns>
  10816. [HttpPost]
  10817. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10818. public async Task<IActionResult> PostGroupLinkInvitingPageList(GroupLinkInvitingPageListDto dto)
  10819. {
  10820. var watch = new Stopwatch();
  10821. watch.Start();
  10822. RefAsync<int> total = 0;
  10823. var infos = await _sqlSugar.Queryable<GroupLinkInvitingPageListView>()
  10824. .AS("Grp_DelegationInfo")
  10825. .Includes(x => x.InvitingInfos)
  10826. .Where(x => x.IsDel == 0 && x.InvitingInfos.Any(z => z.IsDel == 0))
  10827. .WhereIF(!string.IsNullOrEmpty(dto.Counrty), x => x.VisitCountry.Contains(dto.Counrty))
  10828. .WhereIF(!string.IsNullOrEmpty(dto.Area), x => x.InvitingInfos.Any(z => z.Area.Contains(dto.Area))) //
  10829. .WhereIF(!string.IsNullOrEmpty(dto.TeamName), x => x.TeamName.Contains(dto.TeamName)) //
  10830. .WhereIF(!string.IsNullOrEmpty(dto.UnitName), x => x.InvitingInfos.Any(z => z.Client.Contains(dto.UnitName)))
  10831. .OrderBy(x => new { JietuanTime = SqlFunc.Desc(x.VisitStartDate) })
  10832. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  10833. var userDatas = _sqlSugar.Queryable<Sys_Users>().Where(x => x.IsDel == 0).ToList();
  10834. var setDatas = _sqlSugar.Queryable<Sys_SetData>().Where(x => x.IsDel == 0).ToList();
  10835. infos.ForEach(x =>
  10836. {
  10837. x.TeamDid = setDatas.Find(y => int.Parse(x.TeamDid) == y.Id)?.Name ?? "-";
  10838. x.JietuanOperator = userDatas.Find(y => int.Parse(x.JietuanOperator) == y.Id)?.CnName ?? "-";
  10839. x.TeamLevSId = setDatas.Find(y => int.Parse(x.TeamLevSId) == y.Id)?.Name ?? "-";
  10840. x.InvitingInfos = x.InvitingInfos.Where(it => it.IsDel == 0).ToList();
  10841. });
  10842. watch.Stop();
  10843. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", infos, total));
  10844. }
  10845. #endregion
  10846. #region 报批行程
  10847. /// <summary>
  10848. /// 报批行程初始化
  10849. /// </summary>
  10850. /// <param name="dto"></param>
  10851. /// <returns></returns>
  10852. [HttpPost]
  10853. public IActionResult ApprovalJourneyInit(ApprovalJourneyDto dto)
  10854. {
  10855. const int chiNumber = 5;
  10856. var jw = JsonView(false);
  10857. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  10858. var group = groupList.First();
  10859. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  10860. group = groupList.First(x => x.Id == diid);
  10861. if (group == null)
  10862. {
  10863. jw.Msg = "暂无团组!";
  10864. return Ok(jw);
  10865. }
  10866. var data = new
  10867. {
  10868. groupList = groupList.Select(x => new
  10869. {
  10870. x.TeamName,
  10871. x.Id
  10872. }),
  10873. content = new ArrayList(),
  10874. groupInfo = new
  10875. {
  10876. group.VisitDays,
  10877. group.TourCode,
  10878. group.VisitPNumber,
  10879. group.TeamName,
  10880. group.Id,
  10881. visitStartDate = group.VisitStartDate.ToString("yyyy-MM-dd"),
  10882. visitEndDate = group.VisitEndDate.ToString("yyyy-MM-dd")
  10883. },
  10884. };
  10885. var resultArr = new ArrayList();
  10886. var content = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.Diid == diid && x.IsDel == 0).ToList();
  10887. if (content.Count == 0)
  10888. {
  10889. var stay = "-";
  10890. var cityPath = "-";
  10891. //添加城市路径以及住宿地
  10892. //黑屏代码数据
  10893. DataTable dtBlack = GeneralMethod.GetTableByBlackCode(group.Id);
  10894. if (dtBlack.Rows.Count == 0 || string.IsNullOrWhiteSpace(dtBlack.Rows[0][1].ToString()))
  10895. {
  10896. jw = JsonView(true, "黑屏代码有误!", data);
  10897. return Ok(jw);
  10898. }
  10899. foreach (DataRow row in dtBlack.Rows)
  10900. {
  10901. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  10902. {
  10903. jw = JsonView(true, "黑屏代码有误!" + row["Error"].ToString(), data);
  10904. return Ok(jw);
  10905. }
  10906. }
  10907. //黑屏代码获取时间区间
  10908. var timeArr = GeneralMethod.GetTimeListByDataTable(dtBlack);
  10909. string[] Day = new string[] { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" };
  10910. _sqlSugar.BeginTran();
  10911. for (int i = 0; i < timeArr.Count; i++)
  10912. {
  10913. stay = "-";
  10914. cityPath = "-";
  10915. DateTime NewData = DateTime.Parse(timeArr[i]);
  10916. string week = Day[Convert.ToInt32(NewData.DayOfWeek.ToString("d"))].ToString();
  10917. Grp_ApprovalTravel appro = new Grp_ApprovalTravel();
  10918. var tbSelect = dtBlack.Select(string.Format("Day = '{0}'", NewData.ToString("yyyy-MM-dd")));
  10919. if (tbSelect.Length > 0)
  10920. {
  10921. List<string> threeCodeStr = new List<string>();
  10922. foreach (var item in tbSelect)
  10923. {
  10924. var threeCode = item["Three"].ToString() ?? "";
  10925. if (threeCode.Length == 6)
  10926. {
  10927. var start = threeCode.Substring(0, 3);
  10928. var end = threeCode.Substring(3, 3);
  10929. if (threeCodeStr.Count == 0)
  10930. {
  10931. threeCodeStr.Add(start);
  10932. threeCodeStr.Add(end);
  10933. }
  10934. else
  10935. {
  10936. if (threeCodeStr[threeCodeStr.Count - 1] == start)
  10937. {
  10938. threeCodeStr.Add(end);
  10939. }
  10940. else
  10941. {
  10942. threeCodeStr.Add(start);
  10943. threeCodeStr.Add(end);
  10944. }
  10945. }
  10946. }
  10947. }
  10948. var threeCodeList = _threeCodeRepository.QueryThreeCodeArray(threeCodeStr);
  10949. var last = threeCodeStr.Last();
  10950. foreach (var item in threeCodeStr)
  10951. {
  10952. cityPath += (threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】") + "-";
  10953. if (item.Equals(last))
  10954. {
  10955. stay = threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】";
  10956. }
  10957. }
  10958. cityPath = cityPath.Trim('-');
  10959. }
  10960. appro.Date = "第" + intToString(i + 1) + "天 " + NewData.Month + "月" + NewData.Day + "日(" + week + ") " + cityPath + " 宿:" + stay;
  10961. appro.Diid = diid ?? -1;
  10962. var thisId = _sqlSugar.Insertable<Grp_ApprovalTravel>(appro).ExecuteReturnIdentity();
  10963. appro.Id = thisId;
  10964. appro.CreateUserId = dto.UserId;
  10965. appro.CreateTime = DateTime.Now;
  10966. content.Add(appro);
  10967. }
  10968. _sqlSugar.CommitTran();
  10969. }
  10970. foreach (var x in content)
  10971. {
  10972. var chiList = _sqlSugar.Queryable<Grp_ApprovalTravelDetails>().Where(x1 => x1.ParentId == x.Id && x1.IsDel == 0).ToList();
  10973. if (chiList.Count < chiNumber)
  10974. {
  10975. for (int i = chiList.Count; i < chiNumber; i++)
  10976. {
  10977. chiList.Add(new Grp_ApprovalTravelDetails());
  10978. }
  10979. }
  10980. resultArr.Add(new
  10981. {
  10982. x.Id,
  10983. x.Date,
  10984. x.Diid,
  10985. chiList = chiList.Select(x1 => new
  10986. {
  10987. timeInterval = x1.Time == null ? new string[1] : x1.Time.Split('-'),
  10988. x1.Details,
  10989. x1.ParentId,
  10990. x1.Id
  10991. })
  10992. });
  10993. }
  10994. data = data with
  10995. {
  10996. content = resultArr,
  10997. };
  10998. jw = JsonView(true, "获取成功!", data);
  10999. return Ok(jw);
  11000. }
  11001. /// <summary>
  11002. /// 报批行程删除
  11003. /// </summary>
  11004. /// <param name="dto"></param>
  11005. /// <returns></returns>
  11006. [HttpPost]
  11007. public IActionResult DeleteApprovalJourney(DeleteApprovalJourney dto)
  11008. {
  11009. var jw = JsonView(false);
  11010. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  11011. if (group == null)
  11012. {
  11013. jw.Msg = "团组参数有误!";
  11014. return Ok(jw);
  11015. }
  11016. try
  11017. {
  11018. _sqlSugar.BeginTran();
  11019. var arr = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.Diid == dto.Diid && x.IsDel == 0).Select(x => x.Id).ToList();
  11020. _ = _sqlSugar.Updateable<Grp_ApprovalTravelDetails>().SetColumns(x => new Grp_ApprovalTravelDetails
  11021. {
  11022. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  11023. DeleteUserId = dto.uesrId,
  11024. IsDel = 1
  11025. }).Where(x => arr.Contains(x.ParentId) && x.IsDel == 0).ExecuteCommand();
  11026. _ = _sqlSugar.Updateable<Grp_ApprovalTravel>().SetColumns(x => new Grp_ApprovalTravel
  11027. {
  11028. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  11029. DeleteUserId = dto.uesrId,
  11030. IsDel = 1
  11031. }).Where(x => arr.Contains(x.Id)).ExecuteCommand();
  11032. _sqlSugar.CommitTran();
  11033. jw = JsonView(true, "删除成功");
  11034. }
  11035. catch (Exception ex)
  11036. {
  11037. jw = JsonView(false, ex.Message);
  11038. }
  11039. return Ok(jw);
  11040. }
  11041. /// <summary>
  11042. /// 报批行程保存
  11043. /// </summary>
  11044. /// <param name="dto"></param>
  11045. /// <returns></returns>
  11046. [HttpPost]
  11047. public IActionResult SaveApprovalJourney(SaveApprovalJourney dto)
  11048. {
  11049. var jw = JsonView(false);
  11050. var Find = dto.Arr.Find(x => x.id == 0);
  11051. if (Find != null)
  11052. {
  11053. jw.Msg = "生成的ID为0!";
  11054. return Ok(jw);
  11055. }
  11056. foreach (var item in dto.Arr)
  11057. {
  11058. foreach (var chi in item.chiList)
  11059. {
  11060. if (chi.parentId == 0)
  11061. {
  11062. chi.parentId = item.id;
  11063. }
  11064. }
  11065. }
  11066. var chiArr = dto.Arr.SelectMany(x => x.chiList).ToList();
  11067. _sqlSugar.BeginTran();
  11068. if (chiArr.Where(x => x.id == 0).Count() == chiArr.Count)
  11069. {
  11070. var parentIds = dto.Arr.Select(x => x.id).ToList();
  11071. _sqlSugar.Updateable<Grp_ApprovalTravelDetails>().Where(x => parentIds.Contains(x.ParentId) && x.IsDel == 0).SetColumns(x => new Grp_ApprovalTravelDetails
  11072. {
  11073. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  11074. DeleteUserId = dto.UserId,
  11075. IsDel = 1
  11076. }).ExecuteCommand();
  11077. }
  11078. try
  11079. {
  11080. _ = _sqlSugar.Insertable<Grp_ApprovalTravelDetails>(chiArr.Where(x => x.id == 0).Select(x => new Grp_ApprovalTravelDetails
  11081. {
  11082. CreateTime = DateTime.Now,
  11083. CreateUserId = dto.UserId,
  11084. Details = x.details,
  11085. ParentId = x.parentId,
  11086. Time = x.timeInterval.Where(x => !string.IsNullOrWhiteSpace(x)).Count() > 1 ? x.timeInterval[0] + "-" + x.timeInterval[1] : "",
  11087. Remark = "",
  11088. IsDel = 0
  11089. }).ToList()).ExecuteCommand();
  11090. _ = _sqlSugar.Updateable<Grp_ApprovalTravelDetails>(chiArr.Where(x => x.id != 0).Select(x => new Grp_ApprovalTravelDetails
  11091. {
  11092. Id = x.id,
  11093. Details = x.details,
  11094. ParentId = x.parentId,
  11095. Time = x.timeInterval.Where(x => !string.IsNullOrWhiteSpace(x)).Count() > 1 ? x.timeInterval[0] + "-" + x.timeInterval[1] : "",
  11096. }).ToList()).UpdateColumns(x => new Grp_ApprovalTravelDetails
  11097. {
  11098. Details = x.Details,
  11099. ParentId = x.ParentId,
  11100. Time = x.Time
  11101. }).ExecuteCommand();
  11102. _ = _sqlSugar.Updateable<Grp_ApprovalTravel>(dto.Arr.Where(x => x.id != 0).Select(x => new Grp_ApprovalTravel
  11103. {
  11104. Id = x.id,
  11105. Date = x.date,
  11106. }).ToList()).UpdateColumns(x => new Grp_ApprovalTravel
  11107. {
  11108. Date = x.Date
  11109. }).ExecuteCommand();
  11110. _sqlSugar.CommitTran();
  11111. jw = JsonView(true, "保存成功!");
  11112. }
  11113. catch (Exception ex)
  11114. {
  11115. _sqlSugar.RollbackTran();
  11116. jw = JsonView(false, "保存失败!" + ex.Message);
  11117. }
  11118. return Ok(jw);
  11119. }
  11120. /// <summary>
  11121. /// 报批行程生成
  11122. /// </summary>
  11123. /// <param name="dto"></param>
  11124. /// <returns></returns>
  11125. [HttpPost]
  11126. public IActionResult CreateApprovalJourney(CreateApprovalJourneyDto dto)
  11127. {
  11128. var jw = JsonView(false);
  11129. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  11130. if (group == null)
  11131. {
  11132. jw.Msg = "暂无该团组!";
  11133. return Ok(jw);
  11134. }
  11135. //黑屏代码数据
  11136. DataTable dtBlack = GeneralMethod.GetTableByBlackCode(group.Id);
  11137. if (dtBlack.Rows.Count == 0 || string.IsNullOrWhiteSpace(dtBlack.Rows[0][1].ToString()))
  11138. {
  11139. jw.Msg = "黑屏代码有误!";
  11140. return Ok(jw);
  11141. }
  11142. foreach (DataRow row in dtBlack.Rows)
  11143. {
  11144. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  11145. {
  11146. jw.Msg = "黑屏代码有误!" + row["Error"].ToString();
  11147. return Ok(jw);
  11148. }
  11149. }
  11150. var officialActivitiesArr = _sqlSugar.Queryable<Res_OfficialActivities>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).ToList();
  11151. var resultArr = new ArrayList();
  11152. if (officialActivitiesArr.Count == 0)
  11153. {
  11154. jw.Msg = "暂无公务出访信息!";
  11155. return Ok(jw);
  11156. }
  11157. try
  11158. {
  11159. _sqlSugar.BeginTran();
  11160. DeleteApprovalJourney(new
  11161. Domain.Dtos.Groups.DeleteApprovalJourney
  11162. {
  11163. Diid = dto.Diid,
  11164. uesrId = dto.Userid
  11165. });
  11166. var stay = "-";
  11167. var cityPath = "-";
  11168. //添加城市路径以及住宿地
  11169. //黑屏代码获取时间区间
  11170. var timeArr = GeneralMethod.GetTimeListByDataTable(dtBlack);
  11171. var empty = "【未收入该三字码!请机票同事录入】";
  11172. string[] Day = new string[] { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" };
  11173. for (int i = 0; i < timeArr.Count; i++)
  11174. {
  11175. stay = "-";
  11176. cityPath = "-";
  11177. var chiarr = new List<Grp_ApprovalTravelDetails>();
  11178. DateTime NewData = DateTime.Parse(timeArr[i]);
  11179. 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();
  11180. var tbSelect = dtBlack.Select(string.Format("Day = '{0}'", NewData.ToString("yyyy-MM-dd")));
  11181. if (tbSelect.Length > 0)
  11182. {
  11183. List<string> threeCodeStr = new List<string>();
  11184. bool isTrade = false;
  11185. string trip = string.Empty;
  11186. var rowLast = tbSelect.Last();
  11187. var rowFirst = tbSelect.First();
  11188. var airStartTime = rowFirst["StartTime"].ToString() ?? "0000";
  11189. var airEndTime = rowLast["EndTime"].ToString() ?? "0000";
  11190. var takeOffTime = DateTime.Parse(timeArr[i]);
  11191. var fallToTime = DateTime.Parse(timeArr[i]);
  11192. takeOffTime = takeOffTime.AddHours(int.Parse(airStartTime.Substring(0, 2)));
  11193. takeOffTime = takeOffTime.AddMinutes(int.Parse(airStartTime.Substring(2, 2)));
  11194. fallToTime = fallToTime.AddHours(int.Parse(airEndTime.Substring(0, 2)));
  11195. fallToTime = fallToTime.AddMinutes(int.Parse(airEndTime.Substring(2, 2)));
  11196. foreach (var item in tbSelect)
  11197. {
  11198. var start = string.Empty;
  11199. var end = string.Empty;
  11200. var threeCode = item["Three"].ToString() ?? "";
  11201. if (threeCode.Length == 6)
  11202. {
  11203. start = threeCode.Substring(0, 3);
  11204. end = threeCode.Substring(3, 3);
  11205. if (threeCodeStr.Count == 0)
  11206. {
  11207. threeCodeStr.Add(start);
  11208. threeCodeStr.Add(end);
  11209. }
  11210. else
  11211. {
  11212. if (threeCodeStr[threeCodeStr.Count - 1] == start)
  11213. {
  11214. threeCodeStr.Add(end);
  11215. }
  11216. else
  11217. {
  11218. threeCodeStr.Add(start);
  11219. threeCodeStr.Add(end);
  11220. }
  11221. }
  11222. }
  11223. //处理机票信息
  11224. var start_Object = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three.ToUpper() == start.ToUpper());
  11225. var end_Object = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three.ToUpper() == end.ToUpper());
  11226. if (start_Object == null)
  11227. {
  11228. start_Object = new Res_ThreeCode()
  11229. {
  11230. AirPort = empty,
  11231. AirPort_En = empty,
  11232. City = empty,
  11233. Country = empty,
  11234. Four = empty,
  11235. Three = empty,
  11236. };
  11237. }
  11238. if (end_Object == null)
  11239. {
  11240. end_Object = new Res_ThreeCode()
  11241. {
  11242. AirPort = empty,
  11243. AirPort_En = empty,
  11244. City = empty,
  11245. Country = empty,
  11246. Four = empty,
  11247. Three = empty,
  11248. };
  11249. }
  11250. //机型判断
  11251. string airModel = item["AirModel"].ToString();
  11252. airModel = GeneralMethod.GetLonger(airModel!.Substring(0, 1)) + airModel;
  11253. string flightTime = item["FlightTime"].ToString();
  11254. if (flightTime!.Contains(":"))
  11255. {
  11256. flightTime = flightTime.Replace(":", "小时");
  11257. flightTime += "分钟";
  11258. }
  11259. if (flightTime.Contains("H"))
  11260. {
  11261. flightTime = flightTime.Replace("H", "小时");
  11262. }
  11263. if (flightTime.Contains("M"))
  11264. {
  11265. flightTime = flightTime.Replace("M", "分钟");
  11266. }
  11267. IFormatProvider ifp = new CultureInfo("zh-CN", true);
  11268. if (DateTime.TryParseExact(flightTime, "HH小时mm分钟", ifp, DateTimeStyles.None, out DateTime flightDataTime))
  11269. {
  11270. flightTime = flightDataTime.Hour > 0
  11271. ? flightDataTime.Hour.ToString() + "小时" + (flightDataTime.Minute > 0
  11272. ? flightDataTime.Minute.ToString() + "分钟" : "") : flightDataTime.Minute > 0
  11273. ? flightDataTime.Minute.ToString() + "分钟" : "";
  11274. }
  11275. //航班号
  11276. string flightcode = item["Fliagtcode"].ToString();
  11277. var aircompany = _sqlSugar.Queryable<Res_AirCompany>().First(x => x.ShortCode.ToUpper() == flightcode!.Substring(0, 2).ToUpper() && x.IsDel == 0);
  11278. var hsEmpty = "【此航司" + flightcode!.Substring(0, 2).ToUpper() + "未收录,请机票同事录入】";
  11279. if (aircompany == null)
  11280. {
  11281. aircompany = new Res_AirCompany
  11282. {
  11283. CnName = hsEmpty,
  11284. EnName = hsEmpty,
  11285. ShortCode = hsEmpty,
  11286. };
  11287. }
  11288. //从成都天府国际机场搭乘四川航空公司3U3961飞往东京
  11289. trip += $"从{start_Object.AirPort}搭乘{aircompany.CnName} {flightcode} 飞往 {end_Object.City};\r\n({start_Object.AirPort}/{end_Object.AirPort} 机型:{airModel} 飞行时间{flightTime});\r\n";
  11290. isTrade = Convert.ToBoolean(item["isTransitShipment"]);
  11291. if (isTrade)
  11292. {
  11293. trip += $"抵达{end_Object.AirPort}{item["EndBuilding"].ToString().Trim()}航站楼(中转 行李直达)\r\n";
  11294. }
  11295. else
  11296. {
  11297. trip += "\r\n"; //$"抵达{end_Object.AirPort}{item["EndBuilding"].ToString().Trim()}航站楼,办理入境手续,之后前往提取行李\r\n";
  11298. }
  11299. }
  11300. chiarr.Add(new Grp_ApprovalTravelDetails
  11301. {
  11302. Time = takeOffTime.ToString("HH:mm") + "-" + fallToTime.ToString("HH:mm"),
  11303. CreateTime = DateTime.Now,
  11304. CreateUserId = dto.Userid,
  11305. ParentId = 0,
  11306. Details = trip
  11307. });
  11308. var threeCodeList = _threeCodeRepository.QueryThreeCodeArray(threeCodeStr);
  11309. var last = threeCodeStr.Last();
  11310. foreach (var item in threeCodeStr)
  11311. {
  11312. cityPath += (threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】") + "-";
  11313. if (item.Equals(last))
  11314. {
  11315. stay = threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】";
  11316. }
  11317. }
  11318. cityPath = cityPath.Trim('-');
  11319. }
  11320. string week = Day[Convert.ToInt32(NewData.DayOfWeek.ToString("d"))].ToString();
  11321. Grp_ApprovalTravel appro = new Grp_ApprovalTravel();
  11322. appro.Date = "第" + intToString(i + 1) + "天 " + NewData.Month + "月" + NewData.Day + "日(" + week + ") " + cityPath + " 宿:" + stay;
  11323. appro.Diid = dto.Diid;
  11324. var thisId = _sqlSugar.Insertable<Grp_ApprovalTravel>(appro).ExecuteReturnIdentity();
  11325. appro.Id = thisId;
  11326. appro.CreateUserId = dto.Userid;
  11327. appro.CreateTime = DateTime.Now;
  11328. foreach (var item in gwinfo)
  11329. {
  11330. Grp_ApprovalTravelDetails chi = new Grp_ApprovalTravelDetails();
  11331. chi.Details = "拜访" + item.Client;
  11332. if (!string.IsNullOrWhiteSpace(item.ReqSample))
  11333. {
  11334. chi.Details += "," + item.ReqSample;
  11335. }
  11336. chi.ParentId = thisId;
  11337. chi.Time = item.Time;
  11338. chiarr.Add(chi);
  11339. }
  11340. if (chiarr.Count < 5)
  11341. {
  11342. for (int j = chiarr.Count; j < 5; j++)
  11343. {
  11344. chiarr.Add(new
  11345. Grp_ApprovalTravelDetails());
  11346. }
  11347. }
  11348. resultArr.Add(new
  11349. {
  11350. appro.Id,
  11351. appro.Date,
  11352. appro.Diid,
  11353. chiList = chiarr.Select(x1 => new
  11354. {
  11355. timeInterval = x1.Time == null ? new string[1] : x1.Time.Split('-'),
  11356. x1.Details,
  11357. x1.ParentId,
  11358. x1.Id
  11359. })
  11360. });
  11361. }
  11362. _sqlSugar.CommitTran();
  11363. jw = JsonView(true, "生成成功!", resultArr);
  11364. }
  11365. catch (Exception ex)
  11366. {
  11367. jw.Code = 400;
  11368. jw.Msg = "生成失败!" + ex.Message;
  11369. }
  11370. return Ok(jw);
  11371. }
  11372. /// <summary>
  11373. /// 报批行程word导出
  11374. /// </summary>
  11375. /// <param name="dto"></param>
  11376. /// <returns></returns>
  11377. [HttpPost]
  11378. public IActionResult ExportApprovalJourneyWord(ExportApprovalJourneyWord dto)
  11379. {
  11380. var jw = JsonView(false);
  11381. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  11382. if (group == null)
  11383. {
  11384. jw.Msg = "暂无该团组!";
  11385. return Ok(jw);
  11386. }
  11387. //模板路径
  11388. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "Template/公务行程导出模板.docx"); //"C:\\Server\\File\\OA2023\\Office\\Word\\Template/公务行程导出模板.docx"
  11389. //载入模板
  11390. Document doc = new Document(tempPath);
  11391. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  11392. //获取所填表格的序数
  11393. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  11394. Aspose.Words.Tables.Row titleRowClone = null;
  11395. Aspose.Words.Tables.Row CenterRowClone = null;
  11396. int index = 0;
  11397. int indexChi = 0;
  11398. int SetIndex = 0;
  11399. var ApprovalTravelArr = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid).ToList();
  11400. //获取数据,放到datatable
  11401. foreach (var item in ApprovalTravelArr)
  11402. {
  11403. if (index > 0)
  11404. {
  11405. titleRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[0].Clone(true);
  11406. tableOne.AppendChild(titleRowClone);
  11407. }
  11408. var textTime = item.Date;
  11409. var ChiRep = _sqlSugar.Queryable<Grp_ApprovalTravelDetails>().Where(x => x.IsDel == 0 && x.ParentId == item.Id).ToList();
  11410. SetCells(tableOne, doc, SetIndex, 0, textTime);
  11411. SetIndex++;
  11412. if (ChiRep.Count > 0)
  11413. {
  11414. foreach (var itemChi in ChiRep)
  11415. {
  11416. var txtTime = itemChi.Time;
  11417. var txtDetail = itemChi.Details;
  11418. if (indexChi > 0)
  11419. {
  11420. CenterRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[1].Clone(true);
  11421. tableOne.AppendChild(CenterRowClone);
  11422. }
  11423. if (string.IsNullOrEmpty(txtTime) && string.IsNullOrEmpty(txtDetail))
  11424. {
  11425. SetCells(tableOne, doc, SetIndex, 0, "");
  11426. SetCells(tableOne, doc, SetIndex, 1, "");
  11427. indexChi++;
  11428. SetIndex++;
  11429. break;
  11430. }
  11431. SetCells(tableOne, doc, SetIndex, 0, txtTime);
  11432. SetCells(tableOne, doc, SetIndex, 1, txtDetail);
  11433. indexChi++;
  11434. SetIndex++;
  11435. }
  11436. }
  11437. else
  11438. {
  11439. if (indexChi > 0)
  11440. {
  11441. CenterRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[1].Clone(true);
  11442. tableOne.AppendChild(CenterRowClone);
  11443. }
  11444. SetCells(tableOne, doc, SetIndex, 0, "");
  11445. SetCells(tableOne, doc, SetIndex, 1, "");
  11446. indexChi++;
  11447. SetIndex++;
  11448. }
  11449. index++;
  11450. }
  11451. string strFileName = "/Travel/ExportApprovalJourneyWord/" + group.TeamName + "商邀出访日程.doc";
  11452. doc.Save(AppSettingsHelper.Get("WordBasePath") + strFileName); //"C:\\Server\\File\\OA2023\\Office\\Word" + strFileName
  11453. jw.Data = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + strFileName; //"C:\\Server\\File\\OA2023\\Office\\Word" + strFileName
  11454. jw.Code = 200;
  11455. jw.Msg = "";
  11456. return Ok(jw);
  11457. }
  11458. private string intToString(int numberVal)
  11459. {
  11460. string numberval = numberVal.ToString();
  11461. Dictionary<char, string> Number = new Dictionary<char, string>();
  11462. Number.Add('1', "一");
  11463. Number.Add('2', "二");
  11464. Number.Add('3', "三");
  11465. Number.Add('4', "四");
  11466. Number.Add('5', "五");
  11467. Number.Add('6', "六");
  11468. Number.Add('7', "七");
  11469. Number.Add('8', "八");
  11470. Number.Add('9', "九");
  11471. string stringNumberVal = string.Empty;
  11472. for (int i = 0; i < numberval.Length; i++)
  11473. {
  11474. if (i == 0)
  11475. {
  11476. stringNumberVal += Number[numberval[i]];
  11477. }
  11478. else if (i >= 1)
  11479. {
  11480. if (numberval[i] == '0')
  11481. {
  11482. stringNumberVal = "十";
  11483. }
  11484. else
  11485. {
  11486. stringNumberVal += "十" + Number[numberval[i]];
  11487. }
  11488. }
  11489. }
  11490. return stringNumberVal;
  11491. }
  11492. private void SetCells(Aspose.Words.Tables.Table table, Document doc, int rows, int cells, string val)
  11493. {
  11494. //获取table中的某个单元格,从0开始
  11495. Cell lshCell = table.Rows[rows].Cells[cells];
  11496. //将单元格中段落移除
  11497. foreach (Node item in lshCell.Paragraphs)
  11498. {
  11499. lshCell.Paragraphs.Remove(item);
  11500. }
  11501. if (val.Contains("\r\n"))
  11502. {
  11503. var spArr = val.Split("\r\n").Where(x => !string.IsNullOrWhiteSpace(x));
  11504. foreach (var item in spArr)
  11505. {
  11506. //新建一个段落
  11507. Paragraph p = new Paragraph(doc);
  11508. var r = new Run(doc, item);
  11509. //把设置的值赋给之前新建的段落
  11510. p.AppendChild(r);
  11511. //将此段落加到单元格内
  11512. lshCell.AppendChild(p);
  11513. }
  11514. }
  11515. else
  11516. {
  11517. //新建一个段落
  11518. Paragraph p = new Paragraph(doc);
  11519. var r = new Run(doc, val);
  11520. //把设置的值赋给之前新建的段落
  11521. p.AppendChild(r);
  11522. //将此段落加到单元格内
  11523. lshCell.AppendChild(p);
  11524. }
  11525. }
  11526. [HttpPost]
  11527. public async Task<IActionResult> ServerHttp(string paramStr)
  11528. {
  11529. paramStr = paramStr.TrimEnd('\'');
  11530. paramStr = paramStr.TrimStart('\'');
  11531. JsonView jw = JsonView(false);
  11532. JObject param = JObject.Parse(paramStr);
  11533. if (!param.ContainsKey("url"))
  11534. {
  11535. jw.Msg = "url null";
  11536. return Ok(jw);
  11537. }
  11538. string url = param["url"]!.ToString();
  11539. var methon = "get";
  11540. Dictionary<string, string> bodyValues = null;
  11541. Dictionary<string, string> headValues = null;
  11542. if (param.ContainsKey("methon"))
  11543. {
  11544. methon = param["methon"]!.ToString();
  11545. }
  11546. if (param.ContainsKey("header"))
  11547. {
  11548. var header = param["header"]!.ToString();
  11549. JObject headerJobject = JObject.Parse(header);
  11550. headValues = new Dictionary<string, string>();
  11551. foreach (JProperty item in headerJobject.Properties())
  11552. {
  11553. var value = item.Value.ToString();
  11554. var head = item.Path;
  11555. headValues.Add(head, value);
  11556. }
  11557. }
  11558. if (param.ContainsKey("body"))
  11559. {
  11560. var body = param["body"]!.ToString();
  11561. bodyValues = new Dictionary<string, string>();
  11562. JObject bodyJobject = JObject.Parse(body);
  11563. foreach (JProperty item in bodyJobject.Properties())
  11564. {
  11565. var value = item.Value.ToString();
  11566. var head = item.Path;
  11567. bodyValues.Add(head, value);
  11568. }
  11569. }
  11570. HttpClient client = new HttpClient();
  11571. string responseString = string.Empty;
  11572. if (param.ContainsKey("isJson"))
  11573. {
  11574. }
  11575. if (headValues != null)
  11576. {
  11577. foreach (var item in headValues.Keys)
  11578. {
  11579. client.DefaultRequestHeaders.Add(item, headValues[item]);
  11580. }
  11581. }
  11582. try
  11583. {
  11584. if (methon == "get")
  11585. {
  11586. responseString = await client.GetStringAsync(url);
  11587. }
  11588. else if (methon == "post")
  11589. {
  11590. if (bodyValues == null)
  11591. {
  11592. jw.Msg = "methon post body null";
  11593. return Ok(jw);
  11594. }
  11595. // 数据转化为 key=val 格式
  11596. var content = new FormUrlEncodedContent(bodyValues);
  11597. var response = await client.PostAsync(url, content);
  11598. // 获取数据
  11599. responseString = await response.Content.ReadAsStringAsync();
  11600. }
  11601. else
  11602. {
  11603. jw.Msg = "methon error";
  11604. }
  11605. jw = JsonView(true, "success", responseString);
  11606. }
  11607. catch (Exception ex)
  11608. {
  11609. jw.Msg = "error " + ex.Message;
  11610. jw.Data = ex.StackTrace;
  11611. }
  11612. finally
  11613. {
  11614. client.Dispose();
  11615. }
  11616. return Ok(jw);
  11617. }
  11618. #endregion
  11619. // /// <summary>
  11620. // ///
  11621. // /// </summary>
  11622. // /// <param name="_dto"></param>
  11623. // /// <returns></returns>
  11624. // [HttpPost]
  11625. // [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11626. // public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  11627. // {
  11628. // _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  11629. // string sql = string.Format(@" Select * From Visa With(Nolock) ");
  11630. // List<OA2014_Visa> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_Visa>(sql).ToList();
  11631. // _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  11632. // Dictionary<string, int> dic_psg = new Dictionary<string, int>();
  11633. // dic_psg.Add("客人", 974);
  11634. // dic_psg.Add("司机", 975);
  11635. // dic_psg.Add("导游", 976);
  11636. // dic_psg.Add("公司内部人员", 977);
  11637. // dic_psg.Add("司机/导游/公司内部人员", 978);
  11638. // foreach (var item in list_visa)
  11639. // {
  11640. // Grp_VisaInfo temp = new Grp_VisaInfo();
  11641. // temp.Id = item.Id;
  11642. // temp.DIId = item.DIId;
  11643. // temp.VisaClient = item.VisaClient;
  11644. // temp.VisaPrice = Convert.ToDecimal(item.VisaPrice);
  11645. // temp.VisaCurrency = item.VisaCurrency;
  11646. // temp.IsThird = item.IsThird;
  11647. // if (dic_psg.ContainsKey(item.PassengerType))
  11648. // {
  11649. // temp.PassengerType = dic_psg[item.PassengerType];
  11650. // }
  11651. // else {
  11652. // temp.PassengerType = -1;
  11653. // }
  11654. // temp.VisaNumber = item.VisaNumber;
  11655. // temp.VisaFreeNumber = item.VisaFreeNumber;
  11656. // temp.CreateUserId = item.Operators;
  11657. // DateTime dt_ct;
  11658. // bool b_ct = DateTime.TryParse(item.OperatorsDate, out dt_ct);
  11659. // if (b_ct)
  11660. // {
  11661. // temp.CreateTime = dt_ct;
  11662. // }
  11663. // else
  11664. // {
  11665. // temp.CreateTime = DateTime.Now;
  11666. // }
  11667. // temp.DeleteTime = "";
  11668. // temp.DeleteUserId = 0;
  11669. // temp.Remark = item.Remark;
  11670. // if (string.IsNullOrEmpty(temp.Remark)) {
  11671. // temp.Remark = "";
  11672. // }
  11673. // temp.IsDel = item.IsDel;
  11674. // temp.VisaDescription = item.VisaAttachment;
  11675. // string sqlInsert = string.Format(@" INSERT INTO [dbo].[Grp_VisaInfo]
  11676. //([Id]
  11677. // ,[DIId]
  11678. // ,[VisaClient]
  11679. // ,[VisaPrice]
  11680. // ,[VisaCurrency]
  11681. // ,[IsThird]
  11682. // ,[PassengerType]
  11683. // ,[VisaNumber]
  11684. // ,[VisaFreeNumber]
  11685. // ,[CreateUserId]
  11686. // ,[CreateTime]
  11687. // ,[DeleteTime]
  11688. // ,[DeleteUserId]
  11689. // ,[Remark]
  11690. // ,[IsDel]
  11691. // ,[visaDescription])
  11692. // VALUES
  11693. // ({0},{1},'{2}',{3},{4}
  11694. //,{5},{6},{7},{8},{9}
  11695. //,'{10}','{11}',{12},'{13}',{14},'{15}') ",temp.Id,temp.DIId,temp.VisaClient,temp.VisaPrice,temp.VisaCurrency,
  11696. //temp.IsThird,temp.PassengerType,temp.VisaNumber,temp.VisaNumber,temp.CreateUserId,
  11697. //temp.CreateTime, temp.DeleteTime, temp.DeleteUserId, temp.Remark,temp.IsDel,temp.VisaDescription
  11698. //);
  11699. // await _airTicketResRep.ExecuteCommandAsync(sqlInsert);
  11700. // }
  11701. // return Ok(JsonView(true, "操作成功!"));
  11702. // }
  11703. /// <summary>
  11704. /// 123132123
  11705. /// </summary>
  11706. /// <param name="_dto"></param>
  11707. /// <returns></returns>
  11708. [HttpPost]
  11709. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11710. public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  11711. {
  11712. _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  11713. string sql = string.Format(@" Select * From grouopExceed where id > 20 And id not in (26,27) ");
  11714. List<OA2014_grouopExceed> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_grouopExceed>(sql).ToList();
  11715. _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  11716. Dictionary<int, int> dicDetail = new Dictionary<int, int>();
  11717. dicDetail.Add(789, 1034);
  11718. dicDetail.Add(790, 1035);
  11719. dicDetail.Add(791, 1036);
  11720. dicDetail.Add(792, 1037);
  11721. dicDetail.Add(793, 1038);
  11722. dicDetail.Add(794, 1039);
  11723. dicDetail.Add(795, 1040);
  11724. dicDetail.Add(796, 1041);
  11725. dicDetail.Add(797, 1042);
  11726. dicDetail.Add(798, 1043);
  11727. dicDetail.Add(801, 1044);
  11728. dicDetail.Add(802, 1045);
  11729. dicDetail.Add(803, 1046);
  11730. Dictionary<int, int> dic = new Dictionary<int, int>();
  11731. dic.Add(806, 1027);
  11732. dic.Add(807, 1028);
  11733. dic.Add(808, 1029);
  11734. dic.Add(809, 1030);
  11735. dic.Add(810, 1031);
  11736. dic.Add(811, 1032);
  11737. dic.Add(812, 1033);
  11738. foreach (var item in list_visa)
  11739. {
  11740. Fin_GroupExtraCost temp = new Fin_GroupExtraCost();
  11741. temp.Coefficient = item.coefficient;
  11742. DateTime dtCrt;
  11743. bool b1 = DateTime.TryParse(item.OperatorsDate, out dtCrt);
  11744. if (b1)
  11745. {
  11746. temp.CreateTime = dtCrt;
  11747. }
  11748. else
  11749. {
  11750. temp.CreateTime = DateTime.Now;
  11751. }
  11752. temp.CreateUserId = item.Operators;
  11753. temp.DeleteTime = "";
  11754. temp.DeleteUserId = 0;
  11755. temp.DiId = int.Parse(item.DIID);
  11756. temp.FilePath = item.FilePath;
  11757. temp.IsDel = item.IsDel;
  11758. temp.Price = item.Price;
  11759. temp.PriceCount = 1;
  11760. temp.PriceCurrency = item.Currency;
  11761. int detailId = 0;
  11762. if (dicDetail.ContainsKey(item.PriceTypeDetail))
  11763. {
  11764. detailId = dicDetail[item.PriceTypeDetail];
  11765. }
  11766. temp.PriceDetailType = detailId;
  11767. temp.PriceDt = DateTime.Now;
  11768. temp.PriceName = item.PriceName;
  11769. temp.PriceSum = item.Price;
  11770. int tid = 0;
  11771. if (dic.ContainsKey(item.PriceType))
  11772. {
  11773. tid = dic[item.PriceType];
  11774. }
  11775. temp.PriceType = tid;
  11776. temp.Remark = item.Remark;
  11777. await _airTicketResRep.AddAsync<Fin_GroupExtraCost>(temp);
  11778. }
  11779. return Ok(JsonView(true, "操作成功!"));
  11780. }
  11781. }
  11782. }