GroupsController.cs 634 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642136431364413645136461364713648136491365013651136521365313654136551365613657136581365913660136611366213663136641366513666136671366813669136701367113672136731367413675136761367713678136791368013681136821368313684136851368613687136881368913690136911369213693136941369513696136971369813699137001370113702137031370413705137061370713708137091371013711137121371313714137151371613717137181371913720137211372213723137241372513726137271372813729137301373113732137331373413735137361373713738137391374013741137421374313744137451374613747137481374913750137511375213753137541375513756137571375813759137601376113762137631376413765137661376713768137691377013771137721377313774137751377613777137781377913780137811378213783137841378513786137871378813789137901379113792137931379413795137961379713798137991380013801138021380313804138051380613807138081380913810138111381213813138141381513816138171381813819138201382113822138231382413825138261382713828138291383013831138321383313834138351383613837138381383913840138411384213843138441384513846138471384813849138501385113852138531385413855138561385713858138591386013861138621386313864138651386613867138681386913870138711387213873138741387513876138771387813879138801388113882138831388413885138861388713888138891389013891138921389313894138951389613897138981389913900139011390213903139041390513906139071390813909139101391113912139131391413915139161391713918
  1. using Aspose.Cells;
  2. using Aspose.Cells.Drawing.Texts;
  3. using Aspose.Words;
  4. using Aspose.Words.Tables;
  5. using NPOI.Util;
  6. using OASystem.API.OAMethodLib;
  7. using OASystem.API.OAMethodLib.File;
  8. using OASystem.Domain.Dtos.Groups;
  9. using OASystem.Domain.Entities.Groups;
  10. using OASystem.Domain.ViewModels.Groups;
  11. using OASystem.Infrastructure.Repositories.Groups;
  12. using TencentCloud.Ocr.V20181119.Models;
  13. using OASystem.Infrastructure.Tools;
  14. using System.Web;
  15. using System.Data;
  16. using static OASystem.Infrastructure.Repositories.Groups.AirTicketResRepository;
  17. using static OpenAI.GPT3.ObjectModels.SharedModels.IOpenAiModels;
  18. using Cell = Aspose.Words.Tables.Cell;
  19. using Row = Aspose.Words.Tables.Row;
  20. using System.Runtime.Intrinsics.Arm;
  21. using Microsoft.AspNetCore.Mvc.Filters;
  22. using OASystem.Domain.Entities.Customer;
  23. using NPOI.SS.Formula.Functions;
  24. using OASystem.Domain.Dtos.CRM;
  25. using System.Diagnostics;
  26. using MathNet.Numerics.Statistics.Mcmc;
  27. using AlibabaCloud.OpenApiClient.Models;
  28. using System;
  29. using NPOI.HPSF;
  30. using SqlSugar;
  31. using System.Collections;
  32. using Org.BouncyCastle.Ocsp;
  33. using System.Globalization;
  34. using static QRCoder.PayloadGenerator;
  35. using Bookmark = Aspose.Words.Bookmark;
  36. using Aspose.Words.Fields;
  37. using NPOI.POIFS.FileSystem;
  38. using Microsoft.AspNetCore.Mvc.ViewEngines;
  39. using OASystem.Domain.ViewModels.QiYeWeChat;
  40. using OASystem.Domain.Entities.Financial;
  41. using NPOI.POIFS.Crypt.Dsig;
  42. using System.Diagnostics.Eventing.Reader;
  43. using System.IO;
  44. using StackExchange.Redis;
  45. using Org.BouncyCastle.Utilities;
  46. using Aspose.Words.Drawing;
  47. using Aspose.Cells.Charts;
  48. using static NPOI.HSSF.Util.HSSFColor;
  49. using Quartz.Util;
  50. using Google.Protobuf.WellKnownTypes;
  51. using Microsoft.AspNetCore.SignalR;
  52. using OASystem.API.OAMethodLib.Hub.HubClients;
  53. using OASystem.API.OAMethodLib.Hub.Hubs;
  54. using System.Collections.Generic;
  55. using OASystem.API.OAMethodLib.JuHeAPI;
  56. using static Microsoft.EntityFrameworkCore.DbLoggerCategory;
  57. using SixLabors.Fonts.Tables.AdvancedTypographic;
  58. using Microsoft.EntityFrameworkCore;
  59. using System.Security.Cryptography.Xml;
  60. using MathNet.Numerics;
  61. using System.Security.Policy;
  62. using System.Xml;
  63. using OASystem.Domain.Dtos.QiYeWeChat;
  64. using static NPOI.POIFS.Crypt.CryptoFunctions;
  65. using Aspose.Words.Lists;
  66. using OASystem.API.OAMethodLib.YouDaoAPI;
  67. using NPOI.XSSF.Streaming.Values;
  68. using OASystem.API.OAMethodLib.Quartz.Business;
  69. using System.Linq;
  70. using NPOI.POIFS.NIO;
  71. using OASystem.API.OAMethodLib.QiYeWeChatAPI.AppNotice;
  72. using OASystem.Domain.ViewModels.Statistics;
  73. using NPOI.XSSF.Model;
  74. using NetTaste;
  75. using Microsoft.AspNetCore.Http;
  76. using EyeSoft.Collections.Generic;
  77. using NPOI.HSSF.Util;
  78. using NPOI.HSSF.UserModel;
  79. using NPOI.SS.UserModel;
  80. using NPOI.XSSF.UserModel;
  81. using MySqlX.XDevAPI.Relational;
  82. using SqlSugar.Extensions;
  83. using Table = Aspose.Words.Tables.Table;
  84. using Aspose.Cells.Tables;
  85. using NPOI.SS.Util;
  86. using RestSharp.Extensions;
  87. using Microsoft.AspNetCore.WebUtilities;
  88. using K4os.Compression.LZ4.Internal;
  89. using static Pipelines.Sockets.Unofficial.SocketConnection;
  90. using System.Diagnostics.PerformanceData;
  91. using System.Drawing.Printing;
  92. using OASystem.Domain.Dtos.FileDto;
  93. using Microsoft.VisualBasic;
  94. using Microsoft.EntityFrameworkCore.Query.Internal;
  95. using MathNet.Numerics.Distributions;
  96. namespace OASystem.API.Controllers
  97. {
  98. /// <summary>
  99. /// 团组相关
  100. /// </summary>
  101. //[Authorize]
  102. [Route("api/[controller]/[action]")]
  103. public class GroupsController : ControllerBase
  104. {
  105. private readonly GrpScheduleRepository _grpScheduleRep;
  106. private readonly IMapper _mapper;
  107. private readonly DelegationInfoRepository _groupRepository;
  108. private readonly TaskAssignmentRepository _taskAssignmentRep;
  109. private readonly AirTicketResRepository _airTicketResRep;
  110. private readonly DecreasePaymentsRepository _decreasePaymentsRep;
  111. private readonly InvitationOfficialActivitiesRepository _InvitationOfficialActivitiesRep;
  112. private readonly DelegationEnDataRepository _delegationEnDataRep;
  113. private readonly DelegationVisaRepository _delegationVisaRep;
  114. private readonly VisaPriceRepository _visaPriceRep;
  115. private readonly CarTouristGuideGroundRepository _carTouristGuideGroundRep;
  116. private readonly HotelPriceRepository _hotelPriceRep;
  117. private readonly CustomersRepository _customersRep;
  118. private readonly MessageRepository _message;
  119. private readonly SqlSugarClient _sqlSugar;
  120. private readonly TourClientListRepository _tourClientListRep;
  121. private readonly TeamRateRepository _teamRateRep;
  122. #region 成本相关
  123. private readonly CheckBoxsRepository _checkBoxs;
  124. private readonly GroupCostRepository _GroupCostRepository;
  125. private readonly CostTypeHotelNumberRepository _CostTypeHotelNumberRepository;
  126. private readonly GroupCostParameterRepository _GroupCostParameterRepository;
  127. #endregion
  128. private readonly SetDataRepository _setDataRep;
  129. private string url;
  130. private string path;
  131. private readonly EnterExitCostRepository _enterExitCostRep;
  132. private readonly IHubContext<ChatHub, IChatClient> _hubContext;
  133. private readonly UsersRepository _usersRep;
  134. private readonly IJuHeApiService _juHeApi;
  135. private readonly InvertedListRepository _invertedListRep;
  136. private readonly VisaFeeInfoRepository _visaFeeInfoRep;
  137. private readonly TicketBlackCodeRepository _ticketBlackCodeRep;
  138. private readonly ThreeCodeRepository _threeCodeRepository;
  139. private readonly HotelInquiryRepository _hotelInquiryRep;
  140. private readonly FeeAuditRepository _feeAuditRep;
  141. public GroupsController(IMapper mapper, SqlSugarClient sqlSugar, GrpScheduleRepository grpScheduleRep, DelegationInfoRepository groupRepository,
  142. TaskAssignmentRepository taskAssignmentRep, AirTicketResRepository airTicketResRep, DecreasePaymentsRepository decreasePaymentsRep,
  143. InvitationOfficialActivitiesRepository InvitationOfficialActivitiesRep, DelegationEnDataRepository delegationEnDataRep, EnterExitCostRepository enterExitCostRep
  144. , DelegationVisaRepository delegationVisaRep, MessageRepository message, VisaPriceRepository visaPriceRep, CarTouristGuideGroundRepository carTouristGuideGroundRep,
  145. CheckBoxsRepository checkBoxs, GroupCostRepository GroupCostRepository, CostTypeHotelNumberRepository CostTypeHotelNumberRepository,
  146. GroupCostParameterRepository GroupCostParameterRepository, HotelPriceRepository hotelPriceRep, CustomersRepository customersRep, SetDataRepository setDataRep,
  147. TourClientListRepository tourClientListRep, TeamRateRepository teamRateRep, IHubContext<ChatHub, IChatClient> hubContext, UsersRepository usersRep, IJuHeApiService juHeApi,
  148. InvertedListRepository invertedListRep, VisaFeeInfoRepository visaFeeInfoRep, TicketBlackCodeRepository ticketBlackCodeRep, HotelInquiryRepository hotelInquiryRep,
  149. ThreeCodeRepository threeCodeRepository, FeeAuditRepository feeAuditRep)
  150. {
  151. _mapper = mapper;
  152. _grpScheduleRep = grpScheduleRep;
  153. _groupRepository = groupRepository;
  154. _taskAssignmentRep = taskAssignmentRep;
  155. _airTicketResRep = airTicketResRep;
  156. _sqlSugar = sqlSugar;
  157. url = AppSettingsHelper.Get("ExcelBaseUrl");
  158. path = AppSettingsHelper.Get("ExcelBasePath");
  159. if (!System.IO.Directory.Exists(path))
  160. {
  161. System.IO.Directory.CreateDirectory(path);//不存在就创建文件夹
  162. }
  163. _decreasePaymentsRep = decreasePaymentsRep;
  164. _InvitationOfficialActivitiesRep = InvitationOfficialActivitiesRep;
  165. _delegationEnDataRep = delegationEnDataRep;
  166. _enterExitCostRep = enterExitCostRep;
  167. _delegationVisaRep = delegationVisaRep;
  168. _message = message;
  169. _visaPriceRep = visaPriceRep;
  170. _carTouristGuideGroundRep = carTouristGuideGroundRep;
  171. _checkBoxs = checkBoxs;
  172. _GroupCostRepository = GroupCostRepository;
  173. _CostTypeHotelNumberRepository = CostTypeHotelNumberRepository;
  174. _GroupCostParameterRepository = GroupCostParameterRepository;
  175. _hotelPriceRep = hotelPriceRep;
  176. _customersRep = customersRep;
  177. _setDataRep = setDataRep;
  178. _tourClientListRep = tourClientListRep;
  179. _teamRateRep = teamRateRep;
  180. _hubContext = hubContext;
  181. _usersRep = usersRep;
  182. _juHeApi = juHeApi;
  183. _invertedListRep = invertedListRep;
  184. _visaFeeInfoRep = visaFeeInfoRep;
  185. _ticketBlackCodeRep = ticketBlackCodeRep;
  186. _hotelInquiryRep = hotelInquiryRep;
  187. _threeCodeRepository = threeCodeRepository;
  188. _feeAuditRep = feeAuditRep;
  189. }
  190. #region 流程管控
  191. /// <summary>
  192. /// 获取团组流程管控信息
  193. /// </summary>
  194. /// <param name="paras">参数Json字符串</param>
  195. /// <returns></returns>
  196. [HttpPost]
  197. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  198. public async Task<IActionResult> PostSearchGrpSchedule(JsonDtoBase _jsonDto)
  199. {
  200. if (string.IsNullOrEmpty(_jsonDto.Paras))
  201. {
  202. return Ok(JsonView(false, "参数为空"));
  203. }
  204. Grp_ScheduleDto _ScheduleDto = JsonConvert.DeserializeObject<Grp_ScheduleDto>(_jsonDto.Paras);
  205. if (_ScheduleDto != null)
  206. {
  207. if (_ScheduleDto.SearchType == 2)//获取列表
  208. {
  209. List<Grp_ScheduleView> _grpScheduleViewList = await _grpScheduleRep.GetViewList_GrpSchedule(_ScheduleDto);
  210. return Ok(JsonView(_grpScheduleViewList));
  211. }
  212. else//获取对象
  213. {
  214. Grp_ScheduleCombinView _grpScheduleView = await _grpScheduleRep.GetView_GrpSchedule(_ScheduleDto);
  215. if (_grpScheduleView != null)
  216. {
  217. return Ok(JsonView(_grpScheduleView));
  218. }
  219. }
  220. }
  221. else
  222. {
  223. return Ok(JsonView(false, "参数反序列化失败"));
  224. }
  225. return Ok(JsonView(false, "暂无数据!"));
  226. }
  227. /// <summary>
  228. /// 修改团组流程管控详细表数据
  229. /// </summary>
  230. /// <param name="paras"></param>
  231. /// <returns></returns>
  232. [HttpPost]
  233. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  234. public async Task<IActionResult> PostUpdateGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  235. {
  236. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  237. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  238. .SetColumns(it => it.Duty == _detail.Duty)
  239. .SetColumns(it => it.ExpectBeginDt == _detail.ExpectBeginDt)
  240. .SetColumns(it => it.ExpectEndDt == _detail.ExpectEndDt)
  241. .SetColumns(it => it.JobContent == _detail.JobContent)
  242. .SetColumns(it => it.Remark == _detail.Remark)
  243. .SetColumns(it => it.StepStatus == _detail.StepStatus)
  244. .Where(s => s.Id == dto.Id)
  245. //.UpdateColumns(s => new { s.Duty, s.ExpectBeginDt, s.ExpectEndDt, s.JobContent, s.Remark, s.StepStatus })
  246. .ExecuteCommandAsync();
  247. if (result > 0)
  248. {
  249. return Ok(JsonView(true, "保存成功!"));
  250. }
  251. return Ok(JsonView(false, "保存失败!"));
  252. }
  253. /// <summary>
  254. /// 删除团组流程管控详细表数据,删除人Id请放在Duty
  255. /// </summary>
  256. /// <param name="dto"></param>
  257. /// <returns></returns>
  258. [HttpPost]
  259. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  260. public async Task<ActionResult> PostDeleteGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  261. {
  262. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  263. _detail.IsDel = 1;
  264. _detail.DeleteUserId = dto.Duty;
  265. _detail.DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  266. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  267. .SetColumns(it => it.IsDel == _detail.IsDel)
  268. .SetColumns(it => it.DeleteUserId == _detail.DeleteUserId)
  269. .SetColumns(it => it.DeleteTime == _detail.DeleteTime)
  270. .Where(it => it.Id == dto.Id)
  271. //.UpdateColumns(s => new { s.IsDel, s.DeleteUserId, s.DeleteTime })
  272. //.WhereColumns(s => s.Id == dto.Id)
  273. .ExecuteCommandAsync();
  274. if (result > 0)
  275. {
  276. return Ok(JsonView(true, "删除成功!"));
  277. }
  278. return Ok(JsonView(false, "删除失败!"));
  279. }
  280. /// <summary>
  281. /// 增加团组流程管控详细表数据
  282. /// </summary>
  283. /// <param name="dto"></param>
  284. /// <returns></returns>
  285. [HttpPost]
  286. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  287. public async Task<ActionResult> PostInsertGrpScheduleDetail(Grp_ScheduleDetailInsertDto dto)
  288. {
  289. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  290. if (DateTime.Now < _detail.ExpectBeginDt)
  291. {
  292. _detail.StepStatus = 0;
  293. }
  294. else
  295. {//若大于设置时间,不考虑设置的预计结束日期,统一视为进行中
  296. _detail.StepStatus = 1;
  297. }
  298. var result = await _grpScheduleRep._sqlSugar.Insertable(_detail).ExecuteReturnIdentityAsync();
  299. if (result > 0)
  300. {
  301. Grp_ScheduleDetailView _result = await _grpScheduleRep.GetInsertBackData(result);
  302. return Ok(JsonView(true, "添加成功!", _result));
  303. }
  304. return Ok(JsonView(false, "添加失败!"));
  305. }
  306. #endregion
  307. #region 团组基本信息
  308. /// <summary>
  309. /// 接团信息列表
  310. /// </summary>
  311. /// <param name="dto">团组列表请求dto</param>
  312. /// <returns></returns>
  313. [HttpPost]
  314. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  315. public async Task<IActionResult> GetGroupList(GroupListDto dto)
  316. {
  317. var groupData = await _groupRepository.GetGroupList(dto);
  318. if (groupData.Code != 0)
  319. {
  320. return Ok(JsonView(false, groupData.Msg));
  321. }
  322. return Ok(JsonView(groupData.Data));
  323. }
  324. /// <summary>
  325. /// 接团信息列表 Page
  326. /// </summary>
  327. /// <param name="dto">团组列表请求dto</param>
  328. /// <returns></returns>
  329. [HttpPost]
  330. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  331. public async Task<IActionResult> PostGroupPageList(GroupPageListDto dto)
  332. {
  333. #region 参数验证
  334. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  335. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  336. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  337. #region 页面操作权限验证
  338. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  339. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  340. #endregion
  341. #endregion
  342. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  343. {
  344. string sqlWhere = string.Empty;
  345. if (dto.IsSure == 0) //未完成
  346. {
  347. sqlWhere += string.Format(@" And IsSure = 0");
  348. }
  349. else if (dto.IsSure == 1) //已完成
  350. {
  351. sqlWhere += string.Format(@" And IsSure = 1");
  352. }
  353. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  354. {
  355. string tj = dto.SearchCriteria;
  356. 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}%')",
  357. tj, tj, tj, tj, tj);
  358. }
  359. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  360. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  361. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  362. JietuanOperator,IsSure,CreateTime
  363. From (
  364. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  365. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  366. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  367. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  368. su.CnName JietuanOperator,IsSure,gdi.CreateTime
  369. From Grp_DelegationInfo gdi
  370. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  371. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  372. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  373. Where gdi.IsDel = 0 {0}
  374. ) temp", sqlWhere);
  375. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  376. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  377. #region 处理所属部门
  378. /*
  379. * 1.sq 和 gyy 等显示 市场部
  380. * 2.王鸽和主管及张总还有管理员号统一国交部
  381. * 2-1. 4 管理员 ,21 张海麟
  382. */
  383. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  384. List<int> userIds1 = new List<int>() { 4, 21 };
  385. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  386. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  387. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  388. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  389. .ToList();
  390. foreach (var item in _DelegationList)
  391. {
  392. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  393. }
  394. #endregion
  395. var _view = new
  396. {
  397. PageFuncAuth = pageFunAuthView,
  398. Data = _DelegationList
  399. };
  400. return Ok(JsonView(true, "查询成功!", _view, total));
  401. }
  402. else
  403. {
  404. return Ok(JsonView(false, "查询失败"));
  405. }
  406. }
  407. /// <summary>
  408. /// 团组列表
  409. /// </summary>
  410. /// <returns></returns>
  411. [HttpPost]
  412. public async Task<IActionResult> GetGroupListByWhere(GroupListByWhere dto)
  413. {
  414. #region 参数验证
  415. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  416. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  417. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  418. #region 页面操作权限验证
  419. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  420. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  421. #endregion
  422. #endregion
  423. if (dto.PortType != 1 && dto.PortType != 2)
  424. {
  425. return Ok(JsonView(false, "查询失败!"));
  426. }
  427. string orderbyStr = "order by gdi.CreateTime Desc";
  428. string sqlWhere = string.Empty;
  429. if (dto.IsSure == 0) //未完成
  430. {
  431. sqlWhere += string.Format(@" And IsSure = 0");
  432. }
  433. else if (dto.IsSure == 1) //已完成
  434. {
  435. sqlWhere += string.Format(@" And IsSure = 1");
  436. }
  437. //团组类型
  438. if (dto.TeamDid > 0)
  439. {
  440. sqlWhere += string.Format(@"And TeamDid = {0} ", dto.TeamDid);
  441. }
  442. //团组名称
  443. if (!string.IsNullOrEmpty(dto.TeamName))
  444. {
  445. sqlWhere += string.Format(@"And TeamName Like '%{0}%'", dto.TeamName);
  446. }
  447. //客户名称
  448. if (!string.IsNullOrEmpty(dto.ClientName))
  449. {
  450. sqlWhere += string.Format(@"And ClientName Like '%{0}%'", dto.ClientName);
  451. }
  452. //客户单位
  453. if (!string.IsNullOrEmpty(dto.ClientUnit))
  454. {
  455. sqlWhere += string.Format(@"And ClientUnit Like '%{0}%'", dto.ClientUnit);
  456. }
  457. //出访时间
  458. if (!string.IsNullOrEmpty(dto.visitDataTime))
  459. {
  460. sqlWhere += string.Format(@"And VisitDate >= '{0}'", dto.visitDataTime);
  461. orderbyStr = "order by gdi.VisitDate";
  462. }
  463. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  464. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  465. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  466. JietuanOperator,IsSure,CreateTime
  467. From (
  468. Select row_number() over({0}) as Row_Number,
  469. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  470. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  471. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  472. su.CnName JietuanOperator,IsSure,gdi.CreateTime
  473. From Grp_DelegationInfo gdi
  474. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  475. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  476. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  477. Where gdi.IsDel = 0 {1}
  478. ) temp ", orderbyStr, sqlWhere);
  479. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  480. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  481. #region 处理所属部门
  482. /*
  483. * 1.sq 和 gyy 等显示 市场部
  484. * 2.王鸽和主管及张总还有管理员号统一国交部
  485. * 2-1. 4 管理员 ,21 张海麟
  486. */
  487. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  488. List<int> userIds1 = new List<int>() { 4, 21 };
  489. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  490. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  491. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  492. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  493. .ToList();
  494. foreach (var item in _DelegationList)
  495. {
  496. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  497. }
  498. #endregion
  499. var _view = new
  500. {
  501. PageFuncAuth = pageFunAuthView,
  502. Data = _DelegationList
  503. };
  504. return Ok(JsonView(true, "查询成功!", _view, total));
  505. }
  506. /// <summary>
  507. /// 接团信息详情
  508. /// </summary>
  509. /// <param name="dto">团组info请求dto</param>
  510. /// <returns></returns>
  511. [HttpPost]
  512. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  513. public async Task<IActionResult> GetGroupInfo(GroupInfoDto dto)
  514. {
  515. var groupData = await _groupRepository.GetGroupInfo(dto);
  516. if (groupData.Code != 0)
  517. {
  518. return Ok(JsonView(false, groupData.Msg));
  519. }
  520. return Ok(JsonView(groupData.Data));
  521. }
  522. /// <summary>
  523. /// 接团信息 编辑添加
  524. /// 基础信息数据源
  525. /// </summary>
  526. /// <param name="dto"></param>
  527. /// <returns></returns>
  528. [HttpPost]
  529. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  530. public async Task<IActionResult> GroupEditBasicSource(GroupListDto dto)
  531. {
  532. var groupData = await _groupRepository.GroupEditBasicSource(dto);
  533. if (groupData.Code != 0)
  534. {
  535. return Ok(JsonView(false, groupData.Msg));
  536. }
  537. return Ok(JsonView(groupData.Data));
  538. }
  539. /// <summary>
  540. /// 接团信息 操作(增改)
  541. /// </summary>
  542. /// <param name="dto"></param>
  543. /// <returns></returns>
  544. [HttpPost]
  545. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  546. public async Task<IActionResult> GroupOperation(GroupOperationDto dto)
  547. {
  548. try
  549. {
  550. var groupData = await _groupRepository.GroupOperation(dto);
  551. if (groupData.Code != 0)
  552. {
  553. return Ok(JsonView(false, groupData.Msg));
  554. }
  555. int diId = 0;
  556. //添加时 默认加入团组汇率
  557. if (dto.Status == 1) //添加
  558. {
  559. diId = groupData.Data;
  560. //添加默认币种
  561. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  562. //默认分配权限
  563. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  564. //消息提示 王鸽 主管号
  565. List<int> _managerIds = new List<int>() { 22, 32 };
  566. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  567. if (userIds.Count > 0)
  568. {
  569. userIds.Add(208);
  570. //创建团组管控
  571. GroupStepForDelegation.CreateWorkStep(diId);
  572. //发送消息
  573. string groupName = dto.TeamName;
  574. string createGroupUser = string.Empty;
  575. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  576. if (userInfo != null) createGroupUser = userInfo.CnName;
  577. string title = $"系统通知";
  578. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  579. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  580. }
  581. //默认创建倒推表
  582. await _invertedListRep._Create(dto.UserId, diId);
  583. }
  584. else if (dto.Status == 2)
  585. {
  586. diId = dto.Id;
  587. }
  588. return Ok(JsonView(true, "操作成功!", diId));
  589. }
  590. catch (Exception ex)
  591. {
  592. Logs("[response]" + JsonConvert.SerializeObject(dto));
  593. Logs(ex.Message);
  594. return Ok(JsonView(false, ex.Message));
  595. }
  596. }
  597. /// <summary>
  598. /// 接团流程操作(增改)
  599. /// 安卓端使用 建团时添加客户名单
  600. /// </summary>
  601. /// <param name="dto"></param>
  602. /// <returns></returns>
  603. [HttpPost]
  604. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  605. public async Task<IActionResult> GroupProcessOperation(GroupProcessOperationDto dto)
  606. {
  607. try
  608. {
  609. #region 参数验证
  610. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  611. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  612. #region 页面操作权限验证
  613. //pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 104);
  614. //if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "客户名单您没有添加权限!"));
  615. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 27);
  616. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "团组操作您没有添加权限!"));
  617. #endregion
  618. #endregion
  619. _sqlSugar.BeginTran();
  620. var _dto = new GroupOperationDto();
  621. _dto = _mapper.Map<GroupProcessOperationDto, GroupOperationDto>(dto);
  622. var groupData = await _groupRepository.GroupOperation(_dto);
  623. if (groupData.Code != 0)
  624. {
  625. return Ok(JsonView(false, "团组操作添加失败!" + groupData.Msg));
  626. }
  627. int diId = 0;
  628. //添加时 默认加入团组汇率
  629. if (dto.Status == 1) //添加
  630. {
  631. diId = groupData.Data;
  632. //添加默认币种
  633. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  634. //默认分配权限
  635. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  636. //消息提示 王鸽 主管号
  637. List<int> _managerIds = new List<int>() { 22, 32 };
  638. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  639. if (userIds.Count > 0)
  640. {
  641. userIds.Add(208);
  642. //创建团组管控
  643. GroupStepForDelegation.CreateWorkStep(diId);
  644. //发送消息
  645. string groupName = dto.TeamName;
  646. string createGroupUser = string.Empty;
  647. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  648. if (userInfo != null) createGroupUser = userInfo.CnName;
  649. string title = $"系统通知";
  650. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  651. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  652. }
  653. }
  654. if (dto.Status == 2)
  655. {
  656. diId = dto.Id;
  657. if (diId == 0)
  658. {
  659. return Ok(JsonView(false, "修改失败! 未添加团组id" + groupData.Msg));
  660. }
  661. }
  662. var viewData = await _tourClientListRep.OperMultiple(dto.TourClientListInfos, diId, dto.UserId);
  663. if (viewData.Code != 0)
  664. {
  665. _sqlSugar.RollbackTran();
  666. return Ok(JsonView(false, "客户名单添加失败!" + viewData.Msg));
  667. }
  668. _sqlSugar.CommitTran();
  669. return Ok(JsonView(true, "添加成功"));
  670. }
  671. catch (Exception ex)
  672. {
  673. _sqlSugar.RollbackTran();
  674. return Ok(JsonView(false, ex.Message));
  675. }
  676. }
  677. /// <summary>
  678. /// 接团信息 操作(删除)
  679. /// </summary>
  680. /// <param name="dto"></param>
  681. /// <returns></returns>
  682. [HttpPost]
  683. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  684. public async Task<IActionResult> GroupDel(GroupDelDto dto)
  685. {
  686. try
  687. {
  688. var groupData = await _groupRepository.GroupDel(dto);
  689. if (groupData.Code != 0)
  690. {
  691. return Ok(JsonView(false, groupData.Msg));
  692. }
  693. return Ok(JsonView(true));
  694. }
  695. catch (Exception ex)
  696. {
  697. Logs("[response]" + JsonConvert.SerializeObject(dto));
  698. Logs(ex.Message);
  699. return Ok(JsonView(false, ex.Message));
  700. }
  701. }
  702. /// <summary>
  703. /// 获取团组销售报价号
  704. /// 团组添加时 使用
  705. /// </summary>
  706. /// <returns></returns>
  707. [HttpPost]
  708. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  709. public async Task<IActionResult> GetGroupSalesQuoteNo()
  710. {
  711. var groupData = await _groupRepository.GetGroupSalesQuoteNo();
  712. if (groupData.Code != 0)
  713. {
  714. return Ok(JsonView(false, groupData.Msg));
  715. }
  716. object salesQuoteNo = new
  717. {
  718. SalesQuoteNo = groupData.Data
  719. };
  720. return Ok(JsonView(salesQuoteNo));
  721. }
  722. /// <summary>
  723. /// 设置确认出团
  724. /// </summary>
  725. /// <param name="dto"></param>
  726. /// <returns></returns>
  727. [HttpPost]
  728. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  729. public async Task<IActionResult> SetConfirmationGroup(ConfirmationGroupDto dto)
  730. {
  731. var groupData = await _groupRepository.ConfirmationGroup(dto);
  732. if (groupData.Code != 0)
  733. {
  734. return Ok(JsonView(false, groupData.Msg));
  735. }
  736. var groupInfo = _groupRepository.Query(s => s.Id == dto.GroupId).First();
  737. #region OA消息推送
  738. try
  739. {
  740. string groupName = groupInfo.TeamName;
  741. List<Sys_Users> listUser = _airTicketResRep.Query<Sys_Users>(s => s.DepId == 7 && s.IsDel == 0).ToList();
  742. List<int> userIds = new List<int>();
  743. listUser.ForEach(s => userIds.Add(s.Id));
  744. string title = $"系统通知";
  745. string content = $"团组[{groupName}]已确认出团!";
  746. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, dto.GroupId);
  747. }
  748. catch (Exception ex)
  749. {
  750. }
  751. #endregion
  752. #region 应用推送
  753. try
  754. {
  755. await AppNoticeLibrary.SendChatMsg_GroupStatus_Create(dto.GroupId, QiyeWeChatEnum.CompanyCRMChat);
  756. Sys_Users users = _airTicketResRep.Query<Sys_Users>(s => s.Id == groupInfo.JietuanOperator).First();
  757. Sys_Department department = _airTicketResRep.Query<Sys_Department>(s => s.Id == users.DepId).First();
  758. if (department.Id == 6 && !string.IsNullOrEmpty(users.QiyeChatUserId))
  759. {
  760. List<string> userList = new List<string>() { users.QiyeChatUserId };
  761. await AppNoticeLibrary.SendUserMsg_GroupStatus_Create(dto.GroupId, userList);
  762. }
  763. }
  764. catch (Exception ex)
  765. {
  766. }
  767. #endregion
  768. GroupStepForDelegation.CreateWorkStep(dto.GroupId); //创建管控流程
  769. return Ok(JsonView(true, "操作成功!", groupData.Data));
  770. }
  771. /// <summary>
  772. /// 获取团组名称data And 签证国别Data
  773. /// </summary>
  774. /// <param name="dto"></param>
  775. /// <returns></returns>
  776. [HttpPost]
  777. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  778. public async Task<IActionResult> GetGroupNameAndVisaNationality(GroupNameDto dto)
  779. {
  780. var groupData = await _groupRepository.GetGroupNameAndVisaNationality(dto);
  781. if (groupData.Code != 0)
  782. {
  783. return Ok(JsonView(false, groupData.Msg));
  784. }
  785. return Ok(JsonView(groupData.Data));
  786. }
  787. /// <summary>
  788. /// 根据CTable类型返回对应的团组名称及简单数据(APP端)
  789. /// </summary>
  790. /// <returns></returns>
  791. [HttpPost]
  792. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  793. public async Task<IActionResult> PostGroupNameAndEasy(DecreasePaymentsDto dto)
  794. {
  795. try
  796. {
  797. Result groupData = await _decreasePaymentsRep.PostGroupNameAndEasy(dto);
  798. if (groupData.Code != 0)
  799. {
  800. return Ok(JsonView(false, groupData.Msg));
  801. }
  802. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  803. }
  804. catch (Exception ex)
  805. {
  806. return Ok(JsonView(false, "程序错误!"));
  807. throw;
  808. }
  809. }
  810. #endregion
  811. #region 团组&签证
  812. /// <summary>
  813. /// 根据团组Id获取签证客户信息List
  814. /// </summary>
  815. /// <param name="dto">请求dto</param>
  816. /// <returns></returns>
  817. [HttpPost]
  818. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  819. public async Task<IActionResult> GetCrmByGroupId(ClientByGroupIdDto dto)
  820. {
  821. var groupData = await _groupRepository.GetCrmByGroupId(dto);
  822. if (groupData.Code != 0)
  823. {
  824. return Ok(JsonView(false, groupData.Msg));
  825. }
  826. return Ok(JsonView(groupData.Data));
  827. }
  828. /// <summary>
  829. /// IOS获取团组签证拍照上传进度01(团组列表)
  830. /// </summary>
  831. /// <param name="dto">请求dto</param>
  832. /// <returns></returns>
  833. [HttpPost]
  834. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  835. public async Task<IActionResult> PostIOSVisaProgress(IOS_VisaDto dto)
  836. {
  837. if (dto == null)
  838. {
  839. return Ok(JsonView(false, "参数为空"));
  840. }
  841. DelegationVisaViewList visaList = _delegationVisaRep.GetDelegationList(dto);
  842. return Ok(JsonView(visaList));
  843. }
  844. /// <summary>
  845. /// IOS获取团组签证拍照上传进度02(团组签证详情\人员列表\国家)
  846. /// </summary>
  847. /// <returns></returns>
  848. [HttpPost]
  849. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  850. public async Task<ActionResult> PostIOSVisaProgressContent(IOS_VisaCustomerListDto dto)
  851. {
  852. if (dto == null)
  853. {
  854. return Ok(JsonView(false, "请求错误:"));
  855. }
  856. List<DelegationVisaProgressView> list = _delegationVisaRep.GetDelegationProgressList(dto.diId);
  857. return Ok(JsonView(list));
  858. }
  859. /// <summary>
  860. /// IOS获取团组签证拍照上传进度03(相册)
  861. /// </summary>
  862. /// <returns></returns>
  863. [HttpPost]
  864. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  865. public async Task<ActionResult> PostIOSVisaProgressImageList(IOS_VisaImageListDto dto)
  866. {
  867. if (dto == null)
  868. {
  869. return Ok(JsonView(false, "请求错误:"));
  870. }
  871. List<VisaProgressImageView> list = _delegationVisaRep.GetVisaProgressImageList(dto.visaProgressCustomerId, dto.picType);
  872. string url = AppSettingsHelper.Get("VisaProgressImageBaseUrl") + AppSettingsHelper.Get("VisaProgressImageFtpPath");
  873. list.ForEach(s => s.url = url);
  874. return Ok(JsonView(list));
  875. }
  876. /// <summary>
  877. /// IOS获取团组签证拍照上传进度04(图片上传)
  878. /// </summary>
  879. /// <param name="dto"></param>
  880. /// <returns></returns>
  881. [HttpPost]
  882. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  883. public async Task<ActionResult> PostIOSVisaProgressUploadImage(IOS_VisaUploadImageDto dto)
  884. {
  885. //string result = decodeBase64ToImage(dto.base64DataURL, dto.imageName);
  886. //if (!string.IsNullOrEmpty(result))
  887. //{
  888. //}
  889. //else {
  890. // return Ok(JsonView(false, "上传失败"));
  891. //}
  892. DateTime dt1970 = new DateTime(1970, 1, 1, 0, 0, 0, 0);
  893. int sucNum = 0;
  894. try
  895. {
  896. foreach (var item in dto.base64DataList)
  897. {
  898. string imageName = dto.imageName + ((DateTime.Now.Ticks - dt1970.Ticks) / 10000).ToString();
  899. string result = decodeBase64ToImage(item, imageName);
  900. if (!string.IsNullOrEmpty(result))
  901. {
  902. Grp_VisaProgressCustomerPicture pic = new Grp_VisaProgressCustomerPicture();
  903. pic.CreateUserId = dto.CreateUserId;
  904. pic.PicName = imageName;
  905. pic.PicPath = result;
  906. pic.VisaProgressCustomerId = dto.visaProgressCustomerId;
  907. int insertResult = await _delegationVisaRep.AddAsync<Grp_VisaProgressCustomerPicture>(pic);
  908. if (insertResult > 0)
  909. {
  910. sucNum++;
  911. }
  912. }
  913. }
  914. }
  915. catch (Exception ex)
  916. {
  917. return Ok(JsonView(false, ex.Message));
  918. }
  919. string msg = string.Format(@"成功上传{0}张", sucNum);
  920. return Ok(JsonView(true, msg));
  921. }
  922. private string decodeBase64ToImage(string base64DataURL, string imgName)
  923. {
  924. string filename = "";//声明一个string类型的相对路径
  925. String base64 = base64DataURL.Substring(base64DataURL.IndexOf(",") + 1); //将‘,’以前的多余字符串删除
  926. System.Drawing.Bitmap bitmap = null;//定义一个Bitmap对象,接收转换完成的图片
  927. try//会有异常抛出,try,catch一下
  928. {
  929. byte[] arr = Convert.FromBase64String(base64);//将纯净资源Base64转换成等效的8位无符号整形数组
  930. System.IO.MemoryStream ms = new System.IO.MemoryStream(arr);//转换成无法调整大小的MemoryStream对象
  931. bitmap = new System.Drawing.Bitmap(ms);//将MemoryStream对象转换成Bitmap对象
  932. var fileDir = AppSettingsHelper.Get("VisaProgressImageBasePath");
  933. //文件名称
  934. filename = "VisaProgress_" + DateTime.Now.ToString("yyyyMMddHHmmss") + "_" + imgName + ".jpeg";//所要保存的相对路径及名字
  935. //上传的文件的路径
  936. string filePath = "";
  937. if (!Directory.Exists(fileDir))
  938. {
  939. Directory.CreateDirectory(fileDir);
  940. }
  941. //上传的文件的路径
  942. filePath = fileDir + filename;
  943. //string url = HttpRuntime.AppDomainAppPath.ToString();
  944. //string tmpRootDir = System.Web.HttpContext.Current.Server.MapPath(System.Web.HttpContext.Current.Request.ApplicationPath.ToString()); //获取程序根目录
  945. //string imagesurl2 = tmpRootDir + filename; //转换成绝对路径
  946. bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Jpeg);//保存到服务器路径
  947. //bitmap.Save(filePath + ".bmp", System.Drawing.Imaging.ImageFormat.Bmp);
  948. //bitmap.Save(filePath + ".gif", System.Drawing.Imaging.ImageFormat.Gif);
  949. //bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Png);
  950. ms.Close();//关闭当前流,并释放所有与之关联的资源
  951. bitmap.Dispose();
  952. }
  953. catch (Exception e)
  954. {
  955. string massage = e.Message;
  956. Logs("IOS图片上传Error:" + massage);
  957. //filename = e.Message;
  958. }
  959. return filename;//返回相对路径
  960. }
  961. /// <summary>
  962. /// IOS获取团组签证拍照上传进度05(修改签证状态/通知)
  963. /// </summary>
  964. /// <param name="dto"></param>
  965. /// <returns></returns>
  966. [HttpPost]
  967. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  968. public async Task<ActionResult> PostIOSVisaProgressChangeStatus(IOS_VisaChangeStatusDto dto)
  969. {
  970. if (dto == null)
  971. {
  972. return Ok(JsonView(false, "请求错误:"));
  973. }
  974. string msg = "参数错误";
  975. if (dto.diId > 0 && dto.visaStatus > 0 && dto.visaStatus < 4)
  976. {
  977. try
  978. {
  979. //_delegationVisaRep.BeginTran();
  980. var updCount = await _delegationVisaRep._sqlSugar.Updateable<Grp_VisaProgressCustomer>()
  981. .SetColumns(it => it.WorkStatus == dto.visaStatus)
  982. .Where(s => s.Id == dto.visaProgressCustomerId)
  983. .ExecuteCommandAsync();
  984. if (updCount > 0 && dto.publishCode == 1)
  985. {
  986. _delegationVisaRep.ChangeDataBase(DBEnum.OA2014DB); //切换到新OA后删除
  987. string sqlDelegation = string.Format(@" Select * From DelegationInfo With(Nolock) Where Id = {0} ", dto.diId);
  988. OA2021_DelegationInfo groupData = _sqlSugar.SqlQueryable<OA2021_DelegationInfo>(sqlDelegation).First();
  989. //GroupInfoDto grpDto = new GroupInfoDto() { Id = dto.diId };
  990. //var groupData = await _groupRepository.GetGroupInfo(grpDto);
  991. _delegationVisaRep.ChangeDataBase(DBEnum.OA2023DB); //切换到新OA后删除
  992. if (groupData == null)
  993. {
  994. _delegationVisaRep.RollbackTran();
  995. }
  996. string title = string.Format(@"[签证进度更新]");
  997. string content = string.Format(@"测试文本");
  998. bool rst = await _message.AddMsg(new MessageDto()
  999. {
  1000. Type = MessageTypeEnum.GroupVisaProgressUpdate,
  1001. IssuerId = dto.publisher,
  1002. Title = title,
  1003. Content = content,
  1004. ReleaseTime = DateTime.Now,
  1005. UIdList = new List<int> {
  1006. 234
  1007. }
  1008. });
  1009. if (rst)
  1010. {
  1011. return Ok(JsonView(true, "发送通知成功"));
  1012. }
  1013. }
  1014. //_delegationVisaRep.CommitTran();
  1015. }
  1016. catch (Exception)
  1017. {
  1018. //_delegationVisaRep.RollbackTran();
  1019. }
  1020. }
  1021. return Ok(JsonView(true, msg));
  1022. }
  1023. #endregion
  1024. #region 团组任务分配
  1025. /// <summary>
  1026. /// 团组任务分配初始化
  1027. /// </summary>
  1028. /// <param name="dto"></param>
  1029. /// <returns></returns>
  1030. [HttpPost]
  1031. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1032. public async Task<IActionResult> GetTaskAssignmen()
  1033. {
  1034. var groupData = await _taskAssignmentRep.GetTaskAssignmen();
  1035. if (groupData.Code != 0)
  1036. {
  1037. return Ok(JsonView(false, groupData.Msg));
  1038. }
  1039. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1040. }
  1041. /// <summary>
  1042. /// 团组任务分配查询
  1043. /// </summary>
  1044. /// <param name="dto"></param>
  1045. /// <returns></returns>
  1046. [HttpPost]
  1047. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1048. public async Task<IActionResult> TaskAssignmenQuery(TaskAssignmenQueryDto dto)
  1049. {
  1050. var groupData = await _taskAssignmentRep.TaskAssignmenQuery(dto);
  1051. if (groupData.Code != 0)
  1052. {
  1053. return Ok(JsonView(false, groupData.Msg));
  1054. }
  1055. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1056. }
  1057. /// <summary>
  1058. /// 团组任务分配操作
  1059. /// </summary>
  1060. /// <param name="dto"></param>
  1061. /// <returns></returns>
  1062. [HttpPost]
  1063. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1064. public async Task<IActionResult> GetTaskAssignmenOp(TaskAssignmenDto dto)
  1065. {
  1066. Result groupData = await _taskAssignmentRep.GetTaskAssignmenOp(dto);
  1067. if (groupData.Code != 0)
  1068. {
  1069. return Ok(JsonView(false, groupData.Msg));
  1070. }
  1071. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1072. }
  1073. #endregion
  1074. #region 团组费用审核
  1075. /// <summary>
  1076. /// 费用审核
  1077. /// 团组列表 Page
  1078. /// </summary>
  1079. /// <param name="_dto">团组列表请求dto</param>
  1080. /// <returns></returns>
  1081. [HttpPost]
  1082. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1083. public async Task<IActionResult> PostExpenseAuditGroupPageItems(ExpenseAuditGroupPageItemsDto _dto)
  1084. {
  1085. #region 参数验证
  1086. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1087. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1088. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1089. #region 页面操作权限验证
  1090. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1091. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1092. #endregion
  1093. #endregion
  1094. if (_dto.PortType == 1 || _dto.PortType == 2 || _dto.PortType == 2) // web/Android/IOS
  1095. {
  1096. string sqlWhere = string.Empty;
  1097. if (_dto.IsSure == 0) //未完成
  1098. {
  1099. sqlWhere += string.Format(@" And IsSure = 0");
  1100. }
  1101. else if (_dto.IsSure == 1) //已完成
  1102. {
  1103. sqlWhere += string.Format(@" And IsSure = 1");
  1104. }
  1105. if (!string.IsNullOrEmpty(_dto.SearchCriteria))
  1106. {
  1107. string tj = _dto.SearchCriteria;
  1108. 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}%')",
  1109. tj, tj, tj, tj, tj);
  1110. }
  1111. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  1112. TeamName,ClientName,ClientUnit, TeamLevId,TeamLev,VisitDate,
  1113. VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  1114. From (
  1115. Select row_number() over(order by gdi.VisitDate Desc) as Row_Number,
  1116. gdi.Id,SalesQuoteNo,TourCode,ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,
  1117. ClientName,ClientUnit,ssd.Id TeamTypeId, ssd.Name TeamType,VisitDate,
  1118. VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  1119. From Grp_DelegationInfo gdi
  1120. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  1121. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  1122. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  1123. Where gdi.IsDel = 0 {0}
  1124. ) temp ", sqlWhere);
  1125. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  1126. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(_dto.PageIndex, _dto.PageSize, total);//ToPageAsync
  1127. var _view = new
  1128. {
  1129. PageFuncAuth = pageFunAuthView,
  1130. Data = _DelegationList
  1131. };
  1132. return Ok(JsonView(true, "查询成功!", _view, total));
  1133. }
  1134. else
  1135. {
  1136. return Ok(JsonView(false, "查询失败"));
  1137. }
  1138. }
  1139. /// <summary>
  1140. /// 获取团组费用审核
  1141. /// </summary>
  1142. /// <param name="paras">参数Json字符串</param>
  1143. /// <returns></returns>
  1144. [HttpPost]
  1145. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1146. public async Task<IActionResult> PostSearchGrpCreditCardPayment(Search_GrpCreditCardPaymentDto _dto)
  1147. {
  1148. try
  1149. {
  1150. #region 参数验证
  1151. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1152. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1153. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  1154. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1155. #region 页面操作权限验证
  1156. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1157. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1158. #endregion
  1159. #endregion
  1160. Grp_CreditCardPaymentView _view = new Grp_CreditCardPaymentView();
  1161. List<SimplClientInfo> clientNameList = getSimplClientList(_dto.DiId);
  1162. #region 费用清单
  1163. var exp = Expressionable.Create<Grp_CreditCardPayment>();
  1164. exp.AndIF(_dto.AuditStatus != -1, it => it.IsAuditGM == _dto.AuditStatus);
  1165. exp.AndIF(_dto.Label != -1, it => it.CTable == _dto.Label);
  1166. List<Grp_CreditCardPayment> entityList = _groupRepository
  1167. .Query<Grp_CreditCardPayment>(s => s.DIId == _dto.DiId && s.IsDel == 0 && s.CreateUserId > 0)
  1168. .Where(exp.ToExpression())
  1169. .ToList();
  1170. List<Grp_CreditCardPaymentDetailView> detailList = new List<Grp_CreditCardPaymentDetailView>();
  1171. List<CreditCardPaymentCurrencyPriceItem> ccpCurrencyPrices = new List<CreditCardPaymentCurrencyPriceItem>();
  1172. /*
  1173. * 76://酒店预订
  1174. */
  1175. List<Grp_HotelReservations> _HotelReservations = await _groupRepository
  1176. .Query<Grp_HotelReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1177. .ToListAsync();
  1178. List<Grp_HotelReservationsContent> _HotelReservationsContents = await _groupRepository
  1179. .Query<Grp_HotelReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1180. .ToListAsync();
  1181. /*
  1182. * 79://车/导游地接
  1183. */
  1184. List<Grp_CarTouristGuideGroundReservations> _CarTouristGuideGroundReservations = await _groupRepository
  1185. .Query<Grp_CarTouristGuideGroundReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1186. .ToListAsync();
  1187. List<Grp_CarTouristGuideGroundReservationsContent> _CarTouristGuideGroundReservationsContent = await _groupRepository
  1188. .Query<Grp_CarTouristGuideGroundReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1189. .ToListAsync();
  1190. /*
  1191. * 80: //签证
  1192. */
  1193. List<Grp_VisaInfo> _VisaInfos = await _groupRepository
  1194. .Query<Grp_VisaInfo>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1195. .ToListAsync();
  1196. /*
  1197. *81: //邀请/公务活动
  1198. */
  1199. List<Grp_InvitationOfficialActivities> _InvitationOfficialActivities = await _groupRepository
  1200. .Query<Grp_InvitationOfficialActivities>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1201. .ToListAsync();
  1202. /*
  1203. * 82: //团组客户保险
  1204. */
  1205. List<Grp_Customers> _Customers = await _groupRepository.Query<Grp_Customers>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1206. /*
  1207. * Lable = 85 机票预订
  1208. */
  1209. List<Grp_AirTicketReservations> p_AirTicketReservations = await _groupRepository
  1210. .Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1211. .ToListAsync();
  1212. /*
  1213. * 85 机票预定
  1214. */
  1215. List<Grp_AirTicketReservations> _AirTicketReservations = await _groupRepository.Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1216. /*
  1217. * 98 其他款项
  1218. */
  1219. List<Grp_DecreasePayments> _DecreasePayments = await _groupRepository
  1220. .Query<Grp_DecreasePayments>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1221. .ToListAsync();
  1222. /*
  1223. * 285:收款退还
  1224. */
  1225. List<Fin_PaymentRefundAndOtherMoney> _PaymentRefundAndOtherMoneys = await _groupRepository
  1226. .Query<Fin_PaymentRefundAndOtherMoney>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1227. .ToListAsync();
  1228. /*
  1229. * 1015: //超支费用
  1230. */
  1231. List<Fin_GroupExtraCost> _GroupExtraCosts = await _groupRepository.Query<Fin_GroupExtraCost>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1232. /*
  1233. * 币种信息
  1234. */
  1235. var currencyItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 66 && s.IsDel == 0).ToListAsync();
  1236. /*
  1237. * 车/导游地接 费用类型
  1238. */
  1239. var carFeeTypeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 17 && s.IsDel == 0).ToListAsync();
  1240. /*
  1241. * 车/导游地接 费用类型
  1242. */
  1243. var carFeeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 83 && s.IsDel == 0).ToListAsync();
  1244. var initDatas = await _groupRepository.Query<Sys_SetData>(s => s.IsDel == 0).ToListAsync();
  1245. var cityData = await _groupRepository.Query<Grp_NationalTravelFee>(s => s.IsDel == 0).ToListAsync();
  1246. /*
  1247. * 用户信息
  1248. */
  1249. var userItems = await _groupRepository.Query<Sys_Users>(s => s.IsDel == 0).ToListAsync();
  1250. /*
  1251. * 费用模块
  1252. */
  1253. Sys_SetData sdPriceName = _groupRepository.Query<Sys_SetData>(s => s.Id == _dto.Label).First();
  1254. string priceModule = string.Empty;
  1255. if (sdPriceName != null)
  1256. {
  1257. priceModule = sdPriceName.Name;
  1258. }
  1259. /*
  1260. * 成本信息
  1261. */
  1262. var groupCost = _groupRepository.Query<Grp_GroupCostParameter>(s => s.DiId == _dto.DiId && s.IsDel == 0).First();
  1263. decimal _groupRate = 0.0000M;
  1264. string _groupCurrencyCode = "-";
  1265. if (groupCost != null)
  1266. {
  1267. _groupRate = groupCost.Rate;
  1268. if (int.TryParse(groupCost.Currency, out int _currency))
  1269. {
  1270. _groupCurrencyCode = currencyItems.Find(it => it.Id == _currency)?.Name ?? "-";
  1271. }
  1272. else _groupCurrencyCode = groupCost.Currency;
  1273. }
  1274. string costContentSql = $"Select * From Grp_GroupCost";
  1275. var groupCostDetails = _sqlSugar.SqlQueryable<GroupCostAuditView>(costContentSql).Where(x => x.IsDel == 0 && x.Diid == _dto.DiId).ToList();
  1276. //处理日期为空的天数
  1277. for (int i = 0; i < groupCostDetails.Count; i++)
  1278. if (i != 0)
  1279. if (string.IsNullOrEmpty(groupCostDetails[i].Date))
  1280. groupCostDetails[i].Date = groupCostDetails[i - 1].Date;
  1281. /*
  1282. * 处理详情数据
  1283. */
  1284. foreach (var entity in entityList)
  1285. {
  1286. Grp_CreditCardPaymentDetailView _detail = new Grp_CreditCardPaymentDetailView();
  1287. _detail.Id = entity.Id;
  1288. _detail.PriceName = priceModule;
  1289. _detail.PayType = initDatas.Find(it => it.Id == entity.PayDId)?.Name ?? "-";
  1290. _detail.CardType = initDatas.Find(it => it.Id == entity.CTDId)?.Name ?? "-";
  1291. /*
  1292. * 应付款金额
  1293. */
  1294. Sys_SetData sdPaymentCurrency_WaitPay = currencyItems.Where(s => s.Id == entity.PaymentCurrency).FirstOrDefault();
  1295. string PaymentCurrency_WaitPay = "Unknown";
  1296. string hotelCurrncyCode = "Unknown";
  1297. string hotelCurrncyName = "Unknown";
  1298. if (sdPaymentCurrency_WaitPay != null)
  1299. {
  1300. PaymentCurrency_WaitPay = sdPaymentCurrency_WaitPay.Name;
  1301. hotelCurrncyCode = sdPaymentCurrency_WaitPay.Name;
  1302. hotelCurrncyName = sdPaymentCurrency_WaitPay.Remark;
  1303. if (hotelCurrncyCode.Equals("CNY"))
  1304. {
  1305. entity.DayRate = 1.0000M;
  1306. }
  1307. }
  1308. _detail.WaitPay = entity.PayMoney.ConvertToDecimal1().ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1309. /*
  1310. * 此次付款金额
  1311. */
  1312. decimal CurrPayStr = 0;
  1313. if (entity.PayPercentage == 0)
  1314. {
  1315. if (entity.PayThenMoney != 0)
  1316. CurrPayStr = (entity.PayThenMoney * entity.DayRate).ConvertToDecimal1();
  1317. }
  1318. else
  1319. {
  1320. if (entity.PayMoney != 0)
  1321. {
  1322. CurrPayStr = (entity.PayMoney * entity.PayPercentage / 100 * entity.DayRate).ConvertToDecimal1();
  1323. }
  1324. }
  1325. _detail.CurrPay = CurrPayStr.ToString("#0.00") + " CNY";
  1326. /*
  1327. * 剩余尾款
  1328. */
  1329. decimal BalanceStr = 0;
  1330. if (CurrPayStr != 0)
  1331. {
  1332. if (entity.PayMoney - (CurrPayStr / entity.DayRate) < 0.01M)
  1333. BalanceStr = 0;
  1334. else
  1335. BalanceStr = (entity.PayMoney - CurrPayStr / entity.DayRate).ConvertToDecimal1();
  1336. }
  1337. _detail.Balance = BalanceStr.ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1338. /*
  1339. * Bus名称
  1340. */
  1341. _detail.BusName = "待增加";
  1342. /*
  1343. *费用所属
  1344. */
  1345. switch (entity.CTable)
  1346. {
  1347. case 76://酒店预订
  1348. Grp_HotelReservations hotelReservations = _HotelReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1349. if (hotelReservations != null)
  1350. {
  1351. DateTime checkIn = Convert.ToDateTime(hotelReservations.CheckInDate),
  1352. checkOut = Convert.ToDateTime(hotelReservations.CheckOutDate);
  1353. int hotel_days = (int)(checkOut - checkIn).TotalDays;
  1354. string roomFeeStr = "", roomFeestr1 = "";
  1355. //是否比较房型价格
  1356. bool __isSingle = false, __isDouble = false, __isSuite = false, __isOther = false;
  1357. roomFeeStr += $"<br/><span style='width:70px;display: inline-block;'></span>";
  1358. if (hotelReservations.SingleRoomPrice > 0)
  1359. { roomFeestr1 += $"单间:{hotelReservations.SingleRoomPrice.ToString("#0.00")} * {hotelReservations.SingleRoomCount}"; __isSingle = true; }
  1360. if (hotelReservations.DoubleRoomPrice > 0)
  1361. { roomFeestr1 += $"双人间:{hotelReservations.DoubleRoomPrice.ToString("#0.00")} * {hotelReservations.DoubleRoomCount}"; __isDouble = true; }
  1362. if (hotelReservations.SuiteRoomPrice > 0)
  1363. { roomFeestr1 += $"套房:{hotelReservations.SuiteRoomPrice.ToString("#0.00")} * {hotelReservations.SuiteRoomCount}"; __isSuite = true; }
  1364. if (hotelReservations.OtherRoomPrice > 0)
  1365. { roomFeestr1 += $"其他:{hotelReservations.OtherRoomPrice.ToString("#0.00")} * {hotelReservations.OtherRoomCount}"; __isOther = true; }
  1366. if (roomFeestr1.Length > 0) roomFeeStr += roomFeestr1;
  1367. else roomFeeStr += " 0.00 * 0";
  1368. decimal governmentRentFee = 0.00M, cityTaxFee = 0.00M, breakfastFee = 0.00M, roomFee = 0.00M;
  1369. string governmentRentBool = "否", cityTaxBool = "否", breakfastBool = "否", roomBool = "否";
  1370. string governmentRentCode = "", governmentRentName = "", cityTaxCode = "", cityTaxName = "", breakfastCode = "", breakfastName = "", roomCode = "", roomName = "";
  1371. var _HotelReservationsContents1 = _HotelReservationsContents.Where(it => it.HrId == hotelReservations.Id).ToList();
  1372. /*
  1373. * 费用类型
  1374. * 1:房费
  1375. * 2:早餐
  1376. * 3:地税
  1377. * 4:城市税
  1378. * </summary>
  1379. */
  1380. //地税
  1381. var governmentRentData = _HotelReservationsContents1.Find(it => it.PriceType == 3);
  1382. if (governmentRentData != null)
  1383. {
  1384. governmentRentBool = governmentRentData.IsOppay == 1 ? "是" : "否";
  1385. governmentRentFee = governmentRentData.Price;
  1386. var governmentRentCurrData = currencyItems.Find(s => s.Id == governmentRentData.Currency);
  1387. if (governmentRentCurrData != null)
  1388. {
  1389. governmentRentCode = governmentRentCurrData.Name;
  1390. governmentRentName = $"({governmentRentCurrData.Remark})";
  1391. }
  1392. }
  1393. //城市税
  1394. var cityTaxData = _HotelReservationsContents1.Find(it => it.PriceType == 4);
  1395. if (cityTaxData != null)
  1396. {
  1397. cityTaxBool = cityTaxData.IsOppay == 1 ? "是" : "否";
  1398. cityTaxFee = cityTaxData.Price;
  1399. var cityTaxCurrData = currencyItems.Find(s => s.Id == cityTaxData.Currency);
  1400. if (cityTaxCurrData != null)
  1401. {
  1402. cityTaxCode = cityTaxCurrData.Name;
  1403. cityTaxName = $"({cityTaxCurrData.Remark})";
  1404. }
  1405. }
  1406. //酒店早餐
  1407. var breakfastData = _HotelReservationsContents1.Find(it => it.PriceType == 2);
  1408. if (breakfastData != null)
  1409. {
  1410. breakfastBool = breakfastData.IsOppay == 1 ? "是" : "否";
  1411. breakfastFee = breakfastData.Price;
  1412. var breakfastCurrData = currencyItems.Find(s => s.Id == breakfastData.Currency);
  1413. if (breakfastCurrData != null)
  1414. {
  1415. breakfastCode = breakfastCurrData.Name;
  1416. breakfastName = $"({breakfastCurrData.Remark})";
  1417. }
  1418. }
  1419. //房间费用
  1420. var roomData = _HotelReservationsContents1.Find(it => it.PriceType == 1);
  1421. if (roomData != null)
  1422. {
  1423. _detail.PayType = initDatas.Find(it => it.Id == roomData.PayDId)?.Name ?? "-";
  1424. _detail.CardType = initDatas.Find(it => it.Id == roomData.CTDId)?.Name ?? "-";
  1425. roomBool = roomData.IsOppay == 1 ? "是" : "否";
  1426. roomFee = roomData.Price;
  1427. var roomCurrData = currencyItems.Find(s => s.Id == roomData.Currency);
  1428. if (roomCurrData != null)
  1429. {
  1430. roomCode = roomCurrData.Name;
  1431. roomName = $"({roomCurrData.Remark})";
  1432. }
  1433. }
  1434. string hotelCostTitalStr = "<span style='font-weight:800;'>成本信息</span><br/>";
  1435. string hotelCostStr = "";
  1436. decimal hotelCsotTotal = 0.00M;
  1437. if (groupCost != null)
  1438. {
  1439. if (int.TryParse(groupCost.Currency, out int currencyId)) groupCost.Currency = currencyItems.Find(s => s.Id == currencyId)?.Name ?? "-";
  1440. hotelCostStr += $"{groupCost.Currency}(汇率:{groupCost.Rate.ToString("#0.0000")})<br/>";
  1441. }
  1442. if (checkOut > checkIn) checkOut = checkOut.AddDays(-1);
  1443. var hotelCostDetails = groupCostDetails.Where(x => Convert.ToDateTime(x.Date) >= checkIn && Convert.ToDateTime(x.Date) <= checkOut).ToList();
  1444. string hotelCost_day = "";
  1445. var hotelCostDetails1 = hotelCostDetails.GroupBy(x => x.Date);
  1446. foreach (var item in hotelCostDetails1)
  1447. {
  1448. hotelCsotTotal += item.Sum(x => x.HotelSingleRoomFee) + item.Sum(x => x.HotelDoubleRoomFee) + item.Sum(x => x.HotelSuiteRoomFee) + item.Sum(x => x.HotelSuiteFee);
  1449. hotelCost_day += @$"{item.First()?.Date ?? "-"}";
  1450. if (item.Sum(x => x.HotelSingleRoomFee) != 0) hotelCost_day += @$" 单间:{item.Sum(x => x.HotelSingleRoomFee).ToString("#0.00")}";
  1451. else { if (__isSingle) hotelCost_day += @$" 单间:0.00"; }
  1452. if (item.Sum(x => x.HotelDoubleRoomFee) != 0) hotelCost_day += @$" 双人间:{item.Sum(x => x.HotelDoubleRoomFee).ToString("#0.00")}";
  1453. else { if (__isDouble) hotelCost_day += @$" 双人间:0.00"; }
  1454. if (item.Sum(x => x.HotelSuiteRoomFee) != 0) hotelCost_day += @$" 小套房/豪华套房:{item.Sum(x => x.HotelSuiteRoomFee).ToString("#0.00")}";
  1455. else { if (__isSuite) hotelCost_day += @$" 小套房/豪华套房:0.00"; }
  1456. if (item.Sum(x => x.HotelSuiteFee) != 0) hotelCost_day += @$" 套房:{item.Sum(x => x.HotelSuiteFee).ToString("#0.00")}";
  1457. else { if (__isOther) hotelCost_day += @$" 套房:0.00"; }
  1458. hotelCost_day += @$"</br>";
  1459. }
  1460. string hotelBreakfastStr = "", hotelGovernmentRentStr = "", hotelCityTaxStr = "";
  1461. if (breakfastFee > 0) hotelBreakfastStr = $"酒店早餐: {breakfastFee.ToString("#0.00")} {breakfastCode} {breakfastName} 当时汇率 {breakfastData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{breakfastBool}<br/><br/>";
  1462. if (governmentRentFee > 0) hotelGovernmentRentStr = $"地税: {governmentRentFee.ToString("#0.00")} {governmentRentCode} {governmentRentName} 当时汇率 {governmentRentData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{governmentRentBool}<br/><br/>";
  1463. if (cityTaxFee > 0) hotelCityTaxStr = $"城市税: {cityTaxFee.ToString("#0.00")} {cityTaxCode} {cityTaxName} 当时汇率 {cityTaxData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{cityTaxBool}<br/>";
  1464. string hotelCostTotalStr = "";// $"&nbsp;&nbsp;成本合计:{hotelCsotTotal.ToString("#0.00")}<br/>";
  1465. _detail.PriceMsgContent = $"{hotelCostTitalStr}{hotelCostStr}{hotelCostTotalStr}{hotelCost_day}<br/>" +
  1466. $"<span style='font-weight:800;'>{hotelReservations.HotelName} [{hotelReservations.CheckInDate} - {hotelReservations.CheckOutDate}]</span><br/>" +
  1467. $"信用卡金额:{_detail.WaitPay} ({hotelCurrncyName})<br/>" +
  1468. $"房间说明: {hotelReservations.Remark} <br/>" +
  1469. $"房间费用: {roomCode} {roomName} 当时汇率 {roomData?.Rate.ToString("#0.0000")}{roomFeeStr} <br/>是否由地接代付:{roomBool}<br/><br/>" +
  1470. $"{hotelBreakfastStr}" +
  1471. $"{hotelGovernmentRentStr}" +
  1472. $"{hotelCityTaxStr}";
  1473. _detail.PriceNameContent = hotelReservations.HotelName;
  1474. }
  1475. break;
  1476. case 79://车/导游地接
  1477. Grp_CarTouristGuideGroundReservations touristGuideGroundReservations = _CarTouristGuideGroundReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1478. if (touristGuideGroundReservations != null)
  1479. {
  1480. if (!string.IsNullOrEmpty(touristGuideGroundReservations.BusName))
  1481. {
  1482. _detail.BusName = touristGuideGroundReservations.BusName;
  1483. }
  1484. _detail.PriceNameContent = touristGuideGroundReservations.PriceName;
  1485. //bool isInt = int.TryParse(touristGuideGroundReservations.Area, out int cityId);
  1486. //if (isInt)
  1487. //{
  1488. // var cityInfo = cityData.Find(it => it.Id == cityId);
  1489. // if (cityInfo != null)
  1490. // {
  1491. // string nameContent = $@"{cityInfo.Country}-{cityInfo.City}";
  1492. // var carFeeItem = carFeeItems.Find(it => it.Id == touristGuideGroundReservations.PriceType);
  1493. // if (carFeeItem != null)
  1494. // {
  1495. // nameContent += $@"({carFeeItem.Name})";
  1496. // }
  1497. // _detail.PriceNameContent = nameContent;
  1498. // }
  1499. //}
  1500. //else
  1501. //{
  1502. // _detail.PriceNameContent = touristGuideGroundReservations.Area;
  1503. //}
  1504. var touristGuideGroundReservationsContents =
  1505. _CarTouristGuideGroundReservationsContent.Where(s => s.CTGGRId == touristGuideGroundReservations.Id && s.IsDel == 0 && s.Price != 0).ToList();
  1506. string priceMsg = $"<span style='font-weight:800;'>{touristGuideGroundReservations.PriceName}({touristGuideGroundReservations.ServiceStartTime} - {touristGuideGroundReservations.ServiceEndTime})</span><br/>";
  1507. foreach (var item in touristGuideGroundReservationsContents)
  1508. {
  1509. string typeName = "Unknown";
  1510. string carCurrencyCode = "Unknown";
  1511. string carCurrencyName = "Unknown";
  1512. var carTypeData = carFeeTypeItems.Where(s => s.Id == item.SId && s.IsDel == 0).FirstOrDefault();
  1513. if (carTypeData != null) typeName = carTypeData.Name;
  1514. var currencyData = currencyItems.Where(s => s.Id == item.Currency && s.IsDel == 0).FirstOrDefault();
  1515. if (currencyData != null)
  1516. {
  1517. carCurrencyCode = currencyData.Name;
  1518. carCurrencyName = currencyData.Remark;
  1519. }
  1520. string opCostStr = string.Empty;
  1521. decimal opCostTypePrice = 0.00M;
  1522. #region 处理成本各项费用
  1523. var opDate = item.DatePrice?.ToString("yyyy-MM-dd");
  1524. var opCost = groupCostDetails.Where(x => x.Date.Equals(opDate)).ToList();
  1525. if (opCost.Count > 0)
  1526. {
  1527. switch (item.SId)
  1528. {
  1529. case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //91车费
  1530. //case 982: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //982 车超时费 -- 暂无
  1531. case 92: opCostTypePrice = opCost.Sum(x => x.GuideFee); break; //92 导游费
  1532. case 94: opCostTypePrice = opCost.Sum(x => x.GuideScenicFee); break; //94 导游景点费
  1533. case 95: opCostTypePrice = opCost.Sum(x => x.GuideTipFee); break; //95 导游小费
  1534. case 983: opCostTypePrice = opCost.Sum(x => x.GuideMealFee); break; //983 导游餐补
  1535. case 984: opCostTypePrice = opCost.Sum(x => x.GuideMealFee); break; //984 导游房补
  1536. case 985: opCostTypePrice = opCost.Sum(x => x.GuideRoomFee); break; //985 导游交通
  1537. //case 96: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //96 接送机费 -- 暂无
  1538. //case 97: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //97 其他费用 -- 暂无
  1539. case 979: opCostTypePrice = opCost.Sum(x => x.DriverFee); break; //979 司机工资
  1540. case 980: opCostTypePrice = opCost.Sum(x => x.DriverTipFee); break; //980 司机小费
  1541. case 981: opCostTypePrice = opCost.Sum(x => x.DriverMealFee); break; //981 司机餐补
  1542. case 988: opCostTypePrice = opCost.Sum(x => x.ClientBreakfastFee); break; //988 客户早餐费用
  1543. case 93: opCostTypePrice = opCost.Sum(x => x.ClientDinnerFee); break; //93 客户午餐费用
  1544. case 989: opCostTypePrice = opCost.Sum(x => x.ClientLunchFee); break; //989 客户晚餐费用
  1545. case 990: opCostTypePrice = opCost.Sum(x => x.ScenicTicketFee); break; //990 景点门票费
  1546. case 991: opCostTypePrice = opCost.Sum(x => x.DrinkSnackFruitFee); break; //991 饮料/零食/水果
  1547. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //992 住补费用 -- 暂无
  1548. case 994: opCostTypePrice = opCost.Sum(x => x.TranslatorFee); break; //994 翻译费
  1549. case 1059: opCostTypePrice = opCost.Sum(x => x.GuideOverTimeFee); break; //1059 导游超时费用
  1550. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1070 尾款金额
  1551. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1071 其他额外费用
  1552. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1073 翻译超时费
  1553. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1074 早餐超支费用
  1554. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1075 午餐超支费用
  1555. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1076 晚餐超支费用
  1556. }
  1557. opCostStr = $"&nbsp;&nbsp;/&nbsp;&nbsp;成本:{opCostTypePrice.ToString("#0.00")} {_groupCurrencyCode}(汇率:{_groupRate.ToString("#0.0000")})";
  1558. }
  1559. #endregion
  1560. priceMsg += $"日期:{item.DatePrice?.ToString("yyyy-MM-dd") ?? "-"}<br/>" +
  1561. $"{typeName}:{item.Price.ToString("#0.00")} {carCurrencyCode}(汇率:{entity.DayRate.ToString("#0.0000")}) {opCostStr}<br/>" +
  1562. $"明细:{item.PriceContent ?? "-"}<br/>" +
  1563. $"备注:{item.Remark ?? "-"}<br/><br/>";
  1564. }
  1565. _detail.PriceMsgContent = priceMsg;
  1566. }
  1567. break;
  1568. case 80: //签证
  1569. Grp_VisaInfo visaInfo = _VisaInfos.Where(s => s.Id == entity.CId).FirstOrDefault();
  1570. if (visaInfo != null)
  1571. {
  1572. string visaName = getClientNameStr1(clientNameList, visaInfo.VisaClient);
  1573. _detail.PriceNameContent = visaInfo.VisaDescription ;
  1574. _detail.PriceMsgContent = $"签证描述:{visaName}<br/> 备注:{visaInfo.Remark}";
  1575. }
  1576. break;
  1577. case 81: //邀请/公务活动
  1578. Grp_InvitationOfficialActivities _ioa = _InvitationOfficialActivities.Where(s => s.Id == entity.CId).FirstOrDefault();
  1579. if (_ioa != null)
  1580. {
  1581. string inviteCurrName = "Unknown", //邀请费用币种 Name
  1582. inviteCurrCode = "Unknown", //邀请费用币种 Code
  1583. sendCurrName = "Unknown", //快递费用币种 Name
  1584. sendCurrCode = "Unknown", //快递费用币种 Code
  1585. eventsCurrName = "Unknown", //公务活动费币种 Name
  1586. eventsCurrCode = "Unknown", //公务活动费币种 Code
  1587. translateCurrName = "Unknown", //公务翻译费 Name
  1588. translateCurrCode = "Unknown"; //公务翻译费 Code
  1589. #region 处理费用币种
  1590. var inviteCurrData = currencyItems.Where(s => s.Id == _ioa.InviteCurrency && s.IsDel == 0).FirstOrDefault();
  1591. if (inviteCurrData != null)
  1592. {
  1593. inviteCurrName = inviteCurrData.Remark;
  1594. inviteCurrCode = inviteCurrData.Name;
  1595. }
  1596. var sendCurrData = currencyItems.Where(s => s.Id == _ioa.SendCurrency && s.IsDel == 0).FirstOrDefault();
  1597. if (sendCurrData != null)
  1598. {
  1599. sendCurrName = sendCurrData.Remark;
  1600. sendCurrCode = sendCurrData.Name;
  1601. }
  1602. var eventsCurrData = currencyItems.Where(s => s.Id == _ioa.EventsCurrency && s.IsDel == 0).FirstOrDefault();
  1603. if (eventsCurrData != null)
  1604. {
  1605. eventsCurrName = eventsCurrData.Remark;
  1606. eventsCurrCode = eventsCurrData.Name;
  1607. }
  1608. var translateCurrData = currencyItems.Where(s => s.Id == _ioa.TranslateCurrency && s.IsDel == 0).FirstOrDefault();
  1609. if (translateCurrData != null)
  1610. {
  1611. translateCurrName = translateCurrData.Remark;
  1612. translateCurrCode = translateCurrData.Name;
  1613. }
  1614. #endregion
  1615. _detail.PriceNameContent = _ioa.InviterArea;
  1616. _detail.PriceMsgContent = $@"邀请费用:{_ioa.InviteCost.ToString("#0.00")} {inviteCurrCode}({inviteCurrName})<br/>" +
  1617. $@"快递费用:{_ioa.SendCost.ToString("#0.00")} {sendCurrCode}({sendCurrName})<br/>" +
  1618. $@"公务活动费:{_ioa.EventsCost.ToString("#0.00")} {eventsCurrCode}({eventsCurrName})<br/>" +
  1619. $@"公务翻译费:{_ioa.TranslateCost.ToString("#0.00")} {translateCurrCode}({translateCurrName})<br/>" +
  1620. $@"备注:" + _ioa.Remark + "<br/>";
  1621. }
  1622. break;
  1623. case 82: //团组客户保险
  1624. Grp_Customers customers = _Customers.Where(s => s.Id == entity.CId && s.IsDel == 0).FirstOrDefault();
  1625. if (customers != null)
  1626. {
  1627. _detail.PriceNameContent = getClientNameStr(clientNameList, customers.ClientName);
  1628. _detail.PriceMsgContent = "备注:" + customers.Remark + "<br/>";
  1629. }
  1630. break;
  1631. case 85: //机票预订
  1632. Grp_AirTicketReservations jpRes = _AirTicketReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1633. if (jpRes != null)
  1634. {
  1635. string FlightsDescription = jpRes.FlightsDescription;
  1636. string PriceDescription = jpRes.PriceDescription;
  1637. _detail.PriceMsgContent = "航班号:" + jpRes.FlightsCode + "<br/>城市A-B:" + jpRes.FlightsCity + "<br/>航班描述:" + FlightsDescription.Replace("\r\n", "<br />") + "<br/>" + "价格描述:" + PriceDescription;
  1638. _detail.PriceNameContent = "(" + jpRes.FlightsCode + ")";
  1639. }
  1640. break;
  1641. case 98://其他款项
  1642. Grp_DecreasePayments gdpRes = _DecreasePayments.Where(s => s.Id == entity.CId).FirstOrDefault();
  1643. if (gdpRes != null)
  1644. {
  1645. _detail.PriceMsgContent = "备注:" + gdpRes.Remark;
  1646. _detail.PriceNameContent = gdpRes.PriceName;
  1647. }
  1648. break;
  1649. case 285://收款退还
  1650. Fin_PaymentRefundAndOtherMoney refundAndOtherMoney = _PaymentRefundAndOtherMoneys.Where(s => s.Id == entity.CId).FirstOrDefault();
  1651. if (refundAndOtherMoney != null)
  1652. {
  1653. _detail.PriceMsgContent = "备注:" + refundAndOtherMoney.Remark;
  1654. _detail.PriceNameContent = refundAndOtherMoney.PriceName;
  1655. }
  1656. break;
  1657. case 751://酒店早餐
  1658. break;
  1659. case 1015://超支费用
  1660. Fin_GroupExtraCost groupExtraCost = _GroupExtraCosts.Where(s => s.Id == entity.CId).FirstOrDefault();
  1661. if (groupExtraCost != null)
  1662. {
  1663. _detail.PriceNameContent = groupExtraCost.PriceName;
  1664. _detail.PriceMsgContent = "备注:" + groupExtraCost.Remark;
  1665. }
  1666. break;
  1667. default:
  1668. break;
  1669. }
  1670. /*
  1671. * 申请人
  1672. */
  1673. string operatorName = " - ";
  1674. Sys_Users _opUser = userItems.Where(s => s.Id == entity.CreateUserId).FirstOrDefault();
  1675. if (_opUser != null)
  1676. {
  1677. operatorName = _opUser.CnName;
  1678. }
  1679. _detail.OperatorName = operatorName;
  1680. /*
  1681. * 审核人
  1682. */
  1683. string auditOperatorName = "Unknown";
  1684. if (entity.AuditGMOperate == 0)
  1685. auditOperatorName = " - ";
  1686. else if (entity.AuditGMOperate == 4)
  1687. auditOperatorName = "自动审核";
  1688. else
  1689. {
  1690. Sys_Users _adUser = userItems.Where(s => s.Id == entity.AuditGMOperate).FirstOrDefault();
  1691. if (_adUser != null)
  1692. {
  1693. auditOperatorName = _adUser.CnName;
  1694. }
  1695. }
  1696. _detail.AuditOperatorName = auditOperatorName;
  1697. /*
  1698. * 超预算比例
  1699. */
  1700. string overBudgetStr = "";
  1701. if (entity.ExceedBudget == -1)
  1702. overBudgetStr = sdPriceName.Name + "尚无预算";
  1703. else if (entity.ExceedBudget == 0)
  1704. {
  1705. if (entity.CTable == 76 || entity.CTable == 79)
  1706. {
  1707. if (entity.IsAuditGM == 3) overBudgetStr = "未超预算";
  1708. else overBudgetStr = "超预算";
  1709. }
  1710. else
  1711. {
  1712. overBudgetStr = "未超预算";
  1713. }
  1714. }
  1715. else
  1716. overBudgetStr = entity.ExceedBudget.ToString("P");
  1717. _detail.OverBudget = overBudgetStr;
  1718. /*
  1719. * 费用总计
  1720. */
  1721. ccpCurrencyPrices.Add(new CreditCardPaymentCurrencyPriceItem()
  1722. {
  1723. CurrencyId = entity.PaymentCurrency,
  1724. CurrencyName = PaymentCurrency_WaitPay,
  1725. AmountPayable = entity.PayMoney,
  1726. ThisPayment = CurrPayStr,
  1727. BalancePayment = BalanceStr,
  1728. AuditedFunds = CurrPayStr
  1729. });
  1730. _detail.IsAuditGM = entity.IsAuditGM;
  1731. detailList.Add(_detail);
  1732. }
  1733. #endregion
  1734. _view.DetailList = new List<Grp_CreditCardPaymentDetailView>(detailList);
  1735. /*
  1736. * 下方描述处理
  1737. */
  1738. List<CreditCardPaymentCurrencyPriceItem> nonDuplicat = ccpCurrencyPrices.Where((x, i) => ccpCurrencyPrices.FindIndex(z => z.CurrencyId == x.CurrencyId) == i).ToList();//Lambda表达式去重
  1739. CreditCardPaymentCurrencyPriceItem ccpCurrencyPrice = nonDuplicat.Where(it => it.CurrencyId == 836).FirstOrDefault();
  1740. if (ccpCurrencyPrice != null)
  1741. {
  1742. int CNYIndex = nonDuplicat.IndexOf(ccpCurrencyPrice);
  1743. nonDuplicat.MoveItemAtIndexToFront(CNYIndex);
  1744. }
  1745. else
  1746. {
  1747. nonDuplicat.OrderBy(it => it.CurrencyId).ToList();
  1748. }
  1749. string amountPayableStr = string.Format(@"应付款总金额: ");
  1750. string thisPaymentStr = string.Format(@"此次付款总金额: ");
  1751. string balancePaymentStr = string.Format(@"目前剩余尾款总金额: ");
  1752. string auditedFundsStr = string.Format(@"已审费用总额: ");
  1753. foreach (var item in nonDuplicat)
  1754. {
  1755. var strs = ccpCurrencyPrices.Where(it => it.CurrencyId == item.CurrencyId).ToList();
  1756. if (strs.Count > 0)
  1757. {
  1758. decimal amountPayable = strs.Sum(it => it.AmountPayable);
  1759. decimal balancePayment = strs.Sum(it => it.BalancePayment);
  1760. amountPayableStr += string.Format(@"{0}{1}&nbsp;|", amountPayable.ToString("#0.00"), item.CurrencyName);
  1761. //单独处理此次付款金额
  1762. if (item.CurrencyId == 836) //人民币
  1763. {
  1764. decimal thisPayment = ccpCurrencyPrices.Sum(it => it.ThisPayment);
  1765. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", thisPayment.ToString("#0.00"), item.CurrencyName);
  1766. }
  1767. else
  1768. {
  1769. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1770. }
  1771. balancePaymentStr += string.Format(@"{0}{1}&nbsp;|", balancePayment.ToString("#0.00"), item.CurrencyName);
  1772. //单独处理已审核费用
  1773. if (item.CurrencyId == 836) //人民币
  1774. {
  1775. decimal auditedFunds = ccpCurrencyPrices.Sum(it => it.AuditedFunds);
  1776. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", auditedFunds.ToString("#0.00"), item.CurrencyName);
  1777. }
  1778. else
  1779. {
  1780. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1781. }
  1782. }
  1783. }
  1784. _view.TotalStr1 = amountPayableStr.Substring(0, amountPayableStr.Length - 1);
  1785. _view.TotalStr2 = thisPaymentStr.Substring(0, thisPaymentStr.Length - 1);
  1786. _view.TotalStr3 = balancePaymentStr.Substring(0, balancePaymentStr.Length - 1);
  1787. _view.TotalStr4 = auditedFundsStr.Substring(0, auditedFundsStr.Length - 1);
  1788. var _view1 = new
  1789. {
  1790. PageFuncAuth = pageFunAuthView,
  1791. Data = _view
  1792. };
  1793. return Ok(JsonView(_view1));
  1794. }
  1795. catch (Exception ex)
  1796. {
  1797. return Ok(JsonView(false, ex.Message));
  1798. }
  1799. }
  1800. /// <summary>
  1801. /// 费用审核
  1802. /// 修改团组费用审核状态
  1803. /// </summary>
  1804. /// <param name="_dto">参数Json字符串</param>
  1805. /// <returns></returns>
  1806. [HttpPost]
  1807. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1808. public async Task<IActionResult> PostAuditGrpCreditCardPayment(Edit_GrpCreditCardPaymentDto _dto)
  1809. {
  1810. #region 参数验证
  1811. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1812. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1813. #endregion
  1814. #region 页面操作权限验证
  1815. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1816. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1817. if (pageFunAuthView.AuditAuth == 0) return Ok(JsonView(false, "您没有审核权限"));
  1818. #endregion
  1819. List<string> idList = _dto.CreditIdStr.Split(',').ToList();
  1820. Grp_CreditCardPayment _detail = _mapper.Map<Grp_CreditCardPayment>(_dto);
  1821. DateTime dtNow = DateTime.Now;
  1822. _groupRepository.BeginTran();
  1823. int rst = 0;
  1824. var creditDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && idList.Contains(it.Id.ToString())).ToList();
  1825. var creditTypeDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 16).ToList();
  1826. var creditCurrencyDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  1827. var groupDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).ToList();
  1828. List<dynamic> msgDatas = new List<dynamic>();
  1829. Dictionary<int, int> dic_ccp_user = new Dictionary<int, int>() { };
  1830. foreach (var item in idList)
  1831. {
  1832. int CreditId = int.Parse(item);
  1833. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_CreditCardPayment>()
  1834. .SetColumns(it => it.IsAuditGM == _dto.AuditCode)
  1835. .SetColumns(it => it.AuditGMOperate == _dto.UserId)
  1836. .SetColumns(it => it.AuditGMDate == dtNow.ToString("yyyy-MM-dd HH:mm:ss"))
  1837. .Where(s => s.Id == CreditId)
  1838. .ExecuteCommandAsync();
  1839. if (result < 1)
  1840. {
  1841. rst = -1;
  1842. _groupRepository.RollbackTran();
  1843. return Ok(JsonView(false, "操作失败并回滚!"));
  1844. }
  1845. var creditData = creditDatas.Where(it => it.Id == CreditId).FirstOrDefault();
  1846. if (creditData != null)
  1847. {
  1848. #region 应用通知配置
  1849. try
  1850. {
  1851. dic_ccp_user.Add(creditData.Id, creditData.CreateUserId);
  1852. }
  1853. catch (Exception ex)
  1854. {
  1855. }
  1856. #endregion
  1857. string auditStr = _dto.AuditCode == 1 ? "已通过" : _dto.AuditCode == 2 ? "未通过" : "未审核";
  1858. string groupNameStr = string.Empty;
  1859. var groupData = groupDatas.Where(it => it.Id == creditData.DIId).FirstOrDefault();
  1860. if (groupData != null) groupNameStr = groupData.TeamName;
  1861. string creditTypeStr = string.Empty;
  1862. var creditTypeData = creditTypeDatas.Where(it => it.Id == creditData.CTable).FirstOrDefault();
  1863. if (creditTypeData != null) creditTypeStr = creditTypeData.Name;
  1864. string creditCurrency = string.Empty;
  1865. var creditCurrencyData = creditCurrencyDatas.Where(it => it.Id == creditData.PaymentCurrency).FirstOrDefault();
  1866. if (creditCurrencyData != null) creditCurrency = creditCurrencyData.Name;
  1867. if (creditCurrency.Equals("CNY"))
  1868. {
  1869. creditData.DayRate = 1.0000M;
  1870. }
  1871. if (creditData.PayPercentage == 0.00M)
  1872. {
  1873. creditData.PayPercentage = 100M;
  1874. }
  1875. decimal CNYPrice = (creditData.PayMoney * (creditData.PayPercentage / 100)) * creditData.DayRate;
  1876. string msgTitle = $"[{groupNameStr}({creditTypeStr})]的费用申请";
  1877. string msgContent = "";
  1878. if (creditCurrency.Equals("CNY"))
  1879. {
  1880. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY) {auditStr}!";
  1881. }
  1882. else
  1883. {
  1884. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY({creditData.PayMoney.ToString("0.00")} {creditCurrency})) {auditStr}!";
  1885. }
  1886. msgDatas.Add(new { DiId = creditData.DIId, UserId = creditData.CreateUserId, MsgTitle = msgTitle, MsgContent = msgContent });
  1887. }
  1888. }
  1889. if (rst == 0)
  1890. {
  1891. _groupRepository.CommitTran();
  1892. foreach (var item in msgDatas)
  1893. {
  1894. //发送消息
  1895. GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupExpenseAudit, item.MsgTitle, item.MsgContent, new List<int>() { item.UserId }, item.DiId);
  1896. }
  1897. #region 应用推送
  1898. try
  1899. {
  1900. foreach (var ccpId in dic_ccp_user.Keys)
  1901. {
  1902. List<string> templist = new List<string>() { dic_ccp_user[ccpId].ToString() };
  1903. await AppNoticeLibrary.SendUserMsg_GroupStatus_AuditFee(ccpId, templist, QiyeWeChatEnum.CaiWuChat);
  1904. }
  1905. }
  1906. catch (Exception)
  1907. {
  1908. }
  1909. #endregion
  1910. return Ok(JsonView(true, "操作成功!"));
  1911. }
  1912. return Ok(JsonView(false, "操作失败!"));
  1913. }
  1914. #endregion
  1915. #region 机票费用录入
  1916. /// <summary>
  1917. /// 机票录入当前登录人可操作团组
  1918. /// </summary>
  1919. /// <param name="dto"></param>
  1920. /// <returns></returns>
  1921. [HttpPost]
  1922. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1923. public async Task<IActionResult> AirTicketResSelect(AirTicketResDto dto)
  1924. {
  1925. try
  1926. {
  1927. Result groupData = await _airTicketResRep.AirTicketResSelect(dto);
  1928. if (groupData.Code != 0)
  1929. {
  1930. return Ok(JsonView(false, groupData.Msg));
  1931. }
  1932. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1933. }
  1934. catch (Exception ex)
  1935. {
  1936. return Ok(JsonView(false, "程序错误!"));
  1937. throw;
  1938. }
  1939. }
  1940. /// <summary>
  1941. /// 机票费用录入列表
  1942. /// </summary>
  1943. /// <param name="dto"></param>
  1944. /// <returns></returns>
  1945. [HttpPost]
  1946. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1947. public async Task<IActionResult> AirTicketResList(AirTicketResDto dto)
  1948. {
  1949. try
  1950. {
  1951. Result groupData = await _airTicketResRep.AirTicketResList(dto);
  1952. if (groupData.Code != 0)
  1953. {
  1954. return Ok(JsonView(false, groupData.Msg));
  1955. }
  1956. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1957. }
  1958. catch (Exception ex)
  1959. {
  1960. return Ok(JsonView(false, ex.Message));
  1961. throw;
  1962. }
  1963. }
  1964. /// <summary>
  1965. /// 根据id查询费用录入信息
  1966. /// </summary>
  1967. /// <param name="dto"></param>
  1968. /// <returns></returns>
  1969. [HttpPost]
  1970. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1971. public async Task<IActionResult> AirTicketResById(AirTicketResByIdDto dto)
  1972. {
  1973. try
  1974. {
  1975. Result groupData = await _airTicketResRep.AirTicketResById(dto);
  1976. if (groupData.Code != 0)
  1977. {
  1978. return Ok(JsonView(false, groupData.Msg));
  1979. }
  1980. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1981. }
  1982. catch (Exception ex)
  1983. {
  1984. return Ok(JsonView(false, "程序错误!"));
  1985. throw;
  1986. }
  1987. }
  1988. /// <summary>
  1989. /// 机票费用录入操作(Status:1.新增,2.修改)
  1990. /// </summary>
  1991. /// <param name="dto"></param>
  1992. /// <returns></returns>
  1993. [HttpPost]
  1994. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1995. public async Task<IActionResult> OpAirTicketRes(AirTicketResOpDto dto)
  1996. {
  1997. try
  1998. {
  1999. Result groupData = await _airTicketResRep.OpAirTicketRes(dto, _setDataRep.PostCurrencyByDiid);
  2000. if (groupData.Code != 0)
  2001. {
  2002. return Ok(JsonView(false, groupData.Msg));
  2003. }
  2004. #region 应用推送
  2005. try
  2006. {
  2007. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2008. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2009. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2010. }
  2011. catch (Exception ex)
  2012. {
  2013. }
  2014. #endregion
  2015. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2016. }
  2017. catch (Exception ex)
  2018. {
  2019. return Ok(JsonView(false, "程序错误!"));
  2020. throw;
  2021. }
  2022. }
  2023. /// <summary>
  2024. /// 根据舱位类型查询接团客户名单信息
  2025. /// </summary>
  2026. /// <param name="dto"></param>
  2027. /// <returns></returns>
  2028. [HttpPost]
  2029. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2030. public async Task<IActionResult> tankType(AirTicketResByIdDto dto)
  2031. {
  2032. try
  2033. {
  2034. List<Crm_GroupCustomer> crm_Groups = _sqlSugar.Queryable<Crm_GroupCustomer>().Where(a => a.IsDel == 0 && a.AirType == dto.Id).ToList();
  2035. if (crm_Groups.Count != 0)
  2036. {
  2037. List<dynamic> Customer = new List<dynamic>();
  2038. foreach (var item in crm_Groups)
  2039. {
  2040. var data = new
  2041. {
  2042. Id = item.Id,
  2043. Pinyin = item.Pinyin,
  2044. Name = item.LastName + item.FirstName
  2045. };
  2046. Customer.Add(data);
  2047. }
  2048. return Ok(JsonView(true, "查询成功!", Customer));
  2049. }
  2050. return Ok(JsonView(true, "暂无数据", crm_Groups));
  2051. }
  2052. catch (Exception ex)
  2053. {
  2054. return Ok(JsonView(false, "程序错误!"));
  2055. throw;
  2056. }
  2057. }
  2058. /// <summary>
  2059. /// 根据团号获取客户信息
  2060. /// </summary>
  2061. /// <param name="dto"></param>
  2062. /// <returns></returns>
  2063. [HttpPost]
  2064. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2065. public IActionResult QueryClientInfoByDIID(QueryClientInfoByDIIDDto dto)
  2066. {
  2067. var jw = JsonView(false);
  2068. if (dto.DIID < 1)
  2069. {
  2070. jw.Msg += "请输入正确的diid";
  2071. return Ok(jw);
  2072. }
  2073. var arr = getSimplClientList(dto.DIID);
  2074. jw = JsonView(true, "获取成功!", arr);
  2075. return Ok(jw);
  2076. }
  2077. private List<SimplClientInfo> getSimplClientList(int diId)
  2078. {
  2079. 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);
  2080. List<SimplClientInfo> arr = _sqlSugar.SqlQueryable<SimplClientInfo>(sql).ToList();
  2081. return arr;
  2082. }
  2083. private string getClientNameStr(List<SimplClientInfo> list, string origin)
  2084. {
  2085. string result = origin;
  2086. if (Regex.Match(origin, @"\d+,?").Value.Length > 0)
  2087. {
  2088. string[] temparr = origin.Split(',');
  2089. string fistrStr = temparr[0];
  2090. int count = temparr.Count();
  2091. int tempId;
  2092. bool success = int.TryParse(fistrStr, out tempId);
  2093. if (success)
  2094. {
  2095. SimplClientInfo tempInfo = list.FirstOrDefault(s => s.Id == tempId);
  2096. if (tempInfo != null)
  2097. {
  2098. if (count > 1)
  2099. {
  2100. result = string.Format(@"{0}{1}等{2}人", tempInfo.LastName, tempInfo.FirstName, count);
  2101. }
  2102. else
  2103. {
  2104. result = string.Format(@"{0}{1}", tempInfo.LastName, tempInfo.FirstName);
  2105. }
  2106. }
  2107. }
  2108. }
  2109. return result;
  2110. }
  2111. private string getClientNameStr1(List<SimplClientInfo> list, string origin)
  2112. {
  2113. string result = origin;
  2114. if (Regex.Match(origin, @"\d+,?").Value.Length > 0)
  2115. {
  2116. string[] temparr = origin.Split(',');
  2117. result = "";
  2118. foreach (var item in temparr)
  2119. {
  2120. int tempId;
  2121. bool success = int.TryParse(item, out tempId);
  2122. if (success)
  2123. {
  2124. SimplClientInfo tempInfo = list.FirstOrDefault(s => s.Id == tempId);
  2125. if (tempInfo != null)
  2126. {
  2127. result += string.Format(@"{0}{1}、", tempInfo.LastName, tempInfo.FirstName);
  2128. }
  2129. }
  2130. }
  2131. }
  2132. if (result.Length > 0) result = result.Substring(0, result.Length - 1);
  2133. return result;
  2134. }
  2135. /// <summary>
  2136. /// 机票费用录入,删除
  2137. /// </summary>
  2138. /// <param name="dto"></param>
  2139. /// <returns></returns>
  2140. [HttpPost]
  2141. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2142. public async Task<IActionResult> DelAirTicketRes(DelBaseDto dto)
  2143. {
  2144. try
  2145. {
  2146. var res = await _airTicketResRep.SoftDeleteByIdAsync<Grp_AirTicketReservations>(dto.Id.ToString(), dto.DeleteUserId);
  2147. if (res)
  2148. {
  2149. var result = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.CTable == 85).SetColumns(a => new Grp_CreditCardPayment()
  2150. {
  2151. IsDel = 1,
  2152. DeleteUserId = dto.DeleteUserId,
  2153. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  2154. }).ExecuteCommandAsync();
  2155. return Ok(JsonView(true, "删除成功!"));
  2156. }
  2157. return Ok(JsonView(false, "删除失败!"));
  2158. }
  2159. catch (Exception ex)
  2160. {
  2161. return Ok(JsonView(false, "程序错误!"));
  2162. throw;
  2163. }
  2164. }
  2165. /// <summary>
  2166. /// 导出机票录入报表
  2167. /// </summary>
  2168. /// <param name="dto"></param>
  2169. /// <returns></returns>
  2170. [HttpPost]
  2171. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2172. public async Task<IActionResult> DeriveAirTicketRes(AirTicketResDto dto)
  2173. {
  2174. try
  2175. {
  2176. Result groupData = await _airTicketResRep.DeriveAirTicketRes(dto);
  2177. if (groupData.Code != 0)
  2178. {
  2179. return Ok(JsonView(StatusCodes.Status400BadRequest, groupData.Msg, ""));
  2180. }
  2181. else
  2182. {
  2183. List<AirTicketReservationsPayView> AirTicketReservations = groupData.Data.GetType().GetProperty("AirTicketRes").GetValue(groupData.Data);
  2184. if (AirTicketReservations.Count != 0)
  2185. {
  2186. Grp_DelegationInfo DelegationInfo = groupData.Data.GetType().GetProperty("Delegation").GetValue(groupData.Data);
  2187. Sys_Users _Users = groupData.Data.GetType().GetProperty("Users").GetValue(groupData.Data);
  2188. string diCode = DelegationInfo != null ? DelegationInfo.TourCode : "XXX";
  2189. string diName = DelegationInfo != null ? DelegationInfo.TeamName : "XXX";
  2190. WorkbookDesigner designer = new WorkbookDesigner();
  2191. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/机票预订费用报表模板.xlsx");
  2192. decimal countCost = 0;
  2193. foreach (var item in AirTicketReservations)
  2194. {
  2195. #region 处理客人姓名
  2196. string clientNames = _tourClientListRep._ResolveCustomerName(item.ClientName);
  2197. item.ClientName = clientNames;
  2198. #endregion
  2199. if (item.BankType == "其他")
  2200. {
  2201. item.BankNo = "--";
  2202. }
  2203. else
  2204. {
  2205. if (!string.IsNullOrEmpty(item.BankType))
  2206. {
  2207. item.BankNo = item.BankType + ":" + item.BankNo?.Substring(0, 3);
  2208. }
  2209. }
  2210. item.PrePrice = System.Decimal.Round(item.PrePrice, 2);
  2211. item.Price = System.Decimal.Round(item.Price, 2);
  2212. countCost += Convert.ToDecimal(item.Price);
  2213. }
  2214. designer.SetDataSource("Export", AirTicketReservations);
  2215. designer.SetDataSource("ExportDiCode", diCode);
  2216. designer.SetDataSource("ExportDiName", diName);
  2217. designer.SetDataSource("ExportOpUserName", _Users.CnName);
  2218. designer.SetDataSource("ExportCountCost", countCost + "(" + AirTicketReservations[0].CurrencyStr);
  2219. designer.Process();
  2220. string fileName = ("AirfareStatement/" + diName + "机票费用报表" + "_" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xlsx").Replace(":", "");
  2221. designer.Workbook.Save(AppSettingsHelper.Get("ExcelBasePath") + fileName);
  2222. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  2223. return Ok(JsonView(true, "成功", url = rst));
  2224. }
  2225. else
  2226. {
  2227. return Ok(JsonView(StatusCodes.Status400BadRequest, "暂无数据!", ""));
  2228. }
  2229. }
  2230. }
  2231. catch (Exception ex)
  2232. {
  2233. return Ok(JsonView(StatusCodes.Status400BadRequest, ex.Message, ""));
  2234. throw;
  2235. }
  2236. }
  2237. Dictionary<string, string> transDic = new Dictionary<string, string>();
  2238. /// <summary>
  2239. /// 行程单导出
  2240. /// </summary>
  2241. /// <param name="dto"></param>
  2242. /// <returns></returns>
  2243. [HttpPost]
  2244. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2245. public async Task<IActionResult> ItineraryAirTicketRes(ItineraryAirTicketResDto dto)
  2246. {
  2247. try
  2248. {
  2249. Result groupData = await _airTicketResRep.ItineraryAirTicketRes(dto);
  2250. if (groupData.Code != 0)
  2251. {
  2252. return Ok(JsonView(StatusCodes.Status400BadRequest, groupData.Msg, ""));
  2253. }
  2254. else
  2255. {
  2256. List<AirTicketReservationsView> _AirTicketReservations = groupData.Data;
  2257. if (dto.Language == "CN")
  2258. {
  2259. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_CN.docx");
  2260. DocumentBuilder builder = new DocumentBuilder(doc);
  2261. int tableIndex = 0;//表格索引
  2262. //得到文档中的第一个表格
  2263. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2264. foreach (var item in _AirTicketReservations)
  2265. {
  2266. #region 处理固定数据
  2267. string[] FlightsCode = item.FlightsCode.Split('/');
  2268. if (FlightsCode.Length != 0)
  2269. {
  2270. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2271. if (_AirCompany != null)
  2272. {
  2273. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2274. }
  2275. else
  2276. {
  2277. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2278. }
  2279. }
  2280. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2281. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2282. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2283. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2284. string name = "";
  2285. foreach (string clientName in nameArray)
  2286. {
  2287. if (!name.Contains(clientName))
  2288. {
  2289. name += clientName + ",";
  2290. }
  2291. }
  2292. if (!string.IsNullOrWhiteSpace(name))
  2293. {
  2294. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2295. }
  2296. else
  2297. {
  2298. table.Range.Bookmarks["ClientName"].Text = "--";
  2299. }
  2300. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2301. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2302. table.Range.Bookmarks["JointTicket"].Text = "--";
  2303. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2304. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2305. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2306. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2307. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2308. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2309. #endregion
  2310. #region 循环数据处理
  2311. List<AirInfo> airs = new List<AirInfo>();
  2312. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2313. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2314. for (int i = 0; i < FlightsCode.Length; i++)
  2315. {
  2316. AirInfo air = new AirInfo();
  2317. string[] tempstr = DayArray[i]
  2318. .Replace("\r\n", string.Empty)
  2319. .Replace("\\r\\n", string.Empty)
  2320. .TrimStart().TrimEnd()
  2321. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2322. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2323. string starCity = "";
  2324. if (star_Three != null)
  2325. {
  2326. starCity = star_Three.AirPort;
  2327. }
  2328. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2329. string EndCity = "";
  2330. if (End_Three != null)
  2331. {
  2332. EndCity = End_Three.AirPort;
  2333. }
  2334. air.Destination = starCity + "/" + EndCity;
  2335. air.Flight = FlightsCode[i];
  2336. air.SeatingClass = item.CTypeName;
  2337. string dateTime = tempstr[2];
  2338. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2339. air.FlightDate = DateTemp;
  2340. air.DepartureTime = tempstr[5];
  2341. air.LandingTime = tempstr[6];
  2342. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2343. air.TicketStatus = "--";
  2344. air.Luggage = "--";
  2345. air.DepartureTerminal = "--";
  2346. air.LandingTerminal = "--";
  2347. airs.Add(air);
  2348. }
  2349. int row = 13;
  2350. for (int i = 0; i < airs.Count; i++)
  2351. {
  2352. if (airs.Count > 2)
  2353. {
  2354. for (int j = 0; j < airs.Count - 2; j++)
  2355. {
  2356. var CopyRow = table.Rows[12].Clone(true);
  2357. table.Rows.Add(CopyRow);
  2358. }
  2359. }
  2360. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2361. int index = 0;
  2362. foreach (PropertyInfo property in properties)
  2363. {
  2364. string value = property.GetValue(airs[i]).ToString();
  2365. Cell ishcel0 = table.Rows[row].Cells[index];
  2366. Paragraph p = new Paragraph(doc);
  2367. string s = value;
  2368. p.AppendChild(new Run(doc, s));
  2369. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2370. ishcel0.AppendChild(p);
  2371. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2372. index++;
  2373. }
  2374. row++;
  2375. }
  2376. #endregion
  2377. Paragraph lastParagraph = new Paragraph(doc);
  2378. //第一个表格末尾加段落
  2379. table.ParentNode.InsertAfter(lastParagraph, table);
  2380. //复制第一个表格
  2381. Table cloneTable = (Table)table.Clone(true);
  2382. //在文档末尾段落后面加入复制的表格
  2383. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2384. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2385. {
  2386. int rownewsIndex = 13;
  2387. for (int i = 0; i < 2; i++)
  2388. {
  2389. var CopyRow = table.Rows[12].Clone(true);
  2390. table.Rows.RemoveAt(13);
  2391. table.Rows.Add(CopyRow);
  2392. rownewsIndex++;
  2393. }
  2394. }
  2395. else
  2396. {
  2397. table.Rows.RemoveAt(12);
  2398. }
  2399. cloneTable.Rows.RemoveAt(12);
  2400. }
  2401. if (_AirTicketReservations.Count != 0)
  2402. {
  2403. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2404. if (FlightsCode.Length != 0)
  2405. {
  2406. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2407. if (_AirCompany != null)
  2408. {
  2409. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2410. }
  2411. else
  2412. {
  2413. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2414. }
  2415. }
  2416. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2417. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2418. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2419. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2420. string name = "";
  2421. foreach (string clientName in nameArray)
  2422. {
  2423. if (!name.Contains(clientName))
  2424. {
  2425. name += clientName + ",";
  2426. }
  2427. }
  2428. if (!string.IsNullOrWhiteSpace(name))
  2429. {
  2430. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2431. }
  2432. else
  2433. {
  2434. table.Range.Bookmarks["ClientName"].Text = "--";
  2435. }
  2436. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2437. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2438. table.Range.Bookmarks["JointTicket"].Text = "--";
  2439. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2440. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2441. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2442. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2443. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2444. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2445. }
  2446. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2447. //保存合并后的文档
  2448. string fileName = "AirItinerary/电子客票中文行程单_CN.docx";
  2449. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2450. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2451. return Ok(JsonView(true, "成功!", rst));
  2452. }
  2453. else
  2454. {
  2455. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_EN.docx");
  2456. DocumentBuilder builder = new DocumentBuilder(doc);
  2457. int tableIndex = 0;//表格索引
  2458. //得到文档中的第一个表格
  2459. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2460. List<string> texts = new List<string>();
  2461. foreach (var item in _AirTicketReservations)
  2462. {
  2463. string[] FlightsCode = item.FlightsCode.Split('/');
  2464. if (FlightsCode.Length != 0)
  2465. {
  2466. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2467. if (_AirCompany != null)
  2468. {
  2469. if (!transDic.ContainsKey(_AirCompany.CnName))
  2470. {
  2471. transDic.Add(_AirCompany.CnName, _AirCompany.EnName);
  2472. }
  2473. }
  2474. else
  2475. {
  2476. if (!transDic.ContainsKey("--"))
  2477. {
  2478. transDic.Add("--", "--");
  2479. }
  2480. }
  2481. }
  2482. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2483. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2484. string name = "";
  2485. foreach (string clientName in nameArray)
  2486. {
  2487. name += clientName + ",";
  2488. }
  2489. if (!texts.Contains(name))
  2490. {
  2491. texts.Add(name);
  2492. }
  2493. List<AirInfo> airs = new List<AirInfo>();
  2494. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2495. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2496. for (int i = 0; i < FlightsCode.Length; i++)
  2497. {
  2498. AirInfo air = new AirInfo();
  2499. string[] tempstr = DayArray[i]
  2500. .Replace("\r\n", string.Empty)
  2501. .Replace("\\r\\n", string.Empty)
  2502. .TrimStart().TrimEnd()
  2503. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2504. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2505. if (star_Three != null)
  2506. {
  2507. if (!transDic.ContainsKey(star_Three.AirPort))
  2508. {
  2509. transDic.Add(star_Three.AirPort, star_Three.AirPort_En);
  2510. }
  2511. }
  2512. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2513. if (End_Three != null)
  2514. {
  2515. if (!transDic.ContainsKey(End_Three.AirPort))
  2516. {
  2517. transDic.Add(End_Three.AirPort, End_Three.AirPort_En);
  2518. }
  2519. }
  2520. if (!texts.Contains(item.CTypeName))
  2521. {
  2522. texts.Add(item.CTypeName);
  2523. }
  2524. }
  2525. }
  2526. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  2527. if (transData.Count > 0)
  2528. {
  2529. foreach (TranslateResult item in transData)
  2530. {
  2531. if (!transDic.ContainsKey(item.Query))
  2532. {
  2533. transDic.Add(item.Query, item.Translation);
  2534. }
  2535. }
  2536. }
  2537. foreach (var item in _AirTicketReservations)
  2538. {
  2539. #region 处理固定数据
  2540. string[] FlightsCode = item.FlightsCode.Split('/');
  2541. if (FlightsCode.Length != 0)
  2542. {
  2543. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2544. if (_AirCompany != null)
  2545. {
  2546. string str = "--";
  2547. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2548. if (!string.IsNullOrEmpty(translateResult))
  2549. {
  2550. str = translateResult;
  2551. str = _airTicketResRep.Processing(str);
  2552. }
  2553. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2554. }
  2555. else
  2556. {
  2557. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2558. }
  2559. }
  2560. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2561. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2562. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2563. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2564. string names = "";
  2565. foreach (string clientName in nameArray)
  2566. {
  2567. names += clientName + ",";
  2568. }
  2569. if (!string.IsNullOrWhiteSpace(names))
  2570. {
  2571. string str = "--";
  2572. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2573. if (!string.IsNullOrEmpty(translateResult))
  2574. {
  2575. str = translateResult;
  2576. str = _airTicketResRep.Processing(str);
  2577. }
  2578. table.Range.Bookmarks["ClientName"].Text = str;
  2579. }
  2580. else
  2581. {
  2582. table.Range.Bookmarks["ClientName"].Text = "--";
  2583. }
  2584. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2585. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2586. table.Range.Bookmarks["JointTicket"].Text = "--";
  2587. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2588. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2589. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2590. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2591. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2592. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2593. #endregion
  2594. #region 循环数据处理
  2595. List<AirInfo> airs = new List<AirInfo>();
  2596. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2597. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2598. for (int i = 0; i < FlightsCode.Length; i++)
  2599. {
  2600. AirInfo air = new AirInfo();
  2601. string[] tempstr = DayArray[i]
  2602. .Replace("\r\n", string.Empty)
  2603. .Replace("\\r\\n", string.Empty)
  2604. .TrimStart().TrimEnd()
  2605. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2606. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2607. string starCity = "";
  2608. if (star_Three != null)
  2609. {
  2610. string str2 = "--";
  2611. string translateResult2 = transDic.Where(s => s.Key == star_Three.AirPort).FirstOrDefault().Value;
  2612. if (!string.IsNullOrEmpty(translateResult2))
  2613. {
  2614. str2 = translateResult2;
  2615. str2 = _airTicketResRep.Processing(str2);
  2616. }
  2617. starCity = str2;
  2618. }
  2619. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2620. string EndCity = "";
  2621. if (End_Three != null)
  2622. {
  2623. string str1 = "--";
  2624. string translateResult1 = transDic.Where(s => s.Key == End_Three.AirPort).FirstOrDefault().Value;
  2625. if (!string.IsNullOrEmpty(translateResult1))
  2626. {
  2627. str1 = translateResult1;
  2628. str1 = _airTicketResRep.Processing(str1);
  2629. }
  2630. EndCity = str1;
  2631. }
  2632. air.Destination = starCity + "/" + EndCity;
  2633. air.Flight = FlightsCode[i];
  2634. string str = "--";
  2635. string translateResult = transDic.Where(s => s.Key == item.CTypeName).FirstOrDefault().Value;
  2636. if (!string.IsNullOrEmpty(translateResult))
  2637. {
  2638. str = translateResult;
  2639. str = _airTicketResRep.Processing(str);
  2640. }
  2641. air.SeatingClass = str;
  2642. string dateTime = tempstr[2];
  2643. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2644. air.FlightDate = DateTemp;
  2645. air.DepartureTime = tempstr[5];
  2646. air.LandingTime = tempstr[6];
  2647. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2648. air.TicketStatus = "--";
  2649. air.Luggage = "--";
  2650. air.DepartureTerminal = "--";
  2651. air.LandingTerminal = "--";
  2652. airs.Add(air);
  2653. }
  2654. int row = 13;
  2655. for (int i = 0; i < airs.Count; i++)
  2656. {
  2657. if (airs.Count > 2)
  2658. {
  2659. for (int j = 0; j < airs.Count - 2; j++)
  2660. {
  2661. var CopyRow = table.Rows[12].Clone(true);
  2662. table.Rows.Add(CopyRow);
  2663. }
  2664. }
  2665. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2666. int index = 0;
  2667. foreach (PropertyInfo property in properties)
  2668. {
  2669. string value = property.GetValue(airs[i]).ToString();
  2670. Cell ishcel0 = table.Rows[row].Cells[index];
  2671. Paragraph p = new Paragraph(doc);
  2672. string s = value;
  2673. p.AppendChild(new Run(doc, s));
  2674. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2675. ishcel0.AppendChild(p);
  2676. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2677. //ishcel0.CellFormat.VerticalAlignment=
  2678. index++;
  2679. }
  2680. row++;
  2681. }
  2682. #endregion
  2683. Paragraph lastParagraph = new Paragraph(doc);
  2684. //第一个表格末尾加段落
  2685. table.ParentNode.InsertAfter(lastParagraph, table);
  2686. //复制第一个表格
  2687. Table cloneTable = (Table)table.Clone(true);
  2688. //在文档末尾段落后面加入复制的表格
  2689. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2690. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2691. {
  2692. int rownewsIndex = 13;
  2693. for (int i = 0; i < 2; i++)
  2694. {
  2695. var CopyRow = table.Rows[12].Clone(true);
  2696. table.Rows.RemoveAt(13);
  2697. table.Rows.Add(CopyRow);
  2698. rownewsIndex++;
  2699. }
  2700. }
  2701. else
  2702. {
  2703. table.Rows.RemoveAt(12);
  2704. }
  2705. cloneTable.Rows.RemoveAt(12);
  2706. }
  2707. if (_AirTicketReservations.Count != 0)
  2708. {
  2709. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2710. if (FlightsCode.Length != 0)
  2711. {
  2712. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2713. if (_AirCompany != null)
  2714. {
  2715. string str = "--";
  2716. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2717. if (!string.IsNullOrEmpty(translateResult))
  2718. {
  2719. str = translateResult;
  2720. str = _airTicketResRep.Processing(str);
  2721. }
  2722. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2723. }
  2724. else
  2725. {
  2726. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2727. }
  2728. }
  2729. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2730. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2731. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2732. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2733. string names = "";
  2734. foreach (string clientName in nameArray)
  2735. {
  2736. names += clientName + ",";
  2737. }
  2738. if (!string.IsNullOrWhiteSpace(names))
  2739. {
  2740. string str = "--";
  2741. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2742. if (!string.IsNullOrEmpty(translateResult))
  2743. {
  2744. str = translateResult;
  2745. str = _airTicketResRep.Processing(str);
  2746. }
  2747. table.Range.Bookmarks["ClientName"].Text = str;
  2748. }
  2749. else
  2750. {
  2751. table.Range.Bookmarks["ClientName"].Text = "--";
  2752. }
  2753. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2754. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2755. table.Range.Bookmarks["JointTicket"].Text = "--";
  2756. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2757. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2758. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2759. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2760. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2761. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2762. }
  2763. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2764. //保存合并后的文档
  2765. string fileName = "AirItinerary/电子客票英文行程单_EN.docx";
  2766. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2767. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2768. return Ok(JsonView(true, "成功!", rst));
  2769. }
  2770. }
  2771. }
  2772. catch (Exception ex)
  2773. {
  2774. return Ok(JsonView(StatusCodes.Status400BadRequest, "程序错误!", ""));
  2775. throw;
  2776. }
  2777. }
  2778. #endregion
  2779. #region 团组增减款项 --> 其他款项
  2780. /// <summary>
  2781. /// 团组增减款项下拉框绑定
  2782. /// </summary>
  2783. /// <param name="dto"></param>
  2784. /// <returns></returns>
  2785. [HttpPost]
  2786. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2787. public async Task<IActionResult> DecreasePaymentsSelect(DecreasePaymentsDto dto)
  2788. {
  2789. #region 参数验证
  2790. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2791. if (dto.CTId < 1) return Ok(JsonView(false, "请传入有效的CTId参数!"));
  2792. #endregion
  2793. return Ok(await _decreasePaymentsRep.DecreasePaymentsSelect(dto));
  2794. }
  2795. /// <summary>
  2796. /// 根据团组Id查询团组增减款项
  2797. /// </summary>
  2798. /// <param name="dto"></param>
  2799. /// <returns></returns>
  2800. [HttpPost]
  2801. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2802. public async Task<IActionResult> DecreasePaymentsList(DecreasePaymentsListDto dto)
  2803. {
  2804. #region 参数验证
  2805. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2806. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  2807. #endregion
  2808. return Ok(await _decreasePaymentsRep.DecreasePaymentsList(dto));
  2809. }
  2810. /// <summary>
  2811. /// 团组增减款项操作(Status:1.新增,2.修改)
  2812. /// </summary>
  2813. /// <param name="dto"></param>
  2814. /// <returns></returns>
  2815. [HttpPost]
  2816. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2817. public async Task<IActionResult> OpDecreasePayments(DecreasePaymentsOpDto dto)
  2818. {
  2819. JsonView groupData = await _decreasePaymentsRep.OpDecreasePayments(dto);
  2820. if (groupData.Code != 200)
  2821. {
  2822. return Ok(JsonView(false, groupData.Msg));
  2823. }
  2824. #region 应用推送
  2825. int ccpId = (int)groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2826. int sign = (int)groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2827. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2828. #endregion
  2829. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2830. }
  2831. /// <summary>
  2832. /// 团组增减款项操作 删除
  2833. /// </summary>
  2834. /// <param name="dto"></param>
  2835. /// <returns></returns>
  2836. [HttpPost]
  2837. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2838. public async Task<IActionResult> DelDecreasePayments(DelBaseDto dto)
  2839. {
  2840. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  2841. if (dto.DeleteUserId < 1) return Ok(JsonView(false, "请传入有效的DeleteUserId参数!"));
  2842. var res = await _decreasePaymentsRep._Del(dto.Id, dto.DeleteUserId);
  2843. if (res.Code == 0)
  2844. {
  2845. return Ok(JsonView(true, "删除成功!"));
  2846. }
  2847. return Ok(JsonView(false, "删除失败!"));
  2848. }
  2849. /// <summary>
  2850. /// 根据团组增减款项Id查询
  2851. /// </summary>
  2852. /// <param name="dto"></param>
  2853. /// <returns></returns>
  2854. [HttpPost]
  2855. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2856. public async Task<IActionResult> QueryDecreasePaymentsById(DecreasePaymentsByIdDto dto)
  2857. {
  2858. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的数据Id!"));
  2859. return Ok(await _decreasePaymentsRep.QueryDecreasePaymentsById(dto));
  2860. }
  2861. /// <summary>
  2862. /// 查询供应商名称
  2863. /// </summary>
  2864. /// <param name="dto"></param>
  2865. /// <returns></returns>
  2866. [HttpPost]
  2867. public IActionResult QueryAssociateSupplier(AssociateSupplierDto dto)
  2868. {
  2869. var dbResult = _sqlSugar.Queryable<Grp_DecreasePayments>()
  2870. .Where(x => x.SupplierName.Contains(dto.param) && x.IsDel == 0).ToList()
  2871. ?? new List<Grp_DecreasePayments>();
  2872. dbResult = dbResult.Distinct(new
  2873. ProductComparer()).ToList();
  2874. var jw = JsonView(true, "success", dbResult.OrderByDescending(x => x.Id).Select(x => new
  2875. {
  2876. x.Id,
  2877. x.SupplierAddress,
  2878. x.SupplierArea,
  2879. x.SupplierContact,
  2880. x.SupplierContactNumber,
  2881. x.SupplierEmail,
  2882. x.SupplierName,
  2883. x.SupplierSocialAccount,
  2884. x.SupplierTypeId,
  2885. }).ToList());
  2886. return Ok(jw);
  2887. }
  2888. #endregion
  2889. #region 文件上传、删除
  2890. /// <summary>
  2891. /// region 文件上传 可以带参数
  2892. /// </summary>
  2893. /// <param name="file"></param>
  2894. /// <returns></returns>
  2895. [HttpPost]
  2896. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2897. public async Task<IActionResult> UploadProject(IFormFile file)
  2898. {
  2899. try
  2900. {
  2901. var TypeName = Request.Headers["TypeName"].ToString();
  2902. if (file != null)
  2903. {
  2904. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2905. //文件名称
  2906. string projectFileName = file.FileName;
  2907. //上传的文件的路径
  2908. string filePath = "";
  2909. if (TypeName == "A")//A代表团组增减款项
  2910. {
  2911. if (!Directory.Exists(fileDir))
  2912. {
  2913. Directory.CreateDirectory(fileDir);
  2914. }
  2915. //上传的文件的路径
  2916. filePath = fileDir + $@"\团组增减款项相关文件\{projectFileName}";
  2917. }
  2918. else if (TypeName == "B")//B代表商邀相关文件
  2919. {
  2920. if (!Directory.Exists(fileDir))
  2921. {
  2922. Directory.CreateDirectory(fileDir);
  2923. }
  2924. //上传的文件的路径
  2925. filePath = fileDir + $@"\商邀相关文件\{projectFileName}";
  2926. }
  2927. using (FileStream fs = System.IO.File.Create(filePath))
  2928. {
  2929. file.CopyTo(fs);
  2930. fs.Flush();
  2931. }
  2932. return Ok(JsonView(true, "上传成功!", projectFileName));
  2933. }
  2934. else
  2935. {
  2936. return Ok(JsonView(false, "上传失败!"));
  2937. }
  2938. }
  2939. catch (Exception ex)
  2940. {
  2941. return Ok(JsonView(false, "程序错误!"));
  2942. throw;
  2943. }
  2944. }
  2945. /// <summary>
  2946. /// 删除指定文件
  2947. /// </summary>
  2948. /// <param name="dto"></param>
  2949. /// <returns></returns>
  2950. [HttpPost]
  2951. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2952. public async Task<IActionResult> DelFile(DelFileDto dto)
  2953. {
  2954. try
  2955. {
  2956. var TypeName = Request.Headers["TypeName"].ToString();
  2957. string filePath = "";
  2958. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2959. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  2960. int id = 0;
  2961. if (TypeName == "A")
  2962. {
  2963. filePath = fileDir + "/团组增减款项相关文件/" + dto.fileName;
  2964. // 删除该文件
  2965. System.IO.File.Delete(filePath);
  2966. id = await _sqlSugar.Updateable<Grp_DecreasePayments>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_DecreasePayments { FilePath = "" }).ExecuteCommandAsync();
  2967. }
  2968. else if (TypeName == "B")
  2969. {
  2970. filePath = fileDir + "/商邀相关文件/" + dto.fileName;
  2971. // 删除该文件
  2972. System.IO.File.Delete(filePath);
  2973. id = await _sqlSugar.Updateable<Grp_InvitationOfficialActivities>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_InvitationOfficialActivities { Attachment = "" }).ExecuteCommandAsync();
  2974. }
  2975. if (id != 0)
  2976. {
  2977. return Ok(JsonView(true, "成功!"));
  2978. }
  2979. else
  2980. {
  2981. return Ok(JsonView(false, "失败!"));
  2982. }
  2983. }
  2984. catch (Exception ex)
  2985. {
  2986. return Ok(JsonView(false, "程序错误!"));
  2987. throw;
  2988. }
  2989. }
  2990. #endregion
  2991. #region 商邀费用录入
  2992. /// <summary>
  2993. /// 根据团组Id查询商邀费用列表
  2994. /// </summary>
  2995. /// <param name="dto"></param>
  2996. /// <returns></returns>
  2997. [HttpPost]
  2998. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2999. public async Task<IActionResult> InvitationOfficialActivitiesList(InvitationOfficialActivitiesListDto dto)
  3000. {
  3001. try
  3002. {
  3003. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesList(dto);
  3004. if (groupData.Code != 0)
  3005. {
  3006. return Ok(JsonView(false, groupData.Msg));
  3007. }
  3008. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3009. }
  3010. catch (Exception ex)
  3011. {
  3012. return Ok(JsonView(false, "程序错误!"));
  3013. throw;
  3014. }
  3015. }
  3016. //
  3017. /// <summary>
  3018. /// 商邀费用 Info Page 基础数据源
  3019. /// </summary>
  3020. /// <param name="dto"></param>
  3021. /// <returns></returns>
  3022. [HttpPost]
  3023. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3024. public async Task<IActionResult> InvitationOfficialActivityInitBasicData()
  3025. {
  3026. try
  3027. {
  3028. Result groupData = await _InvitationOfficialActivitiesRep._InitBasicData();
  3029. if (groupData.Code != 0)
  3030. {
  3031. return Ok(JsonView(false, groupData.Msg));
  3032. }
  3033. return Ok(JsonView(true, "操作成功", groupData.Data));
  3034. }
  3035. catch (Exception ex)
  3036. {
  3037. return Ok(JsonView(false, ex.Message));
  3038. throw;
  3039. }
  3040. }
  3041. /// <summary>
  3042. /// 根据商邀费用ID查询C表和商邀费用数据
  3043. /// </summary>
  3044. /// <param name="dto"></param>
  3045. /// <returns></returns>
  3046. [HttpPost]
  3047. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3048. public async Task<IActionResult> InvitationOfficialActivitiesById(InvitationOfficialActivitiesByIdDto dto)
  3049. {
  3050. try
  3051. {
  3052. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesById(dto);
  3053. if (groupData.Code != 0)
  3054. {
  3055. return Ok(JsonView(false, groupData.Msg));
  3056. }
  3057. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3058. }
  3059. catch (Exception ex)
  3060. {
  3061. return Ok(JsonView(false, ex.Message));
  3062. throw;
  3063. }
  3064. }
  3065. /// <summary>
  3066. /// 商邀费用录入操作(Status:1.新增,2.修改)
  3067. /// </summary>
  3068. /// <param name="dto"></param>
  3069. /// <returns></returns>
  3070. [HttpPost]
  3071. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3072. public async Task<IActionResult> OpInvitationOfficialActivities(OpInvitationOfficialActivitiesDto dto)
  3073. {
  3074. try
  3075. {
  3076. Result groupData = await _InvitationOfficialActivitiesRep.OpInvitationOfficialActivities(dto, _setDataRep.PostCurrencyByDiid);
  3077. if (groupData.Code != 0)
  3078. {
  3079. return Ok(JsonView(false, groupData.Msg));
  3080. }
  3081. #region 应用推送
  3082. try
  3083. {
  3084. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  3085. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  3086. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  3087. }
  3088. catch (Exception ex)
  3089. {
  3090. }
  3091. #endregion
  3092. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3093. }
  3094. catch (Exception ex)
  3095. {
  3096. return Ok(JsonView(false, "程序错误!"));
  3097. throw;
  3098. }
  3099. }
  3100. /// <summary>
  3101. /// 商邀删除
  3102. /// </summary>
  3103. /// <param name="dto"></param>
  3104. /// <returns></returns>
  3105. [HttpPost]
  3106. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3107. public async Task<IActionResult> DelInvitationOfficialActivities(DelBaseDto dto)
  3108. {
  3109. try
  3110. {
  3111. _sqlSugar.BeginTran();
  3112. var res1 = _sqlSugar.Updateable<Grp_InvitationOfficialActivities>()
  3113. .SetColumns(it => new Grp_InvitationOfficialActivities()
  3114. {
  3115. IsDel = 1,
  3116. DeleteUserId = dto.DeleteUserId,
  3117. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  3118. })
  3119. .Where(it => it.Id == dto.Id)
  3120. .ExecuteCommand();
  3121. if (res1 > 0)
  3122. {
  3123. int _diId = 0;
  3124. var _ioaInfo = _sqlSugar.Queryable<Grp_InvitationOfficialActivities>().Where(it => it.Id == dto.Id).First();
  3125. if (_ioaInfo != null)
  3126. {
  3127. _diId = _ioaInfo.DiId;
  3128. }
  3129. var res2 = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  3130. .SetColumns(a => new Grp_CreditCardPayment()
  3131. {
  3132. IsDel = 1,
  3133. DeleteUserId = dto.DeleteUserId,
  3134. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  3135. })
  3136. .Where(a => a.CId == dto.Id && a.DIId == _diId && a.CTable == 81)
  3137. .ExecuteCommand();
  3138. if (res2 > 0)
  3139. {
  3140. _sqlSugar.CommitTran();
  3141. return Ok(JsonView(true, "删除成功!"));
  3142. }
  3143. }
  3144. _sqlSugar.RollbackTran();
  3145. return Ok(JsonView(false, "删除失败"));
  3146. }
  3147. catch (Exception ex)
  3148. {
  3149. _sqlSugar.RollbackTran();
  3150. return Ok(JsonView(false, ex.Message));
  3151. }
  3152. }
  3153. /// <summary>
  3154. /// 团组模块文件上传
  3155. /// </summary>
  3156. /// <param name="dto"></param>
  3157. /// <returns></returns>
  3158. [HttpPost]
  3159. public IActionResult CommonSaveFile([FromForm] CommonSaveFileDto dto)
  3160. {
  3161. var jw = JsonView(false);
  3162. long M = 1024 * 1024;
  3163. if (dto.Files == null || dto.Files.Count == 0)
  3164. {
  3165. jw.Msg = "无文件信息!";
  3166. return Ok(jw);
  3167. }
  3168. if (dto.Files.Sum(x=>x.Length) > 20 * M)
  3169. {
  3170. jw.Msg = "文件大小超过20M!";
  3171. return Ok(jw);
  3172. }
  3173. //var nameSp = dto.File.FileName.Split(".");
  3174. //if (nameSp.Length < 2)
  3175. //{
  3176. // jw.Msg = "拓展名称有误!";
  3177. // return Ok(jw);
  3178. //}
  3179. //var existsName = new string[]{ "RAR", "ZIP", "ARJ","GZ","Z","7Z","TAR" };
  3180. //if (!existsName.Contains(nameSp[1].ToUpper()))
  3181. //{
  3182. // jw.Msg = $"请使用指定拓展名!({string.Join("-",existsName)})";
  3183. // return Ok(jw);
  3184. //}
  3185. var Ctable = _sqlSugar.Queryable<Sys_SetData>().First(x => x.STid == 16 && x.IsDel == 0 && x.Id == dto.Ctable);
  3186. if (Ctable == null)
  3187. {
  3188. jw.Msg = "Ctable指向有误!";
  3189. return Ok(jw);
  3190. }
  3191. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  3192. if (groupInfo == null)
  3193. {
  3194. jw.Msg = "团组信息不存在!";
  3195. return Ok(jw);
  3196. }
  3197. Ctable.Name = Regex.Replace(Ctable.Name, @"[^\w\.@-]", "",
  3198. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3199. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3200. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3201. var path = "\\GroupModelFiles\\" + groupInfo.TeamName + "\\" + Ctable.Name;
  3202. var fileBase = AppSettingsHelper.Get("GrpFileBasePath") + path;
  3203. try
  3204. {
  3205. if (!Directory.Exists(fileBase))
  3206. {
  3207. Directory.CreateDirectory(fileBase);
  3208. }
  3209. List<Grp_GroupModelFile> saveArr = new List<Grp_GroupModelFile>();
  3210. foreach (var fileStream in dto.Files)
  3211. {
  3212. var saveFilePath = fileBase + "\\" + fileStream.FileName;
  3213. Grp_GroupModelFile file = new Grp_GroupModelFile()
  3214. {
  3215. Cid = dto.Cid,
  3216. CreateTime = DateTime.Now,
  3217. CreateUserId = dto.Userid,
  3218. Ctable = dto.Ctable,
  3219. Diid = dto.Diid,
  3220. IsDel = 0,
  3221. FilePath = saveFilePath,
  3222. FileName = fileStream.FileName
  3223. };
  3224. using (FileStream fs = System.IO.File.Create(saveFilePath))
  3225. {
  3226. fileStream.CopyTo(fs);
  3227. fs.Flush();
  3228. }
  3229. saveArr.Add(file);
  3230. }
  3231. var addResult = _sqlSugar.Insertable<Grp_GroupModelFile>(saveArr).ExecuteCommand();
  3232. //url = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("GrpFileFtpPath") + path + "\\" + dto.File.FileName
  3233. jw = JsonView(true, "保存成功!", new
  3234. {
  3235. count = addResult,
  3236. filesName = saveArr.Select(x => x.FileName)
  3237. }) ;
  3238. }
  3239. catch (Exception ex)
  3240. {
  3241. jw = JsonView(false, $"保存失败! ({ex.Message}) ", new
  3242. {
  3243. count = 0,
  3244. filesName = new string[0],
  3245. }) ;
  3246. }
  3247. return Ok(jw);
  3248. }
  3249. /// <summary>
  3250. /// 查询各模块已保存文件
  3251. /// </summary>
  3252. /// <param name="dto"></param>
  3253. /// <returns></returns>
  3254. [HttpPost]
  3255. public IActionResult QueryGroupModelFile(QueryGroupModelFileDto dto)
  3256. {
  3257. var expression = Expressionable.Create<Grp_GroupModelFile>()
  3258. .AndIF(dto.UserId != -1 , x => x.CreateUserId == dto.UserId);
  3259. var visaIds = _sqlSugar.Queryable<Sys_Users>().Where(x => x.JobPostId == 26).Select(x=>x.Id).ToList();
  3260. if (visaIds.Contains(dto.UserId) && dto.Ctable == 80)
  3261. {
  3262. expression = Expressionable.Create<Grp_GroupModelFile>()
  3263. .And(x=>visaIds.Contains(x.CreateUserId));
  3264. }
  3265. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>()
  3266. .Where(x => x.IsDel == 0 && x.Cid == dto.Cid && x.Ctable == dto.Ctable && x.Diid == dto.Diid)
  3267. .Where(expression.ToExpression())
  3268. .ToList();
  3269. //.ToPageList(pagenumber, pageSize, ref totalCount, ref totalPage)
  3270. return Ok(JsonView(true, "success", dbQuery.Select(x => new
  3271. {
  3272. x.FileName,
  3273. x.Id,
  3274. Url = AppSettingsHelper.Get("GrpFileBaseUrl") + x.FilePath.Replace(AppSettingsHelper.Get("GrpFileBasePath"), AppSettingsHelper.Get("GrpFileFtpPath")),
  3275. CreateTime = x.CreateTime.ToString("yyyy-MM-dd HH-mm"),
  3276. })));
  3277. }
  3278. /// <summary>
  3279. /// 下载该团组下的所有文件
  3280. /// </summary>
  3281. /// <param name="dto"></param>
  3282. /// <returns></returns>
  3283. [HttpPost]
  3284. public IActionResult ExportGroupZip(ExportGroupZipDto dto)
  3285. {
  3286. var jw = JsonView(false);
  3287. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.IsDel == 0 && x.Id == dto.Diid);
  3288. if (groupInfo == null)
  3289. {
  3290. jw.Msg = "团组信息不存在!";
  3291. return Ok(jw);
  3292. }
  3293. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid).ToList();
  3294. var isModule = Convert.ToBoolean(dto.isModule);
  3295. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  3296. IOOperatorHelper io = new IOOperatorHelper();
  3297. if (isModule)
  3298. {
  3299. var moduleGroup = dbQuery.GroupBy(x => x.Ctable);
  3300. foreach (var moduleArr in moduleGroup)
  3301. {
  3302. var key = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == moduleArr.Key && x.IsDel == 0);
  3303. key.Name = Regex.Replace(key.Name, @"[^\w\.@-]", "",
  3304. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3305. Dictionary<string, Stream> chiZips = new Dictionary<string, Stream>();
  3306. foreach (var item in moduleArr)
  3307. {
  3308. if (System.IO.File.Exists(item.FilePath))
  3309. {
  3310. using (FileStream fileStream = new FileStream(item.FilePath, FileMode.Open, FileAccess.Read))
  3311. {
  3312. byte[] bytes = new byte[fileStream.Length];
  3313. fileStream.Read(bytes, 0, bytes.Length);
  3314. fileStream.Close();
  3315. Stream stream = new MemoryStream(bytes);
  3316. chiZips.Add(item.FileName, stream);
  3317. }
  3318. }
  3319. }
  3320. if (chiZips.Count > 0)
  3321. {
  3322. var byts = io.ConvertZipStream(chiZips);
  3323. Stream stream = new MemoryStream(byts);
  3324. Zips.Add(key.Name+"_.zip", stream);
  3325. }
  3326. }
  3327. }
  3328. else
  3329. {
  3330. foreach (var item in dbQuery)
  3331. {
  3332. using (FileStream fileStream = new FileStream(item.FilePath, FileMode.Open, FileAccess.Read))
  3333. {
  3334. byte[] bytes = new byte[fileStream.Length];
  3335. fileStream.Read(bytes, 0, bytes.Length);
  3336. fileStream.Close();
  3337. Stream stream = new MemoryStream(bytes);
  3338. while (Zips.Keys.Contains(item.FileName))
  3339. {
  3340. item.FileName = new Random().Next(100) + "_" + item.FileName;
  3341. }
  3342. Zips.Add(item.FileName, stream);
  3343. }
  3344. }
  3345. }
  3346. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3347. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3348. if (Zips.Count > 0)
  3349. {
  3350. var byts = io.ConvertZipStream(Zips);
  3351. var path = "\\GroupModelFiles\\" + groupInfo.TeamName;
  3352. io.ByteToFile(byts, AppSettingsHelper.Get("GrpFileBasePath") + $"{path}\\{groupInfo.TeamName}_.Zip");
  3353. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("GrpFileBaseUrl") + $"{AppSettingsHelper.Get("GrpFileFtpPath")}{path}\\{groupInfo.TeamName}_.zip" });
  3354. }
  3355. else
  3356. {
  3357. jw.Msg = "暂无生成文件!";
  3358. }
  3359. return Ok(jw);
  3360. }
  3361. /// <summary>
  3362. /// 下载该团组下此模块的所有文件
  3363. /// </summary>
  3364. /// <param name="dto"></param>
  3365. /// <returns></returns>
  3366. [HttpPost]
  3367. public IActionResult ExportGroupByModule(ExportGroupByModuleDto dto)
  3368. {
  3369. var jw = JsonView(false);
  3370. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.IsDel == 0 && x.Id == dto.Diid);
  3371. if (groupInfo == null)
  3372. {
  3373. jw.Msg = "团组信息不存在!";
  3374. return Ok(jw);
  3375. }
  3376. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid && x.Ctable == dto.Ctable).ToList();
  3377. var key = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == dto.Ctable
  3378. && x.IsDel == 0);
  3379. if (key == null)
  3380. {
  3381. jw.Msg = "Ctable指向错误!";
  3382. return Ok(jw);
  3383. }
  3384. key.Name = Regex.Replace(key.Name, @"[^\w\.@-]", "",
  3385. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3386. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3387. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3388. IOOperatorHelper io = new IOOperatorHelper();
  3389. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  3390. foreach (var item in dbQuery)
  3391. {
  3392. if (System.IO.File.Exists(item.FilePath))
  3393. {
  3394. using (FileStream fileStream = new FileStream(item.FilePath, FileMode.Open, FileAccess.Read))
  3395. {
  3396. byte[] bytes = new byte[fileStream.Length];
  3397. fileStream.Read(bytes, 0, bytes.Length);
  3398. fileStream.Close();
  3399. Stream stream = new MemoryStream(bytes);
  3400. while (Zips.Keys.Contains(item.FileName))
  3401. {
  3402. item.FileName = new Random().Next(100) + "_" + item.FileName;
  3403. }
  3404. Zips.Add(item.FileName, stream);
  3405. }
  3406. }
  3407. }
  3408. if (Zips.Count > 0)
  3409. {
  3410. var byts = io.ConvertZipStream(Zips);
  3411. var path = "\\GroupModelFiles\\" + groupInfo.TeamName;
  3412. io.ByteToFile(byts, AppSettingsHelper.Get("GrpFileBasePath") + $"{path}\\{key.Name}_.Zip");
  3413. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("GrpFileBaseUrl") + $"{AppSettingsHelper.Get("GrpFileFtpPath")}{path}\\{key.Name}_.zip" });
  3414. }
  3415. else
  3416. {
  3417. jw.Msg = "暂无生成文件!";
  3418. }
  3419. return Ok(jw);
  3420. }
  3421. /// <summary>
  3422. /// 删除该团组下的指定文件
  3423. /// </summary>
  3424. /// <param name="dto"></param>
  3425. /// <returns></returns>
  3426. [HttpPost]
  3427. public IActionResult DeleteGroupFile(DeleteGroupFileDto dto)
  3428. {
  3429. var jw = JsonView(false);
  3430. var sing = _sqlSugar.Queryable<Grp_GroupModelFile>().First(x => x.Id == dto.Id && x.IsDel == 0);
  3431. if (sing == null)
  3432. {
  3433. jw.Msg = "暂无";
  3434. return Ok(jw);
  3435. }
  3436. if (System.IO.File.Exists(sing.FilePath))
  3437. {
  3438. try
  3439. {
  3440. System.IO.File.Delete(sing.FilePath);
  3441. }
  3442. catch (Exception ex)
  3443. {
  3444. jw.Msg = "删除失败!" + ex.Message;
  3445. return Ok(jw);
  3446. }
  3447. }
  3448. sing.IsDel = 1;
  3449. sing.DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  3450. sing.DeleteUserId = dto.UserId;
  3451. _sqlSugar.Updateable<Grp_GroupModelFile>(sing).ExecuteCommand();
  3452. jw = JsonView(true, "删除成功!");
  3453. return Ok(jw);
  3454. }
  3455. #endregion
  3456. #region 团组英文资料
  3457. /// <summary>
  3458. /// 查询团组英文所有资料
  3459. /// </summary>
  3460. /// <param name="dto"></param>
  3461. /// <returns></returns>
  3462. [HttpPost]
  3463. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3464. public async Task<IActionResult> QueryDelegationEnData(QueryDelegationEnDataDto dto)
  3465. {
  3466. try
  3467. {
  3468. Result groupData = await _delegationEnDataRep.QueryDelegationEnData(dto);
  3469. if (groupData.Code != 0)
  3470. {
  3471. return Ok(JsonView(false, groupData.Msg));
  3472. }
  3473. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3474. }
  3475. catch (Exception ex)
  3476. {
  3477. return Ok(JsonView(false, "程序错误!"));
  3478. throw;
  3479. }
  3480. }
  3481. /// <summary>
  3482. /// 团组英文资料操作(Status:1.新增,2.修改)
  3483. /// </summary>
  3484. /// <param name="dto"></param>
  3485. /// <returns></returns>
  3486. [HttpPost]
  3487. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3488. public async Task<IActionResult> OpDelegationEnData(OpDelegationEnDataDto dto)
  3489. {
  3490. try
  3491. {
  3492. Result groupData = await _delegationEnDataRep.OpDelegationEnData(dto);
  3493. if (groupData.Code != 0)
  3494. {
  3495. return Ok(JsonView(false, groupData.Msg));
  3496. }
  3497. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3498. }
  3499. catch (Exception ex)
  3500. {
  3501. return Ok(JsonView(false, "程序错误!"));
  3502. throw;
  3503. }
  3504. }
  3505. /// <summary>
  3506. /// 团组英文资料Id查询数据
  3507. /// </summary>
  3508. /// <param name="dto"></param>
  3509. /// <returns></returns>
  3510. [HttpPost]
  3511. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3512. public async Task<IActionResult> QueryDelegationEnDataById(QueryDelegationEnDataByIdDto dto)
  3513. {
  3514. try
  3515. {
  3516. Grp_DelegationEnData _DelegationEnData = await _sqlSugar.Queryable<Grp_DelegationEnData>().FirstAsync(it => it.Id == dto.Id && it.IsDel == 0);
  3517. if (_DelegationEnData != null)
  3518. {
  3519. return Ok(JsonView(true, "查询成功!", _DelegationEnData));
  3520. }
  3521. return Ok(JsonView(true, "暂无数据!", _DelegationEnData));
  3522. }
  3523. catch (Exception ex)
  3524. {
  3525. return Ok(JsonView(false, "程序错误!"));
  3526. throw;
  3527. }
  3528. }
  3529. /// <summary>
  3530. /// 团组英文资料删除
  3531. /// </summary>
  3532. /// <param name="dto"></param>
  3533. /// <returns></returns>
  3534. [HttpPost]
  3535. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3536. public async Task<IActionResult> DelDelegationEnData(DelBaseDto dto)
  3537. {
  3538. try
  3539. {
  3540. var res = await _delegationEnDataRep.SoftDeleteByIdAsync<Grp_DelegationEnData>(dto.Id.ToString(), dto.DeleteUserId);
  3541. if (!res)
  3542. {
  3543. return Ok(JsonView(false, "删除失败"));
  3544. }
  3545. return Ok(JsonView(true, "删除成功!"));
  3546. }
  3547. catch (Exception ex)
  3548. {
  3549. return Ok(JsonView(false, "程序错误!"));
  3550. throw;
  3551. }
  3552. }
  3553. #endregion
  3554. #region 导出邀请函
  3555. /// <summary>
  3556. /// 导出邀请函页面初始化
  3557. /// </summary>
  3558. /// <param name="dto"></param>
  3559. /// <returns></returns>
  3560. [HttpPost]
  3561. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3562. public async Task<IActionResult> QueryinvitationLetter(DecreasePaymentsListDto dto)
  3563. {
  3564. try
  3565. {
  3566. List<Grp_DelegationInfo> grp_Delegations = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(a => a.IsDel == 0).OrderBy(a => a.Id, OrderByType.Desc).ToList();
  3567. List<Crm_DeleClient> crm_Deles = new List<Crm_DeleClient>();
  3568. if (dto.DiId == 0)
  3569. {
  3570. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == grp_Delegations[0].Id && a.IsDel == 0).ToListAsync();
  3571. }
  3572. else
  3573. {
  3574. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == dto.DiId && a.IsDel == 0).ToListAsync();
  3575. }
  3576. return Ok(JsonView(true, "查询成功!", new
  3577. {
  3578. deleClient = crm_Deles,
  3579. delegations = grp_Delegations
  3580. }));
  3581. }
  3582. catch (Exception ex)
  3583. {
  3584. return Ok(JsonView(false, "程序错误!"));
  3585. throw;
  3586. }
  3587. }
  3588. /// <summary>
  3589. /// 导出邀请函
  3590. /// </summary>
  3591. /// <param name="dto"></param>
  3592. /// <returns></returns>
  3593. [HttpPost]
  3594. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3595. public async Task<IActionResult> invitationLetter(DecreasePaymentsListDto dto)
  3596. {
  3597. #region 参数验证
  3598. //if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  3599. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  3600. #endregion
  3601. try
  3602. {
  3603. Dictionary<string, string> transDic = new Dictionary<string, string>();
  3604. string sql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  3605. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  3606. From Grp_TourClientList tcl
  3607. Left Join
  3608. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  3609. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  3610. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  3611. From Crm_DeleClient dc
  3612. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  3613. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  3614. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  3615. Where dc.IsDel = 0) temp
  3616. On temp.DcId =tcl.ClientId
  3617. Where tcl.IsDel = 0 And tcl.DiId = {0}", dto.DiId);
  3618. var datas = _sqlSugar.SqlQueryable<TourClientListDetailsView>(sql).ToList();
  3619. List<string> texts = new List<string>();
  3620. if (datas.Count != 0)
  3621. {
  3622. foreach (TourClientListDetailsView item in datas)
  3623. {
  3624. if (!string.IsNullOrWhiteSpace(item.Pinyin))
  3625. {
  3626. transDic.Add(item.LastName + item.FirstName, item.Pinyin);
  3627. }
  3628. else
  3629. {
  3630. string name = item.LastName + item.FirstName;
  3631. texts.Add(name);
  3632. }
  3633. if (!string.IsNullOrEmpty(item.Job) && !texts.Contains(item.Job))
  3634. {
  3635. if (!transDic.ContainsKey(item.Job))
  3636. {
  3637. texts.Add(item.Job);
  3638. }
  3639. }
  3640. if (!string.IsNullOrEmpty(item.CompanyFullName))
  3641. {
  3642. texts.Add(item.CompanyFullName);
  3643. }
  3644. }
  3645. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  3646. if (transData.Count > 0)
  3647. {
  3648. foreach (TranslateResult item in transData)
  3649. {
  3650. if (!transDic.ContainsKey(item.Query))
  3651. {
  3652. transDic.Add(item.Query, item.Translation);
  3653. }
  3654. }
  3655. }
  3656. List<GuestList> list = new List<GuestList>();
  3657. foreach (TourClientListDetailsView dele in datas)
  3658. {
  3659. GuestList guestList = new GuestList();
  3660. if (!string.IsNullOrWhiteSpace(dele.Pinyin))
  3661. {
  3662. guestList.Name = dele.Pinyin;
  3663. }
  3664. else
  3665. {
  3666. string Name = transDic.Where(s => s.Key == dele.LastName + dele.FirstName).FirstOrDefault().Value;
  3667. guestList.Name = Name;
  3668. }
  3669. if (dele.Sex == 0)
  3670. {
  3671. guestList.Sex = "Male";
  3672. }
  3673. else if (dele.Sex == 1)
  3674. {
  3675. guestList.Sex = "Female";
  3676. }
  3677. guestList.DOB = dele.BirthDay.Replace('-', '.');
  3678. if (!string.IsNullOrEmpty(dele.Job))
  3679. {
  3680. guestList.Job = dele.Job;
  3681. }
  3682. list.Add(guestList);
  3683. }
  3684. //载入模板
  3685. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/邀请函模板0210.docx");
  3686. DocumentBuilder builder = new DocumentBuilder(doc);
  3687. //获取word里所有表格
  3688. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3689. //获取所填表格的序数
  3690. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  3691. var rowStart = tableOne.Rows[0]; //获取第1行
  3692. //循环赋值
  3693. for (int i = 0; i < list.Count; i++)
  3694. {
  3695. builder.MoveToCell(0, i + 1, 0, 0);
  3696. builder.Write(list[i].Name.ToString());
  3697. builder.MoveToCell(0, i + 1, 1, 0);
  3698. builder.Write(list[i].Sex.ToString());
  3699. builder.MoveToCell(0, i + 1, 2, 0);
  3700. builder.Write(list[i].DOB.ToString());
  3701. builder.MoveToCell(0, i + 1, 3, 0);
  3702. builder.Write(list[i].Job.ToString());
  3703. }
  3704. //删除多余行
  3705. while (tableOne.Rows.Count > list.Count + 1)
  3706. {
  3707. tableOne.Rows.RemoveAt(list.Count + 1);
  3708. }
  3709. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  3710. string fileName = "邀请函" + DateTime.Now.ToString("yyyy-MM-dd") + ".docx";
  3711. string filePath = fileDir + $@"商邀相关文件/{fileName}";
  3712. doc.Save(filePath);
  3713. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/GrpFile/商邀相关文件/" + fileName;
  3714. return Ok(JsonView(true, "操作成功!", Url));
  3715. }
  3716. else
  3717. {
  3718. return Ok(JsonView(false, "该团组客户名单暂未录入!"));
  3719. }
  3720. }
  3721. catch (Exception ex)
  3722. {
  3723. return Ok(JsonView(false, ex.Message));
  3724. throw;
  3725. }
  3726. }
  3727. #endregion
  3728. #region 团组经理模块 出入境费用
  3729. ///// <summary>
  3730. ///// 团组模块 - 出入境费用
  3731. ///// </summary>
  3732. ///// <returns></returns>
  3733. //[HttpPost]
  3734. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3735. //public async Task<IActionResult> SetEnterExitCostCurrencyChange()
  3736. //{
  3737. // try
  3738. // {
  3739. // var data = await _enterExitCostRep.SetEnterExitCostCurrencyChange();
  3740. // if (data.Code != 0)
  3741. // {
  3742. // return Ok(JsonView(false, data.Msg));
  3743. // }
  3744. // return Ok(JsonView(true, "查询成功!"));
  3745. // }
  3746. // catch (Exception ex)
  3747. // {
  3748. // return Ok(JsonView(false, ex.Message));
  3749. // throw;
  3750. // }
  3751. //}
  3752. /// <summary>
  3753. /// 团组模块 - 出入境费用 - 子项 地区更改为 nationalTravelFee 的id
  3754. /// </summary>
  3755. /// <returns></returns>
  3756. [HttpPost]
  3757. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3758. public async Task<IActionResult> SetDayAndCostAreaChange()
  3759. {
  3760. try
  3761. {
  3762. var nationalTravelFee = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  3763. var dayAndCost = await _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0).ToListAsync();
  3764. var unite = dayAndCost.Where(a => nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //交集
  3765. var merge = dayAndCost.Where(a => !nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //差集
  3766. foreach (var item in unite) //处理交集数据
  3767. {
  3768. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault().Id;
  3769. }
  3770. foreach (var item in merge) //处理差集数据
  3771. {
  3772. int nationalTravelFeeId = 0;
  3773. var cityData = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault();
  3774. if (cityData != null) nationalTravelFeeId = cityData.Id;
  3775. else
  3776. {
  3777. var countryData = nationalTravelFee.Where(it => it.Country.Trim() == item.Place.Trim()).FirstOrDefault();
  3778. if (countryData != null) nationalTravelFeeId = countryData.Id;
  3779. }
  3780. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFeeId;
  3781. }
  3782. //只更新dayAndCost 的 nationalTravelFeeId;
  3783. var result = _sqlSugar.Updateable(dayAndCost).UpdateColumns(it => new { it.NationalTravelFeeId }).ExecuteCommand();
  3784. if (result > 0) return Ok(JsonView(true, "nationalTravelFeeId列更新成功!"));
  3785. else return Ok(JsonView(false, "nationalTravelFeeId列更新失败!"));
  3786. }
  3787. catch (Exception ex)
  3788. {
  3789. return Ok(JsonView(false, ex.Message));
  3790. throw;
  3791. }
  3792. }
  3793. /// <summary>
  3794. /// 团组模块 - 出入境费用 - 基础数据源(团组名称/币种类型)
  3795. /// </summary>
  3796. /// <returns></returns>
  3797. [HttpPost]
  3798. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3799. public async Task<IActionResult> GetEnterExitCostDataSource(PortDtoBase dto)
  3800. {
  3801. try
  3802. {
  3803. var groupNameData = await _groupRepository.GetGroupNameList(new GroupNameDto { PortType = dto.PortType });
  3804. string sql = string.Format("Select * From Sys_SetData Where IsDel = 0");
  3805. //SetDataInfoView
  3806. var dataSource = await _sqlSugar.SqlQueryable<Sys_SetData>(sql).ToListAsync();
  3807. var currencyData = dataSource.Where(it => it.STid == 66).ToList(); //所有币种
  3808. List<SetDataInfoView> _CurrencyData = _mapper.Map<List<SetDataInfoView>>(currencyData);
  3809. var wordTypeData = dataSource.Where(it => it.STid == 72).ToList(); //三公费用-Word明细类型
  3810. List<SetDataInfoView> _WordTypeData = _mapper.Map<List<SetDataInfoView>>(wordTypeData);
  3811. var excelTypeData = dataSource.Where(it => it.STid == 73).ToList(); //三公费用-Excel明细类型
  3812. List<SetDataInfoView> _ExcelTypeData = _mapper.Map<List<SetDataInfoView>>(excelTypeData);
  3813. //默认币种显示
  3814. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3815. {
  3816. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 7.5000M },
  3817. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 8.0000M },
  3818. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 9.5000M },
  3819. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0500M },
  3820. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.9500M },
  3821. };
  3822. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3823. if (_currencyRate.Count > 0)
  3824. {
  3825. foreach (var item in _currencyInfos)
  3826. {
  3827. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3828. if (rateInfo != null)
  3829. {
  3830. decimal rate1 = Convert.ToDecimal(rateInfo.FSellPri) / 100.00M;
  3831. rate1 *= 1.035M;
  3832. item.Rate = Convert.ToDecimal(rate1.ToString("#0.00")) + 0.01M;
  3833. }
  3834. }
  3835. }
  3836. return Ok(JsonView(true, "查询成功!", new
  3837. {
  3838. GroupNameData = groupNameData.Data,
  3839. CurrencyData = _CurrencyData,
  3840. WordTypeData = _WordTypeData,
  3841. ExcelTypeData = _ExcelTypeData,
  3842. CurrencyInit = _currencyInfos
  3843. }));
  3844. }
  3845. catch (Exception ex)
  3846. {
  3847. return Ok(JsonView(false, ex.Message));
  3848. throw;
  3849. }
  3850. }
  3851. /// <summary>
  3852. /// 团组模块 - 出入境费用
  3853. /// 实时汇率 tips
  3854. /// 签证费用 tips
  3855. /// </summary>
  3856. /// <returns></returns>
  3857. [HttpPost]
  3858. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3859. public async Task<IActionResult> GetEnterExitCostCorrelationTips(EnterExitCostInfobyDiIdDto dto)
  3860. {
  3861. var groupInfo = await _sqlSugar.Queryable<Grp_DelegationInfo>().FirstAsync(it => it.Id == dto.DiId && it.IsDel == 0);
  3862. //默认币种显示
  3863. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3864. {
  3865. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 7.5000M },
  3866. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 8.0000M },
  3867. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 9.5000M },
  3868. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0500M },
  3869. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.9500M },
  3870. };
  3871. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3872. List<dynamic> reteInfos = new List<dynamic>();
  3873. if (_currencyRate.Count > 0)
  3874. {
  3875. foreach (var item in _currencyInfos)
  3876. {
  3877. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3878. if (rateInfo != null)
  3879. {
  3880. item.Rate = Convert.ToDecimal((Convert.ToDecimal(rateInfo.FSellPri == null ? 0.00M : rateInfo.FSellPri) / 100.00M).ToString("#0.0000"));
  3881. decimal rate1 = item.Rate;
  3882. rate1 *= 1.03M;
  3883. decimal rate2 = Convert.ToDecimal(rate1.ToString("#0.00")) + 0.01M;
  3884. reteInfos.Add(new
  3885. {
  3886. currCode = item.CurrencyCode,
  3887. currName = item.CurrencyName,
  3888. rate = rate2,
  3889. lastUpdateDt = rateInfo.Date + " " + rateInfo.Time
  3890. });
  3891. }
  3892. }
  3893. }
  3894. var visaData = await _visaFeeInfoRep.EntryAndExitTips(dto.DiId);
  3895. var airData = await _ticketBlackCodeRep.EntryAndExitTips(dto.DiId);
  3896. return Ok(JsonView(true, "查询成功!", new
  3897. {
  3898. //GroupNameData = groupNameData.Data,
  3899. visaData = visaData.Data,
  3900. airData = airData.Data,
  3901. reteInfos = reteInfos
  3902. }));
  3903. }
  3904. /// <summary>
  3905. /// 团组模块 - 出入境费用 - Info
  3906. /// </summary>
  3907. /// <returns></returns>
  3908. [HttpPost]
  3909. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3910. public async Task<IActionResult> GetEnterExitCostInfobyDiId(EnterExitCostInfobyDiIdDto dto)
  3911. {
  3912. try
  3913. {
  3914. var data = await _enterExitCostRep.GetEnterExitCostInfoByDiId(dto);
  3915. if (data.Code != 0)
  3916. {
  3917. return Ok(JsonView(false, data.Msg));
  3918. }
  3919. return Ok(JsonView(true, "查询成功!", data.Data));
  3920. }
  3921. catch (Exception ex)
  3922. {
  3923. return Ok(JsonView(false, ex.Message));
  3924. }
  3925. }
  3926. /// <summary>
  3927. /// 团组模块 - 出入境费用 - Add And Update
  3928. /// </summary>
  3929. /// <returns></returns>
  3930. [HttpPost]
  3931. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3932. public async Task<IActionResult> PostEnterExitCostOperate(EnterExitCostOperateDto dto)
  3933. {
  3934. try
  3935. {
  3936. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  3937. if (data.Code != 0)
  3938. {
  3939. return Ok(JsonView(false, data.Msg));
  3940. }
  3941. //生成默认文件pdf并且通知人员
  3942. var fileView = await GeneralMethod.EnterExitCostDownload(new EnterExitCostDownloadDto()
  3943. {
  3944. DiId = dto.DiId,
  3945. ExportType = 1,
  3946. SubTypeId = 1005
  3947. }, "pdf");
  3948. //发送通知
  3949. string fileUrl = (string)fileView.Data.GetType().GetProperty("Url").GetValue(fileView.Data, null);
  3950. int sign = (int)data.Data.GetType().GetProperty("sign").GetValue(data.Data, null);
  3951. string md5Sign = GeneralMethod.Encrypt($"{sign}&fileName={fileUrl}");
  3952. string url = string.Format("http://oa.pan-american-intl.com:4399/#/Sankunginfo?sign={0}&fileName={1}", sign,fileUrl);
  3953. await AppNoticeLibrary.SendUserMsg_GroupShare_ToGM(dto.DiId, new List<string>() { "208","233","21" }, dto.UserId, url);
  3954. return Ok(JsonView(true, data.Msg, data.Data));
  3955. }
  3956. catch (Exception ex)
  3957. {
  3958. return Ok(JsonView(false, ex.Message));
  3959. }
  3960. }
  3961. /// <summary>
  3962. /// 团组模块 - 出入境费用 - Confirm 费用
  3963. /// </summary>
  3964. /// <returns></returns>
  3965. [HttpPost]
  3966. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3967. public async Task<IActionResult> PostEnterExitCostIsConfirm(ConfirmCostDto dto)
  3968. {
  3969. //TODO:测试完毕需把对应的用户ID更改
  3970. //1、数据表添加字段
  3971. //2、更改字段接口()
  3972. var _view = await _enterExitCostRep.ConfirmCost(dto);
  3973. //3、确认成功 给财务发送消息
  3974. if (_view.Code == 200)
  3975. {
  3976. if (dto.Type == 1)
  3977. {
  3978. int diId = _enterExitCostRep._sqlSugar.Queryable<Grp_EnterExitCost>().Where(x => x.IsDel == 0 && x.Id == dto.Id).First()?.DiId ?? 0;
  3979. await AppNoticeLibrary.SendUserMsg_GroupShare_ToFinance(diId);
  3980. }
  3981. }
  3982. return Ok(_view);
  3983. }
  3984. /// <summary>
  3985. /// 团组模块 - 出入境费用 - File downlaod
  3986. /// </summary>
  3987. /// <param name="dto"></param>
  3988. /// <returns></returns>
  3989. [HttpPost]
  3990. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3991. public async Task<IActionResult> PostEnterExitCostDownload(EnterExitCostDownloadDto dto)
  3992. {
  3993. try
  3994. {
  3995. if (dto.DiId < 1)
  3996. {
  3997. return Ok(JsonView(false, "请传入有效的DiId参数;"));
  3998. }
  3999. if (dto.ExportType < 1)
  4000. {
  4001. return Ok(JsonView(false, "请传入有效的ExportType参数; 1 明细表 2 表格"));
  4002. }
  4003. if (dto.SubTypeId < 1)
  4004. {
  4005. return Ok(JsonView(false, @"请传入有效的SubTypeId参数;
  4006. 1 明细表 --> 1005(默认明细表) 1006(因公出国(境)经费测算明细表) 1007(四川省商务厅出国经费财政先行审核表)
  4007. 2 表格 --> 1008(派员单位出(境)任务和预算审批意见表) 1009(省级单位出(境)经费报销单)
  4008. 3 团组成员名单 1 团组成员名单"));
  4009. }
  4010. var _EnterExitCosts = _sqlSugar.Queryable<Grp_EnterExitCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  4011. var _DayAndCosts = _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  4012. if (_EnterExitCosts == null)
  4013. {
  4014. return Ok(JsonView(false, "该团组未填写出入境费用;"));
  4015. }
  4016. //数据源
  4017. List<Grp_DayAndCost> dac1 = _DayAndCosts.Where(it => it.Type == 1).ToList(); //住宿费
  4018. List<Grp_DayAndCost> dac2 = _DayAndCosts.Where(it => it.Type == 2).ToList(); //伙食费
  4019. List<Grp_DayAndCost> dac3 = _DayAndCosts.Where(it => it.Type == 3).ToList(); //公杂费
  4020. List<Grp_DayAndCost> dac4 = _DayAndCosts.Where(it => it.Type == 4).ToList(); //培训费
  4021. var _CurrDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  4022. var _DelegationInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == dto.DiId).First();
  4023. var DeleClientList = _sqlSugar.Queryable<Grp_TourClientList>()
  4024. .LeftJoin<Crm_DeleClient>((tcl, dc) => tcl.ClientId == dc.Id && dc.IsDel == 0)
  4025. .LeftJoin<Crm_CustomerCompany>((tcl, dc, cc) => dc.CrmCompanyId == cc.Id && dc.IsDel == 0)
  4026. .Where((tcl, dc, cc) => tcl.IsDel == 0 && tcl.DiId == dto.DiId)
  4027. .Select((tcl, dc, cc) => new
  4028. {
  4029. Name = dc.LastName + dc.FirstName,
  4030. Sex = dc.Sex,
  4031. Birthday = dc.BirthDay,
  4032. Company = cc.CompanyFullName,
  4033. Job = dc.Job
  4034. })
  4035. .ToList();
  4036. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  4037. var threeCodes = _sqlSugar.Queryable<Res_ThreeCode>().Where(it => it.IsDel == 0).ToList();
  4038. var placeData = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(it => it.IsDel == 0).ToList();
  4039. var rateDatas = await _EnterExitCosts.CurrencyRemark.SplitExchangeRate();
  4040. _DelegationInfo.VisitCountry = _DelegationInfo.VisitCountry.Replace("|", "、");
  4041. if (dto.ExportType == 1) //明细表
  4042. {
  4043. if (dto.SubTypeId == 1005) //1005(默认明细表)
  4044. {
  4045. //获取模板
  4046. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/出入境费用表模板.docx");
  4047. //载入模板
  4048. Document doc = new Document(tempPath);
  4049. DocumentBuilder builder = new DocumentBuilder(doc);
  4050. //利用键值对存放数据
  4051. Dictionary<string, string> dic = new Dictionary<string, string>();
  4052. decimal stayFeeTotal = _DayAndCosts.Where(it => it.Type == 1).Sum(it => it.SubTotal); // 住宿费
  4053. decimal mealsFeeTotal = _DayAndCosts.Where(it => it.Type == 2).Sum(it => it.SubTotal); // 伙食费费
  4054. decimal miscellaneousFeeTotal = _DayAndCosts.Where(it => it.Type == 3).Sum(it => it.SubTotal); // 公杂费
  4055. decimal tainFeeTotal = _DayAndCosts.Where(it => it.Type == 4).Sum(it => it.SubTotal); // 培训费
  4056. decimal insidePayTotal = _EnterExitCosts.InsidePay;
  4057. string row1_1 = "";
  4058. if (_EnterExitCosts.Visa > 0)
  4059. {
  4060. //insidePayTotal += _EnterExitCosts.Visa;
  4061. row1_1 = $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 人民币/人";
  4062. if (!string.IsNullOrEmpty(_EnterExitCosts.VisaRemark))
  4063. {
  4064. row1_1 += $"\t签证费用描述: : {_EnterExitCosts.VisaRemark} 人民币/人";
  4065. }
  4066. }
  4067. string row1_2 = "";
  4068. if (_EnterExitCosts.YiMiao > 0)
  4069. {
  4070. //insidePayTotal += _EnterExitCosts.YiMiao;
  4071. row1_2 += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")} 人民币/人";
  4072. }
  4073. if (_EnterExitCosts.HeSuan > 0)
  4074. {
  4075. //insidePayTotal += _EnterExitCosts.HeSuan;
  4076. row1_2 += $"核酸检测费:{_EnterExitCosts.HeSuan.ToString("#0.00")} 人民币/人";
  4077. }
  4078. if (_EnterExitCosts.Service > 0)
  4079. {
  4080. //insidePayTotal += _EnterExitCosts.Service;
  4081. row1_2 += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")} 人民币/人";
  4082. }
  4083. string row1_3 = "";
  4084. if (_EnterExitCosts.Safe > 0)
  4085. {
  4086. //insidePayTotal += _EnterExitCosts.Safe;
  4087. row1_3 += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")} 人民币/人";
  4088. }
  4089. if (_EnterExitCosts.Ticket > 0)
  4090. {
  4091. //insidePayTotal += _EnterExitCosts.Ticket;
  4092. row1_3 += $"参展门票:{_EnterExitCosts.Ticket.ToString("#0.00")} 人民币/人";
  4093. }
  4094. string row1 = "";
  4095. if (!string.IsNullOrEmpty(row1_1)) row1 += $"{row1_1}\r\n";
  4096. if (!string.IsNullOrEmpty(row1_2)) row1 += $"{row1_2}\r\n";
  4097. if (!string.IsNullOrEmpty(row1_3)) row1 += $"{row1_3}";
  4098. dic.Add("InsidePay", insidePayTotal.ToString("#0.00"));
  4099. dic.Add("Row1Str", row1);
  4100. dic.Add("OutsideJJ", _EnterExitCosts.OutsideJJPay.ToString("#0.00"));
  4101. dic.Add("OutsaideGW", _EnterExitCosts.OutsaideGWPay.ToString("#0.00"));
  4102. dic.Add("AirJJ", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4103. dic.Add("AirGW", _EnterExitCosts.AirGW.ToString("#0.00"));
  4104. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4105. dic.Add("SubZS", stayFeeTotal.ToString("#0.00"));
  4106. dic.Add("SubHS", mealsFeeTotal.ToString("#0.00"));
  4107. string miscellaneousFeeTotalStr = miscellaneousFeeTotal.ToString("#0.00");
  4108. dic.Add("SubGZF", miscellaneousFeeTotalStr);
  4109. //dic.Add("SubPX", tainFeeTotal.ToString("#0.00"));
  4110. decimal subJJC = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal + _EnterExitCosts.OutsideJJPay;
  4111. decimal subGWC = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal + _EnterExitCosts.OutsaideGWPay;
  4112. dic.Add("SubJJC", subJJC.ToString("#0.00"));
  4113. dic.Add("SubGWC", subGWC.ToString("#0.00"));
  4114. #region 填充word模板书签内容
  4115. foreach (var key in dic.Keys)
  4116. {
  4117. builder.MoveToBookmark(key);
  4118. builder.Write(dic[key]);
  4119. }
  4120. #endregion
  4121. #region 填充word表格内容
  4122. ////获读取指定表格方法二
  4123. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4124. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4125. for (int i = 0; i < dac1.Count; i++)
  4126. {
  4127. Grp_DayAndCost dac = dac1[i];
  4128. if (dac == null) continue;
  4129. builder.MoveToCell(0, i, 0, 0);
  4130. builder.Write("第" + dac.Days.ToString() + "晚:");
  4131. builder.MoveToCell(0, i, 1, 0);
  4132. //builder.Write(placeData.Find(it => it.Id == dac.NationalTravelFeeId)?.Country ?? "Unknown");
  4133. //builder.Write(dac.Place == null ? "" : dac.Place);
  4134. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4135. builder.MoveToCell(0, i, 2, 0);
  4136. builder.Write("费用标准:");
  4137. string curr = "";
  4138. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4139. if (currData != null)
  4140. {
  4141. curr = currData.Name;
  4142. }
  4143. builder.MoveToCell(0, i, 3, 0);
  4144. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4145. builder.MoveToCell(0, i, 4, 0);
  4146. builder.Write("费用小计:");
  4147. builder.MoveToCell(0, i, 5, 0);
  4148. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4149. }
  4150. //删除多余行
  4151. while (table1.Rows.Count > dac1.Count)
  4152. {
  4153. table1.Rows.RemoveAt(dac1.Count);
  4154. }
  4155. Aspose.Words.Tables.Table table2 = allTables[1] as Aspose.Words.Tables.Table;
  4156. for (int i = 0; i < dac2.Count; i++)
  4157. {
  4158. Grp_DayAndCost dac = dac2[i];
  4159. if (dac == null) continue;
  4160. builder.MoveToCell(1, i, 0, 0);
  4161. builder.Write("第" + dac.Days.ToString() + "天:");
  4162. builder.MoveToCell(1, i, 1, 0);
  4163. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4164. builder.MoveToCell(1, i, 2, 0);
  4165. builder.Write("费用标准:");
  4166. string curr = "";
  4167. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4168. if (currData != null)
  4169. {
  4170. curr = currData.Name;
  4171. }
  4172. builder.MoveToCell(1, i, 3, 0);
  4173. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4174. builder.MoveToCell(1, i, 4, 0);
  4175. builder.Write("费用小计:");
  4176. builder.MoveToCell(1, i, 5, 0);
  4177. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4178. }
  4179. //删除多余行
  4180. while (table2.Rows.Count > dac2.Count)
  4181. {
  4182. table2.Rows.RemoveAt(dac2.Count);
  4183. }
  4184. Aspose.Words.Tables.Table table3 = allTables[2] as Aspose.Words.Tables.Table;
  4185. for (int i = 0; i < dac3.Count; i++)
  4186. {
  4187. Grp_DayAndCost dac = dac3[i];
  4188. if (dac == null) continue;
  4189. builder.MoveToCell(2, i, 0, 0);
  4190. builder.Write("第" + dac.Days.ToString() + "天:");
  4191. builder.MoveToCell(2, i, 1, 0);
  4192. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4193. builder.MoveToCell(2, i, 2, 0);
  4194. builder.Write("费用标准:");
  4195. string curr = "";
  4196. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4197. if (currData != null)
  4198. {
  4199. curr = currData.Name;
  4200. }
  4201. builder.MoveToCell(2, i, 3, 0);
  4202. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4203. builder.MoveToCell(2, i, 4, 0);
  4204. builder.Write("费用小计:");
  4205. builder.MoveToCell(2, i, 5, 0);
  4206. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4207. }
  4208. //删除多余行
  4209. while (table3.Rows.Count > dac3.Count)
  4210. {
  4211. table3.Rows.RemoveAt(dac3.Count);
  4212. }
  4213. #endregion
  4214. //文件名
  4215. string strFileName = $"{_DelegationInfo.TeamName}出入境费用{Guid.NewGuid().ToString()}.docx";
  4216. AsposeHelper.removewatermark_v2180();
  4217. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4218. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4219. return Ok(JsonView(true, "成功", new { Url = url }));
  4220. }
  4221. else if (dto.SubTypeId == 1006)//1006(因公出国(境)经费测算明细表)
  4222. {
  4223. //获取模板
  4224. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/因公出国(境)经费测算明细表.docx");
  4225. //载入模板
  4226. Document doc = new Document(tempPath);
  4227. DocumentBuilder builder = new DocumentBuilder(doc);
  4228. Dictionary<string, string> dic = new Dictionary<string, string>();
  4229. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4230. {
  4231. List<string> list = new List<string>();
  4232. try
  4233. {
  4234. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4235. foreach (var item in spilitArr)
  4236. {
  4237. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4238. var depCode = spDotandEmpty[2].Substring(0, 3);
  4239. var arrCode = spDotandEmpty[2].Substring(3, 3);
  4240. string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  4241. arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  4242. list.Add(depName);
  4243. list.Add(arrName);
  4244. }
  4245. list = list.Distinct().ToList();
  4246. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4247. }
  4248. catch (Exception)
  4249. {
  4250. dic.Add("ReturnCode", "行程录入不正确!");
  4251. }
  4252. }
  4253. else
  4254. {
  4255. dic.Add("ReturnCode", "未录入行程!");
  4256. }
  4257. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4258. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4259. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4260. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4261. {
  4262. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4263. dic.Add("Day", sp.Days.ToString());
  4264. }
  4265. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4266. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4267. //var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  4268. //dic.Add("Names", Names);
  4269. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4270. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4271. decimal dac1totalPrice = 0.00M;
  4272. int accommodationStartIndex = 6, foodandotherStartIndex = 22;
  4273. foreach (var dac in dac1)
  4274. {
  4275. if (dac.SubTotal == 0.00M)
  4276. {
  4277. continue;
  4278. }
  4279. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  4280. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  4281. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4282. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4283. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  4284. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  4285. builder.Write(currency);//币种
  4286. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  4287. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4288. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  4289. builder.Write("");//人数
  4290. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  4291. builder.Write("");//天数
  4292. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  4293. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4294. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  4295. decimal rate = 0.00M;
  4296. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  4297. builder.Write(rate.ToString("#0.0000"));//汇率
  4298. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4299. decimal rbmPrice = dac.SubTotal;
  4300. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4301. accommodationStartIndex++;
  4302. dac1totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  4303. }
  4304. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4305. for (int i = 21; i > (dac1.Count == 0 ? 1 : dac1.Count) + 6; i--)
  4306. {
  4307. table1.Rows.RemoveAt(i - 1);
  4308. foodandotherStartIndex--;
  4309. }
  4310. if (dac2.Count == dac3.Count)//国家 币种 金额
  4311. {
  4312. for (int i = 0; i < dac2.Count; i++)
  4313. {
  4314. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4315. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4316. }
  4317. }
  4318. decimal dac2totalPrice = 0.00M;
  4319. foreach (var dac in dac2)
  4320. {
  4321. if (dac.SubTotal == 0)
  4322. {
  4323. continue;
  4324. }
  4325. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  4326. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4327. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  4328. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  4329. builder.Write(currency);//币种
  4330. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  4331. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4332. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  4333. builder.Write("");//人数
  4334. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  4335. builder.Write("");//天数
  4336. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  4337. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4338. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  4339. decimal rate = 0.00M;
  4340. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  4341. builder.Write(rate.ToString("#0.0000"));//汇率
  4342. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  4343. decimal rbmPrice = dac.SubTotal;
  4344. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4345. foodandotherStartIndex++;
  4346. dac2totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  4347. }
  4348. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  4349. for (int i = foodandotherStartIndex + (15 - dac2.Count); i > (dac2.Count == 0 ? 1 : 0) + foodandotherStartIndex; i--)
  4350. {
  4351. table1.Rows.RemoveAt(i - 1);
  4352. }
  4353. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4354. string otherFeeStr = "";
  4355. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  4356. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  4357. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  4358. if (otherFeeStr.Length > 0)
  4359. {
  4360. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  4361. otherFeeStr = $"({otherFeeStr})";
  4362. dic.Add("OtherFeeStr", otherFeeStr);
  4363. }
  4364. //总计
  4365. decimal allPrice = dac1totalPrice + dac2totalPrice + _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket;
  4366. //国际旅费
  4367. string outsideJJ = "";
  4368. string allPriceJJ = "";
  4369. if (_EnterExitCosts.SumJJC == 1)
  4370. {
  4371. outsideJJ = string.Format(@"经济舱:{0} 元/人", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4372. allPriceJJ = string.Format(@"经济舱:{0} 元/人", (allPrice + _EnterExitCosts.OutsideJJPay).ToString("#0.00"));
  4373. }
  4374. string outsideGW = "";
  4375. string allPriceGW = "";
  4376. if (_EnterExitCosts.SumGWC == 1)
  4377. {
  4378. outsideGW = string.Format(@"公务舱:{0} 元/人", _EnterExitCosts.AirGW.ToString("#0.00"));
  4379. allPriceGW = string.Format(@"公务舱:{0} 元/人", (allPrice + _EnterExitCosts.OutsaideGWPay).ToString("#0.00"));
  4380. }
  4381. if (_EnterExitCosts.SumJJC == 1 || _EnterExitCosts.SumGWC == 1)
  4382. {
  4383. string InTravelPriceStr = string.Format(@" ({0} {1})", outsideJJ, outsideGW);
  4384. dic.Add("InTravelPrice", InTravelPriceStr);
  4385. string FinalSumPriceStr = string.Format(@" ({0} {1})", allPriceJJ, allPriceGW);
  4386. dic.Add("FinalSumPrice", FinalSumPriceStr);
  4387. }
  4388. //dic.Add("VisaPay", _EnterExitCosts.Visa.ToString("#0.00"));
  4389. //dic.Add("SafePay", _EnterExitCosts.Safe.ToString("#0.00"));
  4390. //dic.Add("YiMiao", _EnterExitCosts.YiMiao.ToString("#0.00"));
  4391. foreach (var key in dic.Keys)
  4392. {
  4393. builder.MoveToBookmark(key);
  4394. builder.Write(dic[key]);
  4395. }
  4396. //模板文件名
  4397. string strFileName = $"{_DelegationInfo.TeamName}因公出国(境)经费测算明细表.docx";
  4398. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4399. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4400. return Ok(JsonView(true, "成功", new { Url = url }));
  4401. }
  4402. else if (dto.SubTypeId == 1007) //1007(四川省商务厅出国经费财政先行审核表)
  4403. {
  4404. //获取模板
  4405. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/四川省商务厅出国经费财政先行审核表.xls");
  4406. //载入模板
  4407. WorkbookDesigner designer = new WorkbookDesigner();
  4408. designer.Workbook = new Workbook(tempPath);
  4409. Dictionary<string, string> dic = new Dictionary<string, string>();
  4410. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4411. {
  4412. List<string> list = new List<string>();
  4413. try
  4414. {
  4415. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4416. foreach (var item in spilitArr)
  4417. {
  4418. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4419. var depCode = spDotandEmpty[2].Substring(0, 3);
  4420. var arrCode = spDotandEmpty[2].Substring(3, 3);
  4421. string depName = threeCodes.Find(it => it.Three.Equals(depCode))?.City ?? "Unknwon",
  4422. arrName = threeCodes.Find(it => it.Three.Equals(arrCode))?.City ?? "Unknown";
  4423. list.Add(depName);
  4424. list.Add(arrName);
  4425. }
  4426. list = list.Distinct().ToList();
  4427. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4428. }
  4429. catch (Exception)
  4430. {
  4431. dic.Add("ReturnCode", "行程录入不正确!");
  4432. }
  4433. }
  4434. else
  4435. {
  4436. dic.Add("ReturnCode", "未录入行程!");
  4437. }
  4438. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4439. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4440. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4441. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4442. {
  4443. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4444. dic.Add("Day", sp.Days.ToString());
  4445. }
  4446. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4447. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4448. var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  4449. designer.SetDataSource("ClientUnit", _DelegationInfo.ClientUnit);
  4450. designer.SetDataSource("VisitCountry", _DelegationInfo.VisitCountry);
  4451. designer.SetDataSource("Group", _DelegationInfo.TeamName);
  4452. designer.SetDataSource("ClientUnitTitle", _DelegationInfo.TeamName);
  4453. designer.SetDataSource("Name", Names);
  4454. designer.SetDataSource("VisitStartDate", dic["VisitStartDate"] + "-" + dic["VisitEndDate"]);
  4455. designer.SetDataSource("Day", dic["Day"] + "天");
  4456. designer.SetDataSource("ReturnCode", dic["ReturnCode"]);
  4457. designer.SetDataSource("ReturnCodeAir", dic["ReturnCodeAir"]);
  4458. int startIndex = 10;
  4459. const int startIndexcopy = 10;
  4460. if (dac2.Count == dac3.Count)//国家 币种 金额
  4461. {
  4462. for (int i = 0; i < dac2.Count; i++)
  4463. {
  4464. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4465. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4466. }
  4467. }
  4468. DataTable dtdac1 = new DataTable();
  4469. List<string> place = new List<string>();
  4470. dtdac1.Columns.AddRange(new DataColumn[] {
  4471. new DataColumn(){ ColumnName = "city"},
  4472. new DataColumn(){ ColumnName = "curr"},
  4473. new DataColumn(){ ColumnName = "criterion"},
  4474. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  4475. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  4476. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  4477. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  4478. new DataColumn(){ ColumnName = "costRMB", DataType = typeof(decimal) },
  4479. });
  4480. DataTable dtdac2 = new DataTable();
  4481. dtdac2.Columns.AddRange(new DataColumn[] {
  4482. new DataColumn(){ ColumnName = "city"},
  4483. new DataColumn(){ ColumnName = "curr"},
  4484. new DataColumn(){ ColumnName = "criterion"},
  4485. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  4486. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  4487. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  4488. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  4489. new DataColumn(){ ColumnName = "costRMB",DataType = typeof(decimal)},
  4490. });
  4491. dtdac1.TableName = "tb1";
  4492. dtdac2.TableName = "tb2";
  4493. decimal dac1totalPrice = 0.00M, dac2totalPrice = 0.00M;
  4494. foreach (var item in dac1)
  4495. {
  4496. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  4497. if (place.Contains(item.Place))
  4498. {
  4499. continue;
  4500. }
  4501. DataRow row = dtdac1.NewRow();
  4502. row["city"] = item.Place;
  4503. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  4504. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4505. row["curr"] = currency;
  4506. row["rate"] = rate.ToString("#0.0000");
  4507. row["criterion"] = item.Cost.ToString("#0.00");
  4508. row["number"] = 1;
  4509. row["day"] = dac1.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  4510. //row["costRMB"] = rbmPrice;
  4511. dtdac1.Rows.Add(row);
  4512. place.Add(item.Place);
  4513. }
  4514. place = new List<string>();
  4515. foreach (var item in dac2)
  4516. {
  4517. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  4518. if (place.Contains(item.Place))
  4519. {
  4520. continue;
  4521. }
  4522. DataRow row = dtdac2.NewRow();
  4523. row["city"] = item.Place;
  4524. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  4525. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4526. row["curr"] = currency;
  4527. row["rate"] = rate.ToString("#0.0000");
  4528. row["criterion"] = item.Cost.ToString("#0.00");
  4529. row["number"] = 1;
  4530. row["day"] = dac2.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  4531. //row["cost"] = item.SubTotal;
  4532. //row["costRMB"] = rbmPrice;
  4533. dtdac2.Rows.Add(row);
  4534. place.Add(item.Place);
  4535. //dac2totalPrice += rbmPrice;
  4536. }
  4537. dac1totalPrice = dac1.Sum(it => it.SubTotal);
  4538. dac2totalPrice = dac2.Sum(it => it.SubTotal);
  4539. designer.SetDataSource("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4540. designer.SetDataSource("dac2totalPrice", dac2totalPrice);
  4541. designer.SetDataSource("cityTranffic", @$"其中:国外城市间机票费: {_EnterExitCosts.CityTranffic.ToString("#0.00")} 元");
  4542. designer.SetDataSource("sumCityTranffic", @$"{_EnterExitCosts.CityTranffic.ToString("#0.00")} ");
  4543. string cell4Str = $" 4.国际旅费:经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 元/人,公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")} 元/人";
  4544. string cellStr = $" 5.其他费用(";
  4545. if (_EnterExitCosts.Visa > 0) cellStr += $"签证费:{_EnterExitCosts.Visa.ToString("#0.00")}元,";
  4546. if (_EnterExitCosts.YiMiao > 0) cellStr += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")}元,";
  4547. if (_EnterExitCosts.HeSuan > 0) cellStr += $"核酸费:{_EnterExitCosts.HeSuan.ToString("#0.00")}元,";
  4548. if (_EnterExitCosts.Safe > 0) cellStr += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")}元,";
  4549. if (_EnterExitCosts.Ticket > 0) cellStr += $"参展门票费:{_EnterExitCosts.Ticket.ToString("#0.00")}元,";
  4550. if (_EnterExitCosts.Service > 0) cellStr += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")}元,";
  4551. if (cellStr.Length > 8)
  4552. {
  4553. cellStr = cellStr.Substring(0, cellStr.Length - 1);
  4554. }
  4555. cellStr += ")";
  4556. decimal otherFee = _EnterExitCosts.Visa + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.Service;
  4557. decimal s = dac1totalPrice + dac2totalPrice + _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay + otherFee;
  4558. decimal pxFee = dac4.Sum(it => it.Cost);
  4559. decimal glvFee = _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay;
  4560. string celllastStr1 = "";
  4561. if (dac1totalPrice > 0) celllastStr1 += $"住宿费 {dac1totalPrice.ToString("#0.00")} 元";
  4562. if (dac2totalPrice > 0) celllastStr1 += $",伙食费和公杂费 {dac2totalPrice.ToString("#0.00")} 元";
  4563. if (pxFee > 0) celllastStr1 += $",培训费 {pxFee.ToString("#0.00")} 元";
  4564. celllastStr1 += $",国际旅费 元";
  4565. if (otherFee > 0) celllastStr1 += $",其他费用 {otherFee.ToString("#0.00")} 元";
  4566. string celllastStr = $" 经审核,{celllastStr1},本次出国经费预算合计为 元。其中:市本级安排 。";
  4567. designer.SetDataSource("cell4Str", cell4Str);
  4568. designer.SetDataSource("cellStr", cellStr);
  4569. designer.SetDataSource("cellSum", (_EnterExitCosts.Visa + _EnterExitCosts.Safe).ToString("#0.00"));
  4570. designer.SetDataSource("cellSum4", (_EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay).ToString("#0.00"));
  4571. designer.SetDataSource("celllastStr", celllastStr);
  4572. Workbook wb = designer.Workbook;
  4573. var sheet = wb.Worksheets[0];
  4574. //绑定datatable数据集
  4575. designer.SetDataSource(dtdac1);
  4576. designer.SetDataSource(dtdac2);
  4577. designer.Process();
  4578. var rowStart = dtdac1.Rows.Count;
  4579. while (rowStart > 0)
  4580. {
  4581. sheet.Cells[startIndex, 8].Formula = $"=G{startIndex + 1} * H{startIndex + 1}";
  4582. sheet.Cells[startIndex, 6].Formula = $"=E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4583. startIndex++;
  4584. rowStart--;
  4585. }
  4586. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + 1}: I{startIndex})";
  4587. startIndex += 1; //总计行
  4588. rowStart = dtdac2.Rows.Count;
  4589. while (rowStart > 0)
  4590. {
  4591. sheet.Cells[startIndex, 8].Formula = $"= G{startIndex + 1} * H{startIndex + 1}";
  4592. sheet.Cells[startIndex, 6].Formula = $"= E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4593. startIndex++;
  4594. rowStart--;
  4595. }
  4596. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + dtdac1.Rows.Count + 2}: I{startIndex})";
  4597. wb.CalculateFormula(true);
  4598. //模板文件名
  4599. string strFileName = $"{_DelegationInfo.TeamName}-四川省商务厅出国经费财政先行审核表{DateTime.Now.ToString("yyyyMMddHHmmss")}.xls"; ;//$".xls";
  4600. designer.Workbook.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4601. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4602. return Ok(JsonView(true, "成功", new { Url = url }));
  4603. }
  4604. else if (dto.SubTypeId == 1066) //成都市因公临时出国任务和预算审批意见表(外专培训团专用)
  4605. {
  4606. //获取模板
  4607. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/成都市因公临时出国任务和预算审批意见表.docx");
  4608. //载入模板
  4609. Document doc = new Document(tempPath);
  4610. DocumentBuilder builder = new DocumentBuilder(doc);
  4611. Dictionary<string, string> dic = new Dictionary<string, string>();
  4612. dic.Add("GroupName", _DelegationInfo.TeamName);
  4613. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4614. string missionLeader = ""; //团负责人默认接团客户名单第一个人
  4615. string missionLeaderJob = "";//负责人job
  4616. int groupNumber = 0; //团人数
  4617. if (DeleClientList.Count > 0)
  4618. {
  4619. missionLeader = DeleClientList[0]?.Name ?? "";
  4620. missionLeaderJob = DeleClientList[0]?.Job ?? "";
  4621. }
  4622. dic.Add("MissionLeader", missionLeader); //团负责人
  4623. dic.Add("MissionLeaderJob", missionLeaderJob); //团负责人job
  4624. dic.Add("GroupNumber", _DelegationInfo.VisitPNumber.ToString()); //团人数
  4625. #region MyRegion
  4626. //if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4627. //{
  4628. // List<string> list = new List<string>();
  4629. // try
  4630. // {
  4631. // var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4632. // foreach (var item in spilitArr)
  4633. // {
  4634. // var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4635. // var depCode = spDotandEmpty[2].Substring(0, 3);
  4636. // var arrCode = spDotandEmpty[2].Substring(3, 3);
  4637. // string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  4638. // arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  4639. // list.Add(depName);
  4640. // list.Add(arrName);
  4641. // }
  4642. // list = list.Distinct().ToList();
  4643. // dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4644. // }
  4645. // catch (Exception)
  4646. // {
  4647. // dic.Add("ReturnCode", "行程录入不正确!");
  4648. // }
  4649. //}
  4650. //else
  4651. //{
  4652. // dic.Add("ReturnCode", "未录入行程!");
  4653. //}
  4654. List<string> countrys = _groupRepository.GroupSplitCountry(_DelegationInfo.VisitCountry);
  4655. dic.Add("ReturnCode", string.Join("、", countrys));
  4656. #endregion
  4657. //dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4658. //dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4659. //dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4660. //if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4661. //{
  4662. // TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4663. // dic.Add("Day", sp.Days.ToString());
  4664. //}
  4665. dic.Add("Day", _DelegationInfo.VisitDays.ToString());
  4666. dic.Add("CultivateDay", dac4.Count.ToString()); //培训天数
  4667. // dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4668. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4669. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4670. //培训人员名单
  4671. int cultivateRowIndex = 7;
  4672. foreach (var item in DeleClientList)
  4673. {
  4674. builder.MoveToCell(0, cultivateRowIndex, 0, 0);
  4675. builder.Write(item.Name);
  4676. builder.MoveToCell(0, cultivateRowIndex, 1, 0);
  4677. builder.Write(item.Sex == 0 ? "男" : item.Sex == 1 ? "女" : "");
  4678. builder.MoveToCell(0, cultivateRowIndex, 2, 0);
  4679. string birthDay = "";
  4680. if (item.Birthday != null)
  4681. {
  4682. DateTime dt = Convert.ToDateTime(item.Birthday);
  4683. birthDay = $"{dt.Year}.{dt.Month}";
  4684. }
  4685. builder.Write(birthDay);
  4686. builder.MoveToCell(0, cultivateRowIndex, 3, 0);
  4687. builder.Write(item.Company);
  4688. builder.MoveToCell(0, cultivateRowIndex, 4, 0);
  4689. builder.Write(item.Job);
  4690. cultivateRowIndex++;
  4691. }
  4692. //删除多余行
  4693. //cultivateRowIndex -= 2;
  4694. int delRows = 10 + 7 - cultivateRowIndex;
  4695. if (delRows > 0)
  4696. {
  4697. for (int i = 0; i < delRows; i++)
  4698. {
  4699. table1.Rows.RemoveAt(cultivateRowIndex);
  4700. //cultivateRowIndex++;
  4701. }
  4702. }
  4703. decimal hotelFeeTotal = dac1.Sum(it => it.SubTotal);//住宿费
  4704. dic.Add("HotelFeeTotal", hotelFeeTotal.ToString("#0.00"));
  4705. decimal mealsFeeTotal = dac2.Sum(it => it.SubTotal);//伙食费
  4706. dic.Add("MealsFeeTotal", mealsFeeTotal.ToString("#0.00"));
  4707. decimal miscellaneousFeeTotal = dac3.Sum(it => it.SubTotal);//公杂费
  4708. dic.Add("MiscellaneousFeeTotal", miscellaneousFeeTotal.ToString("#0.00"));
  4709. decimal trainingFeeTotal = dac4.Sum(it => it.SubTotal);//培训费
  4710. dic.Add("TrainingFeeTotal", trainingFeeTotal.ToString("#0.00"));
  4711. decimal cityTranfficFeeToatal = _EnterExitCosts.CityTranffic; //城市区间交通费
  4712. dic.Add("CityTranfficFeeToatal", cityTranfficFeeToatal.ToString("#0.00"));//
  4713. //其他费用
  4714. decimal otherFeeTotal = _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Service;
  4715. dic.Add("OtherFeeTotal", otherFeeTotal.ToString("#0.00"));
  4716. //其他费用合计
  4717. decimal _otherFeeTotal = hotelFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + trainingFeeTotal + cityTranfficFeeToatal + otherFeeTotal;
  4718. decimal _jjcFeeToatal = _EnterExitCosts.AirJJ + _otherFeeTotal; //经济舱
  4719. decimal _gwcFeeToatal = _EnterExitCosts.AirGW + _otherFeeTotal; //公务舱
  4720. //公务舱合计
  4721. //国际旅费
  4722. string outsideJJ = "";
  4723. string allPriceJJ = "";
  4724. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 0)
  4725. {
  4726. dic.Add("AirFeeTotal", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4727. dic.Add("FeeTotal", _jjcFeeToatal.ToString("#0.00"));
  4728. }
  4729. if (_EnterExitCosts.SumGWC == 1 && _EnterExitCosts.SumJJC == 0)
  4730. {
  4731. dic.Add("AirFeeTotal", _EnterExitCosts.AirGW.ToString("#0.00"));
  4732. dic.Add("FeeTotal", _gwcFeeToatal.ToString("#0.00"));
  4733. }
  4734. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 1)
  4735. {
  4736. string airFeeTotalStr = string.Format(@$"经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")}");
  4737. dic.Add("AirFeeTotal", airFeeTotalStr);
  4738. string feeTotalStr = string.Format(@$"经济舱:{_jjcFeeToatal.ToString("#0.00")} 公务舱:{_gwcFeeToatal.ToString("#0.00")}");
  4739. dic.Add("FeeTotal", feeTotalStr);
  4740. }
  4741. foreach (var key in dic.Keys)
  4742. {
  4743. builder.MoveToBookmark(key);
  4744. builder.Write(dic[key]);
  4745. }
  4746. //模板文件名
  4747. string strFileName = $"{_DelegationInfo.TeamName}-成都市因公临时出国任务和预算审批意见表(外专培训团专用).docx";
  4748. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4749. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4750. return Ok(JsonView(true, "成功", new { Url = url }));
  4751. }
  4752. }
  4753. else if (dto.ExportType == 2) //表格
  4754. {
  4755. //利用键值对存放数据
  4756. Dictionary<string, string> dic = new Dictionary<string, string>();
  4757. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4758. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4759. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4760. dic.Add("Day", sp.Days.ToString());
  4761. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4762. if (dto.SubTypeId == 1008) //1008(派员单位出(境)任务和预算审批意见表)
  4763. {
  4764. //获取模板
  4765. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/派员单位出(境)任务和预算审批意见表.docx");
  4766. //载入模板
  4767. Document doc = new Document(tempPath);
  4768. DocumentBuilder builder = new DocumentBuilder(doc);
  4769. dic.Add("TeamName", _DelegationInfo.TeamName);
  4770. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4771. //dic.Add("TellPhone", _DelegationInfo.TellPhone);
  4772. string missionLeaderName = "",
  4773. missionLeaderJob = "";
  4774. if (DeleClientList.Count > 0)
  4775. {
  4776. missionLeaderName = DeleClientList[0].Name;
  4777. missionLeaderJob = DeleClientList[0].Job;
  4778. }
  4779. dic.Add("MissionLeaderName", missionLeaderName);
  4780. dic.Add("MissionLeaderJob", missionLeaderJob);
  4781. dic.Add("VisitPNumber", _DelegationInfo.VisitPNumber.ToString());
  4782. dic.Add("VisitPurpose", _DelegationInfo.VisitPurpose);
  4783. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4784. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4785. int rowCount = 10;//总人数行
  4786. int startRowIndex = 7; //起始行
  4787. for (int i = 0; i < DeleClientList.Count; i++)
  4788. {
  4789. builder.MoveToCell(0, startRowIndex, 0, 0);
  4790. builder.Write(DeleClientList[i].Name); //出国人员姓名
  4791. builder.MoveToCell(0, startRowIndex, 1, 0);
  4792. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  4793. builder.Write(sex);//性别
  4794. builder.MoveToCell(0, startRowIndex, 2, 0);
  4795. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));//出生年月
  4796. builder.MoveToCell(0, startRowIndex, 3, 0);
  4797. builder.Write(DeleClientList[i].Company);//工作单位
  4798. builder.MoveToCell(0, startRowIndex, 4, 0);
  4799. builder.Write(DeleClientList[i].Job);//职务及级别
  4800. builder.MoveToCell(0, startRowIndex, 5, 0);
  4801. builder.Write("");//人员属性
  4802. builder.MoveToCell(0, startRowIndex, 6, 0);
  4803. builder.Write("");//上次出国时间
  4804. startRowIndex++;
  4805. }
  4806. int nullRow = rowCount - DeleClientList.Count;//空行
  4807. for (int i = 0; i < nullRow; i++)
  4808. {
  4809. table1.Rows.Remove(table1.Rows[startRowIndex]);
  4810. }
  4811. foreach (var key in dic.Keys)
  4812. {
  4813. builder.MoveToBookmark(key);
  4814. builder.Write(dic[key]);
  4815. }
  4816. //模板文件名
  4817. string strFileName = $"派员单位出(境)任务和预算审批意见表.docx";
  4818. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4819. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4820. return Ok(JsonView(true, "成功", new { Url = url }));
  4821. }
  4822. else if (dto.SubTypeId == 1009)//1009(省级单位出(境)经费报销单)
  4823. {
  4824. //获取模板
  4825. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/省级单位出(境)经费报销单.docx");
  4826. //载入模板
  4827. Document doc = new Document(tempPath);
  4828. DocumentBuilder builder = new DocumentBuilder(doc);
  4829. dic.Add("GroupClient", _DelegationInfo.ClientUnit);
  4830. var Names = string.Join("、", DeleClientList.Select(x => x.Name)).TrimEnd('、');
  4831. dic.Add("Names", Names);
  4832. int accommodationRows = 12, foodandotherRows = 12;
  4833. var Dac1currCn = dac1.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4834. var Dac2currCn = dac2.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4835. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4836. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4837. int accommodationStartIndex = 6;
  4838. decimal dac1totalPrice = 0.00M;
  4839. foreach (var dac in dac1)
  4840. {
  4841. if (dac.SubTotal == 0)
  4842. {
  4843. continue;
  4844. }
  4845. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  4846. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  4847. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4848. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  4849. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  4850. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  4851. builder.Write(currency);//币种
  4852. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  4853. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4854. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  4855. builder.Write("");//人数
  4856. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  4857. builder.Write("");//天数
  4858. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  4859. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4860. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  4861. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4862. builder.Write(rate.ToString("#0.0000"));//汇率
  4863. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4864. decimal rbmPrice = rate * dac.SubTotal;
  4865. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4866. accommodationStartIndex++;
  4867. dac1totalPrice += rbmPrice;
  4868. }
  4869. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4870. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4871. builder.Write("小计");
  4872. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4873. builder.Write(dac1totalPrice.ToString("#0.00"));
  4874. accommodationStartIndex++;
  4875. int nullRow = accommodationRows - dac1.Count;
  4876. //删除空行
  4877. //if (nullRow > 0)
  4878. //{
  4879. // int rowIndex = accommodationStartIndex;
  4880. // for (int i = 0; i < nullRow; i++)
  4881. // {
  4882. // Row row = table1.Rows[rowIndex];
  4883. // row.Remove();
  4884. // rowIndex++;
  4885. // }
  4886. //}
  4887. if (dac2.Count == dac3.Count)//国家 币种 金额
  4888. {
  4889. for (int i = 0; i < dac2.Count; i++)
  4890. {
  4891. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4892. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4893. }
  4894. }
  4895. int foodandotherStartIndex = 19;//
  4896. decimal dac2totalPrice = 0.00M;
  4897. foreach (var dac in dac2)
  4898. {
  4899. if (dac.SubTotal == 0)
  4900. {
  4901. continue;
  4902. }
  4903. //foodandotherStartIndex = 12;
  4904. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  4905. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  4906. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  4907. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  4908. builder.Write(currency);//币种
  4909. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  4910. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4911. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  4912. builder.Write("");//人数
  4913. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  4914. builder.Write("");//天数
  4915. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  4916. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4917. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  4918. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4919. builder.Write(rate.ToString("#0.0000"));//汇率
  4920. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  4921. decimal rbmPrice = rate * dac.SubTotal;
  4922. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4923. foodandotherStartIndex++;
  4924. dac2totalPrice += rbmPrice;
  4925. }
  4926. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  4927. //删除空行
  4928. if (dac2.Count < foodandotherRows)
  4929. {
  4930. //int nullRow = accommodationRows - dac2.Count;
  4931. //while (table2.Rows.Count > dac2.Count)
  4932. //{
  4933. // table2.Rows.RemoveAt(dac2.Count);
  4934. //}
  4935. }
  4936. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4937. string otherFeeStr = "";
  4938. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  4939. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  4940. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  4941. if (otherFeeStr.Length > 0)
  4942. {
  4943. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  4944. otherFeeStr = $"({otherFeeStr})";
  4945. dic.Add("OtherFeeStr", otherFeeStr);
  4946. }
  4947. foreach (var key in dic.Keys)
  4948. {
  4949. builder.MoveToBookmark(key);
  4950. builder.Write(dic[key]);
  4951. }
  4952. //模板文件名
  4953. string strFileName = $"省级单位出(境)经费报销单.docx";
  4954. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4955. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4956. return Ok(JsonView(true, "成功", new { Url = url }));
  4957. }
  4958. }
  4959. else if (dto.ExportType == 3)
  4960. {
  4961. if (dto.SubTypeId == 1) //团组成员名单
  4962. {
  4963. if (DeleClientList.Count < 1)
  4964. {
  4965. return Ok(JsonView(false, "团组成员暂未录入!!!"));
  4966. }
  4967. //获取模板
  4968. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/dwon_团组人员列表模板.doc");
  4969. //载入模板
  4970. Document doc = new Document(tempPath);
  4971. DocumentBuilder builder = new DocumentBuilder(doc);
  4972. //获取word里所有表格
  4973. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4974. //获取所填表格的序数
  4975. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  4976. var rowStart = tableOne.Rows[0]; //获取第1行
  4977. //循环赋值
  4978. for (int i = 0; i < DeleClientList.Count; i++)
  4979. {
  4980. builder.MoveToCell(0, i + 1, 0, 0);
  4981. builder.Write(DeleClientList[i].Name);
  4982. builder.MoveToCell(0, i + 1, 1, 0);
  4983. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  4984. builder.Write(sex);
  4985. builder.MoveToCell(0, i + 1, 2, 0);
  4986. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));
  4987. builder.MoveToCell(0, i + 1, 3, 0);
  4988. builder.Write(DeleClientList[i].Company);
  4989. builder.MoveToCell(0, i + 1, 4, 0);
  4990. builder.Write(DeleClientList[i].Job);
  4991. }
  4992. //删除多余行
  4993. while (tableOne.Rows.Count > DeleClientList.Count + 1)
  4994. {
  4995. tableOne.Rows.RemoveAt(DeleClientList.Count + 1);
  4996. }
  4997. string strFileName = $"{_DelegationInfo.TeamName}组团人员名单({DateTime.Now.ToString("yyyyMMddHHmmss")}).doc";
  4998. //C:/Server/File/OA2023/Office/Word/EnterExitCost/File/
  4999. //C:\Server\File\OA2023\Office\Word\EnterExitCost\File\
  5000. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  5001. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  5002. return Ok(JsonView(true, "成功", new { Url = url }));
  5003. }
  5004. }
  5005. return Ok(JsonView(false, "操作失败!"));
  5006. }
  5007. catch (Exception ex)
  5008. {
  5009. return Ok(JsonView(false, ex.Message));
  5010. }
  5011. }
  5012. /// <summary>
  5013. /// 获取三公费用标准city
  5014. /// </summary>
  5015. /// <param name="placeData"></param>
  5016. /// <param name="nationalTravelFeeId"></param>
  5017. /// <returns></returns>
  5018. private string GetEnterExitCostExportCity(List<Grp_NationalTravelFee> placeData, int nationalTravelFeeId)
  5019. {
  5020. string _city = string.Empty;
  5021. if (placeData.Count < 1) return _city;
  5022. var data = placeData.Find(it => it.Id == nationalTravelFeeId);
  5023. if (data == null) return _city;
  5024. string country = data.Country;
  5025. string city = data.City;
  5026. if (city.Contains("其他城市") || city.Contains("所有城市")) _city = $"{country}-{city}";
  5027. else _city = city;
  5028. return _city;
  5029. }
  5030. /// <summary>
  5031. /// 团组模块 - 出入境费用 - 明细表导出
  5032. /// </summary>
  5033. /// <returns></returns>
  5034. [HttpPost]
  5035. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5036. public async Task<IActionResult> PostEnterExitCostExportDetailsList(EnterExitCostOperateDto dto)
  5037. {
  5038. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  5039. if (data.Code != 0)
  5040. {
  5041. return Ok(JsonView(false, data.Msg));
  5042. }
  5043. return Ok(JsonView(true, data.Msg, data.Data));
  5044. }
  5045. /// <summary>
  5046. /// 团组模块 - 出入境费用 - 一键清空
  5047. /// </summary>
  5048. /// <returns></returns>
  5049. [HttpPost]
  5050. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5051. public async Task<IActionResult> PostEnterExitCostOneClickClear(EnterExitCostOneClickClearDto dto)
  5052. {
  5053. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数;"));
  5054. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数;"));
  5055. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数;"));
  5056. var _view = await _enterExitCostRep._OneClickClear(dto.Id, dto.DiId, dto.UserId);
  5057. if (_view.Code == 0)
  5058. {
  5059. return Ok(JsonView(true, "操作成功"));
  5060. }
  5061. return Ok(JsonView(false, "操作失败"));
  5062. }
  5063. /// <summary>
  5064. /// 团组模块 - 出入境费用 - 子项删除
  5065. /// </summary>
  5066. /// <returns></returns>
  5067. [HttpPost]
  5068. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5069. public async Task<IActionResult> PostEnterExitCostSubItemDel(EnterExitCostSubItemDelDto dto)
  5070. {
  5071. try
  5072. {
  5073. var data = await _enterExitCostRep.PostEnterExitCostSubItemDel(dto);
  5074. if (data.Code != 0)
  5075. {
  5076. return Ok(JsonView(false, data.Msg));
  5077. }
  5078. return Ok(JsonView(true, "操作成功!", data.Data));
  5079. }
  5080. catch (Exception ex)
  5081. {
  5082. return Ok(JsonView(false, ex.Message));
  5083. }
  5084. }
  5085. /// <summary>
  5086. /// 团组模块 - 出入境国家费用标准 List
  5087. /// </summary>
  5088. /// <returns></returns>
  5089. [HttpPost]
  5090. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5091. public async Task<IActionResult> GetNationalTravelFeeData(PortDtoBase dto)
  5092. {
  5093. try
  5094. {
  5095. Stopwatch sw = new Stopwatch();
  5096. sw.Start();
  5097. string nationalTravelFeeSql = string.Format(@"Select ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.* From Grp_NationalTravelFee gntf
  5098. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5099. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5100. Where gntf.Isdel = 0");
  5101. var nationalTravelFeeData = _sqlSugar.SqlQueryable<NationalTravelFeeInfoView>(nationalTravelFeeSql).ToList();
  5102. //var nationalTravel = nationalTravelFeeData.GroupBy(it => it.Country).Select(it1 => it1.FirstOrDefault());
  5103. //List<dynamic> nationalTravelFeeData1 = new List<dynamic>();
  5104. //foreach (var item in nationalTravel)
  5105. //{
  5106. // var cityData = nationalTravelFeeData.Where(it => it.Country == item.Country).ToList();
  5107. // var otherData = cityData.Where(it => it.City.Contains("其他城市")).FirstOrDefault();
  5108. // if (otherData != null)
  5109. // {
  5110. // cityData.Remove(otherData);
  5111. // cityData.Add(otherData);
  5112. // }
  5113. // nationalTravelFeeData1.Add(new
  5114. // {
  5115. // Country = item.Country,
  5116. // CityData = cityData
  5117. // });
  5118. //}
  5119. sw.Stop();
  5120. return Ok(JsonView(true, "查询成功!耗时:" + sw.ElapsedMilliseconds + "ms", nationalTravelFeeData));
  5121. }
  5122. catch (Exception ex)
  5123. {
  5124. return Ok(JsonView(false, ex.Message));
  5125. throw;
  5126. }
  5127. }
  5128. /// <summary>
  5129. /// 团组模块 - 出入境国家费用标准 Page List Data Source
  5130. /// </summary>
  5131. /// <returns></returns>
  5132. [HttpPost]
  5133. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5134. public async Task<IActionResult> GetNationalTravelFeePageDataSource()
  5135. {
  5136. string sql = string.Format(@"Select * From Grp_NationalTravelFee Where Isdel = 0 ");
  5137. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<Grp_NationalTravelFee>(sql).ToListAsync();
  5138. List<string> countryData = new List<string>();
  5139. countryData.AddRange(nationalTravelFeeData.Select(it => it.Country).ToList());
  5140. countryData = countryData.Distinct().ToList();
  5141. List<dynamic> dataSource = new List<dynamic>();
  5142. foreach (var item in countryData)
  5143. {
  5144. List<string> cityData1 = new List<string>();
  5145. cityData1 = nationalTravelFeeData.Where(it => it.Country == item).Select(it => it.City).ToList();
  5146. var countryData2 = new
  5147. {
  5148. CountryName = item,
  5149. CityData = cityData1
  5150. };
  5151. dataSource.Add(countryData2);
  5152. }
  5153. return Ok(JsonView(true, "查询成功!", dataSource));
  5154. }
  5155. /// <summary>
  5156. /// 团组模块 - 出入境国家费用标准 Page List
  5157. /// </summary>
  5158. /// <returns></returns>
  5159. [HttpPost]
  5160. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5161. public async Task<IActionResult> PostNationalTravelFeePage(NationalTravelFeePageDto dto)
  5162. {
  5163. int portId = dto.PortType;
  5164. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  5165. if (dto.PageIndex == 0) return Ok(JsonView(false, "当前页码数不能为0!"));
  5166. if (dto.PageSize == 0) return Ok(JsonView(false, "每页条数不能0!"));
  5167. string whereSql = string.Empty;
  5168. if (!string.IsNullOrEmpty(dto.Country))
  5169. {
  5170. whereSql += string.Format(@" And gntf.Country ='{0}'", dto.Country);
  5171. }
  5172. if (!string.IsNullOrEmpty(dto.City))
  5173. {
  5174. whereSql += string.Format(@" And gntf.City='{0}'", dto.City);
  5175. }
  5176. string pageSql = string.Format(@"Select * From (
  5177. Select row_number() over(order by gntf.LastUpdateTime Desc) as RowNumber,
  5178. ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.*
  5179. From Grp_NationalTravelFee gntf
  5180. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5181. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5182. Where gntf.Isdel = 0 {0} ) temp ", whereSql);
  5183. RefAsync<int> total = 0;
  5184. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeePageInfoView>(pageSql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  5185. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData, (int)total));
  5186. }
  5187. /// <summary>
  5188. /// 团组模块 - 出入境国家费用标准 根据城市查询
  5189. /// </summary>
  5190. /// <returns></returns>
  5191. [HttpPost]
  5192. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5193. public async Task<IActionResult> PostNationalTravelFeeInfoByCountryAndCity(NationalTravelFeeByCountryAndCityDto dto)
  5194. {
  5195. if (dto == null) return Ok(JsonView(false, "请传入参数!"));
  5196. int portId = dto.PortType;
  5197. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  5198. string whereSql = string.Empty;
  5199. if (!string.IsNullOrEmpty(dto.Country))
  5200. {
  5201. whereSql = string.Format(@"And Country = '{0}' ", dto.Country);
  5202. }
  5203. if (!string.IsNullOrEmpty(dto.City))
  5204. {
  5205. whereSql = string.Format(@"And City = '{0}' ", dto.City);
  5206. }
  5207. string sql = string.Format(@"Select gntf.Country,gntf.City,gntf.Currency,ssd.Name as CurrencyCode,
  5208. ssd.Remark as CurrencyName,gntf.RoomCost,gntf.FoodCost,gntf.PublicCost,
  5209. gntf.LastUpdateUserId,su.CnName as LastUpdateUserName,gntf.LastUpdateTime
  5210. From Grp_NationalTravelFee gntf
  5211. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5212. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5213. Where gntf.Isdel = 0 {0} ", whereSql);
  5214. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeeInfoByCountryAndCityView>(sql).FirstAsync();
  5215. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData));
  5216. }
  5217. /// <summary>
  5218. /// 团组模块 - 出入境国家费用标准 - Add Or Update
  5219. /// </summary>
  5220. /// <returns></returns>
  5221. [HttpPost]
  5222. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5223. public async Task<IActionResult> PostNationalTravelFeeOperate(NationalTravelFeeOperateDto dto)
  5224. {
  5225. try
  5226. {
  5227. var data = await _enterExitCostRep.PostNationalTravelFeeOperate(dto);
  5228. if (data.Code != 0)
  5229. {
  5230. return Ok(JsonView(false, data.Msg));
  5231. }
  5232. return Ok(JsonView(true, "操作成功!", data.Data));
  5233. }
  5234. catch (Exception ex)
  5235. {
  5236. return Ok(JsonView(false, ex.Message));
  5237. }
  5238. }
  5239. /// <summary>
  5240. /// 团组模块 - 出入境国家费用标准 - Del
  5241. /// </summary>
  5242. /// <returns></returns>
  5243. [HttpPost]
  5244. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5245. public async Task<IActionResult> PostNationalTravelFeeDel(NationalTravelFeeDelDto dto)
  5246. {
  5247. try
  5248. {
  5249. Grp_NationalTravelFee _nationalTravelFee = new Grp_NationalTravelFee()
  5250. {
  5251. Id = dto.Id,
  5252. DeleteUserId = dto.DeleteUserId,
  5253. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  5254. IsDel = 1
  5255. };
  5256. var delStatus = await _enterExitCostRep._sqlSugar.Updateable<Grp_NationalTravelFee>(_nationalTravelFee)
  5257. .UpdateColumns(it => new { it.DeleteTime, it.DeleteUserId, it.IsDel })
  5258. .WhereColumns(it => new { it.Id })
  5259. .ExecuteCommandAsync();
  5260. if (delStatus <= 0)
  5261. {
  5262. return Ok(JsonView(false, "删除失败!"));
  5263. }
  5264. return Ok(JsonView(true, "操作成功!"));
  5265. }
  5266. catch (Exception ex)
  5267. {
  5268. return Ok(JsonView(false, ex.Message));
  5269. }
  5270. }
  5271. #endregion
  5272. #region 签证费用录入
  5273. /// <summary>
  5274. /// 根据diid查询签证费用列表
  5275. /// </summary>
  5276. /// <param name="dto"></param>
  5277. /// <returns></returns>
  5278. [HttpPost]
  5279. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5280. public async Task<IActionResult> QueryVisaByDiId(VisaPriceDto dto)
  5281. {
  5282. try
  5283. {
  5284. Result groupData = await _visaPriceRep.PostVisaByDiId(dto);
  5285. if (groupData.Code != 0)
  5286. {
  5287. return Ok(JsonView(false, groupData.Msg));
  5288. }
  5289. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5290. }
  5291. catch (Exception ex)
  5292. {
  5293. return Ok(JsonView(false, ex.Message));
  5294. }
  5295. }
  5296. /// <summary>
  5297. /// 根据签证费用Id查询单条数据及c表数据
  5298. /// </summary>
  5299. /// <param name="dto"></param>
  5300. /// <returns></returns>
  5301. [HttpPost]
  5302. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5303. public async Task<IActionResult> QueryVisaById(PostVisaByIdDto dto)
  5304. {
  5305. try
  5306. {
  5307. Result groupData = await _visaPriceRep.PostVisaById(dto);
  5308. if (groupData.Code != 0)
  5309. {
  5310. return Ok(JsonView(false, groupData.Msg));
  5311. }
  5312. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5313. }
  5314. catch (Exception ex)
  5315. {
  5316. return Ok(JsonView(false, ex.Message));
  5317. }
  5318. }
  5319. /// <summary>
  5320. /// 签证费用删除
  5321. /// </summary>
  5322. /// <param name="dto"></param>
  5323. /// <returns></returns>
  5324. [HttpPost]
  5325. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5326. public async Task<IActionResult> DelVisaPrice(DelBaseDto dto)
  5327. {
  5328. _sqlSugar.BeginTran();
  5329. var res = await _visaPriceRep.SoftDeleteByIdAsync<Grp_VisaInfo>(dto.Id.ToString(), dto.DeleteUserId);
  5330. if (!res)
  5331. {
  5332. _sqlSugar.RollbackTran();
  5333. return Ok(JsonView(false, "删除失败"));
  5334. }
  5335. var resSub = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  5336. .Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 80)
  5337. .SetColumns(a => new Grp_CreditCardPayment()
  5338. {
  5339. IsDel = 1,
  5340. DeleteUserId = dto.DeleteUserId,
  5341. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5342. }).ExecuteCommand();
  5343. if (resSub < 1)
  5344. {
  5345. _sqlSugar.RollbackTran();
  5346. return Ok(JsonView(false, "删除失败"));
  5347. }
  5348. _sqlSugar.CommitTran();
  5349. return Ok(JsonView(true, "删除成功!"));
  5350. }
  5351. /// <summary>
  5352. /// 签证费用录入下拉框初始化
  5353. /// </summary>
  5354. /// <returns></returns>
  5355. [HttpPost]
  5356. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5357. public async Task<IActionResult> VisaPriceAddSelect()
  5358. {
  5359. try
  5360. {
  5361. //支付方式
  5362. List<Sys_SetData> Payment = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 14 && a.IsDel == 0).ToList();
  5363. List<SetDataInfoView> _Payment = _mapper.Map<List<SetDataInfoView>>(Payment);
  5364. //币种
  5365. List<Sys_SetData> CurrencyList = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 66 && a.IsDel == 0).ToList();
  5366. List<SetDataInfoView> _CurrencyList = _mapper.Map<List<SetDataInfoView>>(CurrencyList);
  5367. //乘客类型
  5368. List<Sys_SetData> PassengerType = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 69 && a.IsDel == 0).ToList();
  5369. List<SetDataInfoView> _PassengerType = _mapper.Map<List<SetDataInfoView>>(PassengerType);
  5370. //卡类型
  5371. List<Sys_SetData> BankCard = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 15 && a.IsDel == 0).ToList();
  5372. List<SetDataInfoView> _BankCard = _mapper.Map<List<SetDataInfoView>>(BankCard);
  5373. var data = new
  5374. {
  5375. Payment = _Payment,
  5376. CurrencyList = _CurrencyList,
  5377. PassengerType = _PassengerType,
  5378. BankCard = _BankCard
  5379. };
  5380. return Ok(JsonView(true, "查询成功!", data));
  5381. }
  5382. catch (Exception ex)
  5383. {
  5384. return Ok(JsonView(false, "程序错误!"));
  5385. throw;
  5386. }
  5387. }
  5388. /// <summary>
  5389. /// 签证费用录入操作(Status:1.新增,2.修改)
  5390. /// </summary>
  5391. /// <param name="dto"></param>
  5392. /// <returns></returns>
  5393. [HttpPost]
  5394. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5395. public async Task<IActionResult> OpVisaPrice(OpVisaPriceDto dto)
  5396. {
  5397. try
  5398. {
  5399. Result groupData = await _visaPriceRep.OpVisaPrice(dto);
  5400. if (groupData.Code != 0)
  5401. {
  5402. return Ok(JsonView(false, groupData.Msg));
  5403. }
  5404. #region 应用推送
  5405. try
  5406. {
  5407. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  5408. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  5409. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  5410. }
  5411. catch (Exception ex)
  5412. {
  5413. }
  5414. #endregion
  5415. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5416. }
  5417. catch (Exception ex)
  5418. {
  5419. return Ok(JsonView(false, ex.Message));
  5420. }
  5421. }
  5422. #endregion
  5423. #region op费用录入
  5424. /// <summary>
  5425. /// 根据diid查询op费用列表
  5426. /// </summary>
  5427. /// <param name="dto"></param>
  5428. /// <returns></returns>
  5429. [HttpPost]
  5430. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5431. public async Task<IActionResult> QueryCarTouristGuideGroundByDiId(CarTouristGuideGroundDto dto)
  5432. {
  5433. try
  5434. {
  5435. Result groupData = await _carTouristGuideGroundRep.QueryCarTouristGuideGroundByDiId(dto);
  5436. if (groupData.Code != 0)
  5437. {
  5438. return Ok(JsonView(false, groupData.Msg));
  5439. }
  5440. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5441. }
  5442. catch (Exception ex)
  5443. {
  5444. return Ok(JsonView(false, ex.Message));
  5445. }
  5446. }
  5447. /// <summary>
  5448. /// 根据op费用Id查询单条数据及c表数据
  5449. /// </summary>
  5450. /// <param name="dto"></param>
  5451. /// <returns></returns>
  5452. [HttpPost]
  5453. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5454. public async Task<IActionResult> QueryCarTouristGuideGroundById(CarTouristGuideGroundIdDto dto)
  5455. {
  5456. try
  5457. {
  5458. Grp_CarTouristGuideGroundReservations _groupData = await _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().FirstAsync(a => a.Id == dto.Id && a.IsDel == 0);
  5459. Grp_CreditCardPayment _creditCardPayment = await _sqlSugar.Queryable<Grp_CreditCardPayment>().FirstAsync(a => a.CId == dto.Id && a.CTable == 79 && a.IsDel == 0);
  5460. var data = new
  5461. {
  5462. CarTouristGuideGround = _groupData,
  5463. CreditCardPayment = _creditCardPayment
  5464. };
  5465. return Ok(JsonView(true, "查询成功!", data));
  5466. }
  5467. catch (Exception ex)
  5468. {
  5469. return Ok(JsonView(false, "程序错误!"));
  5470. }
  5471. }
  5472. /// <summary>
  5473. /// op费用删除
  5474. /// </summary>
  5475. /// <param name="dto"></param>
  5476. /// <returns></returns>
  5477. [HttpPost]
  5478. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5479. public async Task<IActionResult> DelCarTouristGuideGround(DelBaseDto dto)
  5480. {
  5481. try
  5482. {
  5483. var res = await _carTouristGuideGroundRep.SoftDeleteByIdAsync<Grp_CarTouristGuideGroundReservations>(dto.Id.ToString(), dto.DeleteUserId);
  5484. if (!res)
  5485. {
  5486. return Ok(JsonView(false, "删除失败"));
  5487. }
  5488. var result = await _sqlSugar.Updateable<Grp_CarTouristGuideGroundReservationsContent>().Where(a => a.CTGGRId == dto.Id && a.IsDel == 0).SetColumns(a => new Grp_CarTouristGuideGroundReservationsContent()
  5489. {
  5490. IsDel = 1,
  5491. DeleteUserId = dto.DeleteUserId,
  5492. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5493. }).ExecuteCommandAsync();
  5494. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 79).SetColumns(a => new Grp_CreditCardPayment()
  5495. {
  5496. IsDel = 1,
  5497. DeleteUserId = dto.DeleteUserId,
  5498. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5499. }).ExecuteCommandAsync();
  5500. return Ok(JsonView(true, "删除成功!"));
  5501. }
  5502. catch (Exception ex)
  5503. {
  5504. return Ok(JsonView(false, "程序错误!"));
  5505. throw;
  5506. }
  5507. }
  5508. /// <summary>
  5509. /// op费用录入操作(Status:1.新增,2.修改)
  5510. /// </summary>
  5511. /// <param name="dto"></param>
  5512. /// <returns></returns>
  5513. [HttpPost]
  5514. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5515. public async Task<IActionResult> OpCarTouristGuideGround(OpCarTouristGuideGroundDto dto)
  5516. {
  5517. try
  5518. {
  5519. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGround(dto);
  5520. if (groupData.Code != 0)
  5521. {
  5522. return Ok(JsonView(false, groupData.Msg));
  5523. }
  5524. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5525. }
  5526. catch (Exception ex)
  5527. {
  5528. return Ok(JsonView(false, ex.Message));
  5529. }
  5530. }
  5531. /// <summary>
  5532. /// 填写费用详细页面初始化绑定
  5533. /// </summary>
  5534. /// <param name="dto"></param>
  5535. /// <returns></returns>
  5536. [HttpPost]
  5537. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5538. public IActionResult CarTouristGuideGroundContentInitialize(CarTouristGuideGroundContentDto dto)
  5539. {
  5540. try
  5541. {
  5542. Result groupData = _carTouristGuideGroundRep.CarTouristGuideGroundContent(dto);
  5543. if (groupData.Code != 0)
  5544. {
  5545. return Ok(JsonView(false, groupData.Msg));
  5546. }
  5547. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5548. }
  5549. catch (Exception ex)
  5550. {
  5551. return Ok(JsonView(false, ex.Message));
  5552. }
  5553. }
  5554. /// <summary>
  5555. /// 根据op费用Id查询详细数据
  5556. /// </summary>
  5557. /// <param name="dto"></param>
  5558. /// <returns></returns>
  5559. [HttpPost]
  5560. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5561. public IActionResult OpCarTouristGuideGroundContentById(CarTouristGuideGroundIdDto dto)
  5562. {
  5563. try
  5564. {
  5565. Result groupData = _carTouristGuideGroundRep.OpCarTouristGuideGroundContentById(dto);
  5566. if (groupData.Code != 0)
  5567. {
  5568. return Ok(JsonView(false, groupData.Msg));
  5569. }
  5570. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5571. }
  5572. catch (Exception ex)
  5573. {
  5574. return Ok(JsonView(false, ex.Message));
  5575. }
  5576. }
  5577. /// <summary>
  5578. /// OP费用录入填写详情
  5579. /// </summary>
  5580. /// <param name="dto"></param>
  5581. /// <returns></returns>
  5582. [HttpPost]
  5583. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5584. public async Task<IActionResult> OpCarTouristGuideGroundContent(OpCarTouristGuideGroundContentDto dto)
  5585. {
  5586. try
  5587. {
  5588. #region 参数校验
  5589. if (dto.Currency <= 0) return Ok(JsonView(false, "币种错误!"));
  5590. var di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.DiId && x.IsDel == 0);
  5591. if (di == null) return Ok(JsonView(false, "团组错误!"));
  5592. #endregion
  5593. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGroundContent(dto);
  5594. if (groupData.Code != 0)
  5595. {
  5596. return Ok(JsonView(false, groupData.Msg));
  5597. }
  5598. //自动审核
  5599. await _feeAuditRep.FeeAutomaticAudit(2, dto.DiId, dto.CTGGRId);
  5600. #region 应用推送
  5601. try
  5602. {
  5603. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  5604. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  5605. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  5606. }
  5607. catch (Exception ex)
  5608. {
  5609. }
  5610. #endregion
  5611. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5612. }
  5613. catch (Exception ex)
  5614. {
  5615. return Ok(JsonView(false, ex.Message));
  5616. }
  5617. }
  5618. /// <summary>
  5619. /// 获取三公详细所有城市
  5620. /// </summary>
  5621. /// <returns></returns>
  5622. [HttpGet]
  5623. public IActionResult OpCarCityResult()
  5624. {
  5625. var jw = JsonView(false);
  5626. var data = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(x => x.IsDel == 0).Select(x => new
  5627. {
  5628. x.Id,
  5629. x.Country,
  5630. x.City,
  5631. }).ToList();
  5632. if (data.Count > 0)
  5633. {
  5634. jw = JsonView(true, "获取成功!", data);
  5635. }
  5636. else
  5637. {
  5638. jw.Msg = "城市数据为空!";
  5639. jw.Data = new string[0];
  5640. }
  5641. return Ok(jw);
  5642. }
  5643. /// <summary>
  5644. /// 导出地接费用明细
  5645. /// </summary>
  5646. /// <param name="dto"></param>
  5647. /// <returns></returns>
  5648. [HttpPost]
  5649. public IActionResult ExportLocalGuidePriceDetail(ExportLocalGuidePriceDetailDto dto)
  5650. {
  5651. var jw = JsonView(false);
  5652. if (dto.Diid < 1)
  5653. {
  5654. jw.Msg = "请输入正确的diid!";
  5655. return Ok(jw);
  5656. }
  5657. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  5658. if (group == null)
  5659. {
  5660. jw.Msg = "未找到团组信息!";
  5661. return Ok(jw);
  5662. }
  5663. var localGuideArr = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).ToList();
  5664. if (localGuideArr.Count == 0)
  5665. {
  5666. jw.Msg = "该团组暂无地接信息!";
  5667. return Ok(jw);
  5668. }
  5669. var localGroup = localGuideArr.GroupBy(x => x.Area).ToList();
  5670. var overspendSoure = new Dictionary<int, int>
  5671. {
  5672. { 91, 982 }, //车
  5673. { 92 , 1059} ,//导游
  5674. { 994 , 1073}, //翻译
  5675. { 988 , 1074 }, //早餐
  5676. { 93 , 1075 }, //午餐
  5677. { 989 , 1076 }, //晚餐
  5678. };
  5679. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  5680. foreach (var groupArr in localGroup)
  5681. {
  5682. var keyValue = groupArr.Key;
  5683. if (int.TryParse(keyValue, out int cityid))
  5684. {
  5685. var city = _sqlSugar.Queryable<Grp_NationalTravelFee>().First(x => x.Id == cityid && x.IsDel == 0);
  5686. keyValue = city == null ? keyValue : city.Country + "-" + city.City;
  5687. }
  5688. List<List<Grp_CarTouristGuideGroundReservationsContentExtend>> contentArr = new List<List<Grp_CarTouristGuideGroundReservationsContentExtend>>();
  5689. foreach (var item in groupArr)
  5690. {
  5691. var content = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservationsContent, Sys_SetData>((a, b) => a.SId == b.Id
  5692. ).Where((a, b) => a.CTGGRId == item.Id && a.Price != 0M && a.IsDel == 0 && b.IsDel == 0).Select((a, b) =>
  5693. new Grp_CarTouristGuideGroundReservationsContentExtend
  5694. {
  5695. Count = a.Count,
  5696. CreateTime = a.CreateTime,
  5697. CreateUserId = a.CreateUserId,
  5698. CTGGRId = a.CTGGRId,
  5699. Currency = a.Currency,
  5700. DatePrice = a.DatePrice,
  5701. DeleteTime = a.DeleteTime,
  5702. DeleteUserId = a.DeleteUserId,
  5703. DiId = a.DiId,
  5704. Id = a.Id,
  5705. IsDel = a.IsDel,
  5706. Price = a.Price,
  5707. PriceContent = a.PriceContent,
  5708. Remark = a.Remark,
  5709. SId = a.SId,
  5710. SidName = b.Name,
  5711. Units = a.Units,
  5712. }
  5713. ).ToList();
  5714. if (content.Count > 0)
  5715. {
  5716. contentArr.Add(content);
  5717. }
  5718. }
  5719. //open excel
  5720. //set excel
  5721. //save excel
  5722. try
  5723. {
  5724. string filePath = AppSettingsHelper.Get("ExcelBasePath") + "\\Template\\地接费用明细.xlsx";
  5725. IWorkbook workbook;
  5726. if (Path.GetExtension(filePath).ToLower() == ".xls")
  5727. {
  5728. workbook = new HSSFWorkbook(new FileStream(filePath, FileMode.Open, FileAccess.Read));
  5729. }
  5730. else
  5731. {
  5732. workbook = new XSSFWorkbook(new FileStream(filePath, FileMode.Open, FileAccess.Read));
  5733. }
  5734. ISheet sheet = workbook.GetSheetAt(0);
  5735. var rowStartIndex = 2;
  5736. var clounmCount = 10;
  5737. var initStyleRow = sheet.GetRow(2);
  5738. var arr = contentArr.SelectMany(x => x).OrderBy(x => x.SId).ToList();
  5739. //var overspendArrDetail =
  5740. var existsId = new List<CarCompare>();
  5741. var lastElem = arr.Last();
  5742. var thisSid = -1;
  5743. var curr = arr.Count > 0 ? arr[0].Currency : -1;
  5744. var currObj = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == curr && x.IsDel == 0) ?? new Sys_SetData
  5745. {
  5746. Name = "未知币种!",
  5747. Remark = "未知币种!",
  5748. };
  5749. sheet.GetRow(0).GetCell(1).SetCellValue($"{keyValue}费用明细(货币:{currObj.Remark})");
  5750. Action cloneRowFn = () =>
  5751. {
  5752. rowStartIndex++;
  5753. var cloneRow = sheet.CreateRow(rowStartIndex);
  5754. // 复制样式
  5755. for (int i = initStyleRow.FirstCellNum; i < initStyleRow.LastCellNum; i++)
  5756. {
  5757. ICell sourceCell = initStyleRow.GetCell(i);
  5758. ICell targetCell = cloneRow.GetCell(i) ?? cloneRow.CreateCell(i);
  5759. // 确保单元格存在样式
  5760. if (sourceCell.CellStyle != null)
  5761. {
  5762. targetCell.CellStyle = sourceCell.CellStyle;
  5763. }
  5764. }
  5765. };
  5766. var mergeRow = () =>
  5767. {
  5768. for (int i = 2; i < sheet.LastRowNum; i++)
  5769. {
  5770. var row = sheet.GetRow(i);
  5771. var cellFirst = row.GetCell(0);
  5772. var thisIndex = i + 1;
  5773. while (thisIndex < sheet.LastRowNum)
  5774. {
  5775. var nextRow = sheet.GetRow(thisIndex);
  5776. var nextCellFirst = nextRow.GetCell(0);
  5777. if (cellFirst != null && nextCellFirst != null && cellFirst.ToString().Trim() == nextCellFirst.ToString().Trim())
  5778. {
  5779. thisIndex++;
  5780. }
  5781. else
  5782. {
  5783. break;
  5784. }
  5785. }
  5786. thisIndex--;
  5787. if (thisIndex != i)
  5788. {
  5789. //合并row
  5790. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5791. i, // 起始行索引(0-based)
  5792. thisIndex, // 结束行索引(0-based)
  5793. 0, // 起始列索引(0-based)
  5794. 0 // 结束列索引(0-based)
  5795. );
  5796. sheet.AddMergedRegion(cellRangeAddress);
  5797. i = thisIndex;
  5798. }
  5799. }
  5800. };
  5801. var chaoshiNumber = 0;
  5802. var totalNumber = 0.00M;
  5803. string lastStr = "";
  5804. var queryCarArrByCityAndDiid = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations, Grp_CreditCardPayment>((x, b) => x.Id == b.CId && b.IsDel == 0 && b.CTable == 79)
  5805. .Where(x => x.DiId == dto.Diid && x.Area == groupArr.Key).Select((x, b) => new
  5806. {
  5807. b.IsAuditGM,
  5808. x.Id,
  5809. x.Area,
  5810. b.PayPercentage,
  5811. b.PayMoney,
  5812. }).ToList();
  5813. string yesPayment = "", noPayment = "";
  5814. foreach (var item in queryCarArrByCityAndDiid)
  5815. {
  5816. if (item.IsAuditGM == 1)
  5817. {
  5818. yesPayment += $"已支付团款({(int)item.PayPercentage}%):{item.PayMoney} {currObj.Remark}(如有需要,请在此处填写明细)\r\n";
  5819. }
  5820. else
  5821. {
  5822. noPayment += $"剩余团款:{item.PayMoney}{currObj.Remark}(如有需要,请在此处填写明细)\r\n";
  5823. }
  5824. }
  5825. lastStr = yesPayment + noPayment;
  5826. foreach (var item in arr)
  5827. {
  5828. if (existsId.FirstOrDefault(x => x.Sid == item.SId && DateTime.Compare(x.DataPrice, item.DatePrice.ObjToDate()) == 0) == null && !overspendSoure.Values.Contains(item.SId))
  5829. {
  5830. if (thisSid != item.SId)
  5831. {
  5832. if (thisSid == -1)
  5833. {
  5834. thisSid = item.SId;
  5835. }
  5836. else
  5837. {
  5838. //合并小计行
  5839. //创建合并区域的实例
  5840. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5841. rowStartIndex, // 起始行索引(0-based)
  5842. rowStartIndex, // 结束行索引(0-based)
  5843. 0, // 起始列索引(0-based)
  5844. 3 // 结束列索引(0-based)
  5845. );
  5846. sheet.AddMergedRegion(cellRangeAddress);
  5847. var CellStyle = workbook.CreateCellStyle();
  5848. CellStyle.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5849. CellStyle.FillForegroundColor = IndexedColors.Yellow.Index; // 选择填充颜色
  5850. CellStyle.FillPattern = FillPattern.SolidForeground; // 填充方式
  5851. for (int i = 0; i <= clounmCount; i++)
  5852. {
  5853. if (i > 6)
  5854. {
  5855. var CellStyle1 = workbook.CreateCellStyle();
  5856. CellStyle1.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5857. IFont Font = workbook.CreateFont(); // 创建字体
  5858. Font.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(i).CellStyle.GetFont(workbook));
  5859. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  5860. CellStyle1.SetFont(Font);
  5861. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle1;
  5862. }
  5863. else
  5864. {
  5865. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle;
  5866. }
  5867. }
  5868. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue("合计:");
  5869. sheet.GetRow(rowStartIndex).GetCell(4).SetCellValue(arr.Where(x => x.SId == thisSid).Sum(x => x.Count * x.Price).ToString("F2"));
  5870. //超时合计
  5871. sheet.GetRow(rowStartIndex).GetCell(7).SetCellValue("超时合计:");
  5872. //超时数
  5873. sheet.GetRow(rowStartIndex).GetCell(8).SetCellValue(chaoshiNumber == 0 ? "" : chaoshiNumber.ToString());
  5874. //超时合计费用
  5875. sheet.GetRow(rowStartIndex).GetCell(9).SetCellValue(totalNumber == 0 ? "" : totalNumber.ToString());
  5876. thisSid = item.SId;
  5877. cloneRowFn();
  5878. chaoshiNumber = 0;
  5879. totalNumber = 0;
  5880. }
  5881. }
  5882. IRow row = sheet.GetRow(rowStartIndex);
  5883. var whereForResult = arr.Where(x => x.SId == item.SId && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5884. var isOpenOverspendSoure = overspendSoure.Keys.Contains(item.SId);
  5885. List<Grp_CarTouristGuideGroundReservationsContentExtend> overspendWhereForResult = null;
  5886. if (isOpenOverspendSoure)
  5887. {
  5888. overspendWhereForResult = arr.Where(x => x.SId == overspendSoure[item.SId] && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5889. chaoshiNumber += overspendWhereForResult.Sum(x => x.Count);
  5890. totalNumber += overspendWhereForResult.Sum(x => x.Count * x.Price);
  5891. }
  5892. for (int i = 0; i <= clounmCount; i++)
  5893. {
  5894. var cell = row.GetCell(i);
  5895. var setCellValue = InIndexOutFunction(i, whereForResult, overspendWhereForResult);
  5896. if (cell == null)
  5897. {
  5898. cell = row.CreateCell(i);
  5899. }
  5900. var fontRed = workbook.CreateCellStyle(); // 创建单元格样式
  5901. fontRed.CloneStyleFrom(cell.CellStyle);
  5902. IFont Font = workbook.CreateFont(); // 创建字体
  5903. Font.CloneStyleFrom(cell.CellStyle.GetFont(workbook));
  5904. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  5905. fontRed.SetFont(Font);
  5906. byte[] rgb = new byte[3] { 255, 242, 204 };
  5907. var BackgroundColor255_242_204 = workbook.CreateCellStyle();
  5908. BackgroundColor255_242_204.CloneStyleFrom(cell.CellStyle);
  5909. byte[] rgb1 = new byte[3] { 189, 215, 238 };
  5910. if (workbook is XSSFWorkbook)
  5911. {
  5912. BackgroundColor255_242_204.FillForegroundColor = 0;
  5913. ((XSSFColor)BackgroundColor255_242_204.FillForegroundColorColor).SetRgb(rgb);
  5914. BackgroundColor255_242_204.FillPattern = FillPattern.SolidForeground;
  5915. }
  5916. else
  5917. {
  5918. BackgroundColor255_242_204.FillForegroundColor = (((HSSFWorkbook)workbook).GetCustomPalette().FindSimilarColor(rgb[0], rgb[1], rgb[2])).Indexed;
  5919. }
  5920. if (i == 1 || i > 6)
  5921. {
  5922. if (i > 6)
  5923. {
  5924. fontRed.FillForegroundColor = 0;
  5925. ((XSSFColor)fontRed.FillForegroundColorColor).SetRgb(rgb1);
  5926. fontRed.FillPattern = FillPattern.SolidForeground;
  5927. }
  5928. cell.CellStyle = fontRed;
  5929. }
  5930. if (i > 2 && i < 7)
  5931. {
  5932. cell.CellStyle = BackgroundColor255_242_204;
  5933. }
  5934. cell.SetCellValue(setCellValue); //写入单元格
  5935. }
  5936. if (overspendSoure.ContainsKey(thisSid))
  5937. {
  5938. var overspendId = overspendSoure[thisSid];
  5939. whereForResult = arr.Where(x => x.SId == item.SId && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5940. }
  5941. cloneRowFn();
  5942. existsId.Add(new CarCompare
  5943. {
  5944. DataPrice = item.DatePrice.ObjToDate(),
  5945. Sid = item.SId
  5946. });
  5947. }
  5948. if (item.Equals(lastElem))
  5949. {
  5950. //合并小计行
  5951. //创建合并区域的实例
  5952. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5953. rowStartIndex, // 起始行索引(0-based)
  5954. rowStartIndex, // 结束行索引(0-based)
  5955. 0, // 起始列索引(0-based)
  5956. 3 // 结束列索引(0-based)
  5957. );
  5958. sheet.AddMergedRegion(cellRangeAddress);
  5959. var CellStyle = workbook.CreateCellStyle();
  5960. CellStyle.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5961. CellStyle.FillForegroundColor = IndexedColors.Yellow.Index; // 选择填充颜色
  5962. CellStyle.FillPattern = FillPattern.SolidForeground; // 填充方式
  5963. for (int i = 0; i <= clounmCount; i++)
  5964. {
  5965. if (i > 6)
  5966. {
  5967. var CellStyle1 = workbook.CreateCellStyle();
  5968. CellStyle1.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5969. IFont Font = workbook.CreateFont(); // 创建字体
  5970. Font.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(i).CellStyle.GetFont(workbook));
  5971. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  5972. CellStyle1.SetFont(Font);
  5973. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle1;
  5974. }
  5975. else
  5976. {
  5977. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle;
  5978. }
  5979. }
  5980. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue("合计:");
  5981. sheet.GetRow(rowStartIndex).GetCell(4).SetCellValue(arr.Where(x => x.SId == thisSid).Sum(x => x.Count * x.Price).ToString("F2"));
  5982. //超时合计
  5983. sheet.GetRow(rowStartIndex).GetCell(7).SetCellValue("超时合计:");
  5984. //超时数
  5985. sheet.GetRow(rowStartIndex).GetCell(8).SetCellValue(chaoshiNumber == 0 ? "" : chaoshiNumber.ToString());
  5986. //超时合计费用
  5987. sheet.GetRow(rowStartIndex).GetCell(9).SetCellValue(totalNumber == 0 ? "" : totalNumber.ToString());
  5988. cloneRowFn();
  5989. // 创建合并区域的实例
  5990. cellRangeAddress = new CellRangeAddress(
  5991. rowStartIndex, // 起始行索引(0-based)
  5992. rowStartIndex, // 结束行索引(0-based)
  5993. 0, // 起始列索引(0-based)
  5994. initStyleRow.LastCellNum - 1 // 结束列索引(0-based)
  5995. );
  5996. // 添加合并区域
  5997. sheet.AddMergedRegion(cellRangeAddress);
  5998. sheet.GetRow(rowStartIndex).Height = 30 * 30;
  5999. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue(lastStr);
  6000. }
  6001. }
  6002. mergeRow();
  6003. // 保存修改后的Excel文件到新文件
  6004. //string newFilePath = Path.Combine(Path.GetDirectoryName(filePath), keyValue +"_" + Path.GetFileName(filePath));
  6005. // new FileStream(newFilePath, FileMode.CreateNew)
  6006. using (var stream = new MemoryStream())
  6007. {
  6008. workbook.Write(stream, true);
  6009. stream.Flush();
  6010. stream.Seek(0, SeekOrigin.Begin);
  6011. MemoryStream memoryStream = new MemoryStream();
  6012. stream.CopyTo(memoryStream);
  6013. memoryStream.Seek(0, SeekOrigin.Begin);
  6014. Zips.Add(keyValue + "_" + "费用明细表.xlsx", memoryStream);
  6015. }
  6016. workbook.Close();
  6017. workbook.Dispose();
  6018. }
  6019. catch (Exception ex)
  6020. {
  6021. jw.Msg = "出现异常!" + ex.Message;
  6022. return Ok(jw);
  6023. }
  6024. }
  6025. if (Zips.Count > 0)
  6026. {
  6027. IOOperatorHelper io = new IOOperatorHelper();
  6028. var byts = io.ConvertZipStream(Zips);
  6029. io.ByteToFile(byts, AppSettingsHelper.Get("ExcelBasePath") + $"\\ExportLocalGuidePriceDetail\\{group.TeamName}_地接费用明细.zip");
  6030. //http://132.232.92.186:24/Office/Word/EnterExitCost/File/
  6031. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("OfficeBaseUrl") + $"\\Office\\Excel\\ExportLocalGuidePriceDetail\\{group.TeamName}_地接费用明细.zip" });
  6032. }
  6033. else
  6034. {
  6035. jw.Msg = "暂无生成文件!";
  6036. }
  6037. return Ok(jw);
  6038. }
  6039. private string InIndexOutFunction(int i, List<Grp_CarTouristGuideGroundReservationsContentExtend> arr, List<Grp_CarTouristGuideGroundReservationsContentExtend> arrOverspendSoure)
  6040. {
  6041. string outStr = string.Empty;
  6042. switch (i)
  6043. {
  6044. case 0:
  6045. outStr = arr[0].SidName;
  6046. break;
  6047. case 1:
  6048. outStr = arr[0].DataPriceStr;
  6049. break;
  6050. case 2:
  6051. outStr = string.Join("-", arr.Select(x => x.PriceContent));
  6052. break;
  6053. case 4:
  6054. outStr = arr.Sum(x => x.Subtotal).ToString("F2");
  6055. break;
  6056. case 7:
  6057. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6058. {
  6059. var curr = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == arrOverspendSoure[0].Currency && x.IsDel == 0);
  6060. var unit = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == arrOverspendSoure[0].Units && x.IsDel == 0);
  6061. outStr = arrOverspendSoure.Sum(x => x.Price).ToString("F2") + curr?.Remark + "/" + unit?.Name;
  6062. }
  6063. break;
  6064. case 8:
  6065. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6066. {
  6067. outStr = arrOverspendSoure.Sum(x => x.Count).ToString();
  6068. }
  6069. break;
  6070. case 9:
  6071. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6072. {
  6073. outStr = arrOverspendSoure.Sum(x => x.Count * x.Price).ToString();
  6074. }
  6075. break;
  6076. case 10:
  6077. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6078. {
  6079. outStr = string.Join("-", arrOverspendSoure.Select(x => x.PriceContent));
  6080. }
  6081. break;
  6082. }
  6083. return outStr;
  6084. }
  6085. #region OP行程单
  6086. /// <summary>
  6087. /// OP行程单初始化
  6088. /// </summary>
  6089. /// <param name="dto"></param>
  6090. /// <returns></returns>
  6091. [HttpPost]
  6092. public IActionResult InitOpTravel(InitOpTravelDto dto)
  6093. {
  6094. var jw = JsonView(false);
  6095. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  6096. var group = groupList.First();
  6097. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  6098. if (group == null)
  6099. {
  6100. jw.Msg = "暂无团组!";
  6101. return Ok(jw);
  6102. }
  6103. group = groupList.Find(x => x.Id == diid);
  6104. if (group == null)
  6105. {
  6106. jw.Msg = "请输入正确的团组ID!";
  6107. return Ok(jw);
  6108. }
  6109. string city = string.Empty;
  6110. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(x => x.IsDel == 0 && x.DiId == diid).ToList();
  6111. if (blackCode.Count > 0)
  6112. {
  6113. var black = blackCode.First();
  6114. black.BlackCode = black.BlackCode == null ? "" : black.BlackCode;
  6115. var blackSp = Regex.Split(black.BlackCode, "\\d+\\.", RegexOptions.IgnoreCase).Where(x => !string.IsNullOrWhiteSpace(x)).ToArray();
  6116. if (blackSp.Length > 0)
  6117. {
  6118. try
  6119. {
  6120. var cityArrCode = new List<string>(20);
  6121. foreach (var item in blackSp)
  6122. {
  6123. var itemSp = item.Split(' ').Where(x => !string.IsNullOrWhiteSpace(x)).ToList();
  6124. var IndexSelect = itemSp[2];
  6125. var cityArrCodeLength = cityArrCode.Count - 1;
  6126. var startCity = IndexSelect.Substring(0, 3);
  6127. if (cityArrCodeLength > 0)
  6128. {
  6129. var arrEndCity = cityArrCode[cityArrCodeLength];
  6130. if (arrEndCity != startCity)
  6131. {
  6132. cityArrCode.Add(startCity.ToUpper());
  6133. }
  6134. }
  6135. else
  6136. {
  6137. cityArrCode.Add(startCity.ToUpper());
  6138. }
  6139. var endCity = IndexSelect.Substring(3, 3);
  6140. cityArrCode.Add(endCity.ToUpper());
  6141. }
  6142. var cityThree = string.Empty;
  6143. cityArrCode.ForEach(x => cityThree += "'" + x + "',");
  6144. cityThree = cityThree.TrimEnd(',');
  6145. if (string.IsNullOrWhiteSpace(cityThree))
  6146. {
  6147. throw new
  6148. Exception("error");
  6149. }
  6150. string sql = $"SELECT * FROM Res_ThreeCode rtc WHERE UPPER(rtc.Three) in ({cityThree}) ";
  6151. var cityArr = _sqlSugar.SqlQueryable<Res_ThreeCode>(sql).ToList();
  6152. foreach (var item in cityArrCode)
  6153. {
  6154. var find = cityArr.Find(x => x.Three.ToUpper() == item.ToUpper());
  6155. if (find != null)
  6156. {
  6157. city += find.City + "/";
  6158. }
  6159. else
  6160. {
  6161. city += item + "三字码未收入/";
  6162. }
  6163. }
  6164. city = city.TrimEnd('/');
  6165. }
  6166. catch (Exception e)
  6167. {
  6168. city = "黑屏代码格式不正确!";
  6169. }
  6170. }
  6171. }
  6172. else
  6173. {
  6174. city = "未录入黑屏代码";
  6175. }
  6176. var OpTravelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0).OrderBy(x => x.Days).Select(x => new TravelArrView
  6177. {
  6178. Date = x.Date,
  6179. Days = x.Days,
  6180. Diffgroup = x.Diffgroup,
  6181. Diid = x.Diid,
  6182. Traffic_First = x.Traffic_First,
  6183. Traffic_Second = x.Traffic_Second,
  6184. Trip = x.Trip,
  6185. WeekDay = x.WeekDay,
  6186. Id = x.Id
  6187. }).ToList();
  6188. jw.Data = new
  6189. {
  6190. groupList = groupList.Select(x => new
  6191. {
  6192. x.Id,
  6193. x.TeamName,
  6194. x.TourCode
  6195. }).ToList(),
  6196. groupInfo = new
  6197. {
  6198. group.VisitDays,
  6199. group.TourCode,
  6200. group.VisitPNumber,
  6201. group.TeamName,
  6202. city
  6203. },
  6204. OpTravelList
  6205. };
  6206. jw.Code = 200;
  6207. jw.Msg = "操作成功!";
  6208. return Ok(jw);
  6209. }
  6210. /// <summary>
  6211. /// 删除团组行程单
  6212. /// </summary>
  6213. /// <returns></returns>
  6214. [HttpPost]
  6215. public IActionResult DelTravel(DelOpTravelDto dto)
  6216. {
  6217. var jw = JsonView(false);
  6218. if (dto.UserId <= 0 || dto.Diid <= 0)
  6219. {
  6220. jw.Msg = "请输入正确的参数!";
  6221. return Ok(jw);
  6222. }
  6223. var isTrue = _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Diid == dto.Diid && x.IsDel == 0)
  6224. .SetColumns(x => new Grp_TravelList
  6225. {
  6226. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  6227. DeleteUserId = dto.UserId,
  6228. IsDel = 1,
  6229. }).ExecuteCommand();
  6230. jw = JsonView(true);
  6231. return Ok(jw);
  6232. }
  6233. /// <summary>
  6234. /// 行程单保存
  6235. /// </summary>
  6236. /// <returns></returns>
  6237. [HttpPost]
  6238. public IActionResult TravelSave(TravelSaveDto dto)
  6239. {
  6240. var jw = JsonView(false);
  6241. if (dto.Arr.Count > 0)
  6242. {
  6243. try
  6244. {
  6245. _sqlSugar.BeginTran();
  6246. foreach (var item in dto.Arr)
  6247. {
  6248. if (item.Id == 0)
  6249. {
  6250. throw new Exception("请传入正确的Id");
  6251. }
  6252. _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Id == item.Id)
  6253. .SetColumns(x => new Grp_TravelList
  6254. {
  6255. Trip = item.Trip
  6256. }).ExecuteCommand();
  6257. }
  6258. _sqlSugar.CommitTran();
  6259. jw = JsonView(true);
  6260. }
  6261. catch (Exception ex)
  6262. {
  6263. _sqlSugar.RollbackTran();
  6264. jw.Msg = "程序异常!" + ex.Message;
  6265. }
  6266. }
  6267. else
  6268. {
  6269. jw.Msg = "请传入正确的参数!";
  6270. }
  6271. return Ok(jw);
  6272. }
  6273. /// <summary>
  6274. /// 导出行程单
  6275. /// </summary>
  6276. /// <param name="dto"></param>
  6277. /// <returns></returns>
  6278. [HttpPost]
  6279. public IActionResult ExportTravel(ExportTravelDto dto)
  6280. {
  6281. var jw = JsonView(false);
  6282. jw.Data = "";
  6283. int diid = 0;
  6284. var Find = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid);
  6285. if (Find == null)
  6286. {
  6287. jw.Msg = "请选择正确的团组!";
  6288. return Ok(jw);
  6289. }
  6290. else
  6291. {
  6292. diid = Find.Id;
  6293. }
  6294. //数据源
  6295. List<Grp_TravelList> _travelList = new List<Grp_TravelList>();
  6296. DataTable dtBlack = null;
  6297. try
  6298. {
  6299. dtBlack = GeneralMethod.GetTableByBlackCode(diid);
  6300. }
  6301. catch (Exception)
  6302. {
  6303. jw.Msg = "机票黑屏代码有误!";
  6304. return Ok(jw);
  6305. }
  6306. string CityStr = string.Empty;
  6307. if (dtBlack.Rows.Count == 0)
  6308. {
  6309. jw.Msg = "机票黑屏代码有误!";
  6310. return Ok(jw);
  6311. }
  6312. else
  6313. {
  6314. foreach (DataRow row in dtBlack.Rows)
  6315. {
  6316. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  6317. {
  6318. jw.Msg = "机票黑屏代码有误!" + row["Error"].ToString();
  6319. return Ok(jw);
  6320. }
  6321. }
  6322. CityStr = GeneralMethod.GetGroupCityLine(diid, "/");
  6323. _travelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0 && x.Issel == 1).ToList();
  6324. }
  6325. //创建数据源Table
  6326. DataTable dtSource = new DataTable();
  6327. dtSource.Columns.Add("Days", typeof(string));
  6328. dtSource.Columns.Add("Date", typeof(string));
  6329. dtSource.Columns.Add("Week", typeof(string));
  6330. dtSource.Columns.Add("Traffic", typeof(string));
  6331. dtSource.Columns.Add("Trip", typeof(string));
  6332. //获取数据,放到datatable
  6333. foreach (var item in _travelList)
  6334. {
  6335. DataRow dr = dtSource.NewRow();
  6336. dr["Days"] = item.Days;
  6337. dr["Date"] = item.Date;
  6338. dr["Week"] = item.WeekDay;
  6339. dr["Traffic"] = item.Traffic_First
  6340. + "\r\n"
  6341. + item.Traffic_Second;
  6342. dr["Trip"] = item.Trip;
  6343. dtSource.Rows.Add(dr);
  6344. }
  6345. Dictionary<string, string> dic = new Dictionary<string, string>();
  6346. dic.Add("Dele", Find.TeamName.ToString() + GetNum(Find.VisitDays.ToString()));
  6347. dic.Add("City", CityStr);
  6348. dic.Add("Days", Find.VisitDays.ToString());
  6349. dic.Add("DeleCode", Find.TourCode);
  6350. dic.Add("Pnum", Find.VisitPNumber.ToString());
  6351. //模板路径
  6352. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Travel/日行程3.docx";
  6353. //载入模板
  6354. Document doc = null;
  6355. DocumentBuilder builder = null;
  6356. try
  6357. {
  6358. //载入模板
  6359. doc = new Document(tempPath);
  6360. builder = new DocumentBuilder(doc);
  6361. }
  6362. catch (Exception)
  6363. {
  6364. jw.Msg = "模板位置不存在!";
  6365. return Ok(jw);
  6366. }
  6367. foreach (var key in dic.Keys)
  6368. {
  6369. Bookmark bookmark = doc.Range.Bookmarks[key];
  6370. if (bookmark != null)
  6371. {
  6372. builder.MoveToBookmark(key);
  6373. builder.Write(dic[key]);
  6374. }
  6375. }
  6376. //获取word里所有表格
  6377. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  6378. //获取所填表格的序数
  6379. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  6380. try
  6381. {
  6382. //循环赋值
  6383. for (int i = 0; i < dtSource.Rows.Count; i++)
  6384. {
  6385. builder.MoveToCell(0, i + 1, 0, 0);
  6386. builder.Write(dtSource.Rows[i]["Days"].ToString());
  6387. builder.MoveToCell(0, i + 1, 1, 0);
  6388. builder.Write(dtSource.Rows[i]["Date"].ToString() + "\r\n" + dtSource.Rows[i]["Week"].ToString());
  6389. builder.MoveToCell(0, i + 1, 2, 0);
  6390. builder.Write(dtSource.Rows[i]["Traffic"].ToString());
  6391. var trip = dtSource.Rows[i]["Trip"].ToString();
  6392. builder.MoveToCell(0, i + 1, 3, 0);
  6393. builder.Write(trip);
  6394. var cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 1, true);
  6395. var paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  6396. // 获取特定索引的段落
  6397. Paragraph paragraph = (Paragraph)paragraphs[0];
  6398. Run run = paragraph.Runs[0];
  6399. Aspose.Words.Font font = run.Font;
  6400. font.Name = "黑体";
  6401. //设置双休红色
  6402. cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 3, true);
  6403. paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  6404. paragraph = (Paragraph)paragraphs[1];
  6405. if (paragraph.GetText().Contains("星期六") || paragraph.GetText().Contains("星期日"))
  6406. {
  6407. run = paragraph.Runs[0];
  6408. font = run.Font;
  6409. font.Color = Color.Red;
  6410. }
  6411. }
  6412. }
  6413. catch (Exception ex)
  6414. {
  6415. }
  6416. //删除多余行
  6417. while (tableOne.Rows.Count > 1 + dtSource.Rows.Count)
  6418. {
  6419. tableOne.Rows.RemoveAt(1 + dtSource.Rows.Count);//(1+dtSource.Rows.Count + 1)-1
  6420. }
  6421. string savePath = AppSettingsHelper.Get("WordBasePath") + "Travel/export/";
  6422. if (!Directory.Exists(savePath))
  6423. {
  6424. try
  6425. {
  6426. Directory.CreateDirectory(savePath);
  6427. }
  6428. catch
  6429. {
  6430. }
  6431. }
  6432. string path = savePath + Find.TeamName + "出访日程";
  6433. string ftpPath = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + "Travel/export/" + Find.TeamName + "出访日程";
  6434. try
  6435. {
  6436. Aspose.Words.SaveFormat saveFormat = Aspose.Words.SaveFormat.Doc;
  6437. string postfix = ".docx";
  6438. if (dto.IsPDF == 1)
  6439. {
  6440. saveFormat = Aspose.Words.SaveFormat.Pdf;
  6441. postfix = ".pdf";
  6442. }
  6443. doc.Save(path + postfix, saveFormat);
  6444. jw = JsonView(true, "导出成功", ftpPath + postfix);
  6445. }
  6446. catch (Exception)
  6447. {
  6448. jw = JsonView(false);
  6449. }
  6450. return Ok(jw);
  6451. }
  6452. /// <summary>
  6453. /// 根据大写数字返回小写数字或根据小写数字返回大写数字
  6454. /// </summary>
  6455. /// <param name="num"></param>
  6456. /// <returns></returns>
  6457. string GetNum(string num)
  6458. {
  6459. string str = "";
  6460. switch (num)
  6461. {
  6462. case "1":
  6463. str = "一";
  6464. break;
  6465. case "2":
  6466. str = "二";
  6467. break;
  6468. case "3":
  6469. str = "三";
  6470. break;
  6471. case "4":
  6472. str = "四";
  6473. break;
  6474. case "5":
  6475. str = "五";
  6476. break;
  6477. case "6":
  6478. str = "六";
  6479. break;
  6480. case "7":
  6481. str = "七";
  6482. break;
  6483. case "8":
  6484. str = "八";
  6485. break;
  6486. case "9":
  6487. str = "九";
  6488. break;
  6489. case "10":
  6490. str = "十";
  6491. break;
  6492. case "11":
  6493. str = "十一";
  6494. break;
  6495. case "12":
  6496. str = "十二";
  6497. break;
  6498. case "一":
  6499. str = "1";
  6500. break;
  6501. case "二":
  6502. str = "2";
  6503. break;
  6504. case "三":
  6505. str = "3";
  6506. break;
  6507. case "四":
  6508. str = "4";
  6509. break;
  6510. case "五":
  6511. str = "5";
  6512. break;
  6513. case "六":
  6514. str = "6";
  6515. break;
  6516. case "七":
  6517. str = "7";
  6518. break;
  6519. case "八":
  6520. str = "8";
  6521. break;
  6522. case "九":
  6523. str = "9";
  6524. break;
  6525. case "十":
  6526. str = "10";
  6527. break;
  6528. case "十一":
  6529. str = "11";
  6530. break;
  6531. case "十二":
  6532. str = "12";
  6533. break;
  6534. }
  6535. return str;
  6536. }
  6537. #endregion
  6538. #endregion
  6539. #region 团组成本
  6540. /// <summary>
  6541. /// 团组成本数据初始化
  6542. /// </summary>
  6543. /// <param name="dto"></param>
  6544. /// <returns></returns>
  6545. [HttpPost]
  6546. public async Task<IActionResult> GroupCostInit(GroupCostInItDto dto)
  6547. {
  6548. var groupList = _sqlSugar.SqlQueryable<DelegationInfoAndIsTrueView>($@"
  6549. Select a.Id,TeamName GroupName,b.isTrue From Grp_DelegationInfo a left join (select top 100 percent Diid, CASE
  6550. WHEN COUNT(*) >= 0 THEN 'True'
  6551. ELSE 'False' END as isTrue from Grp_GroupCost where Isdel = 0 and date != '' group by Diid) b on a.Id = b.Diid
  6552. Where TeamName != '' And IsDel = 0 Order By a.Id Desc
  6553. ").ToList(); //团组列表
  6554. int diid = dto.Diid == -1 ? groupList.First().Id : dto.Diid;
  6555. var groupInfo = await _groupRepository.PostShareGroupInfo(new ShareGroupInfoDto { PortType = 1, Id = diid }); //团组信息
  6556. List<Res_CountryFeeCost> visaCountryInfoArr = new List<Res_CountryFeeCost>();
  6557. var groupinfoValue = (groupInfo.Data as Web_ShareGroupInfoView);
  6558. if (groupinfoValue != null)
  6559. {
  6560. var countryArr = groupinfoValue.VisitCountry ??= string.Empty;
  6561. var spArr = new string[1] { countryArr };
  6562. if (countryArr.Contains("|"))
  6563. {
  6564. spArr = countryArr.Split("|");
  6565. }
  6566. else if (countryArr.Contains("、"))
  6567. {
  6568. spArr = countryArr.Split("、");
  6569. }
  6570. foreach (var item in spArr.Where(x => !string.IsNullOrWhiteSpace(x)).ToList())
  6571. {
  6572. var dbQueryCountry = _sqlSugar.Queryable<Res_CountryFeeCost>().First(x => x.VisaCountry.Contains(item));
  6573. if (dbQueryCountry != null)
  6574. {
  6575. visaCountryInfoArr.Add(dbQueryCountry);
  6576. }
  6577. }
  6578. }
  6579. var groupChecks = _checkBoxs.GetCheckBoxsByDiid(diid); //团组选中信息 可枚举
  6580. var groupCost = _GroupCostRepository.GetAllByDiid(diid); //团组列表信息
  6581. var create = _GroupCostRepository.
  6582. CreateGroupCostByBlackCode(dto.Diid);
  6583. if (groupCost.Count == 0 && create.Code == 0)
  6584. {
  6585. groupCost = (create.Data as List<Grp_GroupCost>) ?? new List<Grp_GroupCost>();
  6586. }
  6587. var groupCostMap = _mapper.Map<List<Grp_GroupCostDto>>(groupCost);
  6588. var hotelNumber = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(diid); //酒店数量 可枚举
  6589. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(diid); //成本系数 可枚举
  6590. groupCostMap = groupCostMap.Select(x =>
  6591. {
  6592. if (DateTime.TryParse(x.Date, out DateTime dataForamt))
  6593. {
  6594. x.Date = dataForamt.ToString("yyyy-MM-dd");
  6595. }
  6596. return x;
  6597. }).ToList();
  6598. //GroupCostParameter.Add(new
  6599. // Grp_GroupCostParameter());
  6600. var GroupCostParameterMap = _mapper.Map<List<Grp_GroupCostParameterDto>>(GroupCostParameter);
  6601. bool hotelIsTrue = _sqlSugar.Queryable<Grp_HotelInquiry>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).Count() > 0;
  6602. return Ok(JsonView(new
  6603. {
  6604. groupList,
  6605. groupInfo,
  6606. groupChecks,
  6607. groupCost = groupCostMap,
  6608. hotelNumber,
  6609. GroupCostParameter = GroupCostParameterMap,
  6610. visaCountryInfoArr = visaCountryInfoArr.Select(x => new
  6611. {
  6612. x.VisaCountry,
  6613. x.VisaPrice,
  6614. x.Id,
  6615. }).ToList(),
  6616. baoPi = _GroupCostParameterRepository.GetBaoPi(diid),
  6617. blackCodeIsTrue = create.Code == 0 ? true : false,
  6618. hotelIsTrue = hotelIsTrue,
  6619. }));
  6620. }
  6621. /// <summary>
  6622. /// 团组成本信息保存
  6623. /// </summary>
  6624. /// <param name="dto"></param>
  6625. /// <returns></returns>
  6626. [HttpPost]
  6627. public async Task<IActionResult> SaveGroupCost(GroupCostSavaDto dto)
  6628. {
  6629. if (dto.Diid <= 0 || dto.Userid <= 0)
  6630. {
  6631. return Ok(JsonView(false));
  6632. }
  6633. JsonView jw = null;
  6634. bool isTrue = false;
  6635. #region 复制团组成本
  6636. //if (dto.Diid == 2581)
  6637. //{
  6638. // dto.Diid = 2599;
  6639. // dto.CheckBoxs.ForEach(x =>
  6640. // {
  6641. // x.Diid = 2599;
  6642. // });
  6643. // dto.GroupCosts.ForEach(x =>
  6644. // {
  6645. // x.Diid = 2599;
  6646. // });
  6647. // dto.CostTypeHotelNumbers.ForEach(x =>
  6648. // {
  6649. // x.Diid = 2599;
  6650. // });
  6651. // dto.GroupCostParameters.ForEach(x =>
  6652. // {
  6653. // x.DiId = 2599;
  6654. // });
  6655. //}
  6656. #endregion
  6657. var Grp_groups = _mapper.Map<List<Grp_GroupCost>>(dto.GroupCosts);
  6658. Grp_groups.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; }); //.ToString("yyyy-MM-dd HH:mm:ss")
  6659. var Grp_CheckBoxs = _mapper.Map<List<Grp_CheckBoxs>>(dto.CheckBoxs);
  6660. Grp_CheckBoxs.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; });
  6661. var Grp_HotelNumber = _mapper.Map<List<Grp_CostTypeHotelNumber>>(dto.CostTypeHotelNumbers);
  6662. var Grp_CostParameters = _mapper.Map<List<Grp_GroupCostParameter>>(dto.GroupCostParameters);
  6663. try
  6664. {
  6665. _sqlSugar.BeginTran();
  6666. isTrue = await _GroupCostRepository.
  6667. SaveGroupCostList(Grp_groups, dto.Diid, dto.Userid); //列表
  6668. isTrue = await _checkBoxs.SaveCheckBoxs(Grp_CheckBoxs, dto.Diid); //选中项
  6669. isTrue = await _CostTypeHotelNumberRepository.SaveHotelNumber(Grp_HotelNumber, dto.Userid, dto.Diid); //酒店房间数量
  6670. isTrue = await _GroupCostParameterRepository.SaveAsync(Grp_CostParameters, dto.Userid, dto.Diid); //系数
  6671. _sqlSugar.CommitTran();
  6672. jw = JsonView(true, "保存成功!", isTrue);
  6673. }
  6674. catch (Exception)
  6675. {
  6676. _sqlSugar.RollbackTran();
  6677. jw = JsonView(false);
  6678. }
  6679. return Ok(jw);
  6680. }
  6681. /// <summary>
  6682. /// 司兼导数据
  6683. /// </summary>
  6684. /// <param name="dto"></param>
  6685. /// <returns></returns>
  6686. [HttpPost]
  6687. public IActionResult GetCarGuides(CarGuidesDto dto)
  6688. {
  6689. JsonView jw = null;
  6690. var Data = _sqlSugar.SqlQueryable<Grp_CarGuides>($@" select * from Grp_CarGuides where isdel = 0 ").ToList();
  6691. jw = JsonView(true, "获取成功!", Data);
  6692. return Ok(jw);
  6693. }
  6694. /// <summary>
  6695. /// 导游数据
  6696. /// </summary>
  6697. /// <param name="dto"></param>
  6698. /// <returns></returns>
  6699. [HttpPost]
  6700. public IActionResult GetGuidesInfo(CarGuidesDto dto)
  6701. {
  6702. JsonView jw = null;
  6703. //var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" SELECT* FROM (
  6704. // 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
  6705. // where RowNumber BETWEEN {(dto.Page - 1) * dto.Size + 1} and {(dto.Page) * dto.Size}").ToList();
  6706. var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" select * from Grp_GuidesInfo where isdel = 0 ").ToList();
  6707. jw = JsonView(true, "获取成功!", Data);
  6708. return Ok(jw);
  6709. }
  6710. /// <summary>
  6711. /// 成本车数据
  6712. /// </summary>
  6713. /// <param name="dto"></param>
  6714. /// <returns></returns>
  6715. [HttpPost]
  6716. public IActionResult GetCarInfo(CarGuidesDto dto)
  6717. {
  6718. JsonView jw = null;
  6719. var Data = _sqlSugar.SqlQueryable<Grp_CarInfo>($@" select * from Grp_CarInfo where isdel = 0 ").ToList();
  6720. jw = JsonView(true, "获取成功!", Data);
  6721. return Ok(jw);
  6722. }
  6723. /// <summary>
  6724. /// 景点数据
  6725. /// </summary>
  6726. /// <param name="dto"></param>
  6727. /// <returns></returns>
  6728. [HttpPost]
  6729. public IActionResult GetScenicSpotInfo(CarGuidesDto dto)
  6730. {
  6731. var Data = _sqlSugar.SqlQueryable<Grp_ScenicSpotInfo>($@" select * from Grp_ScenicSpotInfo where isdel = 0 ").ToList();
  6732. return Ok(JsonView(true, "获取成功!", Data));
  6733. }
  6734. /// <summary>
  6735. /// 成本通知
  6736. /// </summary>
  6737. /// <param name="dto"></param>
  6738. /// <returns></returns>
  6739. [HttpPost]
  6740. public async Task<IActionResult> GroupIsShare(GroupIsShareDto dto)
  6741. {
  6742. if (dto.Diid < 0)
  6743. {
  6744. return Ok(JsonView(false));
  6745. }
  6746. JsonView jw = null;
  6747. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterMainByDiid(dto.Diid);
  6748. if (GroupCostParameter != null)
  6749. {
  6750. int IsShare = 0;
  6751. if (GroupCostParameter.IsShare == 0) IsShare = 1;
  6752. else if (GroupCostParameter.IsShare == 1) IsShare = 0;
  6753. bool isTrue = await _GroupCostParameterRepository.UpdateIsShareById(GroupCostParameter.Id, IsShare);
  6754. string msg = string.Empty;
  6755. if (isTrue)
  6756. {
  6757. if (IsShare == 0)
  6758. {
  6759. msg = "禁止通知,其他模块操作人员不可见此成本信息!";
  6760. }
  6761. else
  6762. {
  6763. #region 企微通知对应岗位用户
  6764. try
  6765. {
  6766. AppNoticeLibrary.SendUserMsg_GroupShare_ToJob(dto.Diid);
  6767. }
  6768. catch (Exception ex)
  6769. {
  6770. }
  6771. #endregion
  6772. msg = "通知成功,其他模块操作人员可见此成本信息!";
  6773. }
  6774. jw = JsonView(isTrue, msg, new { IsShare });
  6775. }
  6776. else
  6777. {
  6778. msg = "修改失败!";
  6779. jw = JsonView(isTrue, msg);
  6780. }
  6781. }
  6782. else
  6783. {
  6784. jw = JsonView(false, "该团没有数据,请添加数据,保存后再操作!");
  6785. }
  6786. return Ok(jw);
  6787. }
  6788. /// <summary>
  6789. /// 导出报价单
  6790. /// </summary>
  6791. /// <param name="dto"></param>
  6792. /// <returns></returns>
  6793. [HttpPost]
  6794. public async Task<IActionResult> ExportPriceCheckWordFile(GroupCostExportWordFile dto)
  6795. {
  6796. if (dto.Diid == 0)
  6797. {
  6798. return Ok(JsonView(false, "请传递团组id"));
  6799. }
  6800. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  6801. if (deleInfo.Code != 0)
  6802. {
  6803. return Ok(JsonView(false, "团组信息查询失败!"));
  6804. }
  6805. var di = deleInfo.Data as DelegationInfoWebView;
  6806. if (di != null)
  6807. {
  6808. //文件名
  6809. string strFileName = di.TeamName + "-收款账单.doc";
  6810. //获取模板
  6811. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/收款账单(四川)模板.doc");
  6812. //载入模板
  6813. Document doc = new Document(tmppath);
  6814. decimal TotalPrice = 0.00M;
  6815. string itemStr = string.Empty;
  6816. Dictionary<string, string> airSouer = new Dictionary<string, string>();
  6817. //airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  6818. airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  6819. airSouer.Add("JJCSGR", "经济舱及酒店单人间");
  6820. airSouer.Add("GWCSGR", "公务舱及酒店单人间");
  6821. airSouer.Add("GWCJSES", "公务舱及酒店小套房");
  6822. airSouer.Add("GWCSUITE", "公务舱及酒店套房");
  6823. airSouer.Add("JJCSUITE", "经济舱及酒店套房");
  6824. var groupCostType = dto.airs.GroupBy(x => x.costType).OrderBy(x => x.Key);
  6825. foreach (var cost in groupCostType)
  6826. {
  6827. var List = cost.ToList();
  6828. if (cost.Key == "A")
  6829. {
  6830. foreach (var ListItem in List)
  6831. {
  6832. if (ListItem.number > 0)
  6833. {
  6834. if (ListItem.code.Contains("TBR"))
  6835. {
  6836. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6837. }
  6838. else
  6839. {
  6840. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6841. }
  6842. TotalPrice += (ListItem.number * ListItem.price);
  6843. }
  6844. }
  6845. }
  6846. else
  6847. {
  6848. itemStr = itemStr.Insert(0, "A段\r\n");
  6849. itemStr += "B段\r\n";
  6850. foreach (var ListItem in List)
  6851. {
  6852. if (ListItem.number > 0)
  6853. {
  6854. if (ListItem.code.Contains("TBR"))
  6855. {
  6856. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6857. }
  6858. else
  6859. {
  6860. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6861. }
  6862. TotalPrice += (ListItem.number * ListItem.price);
  6863. }
  6864. }
  6865. }
  6866. }
  6867. #region 替换Word模板书签内容
  6868. Dictionary<string, string> marks = new Dictionary<string, string>();
  6869. marks.Add("To", di.ClientUnit);//付款方
  6870. marks.Add("ToTel", di.TellPhone);//付款方电话
  6871. marks.Add("Date", DateTime.Now.ToString("yyyy-MM-dd"));//导出时间
  6872. marks.Add("Team", di.VisitCountry.Replace(" ", "、"));//团队名称
  6873. marks.Add("TontractTime", (di.VisitDate).ToString("yyyy年MM月dd日"));//付款日期
  6874. marks.Add("PayDay", (di.PayDay).ToString());//付款预期
  6875. marks.Add("PaymentMoney", (di.PaymentMoney).ToString("#0.00"));//付款金额
  6876. marks.Add("WeChat", di.WeChatNo ?? "");//微信号
  6877. marks.Add("PayItemContent", itemStr);//详细信息
  6878. marks.Add("Total", TotalPrice.ToString("F2"));//合计
  6879. #endregion
  6880. ////注
  6881. //if (doc.Range.Bookmarks["Attention"] != null)
  6882. //{
  6883. // Bookmark mark = doc.Range.Bookmarks["Attention"];
  6884. // mark.Text = frList[0].Attention;
  6885. //}
  6886. foreach (var item in marks.Keys)
  6887. {
  6888. if (doc.Range.Bookmarks[item] != null)
  6889. {
  6890. Bookmark mark = doc.Range.Bookmarks[item];
  6891. mark.Text = marks[item];
  6892. }
  6893. }
  6894. byte[] bytes = null;
  6895. using (MemoryStream stream = new MemoryStream())
  6896. {
  6897. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  6898. bytes = stream.ToArray();
  6899. }
  6900. //doc.Save((AppSettingsHelper.Get("WordBasePath") + "Template/") + strFileName);
  6901. return Ok(JsonView(true, "", new
  6902. {
  6903. Data = bytes,
  6904. strFileName,
  6905. }));
  6906. }
  6907. else
  6908. {
  6909. return Ok(JsonView(false, "团组信息不存在!"));
  6910. }
  6911. }
  6912. /// <summary>
  6913. /// 导出团组成本
  6914. /// </summary>
  6915. /// <param name="dto"></param>
  6916. /// <returns></returns>
  6917. [HttpPost]
  6918. public async Task<IActionResult> ExportGroupCostExcelFile(GroupCostExportExcelFile dto)
  6919. {
  6920. var jw = JsonView(false);
  6921. if (dto.Diid == 0)
  6922. {
  6923. return Ok(JsonView(false, "请传递团组id"));
  6924. }
  6925. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  6926. if (deleInfo.Code != 0)
  6927. {
  6928. return Ok(JsonView(false, "团组信息查询失败!"));
  6929. }
  6930. var di = deleInfo.Data as DelegationInfoWebView;
  6931. if (di == null)
  6932. {
  6933. return Ok(JsonView(false, "团组信息查询失败!"));
  6934. }
  6935. List<GroupCost_Excel> List_GC1 = new List<GroupCost_Excel>();
  6936. WorkbookDesigner designer = new WorkbookDesigner();
  6937. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + ("Template/团组-成本.xls"));
  6938. var List_GC = _GroupCostRepository.GetAllByDiid(dto.Diid);
  6939. for (int i = 0; i < List_GC.Count; i++)
  6940. {
  6941. GroupCost_Excel gc = new GroupCost_Excel();
  6942. gc.Id = List_GC[i].Id;
  6943. gc.Diid = List_GC[i].Diid.ToString();
  6944. gc.DAY = List_GC[i].DAY;
  6945. string week = "";
  6946. if (!string.IsNullOrEmpty(List_GC[i].Date.Trim()))
  6947. week = CultureInfo.CurrentCulture.DateTimeFormat.GetDayName(Convert.ToDateTime(List_GC[i].Date).DayOfWeek);
  6948. gc.Date = (List_GC[i].Date + "\n" + week).ToString();
  6949. gc.ITIN = List_GC[i].ITIN;
  6950. gc.CarType = List_GC[i].CarType;
  6951. gc.CarTiming = List_GC[i].CarTiming.ToString() == "0" ? "/" : List_GC[i].CarTiming.ToString();
  6952. gc.CarCost = List_GC[i].CarCost.ToString() == "0" ? "/" : List_GC[i].CarCost.ToString();
  6953. gc.CarNumber = List_GC[i].CarNumber.ToString() == "0" ? "/" : List_GC[i].CarNumber.ToString();
  6954. gc.TGS = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGS.ToString();
  6955. gc.TGWH = List_GC[i].TGWH.ToString() == "0" ? "/" : List_GC[i].TGWH.ToString();
  6956. gc.TGN = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGN.ToString();
  6957. gc.TGOF = List_GC[i].TGOF.ToString() == "0" ? "/" : List_GC[i].TGOF.ToString();
  6958. gc.TGM = List_GC[i].TGM.ToString() == "0" ? "/" : List_GC[i].TGM.ToString();
  6959. gc.TGA = List_GC[i].TGA.ToString() == "0" ? "/" : List_GC[i].TGA.ToString();
  6960. gc.TGTF = List_GC[i].TGTF.ToString() == "0" ? "/" : List_GC[i].TGTF.ToString();
  6961. gc.TGEF = List_GC[i].TGEF.ToString() == "0" ? "/" : List_GC[i].TGEF.ToString();
  6962. gc.CFS = List_GC[i].CFS.ToString() == "0" ? "/" : List_GC[i].CFS.ToString();
  6963. gc.CFM = List_GC[i].CFM.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  6964. gc.CFOF = List_GC[i].CFOF.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  6965. gc.B = List_GC[i].B.ToString() == "0" ? "/" : List_GC[i].B.ToString();
  6966. gc.L = List_GC[i].L.ToString() == "0" ? "/" : List_GC[i].L.ToString();
  6967. gc.D = List_GC[i].D.ToString() == "0" ? "/" : List_GC[i].D.ToString();
  6968. gc.TBR = List_GC[i].TBR.ToString() == "0" ? "/" : List_GC[i].TBR.ToString();
  6969. gc.SGR = List_GC[i].SGR.ToString() == "0" ? "/" : List_GC[i].SGR.ToString();
  6970. gc.JS_ES = List_GC[i].JS_ES.ToString() == "0" ? "/" : List_GC[i].JS_ES.ToString();
  6971. gc.Suite = List_GC[i].Suite.ToString() == "0" ? "/" : List_GC[i].Suite.ToString();
  6972. gc.ACCON = List_GC[i].ACCON.ToString() == "0" ? "/" : List_GC[i].ACCON.ToString();
  6973. gc.TV = List_GC[i].TV.ToString() == "0" ? "/" : List_GC[i].TV.ToString();
  6974. gc.iL = List_GC[i].iL.ToString() == "0" ? "/" : List_GC[i].iL.ToString();
  6975. gc.IF = List_GC[i].IF.ToString() == "0" ? "/" : List_GC[i].IF.ToString();
  6976. gc.EF = List_GC[i].EF.ToString() == "0" ? "/" : List_GC[i].EF.ToString();
  6977. gc.B_R_F = List_GC[i].B_R_F.ToString() == "0" ? "/" : List_GC[i].B_R_F.ToString();
  6978. gc.TE = List_GC[i].TE.ToString() == "0" ? "/" : List_GC[i].TE.ToString();
  6979. gc.TGTips = List_GC[i].TGTips.ToString() == "0" ? "/" : List_GC[i].TGTips.ToString();
  6980. gc.DRVTips = List_GC[i].DRVTips.ToString() == "0" ? "/" : List_GC[i].DRVTips.ToString();
  6981. gc.PC = List_GC[i].PC.ToString() == "0" ? "/" : List_GC[i].PC.ToString();
  6982. gc.TLF = List_GC[i].TLF.ToString() == "0" ? "/" : List_GC[i].TLF.ToString();
  6983. gc.ECT = List_GC[i].ECT.ToString() == "0" ? "/" : List_GC[i].ECT.ToString();
  6984. List_GC1.Add(gc);
  6985. }
  6986. var dt = CommonFun.GetDataTableFromIList(List_GC1);
  6987. dt.TableName = "TB";
  6988. //报表标题等不用dt的值
  6989. designer.SetDataSource("TeamName", dto.title.TeamName);
  6990. designer.SetDataSource("Pnumber", dto.title.GroupNumber);
  6991. designer.SetDataSource("Tax", dto.title.Tax);
  6992. //designer.SetDataSource("FFYS", lblHotelCB.Text);
  6993. designer.SetDataSource("Currency", dto.title.Currency);
  6994. //designer.SetDataSource("HotelXS", txtHotelXS.Text);
  6995. designer.SetDataSource("Rate", dto.title.Rate);
  6996. var hotels = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(dto.Diid);
  6997. var Aparams = hotels.Find(x => x.Type == "Default");
  6998. if (Aparams == null)
  6999. {
  7000. return Ok(jw);
  7001. }
  7002. //酒店数量
  7003. var txtSGRNumber = Aparams.SGR.ToString();
  7004. var txtTBRNumber = Aparams.TBR.ToString();
  7005. var txtJSESNumber = Aparams.JSES.ToString();
  7006. var txtSUITENumbe = Aparams.SUITE.ToString();
  7007. if (dto.costType == "B")
  7008. {
  7009. Aparams = hotels.Find(x => x.Type == "A");
  7010. var Bparams = hotels.Find(x => x.Type == "B");
  7011. if (Aparams == null || Bparams == null)
  7012. {
  7013. return Ok(jw);
  7014. }
  7015. txtSGRNumber = "A段人数:" + Aparams.SGR.ToString() + " B段人数:" + Bparams.SGR.ToString();
  7016. txtTBRNumber = "A段人数:" + Aparams.TBR.ToString() + " B段人数:" + Bparams.TBR.ToString();
  7017. txtJSESNumber = "A段人数:" + Aparams.JSES.ToString() + " B段人数:" + Bparams.JSES.ToString();
  7018. txtSUITENumbe = "A段人数:" + Aparams.SUITE.ToString() + " B段人数:" + Bparams.SUITE.ToString();
  7019. }
  7020. designer.SetDataSource("SGRNumber", txtSGRNumber);
  7021. designer.SetDataSource("TBRNumber", txtTBRNumber);
  7022. designer.SetDataSource("JSESNumber", txtJSESNumber);
  7023. designer.SetDataSource("SUITENumber", txtSUITENumbe);
  7024. var ws = designer.Workbook.Worksheets[0];
  7025. int Row = List_GC.Count;
  7026. int startIndex = 11;
  7027. int HideRows = 0;
  7028. List<int> hideRowsList = new List<int>();
  7029. decimal TzZCB2 = 0.00M, TzZLR2 = 0.00M, TzZBJ2 = 0.00M;
  7030. #region A段left数据
  7031. var left = dto.leftInfo.Find(x => x.Type == "A");
  7032. if (left == null)
  7033. {
  7034. return Ok(jw);
  7035. }
  7036. var leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("签证"));
  7037. if (leftBindData != null)
  7038. {
  7039. designer.SetDataSource("VisaDRCB", leftBindData.cb);
  7040. designer.SetDataSource("VisaRS", leftBindData.rs);
  7041. designer.SetDataSource("VisaXS", leftBindData.xs);
  7042. designer.SetDataSource("VisaZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7043. designer.SetDataSource("VisaDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7044. designer.SetDataSource("VisaZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7045. designer.SetDataSource("VisaDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7046. designer.SetDataSource("VisaZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7047. }
  7048. else
  7049. {
  7050. hideRowsList.Add(Row + startIndex + HideRows);
  7051. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7052. }
  7053. HideRows += 2;
  7054. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("保险"));
  7055. if (leftBindData != null)
  7056. {
  7057. designer.SetDataSource("BXDRCB", leftBindData.cb);
  7058. designer.SetDataSource("BXRS", leftBindData.rs);
  7059. designer.SetDataSource("BXXS", leftBindData.xs);
  7060. designer.SetDataSource("BXZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7061. designer.SetDataSource("BXDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7062. designer.SetDataSource("BXZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7063. designer.SetDataSource("BXDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7064. designer.SetDataSource("BXZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7065. }
  7066. else
  7067. {
  7068. hideRowsList.Add(Row + startIndex + HideRows);
  7069. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7070. }
  7071. HideRows += 2;
  7072. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  7073. if (leftBindData != null)
  7074. {
  7075. designer.SetDataSource("HSDRCB", leftBindData.cb);
  7076. designer.SetDataSource("HSRS", leftBindData.rs);
  7077. designer.SetDataSource("HSXS", leftBindData.xs);
  7078. designer.SetDataSource("HSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7079. designer.SetDataSource("HSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7080. designer.SetDataSource("HSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7081. designer.SetDataSource("HSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7082. designer.SetDataSource("HSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7083. }
  7084. else
  7085. {
  7086. hideRowsList.Add(Row + startIndex + HideRows);
  7087. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7088. }
  7089. HideRows += 2;
  7090. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  7091. if (leftBindData != null)
  7092. {
  7093. designer.SetDataSource("JPJJCCB", leftBindData.cb);
  7094. designer.SetDataSource("JPJJCPnum", leftBindData.rs);
  7095. designer.SetDataSource("JPJJCXS", leftBindData.xs);
  7096. designer.SetDataSource("JPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7097. designer.SetDataSource("JPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7098. designer.SetDataSource("JPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7099. designer.SetDataSource("JPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7100. designer.SetDataSource("JPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7101. }
  7102. else
  7103. {
  7104. hideRowsList.Add(Row + startIndex + HideRows);
  7105. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7106. }
  7107. HideRows += 2;
  7108. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  7109. if (leftBindData != null)
  7110. {
  7111. designer.SetDataSource("JPGWCCB", leftBindData.cb);
  7112. designer.SetDataSource("JPGWCPNum", leftBindData.rs);
  7113. designer.SetDataSource("JPGWCXS", leftBindData.xs);
  7114. designer.SetDataSource("JPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7115. designer.SetDataSource("JPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7116. designer.SetDataSource("JPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7117. designer.SetDataSource("JPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7118. designer.SetDataSource("JPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7119. }
  7120. else
  7121. {
  7122. hideRowsList.Add(Row + startIndex + HideRows);
  7123. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7124. }
  7125. HideRows += 2;
  7126. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  7127. if (leftBindData != null)
  7128. {
  7129. ////TBR
  7130. designer.SetDataSource("HotelTBRDRCB", leftBindData.cb);
  7131. designer.SetDataSource("HotelTBRRS", leftBindData.rs);
  7132. designer.SetDataSource("HotelTBRXS", leftBindData.xs);
  7133. designer.SetDataSource("HotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7134. designer.SetDataSource("HotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7135. designer.SetDataSource("HotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7136. designer.SetDataSource("HotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7137. designer.SetDataSource("HotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7138. }
  7139. else
  7140. {
  7141. hideRowsList.Add(Row + startIndex + HideRows);
  7142. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7143. }
  7144. HideRows += 2;
  7145. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  7146. if (leftBindData != null)
  7147. {
  7148. ////SGR
  7149. designer.SetDataSource("HotelSGRDRCB", leftBindData.cb);
  7150. designer.SetDataSource("HotelSGRRS", leftBindData.rs);
  7151. designer.SetDataSource("HotelSGRXS", leftBindData.xs);
  7152. designer.SetDataSource("HotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7153. designer.SetDataSource("HotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7154. designer.SetDataSource("HotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7155. designer.SetDataSource("HotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7156. designer.SetDataSource("HotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7157. }
  7158. else
  7159. {
  7160. hideRowsList.Add(Row + startIndex + HideRows);
  7161. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7162. }
  7163. HideRows += 2;
  7164. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  7165. if (leftBindData != null)
  7166. {
  7167. ////JS/ES
  7168. designer.SetDataSource("HotelJSESDRCB", leftBindData.cb);
  7169. designer.SetDataSource("HotelJSESRS", leftBindData.rs);
  7170. designer.SetDataSource("HotelJSESXS", leftBindData.xs);
  7171. designer.SetDataSource("HotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7172. designer.SetDataSource("HotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7173. designer.SetDataSource("HotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7174. designer.SetDataSource("HotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7175. designer.SetDataSource("HotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7176. }
  7177. else
  7178. {
  7179. hideRowsList.Add(Row + startIndex + HideRows);
  7180. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7181. }
  7182. HideRows += 2;
  7183. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  7184. if (leftBindData != null)
  7185. {
  7186. ////SUITE
  7187. designer.SetDataSource("HotelSUITEDRCB", leftBindData.cb);
  7188. designer.SetDataSource("HotelSUITERS", leftBindData.rs);
  7189. designer.SetDataSource("HotelSUITEXS", leftBindData.xs);
  7190. designer.SetDataSource("HotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7191. designer.SetDataSource("HotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7192. designer.SetDataSource("HotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7193. designer.SetDataSource("HotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7194. designer.SetDataSource("HotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7195. }
  7196. else
  7197. {
  7198. hideRowsList.Add(Row + startIndex + HideRows);
  7199. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7200. }
  7201. HideRows += 2;
  7202. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  7203. if (leftBindData != null)
  7204. {
  7205. designer.SetDataSource("DJDRCB", leftBindData.cb);
  7206. designer.SetDataSource("DJRS", leftBindData.rs);
  7207. designer.SetDataSource("DJXS", leftBindData.xs);
  7208. designer.SetDataSource("DJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7209. designer.SetDataSource("DJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7210. designer.SetDataSource("DJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7211. designer.SetDataSource("DJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7212. designer.SetDataSource("DJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7213. }
  7214. else
  7215. {
  7216. hideRowsList.Add(Row + startIndex + HideRows);
  7217. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7218. }
  7219. HideRows += 2;
  7220. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  7221. if (leftBindData != null)
  7222. {
  7223. designer.SetDataSource("HCPCB", leftBindData.cb);
  7224. designer.SetDataSource("HCPRS", leftBindData.rs);
  7225. designer.SetDataSource("HCPXS", leftBindData.xs);
  7226. designer.SetDataSource("HCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7227. designer.SetDataSource("HCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7228. designer.SetDataSource("HCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7229. designer.SetDataSource("HCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7230. designer.SetDataSource("HCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7231. }
  7232. else
  7233. {
  7234. hideRowsList.Add(Row + startIndex + HideRows);
  7235. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7236. }
  7237. HideRows += 2;
  7238. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  7239. if (leftBindData != null)
  7240. {
  7241. designer.SetDataSource("CPCB", leftBindData.cb);
  7242. designer.SetDataSource("CPRS", leftBindData.rs);
  7243. designer.SetDataSource("CPXS", leftBindData.xs);
  7244. designer.SetDataSource("CPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7245. designer.SetDataSource("CPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7246. designer.SetDataSource("CPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7247. designer.SetDataSource("CPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7248. designer.SetDataSource("CPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7249. }
  7250. else
  7251. {
  7252. hideRowsList.Add(Row + startIndex + HideRows);
  7253. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7254. }
  7255. HideRows += 2;
  7256. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  7257. if (leftBindData != null)
  7258. {
  7259. designer.SetDataSource("GWDRCD", leftBindData.cb);
  7260. designer.SetDataSource("GWRS", leftBindData.rs);
  7261. designer.SetDataSource("GWXS", leftBindData.xs);
  7262. designer.SetDataSource("GWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7263. designer.SetDataSource("GWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7264. designer.SetDataSource("GWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7265. designer.SetDataSource("GWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7266. designer.SetDataSource("GWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7267. }
  7268. else
  7269. {
  7270. hideRowsList.Add(Row + startIndex + HideRows);
  7271. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7272. }
  7273. HideRows += 2;
  7274. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  7275. if (leftBindData != null)
  7276. {
  7277. designer.SetDataSource("LYJDRCB", leftBindData.cb);
  7278. designer.SetDataSource("LYJRS", leftBindData.rs);
  7279. designer.SetDataSource("LYJXS", leftBindData.xs);
  7280. designer.SetDataSource("LYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7281. designer.SetDataSource("LYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7282. designer.SetDataSource("LYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7283. designer.SetDataSource("LYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7284. designer.SetDataSource("LYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7285. }
  7286. else
  7287. {
  7288. hideRowsList.Add(Row + startIndex + HideRows);
  7289. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7290. }
  7291. #endregion
  7292. #region A段Right信息
  7293. var right = dto.rightInfo.Find(x => x.Type == "A");
  7294. if (right == null)
  7295. {
  7296. return Ok(jw);
  7297. }
  7298. HideRows += 4;
  7299. var rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  7300. if (rightBindData != null)
  7301. {
  7302. //经济舱 + 双人间 TBR
  7303. designer.SetDataSource("lblJJCTBRDRCB", rightBindData.cb);
  7304. designer.SetDataSource("txtJJCTBRRS", rightBindData.rs);
  7305. designer.SetDataSource("lblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7306. designer.SetDataSource("lblJJCTBRDRBJ", rightBindData.bj);
  7307. designer.SetDataSource("lblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7308. designer.SetDataSource("lblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7309. designer.SetDataSource("lblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7310. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7311. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7312. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7313. }
  7314. else
  7315. {
  7316. hideRowsList.Add(Row + startIndex + HideRows);
  7317. }
  7318. HideRows += 2;
  7319. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  7320. if (rightBindData != null)
  7321. {
  7322. //经济舱 + 单人间 SGR
  7323. designer.SetDataSource("lblJJCSGRDRCB", rightBindData.cb);
  7324. designer.SetDataSource("txtJJCSGRRS", rightBindData.rs);
  7325. designer.SetDataSource("lblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7326. designer.SetDataSource("lblJJCSGRDRBJ", rightBindData.bj);
  7327. designer.SetDataSource("lblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7328. designer.SetDataSource("lblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7329. designer.SetDataSource("lblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7330. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7331. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7332. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7333. }
  7334. else
  7335. {
  7336. hideRowsList.Add(Row + startIndex + HideRows);
  7337. }
  7338. HideRows += 2;
  7339. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  7340. if (rightBindData != null)
  7341. {
  7342. //公务舱 + 单人间 SGR
  7343. designer.SetDataSource("lblGWCSGRCB", rightBindData.cb);
  7344. designer.SetDataSource("lblGWCSGRRS", rightBindData.rs);
  7345. designer.SetDataSource("lblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7346. designer.SetDataSource("lblGWCSGRDRBJ", rightBindData.bj);
  7347. designer.SetDataSource("lblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7348. designer.SetDataSource("lblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7349. designer.SetDataSource("lblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7350. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7351. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7352. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7353. }
  7354. else
  7355. {
  7356. hideRowsList.Add(Row + startIndex + HideRows);
  7357. }
  7358. HideRows += 2;
  7359. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7360. if (rightBindData != null)
  7361. {
  7362. //公务舱 + 小套房 JSES
  7363. designer.SetDataSource("lblGWCJSESDRCB", rightBindData.cb);
  7364. designer.SetDataSource("txtGWCJSESRS", rightBindData.rs);
  7365. designer.SetDataSource("lblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7366. designer.SetDataSource("lblGWCJSESDRBJ", rightBindData.bj);
  7367. designer.SetDataSource("lblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7368. designer.SetDataSource("lblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7369. designer.SetDataSource("lblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7370. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7371. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7372. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7373. }
  7374. else
  7375. {
  7376. hideRowsList.Add(Row + startIndex + HideRows);
  7377. }
  7378. HideRows += 2;
  7379. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  7380. if (rightBindData != null)
  7381. {
  7382. //公务舱 + 小套房 JSES
  7383. designer.SetDataSource("lblGWCSUITEDRCB", rightBindData.cb);
  7384. designer.SetDataSource("txtGWCSUITERS", rightBindData.rs);
  7385. designer.SetDataSource("lblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7386. designer.SetDataSource("lblGWCSUITEDRBJ", rightBindData.bj);
  7387. designer.SetDataSource("lblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7388. designer.SetDataSource("lblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7389. designer.SetDataSource("lblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7390. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7391. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7392. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7393. }
  7394. else
  7395. {
  7396. hideRowsList.Add(Row + startIndex + HideRows);
  7397. }
  7398. HideRows += 2;
  7399. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7400. if (rightBindData != null)
  7401. {
  7402. //经济舱 + 大套房
  7403. designer.SetDataSource("lblJJCSUITEDRCB", rightBindData.cb);
  7404. designer.SetDataSource("txtJJCSUITERS", rightBindData.rs);
  7405. designer.SetDataSource("lblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7406. designer.SetDataSource("lblJJCSUITEDRBJ", rightBindData.bj);
  7407. designer.SetDataSource("lblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7408. designer.SetDataSource("lblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7409. designer.SetDataSource("lblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7410. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7411. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7412. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7413. }
  7414. else
  7415. {
  7416. hideRowsList.Add(Row + startIndex + HideRows);
  7417. }
  7418. #endregion
  7419. #region B段标题清空
  7420. designer.SetDataSource("CostBDRCB", "");
  7421. designer.SetDataSource("CostBRS", "");
  7422. designer.SetDataSource("CostBXS", "");
  7423. designer.SetDataSource("CostBZCB", "");
  7424. designer.SetDataSource("CostBDRBJ", "");
  7425. designer.SetDataSource("CostBZBJ", "");
  7426. designer.SetDataSource("CostBDRLR", "");
  7427. designer.SetDataSource("CostBZLR", "");
  7428. designer.SetDataSource("CostBDRCBOM", "");
  7429. designer.SetDataSource("CostBRSOM", "");
  7430. designer.SetDataSource("CostBZCBOM", "");
  7431. designer.SetDataSource("CostBDRBJOM", "");
  7432. designer.SetDataSource("CostBZBJOM", "");
  7433. designer.SetDataSource("CostBDRLROM", "");
  7434. designer.SetDataSource("CostBZLROM", "");
  7435. #endregion
  7436. designer.SetDataSource("HotelTBRName", "酒店TBR单间成本(CNY)");
  7437. designer.SetDataSource("HotelSGRName", "酒店SGR单间成本(CNY)");
  7438. designer.SetDataSource("HotelJSESName", "酒店JSES单间成本(CNY)");
  7439. designer.SetDataSource("HotelSUITEName", "酒店SUITE单间成本(CNY)");
  7440. designer.SetDataSource("DJName", "地接(CNY)");
  7441. designer.SetDataSource("HCPName", "地接-火车票(CNY)");
  7442. designer.SetDataSource("CPName", "地接-船票(CNY)");
  7443. designer.SetDataSource("GWName", "公务(CNY)");
  7444. designer.SetDataSource("YQHName", "邀请函(CNY)");
  7445. designer.SetDataSource("LYJName", "零用金(CNY)");
  7446. designer.SetDataSource("HSName", "核酸检测(CNY)");
  7447. designer.SetDataSource("AirGWCName", "机票-公务舱(CNY)");
  7448. designer.SetDataSource("AirJJCName", "机票-经济舱(CNY)");
  7449. designer.SetDataSource("BXName", "保险(CNY)");
  7450. designer.SetDataSource("VisaName", "签证(CNY)");
  7451. #region B段基本数据
  7452. if (dto.costType == "B")
  7453. {
  7454. left = dto.leftInfo.Find(x => x.Type == "B");
  7455. if (left == null)
  7456. {
  7457. return Ok(jw);
  7458. }
  7459. #region B段left数据
  7460. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  7461. if (leftBindData != null)
  7462. {
  7463. designer.SetDataSource("BHSDRCB", leftBindData.cb);
  7464. designer.SetDataSource("BHSRS", leftBindData.rs);
  7465. designer.SetDataSource("BHSXS", leftBindData.xs);
  7466. designer.SetDataSource("BHSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7467. designer.SetDataSource("BHSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7468. designer.SetDataSource("BHSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7469. designer.SetDataSource("BHSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7470. designer.SetDataSource("BHSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7471. }
  7472. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  7473. if (leftBindData != null)
  7474. {
  7475. designer.SetDataSource("BJPJJCCB", leftBindData.cb);
  7476. designer.SetDataSource("BJPJJCPnum", leftBindData.rs);
  7477. designer.SetDataSource("BJPJJCXS", leftBindData.xs);
  7478. designer.SetDataSource("BJPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7479. designer.SetDataSource("BJPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7480. designer.SetDataSource("BJPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7481. designer.SetDataSource("BJPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7482. designer.SetDataSource("BJPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7483. }
  7484. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  7485. if (leftBindData != null)
  7486. {
  7487. designer.SetDataSource("BJPGWCCB", leftBindData.cb);
  7488. designer.SetDataSource("BJPGWCPNum", leftBindData.rs);
  7489. designer.SetDataSource("BJPGWCXS", leftBindData.xs);
  7490. designer.SetDataSource("BJPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7491. designer.SetDataSource("BJPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7492. designer.SetDataSource("BJPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7493. designer.SetDataSource("BJPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7494. designer.SetDataSource("BJPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7495. }
  7496. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  7497. if (leftBindData != null)
  7498. {
  7499. designer.SetDataSource("BHCPCB", leftBindData.cb);
  7500. designer.SetDataSource("BHCPRS", leftBindData.rs);
  7501. designer.SetDataSource("BHCPXS", leftBindData.xs);
  7502. designer.SetDataSource("BHCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7503. designer.SetDataSource("BHCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7504. designer.SetDataSource("BHCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7505. designer.SetDataSource("BHCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7506. designer.SetDataSource("BHCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7507. }
  7508. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  7509. if (leftBindData != null)
  7510. {
  7511. designer.SetDataSource("BCPCB", leftBindData.cb);
  7512. designer.SetDataSource("BCPRS", leftBindData.rs);
  7513. designer.SetDataSource("BCPXS", leftBindData.xs);
  7514. designer.SetDataSource("BCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7515. designer.SetDataSource("BCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7516. designer.SetDataSource("BCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7517. designer.SetDataSource("BCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7518. designer.SetDataSource("BCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7519. }
  7520. //TBR
  7521. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  7522. if (leftBindData != null)
  7523. {
  7524. designer.SetDataSource("BHotelTBRDRCB", leftBindData.cb);
  7525. designer.SetDataSource("BHotelTBRRS", leftBindData.rs);
  7526. designer.SetDataSource("BHotelTBRXS", leftBindData.xs);
  7527. designer.SetDataSource("BHotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7528. designer.SetDataSource("BHotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7529. designer.SetDataSource("BHotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7530. designer.SetDataSource("BHotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7531. designer.SetDataSource("BHotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7532. }
  7533. //SGR
  7534. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  7535. if (leftBindData != null)
  7536. {
  7537. designer.SetDataSource("BHotelSGRDRCB", leftBindData.cb);
  7538. designer.SetDataSource("BHotelSGRRS", leftBindData.rs);
  7539. designer.SetDataSource("BHotelSGRXS", leftBindData.xs);
  7540. designer.SetDataSource("BHotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7541. designer.SetDataSource("BHotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7542. designer.SetDataSource("BHotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7543. designer.SetDataSource("BHotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7544. designer.SetDataSource("BHotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7545. }
  7546. //JS/ES
  7547. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  7548. if (leftBindData != null)
  7549. {
  7550. designer.SetDataSource("BHotelJSESDRCB", leftBindData.cb);
  7551. designer.SetDataSource("BHotelJSESRS", leftBindData.rs);
  7552. designer.SetDataSource("BHotelJSESXS", leftBindData.xs);
  7553. designer.SetDataSource("BHotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7554. designer.SetDataSource("BHotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7555. designer.SetDataSource("BHotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7556. designer.SetDataSource("BHotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7557. designer.SetDataSource("BHotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7558. }
  7559. //SUITE
  7560. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  7561. if (leftBindData != null)
  7562. {
  7563. designer.SetDataSource("BHotelSUITEDRCB", leftBindData.cb);
  7564. designer.SetDataSource("BHotelSUITERS", leftBindData.rs);
  7565. designer.SetDataSource("BHotelSUITEXS", leftBindData.xs);
  7566. designer.SetDataSource("BHotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7567. designer.SetDataSource("BHotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7568. designer.SetDataSource("BHotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7569. designer.SetDataSource("BHotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7570. designer.SetDataSource("BHotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7571. }
  7572. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  7573. if (leftBindData != null)
  7574. {
  7575. designer.SetDataSource("BDJDRCB", leftBindData.cb);
  7576. designer.SetDataSource("BDJRS", leftBindData.rs);
  7577. designer.SetDataSource("BDJXS", leftBindData.xs);
  7578. designer.SetDataSource("BDJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7579. designer.SetDataSource("BDJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7580. designer.SetDataSource("BDJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7581. designer.SetDataSource("BDJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7582. designer.SetDataSource("BDJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7583. }
  7584. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  7585. if (leftBindData != null)
  7586. {
  7587. designer.SetDataSource("BGWDRCD", leftBindData.cb);
  7588. designer.SetDataSource("BGWRS", leftBindData.rs);
  7589. designer.SetDataSource("BGWXS", leftBindData.xs);
  7590. designer.SetDataSource("BGWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7591. designer.SetDataSource("BGWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7592. designer.SetDataSource("BGWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7593. designer.SetDataSource("BGWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7594. designer.SetDataSource("BGWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7595. }
  7596. #region 优化方案
  7597. //Dictionary<string, object> excelBind = new Dictionary<string, object>();
  7598. //excelBind.Add("零用金", new {
  7599. //cb="",
  7600. //rs="",
  7601. //xs ="",
  7602. //zcb = "",
  7603. //});
  7604. #endregion
  7605. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  7606. if (leftBindData != null)
  7607. {
  7608. designer.SetDataSource("BLYJDRCB", leftBindData.cb);
  7609. designer.SetDataSource("BLYJRS", leftBindData.rs);
  7610. designer.SetDataSource("BLYJXS", leftBindData.xs);
  7611. designer.SetDataSource("BLYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7612. designer.SetDataSource("BLYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7613. designer.SetDataSource("BLYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7614. designer.SetDataSource("BLYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7615. designer.SetDataSource("BLYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7616. }
  7617. #endregion
  7618. #region B段Right信息
  7619. right = dto.rightInfo.Find(x => x.Type == "B");
  7620. if (right == null)
  7621. {
  7622. return Ok(jw);
  7623. }
  7624. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  7625. if (rightBindData != null)
  7626. {
  7627. //经济舱 + 双人间 TBR
  7628. designer.SetDataSource("BlblJJCTBRDRCB", rightBindData.cb);
  7629. designer.SetDataSource("BtxtJJCTBRRS", rightBindData.rs);
  7630. designer.SetDataSource("BlblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7631. designer.SetDataSource("BlblJJCTBRDRBJ", rightBindData.bj);
  7632. designer.SetDataSource("BlblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7633. designer.SetDataSource("BlblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7634. designer.SetDataSource("BlblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7635. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7636. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7637. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7638. }
  7639. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  7640. if (rightBindData != null)
  7641. {
  7642. //经济舱 + 单人间 SGR
  7643. designer.SetDataSource("BlblJJCSGRDRCB", rightBindData.cb);
  7644. designer.SetDataSource("BtxtJJCSGRRS", rightBindData.rs);
  7645. designer.SetDataSource("BlblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7646. designer.SetDataSource("BlblJJCSGRDRBJ", rightBindData.bj);
  7647. designer.SetDataSource("BlblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7648. designer.SetDataSource("BlblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7649. designer.SetDataSource("BlblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7650. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7651. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7652. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7653. }
  7654. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  7655. if (rightBindData != null)
  7656. {
  7657. //公务舱 + 单人间 SGR
  7658. designer.SetDataSource("BlblGWCSGRCB", rightBindData.cb);
  7659. designer.SetDataSource("BlblGWCSGRRS", rightBindData.rs);
  7660. designer.SetDataSource("BlblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7661. designer.SetDataSource("BlblGWCSGRDRBJ", rightBindData.bj);
  7662. designer.SetDataSource("BlblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7663. designer.SetDataSource("BlblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7664. designer.SetDataSource("BlblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7665. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7666. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7667. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7668. }
  7669. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7670. if (rightBindData != null)
  7671. {
  7672. //公务舱 + 小套房 JSES
  7673. designer.SetDataSource("BlblGWCJSESDRCB", rightBindData.cb);
  7674. designer.SetDataSource("BtxtGWCJSESRS", rightBindData.rs);
  7675. designer.SetDataSource("BlblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7676. designer.SetDataSource("BlblGWCJSESDRBJ", rightBindData.bj);
  7677. designer.SetDataSource("BlblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7678. designer.SetDataSource("BlblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7679. designer.SetDataSource("BlblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7680. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7681. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7682. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7683. }
  7684. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  7685. if (rightBindData != null)
  7686. {
  7687. //公务舱 + 小套房 JSES
  7688. designer.SetDataSource("BlblGWCSUITEDRCB", rightBindData.cb);
  7689. designer.SetDataSource("BtxtGWCSUITERS", rightBindData.rs);
  7690. designer.SetDataSource("BlblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7691. designer.SetDataSource("BlblGWCSUITEDRBJ", rightBindData.bj);
  7692. designer.SetDataSource("BlblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7693. designer.SetDataSource("BlblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7694. designer.SetDataSource("BlblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7695. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7696. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7697. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7698. }
  7699. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7700. if (rightBindData != null)
  7701. {
  7702. //经济舱 + 大套房
  7703. designer.SetDataSource("BlblJJCSUITEDRCB", rightBindData.cb);
  7704. designer.SetDataSource("BtxtJJCSUITERS", rightBindData.rs);
  7705. designer.SetDataSource("BlblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7706. designer.SetDataSource("BlblJJCSUITEDRBJ", rightBindData.bj);
  7707. designer.SetDataSource("BlblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7708. designer.SetDataSource("BlblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7709. designer.SetDataSource("BlblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7710. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7711. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7712. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7713. }
  7714. #endregion
  7715. #region 标题
  7716. designer.SetDataSource("CostBDRCB", "单人成本");
  7717. designer.SetDataSource("CostBRS", "人数");
  7718. designer.SetDataSource("CostBXS", "系数");
  7719. designer.SetDataSource("CostBZCB", "总成本");
  7720. designer.SetDataSource("CostBDRBJ", "单人报价");
  7721. designer.SetDataSource("CostBZBJ", "总报价");
  7722. designer.SetDataSource("CostBDRLR", "单人利润");
  7723. designer.SetDataSource("CostBZLR", "总利润");
  7724. designer.SetDataSource("CostBDRCBOM", "单人成本");
  7725. designer.SetDataSource("CostBRSOM", "人数");
  7726. designer.SetDataSource("CostBZCBOM", "总成本");
  7727. designer.SetDataSource("CostBDRBJOM", "单人报价");
  7728. designer.SetDataSource("CostBZBJOM", "总报价");
  7729. designer.SetDataSource("CostBDRLROM", "单人利润");
  7730. designer.SetDataSource("CostBZLROM", "总利润");
  7731. #endregion
  7732. }
  7733. #endregion
  7734. designer.SetDataSource("TzZCB2", TzZCB2);
  7735. designer.SetDataSource("TzZBJ2", TzZBJ2);
  7736. designer.SetDataSource("TzZLR2", TzZLR2);
  7737. string[] dataSourceKeys = new string[]
  7738. {
  7739. "VF",
  7740. "TGS",
  7741. "TGOF",
  7742. "TGM",
  7743. "TGA",
  7744. "TGTF",
  7745. "TGEF",
  7746. "CFM",
  7747. "CFOF",
  7748. "B",
  7749. "L",
  7750. "D",
  7751. "TBR",
  7752. "SGR",
  7753. "JSES",
  7754. "Suite",
  7755. "TV",
  7756. "1L",
  7757. "IF",
  7758. "EF",
  7759. "BRF",
  7760. "TE",
  7761. "TGT",
  7762. "DRVT",
  7763. "PC",
  7764. "TLF",
  7765. "ECT"
  7766. };
  7767. foreach (var item in dataSourceKeys)
  7768. {
  7769. var find = dto.titleModel.FirstOrDefault(x => x.label.Replace(" ", "").Replace("/", "") == item);
  7770. if (find != null)
  7771. {
  7772. designer.SetDataSource(item, find.text);
  7773. }
  7774. else
  7775. {
  7776. designer.SetDataSource(item, 0);
  7777. }
  7778. }
  7779. designer.SetDataSource(dt);
  7780. //根据数据源处理生成报表内容
  7781. designer.Process();
  7782. designer.Workbook.Worksheets[0].Name = "清单";
  7783. Worksheet sheet = designer.Workbook.Worksheets[0];
  7784. foreach (var Rowindex in hideRowsList)
  7785. {
  7786. ws.Cells.HideRows(Rowindex, 2);
  7787. }
  7788. byte[] bytes = null;
  7789. string strFileName = di.TeamName + "-团组-成本.xls";
  7790. using (MemoryStream stream = new MemoryStream())
  7791. {
  7792. designer.Workbook.Save(stream, Aspose.Cells.SaveFormat.Xlsx);
  7793. bytes = stream.ToArray();
  7794. }
  7795. return Ok(JsonView(true, "", new
  7796. {
  7797. Data = bytes,
  7798. strFileName,
  7799. }));
  7800. }
  7801. /// <summary>
  7802. /// 导出客户报表
  7803. /// </summary>
  7804. /// <returns></returns>
  7805. [HttpPost]
  7806. public async Task<IActionResult> ExportClientWordFile(ExportClientWordFileDto dto)
  7807. {
  7808. var jw = JsonView(false);
  7809. if (dto.Diid == 0)
  7810. {
  7811. return Ok(JsonView(false, "请传递团组id"));
  7812. }
  7813. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  7814. if (deleInfo.Code != 0)
  7815. {
  7816. return Ok(JsonView(false, "团组信息查询失败!"));
  7817. }
  7818. var di = deleInfo.Data as DelegationInfoWebView;
  7819. if (di == null)
  7820. {
  7821. return Ok(JsonView(false, "团组信息查询失败!"));
  7822. }
  7823. //文件名
  7824. //string strFileName = di.TeamName + "-团组-客户报价.doc";
  7825. //获取模板
  7826. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/团组-客户报价.doc");
  7827. //载入模板
  7828. Document doc = new Document(tmppath);
  7829. Aspose.Words.DocumentBuilder builder = new Aspose.Words.DocumentBuilder(doc);
  7830. Dictionary<string, string> DickeyValue = new Dictionary<string, string>();
  7831. DickeyValue.Add("DickeyValue", di.TeamName); //团组名
  7832. var ParameterList = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(dto.Diid);
  7833. var AParameter = ParameterList.Find(x => x.CostType == "A");
  7834. var BParameter = ParameterList.Find(x => x.CostType == "B");
  7835. if (AParameter == null)
  7836. {
  7837. return Ok(JsonView(false, "系数不存在!"));
  7838. }
  7839. string CarGuides, TzNumber, CarGuides1, Meal, SubsidizedMeals, NightRepair, AttractionsTickets, MiscellaneousFees, ATip, TzHotelDesc, Offcial, PettyCash, Visa, TrainTicket, TicketPrice
  7840. , TzAirDesc, TzZCost;
  7841. CarGuides = TzNumber = CarGuides1 = Meal = SubsidizedMeals = NightRepair = AttractionsTickets = MiscellaneousFees = ATip = TzHotelDesc = Offcial = PettyCash = Visa = TrainTicket = TicketPrice
  7842. = TzAirDesc = TzZCost = string.Empty;
  7843. TzNumber = AParameter.CostTypenumber.ToString();
  7844. CarGuides = "RMB " + (AParameter.DJCB * AParameter.DJXS).ToString("#0.00");
  7845. CarGuides1 = dto.CarGuides1;
  7846. Meal = dto.Meal;
  7847. SubsidizedMeals = dto.SubsidizedMeals;
  7848. NightRepair = dto.NightRepair;
  7849. AttractionsTickets = dto.AttractionsTickets;
  7850. MiscellaneousFees = dto.MiscellaneousFees;
  7851. ATip = dto.ATip;
  7852. TzHotelDesc = "";
  7853. Offcial = "RMB " + (AParameter.GWCB * AParameter.GWXS).ToString("#0.00");
  7854. PettyCash = "RMB " + (AParameter.LYJCB * AParameter.LYJXS).ToString("#0.00");
  7855. Visa = "RMB " + (AParameter.VisaCB * AParameter.VisaXS + AParameter.HSCB * AParameter.HSXS + AParameter.BXCB * AParameter.BXXS).ToString("#0.00");
  7856. TrainTicket = "RMB " + (AParameter.HCPCB * AParameter.HCPXS).ToString("#0.00");
  7857. TicketPrice = "RMB " + (AParameter.CPCB * AParameter.CPXS).ToString("#0.00");
  7858. TzAirDesc = "";
  7859. TzZCost = dto.TzZCost;
  7860. var TzHotelDescArr = new string[] { "SGR", "JSES", "SUITE", "TBR" };
  7861. var TzAirDescArr = new string[] { "经济舱", "公务舱" };
  7862. var index = 1;
  7863. var AinfoArr = dto.leftInfo.Find(x => x.Type == "A");
  7864. foreach (var item in TzHotelDescArr)
  7865. {
  7866. if (AinfoArr != null)
  7867. {
  7868. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7869. if (Ainfo != null)
  7870. {
  7871. if (int.Parse(Ainfo.rs) <= 0)
  7872. {
  7873. continue;
  7874. }
  7875. var hotelText = string.Empty;
  7876. switch (item)
  7877. {
  7878. case "SGR":
  7879. hotelText = "单人间";
  7880. break;
  7881. case "JSES":
  7882. hotelText = "小套房";
  7883. break;
  7884. case "SUITE":
  7885. hotelText = "套房";
  7886. break;
  7887. case "TBR":
  7888. hotelText = "双人间";
  7889. break;
  7890. }
  7891. if (item != "TBR")
  7892. {
  7893. 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";
  7894. }
  7895. else
  7896. {
  7897. 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";
  7898. }
  7899. index++;
  7900. }
  7901. }
  7902. }
  7903. index = 1;
  7904. foreach (var item in TzAirDescArr)
  7905. {
  7906. if (AinfoArr != null)
  7907. {
  7908. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7909. if (Ainfo != null)
  7910. {
  7911. if (int.Parse(Ainfo.rs) <= 0)
  7912. {
  7913. continue;
  7914. }
  7915. 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";
  7916. index++;
  7917. }
  7918. }
  7919. }
  7920. if (dto.costType == "B")
  7921. {
  7922. if (BParameter == null)
  7923. {
  7924. return Ok(JsonView(false, "B段系数不存在!"));
  7925. }
  7926. CarGuides = CarGuides.Insert(0, "A段 ") + " B段 RMB" + (BParameter.DJCB * BParameter.DJXS).ToString("#0.00");
  7927. Offcial = Offcial.Insert(0, "A段 ") + " B段 RMB " + (BParameter.GWCB * BParameter.GWXS).ToString("#0.00");
  7928. PettyCash = PettyCash.Insert(0, "A段 ") + " B段 RMB " + (BParameter.LYJCB * BParameter.LYJXS).ToString("#0.00");
  7929. Visa = Visa.Insert(0, "A段 ") + " B段 RMB " + (BParameter.VisaCB * BParameter.VisaXS + BParameter.HSCB * BParameter.HSXS + BParameter.BXCB * BParameter.BXXS).ToString("#0.00");
  7930. TrainTicket = TrainTicket.Insert(0, "A段 ") + " B段 RMB " + (BParameter.HCPCB * BParameter.HCPXS).ToString("#0.00");
  7931. TicketPrice = TicketPrice.Insert(0, "A段 ") + " B段 RMB " + (BParameter.CPCB * BParameter.CPXS).ToString("#0.00");
  7932. AinfoArr = dto.leftInfo.Find(x => x.Type == "B");
  7933. foreach (var item in TzHotelDescArr)
  7934. {
  7935. if (AinfoArr != null)
  7936. {
  7937. TzHotelDesc += "B段信息 \r\n";
  7938. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7939. if (Ainfo != null)
  7940. {
  7941. if (int.Parse(Ainfo.rs) <= 0)
  7942. {
  7943. continue;
  7944. }
  7945. var hotelText = string.Empty;
  7946. switch (item)
  7947. {
  7948. case "SGR":
  7949. hotelText = "单人间";
  7950. break;
  7951. case "JSES":
  7952. hotelText = "小套房";
  7953. break;
  7954. case "SUITE":
  7955. hotelText = "套房";
  7956. break;
  7957. case "TBR":
  7958. hotelText = "双人间";
  7959. break;
  7960. }
  7961. if (item != "TBR")
  7962. {
  7963. 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";
  7964. }
  7965. else
  7966. {
  7967. 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";
  7968. }
  7969. index++;
  7970. }
  7971. TzHotelDesc = TzHotelDesc.Insert(0, "A段信息 \r\n");
  7972. }
  7973. }
  7974. index = 1;
  7975. foreach (var item in TzAirDescArr)
  7976. {
  7977. if (AinfoArr != null)
  7978. {
  7979. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7980. if (Ainfo != null)
  7981. {
  7982. if (int.Parse(Ainfo.rs) <= 0)
  7983. {
  7984. continue;
  7985. }
  7986. 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";
  7987. index++;
  7988. }
  7989. }
  7990. }
  7991. }
  7992. Visa = Visa.Insert(0, "签证及保险(含核酸检测): ");
  7993. DickeyValue.Add("TzNumber", TzNumber); //团组人数
  7994. DickeyValue.Add("CarGuides", CarGuides); //地接单人报价
  7995. DickeyValue.Add("CarGuides1", CarGuides1); // 地接 - 车导费
  7996. DickeyValue.Add("Meal", Meal); // 地接 - 餐费
  7997. DickeyValue.Add("SubsidizedMeals", SubsidizedMeals);// 地接 - 餐补
  7998. DickeyValue.Add("NightRepair", NightRepair); // 地接 - 宿补
  7999. DickeyValue.Add("AttractionsTickets", AttractionsTickets); // 地接 - 景点
  8000. DickeyValue.Add("MiscellaneousFees", MiscellaneousFees); // 地接 - 杂费
  8001. DickeyValue.Add("ATip", ATip); // 地接 - 小费
  8002. DickeyValue.Add("TzHotelDesc", TzHotelDesc); //酒店
  8003. DickeyValue.Add("Offcial", Offcial); // 公务单人报价
  8004. DickeyValue.Add("PettyCash", PettyCash); // 零用金单人报价
  8005. DickeyValue.Add("Visa", Visa); // 签证单人报价
  8006. DickeyValue.Add("TrainTicket", TrainTicket); //火车票
  8007. DickeyValue.Add("TicketPrice", TicketPrice); //船票
  8008. DickeyValue.Add("TzAirDesc", TzAirDesc); //机票
  8009. DickeyValue.Add("TzZCost", TzZCost);
  8010. foreach (var key in DickeyValue.Keys)
  8011. {
  8012. if (doc.Range.Bookmarks[key] != null)
  8013. {
  8014. Bookmark mark = doc.Range.Bookmarks[key];
  8015. mark.Text = DickeyValue[key];
  8016. }
  8017. }
  8018. byte[] bytes = null;
  8019. string strFileName = di.TeamName + "-客户报价.doc";
  8020. using (MemoryStream stream = new MemoryStream())
  8021. {
  8022. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  8023. bytes = stream.ToArray();
  8024. }
  8025. return Ok(JsonView(true, "", new
  8026. {
  8027. Data = bytes,
  8028. strFileName,
  8029. }));
  8030. }
  8031. /// <summary>
  8032. /// 团组成本 各模块(酒店,地接,机票)成本提示
  8033. /// </summary>
  8034. /// <param name="dto"></param>
  8035. /// <returns></returns>
  8036. [HttpPost]
  8037. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8038. public async Task<IActionResult> PostGroupCostModulePrompt(GroupCostModulePromptDto dto)
  8039. {
  8040. try
  8041. {
  8042. #region 参数验证
  8043. if (dto.DiId < 0)
  8044. {
  8045. return Ok(JsonView(false, "请传入有效的DiId参数!"));
  8046. }
  8047. List<int> cTableIds = new List<int>() {
  8048. 76 ,//酒店预订
  8049. 77 ,//行程
  8050. 79 ,//车/导游地接
  8051. 80 ,//签证
  8052. 81 ,//邀请/公务活
  8053. 82 ,//团组客户保险
  8054. 85 ,//机票预订
  8055. 98 ,//其他款项
  8056. 285 ,//收款退还
  8057. 751 ,//酒店早餐
  8058. 1015 // 超支费用
  8059. };
  8060. if (dto.CTable < 0 && !cTableIds.Contains(dto.CTable))
  8061. {
  8062. return Ok(JsonView(false, "请传入有效的CTable参数!"));
  8063. }
  8064. #endregion
  8065. //Grp_GroupCostParameter 预算表 Grp_GroupCost 详细费用列表
  8066. var _GroupCostParameters = _usersRep._sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  8067. if (_GroupCostParameters.Count <= 0)
  8068. {
  8069. return Ok(JsonView(false, "暂无该团组成本信息!", new List<dynamic>()));
  8070. }
  8071. if (_GroupCostParameters[0].IsShare == 0)
  8072. {
  8073. return Ok(JsonView(false, "该团组成本未完成!", new List<dynamic>()));
  8074. }
  8075. var _GroupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  8076. //处理date为空问题
  8077. if (_GroupCosts.Count > 0)
  8078. {
  8079. for (int i = 0; i < _GroupCosts.Count; i++)
  8080. {
  8081. if (string.IsNullOrEmpty(_GroupCosts[i].Date))
  8082. {
  8083. if (i > 0)
  8084. {
  8085. _GroupCosts[i].Date = _GroupCosts[i - 1].Date;
  8086. }
  8087. }
  8088. }
  8089. }
  8090. GroupCostModulePromptView _view = new GroupCostModulePromptView();
  8091. List<GroupCostModulePromptInfo> _ModulePromptInfos = new List<GroupCostModulePromptInfo>(); //机票存储多段
  8092. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  8093. string currCode = "";
  8094. #region currCode 验证
  8095. bool isInt = int.TryParse(_GroupCostParameters[0].Currency, out int intCurrency);
  8096. if (isInt)
  8097. {
  8098. var currData = currDatas.Find(it => it.Id == intCurrency);
  8099. if (currData != null)
  8100. {
  8101. currCode = currData.Name;
  8102. }
  8103. }
  8104. else
  8105. {
  8106. currCode = _GroupCostParameters[0].Currency.Trim();
  8107. }
  8108. #endregion
  8109. //op,酒店单段模式存储
  8110. GroupCostModulePromptInfo _ModulePromptInfo = new GroupCostModulePromptInfo()
  8111. {
  8112. CurrencyCode = currCode,
  8113. Rate = _GroupCostParameters[0].Rate,
  8114. CostType = _GroupCostParameters[0].CostType,
  8115. CostTypeStartTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeStartTime).ToString("yyyy-MM-dd"),
  8116. CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeendTime).ToString("yyyy-MM-dd"),
  8117. CostTypeNumber = _GroupCostParameters[0].CostTypenumber
  8118. };
  8119. List<dynamic> _ModuleSubPromptInfo = new List<dynamic>(); // 存储CTbale != 85 的动态数据
  8120. if (_GroupCostParameters.Count == 2)
  8121. {
  8122. _ModulePromptInfo.CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[1].CostTypeendTime).ToString("yyyy-MM-dd");
  8123. }
  8124. foreach (var item in _GroupCostParameters)
  8125. {
  8126. decimal _rate = 1;
  8127. decimal _rate1 = item.Rate;
  8128. decimal _scale = 1;
  8129. //decimal _scale = 0.95M; 雷怡 2024-06-11 10:06:08 屏蔽
  8130. #region 处理地接价格比例 总经理 国交部经理 主管 不下调 其他人 下调 5%
  8131. //var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  8132. //if (userInfo != null)
  8133. //{
  8134. // if (userInfo.DepId == 1 || userInfo.DepId == 7)
  8135. // {
  8136. // if (userInfo.JobPostId == 1 || userInfo.JobPostId == 22 || userInfo.JobPostId == 32)
  8137. // {
  8138. // _scale = 1.00M;
  8139. // }
  8140. // }
  8141. //}
  8142. #endregion
  8143. GroupCostModulePromptInfo modulePromptInfo = new GroupCostModulePromptInfo()
  8144. {
  8145. CurrencyCode = currCode,
  8146. Rate = _rate1,
  8147. CostType = item.CostType,
  8148. CostTypeStartTime = Convert.ToDateTime(item.CostTypeStartTime).ToString("yyyy-MM-dd"),
  8149. CostTypeEndTime = Convert.ToDateTime(item.CostTypeendTime).ToString("yyyy-MM-dd"),
  8150. CostTypeNumber = item.CostTypenumber
  8151. };
  8152. if (_GroupCostParameters.Count > 1)
  8153. {
  8154. modulePromptInfo.CostTypeNumber = item.CostTypenumber;
  8155. }
  8156. else
  8157. {
  8158. modulePromptInfo.CostTypeNumber = item.LYJRS;
  8159. }
  8160. if (dto.CTable == 79)//
  8161. {
  8162. modulePromptInfo.IndividualCost = item.DJCB / modulePromptInfo.CostTypeNumber;
  8163. modulePromptInfo.TotalCost = item.DJCB;
  8164. }
  8165. List<string> costTypes = new List<string>() { "A", "B" };
  8166. List<Grp_GroupCost> _GroupCostsTypeData = new List<Grp_GroupCost>();
  8167. var _GroupCostsDuplicates = _GroupCostParameters.GroupBy(x => x.CostType).Select(y => y.FirstOrDefault());
  8168. if (_GroupCostsDuplicates.Count() == 1)
  8169. {
  8170. _GroupCostsTypeData = _GroupCosts;
  8171. }
  8172. else
  8173. {
  8174. _GroupCostsTypeData = _GroupCosts.Where(it => Convert.ToDateTime(it.Date) >= Convert.ToDateTime(item.CostTypeStartTime) &&
  8175. Convert.ToDateTime(it.Date) <= Convert.ToDateTime(item.CostTypeendTime)).ToList();
  8176. }
  8177. /*
  8178. * 76 酒店预订
  8179. * 77 行程
  8180. * 79 车/导游地接
  8181. * 80 签证
  8182. * 81 邀请/公务活动
  8183. * 82 团组客户保险
  8184. * 85 机票预订
  8185. * 98 其他款项
  8186. * 285 收款退还
  8187. * 751 酒店早餐
  8188. * 1015 超支费用
  8189. */
  8190. switch (dto.CTable)
  8191. {
  8192. case 76: // 酒店预订
  8193. _ModuleSubPromptInfo.AddRange(
  8194. _GroupCostsTypeData.Select(it => new
  8195. {
  8196. it.DAY,
  8197. it.Date,
  8198. it.ACCON,
  8199. it.ITIN,
  8200. it.SGR,
  8201. it.TBR,
  8202. it.JS_ES,
  8203. it.Suite
  8204. })
  8205. );
  8206. break;
  8207. case 79: // 车/导游地接
  8208. _ModuleSubPromptInfo.AddRange(
  8209. _GroupCostsTypeData.Select(it => new
  8210. {
  8211. Date = it.Date, //日期
  8212. CarFee = it.CarCost * _rate * _scale, //车费用
  8213. CarType = it.CarType, //车型
  8214. DriverFee = it.CFS * _rate * _scale, //司机工资
  8215. DriverTipsFee = it.DRVTips * _rate * _scale, //司机小费
  8216. DriverMealSubsidy = it.CFM * _rate * _scale, //司机餐补
  8217. DriverOvertimeFee = it.CFOF * _rate * _scale, //司机超时费用
  8218. GuideFee = it.TGS * _rate * _scale, //导游费用
  8219. GuideOvertimeFee = it.TGOF * _rate * _scale, //导游超时费用
  8220. GuideMealSubsidy = it.TGM * _rate * _scale, //导游餐补
  8221. GuideRoomSubsidy = it.TGA * _rate * _scale, //导游房补
  8222. GuideCarFare = it.TGTF * _rate * _scale, //导游交通费
  8223. GuideSpotFee = it.TGEF * _rate * _scale, //导游景点费
  8224. GuideTipsFee = it.TGTips * _rate * _scale, //导游小费
  8225. Breakfast = it.B * _rate * _scale, //早餐费
  8226. Lunch = it.L * _rate * _scale, //午餐费
  8227. Dinner = it.D * _rate * _scale, //晚餐费
  8228. TicketFee = it.EF * _rate * _scale, //门票费
  8229. SpentCash = it.PC * _rate * _scale, //零用金
  8230. LeadersFee = it.TLF * _rate * _scale, //领队费
  8231. DrinksSnacksFruitFee = it.B_R_F * _rate * _scale, //饮料零食水果
  8232. TravelSupplies = it.TE * _rate * _scale, //出行物资
  8233. })
  8234. );
  8235. break;
  8236. case 85: // 机票
  8237. List<dynamic> datas = new List<dynamic>();
  8238. datas.Add(
  8239. new
  8240. {
  8241. AirType = "经济舱",
  8242. AirNum = item.JJCRS,
  8243. AirDRCB = item.JJCCB,
  8244. AirZCB = (item.JJCRS * item.JJCCB)
  8245. }
  8246. );
  8247. datas.Add(
  8248. new
  8249. {
  8250. AirType = "公务舱",
  8251. AirNum = item.GWCRS,
  8252. AirDRCB = item.GWCCB,
  8253. AirZCB = (item.GWCRS * item.GWCCB)
  8254. }
  8255. );
  8256. var groupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  8257. var initDatas = groupCosts.Select(it => new { date = it.Date, week = it.Date.GetWeek() == "" ? "-" : it.Date.GetWeek(), itinerary = it.ITIN }).ToList();
  8258. modulePromptInfo.Data = new
  8259. {
  8260. airFeeData = datas,
  8261. airInitData = initDatas
  8262. };
  8263. _ModulePromptInfos.Add(modulePromptInfo);
  8264. break;
  8265. default:
  8266. break;
  8267. }
  8268. }
  8269. if (dto.CTable != 85)
  8270. {
  8271. _ModulePromptInfo.Data = _ModuleSubPromptInfo;
  8272. _ModulePromptInfos.Add(_ModulePromptInfo);
  8273. }
  8274. _view.ModulePromptInfos = _ModulePromptInfos;
  8275. return Ok(JsonView(true, "操作成功!", _view));
  8276. }
  8277. catch (Exception ex)
  8278. {
  8279. return Ok(JsonView(false, ex.Message));
  8280. }
  8281. }
  8282. /// <summary>
  8283. /// 根据黑屏代码重新生成行程
  8284. /// </summary>
  8285. /// <param name="dto"></param>
  8286. /// <returns></returns>
  8287. [HttpPost]
  8288. public IActionResult CraeteGroupCostTravel(GroupCostInItDto dto)
  8289. {
  8290. var jw = JsonView(false);
  8291. var Create = _GroupCostRepository.
  8292. CreateGroupCostByBlackCode(dto.Diid);
  8293. jw.Msg = Create.Msg;
  8294. if (Create.Code == 0)
  8295. {
  8296. jw.Code = 200;
  8297. jw.Data = new
  8298. {
  8299. groupCost = Create.Data,
  8300. blackCodeIsTrue = true
  8301. };
  8302. }
  8303. else
  8304. {
  8305. jw.Code = 400;
  8306. jw.Data = new
  8307. {
  8308. groupCost = Create.Data,
  8309. blackCodeIsTrue = false,
  8310. };
  8311. }
  8312. return Ok(jw);
  8313. }
  8314. /// <summary>
  8315. /// 成本获取OP历史车费用
  8316. /// </summary>
  8317. /// <param name="dto"></param>
  8318. /// <returns></returns>
  8319. [HttpPost]
  8320. public async Task<IActionResult> GetHistoryCarData(HistoryCarDataDto dto)
  8321. {
  8322. var jw = JsonView(false);
  8323. try
  8324. {
  8325. List<HistoryCarDataView> dbResult = new List<HistoryCarDataView>();
  8326. //获取现有所有车的数据
  8327. if (!dto.Param.IsNullOrWhiteSpace())
  8328. {
  8329. string sql = $@"
  8330. SELECT gdi.TeamName , gctggr.Area, gctggr.PriceName , gctggrc.Id ,gctggrc.Price , gctggrc.DatePrice , gctggrc.PriceContent , gctggrc.Currency , gctggr.ServiceStartTime , gctggr.ServiceEndTime
  8331. FROM Grp_CarTouristGuideGroundReservationsContent gctggrc inner join Grp_CarTouristGuideGroundReservations gctggr on
  8332. gctggrc.CTGGRId = gctggr.Id inner JOIN Grp_DelegationInfo gdi on gctggr.DiId = gdi.Id LEFT JOIN Sys_SetData ssd on ssd.Id = gctggr.PriceType
  8333. 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
  8334. AND gctggr.ServiceEndTime is not NULL
  8335. ORDER by gctggrc.id DESC
  8336. ";
  8337. dbResult = await _sqlSugar.SqlQueryable<HistoryCarDataView>(sql).ToListAsync();
  8338. var numeberResult = await Task.Run(() =>
  8339. {
  8340. var numberArr = dbResult.Where(x => int.TryParse(x.Area, out int number)).ToList();
  8341. _ = dbResult.RemoveAll(x => int.TryParse(x.Area, out int number));
  8342. return numberArr;
  8343. });
  8344. var cityArr = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  8345. foreach (var item in numeberResult)
  8346. {
  8347. var find = cityArr.Find(x => x.Id == int.Parse(item.Area)) ?? new Grp_NationalTravelFee
  8348. {
  8349. Country = "数据异常!",
  8350. City = string.Empty,
  8351. };
  8352. item.Area = find.Country + " " + find.City;
  8353. }
  8354. dbResult.AddRange(numeberResult);
  8355. if (dto.Param.Contains("、"))
  8356. {
  8357. var sp = dto.Param.Split("、");
  8358. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  8359. .Where(x =>
  8360. {
  8361. return System.Array.Exists(sp, e =>
  8362. {
  8363. bool where = false;
  8364. if (x.Area != null)
  8365. {
  8366. where = x.Area.Contains(e);
  8367. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  8368. {
  8369. return false;
  8370. }
  8371. }
  8372. if (x.PriceName != null && !where)
  8373. {
  8374. where = x.PriceName.Contains(e);
  8375. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  8376. {
  8377. return false;
  8378. }
  8379. }
  8380. return where;
  8381. });
  8382. }).ToList();
  8383. }
  8384. else
  8385. {
  8386. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  8387. .Where(x =>
  8388. {
  8389. bool where = false;
  8390. if (x.Area != null)
  8391. {
  8392. where = x.Area.Contains(dto.Param);
  8393. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  8394. {
  8395. return false;
  8396. }
  8397. }
  8398. if (x.PriceName != null && !where)
  8399. {
  8400. where = x.PriceName.Contains(dto.Param);
  8401. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  8402. {
  8403. return false;
  8404. }
  8405. }
  8406. return where;
  8407. }
  8408. )
  8409. .ToList();
  8410. }
  8411. }
  8412. var view = dbResult.Select(x =>
  8413. {
  8414. decimal dp = 0.00M;
  8415. var startB = DateTime.TryParse(x.Start.ToString(), out DateTime startD);
  8416. var endB = DateTime.TryParse(x.End.ToString(), out DateTime endD);
  8417. if (string.IsNullOrWhiteSpace(x.DatePrice))
  8418. {
  8419. if (startB && endB)
  8420. {
  8421. var timesp = endD.Subtract(startD);
  8422. if ((timesp.Days + 1) != 0)
  8423. {
  8424. dp = x.Price / (timesp.Days + 1);
  8425. }
  8426. }
  8427. }
  8428. else
  8429. {
  8430. dp = x.Price;
  8431. }
  8432. return new
  8433. {
  8434. start = startB ? startD.ToString("yyyy-MM-dd") : "",
  8435. end = endB ? endD.ToString("yyyy-MM-dd") : "",
  8436. x.Area,
  8437. x.id,
  8438. price = x.Price.ToString("F2"),
  8439. x.PriceName,
  8440. x.PriceContent,
  8441. x.TeamName,
  8442. x.DatePrice,
  8443. dayPrice = dp.ToString("F2"),
  8444. };
  8445. }).OrderByDescending(x => x.id).ToList();
  8446. jw = JsonView(true, "获取成功!", view);
  8447. }
  8448. catch (Exception e)
  8449. {
  8450. jw = JsonView(false, e.Message);
  8451. }
  8452. return Ok(jw);
  8453. }
  8454. #endregion
  8455. #region 酒店预订 新 雷怡 2023-12-28 17:45
  8456. /// <summary>
  8457. /// 酒店预订
  8458. /// 酒店费用列表 根据团组Id查询
  8459. /// </summary>
  8460. /// <param name="_dto"></param>
  8461. /// <returns></returns>
  8462. [HttpPost]
  8463. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8464. public async Task<IActionResult> PostHotelReservationsItemsByDiId(HotelReservationItemDto _dto)
  8465. {
  8466. #region 参数验证
  8467. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8468. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8469. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8470. #region 团组操作权限验证 76 酒店预定模块
  8471. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8472. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8473. #endregion
  8474. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8475. #region 页面操作权限验证
  8476. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8477. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8478. #endregion
  8479. #endregion
  8480. return Ok(await _hotelPriceRep._ItemsByDiId(_dto.PortType, _dto.DiId));
  8481. }
  8482. /// <summary>
  8483. /// 酒店预订
  8484. /// 基础数据
  8485. /// </summary>
  8486. /// <param name="_dto"></param>
  8487. /// <returns></returns>
  8488. [HttpPost]
  8489. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8490. public async Task<IActionResult> PostHotelReservationsBasicsDataInit(HotelReservationBasicsDataInitDto _dto)
  8491. {
  8492. #region 参数验证
  8493. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8494. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8495. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8496. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8497. #region 页面操作权限验证
  8498. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8499. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8500. #endregion
  8501. #region 团组操作权限验证 76 酒店预定模块
  8502. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8503. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8504. #endregion
  8505. #endregion
  8506. return Ok(await _hotelPriceRep._BasicsDataInit(_dto.PortType, _dto.DiId));
  8507. }
  8508. /// <summary>
  8509. /// 酒店预订
  8510. /// 创建 入住卷号码
  8511. /// </summary>
  8512. /// <param name="_dto"></param>
  8513. /// <returns></returns>
  8514. [HttpPost]
  8515. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8516. public async Task<IActionResult> PostHotelReservationsCreateCheckVolumeNo(HotelReservationBasicsDataInitDto _dto)
  8517. {
  8518. try
  8519. {
  8520. #region 参数验证
  8521. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8522. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8523. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8524. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8525. #region 页面操作权限验证
  8526. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8527. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8528. #endregion
  8529. #region 团组操作权限验证 76 酒店预定模块
  8530. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8531. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8532. #endregion
  8533. #endregion
  8534. Result data = await _hotelPriceRep._CreateCheckVolumeNo(_dto.DiId);
  8535. if (data.Code != 0)
  8536. {
  8537. return Ok(JsonView(false, data.Msg));
  8538. }
  8539. return Ok(JsonView(true, data.Msg, data.Data));
  8540. }
  8541. catch (Exception ex)
  8542. {
  8543. return Ok(JsonView(false, ex.Message));
  8544. }
  8545. }
  8546. /// <summary>
  8547. /// 酒店预订
  8548. /// 详情
  8549. /// </summary>
  8550. /// <param name="_dto"></param>
  8551. /// <returns></returns>
  8552. [HttpPost]
  8553. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8554. public async Task<IActionResult> PostHotelReservationsDetails(HotelReservationsDetailsDto _dto)
  8555. {
  8556. #region 参数验证
  8557. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入正确的UserId参数"));
  8558. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8559. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入正确的DiId参数"));
  8560. #region 团组操作权限验证 76 酒店预定模块
  8561. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8562. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8563. #endregion
  8564. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8565. #region 页面操作权限验证
  8566. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8567. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8568. #endregion
  8569. #endregion
  8570. return Ok(await _hotelPriceRep._Details(_dto.PortType, _dto.Id));
  8571. }
  8572. /// <summary>
  8573. /// 酒店预订
  8574. /// Add Or Edit
  8575. /// </summary>
  8576. /// <param name="_dto"></param>
  8577. /// <returns></returns>
  8578. [HttpPost]
  8579. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8580. public async Task<IActionResult> PostHotelReservationsAddOrEdit(HotelReservationsAddOrEditDto _dto)
  8581. {
  8582. #region 参数验证
  8583. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8584. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8585. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8586. #region 团组操作权限验证 76 酒店预定模块
  8587. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8588. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8589. #endregion
  8590. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8591. #region 页面操作权限验证
  8592. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8593. if (_dto.Id == 0) // Add
  8594. {
  8595. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  8596. }
  8597. else if (_dto.Id > 1) // Edit
  8598. {
  8599. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  8600. }
  8601. else return Ok(JsonView(false, "请输入正确的数据Id!"));
  8602. #endregion
  8603. #endregion
  8604. JsonView _view = await _hotelPriceRep._AddOrEdit(_dto);
  8605. if (_view.Code != 200)
  8606. {
  8607. return Ok(_view);
  8608. }
  8609. #region 应用推送
  8610. try
  8611. {
  8612. int ccpId = (int)_view.Data.GetType().GetProperty("ccpId").GetValue(_view.Data, null);
  8613. int sign = (int)_view.Data.GetType().GetProperty("sign").GetValue(_view.Data, null);
  8614. int hotelId = (int)_view.Data.GetType().GetProperty("hotelId").GetValue(_view.Data, null);
  8615. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  8616. //自动审核
  8617. await _feeAuditRep.FeeAutomaticAudit(1, _dto.DiId, hotelId);
  8618. }
  8619. catch (Exception ex)
  8620. {
  8621. }
  8622. #endregion
  8623. return Ok(_view);
  8624. }
  8625. /// <summary>
  8626. /// 酒店预订
  8627. /// Del
  8628. /// </summary>
  8629. /// <param name="_dto"></param>
  8630. /// <returns></returns>
  8631. [HttpPost]
  8632. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8633. public async Task<IActionResult> PostHotelReservationsDel(HotelReservationsDelDto _dto)
  8634. {
  8635. #region 参数验证
  8636. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8637. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8638. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8639. #region 团组操作权限验证 76 酒店预定模块
  8640. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8641. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8642. #endregion
  8643. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8644. #region 页面操作权限验证
  8645. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8646. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  8647. #endregion
  8648. #endregion
  8649. return Ok(await _hotelPriceRep._Del(_dto.Id, _dto.UserId));
  8650. }
  8651. /// <summary>
  8652. /// 酒店预订
  8653. /// 生成VOUCHER
  8654. /// 2024.05.06 之前版本
  8655. /// </summary>
  8656. /// <param name="_dto"></param>
  8657. /// <returns></returns>
  8658. [HttpPost]
  8659. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8660. public async Task<IActionResult> PostHotelReservationsCreateVoucher1(HotelReservationsCreateVoucherDto _dto)
  8661. {
  8662. try
  8663. {
  8664. #region 参数验证
  8665. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8666. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8667. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8668. #region 团组操作权限验证 76 酒店预定模块
  8669. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8670. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8671. #endregion
  8672. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8673. #region 页面操作权限验证
  8674. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8675. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8676. #endregion
  8677. #endregion
  8678. Grp_HotelReservations hr = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.Id == _dto.Id).FirstAsync();
  8679. //判断数据是否完整
  8680. if (hr != null)
  8681. {
  8682. if (!string.IsNullOrEmpty(hr.DetermineNo))
  8683. {
  8684. string strFileName = "HotelStatement/";
  8685. Grp_DelegationInfo dele = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == _dto.DiId).FirstAsync();
  8686. if (dele != null)
  8687. strFileName += dele.TourCode;
  8688. //载入模板
  8689. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/酒店预订模板.doc";
  8690. Document doc = new Document(sss);
  8691. DocumentBuilder builder = new DocumentBuilder(doc);
  8692. #region 替换Word模板书签内容
  8693. //这里可以创建个DataTable循环添加书签的值,这里提示一下就不多做修改了
  8694. //入住卷预定号码
  8695. if (doc.Range.Bookmarks["VNO"] != null)
  8696. {
  8697. Bookmark mark = doc.Range.Bookmarks["VNO"];
  8698. mark.Text = hr.CheckNumber;
  8699. }
  8700. //酒店时间
  8701. if (doc.Range.Bookmarks["Date"] != null)
  8702. {
  8703. Bookmark mark = doc.Range.Bookmarks["Date"];
  8704. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  8705. }
  8706. //团号
  8707. if (doc.Range.Bookmarks["TNo"] != null)
  8708. {
  8709. Bookmark mark = doc.Range.Bookmarks["TNo"];
  8710. mark.Text = dele.TourCode;
  8711. }
  8712. //预定号码
  8713. if (doc.Range.Bookmarks["BookingId"] != null)
  8714. {
  8715. Bookmark mark = doc.Range.Bookmarks["BookingId"];
  8716. mark.Text = hr.ReservationsNo;
  8717. }
  8718. if (doc.Range.Bookmarks["HotelConfirmNo"] != null)
  8719. {
  8720. Bookmark mark = doc.Range.Bookmarks["HotelConfirmNo"];
  8721. mark.Text = hr.DetermineNo;
  8722. }
  8723. //酒店城市
  8724. if (doc.Range.Bookmarks["City"] != null)
  8725. {
  8726. Bookmark mark = doc.Range.Bookmarks["City"];
  8727. mark.Text = hr.City;
  8728. }
  8729. //酒店名称
  8730. if (doc.Range.Bookmarks["HName"] != null)
  8731. {
  8732. Bookmark mark = doc.Range.Bookmarks["HName"];
  8733. mark.Text = hr.HotelName;
  8734. }
  8735. //酒店地址
  8736. if (doc.Range.Bookmarks["Address"] != null)
  8737. {
  8738. Bookmark mark = doc.Range.Bookmarks["Address"];
  8739. mark.Text = hr.HotelAddress;
  8740. }
  8741. //酒店电话
  8742. if (doc.Range.Bookmarks["Tel"] != null)
  8743. {
  8744. Bookmark mark = doc.Range.Bookmarks["Tel"];
  8745. mark.Text = hr.HotelTel;
  8746. }
  8747. //酒店传真
  8748. if (doc.Range.Bookmarks["Fax"] != null)
  8749. {
  8750. Bookmark mark = doc.Range.Bookmarks["Fax"];
  8751. if (!string.IsNullOrWhiteSpace(hr.HotelFax))
  8752. {
  8753. mark.Text = hr.HotelFax;
  8754. }
  8755. }
  8756. //入住时间
  8757. if (doc.Range.Bookmarks["CIn"] != null)
  8758. {
  8759. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  8760. Bookmark mark = doc.Range.Bookmarks["CIn"];
  8761. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year;
  8762. }
  8763. //退房时间
  8764. if (doc.Range.Bookmarks["COut"] != null)
  8765. {
  8766. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  8767. Bookmark mark = doc.Range.Bookmarks["COut"];
  8768. mark.Text = dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8769. }
  8770. //客户名称
  8771. if (doc.Range.Bookmarks["GName"] != null)
  8772. {
  8773. string guestName = "";
  8774. string[] clients = new string[] { };
  8775. if (hr.GuestName.Contains(","))
  8776. {
  8777. clients = hr.GuestName.Split(",");
  8778. }
  8779. else
  8780. {
  8781. clients = new string[] { hr.GuestName };
  8782. }
  8783. List<int> clientIds_int = new List<int>();
  8784. if (clients.Length > 0)
  8785. {
  8786. foreach (var item in clients)
  8787. {
  8788. if (item.IsNumeric())
  8789. {
  8790. clientIds_int.Add(int.Parse(item));
  8791. }
  8792. }
  8793. }
  8794. if (clientIds_int.Count > 0)
  8795. {
  8796. var _clientDatas = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && clientIds_int.Contains(it.Id)).ToList();
  8797. foreach (var client in _clientDatas)
  8798. {
  8799. //男
  8800. if (client.Sex == 0) guestName += $"Mr.";
  8801. //女
  8802. else if (client.Sex == 1) guestName += $"Ms.";
  8803. if (!String.IsNullOrEmpty(client.FirstName + client.LastName))
  8804. {
  8805. guestName += $"{string.Join("", client.FirstName.GetTotalPingYin()).ToUpper()} {string.Join("", client.LastName.GetTotalPingYin()).ToUpper()},";
  8806. }
  8807. //guestName += $"{client.Pinyin},";
  8808. }
  8809. if (guestName.Length > 0)
  8810. {
  8811. guestName = guestName.Substring(0, guestName.Length - 1);
  8812. }
  8813. }
  8814. else
  8815. {
  8816. guestName = hr.GuestName;
  8817. }
  8818. Bookmark mark = doc.Range.Bookmarks["GName"];
  8819. mark.Text = guestName;
  8820. }
  8821. //房间介绍
  8822. if (doc.Range.Bookmarks["ROOM"] != null)
  8823. {
  8824. Bookmark mark = doc.Range.Bookmarks["ROOM"];
  8825. mark.Text = hr.RoomExplanation;
  8826. }
  8827. //报价描述
  8828. if (doc.Range.Bookmarks["NOTE"] != null)
  8829. {
  8830. Bookmark mark = doc.Range.Bookmarks["NOTE"];
  8831. Sys_SetData ss = _sqlSugar.Queryable<Sys_SetData>().First(a => a.Id == hr.ReservationsWebsite);
  8832. if (ss != null)
  8833. mark.Text = ss.Name;
  8834. }
  8835. //入住时间
  8836. if (doc.Range.Bookmarks["CheckIn"] != null)
  8837. {
  8838. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  8839. Bookmark mark = doc.Range.Bookmarks["CheckIn"];
  8840. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year + " ";
  8841. }
  8842. //退房时间
  8843. if (doc.Range.Bookmarks["CheckOut"] != null)
  8844. {
  8845. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  8846. Bookmark mark = doc.Range.Bookmarks["CheckOut"];
  8847. mark.Text = " " + dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8848. }
  8849. //日期
  8850. if (doc.Range.Bookmarks["DT"] != null)
  8851. {
  8852. Bookmark mark = doc.Range.Bookmarks["DT"];
  8853. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  8854. }
  8855. //名称
  8856. if (doc.Range.Bookmarks["VName"] != null)
  8857. {
  8858. Bookmark mark = doc.Range.Bookmarks["VName"];
  8859. mark.Text = hr.HotelName;
  8860. }
  8861. //号码
  8862. if (doc.Range.Bookmarks["VOUCHERNO"] != null)
  8863. {
  8864. Bookmark mark = doc.Range.Bookmarks["VOUCHERNO"];
  8865. mark.Text = hr.CheckNumber;
  8866. }
  8867. #endregion
  8868. strFileName += "VOUCHER.doc";
  8869. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  8870. doc.Save(fileDir);
  8871. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  8872. return Ok(JsonView(true, "操作成功!", Url));
  8873. }
  8874. else
  8875. {
  8876. return Ok(JsonView(false, "酒店确定号码未填写,无法生成Voucher!"));
  8877. }
  8878. }
  8879. else
  8880. {
  8881. return Ok(JsonView(false, "该条数据已删除或不存在!"));
  8882. }
  8883. }
  8884. catch (Exception ex)
  8885. {
  8886. return Ok(JsonView(false, ex.Message));
  8887. }
  8888. }
  8889. /// <summary>
  8890. /// 酒店预订
  8891. /// 生成VOUCHER
  8892. /// 2024.05.06 之后版本
  8893. /// </summary>
  8894. /// <param name="_dto"></param>
  8895. /// <returns></returns>
  8896. [HttpPost]
  8897. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8898. public async Task<IActionResult> PostHotelReservationsCreateVoucher(HotelReservationsCreateVoucherDto _dto)
  8899. {
  8900. #region 参数验证
  8901. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  8902. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8903. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  8904. #region 团组操作权限验证 76 酒店预定模块
  8905. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8906. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  8907. #endregion
  8908. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8909. #region 页面操作权限验证
  8910. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8911. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8912. #endregion
  8913. #endregion
  8914. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  8915. //判断数据是否完整
  8916. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "请先录入酒店预订信息!", ""));
  8917. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  8918. string strFileName = "HotelStatement/";
  8919. string guestNames = ""; //格式Mr.xxx Ms.xxx
  8920. List<HotelVoucherInfoView> vouchers = new List<HotelVoucherInfoView>();
  8921. #region 数据处理
  8922. List<int> guestIds = new List<int>();
  8923. int index = 0;
  8924. foreach (var item in hrDtas)
  8925. {
  8926. if (item.GuestName.Contains(","))
  8927. {
  8928. string[] guestIdArr = item.GuestName.Split(',');
  8929. foreach (var guestIdStr in guestIdArr)
  8930. {
  8931. bool guestBool = int.TryParse(guestIdStr, out int guestId);
  8932. if (guestBool)
  8933. {
  8934. guestIds.Add(guestId);
  8935. }
  8936. }
  8937. }
  8938. else guestNames += item.GuestName;
  8939. var voucherInfo = new HotelVoucherInfoView()
  8940. {
  8941. HotelName = item.HotelName,
  8942. CheckInDate = item.CheckInDate,
  8943. CheckOutDate = item.CheckOutDate,
  8944. ConfirmationNumber = item.DetermineNo.Trim(),
  8945. RoomType = item.RoomExplanation
  8946. };
  8947. vouchers.Add(voucherInfo);
  8948. }
  8949. if (guestIds.Count > 0)
  8950. {
  8951. guestIds = guestIds.Distinct().ToList();
  8952. var guestDatas = await _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && guestIds.Contains(it.Id)).ToListAsync();
  8953. if (guestDatas.Count > 0)
  8954. {
  8955. guestNames = "";
  8956. foreach (var guest in guestDatas)
  8957. {
  8958. string guestName = "";
  8959. if (guest.Sex == 0) guestName += @"MR.";
  8960. else if (guest.Sex == 1) guestName += @"MS.";
  8961. if (guest.Pinyin == null) guestName += $"{string.Join("", guest.LastName.GetTotalPingYin()).ToUpper()}/{string.Join("", guest.FirstName.GetTotalPingYin()).ToUpper()}";
  8962. else guestName += @$"{guest.Pinyin.Replace(" ", "")}";
  8963. guestNames += @$"{guestName.Trim()}、";
  8964. }
  8965. if (guestNames.Length > 0)
  8966. {
  8967. guestNames = guestNames.Substring(0, guestNames.Length - 1);
  8968. }
  8969. }
  8970. }
  8971. #endregion
  8972. //载入模板
  8973. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/Voucher-2024Versions.docx";
  8974. Document doc = new Document(sss);
  8975. DocumentBuilder builder = new DocumentBuilder(doc);
  8976. if (doc.Range.Bookmarks["GuestName"] != null)
  8977. {
  8978. Bookmark mark = doc.Range.Bookmarks["GuestName"];
  8979. mark.Text = guestNames;
  8980. }
  8981. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  8982. Aspose.Words.Tables.Table table = allTables[0] as Aspose.Words.Tables.Table;
  8983. vouchers = vouchers.OrderBy(it => it.CheckInDate).ToList();
  8984. for (int i = 1; i <= vouchers.Count; i++)
  8985. {
  8986. HotelVoucherInfoView hviv = vouchers[i - 1];
  8987. builder.MoveToCell(0, i, 0, 0);
  8988. builder.Write(hviv.HotelName);
  8989. builder.MoveToCell(0, i, 1, 0);
  8990. builder.Write(hviv.CheckInDate);
  8991. builder.MoveToCell(0, i, 2, 0);
  8992. builder.Write(hviv.CheckOutDate);
  8993. builder.MoveToCell(0, i, 3, 0);
  8994. builder.Write(hviv.RoomType);
  8995. builder.MoveToCell(0, i, 4, 0);
  8996. builder.Write(hviv.ConfirmationNumber);
  8997. }
  8998. //删除多余行
  8999. int currRowIndex = vouchers.Count + 1;
  9000. int delRows = 21 - currRowIndex;
  9001. if (delRows > 0)
  9002. {
  9003. for (int i = 0; i < delRows; i++)
  9004. {
  9005. table.Rows.RemoveAt(currRowIndex);
  9006. //cultivateRowIndex++;
  9007. }
  9008. }
  9009. strFileName += "VOUCHER.docx";
  9010. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  9011. doc.Save(fileDir);
  9012. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  9013. return Ok(JsonView(true, "操作成功!", Url));
  9014. }
  9015. /// <summary>
  9016. /// 酒店预订
  9017. /// 生成 预定成本 Excel
  9018. /// </summary>
  9019. /// <param name="_dto"></param>
  9020. /// <returns></returns>
  9021. [HttpPost]
  9022. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9023. public async Task<IActionResult> PostHotelReservationsPredictedCostFileDownload(HotelReservations_PCFD_DTO _dto)
  9024. {
  9025. #region 参数验证
  9026. var vadalitor = new HotelReservations_PCFD_DTOFoalidator();
  9027. var vadalitorRes = await vadalitor.ValidateAsync(_dto);
  9028. if (!vadalitorRes.IsValid)
  9029. {
  9030. var errors = new StringBuilder();
  9031. foreach (var valid in vadalitorRes.Errors) errors.AppendLine(valid.ErrorMessage);
  9032. return Ok(JsonView(StatusCodes.Status400BadRequest, errors.ToString(), ""));
  9033. }
  9034. #region 团组操作权限验证 76 酒店预定模块
  9035. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9036. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  9037. #endregion
  9038. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9039. #region 页面操作权限验证
  9040. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9041. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9042. #endregion
  9043. #endregion
  9044. decimal _rate = 1.00M;
  9045. string _currency = "";
  9046. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.STid == 66).ToList();
  9047. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  9048. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "酒店预订费用未录入,不支持预定成本Excel导出", ""));
  9049. Grp_GroupCostParameter _GroupCostParameter = await _sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).FirstAsync();
  9050. if (_GroupCostParameter == null) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用未录入,不支持预定成本Excel导出", ""));
  9051. if (string.IsNullOrEmpty(_GroupCostParameter.Currency))
  9052. {
  9053. return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用“币种为录入”未录入,不支持预定成本Excel导出", ""));
  9054. }
  9055. _currency = _GroupCostParameter.Currency;
  9056. bool isIntType = int.TryParse(_currency, out int currId);
  9057. if (isIntType)
  9058. {
  9059. _currency = currDatas.Find(it => it.Id == currId)?.Name ?? "";
  9060. }
  9061. var teamRate = await _teamRateRep.PostGroupTeamRateItemByDiIdAndCTableId(1, _dto.DiId, 76);
  9062. var currInfo = teamRate.Find(it => it.CurrencyCode.Equals(_currency));
  9063. if (currInfo == null)
  9064. {
  9065. return Ok(JsonView(StatusCodes.Status400BadRequest, $"团组汇率-->酒店模块 {_currency} 币种未设置汇率,不支持预定成本Excel导出", ""));
  9066. }
  9067. if (!_currency.ToUpper().Equals("CNY"))
  9068. {
  9069. _rate = _GroupCostParameter.Rate;
  9070. }
  9071. _rate = currInfo.Rate;
  9072. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  9073. string strFileName = "HotelStatement/";
  9074. string guestNames = ""; //格式Mr.xxx Ms.xxx
  9075. List<HotelReservations_PCFD_View> pcfds = new List<HotelReservations_PCFD_View>();
  9076. var hotelSubData = _sqlSugar.Queryable<Grp_HotelReservationsContent>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToList();
  9077. var ccpData = _sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && it.DIId == _dto.DiId && it.CTable == 76).ToList();
  9078. #region 数据处理
  9079. foreach (var item in hrDtas)
  9080. {
  9081. var ccpInfo = ccpData.Where(it => it.DIId == _dto.DiId && it.CId == item.Id).First();
  9082. var roomInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 1).FirstOrDefault(); //房费
  9083. var breakfastInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 2).FirstOrDefault(); //早餐
  9084. var governmentRentInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 3).FirstOrDefault(); //地税
  9085. var cityTaxInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 4).FirstOrDefault(); //城市税
  9086. string roomCurr = currDatas.Find(it => it.Id == roomInfo.Currency)?.Name ?? "";
  9087. string singleRoomFeeStr = string.Empty,
  9088. doubleRoomFeeStr = string.Empty,
  9089. suiteRoomFeeStr = string.Empty,
  9090. otherRoomFeeStr = string.Empty,
  9091. payMoneyStr = string.Empty,
  9092. cardPriceStr = string.Empty;
  9093. if (roomCurr.Equals(_currency))
  9094. {
  9095. singleRoomFeeStr = $"{item.SingleRoomPrice.ToString("#0.00")} {_currency}";
  9096. doubleRoomFeeStr = $"{item.DoubleRoomPrice.ToString("#0.00")} {_currency}";
  9097. suiteRoomFeeStr = $"{item.SuiteRoomPrice.ToString("#0.00")} {_currency}";
  9098. otherRoomFeeStr = $"{item.OtherRoomPrice.ToString("#0.00")} {_currency}";
  9099. payMoneyStr = $"{ccpInfo.PayMoney.ToString("#0.00")} {_currency}";
  9100. cardPriceStr = $"{item.CardPrice.ToString("#0.00")} {_currency}";
  9101. }
  9102. else
  9103. {
  9104. singleRoomFeeStr = $"{(item.SingleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SingleRoomPrice.ToString("#0.00")} {roomCurr}";
  9105. doubleRoomFeeStr = $"{(item.DoubleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.DoubleRoomPrice.ToString("#0.00")} {roomCurr}";
  9106. suiteRoomFeeStr = $"{(item.SuiteRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SuiteRoomPrice.ToString("#0.00")} {roomCurr}";
  9107. otherRoomFeeStr = $"{(item.OtherRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.OtherRoomPrice.ToString("#0.00")} {roomCurr}";
  9108. payMoneyStr = $"{(ccpInfo.PayMoney / _rate).ToString("#0.00")} {_currency}\r\n{ccpInfo.PayMoney.ToString("#0.00")} {roomCurr}";
  9109. cardPriceStr = $"{(item.CardPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.CardPrice.ToString("#0.00")} {roomCurr}";
  9110. }
  9111. string breakfastPriceStr = string.Empty,
  9112. breakfastCurrency = currDatas.Find(it => it.Id == item.BreakfastCurrency)?.Name ?? "",
  9113. governmentRentStr = string.Empty,
  9114. governmentRentCurrency = currDatas.Find(it => it.Id == item.GovernmentRentCurrency)?.Name ?? "",
  9115. cityTaxStrStr = string.Empty,
  9116. cityTaxStrCurrency = currDatas.Find(it => it.Id == item.CityTaxCurrency)?.Name ?? "";
  9117. breakfastPriceStr = $"{breakfastInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == breakfastInfo?.Currency)?.Name}";
  9118. governmentRentStr = $"{governmentRentInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == governmentRentInfo?.Currency)?.Name}";
  9119. cityTaxStrStr = $"{cityTaxInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == cityTaxInfo?.Currency)?.Name}";
  9120. pcfds.Add(new HotelReservations_PCFD_View()
  9121. {
  9122. City = item.City,
  9123. HotelName = item.HotelName,
  9124. Date = $"{item.CheckInDate} - {item.CheckOutDate}",
  9125. // SingleRoomCount = item.SingleRoomCount,
  9126. SingleRoomPrice = singleRoomFeeStr,
  9127. // DoubleRoomCount = item.DoubleRoomCount,
  9128. DoubleRoomPrice = doubleRoomFeeStr,
  9129. //SuiteRoomCount = item.SuiteRoomCount,
  9130. SuiteRoomPrice = suiteRoomFeeStr,
  9131. OtherRoomPrice = otherRoomFeeStr,
  9132. //OtherRoomCount = item.OtherRoomCount,
  9133. BreakfastPrice = breakfastPriceStr,
  9134. GovernmentRent = governmentRentStr,
  9135. CityTax = cityTaxStrStr,
  9136. RoomExplanation = item.RoomExplanation,
  9137. PayTypeName = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.Id == roomInfo.PayDId).First()?.Name ?? "",
  9138. PayTime = roomInfo.ConsumptionDate,
  9139. BankNo = roomInfo.BankNo,
  9140. PayMoney = payMoneyStr,
  9141. //PayMoneys = ccpInfo.PayMoney.ToString("#0.00"),
  9142. ConsumptionPatterns = roomInfo.ConsumptionPatterns,
  9143. CardPrice = cardPriceStr,
  9144. Remark = ccpInfo.Remark
  9145. });
  9146. }
  9147. #endregion
  9148. //载入模板
  9149. WorkbookDesigner designer = new WorkbookDesigner();
  9150. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/酒店预订成本.xls");
  9151. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == _dto.DiId).First();
  9152. var userInfo = _sqlSugar.Queryable<Sys_Users>().Where(it => it.Id == hrDtas[0].CreateUserId).First();
  9153. designer.SetDataSource("TourNo", groupInfo.TourCode);
  9154. designer.SetDataSource("TeamName", $"{groupInfo.TeamName} 团组成本币种:{_currency} 团组汇率-->酒店模块汇率:{_rate.ToString("#0.0000")}");
  9155. designer.SetDataSource("Opertor", userInfo.CnName);
  9156. DataTable dt = CommonFun.GetDataTableFromIList<HotelReservations_PCFD_View>(pcfds);
  9157. dt.TableName = "ViewMyHotelReservations";
  9158. designer.SetDataSource(dt);
  9159. designer.Process();
  9160. string fileName = $"HotelReservation/{groupInfo.TeamName.Replace("/","").Replace(@"\", "").Trim()}_酒店预订成本_{ DateTime.Now.ToString("yyyyMMddHHmmss")}.xls";
  9161. string serverPath = AppSettingsHelper.Get("ExcelBasePath") + fileName;
  9162. designer.Workbook.Save(serverPath);
  9163. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  9164. #region 删除指定行
  9165. bool singleDel = true, doubleDel = true, suiteDel = true, otherDel = true, zcDel = true, dsDel = true, cssDel = true, cpDel = true, remarkDel = true;
  9166. int singleIndex = dt.Columns["SingleRoomPrice"].Ordinal,
  9167. doubleIndex = dt.Columns["DoubleRoomPrice"].Ordinal,
  9168. suiteIndex = dt.Columns["SuiteRoomPrice"].Ordinal,
  9169. otherIndex = dt.Columns["OtherRoomPrice"].Ordinal,
  9170. zcIndex = dt.Columns["BreakfastPrice"].Ordinal,
  9171. dsIndex = dt.Columns["GovernmentRent"].Ordinal,
  9172. cssIndex = dt.Columns["CityTax"].Ordinal,
  9173. cpIndex = dt.Columns["ConsumptionPatterns"].Ordinal,
  9174. remarkIndex = dt.Columns["Remark"].Ordinal;
  9175. //删除指定列
  9176. foreach (DataRow item in dt.Rows)
  9177. {
  9178. string singleStr = item["SingleRoomPrice"].ToString();
  9179. bool containsDigitButNotZero1 = !singleStr.StartsWith("0") && Regex.IsMatch(singleStr, @"[1-9]");
  9180. if (containsDigitButNotZero1) singleDel = false;
  9181. singleIndex = dt.Columns["SingleRoomPrice"].Ordinal;
  9182. string doubleStr = item["DoubleRoomPrice"].ToString();
  9183. bool containsDigitButNotZero2 = !doubleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  9184. if (containsDigitButNotZero2) doubleDel = false;
  9185. string suiteStr = item["SuiteRoomPrice"].ToString();
  9186. bool containsDigitButNotZero3 = !singleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  9187. if (containsDigitButNotZero3) suiteDel = false;
  9188. string otherStr = item["OtherRoomPrice"].ToString();
  9189. bool containsDigitButNotZero4 = !otherStr.StartsWith("0") && Regex.IsMatch(otherStr, @"[1-9]");
  9190. if (containsDigitButNotZero4) otherDel = false;
  9191. string zcStr = item["BreakfastPrice"].ToString();
  9192. bool containsDigitButNotZero5 = !zcStr.StartsWith("0") && Regex.IsMatch(zcStr, @"[1-9]");
  9193. if (containsDigitButNotZero5) zcDel = false;
  9194. string dsStr = item["GovernmentRent"].ToString();
  9195. bool containsDigitButNotZero6 = !dsStr.StartsWith("0") && Regex.IsMatch(dsStr, @"[1-9]");
  9196. if (containsDigitButNotZero6) dsDel = false;
  9197. string cssStr = item["CityTax"].ToString();
  9198. bool containsDigitButNotZero7 = !cssStr.StartsWith("0") && Regex.IsMatch(cssStr, @"[1-9]");
  9199. if (containsDigitButNotZero7) cssDel = false;
  9200. string cpStr = item["ConsumptionPatterns"].ToString();
  9201. if (!string.IsNullOrEmpty(cpStr)) cpDel = false;
  9202. string remarkStr = item["Remark"].ToString();
  9203. if (!string.IsNullOrEmpty(remarkStr)) remarkDel = false;
  9204. }
  9205. DeleteColumn(serverPath, remarkIndex, remarkDel);
  9206. DeleteColumn(serverPath, cpIndex, cpDel);
  9207. DeleteColumn(serverPath, dsIndex, dsDel);
  9208. DeleteColumn(serverPath, cssIndex, cssDel);
  9209. DeleteColumn(serverPath, zcIndex, zcDel);
  9210. DeleteColumn(serverPath, otherIndex, otherDel);
  9211. DeleteColumn(serverPath, suiteIndex, suiteDel);
  9212. DeleteColumn(serverPath, doubleIndex, doubleDel);
  9213. DeleteColumn(serverPath, singleIndex, singleDel);
  9214. #endregion
  9215. //只保留第一个表格
  9216. DeleteSheet(serverPath);
  9217. return Ok(JsonView(true, "操作成功", url = rst));
  9218. }
  9219. /// <summary>
  9220. /// 删除指定列
  9221. /// </summary>
  9222. /// <param name="file"></param>
  9223. /// <param name="columnIndex"></param>
  9224. /// <param name="isDel"></param>
  9225. private void DeleteColumn(string file, int columnIndex, bool isDel)
  9226. {
  9227. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  9228. //wb.Save(file);
  9229. Aspose.Cells.Worksheet sheet1 = wb.Worksheets[0];
  9230. if (sheet1 != null)
  9231. {
  9232. if (isDel)
  9233. {
  9234. Cells cells = sheet1.Cells;
  9235. cells.DeleteColumn(columnIndex);
  9236. }
  9237. }
  9238. wb.Save(file);
  9239. }
  9240. /// <summary>
  9241. /// 删除sheet
  9242. /// </summary>
  9243. /// <param name="file"></param>
  9244. /// <param name="sheetName"></param>
  9245. private void DeleteSheet(string file, string sheetName = "")
  9246. {
  9247. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  9248. //wb.Save(file);
  9249. List<string> sheets = new List<string>();
  9250. foreach (var item in wb.Worksheets)
  9251. {
  9252. sheets.Add(item.Name);
  9253. }
  9254. if (sheets.Count > 0)
  9255. {
  9256. sheets.RemoveAt(0);//不删除第一个sheet
  9257. foreach (var item in sheets)
  9258. {
  9259. wb.Worksheets.RemoveAt(item);
  9260. }
  9261. }
  9262. wb.Save(file);
  9263. }
  9264. /// <summary>
  9265. /// 酒店预订
  9266. /// 确认单
  9267. /// </summary>
  9268. /// <param name="_dto"></param>
  9269. /// <returns></returns>
  9270. [HttpPost]
  9271. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9272. public async Task<IActionResult> PostHotelReservationsConfirmationSlip(HotelReservationsConfirmationSlipDto _dto)
  9273. {
  9274. try
  9275. {
  9276. #region 参数验证
  9277. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  9278. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  9279. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  9280. #region 团组操作权限验证 76 酒店预定模块
  9281. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9282. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  9283. #endregion
  9284. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9285. #region 页面操作权限验证
  9286. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9287. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9288. #endregion
  9289. #endregion
  9290. //团组信息
  9291. Grp_DelegationInfo di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(a => a.Id == _dto.DiId);
  9292. //酒店数据
  9293. List<Grp_HotelReservations> listhoteldata = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(a => a.DiId == _dto.DiId && a.IsDel == 0).ToListAsync();
  9294. if (listhoteldata.Count < 0)
  9295. {
  9296. return Ok(JsonView(StatusCodes.Status400BadRequest, "当前团组暂无酒店预订信息!", ""));
  9297. }
  9298. //利datatable存储
  9299. DataTable dt = new DataTable();
  9300. dt.Columns.Add("CheckInDate", typeof(string));
  9301. dt.Columns.Add("City", typeof(string));
  9302. dt.Columns.Add("Hotel", typeof(string));
  9303. dt.Columns.Add("Room", typeof(string));
  9304. for (int i = 0; i < listhoteldata.Count; i++)
  9305. {
  9306. DateTime dayStart = Convert.ToDateTime(listhoteldata[i].CheckInDate);
  9307. DateTime dayEnd = Convert.ToDateTime(listhoteldata[i].CheckOutDate);
  9308. while (dayStart < dayEnd)
  9309. {
  9310. string temp = "";
  9311. DataRow row = dt.NewRow();
  9312. row["CheckInDate"] = dayStart.ToString("yyyy-MM-dd");
  9313. row["City"] = listhoteldata[i].City;
  9314. row["Hotel"] = listhoteldata[i].HotelName;
  9315. if (listhoteldata[i].SingleRoomCount > 0)
  9316. {
  9317. temp = listhoteldata[i].SingleRoomCount + "个单间" + "\r\n";
  9318. }
  9319. if (listhoteldata[i].DoubleRoomCount > 0)
  9320. {
  9321. temp = temp + listhoteldata[i].DoubleRoomCount + "个标间" + "\r\n";
  9322. }
  9323. if (listhoteldata[i].SuiteRoomCount > 0)
  9324. {
  9325. temp = temp + listhoteldata[i].SuiteRoomCount + "个套房" + "\r\n";
  9326. }
  9327. if (listhoteldata[i].OtherRoomCount > 0)
  9328. {
  9329. temp = temp + listhoteldata[i].OtherRoomCount + "个其他房型" + "\r\n";
  9330. }
  9331. row["Room"] = temp;
  9332. dt.Rows.Add(row);
  9333. dayStart = dayStart.AddDays(1);
  9334. }
  9335. }
  9336. Dictionary<string, string> dic = new Dictionary<string, string>();
  9337. dic.Add("Dele", di.TeamName);
  9338. dic.Add("City", di.VisitCountry);
  9339. //模板路径
  9340. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/酒店用房确认单-模板.doc";
  9341. //载入模板
  9342. Aspose.Words.Document doc = new Aspose.Words.Document(tempPath);
  9343. DocumentBuilder builder = new DocumentBuilder(doc);
  9344. foreach (var key in dic.Keys)
  9345. {
  9346. builder.MoveToBookmark(key);
  9347. builder.Write(dic[key]);
  9348. }
  9349. //获取word里所有表格
  9350. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  9351. //获取所填表格的序数
  9352. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  9353. var rowStart = tableOne.Rows[0]; //获取第1行
  9354. //循环赋值
  9355. for (int i = 0; i < dt.Rows.Count; i++)
  9356. {
  9357. builder.MoveToCell(0, i + 1, 0, 0);
  9358. builder.Write(dt.Rows[i]["CheckInDate"].ToString());
  9359. builder.MoveToCell(0, i + 1, 1, 0);
  9360. builder.Write(dt.Rows[i]["City"].ToString());
  9361. builder.MoveToCell(0, i + 1, 2, 0);
  9362. builder.Write(dt.Rows[i]["Hotel"].ToString());
  9363. builder.MoveToCell(0, i + 1, 3, 0);
  9364. builder.Write(dt.Rows[i]["Room"].ToString());
  9365. }
  9366. //删除多余行
  9367. while (tableOne.Rows.Count > dt.Rows.Count + 1)
  9368. {
  9369. tableOne.Rows.RemoveAt(dt.Rows.Count + 1);
  9370. }
  9371. string strFileName = di.TeamName + "酒店确认单.doc";
  9372. doc.Save(AppSettingsHelper.Get("WordBasePath") + "HotelStatement/" + strFileName);
  9373. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/HotelStatement/" + strFileName;
  9374. return Ok(JsonView(true, "成功", url));
  9375. }
  9376. catch (Exception ex)
  9377. {
  9378. return Ok(JsonView(StatusCodes.Status400BadRequest, ex.Message, ""));
  9379. }
  9380. }
  9381. #endregion
  9382. #region 团组状态
  9383. /// <summary>
  9384. /// 团组状态列表 Page
  9385. /// </summary>
  9386. /// <param name="dto">团组列表请求dto</param>
  9387. /// <returns></returns>
  9388. [HttpPost]
  9389. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9390. public async Task<IActionResult> PostGroupStatusPageList(GroupStatusListDto dto)
  9391. {
  9392. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  9393. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  9394. {
  9395. string sqlWhere = string.Empty;
  9396. if (dto.IsSure == 0) //未完成
  9397. {
  9398. sqlWhere += string.Format(@" And IsSure = 0");
  9399. }
  9400. else if (dto.IsSure == 1) //已完成
  9401. {
  9402. sqlWhere += string.Format(@" And IsSure = 1");
  9403. }
  9404. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  9405. {
  9406. string tj = dto.SearchCriteria;
  9407. 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}%')",
  9408. tj, tj, tj, tj, tj);
  9409. }
  9410. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  9411. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  9412. VisitDate,VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  9413. From (
  9414. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  9415. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  9416. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  9417. VisitDate,VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  9418. From Grp_DelegationInfo gdi
  9419. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  9420. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  9421. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  9422. Where gdi.IsDel = 0 {0}
  9423. ) temp ", sqlWhere);
  9424. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  9425. var _DelegationList = await _sqlSugar.SqlQueryable<GroupStatusView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  9426. return Ok(JsonView(true, "查询成功!", _DelegationList, total));
  9427. }
  9428. else
  9429. {
  9430. return Ok(JsonView(false, "查询失败"));
  9431. }
  9432. }
  9433. /// <summary>
  9434. /// 团组状态
  9435. /// 设置操作完成
  9436. /// </summary>
  9437. /// <param name="dto">团组列表请求dto</param>
  9438. /// <returns></returns>
  9439. [HttpPost]
  9440. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9441. public async Task<IActionResult> PostGroupStatusSetOperationComplete(GroupStatusSetOperationCompleteDto dto)
  9442. {
  9443. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  9444. Grp_DelegationInfo _DelegationInfo = new Grp_DelegationInfo()
  9445. {
  9446. Id = dto.Id,
  9447. IsSure = 1
  9448. };
  9449. var result = await _sqlSugar.Updateable(_DelegationInfo)
  9450. .UpdateColumns(it => new { it.IsSure })
  9451. .WhereColumns(it => new { it.Id })
  9452. .ExecuteCommandAsync();
  9453. if (result > 0)
  9454. {
  9455. return Ok(JsonView(true, "操作完成!"));
  9456. }
  9457. return Ok(JsonView(false, "操作失败!"));
  9458. }
  9459. #endregion
  9460. #region 保险费用录入
  9461. /// <summary>
  9462. /// 根据团组Id查询保险费用列表
  9463. /// </summary>
  9464. /// <param name="dto"></param>
  9465. /// <returns></returns>
  9466. [HttpPost]
  9467. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9468. public async Task<IActionResult> CustomersByDiId(CustomersByDiIdDto dto)
  9469. {
  9470. try
  9471. {
  9472. Result groupData = await _customersRep.CustomersByDiId(dto);
  9473. if (groupData.Code != 0)
  9474. {
  9475. return Ok(JsonView(false, groupData.Msg));
  9476. }
  9477. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9478. }
  9479. catch (Exception ex)
  9480. {
  9481. return Ok(JsonView(false, ex.Message));
  9482. }
  9483. }
  9484. /// <summary>
  9485. /// 根据保险费用Id查询保险费用详细
  9486. /// </summary>
  9487. /// <param name="dto"></param>
  9488. /// <returns></returns>
  9489. [HttpPost]
  9490. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9491. public async Task<IActionResult> CustomersById(CustomersByIdDto dto)
  9492. {
  9493. try
  9494. {
  9495. Result groupData = await _customersRep.CustomersById(dto);
  9496. if (groupData.Code != 0)
  9497. {
  9498. return Ok(JsonView(false, groupData.Msg));
  9499. }
  9500. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9501. }
  9502. catch (Exception ex)
  9503. {
  9504. return Ok(JsonView(false, ex.Message));
  9505. }
  9506. }
  9507. /// <summary>
  9508. /// 保险费用录入页面初始化绑定
  9509. /// </summary>
  9510. /// <param name="dto"></param>
  9511. /// <returns></returns>
  9512. [HttpPost]
  9513. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9514. public async Task<IActionResult> CustomersInitialize(CustomersInitializeDto dto)
  9515. {
  9516. try
  9517. {
  9518. Result groupData = await _customersRep.CustomersInitialize(dto);
  9519. if (groupData.Code != 0)
  9520. {
  9521. return Ok(JsonView(false, groupData.Msg));
  9522. }
  9523. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9524. }
  9525. catch (Exception ex)
  9526. {
  9527. return Ok(JsonView(false, ex.Message));
  9528. }
  9529. }
  9530. /// <summary>
  9531. /// 保险费用操作(Status:1.新增,2.修改)
  9532. /// </summary>
  9533. /// <param name="dto"></param>
  9534. /// <returns></returns>
  9535. [HttpPost]
  9536. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9537. public async Task<IActionResult> OpCustomers(OpCustomersDto dto)
  9538. {
  9539. try
  9540. {
  9541. Result groupData = await _customersRep.OpCustomers(dto);
  9542. if (groupData.Code != 0)
  9543. {
  9544. return Ok(JsonView(false, groupData.Msg));
  9545. }
  9546. #region 应用推送
  9547. try
  9548. {
  9549. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  9550. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  9551. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  9552. }
  9553. catch (Exception ex)
  9554. {
  9555. }
  9556. #endregion
  9557. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9558. }
  9559. catch (Exception ex)
  9560. {
  9561. return Ok(JsonView(false, ex.Message));
  9562. }
  9563. }
  9564. /// <summary>
  9565. /// 保险文件上传
  9566. /// </summary>
  9567. /// <param name="file"></param>
  9568. /// <returns></returns>
  9569. [HttpPost]
  9570. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9571. public async Task<IActionResult> UploadCus(IFormFile file)
  9572. {
  9573. try
  9574. {
  9575. if (file != null)
  9576. {
  9577. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  9578. //文件名称
  9579. string projectFileName = file.FileName;
  9580. //上传的文件的路径
  9581. string filePath = "";
  9582. if (!Directory.Exists(fileDir))
  9583. {
  9584. Directory.CreateDirectory(fileDir);
  9585. }
  9586. //上传的文件的路径
  9587. filePath = fileDir + $@"\保险费用文件上传\{projectFileName}";
  9588. using (FileStream fs = System.IO.File.Create(filePath))
  9589. {
  9590. file.CopyTo(fs);
  9591. fs.Flush();
  9592. }
  9593. return Ok(JsonView(true, "上传成功!", projectFileName));
  9594. }
  9595. else
  9596. {
  9597. return Ok(JsonView(false, "上传失败!"));
  9598. }
  9599. }
  9600. catch (Exception ex)
  9601. {
  9602. return Ok(JsonView(false, "程序错误!"));
  9603. throw;
  9604. }
  9605. }
  9606. /// <summary>
  9607. /// 保险删除指定文件
  9608. /// </summary>
  9609. /// <param name="dto"></param>
  9610. /// <returns></returns>
  9611. [HttpPost]
  9612. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9613. public async Task<IActionResult> DelFileCus(DelFileDto dto)
  9614. {
  9615. try
  9616. {
  9617. string filePath = "";
  9618. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  9619. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  9620. //int id = 0;
  9621. filePath = fileDir + "/保险费用文件上传/" + dto.fileName;
  9622. // 删除该文件
  9623. try
  9624. {
  9625. System.IO.File.Delete(filePath);
  9626. 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()
  9627. {
  9628. Attachment = "",
  9629. }).ExecuteCommandAsync();
  9630. if (result != 0)
  9631. {
  9632. return Ok(JsonView(true, "成功!"));
  9633. }
  9634. else
  9635. {
  9636. return Ok(JsonView(false, "失败!"));
  9637. }
  9638. }
  9639. catch (Exception)
  9640. {
  9641. 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()
  9642. {
  9643. Attachment = "",
  9644. }).ExecuteCommandAsync();
  9645. if (result != 0)
  9646. {
  9647. return Ok(JsonView(true, "成功!"));
  9648. }
  9649. else
  9650. {
  9651. return Ok(JsonView(false, "失败!"));
  9652. }
  9653. }
  9654. }
  9655. catch (Exception ex)
  9656. {
  9657. return Ok(JsonView(false, "程序错误!"));
  9658. throw;
  9659. }
  9660. }
  9661. /// <summary>
  9662. /// 保险费用操作(删除)
  9663. /// </summary>
  9664. /// <param name="dto"></param>
  9665. /// <returns></returns>
  9666. [HttpPost]
  9667. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9668. public async Task<IActionResult> DelCustomers(DelBaseDto dto)
  9669. {
  9670. try
  9671. {
  9672. var res = await _customersRep.SoftDeleteByIdAsync<Grp_Customers>(dto.Id.ToString(), dto.DeleteUserId);
  9673. if (!res)
  9674. {
  9675. return Ok(JsonView(false, "删除失败"));
  9676. }
  9677. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 82).SetColumns(a => new Grp_CreditCardPayment()
  9678. {
  9679. IsDel = 1,
  9680. DeleteUserId = dto.DeleteUserId,
  9681. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  9682. }).ExecuteCommandAsync();
  9683. return Ok(JsonView(true, "删除成功!"));
  9684. }
  9685. catch (Exception ex)
  9686. {
  9687. return Ok(JsonView(false, "程序错误!"));
  9688. throw;
  9689. }
  9690. }
  9691. #endregion
  9692. #region 接团客户名单 PageId 104
  9693. /// <summary>
  9694. /// 接团客户名单
  9695. /// 迁移数据(慎用!)
  9696. /// </summary>
  9697. /// <param name="dto"></param>
  9698. /// <returns></returns>
  9699. [HttpPost]
  9700. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9701. public async Task<IActionResult> PostTourClientListChange()
  9702. {
  9703. try
  9704. {
  9705. _sqlSugar.ChangeDatabase(DBEnum.OA2014DB);
  9706. //var groupClinetData1
  9707. string sql = string.Format($"Select * From DeleClient Where Isdel = 0");
  9708. var oldOAClientList = await _sqlSugar.SqlQueryable<OA2021_DeleClient>(sql).Where(it => it.Isdel == 0).ToListAsync();
  9709. int updateCount = 0;
  9710. if (oldOAClientList.Count > 0)
  9711. {
  9712. _sqlSugar.ChangeDatabase(DBEnum.OA2023DB);
  9713. _sqlSugar.BeginTran();
  9714. var clientComInfos = _sqlSugar.Queryable<Crm_CustomerCompany>().Where(it => it.IsDel == 0).ToList();
  9715. var clientInfos = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0).ToList();
  9716. foreach (var item in oldOAClientList)
  9717. {
  9718. int comId = 0;
  9719. string format = "yyyy-MM-dd HH:mm:ss";
  9720. string data11 = "1990-01-01 00:00";
  9721. var data1 = IsValidDate(item.OPdate, format);
  9722. if (data1) data11 = item.OPdate;
  9723. //客户公司验证
  9724. if (!string.IsNullOrEmpty(item.Company))
  9725. {
  9726. var clientComInfo = clientComInfos.Where(it => it.CompanyFullName.Equals(item.Company)).FirstOrDefault();
  9727. if (clientComInfo == null) // add
  9728. {
  9729. var addInfo = new Crm_CustomerCompany()
  9730. {
  9731. CompanyAbbreviation = "",
  9732. CompanyFullName = item.Company,
  9733. Address = "",
  9734. PostCodes = "",
  9735. LastedOpUserId = item.OPer,
  9736. LastedOpDt = Convert.ToDateTime(data11),
  9737. CreateUserId = item.OPer,
  9738. CreateTime = Convert.ToDateTime(data11),
  9739. IsDel = 0
  9740. };
  9741. var comId1 = _sqlSugar.Insertable<Crm_CustomerCompany>(addInfo).ExecuteReturnIdentity();
  9742. if (comId1 > 0) comId = comId1;
  9743. }
  9744. else comId = clientComInfo.Id;
  9745. }
  9746. //客户人员验证
  9747. int clientId = 0;
  9748. string name = item.LastName + item.Name;
  9749. if (!string.IsNullOrEmpty(name))
  9750. {
  9751. var clientInfo = clientInfos.Where(it => (it.LastName + it.FirstName).Equals(name)).FirstOrDefault();
  9752. if (clientInfo == null)
  9753. {
  9754. DateTime? dateTime = null;
  9755. var isDt = DateTime.TryParse(item.Birthday, out DateTime birthDayDt);
  9756. if (isDt) dateTime = birthDayDt;
  9757. var addInfo1 = new Crm_DeleClient()
  9758. {
  9759. CrmCompanyId = comId,
  9760. DiId = -1,
  9761. LastName = item.LastName,
  9762. FirstName = item.Name,
  9763. OldName = "",
  9764. Pinyin = item.Pinyin,
  9765. Sex = item.Sex == "男" ? 0 : item.Sex == "女" ? 1 : -1,
  9766. Marriage = 0,
  9767. Phone = item.Phone,
  9768. Job = item.Job,
  9769. BirthDay = dateTime
  9770. };
  9771. var clientId1 = _sqlSugar.Insertable<Crm_DeleClient>(addInfo1).ExecuteReturnIdentity();
  9772. if (clientId1 > 0) clientId = clientId1;
  9773. }
  9774. else clientId = clientInfo.Id;
  9775. }
  9776. if (clientId < 1)
  9777. {
  9778. continue;
  9779. }
  9780. int airType = 0;
  9781. if (item.AirType == "超经舱") airType = 459;
  9782. else if (item.AirType == "公务舱") airType = 458;
  9783. else if (item.AirType == "经济舱") airType = 460;
  9784. else if (item.AirType == "其他") airType = 565;
  9785. else if (item.AirType == "头等舱") airType = 457;
  9786. var _TourClientListEntity = new Grp_TourClientList()
  9787. {
  9788. DiId = item.Diid,
  9789. ClientId = clientId,
  9790. CreateUserId = item.OPer,
  9791. CreateTime = Convert.ToDateTime(data11),
  9792. Remark = item.Remark,
  9793. IsDel = item.Isdel,
  9794. ShippingSpaceTypeId = airType,
  9795. ShippingSpaceSpecialNeeds = item.AirRemark,
  9796. HotelSpecialNeeds = item.RoomType
  9797. };
  9798. var _TourClientList = _sqlSugar.Insertable<Grp_TourClientList>(_TourClientListEntity).ExecuteCommand();
  9799. if (_TourClientList > 0)
  9800. {
  9801. updateCount++;
  9802. }
  9803. }
  9804. _sqlSugar.CommitTran();
  9805. }
  9806. return Ok(JsonView(true, $"更新条数:{updateCount}条"));
  9807. }
  9808. catch (Exception ex)
  9809. {
  9810. _sqlSugar.RollbackTran();
  9811. return Ok(JsonView(false, ex.Message));
  9812. }
  9813. return Ok(JsonView(true));
  9814. }
  9815. private bool IsValidDate(string dateString, string format)
  9816. {
  9817. DateTime dateValue;
  9818. bool valid = DateTime.TryParseExact(dateString, format, CultureInfo.InvariantCulture, DateTimeStyles.None, out dateValue);
  9819. return valid;
  9820. }
  9821. /// <summary>
  9822. /// 接团客户名单
  9823. /// 根据团组Id查询List
  9824. /// </summary>
  9825. /// <param name="dto"></param>
  9826. /// <returns></returns>
  9827. [HttpPost]
  9828. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9829. public async Task<IActionResult> PostTourClientListByDiId(TourClientListByDiIdDto _dto)
  9830. {
  9831. #region 参数验证
  9832. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId"));
  9833. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9834. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId!"));
  9835. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9836. #region 页面操作权限验证
  9837. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9838. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9839. #endregion
  9840. #endregion
  9841. var viewData = await _tourClientListRep._ItemByDiId(_dto.PortType, _dto.DiId);
  9842. if (viewData.Code != 0)
  9843. {
  9844. return Ok(JsonView(false, viewData.Msg));
  9845. }
  9846. return Ok(JsonView(viewData.Data));
  9847. }
  9848. /// <summary>
  9849. /// 接团客户名单
  9850. /// 基础数据 Init
  9851. /// </summary>
  9852. /// <param name="_dto"></param>
  9853. /// <returns></returns>
  9854. [HttpPost]
  9855. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9856. public async Task<IActionResult> PostTourClientListBasicDataInit(TourClientListBasicDataInitDto _dto)
  9857. {
  9858. #region 参数验证
  9859. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9860. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9861. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9862. #region 页面操作权限验证
  9863. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9864. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9865. #endregion
  9866. #endregion
  9867. var viewData = await _tourClientListRep._BasicDataInit(_dto.PortType);
  9868. if (viewData.Code != 0)
  9869. {
  9870. return Ok(JsonView(false, viewData.Msg));
  9871. }
  9872. return Ok(JsonView(viewData.Data));
  9873. }
  9874. /// <summary>
  9875. /// 接团客户名单
  9876. /// 根据 Id查询 Details
  9877. /// </summary>
  9878. /// <param name="_dto"></param>
  9879. /// <returns></returns>
  9880. [HttpPost]
  9881. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9882. public async Task<IActionResult> PostTourClientListDetails(TourClientListDetailsDto _dto)
  9883. {
  9884. #region 参数验证
  9885. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9886. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9887. if (_dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  9888. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9889. #region 页面操作权限验证
  9890. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9891. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9892. #endregion
  9893. #endregion
  9894. var viewData = await _tourClientListRep._Details(_dto.PortType, _dto.Id);
  9895. if (viewData.Code != 0)
  9896. {
  9897. return Ok(JsonView(false, viewData.Msg));
  9898. }
  9899. return Ok(JsonView(viewData.Data));
  9900. }
  9901. /// <summary>
  9902. /// 接团客户名单
  9903. /// Add Or Edit
  9904. /// </summary>
  9905. /// <param name="_dto"></param>
  9906. /// <returns></returns>
  9907. [HttpPost]
  9908. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9909. public async Task<IActionResult> PostTourClientListAddOrEdit(TourClientListAddOrEditDto _dto)
  9910. {
  9911. #region 参数验证
  9912. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9913. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9914. if (_dto.Id < 0) return Ok(JsonView(false, "请传入有效的Id参数!"));
  9915. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9916. #region 页面操作权限验证
  9917. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9918. if (_dto.Id == 0) //添加
  9919. {
  9920. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  9921. }
  9922. else if (_dto.Id >= 0) //修改
  9923. {
  9924. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  9925. }
  9926. #endregion
  9927. #endregion
  9928. var viewData = await _tourClientListRep._AddOrEdit(_dto);
  9929. if (viewData.Code != 0)
  9930. {
  9931. return Ok(JsonView(false, viewData.Msg));
  9932. }
  9933. return Ok(JsonView(true));
  9934. }
  9935. /// <summary>
  9936. /// 接团客户名单
  9937. /// AddMultiple(添加多个)
  9938. /// </summary>
  9939. /// <param name="_dto"></param>
  9940. /// <returns></returns>
  9941. [HttpPost]
  9942. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9943. public async Task<IActionResult> PostTourClientListAddMultiple(TourClientListAddMultipleDto _dto)
  9944. {
  9945. #region 参数验证
  9946. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9947. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9948. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9949. #region 页面操作权限验证
  9950. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9951. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  9952. #endregion
  9953. #endregion
  9954. var viewData = await _tourClientListRep._AddMultiple(_dto);
  9955. if (viewData.Code != 0)
  9956. {
  9957. return Ok(JsonView(false, viewData.Msg));
  9958. }
  9959. return Ok(JsonView(true));
  9960. }
  9961. /// <summary>
  9962. /// 接团客户名单
  9963. /// Del
  9964. /// </summary>
  9965. /// <param name="_dto"></param>
  9966. /// <returns></returns>
  9967. [HttpPost]
  9968. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9969. public async Task<IActionResult> PostTourClientListDel(TourClientListDelDto _dto)
  9970. {
  9971. #region 参数验证
  9972. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9973. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9974. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9975. #region 页面操作权限验证
  9976. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9977. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  9978. #endregion
  9979. #endregion
  9980. var viewData = await _tourClientListRep._Del(_dto.Id, _dto.UserId);
  9981. if (viewData.Code != 0)
  9982. {
  9983. return Ok(JsonView(false, viewData.Msg));
  9984. }
  9985. return Ok(JsonView(true));
  9986. }
  9987. /// <summary>
  9988. /// 接团客户名单
  9989. /// 文件下载 客户名单
  9990. /// </summary>
  9991. /// <param name="_dto"></param>
  9992. /// <returns></returns>
  9993. [HttpPost]
  9994. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9995. public async Task<IActionResult> PostTourClientListDownloadFile(PostTourClientListDownloadFile _dto)
  9996. {
  9997. #region 参数验证
  9998. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9999. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10000. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数"));
  10001. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10002. #region 页面操作权限验证
  10003. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10004. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  10005. #endregion
  10006. #endregion
  10007. string clientSql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  10008. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  10009. From Grp_TourClientList tcl
  10010. Left Join
  10011. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  10012. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  10013. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  10014. From Crm_DeleClient dc
  10015. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  10016. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  10017. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  10018. Where dc.IsDel = 0) temp
  10019. On temp.DcId =tcl.ClientId
  10020. Where tcl.IsDel = 0 And tcl.DiId = {0}", _dto.DiId);
  10021. List<TourClientListDetailsView> DcList = await _sqlSugar.SqlQueryable<TourClientListDetailsView>(clientSql).ToListAsync();
  10022. if (DcList.Count < 0) return Ok(JsonView(false, "该团未录入客户名单!"));
  10023. //载入模板
  10024. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/dwon_团组人员列表模板.doc";
  10025. if (_dto.Language == 1)
  10026. {
  10027. tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/EN_Down_团组人员列表模板.doc";
  10028. }
  10029. //载入模板
  10030. var doc = new Document(tempPath);
  10031. DocumentBuilder builder = new DocumentBuilder(doc);
  10032. //获取word里所有表格
  10033. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  10034. //获取所填表格的序数
  10035. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  10036. var rowStart = tableOne.Rows[0]; //获取第1行
  10037. if (_dto.Language == 0)
  10038. {
  10039. //循环赋值
  10040. for (int i = 0; i < DcList.Count; i++)
  10041. {
  10042. builder.MoveToCell(0, i + 1, 0, 0);
  10043. builder.Write(DcList[i].LastName + DcList[i].FirstName);
  10044. builder.MoveToCell(0, i + 1, 1, 0);
  10045. int sex = DcList[i].Sex;
  10046. string sexStr = string.Empty;
  10047. if (sex == 0) sexStr = "男";
  10048. else if (sex == 1) sexStr = "女";
  10049. else sexStr = "未设置";
  10050. builder.Write(sexStr);
  10051. builder.MoveToCell(0, i + 1, 2, 0);
  10052. string birthDay = DcList[i].BirthDay;
  10053. string birthDayStr = string.Empty;
  10054. if (!string.IsNullOrEmpty(birthDay))
  10055. {
  10056. birthDayStr = Convert.ToDateTime(birthDay).ToString("yyyy-MM-dd");
  10057. }
  10058. builder.Write(birthDayStr);
  10059. builder.MoveToCell(0, i + 1, 3, 0);
  10060. string company = "";
  10061. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  10062. {
  10063. company = DcList[i].CompanyFullName.ToString();
  10064. }
  10065. builder.Write(company);
  10066. builder.MoveToCell(0, i + 1, 4, 0);
  10067. builder.Write(DcList[i].Job);
  10068. }
  10069. }
  10070. else if (_dto.Language == 1)
  10071. {
  10072. List<Res_PositionEnglishComparison> listPEC = _setDataRep.Query<Res_PositionEnglishComparison>(s => s.IsDel == 0).ToList();
  10073. List<Res_CompanyEnglishComparison> listCEC = _setDataRep.Query<Res_CompanyEnglishComparison>(s => s.IsDel == 0).ToList();
  10074. List<string> transArrayStr = new List<string>();
  10075. string transStrRes1 = "";
  10076. for (int i = 0; i < DcList.Count; i++)
  10077. {
  10078. var dc = DcList[i];
  10079. if (dc.CompanyFullName.Equals("暂无")) dc.CompanyFullName = "-";
  10080. if (dc.Job.Equals("暂无")) dc.Job = "-";
  10081. string str1 = $"{i}&{dc.CompanyFullName}&{dc.Job}";
  10082. if (DcList.Count - 1 == i) transStrRes1 += str1;
  10083. else transStrRes1 += $"{str1}|";
  10084. }
  10085. //string transStrRes = "0 & Provincial Health & Health Commission Deputy Director | 1 & Provincial People's Hospital & Provincial People's Hospital Chief Accountant | 2 & Secretary of the Party Committee of the Affiliated Hospital of North Sichuan Medical College & North Sichuan Medical College | 3 & Provincial Health Commission Planning & Provincial Health Commission Planning and Information Division Director | 4 &-& Deputy Director | 5 & Provincial Health Commission population and Family Division & Provincial Health Commission population and Family Division Director";
  10086. string transStrRes = "";
  10087. if (transStrRes1.Length > 0 )
  10088. {
  10089. transStrRes = await _juHeApi.GetTextTranslateAsync(transStrRes1);
  10090. }
  10091. //0、 Deputy Director of the Provincial Health and Health Commission | 1、 Chief Accountant of the provincial People's Hospital | 2、 Secretary of the Party Committee of the Affiliated Hospital of North Sichuan Medical College | 3、 Director of the Planning and Information Department of the Provincial Health and Health Commission | 4、 Deputy Director | 5、 Director of the population and Family Department of the Provincial Health and Health Commission | 3、 Secretary of the Party Committee of the Affiliated Hospital of North Sichuan Medical College | 4、 Deputy Director of the Planning and Information Department of the Provincial Health and Health Commission | 4、 Deputy Director of the population and Family Department of the Provincial Health and Health Commission | 5、 Director of the population and Family Department of the Provincial Health and Health Commission
  10092. //await _juHeApi.GetTextTranslateAsync(DcList[i].CompanyFullName.ToString().Trim()) ?? "";
  10093. //List<string> transArray = new List<string> { };
  10094. List<TranslateInfo> transArray = new List<TranslateInfo>();
  10095. if (transStrRes.Contains("|"))
  10096. {
  10097. string[] transArray1 = transStrRes.Split('|');
  10098. if (transArray1.Length > 0)
  10099. {
  10100. foreach (var item in transArray1)
  10101. {
  10102. if (item.Contains("&"))
  10103. {
  10104. string[] transArray2 = item.Split('&');
  10105. int index = 0;
  10106. string companyName = "", job = "";
  10107. if (transArray2.Length > 0)
  10108. {
  10109. bool success = int.TryParse(transArray2[0].Trim(), out index);
  10110. if (1 < transArray2.Length) companyName = transArray2[1];
  10111. if (2 < transArray2.Length) job = transArray2[2];
  10112. }
  10113. transArray.Add(new TranslateInfo { Index = index, CompanyName = companyName, Job = job });
  10114. }
  10115. }
  10116. }
  10117. }
  10118. //循环赋值
  10119. for (int i = 0; i < DcList.Count; i++)
  10120. {
  10121. string PYName = "";
  10122. if (DcList[i].Pinyin.Length > 0 && DcList[i].Pinyin.IndexOf('/') > -1)
  10123. {
  10124. string PY_Last = DcList[i].Pinyin.Split('/')[0];
  10125. string PY_First = DcList[i].Pinyin.Split('/')[1];
  10126. PYName = PY_First + " " + PY_Last;
  10127. }
  10128. else
  10129. {
  10130. string PY_Last = DcList[i].LastName.GetTotalPingYin().Count > 0 ? DcList[i].LastName.GetTotalPingYin()[0].ToUpper() : "";
  10131. string PY_First = DcList[i].FirstName.GetTotalPingYin().Count > 0 ? DcList[i].FirstName.GetTotalPingYin()[0].ToUpper() : "";
  10132. PYName = PY_First + " " + PY_Last;
  10133. }
  10134. builder.MoveToCell(0, i + 1, 0, 0);
  10135. builder.Write(PYName);
  10136. string sex = DcList[i].Sex == 0 ? "Male" : DcList[i].Sex == 1 ? "Female" : "";
  10137. builder.MoveToCell(0, i + 1, 1, 0);
  10138. builder.Write(sex);
  10139. DateTime birthDt;
  10140. bool b_birth = DateTime.TryParse(DcList[i].BirthDay, out birthDt);
  10141. string birthday = b_birth ? birthDt.ToString("yyyy-MM-dd") : " ";
  10142. builder.MoveToCell(0, i + 1, 2, 0);
  10143. builder.Write(birthday);
  10144. string company = string.Empty,job = string.Empty;
  10145. var dcTransInfo = transArray.FirstOrDefault(s => s.Index == i);
  10146. if (dcTransInfo != null)
  10147. {
  10148. company = dcTransInfo.CompanyName;
  10149. job = dcTransInfo.Job;
  10150. }
  10151. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  10152. {
  10153. //查询对照表
  10154. Res_CompanyEnglishComparison tempCec = listCEC.FirstOrDefault(s => s.zhName.Contains(DcList[i].CompanyFullName.ToString().Trim()));
  10155. if (tempCec != null)
  10156. {
  10157. company = tempCec.enName;
  10158. }
  10159. //翻译
  10160. else
  10161. {
  10162. }
  10163. }
  10164. builder.MoveToCell(0, i + 1, 3, 0);
  10165. builder.Write(company);
  10166. if (!string.IsNullOrEmpty(DcList[i].Job.ToString()))
  10167. {
  10168. //查询对照表
  10169. Res_PositionEnglishComparison tempPec = listPEC.FirstOrDefault(s => s.zhName == DcList[i].Job.ToString().Trim());
  10170. if (tempPec != null)
  10171. {
  10172. job = tempPec.enName;
  10173. }
  10174. //翻译
  10175. else
  10176. {
  10177. }
  10178. }
  10179. builder.MoveToCell(0, i + 1, 4, 0);
  10180. builder.Write(job);
  10181. }
  10182. }
  10183. //删除多余行
  10184. while (tableOne.Rows.Count > DcList.Count + 1)
  10185. {
  10186. tableOne.Rows.RemoveAt(DcList.Count + 1);
  10187. }
  10188. string fileName = "组团人员名单(" + DateTime.Now.ToString("yyyyhhddHHmmss") + ").doc";
  10189. var fileDir = AppSettingsHelper.Get("WordBasePath") + "TourClientList/" + fileName;
  10190. doc.Save(fileDir);
  10191. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/TourClientList/" + fileName;
  10192. return Ok(JsonView(true, "操作成功!", Url));
  10193. }
  10194. private class TranslateInfo
  10195. {
  10196. public int Index { get; set; }
  10197. public string CompanyName { get; set; }
  10198. public string Job { get; set; }
  10199. }
  10200. #endregion
  10201. #region 团组倒推表
  10202. /// <summary>
  10203. /// 倒推表基础数据
  10204. /// Init
  10205. /// </summary>
  10206. /// <param name="dto"></param>
  10207. /// <returns></returns>
  10208. [HttpPost]
  10209. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10210. public async Task<IActionResult> PostInvertedListInit()
  10211. {
  10212. var viewData = await _invertedListRep._Init();
  10213. if (viewData.Code != 0)
  10214. {
  10215. return Ok(JsonView(false, viewData.Msg));
  10216. }
  10217. return Ok(JsonView(viewData.Data));
  10218. }
  10219. /// <summary>
  10220. /// 倒推表
  10221. /// Info
  10222. /// </summary>
  10223. /// <param name="dto"></param>
  10224. /// <returns></returns>
  10225. [HttpPost]
  10226. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10227. public async Task<IActionResult> PostInvertedListInfo(InvertedListCreateDto dto)
  10228. {
  10229. var viewData = await _invertedListRep._Info(dto.PortType, dto.DiId);
  10230. if (viewData.Code != 0)
  10231. {
  10232. return Ok(JsonView(false, viewData.Msg));
  10233. }
  10234. return Ok(JsonView(viewData.Data));
  10235. }
  10236. /// <summary>
  10237. /// 倒推表
  10238. /// Create
  10239. /// </summary>
  10240. /// <param name="dto"></param>
  10241. /// <returns></returns>
  10242. [HttpPost]
  10243. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10244. public async Task<IActionResult> PostInvertedListCreate(InvertedListCreateDto dto)
  10245. {
  10246. var viewData = await _invertedListRep._Create(dto.PortType, dto.DiId);
  10247. if (viewData.Code != 0)
  10248. {
  10249. return Ok(JsonView(false, viewData.Msg));
  10250. }
  10251. return Ok(JsonView(viewData.Data));
  10252. }
  10253. /// <summary>
  10254. /// 倒推表
  10255. /// Update
  10256. /// </summary>
  10257. /// <param name="dto"></param>
  10258. /// <returns></returns>
  10259. [HttpPost]
  10260. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10261. public async Task<IActionResult> PostInvertedListUpdate(InvertedListUpdateDto dto)
  10262. {
  10263. var viewData = await _invertedListRep._Update(dto);
  10264. if (viewData.Code != 0)
  10265. {
  10266. return Ok(JsonView(false, viewData.Msg));
  10267. }
  10268. return Ok(JsonView(viewData.Data));
  10269. }
  10270. /// <summary>
  10271. /// 倒推表
  10272. /// File Download
  10273. /// </summary>
  10274. /// <param name="dto"></param>
  10275. /// <returns></returns>
  10276. [HttpPost]
  10277. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10278. public async Task<IActionResult> PostInvertedListFileDownload(InvertedListFileDownloadDto dto)
  10279. {
  10280. var info2 = await _invertedListRep._Info(1, dto.DiId);
  10281. if (info2.Code != 0)
  10282. {
  10283. return Ok(JsonView(false, "倒推表数据未生成,请先生成倒退表数据!"));
  10284. }
  10285. var info1 = info2.Data as InvertedListInfoView;
  10286. var info = await _invertedListRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == dto.DiId).FirstAsync();
  10287. string teamName = "";
  10288. if (info != null) teamName = info.TeamName;
  10289. //载入模板
  10290. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/倒退表模板20200617.doc");
  10291. DocumentBuilder builder = new DocumentBuilder(doc);
  10292. //利用键值对存放数据
  10293. Dictionary<string, string> dic = new Dictionary<string, string>();
  10294. dic.Add("TeamName", teamName);
  10295. dic.Add("StartTime", info1.AirportdDropOffDt.ConvertToDatetime()); //开始时间
  10296. dic.Add("BPtime", info1.ApprovalDataDt.ConvertToDatetime());
  10297. dic.Add("BPRemark", info1.ApprovalDataRemark);
  10298. dic.Add("SQtime", info1.ApprovalDt.ConvertToDatetime());
  10299. dic.Add("SQRemark", info1.ApprovalRemark);
  10300. dic.Add("CPJtime", info1.IssueApprovalDt.ConvertToDatetime());
  10301. dic.Add("CPJRemark", info1.IssueApprovalRemark);
  10302. //dic.Add("HZtime", info1.ApplyPassportDt.ConvertToDatetime());
  10303. //dic.Add("HZRemark", info1.ApplyPassportRemark);
  10304. dic.Add("QZtime", info1.VisaInformationDt.ConvertToDatetime());
  10305. dic.Add("QZRemark", info1.VisaInformationRemark);
  10306. dic.Add("SQQZtime", info1.SendVisaDt.ConvertToDatetime());
  10307. dic.Add("SQQZRemark", info1.SendVisaRemark);
  10308. dic.Add("CQtime", info1.IssueVisaDt.ConvertToDatetime());
  10309. dic.Add("CQRemark", info1.IssueVisaRemark);
  10310. dic.Add("XQHtime", info1.PreTripMeetingDt.ConvertToDatetime());
  10311. dic.Add("XQHRemark", info1.PreTripMeetingRemark);
  10312. dic.Add("SJtime", info1.AirportdDropOffDt.ConvertToDatetime());
  10313. dic.Add("SJRemark", info1.AirportdDropOffRemark);
  10314. #region 填充word模板书签内容
  10315. foreach (var key in dic.Keys)
  10316. {
  10317. builder.MoveToBookmark(key);
  10318. builder.Write(dic[key]);
  10319. }
  10320. #endregion
  10321. var fileDir = AppSettingsHelper.Get("WordBasePath");
  10322. string fileName = $"{teamName}团出行准备流程表.doc";
  10323. string filePath = fileDir + $@"InvertedList/{fileName}";
  10324. doc.Save(filePath);
  10325. string Url = $@"{AppSettingsHelper.Get("WordBaseUrl")}Office/Word/InvertedList/{fileName}";
  10326. return Ok(JsonView(true, "操作成功!", Url));
  10327. }
  10328. #endregion
  10329. #region 三公签证费用(签证费、代办费)
  10330. /// <summary>
  10331. /// 三公签证费用(签证费、代办费)
  10332. /// List
  10333. /// </summary>
  10334. /// <returns></returns>
  10335. [HttpPost]
  10336. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10337. public async Task<IActionResult> PostVisaFeeList(VisaFeeListDto _dto)
  10338. {
  10339. var _view = await _visaFeeInfoRep._List(_dto.PortType, _dto.DiId);
  10340. if (_view.Code != 0)
  10341. {
  10342. return Ok(JsonView(false, _view.Msg));
  10343. }
  10344. return Ok(JsonView(true, "操作成功!", _view.Data));
  10345. }
  10346. /// <summary>
  10347. /// 三公签证费用(签证费、代办费)
  10348. /// Add Or Update
  10349. /// </summary>
  10350. /// <returns></returns>
  10351. [HttpPost]
  10352. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10353. public async Task<IActionResult> PostVisaFeeAddAndUpdate(VisaFeeAddAndUpdateDto _dto)
  10354. {
  10355. var _view = await _visaFeeInfoRep._Update(_dto);
  10356. if (_view.Code != 0)
  10357. {
  10358. return Ok(JsonView(false, _view.Msg));
  10359. }
  10360. return Ok(JsonView(true, _view.Msg));
  10361. }
  10362. #endregion
  10363. #region 酒店询价
  10364. /// <summary>
  10365. /// 酒店询价
  10366. /// Init
  10367. /// </summary>
  10368. /// <param name="dto"></param>
  10369. /// <returns></returns>
  10370. [HttpPost]
  10371. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10372. public async Task<IActionResult> PostHotelInquiryInit()
  10373. {
  10374. var res = await _hotelInquiryRep._Init();
  10375. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10376. return Ok(JsonView(true, res.Msg, res.Data));
  10377. }
  10378. /// <summary>
  10379. /// 酒店询价
  10380. /// page Item
  10381. /// </summary>
  10382. /// <param name="_dto"></param>
  10383. /// <returns></returns>
  10384. [HttpPost]
  10385. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10386. public async Task<IActionResult> PostHotelInquiryPageItem(HotelInquiryPageItemDto _dto)
  10387. {
  10388. var res = await _hotelInquiryRep._PageItem(_dto.PageIndex, _dto.PageSize, _dto.PortType, _dto.DiId);
  10389. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10390. var view = res.Data as PageDataViewBase;
  10391. return Ok(JsonView(true, res.Msg, view.Data, view.Total));
  10392. }
  10393. /// <summary>
  10394. /// 酒店询价
  10395. /// info
  10396. /// </summary>
  10397. /// <param name="_dto"></param>
  10398. /// <returns></returns>
  10399. [HttpPost]
  10400. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10401. public async Task<IActionResult> PostHotelInquiryInfo(HotelInquiryInfoDto _dto)
  10402. {
  10403. var res = await _hotelInquiryRep._Info(_dto.PortType, _dto.Id);
  10404. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10405. return Ok(JsonView(true, res.Msg, res.Data));
  10406. }
  10407. /// <summary>
  10408. /// 酒店询价
  10409. /// Add Or Edit
  10410. /// </summary>
  10411. /// <param name="_dto"></param>
  10412. /// <returns></returns>
  10413. [HttpPost]
  10414. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10415. public async Task<IActionResult> PostHotelInquiryAddOrEdit(HotelInquiryAddOrEditDto _dto)
  10416. {
  10417. var res = await _hotelInquiryRep._AddOrEdit(_dto);
  10418. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10419. return Ok(JsonView(true, res.Msg, res.Data));
  10420. }
  10421. /// <summary>
  10422. /// 酒店询价
  10423. /// Del
  10424. /// </summary>
  10425. /// <param name="_dto"></param>
  10426. /// <returns></returns>
  10427. [HttpPost]
  10428. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10429. public async Task<IActionResult> PostHotelInquiryDel(HotelInquiryDelDto _dto)
  10430. {
  10431. var res = await _hotelInquiryRep._Del(_dto.Id, _dto.DeleteUserId);
  10432. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10433. return Ok(JsonView(true, res.Msg, res.Data));
  10434. }
  10435. #endregion
  10436. #region 下载匹配op行程单
  10437. /// <summary>
  10438. /// 匹配op行程单
  10439. /// Init
  10440. /// </summary>
  10441. /// <param name="dto">团组列表请求dto</param>
  10442. /// <returns></returns>
  10443. [HttpPost]
  10444. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10445. public async Task<IActionResult> PostMateOpGroupInit(MateOpGroupInitDto dto)
  10446. {
  10447. Stopwatch stopwatch = Stopwatch.StartNew(); // 创建并启动Stopwatch
  10448. if (dto.CurrUserId < 1) return Ok(JsonView(false, MsgTips.UserId));
  10449. bool isDepStatus = await GeneralMethod.IsMarketingStaff(dto.CurrUserId);
  10450. List<Grp_DelegationInfo> groupInfos = new List<Grp_DelegationInfo>();
  10451. groupInfos = _sqlSugar.Queryable<Grp_DelegationInfo>()
  10452. .Where(it => it.IsDel == 0)
  10453. .WhereIF(isDepStatus, it => it.JietuanOperator == dto.CurrUserId)
  10454. .OrderByDescending(it => it.CreateUserId)
  10455. .ToList();
  10456. if (groupInfos.Count < 1) return Ok(JsonView(false, "暂无和你相关的团组信息!"));
  10457. var country = groupInfos.Select(it => it.VisitCountry).ToList();
  10458. var diids = groupInfos.Select(it => it.Id).ToList();
  10459. List<string> countrys = new List<string>();
  10460. foreach (var item in country)
  10461. {
  10462. var data = _groupRepository.FormartTeamName(item);
  10463. var dataArray = _groupRepository.GroupSplitCountry(data);
  10464. if (dataArray.Count > 0) countrys.AddRange(dataArray);
  10465. }
  10466. countrys = countrys.Where(it => !string.IsNullOrEmpty(it)).Distinct().ToList();
  10467. List<string> areaArray = new List<string>(); //GetGroupCityLine
  10468. var areaItem = GeneralMethod.GetGroupCityLineItem(diids, "-");
  10469. foreach (var item in areaItem)
  10470. {
  10471. string areaStr = item.Value;
  10472. if (!string.IsNullOrEmpty(areaStr))
  10473. {
  10474. string[] str1 = areaStr.Split("-");
  10475. if (str1.Length > 0)
  10476. {
  10477. areaArray.AddRange(str1);
  10478. }
  10479. }
  10480. }
  10481. if (areaArray.Count > 0) areaArray = areaArray.Distinct().ToList();
  10482. var cityDatas = _sqlSugar.Queryable<Sys_Cities>()
  10483. .Where(it => it.IsDel == 0 && areaArray.Contains(it.Name_CN))
  10484. .Select(it => new { id = it.Id, parentId = it.CountriesId, name = it.Name_CN })
  10485. .ToList();
  10486. List<int> countriesIds = cityDatas.Select(it => it.parentId).ToList();
  10487. var countriesDatas = _sqlSugar.Queryable<Sys_Countries>()
  10488. .Where(it => countriesIds.Contains(it.Id))
  10489. .Select(it => new { it.Id, Name = it.Name_CN })
  10490. .ToList();
  10491. var teamNames = groupInfos.Where(it => !string.IsNullOrEmpty(it.TeamName))
  10492. .Select(it => it.TeamName).ToList();
  10493. stopwatch.Stop();
  10494. return Ok(JsonView(true, $"操作成功,耗时{stopwatch.ElapsedMilliseconds} ms", new { teamNames, countriesDatas, citiesDatas = cityDatas }));
  10495. }
  10496. ///// <summary>
  10497. ///// 匹配op行程单
  10498. ///// Init 查询区域数据
  10499. ///// </summary>
  10500. ///// <param name="dto">团组列表请求dto</param>
  10501. ///// <returns></returns>
  10502. //[HttpPost]
  10503. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10504. //public async Task<IActionResult> PostMateOpGroupCountryChangeData(MateOpGroupCountryChangeDataDto dto)
  10505. //{
  10506. // Stopwatch stopwatch = Stopwatch.StartNew(); // 创建并启动Stopwatch
  10507. // List<Sys_Cities> cityDatas = new List<Sys_Cities>();
  10508. // string countriesDataStr = await RedisRepository.RedisFactory.CreateRedisRepository().StringGetAsync<string>("CityDatas");//string 取
  10509. // if (string.IsNullOrEmpty(countriesDataStr))
  10510. // {
  10511. // cityDatas = await _sqlSugar.Queryable<Sys_Cities>().Where(it => it.IsDel == 0).ToListAsync();
  10512. // TimeSpan ts = DateTime.Now.AddHours(2).TimeOfDay; //设置redis 过期时间 2
  10513. // await RedisRepository.RedisFactory.CreateRedisRepository().StringSetAsync<string>("CountriesDatas", JsonConvert.SerializeObject(cityDatas), ts);//string 存
  10514. // }
  10515. // else
  10516. // {
  10517. // cityDatas = JsonConvert.DeserializeObject<List<Sys_Cities>>(countriesDataStr);
  10518. // }
  10519. // var provinceData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 1).ToList();
  10520. // var citiesData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 2).ToList();
  10521. // var countiesData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 3).ToList();
  10522. // List<dynamic> childList = new List<dynamic>();
  10523. // int parentId = dto.CountriesId;
  10524. // if (provinceData.Count > 1)
  10525. // {
  10526. // foreach (var item1 in provinceData)
  10527. // {
  10528. // List<dynamic> childList1 = new List<dynamic>();
  10529. // var citiesData1 = citiesData.Where(it => it.ParentId == item1.Id).ToList();
  10530. // foreach (var item2 in citiesData1)
  10531. // {
  10532. // List<dynamic> childList2 = new List<dynamic>();
  10533. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10534. // foreach (var item3 in countiesData1)
  10535. // {
  10536. // childList2.Add(new
  10537. // {
  10538. // id = item3.Id,
  10539. // parentId = item2.Id,
  10540. // level = "district",
  10541. // name = item3.Name_CN,
  10542. // });
  10543. // }
  10544. // childList1.Add(new
  10545. // {
  10546. // id = item2.Id,
  10547. // parentId = item1.Id,
  10548. // level = "city",
  10549. // name = item2.Name_CN,
  10550. // childList = childList2
  10551. // });
  10552. // }
  10553. // childList.Add(new
  10554. // {
  10555. // id = item1.Id,
  10556. // parentId = parentId,
  10557. // level = "province",
  10558. // name = item1.Name_CN,
  10559. // childList = childList1
  10560. // });
  10561. // }
  10562. // //城市
  10563. // var citiesData2 = citiesData.Where(it => it.ParentId == 0).ToList();
  10564. // foreach (var item2 in citiesData2)
  10565. // {
  10566. // List<dynamic> childList22 = new List<dynamic>();
  10567. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10568. // foreach (var item3 in countiesData1)
  10569. // {
  10570. // childList22.Add(new
  10571. // {
  10572. // id = item3.Id,
  10573. // parentId = item2.Id,
  10574. // level = "district",
  10575. // name = item3.Name_CN,
  10576. // });
  10577. // }
  10578. // childList.Add(new
  10579. // {
  10580. // id = item2.Id,
  10581. // parentId = parentId,
  10582. // level = "city",
  10583. // name = item2.Name_CN,
  10584. // childList = childList22
  10585. // });
  10586. // }
  10587. // }
  10588. // else
  10589. // {
  10590. // foreach (var item2 in citiesData)
  10591. // {
  10592. // string cname = item2.Name_CN;
  10593. // List<dynamic> childList1 = new List<dynamic>();
  10594. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10595. // foreach (var item3 in countiesData1)
  10596. // {
  10597. // childList1.Add(new
  10598. // {
  10599. // Id = item3.Id,
  10600. // parentId = item2.Id,
  10601. // level = "district",
  10602. // name = item3.Name_CN
  10603. // });
  10604. // }
  10605. // childList.Add(new
  10606. // {
  10607. // id = item2.Id,
  10608. // parentId = parentId,
  10609. // level = "city",
  10610. // name = item2.Name_CN,
  10611. // childList = childList1
  10612. // });
  10613. // }
  10614. // }
  10615. // stopwatch.Stop();
  10616. // return Ok(JsonView(true, $"操作成功,耗时{stopwatch.ElapsedMilliseconds} ms", childList));
  10617. //}
  10618. /// <summary>
  10619. /// 匹配op行程单
  10620. /// 接团信息列表 Page
  10621. /// </summary>
  10622. /// <param name="dto">团组列表请求dto</param>
  10623. /// <returns></returns>
  10624. [HttpPost]
  10625. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10626. public async Task<IActionResult> PostMateOpGroupPageList(MateOpGroupPageListDto dto)
  10627. {
  10628. var swatch = new Stopwatch();
  10629. swatch.Start();
  10630. #region 参数验证
  10631. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  10632. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  10633. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10634. #region 页面操作权限验证
  10635. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  10636. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  10637. #endregion
  10638. #endregion
  10639. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) // web/Android
  10640. {
  10641. var _view = await GeneralMethod.MateOpGroupPageListRedis();
  10642. string sqlWhere = "";
  10643. if (!string.IsNullOrEmpty(dto.Country))
  10644. {
  10645. _view = _view.Where(x => !string.IsNullOrEmpty(x.VisitCountry) && x.VisitCountry.Contains(dto.Country)).ToList();
  10646. }
  10647. if (!string.IsNullOrEmpty(dto.Area))
  10648. {
  10649. _view = _view.Where(x => !string.IsNullOrEmpty(x.RouteCity) && x.RouteCity.Contains(dto.Area)).ToList();
  10650. }
  10651. if (!string.IsNullOrEmpty(dto.TeamName))
  10652. {
  10653. _view = _view.Where(x => !string.IsNullOrEmpty(x.TeamName) && x.TeamName.Contains(dto.TeamName)).ToList();
  10654. }
  10655. int startIndex = (dto.PageIndex - 1) * dto.PageSize; // 计算开始的索引
  10656. int endIndex = startIndex + dto.PageSize - 1; // 计算结束的索引
  10657. var _view1 = _view.Skip(startIndex).Take(endIndex).ToList();
  10658. swatch.Stop();
  10659. return Ok(JsonView(true, $"查询成功!耗时 {swatch.ElapsedMilliseconds} ms", _view1, _view.Count));
  10660. }
  10661. else
  10662. {
  10663. return Ok(JsonView(false, "查询失败"));
  10664. }
  10665. }
  10666. /// <summary>
  10667. /// 匹配op行程单
  10668. /// 行程单下载
  10669. /// </summary>
  10670. /// <param name="dto">团组列表请求dto</param>
  10671. /// <returns></returns>
  10672. [HttpPost]
  10673. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10674. public async Task<IActionResult> PostMateOpGroupDownload(MateOpGroupDownloadDto dto)
  10675. {
  10676. #region 参数验证
  10677. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  10678. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  10679. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10680. #region 页面操作权限验证
  10681. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  10682. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限"));
  10683. #endregion
  10684. #endregion
  10685. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) // web/Android
  10686. {
  10687. var res = ExportTravel(new ExportTravelDto() { Diid = dto.diId });
  10688. return Ok(res.GetType().GetProperty("Value").GetValue(res, null));
  10689. }
  10690. else
  10691. {
  10692. return Ok(JsonView(false, "下载失败!"));
  10693. }
  10694. }
  10695. #endregion
  10696. #region 国家信息 数据 注释
  10697. //[HttpPost]
  10698. //public async Task<IActionResult> LoadCitiesInitData(List<int> dto)
  10699. //{
  10700. // List<Grp_GroupsTaskAssignment> infos = new List<Grp_GroupsTaskAssignment>();
  10701. // foreach (var item in dto)
  10702. // {
  10703. // infos.Add(new Grp_GroupsTaskAssignment()
  10704. // {
  10705. // DIId = item,
  10706. // CTId = 82,
  10707. // UId = 248,
  10708. // IsEnable = 1,
  10709. // CreateUserId = 233,
  10710. // CreateTime = DateTime.Now,
  10711. // IsDel = 0
  10712. // });
  10713. // infos.Add(new Grp_GroupsTaskAssignment()
  10714. // {
  10715. // DIId = item,
  10716. // CTId = 82,
  10717. // UId = 286,
  10718. // IsEnable = 1,
  10719. // CreateUserId = 233,
  10720. // CreateTime = DateTime.Now,
  10721. // IsDel = 0
  10722. // });
  10723. // }
  10724. // int add = _sqlSugar.Insertable<Grp_GroupsTaskAssignment>(infos).ExecuteCommand();
  10725. // return Ok("操作成功");
  10726. //}
  10727. //public class paramJsonDto
  10728. //{
  10729. // public List<CountriesInfo> str { get; set; }
  10730. //}
  10731. //[HttpPost]
  10732. //public async Task<IActionResult> LoadCitiesInitData(paramJsonDto dto)
  10733. //{
  10734. // //List<CountriesInfo> infos = new List<CountriesInfo>();
  10735. // //infos = JsonConvert.DeserializeObject<List<CountriesInfo>>(dto.str);
  10736. // List<Sys_Cities> cities = new List<Sys_Cities>();
  10737. // List<Sys_Cities> districts = new List<Sys_Cities>();
  10738. // var counties = _sqlSugar.Queryable<Sys_Countries>().Where(it => it.IsDel == 0).ToList();
  10739. // _sqlSugar.BeginTran();
  10740. // int countitiesIndex = 0;
  10741. // foreach (var item in dto.str)
  10742. // {
  10743. // dynamic data = item.c;
  10744. // int countriesId = counties.Find(it => it.Name_CN.Equals(item.cn))?.Id ?? 0;
  10745. // if (data != null)
  10746. // {
  10747. // countitiesIndex++;
  10748. // foreach (var item1 in data)
  10749. // {
  10750. // string cnname = item1.cn;
  10751. // string enname = item1.en;
  10752. // Sys_Cities provinceInfo = new Sys_Cities()
  10753. // {
  10754. // CountriesId = countriesId,
  10755. // Name_CN = cnname,
  10756. // Name_EN = enname,
  10757. // ParentId = 0,
  10758. // IsCapital = 1,
  10759. // CreateUserId = 208,
  10760. // CreateTime = DateTime.Now,
  10761. // IsDel = 0
  10762. // };
  10763. // if (item1.lv == "province") //省份
  10764. // {
  10765. // provinceInfo.Level = 1;
  10766. // int provinceId = 0;
  10767. // var provinceInfo1 = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 1 && it.Name_CN.Equals(cnname)).First();
  10768. // if (provinceInfo1 != null) provinceId = provinceInfo1.Id;
  10769. // else provinceId = _sqlSugar.Insertable<Sys_Cities>(provinceInfo).ExecuteReturnIdentity();
  10770. // var data1 = item1.c;
  10771. // foreach (var item2 in data1)
  10772. // {
  10773. // if (item2.lv == "city")
  10774. // {
  10775. // string citycnname = item2.cn;
  10776. // string cityenname = item2.en;
  10777. // Sys_Cities cityInfo = new Sys_Cities()
  10778. // {
  10779. // CountriesId = countriesId,
  10780. // ParentId = provinceId,
  10781. // Level = 2,
  10782. // Name_CN = citycnname,
  10783. // Name_EN = cityenname,
  10784. // IsCapital = 1,
  10785. // CreateUserId = 208,
  10786. // CreateTime = DateTime.Now,
  10787. // IsDel = 0
  10788. // };
  10789. // if (item2.c != null)
  10790. // {
  10791. // int cityId = 0;
  10792. // var citiesInfo = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 2 && it.Name_CN.Equals(citycnname)).First();
  10793. // if (citiesInfo != null) cityId = citiesInfo.Id;
  10794. // else cityId = _sqlSugar.Insertable<Sys_Cities>(cityInfo).ExecuteReturnIdentity();
  10795. // foreach (var item3 in item2.c)
  10796. // {
  10797. // if (item3.lv == "district")
  10798. // {
  10799. // var districtInfo = new Sys_Cities()
  10800. // {
  10801. // CountriesId = countriesId,
  10802. // Name_CN = item3.cn,
  10803. // Name_EN = item3.en,
  10804. // Level = 3,
  10805. // ParentId = cityId,
  10806. // IsCapital = 1,
  10807. // CreateUserId = 208,
  10808. // CreateTime = DateTime.Now,
  10809. // IsDel = 0
  10810. // };
  10811. // //if (districts.Find(it => it.CountriesId == countriesId && it.ParentId == cityId && it.Name_CN.Equals(districtInfo.Name_CN)) == null)
  10812. // //{
  10813. // districts.Add(districtInfo);
  10814. // //}
  10815. // }
  10816. // }
  10817. // }
  10818. // else
  10819. // {
  10820. // //if (cities.Find(it => it.CountriesId == countriesId && it.ParentId == provinceId && it.Name_CN.Equals(citycnname)) == null)
  10821. // //{
  10822. // cities.Add(cityInfo);
  10823. // //}
  10824. // }
  10825. // }
  10826. // }
  10827. // }
  10828. // else if (item1.lv == "city")//城市
  10829. // {
  10830. // provinceInfo.Level = 2;
  10831. // if (item1.c != null)
  10832. // {
  10833. // int cityId = 0;
  10834. // var citiesInfo = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 1 && it.Name_CN.Equals(provinceInfo.Name_CN)).First();
  10835. // if (citiesInfo != null) cityId = citiesInfo.Id;
  10836. // else cityId = _sqlSugar.Insertable<Sys_Cities>(provinceInfo).ExecuteReturnIdentity();
  10837. // foreach (var item3 in item1.c)
  10838. // {
  10839. // if (item3.lv == "district")
  10840. // {
  10841. // var districtInfo = new Sys_Cities()
  10842. // {
  10843. // CountriesId = countriesId,
  10844. // Name_CN = item3.cn,
  10845. // Name_EN = item3.en,
  10846. // Level = 3,
  10847. // ParentId = cityId,
  10848. // IsCapital = 1,
  10849. // CreateUserId = 208,
  10850. // CreateTime = DateTime.Now,
  10851. // IsDel = 0
  10852. // };
  10853. // //if (districts.Find(it => it.CountriesId == countriesId && it.ParentId == cityId && it.Name_CN.Equals(districtInfo.Name_CN)) == null)
  10854. // //{
  10855. // districts.Add(districtInfo);
  10856. // //}
  10857. // }
  10858. // }
  10859. // }
  10860. // else
  10861. // {
  10862. // //if (cities.Find(it => it.CountriesId == countriesId && it.Name_CN.Equals(provinceInfo.Name_CN)) == null)
  10863. // //{
  10864. // cities.Add(provinceInfo);
  10865. // //}
  10866. // }
  10867. // }
  10868. // }
  10869. // }
  10870. // }
  10871. // var procinceDatas = _sqlSugar.Queryable<Sys_Cities>().ToList();
  10872. // cities = cities.Distinct().ToList();
  10873. // districts = districts.Distinct().ToList();
  10874. // var citiesDatas = cities.Where(it => it.Level == 2).ToList();
  10875. // //var districtDatas = cities.Where(it => it.Level == 3).ToList();
  10876. // cities.AddRange(districts);
  10877. // var citiesAdd = _sqlSugar.Insertable<Sys_Cities>(cities).ExecuteReturnIdentity();
  10878. // //_sqlSugar.RollbackTran();
  10879. // _sqlSugar.CommitTran();
  10880. // return Ok(JsonView(false, "操作成功!"));
  10881. //}
  10882. //[HttpPost]
  10883. //public async Task<IActionResult> LoadCitiesInitInfo(CounrtiesDto dto)
  10884. //{
  10885. // List<CountitiesInfo> infos = dto.MyProperty;
  10886. // List<Sys_Cities> cityInfos = new List<Sys_Cities>();
  10887. // _sqlSugar.BeginTran();
  10888. // var countities = _sqlSugar.Queryable<Sys_Countries>().Where(it => it.IsDel == 0).ToList();
  10889. // var citities = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.IsDel == 0 && it.Level == 2).ToList();
  10890. // foreach (var item in infos)
  10891. // {
  10892. // var countryInfo = countities.Where(it => it.ThreeCode.Equals(item.country_code3)).FirstOrDefault();
  10893. // if (countryInfo != null)
  10894. // {
  10895. // var cityInfo = citities.Where(it => it.CountriesId == countryInfo.Id).ToList();
  10896. // var cityInfo1 = cityInfo.Where(it => item.capital_name_chinese.Contains(it.Name_CN)).FirstOrDefault();
  10897. // if (cityInfo1 != null)
  10898. // {
  10899. // cityInfo1.IsCapital = 0;
  10900. // cityInfos.Add(cityInfo1);
  10901. // }
  10902. // }
  10903. // }
  10904. // var update = _sqlSugar.Updateable<Sys_Cities>(cityInfos)
  10905. // .UpdateColumns(it => it.IsCapital)
  10906. // .WhereColumns(it => it.Id)
  10907. // .ExecuteCommand();
  10908. // //_sqlSugar.RollbackTran();
  10909. // _sqlSugar.CommitTran();
  10910. // return Ok(JsonView(false, "操作成功!"));
  10911. //}
  10912. //public class CounrtiesDto
  10913. //{
  10914. // public List<CountitiesInfo> MyProperty { get; set; }
  10915. //}
  10916. //public class CountitiesInfo
  10917. //{
  10918. // /// <summary>
  10919. // /// 圣约翰
  10920. // /// </summary>
  10921. // public string capital_name_chinese { get; set; }
  10922. // /// <summary>
  10923. // ///
  10924. // /// </summary>
  10925. // public string capital_name { get; set; }
  10926. // /// <summary>
  10927. // ///
  10928. // /// </summary>
  10929. // public string country_type { get; set; }
  10930. // /// <summary>
  10931. // /// 安提瓜和巴布达
  10932. // /// </summary>
  10933. // public string country_name_chinese { get; set; }
  10934. // /// <summary>
  10935. // /// 安提瓜和巴布达
  10936. // /// </summary>
  10937. // public string country_name_chinese_short { get; set; }
  10938. // /// <summary>
  10939. // /// 安提瓜和巴布达
  10940. // /// </summary>
  10941. // public string country_name_chinese_UN { get; set; }
  10942. // /// <summary>
  10943. // ///
  10944. // /// </summary>
  10945. // public string country_name_english_abbreviation { get; set; }
  10946. // /// <summary>
  10947. // ///
  10948. // /// </summary>
  10949. // public string country_name_english_formal { get; set; }
  10950. // /// <summary>
  10951. // ///
  10952. // /// </summary>
  10953. // public string country_name_english_UN { get; set; }
  10954. // /// <summary>
  10955. // ///
  10956. // /// </summary>
  10957. // public string continent_name { get; set; }
  10958. // /// <summary>
  10959. // ///
  10960. // /// </summary>
  10961. // public string subregion_name { get; set; }
  10962. // /// <summary>
  10963. // ///
  10964. // /// </summary>
  10965. // public string country_code2 { get; set; }
  10966. // /// <summary>
  10967. // ///
  10968. // /// </summary>
  10969. // public string country_code3 { get; set; }
  10970. // /// <summary>
  10971. // ///
  10972. // /// </summary>
  10973. // public string phone_code { get; set; }
  10974. //}
  10975. //public class CountriesInfo : BasicInfo
  10976. //{
  10977. // public List<CitiesInfo> c { get; set; }
  10978. //}
  10979. //public class CitiesInfo : BasicInfo
  10980. //{
  10981. // public List<AreaInfo> c { get; set; }
  10982. //}
  10983. //public class AreaInfo : BasicInfo
  10984. //{
  10985. // public List<AreaInfo> c { get; set; }
  10986. //}
  10987. //public class BasicInfo
  10988. //{
  10989. // public string code { get; set; }
  10990. // public string cn { get; set; }
  10991. // public string lv { get; set; }
  10992. // public string en { get; set; }
  10993. //}
  10994. #endregion
  10995. #region 查看邀请方
  10996. /// <summary>
  10997. /// 查看邀请方
  10998. /// 邀请方信息 Init
  10999. /// </summary>
  11000. /// <param name="dto"></param>
  11001. /// <returns></returns>
  11002. [HttpPost]
  11003. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11004. public async Task<IActionResult> PostGroupLinkInvitingUnitNameInit(GroupLinkInvitingUnitNameInitDto dto)
  11005. {
  11006. string sqlWhere = string.Empty;
  11007. if (!string.IsNullOrEmpty(dto.Search))
  11008. {
  11009. sqlWhere = string.Format($@" And UnitName Like '%{dto.Search}%'");
  11010. }
  11011. string sql = string.Format($@"Select
  11012. ROW_NUMBER() Over(Order By Id desc) As Row_Number,
  11013. Id,
  11014. UnitName
  11015. From Res_InvitationOfficialActivityData
  11016. Where IsDel = 0
  11017. And (UnitName != '' Or UnitName != null) {sqlWhere}");
  11018. RefAsync<int> total = 0;
  11019. var _views = await _sqlSugar.SqlQueryable<GroupLinkInvitingUnitNameInitView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11020. return Ok(JsonView(true, MsgTips.Succeed, _views, total));
  11021. }
  11022. /// <summary>
  11023. /// 查看邀请方
  11024. /// 国家信息 Init
  11025. /// </summary>
  11026. /// <param name="dto"></param>
  11027. /// <returns></returns>
  11028. [HttpPost]
  11029. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11030. public async Task<IActionResult> PostGroupLinkInvitingCountryInit(GroupLinkInvitingUnitNameInitDto dto)
  11031. {
  11032. var groupInfos = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).OrderByDescending(it => it.CreateUserId).ToListAsync();
  11033. var country = groupInfos.Select(it => it.VisitCountry).ToList();
  11034. var diids = groupInfos.Select(it => it.Id).ToList();
  11035. List<string> countrys = new List<string>();
  11036. foreach (var item in country)
  11037. {
  11038. var data = _groupRepository.FormartTeamName(item);
  11039. var dataArray = _groupRepository.GroupSplitCountry(data);
  11040. if (dataArray.Count > 0) countrys.AddRange(dataArray);
  11041. }
  11042. countrys = countrys.Distinct().ToList();
  11043. for (int i = 0; i < countrys.Count; i++)
  11044. {
  11045. string item = countrys[i];
  11046. if (string.IsNullOrEmpty(item) || item.Contains("-"))
  11047. {
  11048. countrys.Remove(item);
  11049. i--;
  11050. }
  11051. }
  11052. RefAsync<int> total = 0;
  11053. var countyDatas = await _sqlSugar.Queryable<Sys_Countries>()
  11054. .Where(it => countrys.Contains(it.Name_CN))
  11055. .WhereIF(!string.IsNullOrEmpty(dto.Search), it => it.Name_CN.Contains(dto.Search))
  11056. .Select(it => new { id = it.Id, name = it.Name_CN })
  11057. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11058. return Ok(JsonView(true, MsgTips.Succeed, countyDatas, total));
  11059. }
  11060. /// <summary>
  11061. /// 查看邀请方
  11062. /// 城市信息 Init
  11063. /// </summary>
  11064. /// <param name="dto"></param>
  11065. /// <returns></returns>
  11066. [HttpPost]
  11067. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11068. public async Task<IActionResult> PostGroupLinkInvitingCityInit(GroupLinkInvitingCityInitDto dto)
  11069. {
  11070. if (dto.CountiesId < 1) return Ok(JsonView(false, "请传入有效的国家Id"));
  11071. RefAsync<int> total = 0;
  11072. var countyDatas = await _sqlSugar.Queryable<Sys_Cities>()
  11073. .Where(it => it.CountriesId == dto.CountiesId)
  11074. .WhereIF(!string.IsNullOrEmpty(dto.Search), it => it.Name_CN.Contains(dto.Search))
  11075. .OrderBy(it => new { IsCapital = SqlFunc.Asc(it.IsCapital), Id = SqlFunc.Asc(it.Id) })
  11076. .Select(it => new { id = it.Id, name = it.Name_CN })
  11077. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11078. return Ok(JsonView(true, MsgTips.Succeed, countyDatas, total));
  11079. }
  11080. /// <summary>
  11081. /// 查看邀请方
  11082. /// 团组名称 Init
  11083. /// </summary>
  11084. /// <param name="dto"></param>
  11085. /// <returns></returns>
  11086. [HttpPost]
  11087. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11088. public async Task<IActionResult> PostGroupLinkInvitingGroupInit(GroupLinkInvitingDto dto)
  11089. {
  11090. var watch = new Stopwatch();
  11091. watch.Start();
  11092. RefAsync<int> total = 0;
  11093. var countyDatas = await _sqlSugar.Queryable<Res_OfficialActivities>()
  11094. .InnerJoin<Grp_DelegationInfo>((oa, di) => oa.DiId == di.Id)
  11095. .Where((oa, di) => oa.IsDel == 0)
  11096. .WhereIF(!string.IsNullOrEmpty(dto.Search), (oa, di) => di.TeamName.Contains(dto.Search))
  11097. .OrderBy((oa, di) => new { id = SqlFunc.Desc(di.Id) })
  11098. .Select((oa, di) => new { id = di.Id, name = di.TeamName })
  11099. .Distinct()
  11100. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11101. watch.Stop();
  11102. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", countyDatas, total));
  11103. }
  11104. /// <summary>
  11105. /// 查看邀请方
  11106. /// 团组 & 邀请方信息
  11107. /// </summary>
  11108. /// <param name="dto"></param>
  11109. /// <returns></returns>
  11110. [HttpPost]
  11111. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11112. public async Task<IActionResult> PostGroupLinkInvitingPageList(GroupLinkInvitingPageListDto dto)
  11113. {
  11114. var watch = new Stopwatch();
  11115. watch.Start();
  11116. RefAsync<int> total = 0;
  11117. var infos = await _sqlSugar.Queryable<GroupLinkInvitingPageListView>()
  11118. .AS("Grp_DelegationInfo")
  11119. .Includes(x => x.InvitingInfos)
  11120. .Where(x => x.IsDel == 0 && x.InvitingInfos.Any(z => z.IsDel == 0))
  11121. .WhereIF(!string.IsNullOrEmpty(dto.Counrty), x => x.VisitCountry.Contains(dto.Counrty))
  11122. .WhereIF(!string.IsNullOrEmpty(dto.Area), x => x.InvitingInfos.Any(z => z.Area.Contains(dto.Area))) //
  11123. .WhereIF(!string.IsNullOrEmpty(dto.TeamName), x => x.TeamName.Contains(dto.TeamName)) //
  11124. .WhereIF(!string.IsNullOrEmpty(dto.UnitName), x => x.InvitingInfos.Any(z => z.Client.Contains(dto.UnitName)))
  11125. .OrderBy(x => new { JietuanTime = SqlFunc.Desc(x.VisitStartDate) })
  11126. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11127. var userDatas = _sqlSugar.Queryable<Sys_Users>().Where(x => x.IsDel == 0).ToList();
  11128. var setDatas = _sqlSugar.Queryable<Sys_SetData>().Where(x => x.IsDel == 0).ToList();
  11129. infos.ForEach(x =>
  11130. {
  11131. x.TeamDid = setDatas.Find(y => int.Parse(x.TeamDid) == y.Id)?.Name ?? "-";
  11132. x.JietuanOperator = userDatas.Find(y => int.Parse(x.JietuanOperator) == y.Id)?.CnName ?? "-";
  11133. x.TeamLevSId = setDatas.Find(y => int.Parse(x.TeamLevSId) == y.Id)?.Name ?? "-";
  11134. x.InvitingInfos = x.InvitingInfos.Where(it => it.IsDel == 0).ToList();
  11135. });
  11136. watch.Stop();
  11137. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", infos, total));
  11138. }
  11139. #endregion
  11140. #region 报批行程
  11141. /// <summary>
  11142. /// 报批行程初始化
  11143. /// </summary>
  11144. /// <param name="dto"></param>
  11145. /// <returns></returns>
  11146. [HttpPost]
  11147. public IActionResult ApprovalJourneyInit(ApprovalJourneyDto dto)
  11148. {
  11149. const int chiNumber = 5;
  11150. var jw = JsonView(false);
  11151. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  11152. var group = groupList.First();
  11153. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  11154. group = groupList.First(x => x.Id == diid);
  11155. if (group == null)
  11156. {
  11157. jw.Msg = "暂无团组!";
  11158. return Ok(jw);
  11159. }
  11160. var data = new
  11161. {
  11162. groupList = groupList.Select(x => new
  11163. {
  11164. x.TeamName,
  11165. x.Id
  11166. }),
  11167. content = new ArrayList(),
  11168. groupInfo = new
  11169. {
  11170. group.VisitDays,
  11171. group.TourCode,
  11172. group.VisitPNumber,
  11173. group.TeamName,
  11174. group.Id,
  11175. visitStartDate = group.VisitStartDate.ToString("yyyy-MM-dd"),
  11176. visitEndDate = group.VisitEndDate.ToString("yyyy-MM-dd")
  11177. },
  11178. };
  11179. var resultArr = new ArrayList();
  11180. var content = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.Diid == diid && x.IsDel == 0).ToList();
  11181. if (content.Count == 0)
  11182. {
  11183. var stay = "-";
  11184. var cityPath = "-";
  11185. //添加城市路径以及住宿地
  11186. //黑屏代码数据
  11187. DataTable dtBlack = GeneralMethod.GetTableByBlackCode(group.Id);
  11188. if (dtBlack.Rows.Count == 0 || string.IsNullOrWhiteSpace(dtBlack.Rows[0][1].ToString()))
  11189. {
  11190. jw = JsonView(true, "黑屏代码有误!", data);
  11191. return Ok(jw);
  11192. }
  11193. foreach (DataRow row in dtBlack.Rows)
  11194. {
  11195. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  11196. {
  11197. jw = JsonView(true, "黑屏代码有误!" + row["Error"].ToString(), data);
  11198. return Ok(jw);
  11199. }
  11200. }
  11201. //黑屏代码获取时间区间
  11202. var timeArr = GeneralMethod.GetTimeListByDataTable(dtBlack);
  11203. string[] Day = new string[] { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" };
  11204. _sqlSugar.BeginTran();
  11205. for (int i = 0; i < timeArr.Count; i++)
  11206. {
  11207. stay = "-";
  11208. cityPath = "-";
  11209. DateTime NewData = DateTime.Parse(timeArr[i]);
  11210. string week = Day[Convert.ToInt32(NewData.DayOfWeek.ToString("d"))].ToString();
  11211. Grp_ApprovalTravel appro = new Grp_ApprovalTravel();
  11212. var tbSelect = dtBlack.Select(string.Format("Day = '{0}'", NewData.ToString("yyyy-MM-dd")));
  11213. if (tbSelect.Length > 0)
  11214. {
  11215. List<string> threeCodeStr = new List<string>();
  11216. foreach (var item in tbSelect)
  11217. {
  11218. var threeCode = item["Three"].ToString() ?? "";
  11219. if (threeCode.Length == 6)
  11220. {
  11221. var start = threeCode.Substring(0, 3);
  11222. var end = threeCode.Substring(3, 3);
  11223. if (threeCodeStr.Count == 0)
  11224. {
  11225. threeCodeStr.Add(start);
  11226. threeCodeStr.Add(end);
  11227. }
  11228. else
  11229. {
  11230. if (threeCodeStr[threeCodeStr.Count - 1] == start)
  11231. {
  11232. threeCodeStr.Add(end);
  11233. }
  11234. else
  11235. {
  11236. threeCodeStr.Add(start);
  11237. threeCodeStr.Add(end);
  11238. }
  11239. }
  11240. }
  11241. }
  11242. var threeCodeList = _threeCodeRepository.QueryThreeCodeArray(threeCodeStr);
  11243. var last = threeCodeStr.Last();
  11244. foreach (var item in threeCodeStr)
  11245. {
  11246. cityPath += (threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】") + "-";
  11247. if (item.Equals(last))
  11248. {
  11249. stay = threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】";
  11250. }
  11251. }
  11252. cityPath = cityPath.Trim('-');
  11253. }
  11254. appro.Date = "第" + intToString(i + 1) + "天 " + NewData.Month + "月" + NewData.Day + "日(" + week + ") " + cityPath + " 宿:" + stay;
  11255. appro.Diid = diid ?? -1;
  11256. var thisId = _sqlSugar.Insertable<Grp_ApprovalTravel>(appro).ExecuteReturnIdentity();
  11257. appro.Id = thisId;
  11258. appro.CreateUserId = dto.UserId;
  11259. appro.CreateTime = DateTime.Now;
  11260. content.Add(appro);
  11261. }
  11262. _sqlSugar.CommitTran();
  11263. }
  11264. foreach (var x in content)
  11265. {
  11266. var chiList = _sqlSugar.Queryable<Grp_ApprovalTravelDetails>().Where(x1 => x1.ParentId == x.Id && x1.IsDel == 0).ToList();
  11267. if (chiList.Count < chiNumber)
  11268. {
  11269. for (int i = chiList.Count; i < chiNumber; i++)
  11270. {
  11271. chiList.Add(new Grp_ApprovalTravelDetails());
  11272. }
  11273. }
  11274. resultArr.Add(new
  11275. {
  11276. x.Id,
  11277. x.Date,
  11278. x.Diid,
  11279. chiList = chiList.Select(x1 => new
  11280. {
  11281. timeInterval = x1.Time == null ? new string[1] : x1.Time.Split('-'),
  11282. x1.Details,
  11283. x1.ParentId,
  11284. x1.Id
  11285. })
  11286. });
  11287. }
  11288. data = data with
  11289. {
  11290. content = resultArr,
  11291. };
  11292. jw = JsonView(true, "获取成功!", data);
  11293. return Ok(jw);
  11294. }
  11295. /// <summary>
  11296. /// 报批行程删除
  11297. /// </summary>
  11298. /// <param name="dto"></param>
  11299. /// <returns></returns>
  11300. [HttpPost]
  11301. public IActionResult DeleteApprovalJourney(DeleteApprovalJourney dto)
  11302. {
  11303. var jw = JsonView(false);
  11304. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  11305. if (group == null)
  11306. {
  11307. jw.Msg = "团组参数有误!";
  11308. return Ok(jw);
  11309. }
  11310. try
  11311. {
  11312. _sqlSugar.BeginTran();
  11313. var arr = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.Diid == dto.Diid && x.IsDel == 0).Select(x => x.Id).ToList();
  11314. _ = _sqlSugar.Updateable<Grp_ApprovalTravelDetails>().SetColumns(x => new Grp_ApprovalTravelDetails
  11315. {
  11316. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  11317. DeleteUserId = dto.uesrId,
  11318. IsDel = 1
  11319. }).Where(x => arr.Contains(x.ParentId) && x.IsDel == 0).ExecuteCommand();
  11320. _ = _sqlSugar.Updateable<Grp_ApprovalTravel>().SetColumns(x => new Grp_ApprovalTravel
  11321. {
  11322. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  11323. DeleteUserId = dto.uesrId,
  11324. IsDel = 1
  11325. }).Where(x => arr.Contains(x.Id)).ExecuteCommand();
  11326. _sqlSugar.CommitTran();
  11327. jw = JsonView(true, "删除成功");
  11328. }
  11329. catch (Exception ex)
  11330. {
  11331. jw = JsonView(false, ex.Message);
  11332. }
  11333. return Ok(jw);
  11334. }
  11335. /// <summary>
  11336. /// 报批行程保存
  11337. /// </summary>
  11338. /// <param name="dto"></param>
  11339. /// <returns></returns>
  11340. [HttpPost]
  11341. public IActionResult SaveApprovalJourney(SaveApprovalJourney dto)
  11342. {
  11343. var jw = JsonView(false);
  11344. var Find = dto.Arr.Find(x => x.id == 0);
  11345. if (Find != null)
  11346. {
  11347. jw.Msg = "生成的ID为0!";
  11348. return Ok(jw);
  11349. }
  11350. foreach (var item in dto.Arr)
  11351. {
  11352. foreach (var chi in item.chiList)
  11353. {
  11354. if (chi.parentId == 0)
  11355. {
  11356. chi.parentId = item.id;
  11357. }
  11358. }
  11359. }
  11360. var chiArr = dto.Arr.SelectMany(x => x.chiList).ToList();
  11361. _sqlSugar.BeginTran();
  11362. if (chiArr.Where(x => x.id == 0).Count() == chiArr.Count)
  11363. {
  11364. var parentIds = dto.Arr.Select(x => x.id).ToList();
  11365. _sqlSugar.Updateable<Grp_ApprovalTravelDetails>().Where(x => parentIds.Contains(x.ParentId) && x.IsDel == 0).SetColumns(x => new Grp_ApprovalTravelDetails
  11366. {
  11367. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  11368. DeleteUserId = dto.UserId,
  11369. IsDel = 1
  11370. }).ExecuteCommand();
  11371. }
  11372. try
  11373. {
  11374. _ = _sqlSugar.Insertable<Grp_ApprovalTravelDetails>(chiArr.Where(x => x.id == 0).Select(x => new Grp_ApprovalTravelDetails
  11375. {
  11376. CreateTime = DateTime.Now,
  11377. CreateUserId = dto.UserId,
  11378. Details = x.details,
  11379. ParentId = x.parentId,
  11380. Time = x.timeInterval.Where(x => !string.IsNullOrWhiteSpace(x)).Count() > 1 ? x.timeInterval[0] + "-" + x.timeInterval[1] : "",
  11381. Remark = "",
  11382. IsDel = 0
  11383. }).ToList()).ExecuteCommand();
  11384. _ = _sqlSugar.Updateable<Grp_ApprovalTravelDetails>(chiArr.Where(x => x.id != 0).Select(x => new Grp_ApprovalTravelDetails
  11385. {
  11386. Id = x.id,
  11387. Details = x.details,
  11388. ParentId = x.parentId,
  11389. Time = x.timeInterval.Where(x => !string.IsNullOrWhiteSpace(x)).Count() > 1 ? x.timeInterval[0] + "-" + x.timeInterval[1] : "",
  11390. }).ToList()).UpdateColumns(x => new Grp_ApprovalTravelDetails
  11391. {
  11392. Details = x.Details,
  11393. ParentId = x.ParentId,
  11394. Time = x.Time
  11395. }).ExecuteCommand();
  11396. _ = _sqlSugar.Updateable<Grp_ApprovalTravel>(dto.Arr.Where(x => x.id != 0).Select(x => new Grp_ApprovalTravel
  11397. {
  11398. Id = x.id,
  11399. Date = x.date,
  11400. }).ToList()).UpdateColumns(x => new Grp_ApprovalTravel
  11401. {
  11402. Date = x.Date
  11403. }).ExecuteCommand();
  11404. _sqlSugar.CommitTran();
  11405. jw = JsonView(true, "保存成功!");
  11406. }
  11407. catch (Exception ex)
  11408. {
  11409. _sqlSugar.RollbackTran();
  11410. jw = JsonView(false, "保存失败!" + ex.Message);
  11411. }
  11412. return Ok(jw);
  11413. }
  11414. /// <summary>
  11415. /// 报批行程生成
  11416. /// </summary>
  11417. /// <param name="dto"></param>
  11418. /// <returns></returns>
  11419. [HttpPost]
  11420. public IActionResult CreateApprovalJourney(CreateApprovalJourneyDto dto)
  11421. {
  11422. var jw = JsonView(false);
  11423. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  11424. if (group == null)
  11425. {
  11426. jw.Msg = "暂无该团组!";
  11427. return Ok(jw);
  11428. }
  11429. //黑屏代码数据
  11430. DataTable dtBlack = GeneralMethod.GetTableByBlackCode(group.Id);
  11431. if (dtBlack.Rows.Count == 0 || string.IsNullOrWhiteSpace(dtBlack.Rows[0][1].ToString()))
  11432. {
  11433. jw.Msg = "黑屏代码有误!";
  11434. return Ok(jw);
  11435. }
  11436. foreach (DataRow row in dtBlack.Rows)
  11437. {
  11438. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  11439. {
  11440. jw.Msg = "黑屏代码有误!" + row["Error"].ToString();
  11441. return Ok(jw);
  11442. }
  11443. }
  11444. var officialActivitiesArr = _sqlSugar.Queryable<Res_OfficialActivities>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).ToList();
  11445. var resultArr = new ArrayList();
  11446. if (officialActivitiesArr.Count == 0)
  11447. {
  11448. jw.Msg = "暂无公务出访信息!";
  11449. return Ok(jw);
  11450. }
  11451. try
  11452. {
  11453. _sqlSugar.BeginTran();
  11454. DeleteApprovalJourney(new
  11455. Domain.Dtos.Groups.DeleteApprovalJourney
  11456. {
  11457. Diid = dto.Diid,
  11458. uesrId = dto.Userid
  11459. });
  11460. var stay = "-";
  11461. var cityPath = "-";
  11462. //添加城市路径以及住宿地
  11463. //黑屏代码获取时间区间
  11464. var timeArr = GeneralMethod.GetTimeListByDataTable(dtBlack);
  11465. var empty = "【未收入该三字码!请机票同事录入】";
  11466. string[] Day = new string[] { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" };
  11467. for (int i = 0; i < timeArr.Count; i++)
  11468. {
  11469. stay = "-";
  11470. cityPath = "-";
  11471. var chiarr = new List<Grp_ApprovalTravelDetails>();
  11472. DateTime NewData = DateTime.Parse(timeArr[i]);
  11473. 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();
  11474. var tbSelect = dtBlack.Select(string.Format("Day = '{0}'", NewData.ToString("yyyy-MM-dd")));
  11475. if (tbSelect.Length > 0)
  11476. {
  11477. List<string> threeCodeStr = new List<string>();
  11478. bool isTrade = false;
  11479. string trip = string.Empty;
  11480. var rowLast = tbSelect.Last();
  11481. var rowFirst = tbSelect.First();
  11482. var airStartTime = rowFirst["StartTime"].ToString() ?? "0000";
  11483. var airEndTime = rowLast["EndTime"].ToString() ?? "0000";
  11484. var takeOffTime = DateTime.Parse(timeArr[i]);
  11485. var fallToTime = DateTime.Parse(timeArr[i]);
  11486. takeOffTime = takeOffTime.AddHours(int.Parse(airStartTime.Substring(0, 2)));
  11487. takeOffTime = takeOffTime.AddMinutes(int.Parse(airStartTime.Substring(2, 2)));
  11488. fallToTime = fallToTime.AddHours(int.Parse(airEndTime.Substring(0, 2)));
  11489. fallToTime = fallToTime.AddMinutes(int.Parse(airEndTime.Substring(2, 2)));
  11490. foreach (var item in tbSelect)
  11491. {
  11492. var start = string.Empty;
  11493. var end = string.Empty;
  11494. var threeCode = item["Three"].ToString() ?? "";
  11495. if (threeCode.Length == 6)
  11496. {
  11497. start = threeCode.Substring(0, 3);
  11498. end = threeCode.Substring(3, 3);
  11499. if (threeCodeStr.Count == 0)
  11500. {
  11501. threeCodeStr.Add(start);
  11502. threeCodeStr.Add(end);
  11503. }
  11504. else
  11505. {
  11506. if (threeCodeStr[threeCodeStr.Count - 1] == start)
  11507. {
  11508. threeCodeStr.Add(end);
  11509. }
  11510. else
  11511. {
  11512. threeCodeStr.Add(start);
  11513. threeCodeStr.Add(end);
  11514. }
  11515. }
  11516. }
  11517. //处理机票信息
  11518. var start_Object = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three.ToUpper() == start.ToUpper());
  11519. var end_Object = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three.ToUpper() == end.ToUpper());
  11520. if (start_Object == null)
  11521. {
  11522. start_Object = new Res_ThreeCode()
  11523. {
  11524. AirPort = empty,
  11525. AirPort_En = empty,
  11526. City = empty,
  11527. Country = empty,
  11528. Four = empty,
  11529. Three = empty,
  11530. };
  11531. }
  11532. if (end_Object == null)
  11533. {
  11534. end_Object = new Res_ThreeCode()
  11535. {
  11536. AirPort = empty,
  11537. AirPort_En = empty,
  11538. City = empty,
  11539. Country = empty,
  11540. Four = empty,
  11541. Three = empty,
  11542. };
  11543. }
  11544. //机型判断
  11545. string airModel = item["AirModel"].ToString();
  11546. airModel = GeneralMethod.GetLonger(airModel!.Substring(0, 1)) + airModel;
  11547. string flightTime = item["FlightTime"].ToString();
  11548. if (flightTime!.Contains(":"))
  11549. {
  11550. flightTime = flightTime.Replace(":", "小时");
  11551. flightTime += "分钟";
  11552. }
  11553. if (flightTime.Contains("H"))
  11554. {
  11555. flightTime = flightTime.Replace("H", "小时");
  11556. }
  11557. if (flightTime.Contains("M"))
  11558. {
  11559. flightTime = flightTime.Replace("M", "分钟");
  11560. }
  11561. IFormatProvider ifp = new CultureInfo("zh-CN", true);
  11562. if (DateTime.TryParseExact(flightTime, "HH小时mm分钟", ifp, DateTimeStyles.None, out DateTime flightDataTime))
  11563. {
  11564. flightTime = flightDataTime.Hour > 0
  11565. ? flightDataTime.Hour.ToString() + "小时" + (flightDataTime.Minute > 0
  11566. ? flightDataTime.Minute.ToString() + "分钟" : "") : flightDataTime.Minute > 0
  11567. ? flightDataTime.Minute.ToString() + "分钟" : "";
  11568. }
  11569. //航班号
  11570. string flightcode = item["Fliagtcode"].ToString();
  11571. var aircompany = _sqlSugar.Queryable<Res_AirCompany>().First(x => x.ShortCode.ToUpper() == flightcode!.Substring(0, 2).ToUpper() && x.IsDel == 0);
  11572. var hsEmpty = "【此航司" + flightcode!.Substring(0, 2).ToUpper() + "未收录,请机票同事录入】";
  11573. if (aircompany == null)
  11574. {
  11575. aircompany = new Res_AirCompany
  11576. {
  11577. CnName = hsEmpty,
  11578. EnName = hsEmpty,
  11579. ShortCode = hsEmpty,
  11580. };
  11581. }
  11582. //从成都天府国际机场搭乘四川航空公司3U3961飞往东京
  11583. trip += $"从{start_Object.AirPort}搭乘{aircompany.CnName} {flightcode} 飞往 {end_Object.City};\r\n({start_Object.AirPort}/{end_Object.AirPort} 机型:{airModel} 飞行时间{flightTime});\r\n";
  11584. isTrade = Convert.ToBoolean(item["isTransitShipment"]);
  11585. if (isTrade)
  11586. {
  11587. trip += $"抵达{end_Object.AirPort}{item["EndBuilding"].ToString().Trim()}航站楼(中转 行李直达)\r\n";
  11588. }
  11589. else
  11590. {
  11591. trip += "\r\n"; //$"抵达{end_Object.AirPort}{item["EndBuilding"].ToString().Trim()}航站楼,办理入境手续,之后前往提取行李\r\n";
  11592. }
  11593. }
  11594. chiarr.Add(new Grp_ApprovalTravelDetails
  11595. {
  11596. Time = takeOffTime.ToString("HH:mm") + "-" + fallToTime.ToString("HH:mm"),
  11597. CreateTime = DateTime.Now,
  11598. CreateUserId = dto.Userid,
  11599. ParentId = 0,
  11600. Details = trip
  11601. });
  11602. var threeCodeList = _threeCodeRepository.QueryThreeCodeArray(threeCodeStr);
  11603. var last = threeCodeStr.Last();
  11604. foreach (var item in threeCodeStr)
  11605. {
  11606. cityPath += (threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】") + "-";
  11607. if (item.Equals(last))
  11608. {
  11609. stay = threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】";
  11610. }
  11611. }
  11612. cityPath = cityPath.Trim('-');
  11613. }
  11614. string week = Day[Convert.ToInt32(NewData.DayOfWeek.ToString("d"))].ToString();
  11615. Grp_ApprovalTravel appro = new Grp_ApprovalTravel();
  11616. appro.Date = "第" + intToString(i + 1) + "天 " + NewData.Month + "月" + NewData.Day + "日(" + week + ") " + cityPath + " 宿:" + stay;
  11617. appro.Diid = dto.Diid;
  11618. var thisId = _sqlSugar.Insertable<Grp_ApprovalTravel>(appro).ExecuteReturnIdentity();
  11619. appro.Id = thisId;
  11620. appro.CreateUserId = dto.Userid;
  11621. appro.CreateTime = DateTime.Now;
  11622. foreach (var item in gwinfo)
  11623. {
  11624. Grp_ApprovalTravelDetails chi = new Grp_ApprovalTravelDetails();
  11625. chi.Details = "拜访" + item.Client;
  11626. if (!string.IsNullOrWhiteSpace(item.ReqSample))
  11627. {
  11628. chi.Details += "," + item.ReqSample;
  11629. }
  11630. chi.ParentId = thisId;
  11631. chi.Time = item.Time;
  11632. chiarr.Add(chi);
  11633. }
  11634. if (chiarr.Count < 5)
  11635. {
  11636. for (int j = chiarr.Count; j < 5; j++)
  11637. {
  11638. chiarr.Add(new
  11639. Grp_ApprovalTravelDetails());
  11640. }
  11641. }
  11642. resultArr.Add(new
  11643. {
  11644. appro.Id,
  11645. appro.Date,
  11646. appro.Diid,
  11647. chiList = chiarr.Select(x1 => new
  11648. {
  11649. timeInterval = x1.Time == null ? new string[1] : x1.Time.Split('-'),
  11650. x1.Details,
  11651. x1.ParentId,
  11652. x1.Id
  11653. })
  11654. });
  11655. }
  11656. _sqlSugar.CommitTran();
  11657. jw = JsonView(true, "生成成功!", resultArr);
  11658. }
  11659. catch (Exception ex)
  11660. {
  11661. jw.Code = 400;
  11662. jw.Msg = "生成失败!" + ex.Message;
  11663. }
  11664. return Ok(jw);
  11665. }
  11666. /// <summary>
  11667. /// 报批行程word导出
  11668. /// </summary>
  11669. /// <param name="dto"></param>
  11670. /// <returns></returns>
  11671. [HttpPost]
  11672. public IActionResult ExportApprovalJourneyWord(ExportApprovalJourneyWord dto)
  11673. {
  11674. var jw = JsonView(false);
  11675. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  11676. if (group == null)
  11677. {
  11678. jw.Msg = "暂无该团组!";
  11679. return Ok(jw);
  11680. }
  11681. //模板路径
  11682. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "Template/公务行程导出模板.docx"); //"C:\\Server\\File\\OA2023\\Office\\Word\\Template/公务行程导出模板.docx"
  11683. //载入模板
  11684. Document doc = new Document(tempPath);
  11685. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  11686. //获取所填表格的序数
  11687. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  11688. Aspose.Words.Tables.Row titleRowClone = null;
  11689. Aspose.Words.Tables.Row CenterRowClone = null;
  11690. int index = 0;
  11691. int indexChi = 0;
  11692. int SetIndex = 0;
  11693. var ApprovalTravelArr = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid).ToList();
  11694. //获取数据,放到datatable
  11695. foreach (var item in ApprovalTravelArr)
  11696. {
  11697. if (index > 0)
  11698. {
  11699. titleRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[0].Clone(true);
  11700. tableOne.AppendChild(titleRowClone);
  11701. }
  11702. var textTime = item.Date;
  11703. var ChiRep = _sqlSugar.Queryable<Grp_ApprovalTravelDetails>().Where(x => x.IsDel == 0 && x.ParentId == item.Id).ToList();
  11704. SetCells(tableOne, doc, SetIndex, 0, textTime);
  11705. SetIndex++;
  11706. if (ChiRep.Count > 0)
  11707. {
  11708. foreach (var itemChi in ChiRep)
  11709. {
  11710. var txtTime = itemChi.Time;
  11711. var txtDetail = itemChi.Details;
  11712. if (indexChi > 0)
  11713. {
  11714. CenterRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[1].Clone(true);
  11715. tableOne.AppendChild(CenterRowClone);
  11716. }
  11717. if (string.IsNullOrEmpty(txtTime) && string.IsNullOrEmpty(txtDetail))
  11718. {
  11719. SetCells(tableOne, doc, SetIndex, 0, "");
  11720. SetCells(tableOne, doc, SetIndex, 1, "");
  11721. indexChi++;
  11722. SetIndex++;
  11723. break;
  11724. }
  11725. SetCells(tableOne, doc, SetIndex, 0, txtTime);
  11726. SetCells(tableOne, doc, SetIndex, 1, txtDetail);
  11727. indexChi++;
  11728. SetIndex++;
  11729. }
  11730. }
  11731. else
  11732. {
  11733. if (indexChi > 0)
  11734. {
  11735. CenterRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[1].Clone(true);
  11736. tableOne.AppendChild(CenterRowClone);
  11737. }
  11738. SetCells(tableOne, doc, SetIndex, 0, "");
  11739. SetCells(tableOne, doc, SetIndex, 1, "");
  11740. indexChi++;
  11741. SetIndex++;
  11742. }
  11743. index++;
  11744. }
  11745. string strFileName = "/Travel/ExportApprovalJourneyWord/" + group.TeamName + "商邀出访日程.doc";
  11746. doc.Save(AppSettingsHelper.Get("WordBasePath") + strFileName); //"C:\\Server\\File\\OA2023\\Office\\Word" + strFileName
  11747. jw.Data = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + strFileName; //"C:\\Server\\File\\OA2023\\Office\\Word" + strFileName
  11748. jw.Code = 200;
  11749. jw.Msg = "";
  11750. return Ok(jw);
  11751. }
  11752. private string intToString(int numberVal)
  11753. {
  11754. string numberval = numberVal.ToString();
  11755. Dictionary<char, string> Number = new Dictionary<char, string>();
  11756. Number.Add('1', "一");
  11757. Number.Add('2', "二");
  11758. Number.Add('3', "三");
  11759. Number.Add('4', "四");
  11760. Number.Add('5', "五");
  11761. Number.Add('6', "六");
  11762. Number.Add('7', "七");
  11763. Number.Add('8', "八");
  11764. Number.Add('9', "九");
  11765. string stringNumberVal = string.Empty;
  11766. for (int i = 0; i < numberval.Length; i++)
  11767. {
  11768. if (i == 0)
  11769. {
  11770. stringNumberVal += Number[numberval[i]];
  11771. }
  11772. else if (i >= 1)
  11773. {
  11774. if (numberval[i] == '0')
  11775. {
  11776. stringNumberVal = "十";
  11777. }
  11778. else
  11779. {
  11780. stringNumberVal += "十" + Number[numberval[i]];
  11781. }
  11782. }
  11783. }
  11784. return stringNumberVal;
  11785. }
  11786. private void SetCells(Aspose.Words.Tables.Table table, Document doc, int rows, int cells, string val)
  11787. {
  11788. //获取table中的某个单元格,从0开始
  11789. Cell lshCell = table.Rows[rows].Cells[cells];
  11790. //将单元格中段落移除
  11791. foreach (Node item in lshCell.Paragraphs)
  11792. {
  11793. lshCell.Paragraphs.Remove(item);
  11794. }
  11795. if (val.Contains("\r\n"))
  11796. {
  11797. var spArr = val.Split("\r\n").Where(x => !string.IsNullOrWhiteSpace(x));
  11798. foreach (var item in spArr)
  11799. {
  11800. //新建一个段落
  11801. Paragraph p = new Paragraph(doc);
  11802. var r = new Run(doc, item);
  11803. //把设置的值赋给之前新建的段落
  11804. p.AppendChild(r);
  11805. //将此段落加到单元格内
  11806. lshCell.AppendChild(p);
  11807. }
  11808. }
  11809. else
  11810. {
  11811. //新建一个段落
  11812. Paragraph p = new Paragraph(doc);
  11813. var r = new Run(doc, val);
  11814. //把设置的值赋给之前新建的段落
  11815. p.AppendChild(r);
  11816. //将此段落加到单元格内
  11817. lshCell.AppendChild(p);
  11818. }
  11819. }
  11820. [HttpPost]
  11821. public async Task<IActionResult> ServerHttp(string paramStr)
  11822. {
  11823. paramStr = paramStr.TrimEnd('\'');
  11824. paramStr = paramStr.TrimStart('\'');
  11825. JsonView jw = JsonView(false);
  11826. JObject param = JObject.Parse(paramStr);
  11827. if (!param.ContainsKey("url"))
  11828. {
  11829. jw.Msg = "url null";
  11830. return Ok(jw);
  11831. }
  11832. string url = param["url"]!.ToString();
  11833. var methon = "get";
  11834. Dictionary<string, string> bodyValues = null;
  11835. Dictionary<string, string> headValues = null;
  11836. if (param.ContainsKey("methon"))
  11837. {
  11838. methon = param["methon"]!.ToString();
  11839. }
  11840. if (param.ContainsKey("header"))
  11841. {
  11842. var header = param["header"]!.ToString();
  11843. JObject headerJobject = JObject.Parse(header);
  11844. headValues = new Dictionary<string, string>();
  11845. foreach (JProperty item in headerJobject.Properties())
  11846. {
  11847. var value = item.Value.ToString();
  11848. var head = item.Path;
  11849. headValues.Add(head, value);
  11850. }
  11851. }
  11852. if (param.ContainsKey("body"))
  11853. {
  11854. var body = param["body"]!.ToString();
  11855. bodyValues = new Dictionary<string, string>();
  11856. JObject bodyJobject = JObject.Parse(body);
  11857. foreach (JProperty item in bodyJobject.Properties())
  11858. {
  11859. var value = item.Value.ToString();
  11860. var head = item.Path;
  11861. bodyValues.Add(head, value);
  11862. }
  11863. }
  11864. HttpClient client = new HttpClient();
  11865. string responseString = string.Empty;
  11866. if (param.ContainsKey("isJson"))
  11867. {
  11868. }
  11869. if (headValues != null)
  11870. {
  11871. foreach (var item in headValues.Keys)
  11872. {
  11873. client.DefaultRequestHeaders.Add(item, headValues[item]);
  11874. }
  11875. }
  11876. try
  11877. {
  11878. if (methon == "get")
  11879. {
  11880. responseString = await client.GetStringAsync(url);
  11881. }
  11882. else if (methon == "post")
  11883. {
  11884. if (bodyValues == null)
  11885. {
  11886. jw.Msg = "methon post body null";
  11887. return Ok(jw);
  11888. }
  11889. // 数据转化为 key=val 格式
  11890. var content = new FormUrlEncodedContent(bodyValues);
  11891. var response = await client.PostAsync(url, content);
  11892. // 获取数据
  11893. responseString = await response.Content.ReadAsStringAsync();
  11894. }
  11895. else
  11896. {
  11897. jw.Msg = "methon error";
  11898. }
  11899. jw = JsonView(true, "success", responseString);
  11900. }
  11901. catch (Exception ex)
  11902. {
  11903. jw.Msg = "error " + ex.Message;
  11904. jw.Data = ex.StackTrace;
  11905. }
  11906. finally
  11907. {
  11908. client.Dispose();
  11909. }
  11910. return Ok(jw);
  11911. }
  11912. #endregion
  11913. // /// <summary>
  11914. // ///
  11915. // /// </summary>
  11916. // /// <param name="_dto"></param>
  11917. // /// <returns></returns>
  11918. // [HttpPost]
  11919. // [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11920. // public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  11921. // {
  11922. // _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  11923. // string sql = string.Format(@" Select * From Visa With(Nolock) ");
  11924. // List<OA2014_Visa> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_Visa>(sql).ToList();
  11925. // _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  11926. // Dictionary<string, int> dic_psg = new Dictionary<string, int>();
  11927. // dic_psg.Add("客人", 974);
  11928. // dic_psg.Add("司机", 975);
  11929. // dic_psg.Add("导游", 976);
  11930. // dic_psg.Add("公司内部人员", 977);
  11931. // dic_psg.Add("司机/导游/公司内部人员", 978);
  11932. // foreach (var item in list_visa)
  11933. // {
  11934. // Grp_VisaInfo temp = new Grp_VisaInfo();
  11935. // temp.Id = item.Id;
  11936. // temp.DIId = item.DIId;
  11937. // temp.VisaClient = item.VisaClient;
  11938. // temp.VisaPrice = Convert.ToDecimal(item.VisaPrice);
  11939. // temp.VisaCurrency = item.VisaCurrency;
  11940. // temp.IsThird = item.IsThird;
  11941. // if (dic_psg.ContainsKey(item.PassengerType))
  11942. // {
  11943. // temp.PassengerType = dic_psg[item.PassengerType];
  11944. // }
  11945. // else {
  11946. // temp.PassengerType = -1;
  11947. // }
  11948. // temp.VisaNumber = item.VisaNumber;
  11949. // temp.VisaFreeNumber = item.VisaFreeNumber;
  11950. // temp.CreateUserId = item.Operators;
  11951. // DateTime dt_ct;
  11952. // bool b_ct = DateTime.TryParse(item.OperatorsDate, out dt_ct);
  11953. // if (b_ct)
  11954. // {
  11955. // temp.CreateTime = dt_ct;
  11956. // }
  11957. // else
  11958. // {
  11959. // temp.CreateTime = DateTime.Now;
  11960. // }
  11961. // temp.DeleteTime = "";
  11962. // temp.DeleteUserId = 0;
  11963. // temp.Remark = item.Remark;
  11964. // if (string.IsNullOrEmpty(temp.Remark)) {
  11965. // temp.Remark = "";
  11966. // }
  11967. // temp.IsDel = item.IsDel;
  11968. // temp.VisaDescription = item.VisaAttachment;
  11969. // string sqlInsert = string.Format(@" INSERT INTO [dbo].[Grp_VisaInfo]
  11970. //([Id]
  11971. // ,[DIId]
  11972. // ,[VisaClient]
  11973. // ,[VisaPrice]
  11974. // ,[VisaCurrency]
  11975. // ,[IsThird]
  11976. // ,[PassengerType]
  11977. // ,[VisaNumber]
  11978. // ,[VisaFreeNumber]
  11979. // ,[CreateUserId]
  11980. // ,[CreateTime]
  11981. // ,[DeleteTime]
  11982. // ,[DeleteUserId]
  11983. // ,[Remark]
  11984. // ,[IsDel]
  11985. // ,[visaDescription])
  11986. // VALUES
  11987. // ({0},{1},'{2}',{3},{4}
  11988. //,{5},{6},{7},{8},{9}
  11989. //,'{10}','{11}',{12},'{13}',{14},'{15}') ",temp.Id,temp.DIId,temp.VisaClient,temp.VisaPrice,temp.VisaCurrency,
  11990. //temp.IsThird,temp.PassengerType,temp.VisaNumber,temp.VisaNumber,temp.CreateUserId,
  11991. //temp.CreateTime, temp.DeleteTime, temp.DeleteUserId, temp.Remark,temp.IsDel,temp.VisaDescription
  11992. //);
  11993. // await _airTicketResRep.ExecuteCommandAsync(sqlInsert);
  11994. // }
  11995. // return Ok(JsonView(true, "操作成功!"));
  11996. // }
  11997. /// <summary>
  11998. /// 123132123
  11999. /// </summary>
  12000. /// <param name="_dto"></param>
  12001. /// <returns></returns>
  12002. [HttpPost]
  12003. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  12004. public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  12005. {
  12006. _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  12007. string sql = string.Format(@" Select * From grouopExceed where id > 20 And id not in (26,27) ");
  12008. List<OA2014_grouopExceed> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_grouopExceed>(sql).ToList();
  12009. _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  12010. Dictionary<int, int> dicDetail = new Dictionary<int, int>();
  12011. dicDetail.Add(789, 1034);
  12012. dicDetail.Add(790, 1035);
  12013. dicDetail.Add(791, 1036);
  12014. dicDetail.Add(792, 1037);
  12015. dicDetail.Add(793, 1038);
  12016. dicDetail.Add(794, 1039);
  12017. dicDetail.Add(795, 1040);
  12018. dicDetail.Add(796, 1041);
  12019. dicDetail.Add(797, 1042);
  12020. dicDetail.Add(798, 1043);
  12021. dicDetail.Add(801, 1044);
  12022. dicDetail.Add(802, 1045);
  12023. dicDetail.Add(803, 1046);
  12024. Dictionary<int, int> dic = new Dictionary<int, int>();
  12025. dic.Add(806, 1027);
  12026. dic.Add(807, 1028);
  12027. dic.Add(808, 1029);
  12028. dic.Add(809, 1030);
  12029. dic.Add(810, 1031);
  12030. dic.Add(811, 1032);
  12031. dic.Add(812, 1033);
  12032. foreach (var item in list_visa)
  12033. {
  12034. Fin_GroupExtraCost temp = new Fin_GroupExtraCost();
  12035. temp.Coefficient = item.coefficient;
  12036. DateTime dtCrt;
  12037. bool b1 = DateTime.TryParse(item.OperatorsDate, out dtCrt);
  12038. if (b1)
  12039. {
  12040. temp.CreateTime = dtCrt;
  12041. }
  12042. else
  12043. {
  12044. temp.CreateTime = DateTime.Now;
  12045. }
  12046. temp.CreateUserId = item.Operators;
  12047. temp.DeleteTime = "";
  12048. temp.DeleteUserId = 0;
  12049. temp.DiId = int.Parse(item.DIID);
  12050. temp.FilePath = item.FilePath;
  12051. temp.IsDel = item.IsDel;
  12052. temp.Price = item.Price;
  12053. temp.PriceCount = 1;
  12054. temp.PriceCurrency = item.Currency;
  12055. int detailId = 0;
  12056. if (dicDetail.ContainsKey(item.PriceTypeDetail))
  12057. {
  12058. detailId = dicDetail[item.PriceTypeDetail];
  12059. }
  12060. temp.PriceDetailType = detailId;
  12061. temp.PriceDt = DateTime.Now;
  12062. temp.PriceName = item.PriceName;
  12063. temp.PriceSum = item.Price;
  12064. int tid = 0;
  12065. if (dic.ContainsKey(item.PriceType))
  12066. {
  12067. tid = dic[item.PriceType];
  12068. }
  12069. temp.PriceType = tid;
  12070. temp.Remark = item.Remark;
  12071. await _airTicketResRep.AddAsync<Fin_GroupExtraCost>(temp);
  12072. }
  12073. return Ok(JsonView(true, "操作成功!"));
  12074. }
  12075. }
  12076. }