GroupsController.cs 621 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573
  1. using Aspose.Cells;
  2. using Aspose.Cells.Drawing.Texts;
  3. using Aspose.Words;
  4. using Aspose.Words.Tables;
  5. using NPOI.Util;
  6. using OASystem.API.OAMethodLib;
  7. using OASystem.API.OAMethodLib.File;
  8. using OASystem.Domain.Dtos.Groups;
  9. using OASystem.Domain.Entities.Groups;
  10. using OASystem.Domain.ViewModels.Groups;
  11. using OASystem.Infrastructure.Repositories.Groups;
  12. using TencentCloud.Ocr.V20181119.Models;
  13. using OASystem.Infrastructure.Tools;
  14. using System.Web;
  15. using System.Data;
  16. using static OASystem.Infrastructure.Repositories.Groups.AirTicketResRepository;
  17. using static OpenAI.GPT3.ObjectModels.SharedModels.IOpenAiModels;
  18. using Cell = Aspose.Words.Tables.Cell;
  19. using Row = Aspose.Words.Tables.Row;
  20. using System.Runtime.Intrinsics.Arm;
  21. using Microsoft.AspNetCore.Mvc.Filters;
  22. using OASystem.Domain.Entities.Customer;
  23. using NPOI.SS.Formula.Functions;
  24. using OASystem.Domain.Dtos.CRM;
  25. using System.Diagnostics;
  26. using MathNet.Numerics.Statistics.Mcmc;
  27. using AlibabaCloud.OpenApiClient.Models;
  28. using System;
  29. using NPOI.HPSF;
  30. using SqlSugar;
  31. using System.Collections;
  32. using Org.BouncyCastle.Ocsp;
  33. using System.Globalization;
  34. using static QRCoder.PayloadGenerator;
  35. using Bookmark = Aspose.Words.Bookmark;
  36. using Aspose.Words.Fields;
  37. using NPOI.POIFS.FileSystem;
  38. using Microsoft.AspNetCore.Mvc.ViewEngines;
  39. using OASystem.Domain.ViewModels.QiYeWeChat;
  40. using OASystem.Domain.Entities.Financial;
  41. using NPOI.POIFS.Crypt.Dsig;
  42. using System.Diagnostics.Eventing.Reader;
  43. using System.IO;
  44. using StackExchange.Redis;
  45. using Org.BouncyCastle.Utilities;
  46. using Aspose.Words.Drawing;
  47. using Aspose.Cells.Charts;
  48. using static NPOI.HSSF.Util.HSSFColor;
  49. using Quartz.Util;
  50. using Google.Protobuf.WellKnownTypes;
  51. using Microsoft.AspNetCore.SignalR;
  52. using OASystem.API.OAMethodLib.Hub.HubClients;
  53. using OASystem.API.OAMethodLib.Hub.Hubs;
  54. using System.Collections.Generic;
  55. using OASystem.API.OAMethodLib.JuHeAPI;
  56. using static Microsoft.EntityFrameworkCore.DbLoggerCategory;
  57. using SixLabors.Fonts.Tables.AdvancedTypographic;
  58. using Microsoft.EntityFrameworkCore;
  59. using System.Security.Cryptography.Xml;
  60. using MathNet.Numerics;
  61. using System.Security.Policy;
  62. using System.Xml;
  63. using OASystem.Domain.Dtos.QiYeWeChat;
  64. using static NPOI.POIFS.Crypt.CryptoFunctions;
  65. using Aspose.Words.Lists;
  66. using OASystem.API.OAMethodLib.YouDaoAPI;
  67. using NPOI.XSSF.Streaming.Values;
  68. using OASystem.API.OAMethodLib.Quartz.Business;
  69. using System.Linq;
  70. using NPOI.POIFS.NIO;
  71. using OASystem.API.OAMethodLib.QiYeWeChatAPI.AppNotice;
  72. using OASystem.Domain.ViewModels.Statistics;
  73. using NPOI.XSSF.Model;
  74. using NetTaste;
  75. using Microsoft.AspNetCore.Http;
  76. using EyeSoft.Collections.Generic;
  77. using NPOI.HSSF.Util;
  78. using NPOI.HSSF.UserModel;
  79. using NPOI.SS.UserModel;
  80. using NPOI.XSSF.UserModel;
  81. using MySqlX.XDevAPI.Relational;
  82. using SqlSugar.Extensions;
  83. using Table = Aspose.Words.Tables.Table;
  84. using Aspose.Cells.Tables;
  85. using NPOI.SS.Util;
  86. using RestSharp.Extensions;
  87. using Microsoft.AspNetCore.WebUtilities;
  88. using K4os.Compression.LZ4.Internal;
  89. using static Pipelines.Sockets.Unofficial.SocketConnection;
  90. using System.Diagnostics.PerformanceData;
  91. using System.Drawing.Printing;
  92. namespace OASystem.API.Controllers
  93. {
  94. /// <summary>
  95. /// 团组相关
  96. /// </summary>
  97. //[Authorize]
  98. [Route("api/[controller]/[action]")]
  99. public class GroupsController : ControllerBase
  100. {
  101. private readonly GrpScheduleRepository _grpScheduleRep;
  102. private readonly IMapper _mapper;
  103. private readonly DelegationInfoRepository _groupRepository;
  104. private readonly TaskAssignmentRepository _taskAssignmentRep;
  105. private readonly AirTicketResRepository _airTicketResRep;
  106. private readonly DecreasePaymentsRepository _decreasePaymentsRep;
  107. private readonly InvitationOfficialActivitiesRepository _InvitationOfficialActivitiesRep;
  108. private readonly DelegationEnDataRepository _delegationEnDataRep;
  109. private readonly DelegationVisaRepository _delegationVisaRep;
  110. private readonly VisaPriceRepository _visaPriceRep;
  111. private readonly CarTouristGuideGroundRepository _carTouristGuideGroundRep;
  112. private readonly HotelPriceRepository _hotelPriceRep;
  113. private readonly CustomersRepository _customersRep;
  114. private readonly MessageRepository _message;
  115. private readonly SqlSugarClient _sqlSugar;
  116. private readonly TourClientListRepository _tourClientListRep;
  117. private readonly TeamRateRepository _teamRateRep;
  118. #region 成本相关
  119. private readonly CheckBoxsRepository _checkBoxs;
  120. private readonly GroupCostRepository _GroupCostRepository;
  121. private readonly CostTypeHotelNumberRepository _CostTypeHotelNumberRepository;
  122. private readonly GroupCostParameterRepository _GroupCostParameterRepository;
  123. #endregion
  124. private readonly SetDataRepository _setDataRep;
  125. private string url;
  126. private string path;
  127. private readonly EnterExitCostRepository _enterExitCostRep;
  128. private readonly IHubContext<ChatHub, IChatClient> _hubContext;
  129. private readonly UsersRepository _usersRep;
  130. private readonly IJuHeApiService _juHeApi;
  131. private readonly InvertedListRepository _invertedListRep;
  132. private readonly VisaFeeInfoRepository _visaFeeInfoRep;
  133. private readonly TicketBlackCodeRepository _ticketBlackCodeRep;
  134. private readonly ThreeCodeRepository _threeCodeRepository;
  135. private readonly HotelInquiryRepository _hotelInquiryRep;
  136. private readonly FeeAuditRepository _feeAuditRep;
  137. public GroupsController(IMapper mapper, SqlSugarClient sqlSugar, GrpScheduleRepository grpScheduleRep, DelegationInfoRepository groupRepository,
  138. TaskAssignmentRepository taskAssignmentRep, AirTicketResRepository airTicketResRep, DecreasePaymentsRepository decreasePaymentsRep,
  139. InvitationOfficialActivitiesRepository InvitationOfficialActivitiesRep, DelegationEnDataRepository delegationEnDataRep, EnterExitCostRepository enterExitCostRep
  140. , DelegationVisaRepository delegationVisaRep, MessageRepository message, VisaPriceRepository visaPriceRep, CarTouristGuideGroundRepository carTouristGuideGroundRep,
  141. CheckBoxsRepository checkBoxs, GroupCostRepository GroupCostRepository, CostTypeHotelNumberRepository CostTypeHotelNumberRepository,
  142. GroupCostParameterRepository GroupCostParameterRepository, HotelPriceRepository hotelPriceRep, CustomersRepository customersRep, SetDataRepository setDataRep,
  143. TourClientListRepository tourClientListRep, TeamRateRepository teamRateRep, IHubContext<ChatHub, IChatClient> hubContext, UsersRepository usersRep, IJuHeApiService juHeApi,
  144. InvertedListRepository invertedListRep, VisaFeeInfoRepository visaFeeInfoRep, TicketBlackCodeRepository ticketBlackCodeRep, HotelInquiryRepository hotelInquiryRep,
  145. ThreeCodeRepository threeCodeRepository, FeeAuditRepository feeAuditRep)
  146. {
  147. _mapper = mapper;
  148. _grpScheduleRep = grpScheduleRep;
  149. _groupRepository = groupRepository;
  150. _taskAssignmentRep = taskAssignmentRep;
  151. _airTicketResRep = airTicketResRep;
  152. _sqlSugar = sqlSugar;
  153. url = AppSettingsHelper.Get("ExcelBaseUrl");
  154. path = AppSettingsHelper.Get("ExcelBasePath");
  155. if (!System.IO.Directory.Exists(path))
  156. {
  157. System.IO.Directory.CreateDirectory(path);//不存在就创建文件夹
  158. }
  159. _decreasePaymentsRep = decreasePaymentsRep;
  160. _InvitationOfficialActivitiesRep = InvitationOfficialActivitiesRep;
  161. _delegationEnDataRep = delegationEnDataRep;
  162. _enterExitCostRep = enterExitCostRep;
  163. _delegationVisaRep = delegationVisaRep;
  164. _message = message;
  165. _visaPriceRep = visaPriceRep;
  166. _carTouristGuideGroundRep = carTouristGuideGroundRep;
  167. _checkBoxs = checkBoxs;
  168. _GroupCostRepository = GroupCostRepository;
  169. _CostTypeHotelNumberRepository = CostTypeHotelNumberRepository;
  170. _GroupCostParameterRepository = GroupCostParameterRepository;
  171. _hotelPriceRep = hotelPriceRep;
  172. _customersRep = customersRep;
  173. _setDataRep = setDataRep;
  174. _tourClientListRep = tourClientListRep;
  175. _teamRateRep = teamRateRep;
  176. _hubContext = hubContext;
  177. _usersRep = usersRep;
  178. _juHeApi = juHeApi;
  179. _invertedListRep = invertedListRep;
  180. _visaFeeInfoRep = visaFeeInfoRep;
  181. _ticketBlackCodeRep = ticketBlackCodeRep;
  182. _hotelInquiryRep = hotelInquiryRep;
  183. _threeCodeRepository = threeCodeRepository;
  184. _feeAuditRep = feeAuditRep;
  185. }
  186. #region 流程管控
  187. /// <summary>
  188. /// 获取团组流程管控信息
  189. /// </summary>
  190. /// <param name="paras">参数Json字符串</param>
  191. /// <returns></returns>
  192. [HttpPost]
  193. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  194. public async Task<IActionResult> PostSearchGrpSchedule(JsonDtoBase _jsonDto)
  195. {
  196. if (string.IsNullOrEmpty(_jsonDto.Paras))
  197. {
  198. return Ok(JsonView(false, "参数为空"));
  199. }
  200. Grp_ScheduleDto _ScheduleDto = JsonConvert.DeserializeObject<Grp_ScheduleDto>(_jsonDto.Paras);
  201. if (_ScheduleDto != null)
  202. {
  203. if (_ScheduleDto.SearchType == 2)//获取列表
  204. {
  205. List<Grp_ScheduleView> _grpScheduleViewList = await _grpScheduleRep.GetViewList_GrpSchedule(_ScheduleDto);
  206. return Ok(JsonView(_grpScheduleViewList));
  207. }
  208. else//获取对象
  209. {
  210. Grp_ScheduleCombinView _grpScheduleView = await _grpScheduleRep.GetView_GrpSchedule(_ScheduleDto);
  211. if (_grpScheduleView != null)
  212. {
  213. return Ok(JsonView(_grpScheduleView));
  214. }
  215. }
  216. }
  217. else
  218. {
  219. return Ok(JsonView(false, "参数反序列化失败"));
  220. }
  221. return Ok(JsonView(false, "暂无数据!"));
  222. }
  223. /// <summary>
  224. /// 修改团组流程管控详细表数据
  225. /// </summary>
  226. /// <param name="paras"></param>
  227. /// <returns></returns>
  228. [HttpPost]
  229. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  230. public async Task<IActionResult> PostUpdateGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  231. {
  232. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  233. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  234. .SetColumns(it => it.Duty == _detail.Duty)
  235. .SetColumns(it => it.ExpectBeginDt == _detail.ExpectBeginDt)
  236. .SetColumns(it => it.ExpectEndDt == _detail.ExpectEndDt)
  237. .SetColumns(it => it.JobContent == _detail.JobContent)
  238. .SetColumns(it => it.Remark == _detail.Remark)
  239. .SetColumns(it => it.StepStatus == _detail.StepStatus)
  240. .Where(s => s.Id == dto.Id)
  241. //.UpdateColumns(s => new { s.Duty, s.ExpectBeginDt, s.ExpectEndDt, s.JobContent, s.Remark, s.StepStatus })
  242. .ExecuteCommandAsync();
  243. if (result > 0)
  244. {
  245. return Ok(JsonView(true, "保存成功!"));
  246. }
  247. return Ok(JsonView(false, "保存失败!"));
  248. }
  249. /// <summary>
  250. /// 删除团组流程管控详细表数据,删除人Id请放在Duty
  251. /// </summary>
  252. /// <param name="dto"></param>
  253. /// <returns></returns>
  254. [HttpPost]
  255. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  256. public async Task<ActionResult> PostDeleteGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  257. {
  258. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  259. _detail.IsDel = 1;
  260. _detail.DeleteUserId = dto.Duty;
  261. _detail.DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  262. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  263. .SetColumns(it => it.IsDel == _detail.IsDel)
  264. .SetColumns(it => it.DeleteUserId == _detail.DeleteUserId)
  265. .SetColumns(it => it.DeleteTime == _detail.DeleteTime)
  266. .Where(it => it.Id == dto.Id)
  267. //.UpdateColumns(s => new { s.IsDel, s.DeleteUserId, s.DeleteTime })
  268. //.WhereColumns(s => s.Id == dto.Id)
  269. .ExecuteCommandAsync();
  270. if (result > 0)
  271. {
  272. return Ok(JsonView(true, "删除成功!"));
  273. }
  274. return Ok(JsonView(false, "删除失败!"));
  275. }
  276. /// <summary>
  277. /// 增加团组流程管控详细表数据
  278. /// </summary>
  279. /// <param name="dto"></param>
  280. /// <returns></returns>
  281. [HttpPost]
  282. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  283. public async Task<ActionResult> PostInsertGrpScheduleDetail(Grp_ScheduleDetailInsertDto dto)
  284. {
  285. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  286. if (DateTime.Now < _detail.ExpectBeginDt)
  287. {
  288. _detail.StepStatus = 0;
  289. }
  290. else
  291. {//若大于设置时间,不考虑设置的预计结束日期,统一视为进行中
  292. _detail.StepStatus = 1;
  293. }
  294. var result = await _grpScheduleRep._sqlSugar.Insertable(_detail).ExecuteReturnIdentityAsync();
  295. if (result > 0)
  296. {
  297. Grp_ScheduleDetailView _result = await _grpScheduleRep.GetInsertBackData(result);
  298. return Ok(JsonView(true, "添加成功!", _result));
  299. }
  300. return Ok(JsonView(false, "添加失败!"));
  301. }
  302. #endregion
  303. #region 团组基本信息
  304. /// <summary>
  305. /// 接团信息列表
  306. /// </summary>
  307. /// <param name="dto">团组列表请求dto</param>
  308. /// <returns></returns>
  309. [HttpPost]
  310. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  311. public async Task<IActionResult> GetGroupList(GroupListDto dto)
  312. {
  313. var groupData = await _groupRepository.GetGroupList(dto);
  314. if (groupData.Code != 0)
  315. {
  316. return Ok(JsonView(false, groupData.Msg));
  317. }
  318. return Ok(JsonView(groupData.Data));
  319. }
  320. /// <summary>
  321. /// 接团信息列表 Page
  322. /// </summary>
  323. /// <param name="dto">团组列表请求dto</param>
  324. /// <returns></returns>
  325. [HttpPost]
  326. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  327. public async Task<IActionResult> PostGroupPageList(GroupPageListDto dto)
  328. {
  329. #region 参数验证
  330. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  331. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  332. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  333. #region 页面操作权限验证
  334. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  335. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  336. #endregion
  337. #endregion
  338. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  339. {
  340. string sqlWhere = string.Empty;
  341. if (dto.IsSure == 0) //未完成
  342. {
  343. sqlWhere += string.Format(@" And IsSure = 0");
  344. }
  345. else if (dto.IsSure == 1) //已完成
  346. {
  347. sqlWhere += string.Format(@" And IsSure = 1");
  348. }
  349. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  350. {
  351. string tj = dto.SearchCriteria;
  352. sqlWhere += string.Format(@"And (ssd.Name Like '%{0}%' Or TeamName Like '%{1}%' Or ClientName Like '%{2}%' Or ClientName Like '%{3}%' Or su.CnName Like '%{4}%')",
  353. tj, tj, tj, tj, tj);
  354. }
  355. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  356. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  357. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  358. JietuanOperator,IsSure,CreateTime
  359. From (
  360. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  361. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  362. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  363. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  364. su.CnName JietuanOperator,IsSure,gdi.CreateTime
  365. From Grp_DelegationInfo gdi
  366. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  367. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  368. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  369. Where gdi.IsDel = 0 {0}
  370. ) temp", sqlWhere);
  371. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  372. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  373. #region 处理所属部门
  374. /*
  375. * 1.sq 和 gyy 等显示 市场部
  376. * 2.王鸽和主管及张总还有管理员号统一国交部
  377. * 2-1. 4 管理员 ,21 张海麟
  378. */
  379. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  380. List<int> userIds1 = new List<int>() { 4, 21 };
  381. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  382. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  383. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  384. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  385. .ToList();
  386. foreach (var item in _DelegationList)
  387. {
  388. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  389. }
  390. #endregion
  391. var _view = new
  392. {
  393. PageFuncAuth = pageFunAuthView,
  394. Data = _DelegationList
  395. };
  396. return Ok(JsonView(true, "查询成功!", _view, total));
  397. }
  398. else
  399. {
  400. return Ok(JsonView(false, "查询失败"));
  401. }
  402. }
  403. /// <summary>
  404. /// 团组列表
  405. /// </summary>
  406. /// <returns></returns>
  407. [HttpPost]
  408. public async Task<IActionResult> GetGroupListByWhere(GroupListByWhere dto)
  409. {
  410. #region 参数验证
  411. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  412. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  413. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  414. #region 页面操作权限验证
  415. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  416. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  417. #endregion
  418. #endregion
  419. if (dto.PortType != 1 && dto.PortType != 2)
  420. {
  421. return Ok(JsonView(false, "查询失败!"));
  422. }
  423. string orderbyStr = "order by gdi.CreateTime Desc";
  424. string sqlWhere = string.Empty;
  425. if (dto.IsSure == 0) //未完成
  426. {
  427. sqlWhere += string.Format(@" And IsSure = 0");
  428. }
  429. else if (dto.IsSure == 1) //已完成
  430. {
  431. sqlWhere += string.Format(@" And IsSure = 1");
  432. }
  433. //团组类型
  434. if (dto.TeamDid > 0)
  435. {
  436. sqlWhere += string.Format(@"And TeamDid = {0} ", dto.TeamDid);
  437. }
  438. //团组名称
  439. if (!string.IsNullOrEmpty(dto.TeamName))
  440. {
  441. sqlWhere += string.Format(@"And TeamName Like '%{0}%'", dto.TeamName);
  442. }
  443. //客户名称
  444. if (!string.IsNullOrEmpty(dto.ClientName))
  445. {
  446. sqlWhere += string.Format(@"And ClientName Like '%{0}%'", dto.ClientName);
  447. }
  448. //客户单位
  449. if (!string.IsNullOrEmpty(dto.ClientUnit))
  450. {
  451. sqlWhere += string.Format(@"And ClientUnit Like '%{0}%'", dto.ClientUnit);
  452. }
  453. //出访时间
  454. if (!string.IsNullOrEmpty(dto.visitDataTime))
  455. {
  456. sqlWhere += string.Format(@"And VisitDate >= '{0}'", dto.visitDataTime);
  457. orderbyStr = "order by gdi.VisitDate";
  458. }
  459. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  460. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  461. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  462. JietuanOperator,IsSure,CreateTime
  463. From (
  464. Select row_number() over({0}) as Row_Number,
  465. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  466. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  467. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  468. su.CnName JietuanOperator,IsSure,gdi.CreateTime
  469. From Grp_DelegationInfo gdi
  470. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  471. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  472. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  473. Where gdi.IsDel = 0 {1}
  474. ) temp ", orderbyStr, sqlWhere);
  475. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  476. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  477. #region 处理所属部门
  478. /*
  479. * 1.sq 和 gyy 等显示 市场部
  480. * 2.王鸽和主管及张总还有管理员号统一国交部
  481. * 2-1. 4 管理员 ,21 张海麟
  482. */
  483. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  484. List<int> userIds1 = new List<int>() { 4, 21 };
  485. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  486. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  487. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  488. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  489. .ToList();
  490. foreach (var item in _DelegationList)
  491. {
  492. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  493. }
  494. #endregion
  495. var _view = new
  496. {
  497. PageFuncAuth = pageFunAuthView,
  498. Data = _DelegationList
  499. };
  500. return Ok(JsonView(true, "查询成功!", _view, total));
  501. }
  502. /// <summary>
  503. /// 接团信息详情
  504. /// </summary>
  505. /// <param name="dto">团组info请求dto</param>
  506. /// <returns></returns>
  507. [HttpPost]
  508. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  509. public async Task<IActionResult> GetGroupInfo(GroupInfoDto dto)
  510. {
  511. var groupData = await _groupRepository.GetGroupInfo(dto);
  512. if (groupData.Code != 0)
  513. {
  514. return Ok(JsonView(false, groupData.Msg));
  515. }
  516. return Ok(JsonView(groupData.Data));
  517. }
  518. /// <summary>
  519. /// 接团信息 编辑添加
  520. /// 基础信息数据源
  521. /// </summary>
  522. /// <param name="dto"></param>
  523. /// <returns></returns>
  524. [HttpPost]
  525. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  526. public async Task<IActionResult> GroupEditBasicSource(GroupListDto dto)
  527. {
  528. var groupData = await _groupRepository.GroupEditBasicSource(dto);
  529. if (groupData.Code != 0)
  530. {
  531. return Ok(JsonView(false, groupData.Msg));
  532. }
  533. return Ok(JsonView(groupData.Data));
  534. }
  535. /// <summary>
  536. /// 接团信息 操作(增改)
  537. /// </summary>
  538. /// <param name="dto"></param>
  539. /// <returns></returns>
  540. [HttpPost]
  541. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  542. public async Task<IActionResult> GroupOperation(GroupOperationDto dto)
  543. {
  544. try
  545. {
  546. var groupData = await _groupRepository.GroupOperation(dto);
  547. if (groupData.Code != 0)
  548. {
  549. return Ok(JsonView(false, groupData.Msg));
  550. }
  551. int diId = 0;
  552. //添加时 默认加入团组汇率
  553. if (dto.Status == 1) //添加
  554. {
  555. diId = groupData.Data;
  556. //添加默认币种
  557. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  558. //默认分配权限
  559. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  560. //消息提示 王鸽 主管号
  561. List<int> _managerIds = new List<int>() { 22, 32 };
  562. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  563. if (userIds.Count > 0)
  564. {
  565. userIds.Add(208);
  566. //创建团组管控
  567. GroupStepForDelegation.CreateWorkStep(diId);
  568. //发送消息
  569. string groupName = dto.TeamName;
  570. string createGroupUser = string.Empty;
  571. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  572. if (userInfo != null) createGroupUser = userInfo.CnName;
  573. string title = $"系统通知";
  574. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  575. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  576. }
  577. //默认创建倒推表
  578. await _invertedListRep._Create(dto.UserId, diId);
  579. }
  580. else if (dto.Status == 2)
  581. {
  582. diId = dto.Id;
  583. }
  584. return Ok(JsonView(true, "操作成功!", diId));
  585. }
  586. catch (Exception ex)
  587. {
  588. Logs("[response]" + JsonConvert.SerializeObject(dto));
  589. Logs(ex.Message);
  590. return Ok(JsonView(false, ex.Message));
  591. }
  592. }
  593. /// <summary>
  594. /// 接团流程操作(增改)
  595. /// 安卓端使用 建团时添加客户名单
  596. /// </summary>
  597. /// <param name="dto"></param>
  598. /// <returns></returns>
  599. [HttpPost]
  600. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  601. public async Task<IActionResult> GroupProcessOperation(GroupProcessOperationDto dto)
  602. {
  603. try
  604. {
  605. #region 参数验证
  606. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  607. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  608. #region 页面操作权限验证
  609. //pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 104);
  610. //if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "客户名单您没有添加权限!"));
  611. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 27);
  612. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "团组操作您没有添加权限!"));
  613. #endregion
  614. #endregion
  615. _sqlSugar.BeginTran();
  616. var _dto = new GroupOperationDto();
  617. _dto = _mapper.Map<GroupProcessOperationDto, GroupOperationDto>(dto);
  618. var groupData = await _groupRepository.GroupOperation(_dto);
  619. if (groupData.Code != 0)
  620. {
  621. return Ok(JsonView(false, "团组操作添加失败!" + groupData.Msg));
  622. }
  623. int diId = 0;
  624. //添加时 默认加入团组汇率
  625. if (dto.Status == 1) //添加
  626. {
  627. diId = groupData.Data;
  628. //添加默认币种
  629. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  630. //默认分配权限
  631. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  632. //消息提示 王鸽 主管号
  633. List<int> _managerIds = new List<int>() { 22, 32 };
  634. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  635. if (userIds.Count > 0)
  636. {
  637. userIds.Add(208);
  638. //创建团组管控
  639. GroupStepForDelegation.CreateWorkStep(diId);
  640. //发送消息
  641. string groupName = dto.TeamName;
  642. string createGroupUser = string.Empty;
  643. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  644. if (userInfo != null) createGroupUser = userInfo.CnName;
  645. string title = $"系统通知";
  646. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  647. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  648. }
  649. }
  650. if (dto.Status == 2)
  651. {
  652. diId = dto.Id;
  653. if (diId == 0)
  654. {
  655. return Ok(JsonView(false, "修改失败! 未添加团组id" + groupData.Msg));
  656. }
  657. }
  658. var viewData = await _tourClientListRep.OperMultiple(dto.TourClientListInfos, diId, dto.UserId);
  659. if (viewData.Code != 0)
  660. {
  661. _sqlSugar.RollbackTran();
  662. return Ok(JsonView(false, "客户名单添加失败!" + viewData.Msg));
  663. }
  664. _sqlSugar.CommitTran();
  665. return Ok(JsonView(true, "添加成功"));
  666. }
  667. catch (Exception ex)
  668. {
  669. _sqlSugar.RollbackTran();
  670. return Ok(JsonView(false, ex.Message));
  671. }
  672. }
  673. /// <summary>
  674. /// 接团信息 操作(删除)
  675. /// </summary>
  676. /// <param name="dto"></param>
  677. /// <returns></returns>
  678. [HttpPost]
  679. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  680. public async Task<IActionResult> GroupDel(GroupDelDto dto)
  681. {
  682. try
  683. {
  684. var groupData = await _groupRepository.GroupDel(dto);
  685. if (groupData.Code != 0)
  686. {
  687. return Ok(JsonView(false, groupData.Msg));
  688. }
  689. return Ok(JsonView(true));
  690. }
  691. catch (Exception ex)
  692. {
  693. Logs("[response]" + JsonConvert.SerializeObject(dto));
  694. Logs(ex.Message);
  695. return Ok(JsonView(false, ex.Message));
  696. }
  697. }
  698. /// <summary>
  699. /// 获取团组销售报价号
  700. /// 团组添加时 使用
  701. /// </summary>
  702. /// <returns></returns>
  703. [HttpPost]
  704. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  705. public async Task<IActionResult> GetGroupSalesQuoteNo()
  706. {
  707. var groupData = await _groupRepository.GetGroupSalesQuoteNo();
  708. if (groupData.Code != 0)
  709. {
  710. return Ok(JsonView(false, groupData.Msg));
  711. }
  712. object salesQuoteNo = new
  713. {
  714. SalesQuoteNo = groupData.Data
  715. };
  716. return Ok(JsonView(salesQuoteNo));
  717. }
  718. /// <summary>
  719. /// 设置确认出团
  720. /// </summary>
  721. /// <param name="dto"></param>
  722. /// <returns></returns>
  723. [HttpPost]
  724. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  725. public async Task<IActionResult> SetConfirmationGroup(ConfirmationGroupDto dto)
  726. {
  727. var groupData = await _groupRepository.ConfirmationGroup(dto);
  728. if (groupData.Code != 0)
  729. {
  730. return Ok(JsonView(false, groupData.Msg));
  731. }
  732. var groupInfo = _groupRepository.Query(s => s.Id == dto.GroupId).First();
  733. #region OA消息推送
  734. try
  735. {
  736. string groupName = groupInfo.TeamName;
  737. List<Sys_Users> listUser = _airTicketResRep.Query<Sys_Users>(s => s.DepId == 7 && s.IsDel == 0).ToList();
  738. List<int> userIds = new List<int>();
  739. listUser.ForEach(s => userIds.Add(s.Id));
  740. string title = $"系统通知";
  741. string content = $"团组[{groupName}]已确认出团!";
  742. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, dto.GroupId);
  743. }
  744. catch (Exception ex)
  745. {
  746. }
  747. #endregion
  748. #region 应用推送
  749. try
  750. {
  751. await AppNoticeLibrary.SendChatMsg_GroupStatus_Create(dto.GroupId, QiyeWeChatEnum.CompanyCRMChat);
  752. Sys_Users users = _airTicketResRep.Query<Sys_Users>(s => s.Id == groupInfo.JietuanOperator).First();
  753. Sys_Department department = _airTicketResRep.Query<Sys_Department>(s => s.Id == users.DepId).First();
  754. if (department.Id == 6 && !string.IsNullOrEmpty(users.QiyeChatUserId))
  755. {
  756. List<string> userList = new List<string>() { users.QiyeChatUserId };
  757. await AppNoticeLibrary.SendUserMsg_GroupStatus_Create(dto.GroupId, userList);
  758. }
  759. }
  760. catch (Exception ex)
  761. {
  762. }
  763. #endregion
  764. GroupStepForDelegation.CreateWorkStep(dto.GroupId); //创建管控流程
  765. return Ok(JsonView(true, "操作成功!", groupData.Data));
  766. }
  767. /// <summary>
  768. /// 获取团组名称data And 签证国别Data
  769. /// </summary>
  770. /// <param name="dto"></param>
  771. /// <returns></returns>
  772. [HttpPost]
  773. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  774. public async Task<IActionResult> GetGroupNameAndVisaNationality(GroupNameDto dto)
  775. {
  776. var groupData = await _groupRepository.GetGroupNameAndVisaNationality(dto);
  777. if (groupData.Code != 0)
  778. {
  779. return Ok(JsonView(false, groupData.Msg));
  780. }
  781. return Ok(JsonView(groupData.Data));
  782. }
  783. /// <summary>
  784. /// 根据CTable类型返回对应的团组名称及简单数据(APP端)
  785. /// </summary>
  786. /// <returns></returns>
  787. [HttpPost]
  788. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  789. public async Task<IActionResult> PostGroupNameAndEasy(DecreasePaymentsDto dto)
  790. {
  791. try
  792. {
  793. Result groupData = await _decreasePaymentsRep.PostGroupNameAndEasy(dto);
  794. if (groupData.Code != 0)
  795. {
  796. return Ok(JsonView(false, groupData.Msg));
  797. }
  798. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  799. }
  800. catch (Exception ex)
  801. {
  802. return Ok(JsonView(false, "程序错误!"));
  803. throw;
  804. }
  805. }
  806. #endregion
  807. #region 团组&签证
  808. /// <summary>
  809. /// 根据团组Id获取签证客户信息List
  810. /// </summary>
  811. /// <param name="dto">请求dto</param>
  812. /// <returns></returns>
  813. [HttpPost]
  814. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  815. public async Task<IActionResult> GetCrmByGroupId(ClientByGroupIdDto dto)
  816. {
  817. var groupData = await _groupRepository.GetCrmByGroupId(dto);
  818. if (groupData.Code != 0)
  819. {
  820. return Ok(JsonView(false, groupData.Msg));
  821. }
  822. return Ok(JsonView(groupData.Data));
  823. }
  824. /// <summary>
  825. /// IOS获取团组签证拍照上传进度01(团组列表)
  826. /// </summary>
  827. /// <param name="dto">请求dto</param>
  828. /// <returns></returns>
  829. [HttpPost]
  830. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  831. public async Task<IActionResult> PostIOSVisaProgress(IOS_VisaDto dto)
  832. {
  833. if (dto == null)
  834. {
  835. return Ok(JsonView(false, "参数为空"));
  836. }
  837. DelegationVisaViewList visaList = _delegationVisaRep.GetDelegationList(dto);
  838. return Ok(JsonView(visaList));
  839. }
  840. /// <summary>
  841. /// IOS获取团组签证拍照上传进度02(团组签证详情\人员列表\国家)
  842. /// </summary>
  843. /// <returns></returns>
  844. [HttpPost]
  845. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  846. public async Task<ActionResult> PostIOSVisaProgressContent(IOS_VisaCustomerListDto dto)
  847. {
  848. if (dto == null)
  849. {
  850. return Ok(JsonView(false, "请求错误:"));
  851. }
  852. List<DelegationVisaProgressView> list = _delegationVisaRep.GetDelegationProgressList(dto.diId);
  853. return Ok(JsonView(list));
  854. }
  855. /// <summary>
  856. /// IOS获取团组签证拍照上传进度03(相册)
  857. /// </summary>
  858. /// <returns></returns>
  859. [HttpPost]
  860. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  861. public async Task<ActionResult> PostIOSVisaProgressImageList(IOS_VisaImageListDto dto)
  862. {
  863. if (dto == null)
  864. {
  865. return Ok(JsonView(false, "请求错误:"));
  866. }
  867. List<VisaProgressImageView> list = _delegationVisaRep.GetVisaProgressImageList(dto.visaProgressCustomerId, dto.picType);
  868. string url = AppSettingsHelper.Get("VisaProgressImageBaseUrl") + AppSettingsHelper.Get("VisaProgressImageFtpPath");
  869. list.ForEach(s => s.url = url);
  870. return Ok(JsonView(list));
  871. }
  872. /// <summary>
  873. /// IOS获取团组签证拍照上传进度04(图片上传)
  874. /// </summary>
  875. /// <param name="dto"></param>
  876. /// <returns></returns>
  877. [HttpPost]
  878. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  879. public async Task<ActionResult> PostIOSVisaProgressUploadImage(IOS_VisaUploadImageDto dto)
  880. {
  881. //string result = decodeBase64ToImage(dto.base64DataURL, dto.imageName);
  882. //if (!string.IsNullOrEmpty(result))
  883. //{
  884. //}
  885. //else {
  886. // return Ok(JsonView(false, "上传失败"));
  887. //}
  888. DateTime dt1970 = new DateTime(1970, 1, 1, 0, 0, 0, 0);
  889. int sucNum = 0;
  890. try
  891. {
  892. foreach (var item in dto.base64DataList)
  893. {
  894. string imageName = dto.imageName + ((DateTime.Now.Ticks - dt1970.Ticks) / 10000).ToString();
  895. string result = decodeBase64ToImage(item, imageName);
  896. if (!string.IsNullOrEmpty(result))
  897. {
  898. Grp_VisaProgressCustomerPicture pic = new Grp_VisaProgressCustomerPicture();
  899. pic.CreateUserId = dto.CreateUserId;
  900. pic.PicName = imageName;
  901. pic.PicPath = result;
  902. pic.VisaProgressCustomerId = dto.visaProgressCustomerId;
  903. int insertResult = await _delegationVisaRep.AddAsync<Grp_VisaProgressCustomerPicture>(pic);
  904. if (insertResult > 0)
  905. {
  906. sucNum++;
  907. }
  908. }
  909. }
  910. }
  911. catch (Exception ex)
  912. {
  913. return Ok(JsonView(false, ex.Message));
  914. }
  915. string msg = string.Format(@"成功上传{0}张", sucNum);
  916. return Ok(JsonView(true, msg));
  917. }
  918. private string decodeBase64ToImage(string base64DataURL, string imgName)
  919. {
  920. string filename = "";//声明一个string类型的相对路径
  921. String base64 = base64DataURL.Substring(base64DataURL.IndexOf(",") + 1); //将‘,’以前的多余字符串删除
  922. System.Drawing.Bitmap bitmap = null;//定义一个Bitmap对象,接收转换完成的图片
  923. try//会有异常抛出,try,catch一下
  924. {
  925. byte[] arr = Convert.FromBase64String(base64);//将纯净资源Base64转换成等效的8位无符号整形数组
  926. System.IO.MemoryStream ms = new System.IO.MemoryStream(arr);//转换成无法调整大小的MemoryStream对象
  927. bitmap = new System.Drawing.Bitmap(ms);//将MemoryStream对象转换成Bitmap对象
  928. var fileDir = AppSettingsHelper.Get("VisaProgressImageBasePath");
  929. //文件名称
  930. filename = "VisaProgress_" + DateTime.Now.ToString("yyyyMMddHHmmss") + "_" + imgName + ".jpeg";//所要保存的相对路径及名字
  931. //上传的文件的路径
  932. string filePath = "";
  933. if (!Directory.Exists(fileDir))
  934. {
  935. Directory.CreateDirectory(fileDir);
  936. }
  937. //上传的文件的路径
  938. filePath = fileDir + filename;
  939. //string url = HttpRuntime.AppDomainAppPath.ToString();
  940. //string tmpRootDir = System.Web.HttpContext.Current.Server.MapPath(System.Web.HttpContext.Current.Request.ApplicationPath.ToString()); //获取程序根目录
  941. //string imagesurl2 = tmpRootDir + filename; //转换成绝对路径
  942. bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Jpeg);//保存到服务器路径
  943. //bitmap.Save(filePath + ".bmp", System.Drawing.Imaging.ImageFormat.Bmp);
  944. //bitmap.Save(filePath + ".gif", System.Drawing.Imaging.ImageFormat.Gif);
  945. //bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Png);
  946. ms.Close();//关闭当前流,并释放所有与之关联的资源
  947. bitmap.Dispose();
  948. }
  949. catch (Exception e)
  950. {
  951. string massage = e.Message;
  952. Logs("IOS图片上传Error:" + massage);
  953. //filename = e.Message;
  954. }
  955. return filename;//返回相对路径
  956. }
  957. /// <summary>
  958. /// IOS获取团组签证拍照上传进度05(修改签证状态/通知)
  959. /// </summary>
  960. /// <param name="dto"></param>
  961. /// <returns></returns>
  962. [HttpPost]
  963. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  964. public async Task<ActionResult> PostIOSVisaProgressChangeStatus(IOS_VisaChangeStatusDto dto)
  965. {
  966. if (dto == null)
  967. {
  968. return Ok(JsonView(false, "请求错误:"));
  969. }
  970. string msg = "参数错误";
  971. if (dto.diId > 0 && dto.visaStatus > 0 && dto.visaStatus < 4)
  972. {
  973. try
  974. {
  975. //_delegationVisaRep.BeginTran();
  976. var updCount = await _delegationVisaRep._sqlSugar.Updateable<Grp_VisaProgressCustomer>()
  977. .SetColumns(it => it.WorkStatus == dto.visaStatus)
  978. .Where(s => s.Id == dto.visaProgressCustomerId)
  979. .ExecuteCommandAsync();
  980. if (updCount > 0 && dto.publishCode == 1)
  981. {
  982. _delegationVisaRep.ChangeDataBase(DBEnum.OA2014DB); //切换到新OA后删除
  983. string sqlDelegation = string.Format(@" Select * From DelegationInfo With(Nolock) Where Id = {0} ", dto.diId);
  984. OA2021_DelegationInfo groupData = _sqlSugar.SqlQueryable<OA2021_DelegationInfo>(sqlDelegation).First();
  985. //GroupInfoDto grpDto = new GroupInfoDto() { Id = dto.diId };
  986. //var groupData = await _groupRepository.GetGroupInfo(grpDto);
  987. _delegationVisaRep.ChangeDataBase(DBEnum.OA2023DB); //切换到新OA后删除
  988. if (groupData == null)
  989. {
  990. _delegationVisaRep.RollbackTran();
  991. }
  992. string title = string.Format(@"[签证进度更新]");
  993. string content = string.Format(@"测试文本");
  994. bool rst = await _message.AddMsg(new MessageDto()
  995. {
  996. Type = MessageTypeEnum.GroupVisaProgressUpdate,
  997. IssuerId = dto.publisher,
  998. Title = title,
  999. Content = content,
  1000. ReleaseTime = DateTime.Now,
  1001. UIdList = new List<int> {
  1002. 234
  1003. }
  1004. });
  1005. if (rst)
  1006. {
  1007. return Ok(JsonView(true, "发送通知成功"));
  1008. }
  1009. }
  1010. //_delegationVisaRep.CommitTran();
  1011. }
  1012. catch (Exception)
  1013. {
  1014. //_delegationVisaRep.RollbackTran();
  1015. }
  1016. }
  1017. return Ok(JsonView(true, msg));
  1018. }
  1019. #endregion
  1020. #region 团组任务分配
  1021. /// <summary>
  1022. /// 团组任务分配初始化
  1023. /// </summary>
  1024. /// <param name="dto"></param>
  1025. /// <returns></returns>
  1026. [HttpPost]
  1027. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1028. public async Task<IActionResult> GetTaskAssignmen()
  1029. {
  1030. var groupData = await _taskAssignmentRep.GetTaskAssignmen();
  1031. if (groupData.Code != 0)
  1032. {
  1033. return Ok(JsonView(false, groupData.Msg));
  1034. }
  1035. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1036. }
  1037. /// <summary>
  1038. /// 团组任务分配查询
  1039. /// </summary>
  1040. /// <param name="dto"></param>
  1041. /// <returns></returns>
  1042. [HttpPost]
  1043. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1044. public async Task<IActionResult> TaskAssignmenQuery(TaskAssignmenQueryDto dto)
  1045. {
  1046. var groupData = await _taskAssignmentRep.TaskAssignmenQuery(dto);
  1047. if (groupData.Code != 0)
  1048. {
  1049. return Ok(JsonView(false, groupData.Msg));
  1050. }
  1051. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1052. }
  1053. /// <summary>
  1054. /// 团组任务分配操作
  1055. /// </summary>
  1056. /// <param name="dto"></param>
  1057. /// <returns></returns>
  1058. [HttpPost]
  1059. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1060. public async Task<IActionResult> GetTaskAssignmenOp(TaskAssignmenDto dto)
  1061. {
  1062. Result groupData = await _taskAssignmentRep.GetTaskAssignmenOp(dto);
  1063. if (groupData.Code != 0)
  1064. {
  1065. return Ok(JsonView(false, groupData.Msg));
  1066. }
  1067. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1068. }
  1069. #endregion
  1070. #region 团组费用审核
  1071. /// <summary>
  1072. /// 费用审核
  1073. /// 团组列表 Page
  1074. /// </summary>
  1075. /// <param name="_dto">团组列表请求dto</param>
  1076. /// <returns></returns>
  1077. [HttpPost]
  1078. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1079. public async Task<IActionResult> PostExpenseAuditGroupPageItems(ExpenseAuditGroupPageItemsDto _dto)
  1080. {
  1081. #region 参数验证
  1082. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1083. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1084. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1085. #region 页面操作权限验证
  1086. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1087. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1088. #endregion
  1089. #endregion
  1090. if (_dto.PortType == 1 || _dto.PortType == 2 || _dto.PortType == 2) // web/Android/IOS
  1091. {
  1092. string sqlWhere = string.Empty;
  1093. if (_dto.IsSure == 0) //未完成
  1094. {
  1095. sqlWhere += string.Format(@" And IsSure = 0");
  1096. }
  1097. else if (_dto.IsSure == 1) //已完成
  1098. {
  1099. sqlWhere += string.Format(@" And IsSure = 1");
  1100. }
  1101. if (!string.IsNullOrEmpty(_dto.SearchCriteria))
  1102. {
  1103. string tj = _dto.SearchCriteria;
  1104. sqlWhere += string.Format(@"And (ssd.Name Like '%{0}%' Or TeamName Like '%{1}%' Or ClientName Like '%{2}%' Or ClientName Like '%{3}%' Or su.CnName Like '%{4}%')",
  1105. tj, tj, tj, tj, tj);
  1106. }
  1107. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  1108. TeamName,ClientName,ClientUnit, TeamLevId,TeamLev,VisitDate,
  1109. VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  1110. From (
  1111. Select row_number() over(order by gdi.VisitDate Desc) as Row_Number,
  1112. gdi.Id,SalesQuoteNo,TourCode,ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,
  1113. ClientName,ClientUnit,ssd.Id TeamTypeId, ssd.Name TeamType,VisitDate,
  1114. VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  1115. From Grp_DelegationInfo gdi
  1116. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  1117. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  1118. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  1119. Where gdi.IsDel = 0 {0}
  1120. ) temp ", sqlWhere);
  1121. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  1122. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(_dto.PageIndex, _dto.PageSize, total);//ToPageAsync
  1123. var _view = new
  1124. {
  1125. PageFuncAuth = pageFunAuthView,
  1126. Data = _DelegationList
  1127. };
  1128. return Ok(JsonView(true, "查询成功!", _view, total));
  1129. }
  1130. else
  1131. {
  1132. return Ok(JsonView(false, "查询失败"));
  1133. }
  1134. }
  1135. /// <summary>
  1136. /// 获取团组费用审核
  1137. /// </summary>
  1138. /// <param name="paras">参数Json字符串</param>
  1139. /// <returns></returns>
  1140. [HttpPost]
  1141. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1142. public async Task<IActionResult> PostSearchGrpCreditCardPayment(Search_GrpCreditCardPaymentDto _dto)
  1143. {
  1144. try
  1145. {
  1146. #region 参数验证
  1147. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1148. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1149. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  1150. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1151. #region 页面操作权限验证
  1152. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1153. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1154. #endregion
  1155. #endregion
  1156. Grp_CreditCardPaymentView _view = new Grp_CreditCardPaymentView();
  1157. List<SimplClientInfo> clientNameList = getSimplClientList(_dto.DiId);
  1158. #region 费用清单
  1159. var exp = Expressionable.Create<Grp_CreditCardPayment>();
  1160. exp.AndIF(_dto.AuditStatus != -1, it => it.IsAuditGM == _dto.AuditStatus);
  1161. exp.AndIF(_dto.Label != -1, it => it.CTable == _dto.Label);
  1162. List<Grp_CreditCardPayment> entityList = _groupRepository
  1163. .Query<Grp_CreditCardPayment>(s => s.DIId == _dto.DiId && s.IsDel == 0 && s.CreateUserId > 0)
  1164. .Where(exp.ToExpression())
  1165. .ToList();
  1166. List<Grp_CreditCardPaymentDetailView> detailList = new List<Grp_CreditCardPaymentDetailView>();
  1167. List<CreditCardPaymentCurrencyPriceItem> ccpCurrencyPrices = new List<CreditCardPaymentCurrencyPriceItem>();
  1168. /*
  1169. * 76://酒店预订
  1170. */
  1171. List<Grp_HotelReservations> _HotelReservations = await _groupRepository
  1172. .Query<Grp_HotelReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1173. .ToListAsync();
  1174. List<Grp_HotelReservationsContent> _HotelReservationsContents = await _groupRepository
  1175. .Query<Grp_HotelReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1176. .ToListAsync();
  1177. /*
  1178. * 79://车/导游地接
  1179. */
  1180. List<Grp_CarTouristGuideGroundReservations> _CarTouristGuideGroundReservations = await _groupRepository
  1181. .Query<Grp_CarTouristGuideGroundReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1182. .ToListAsync();
  1183. List<Grp_CarTouristGuideGroundReservationsContent> _CarTouristGuideGroundReservationsContent = await _groupRepository
  1184. .Query<Grp_CarTouristGuideGroundReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1185. .ToListAsync();
  1186. /*
  1187. * 80: //签证
  1188. */
  1189. List<Grp_VisaInfo> _VisaInfos = await _groupRepository
  1190. .Query<Grp_VisaInfo>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1191. .ToListAsync();
  1192. /*
  1193. *81: //邀请/公务活动
  1194. */
  1195. List<Grp_InvitationOfficialActivities> _InvitationOfficialActivities = await _groupRepository
  1196. .Query<Grp_InvitationOfficialActivities>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1197. .ToListAsync();
  1198. /*
  1199. * 82: //团组客户保险
  1200. */
  1201. List<Grp_Customers> _Customers = await _groupRepository.Query<Grp_Customers>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1202. /*
  1203. * Lable = 85 机票预订
  1204. */
  1205. List<Grp_AirTicketReservations> p_AirTicketReservations = await _groupRepository
  1206. .Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1207. .ToListAsync();
  1208. /*
  1209. * 85 机票预定
  1210. */
  1211. List<Grp_AirTicketReservations> _AirTicketReservations = await _groupRepository.Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1212. /*
  1213. * 98 其他款项
  1214. */
  1215. List<Grp_DecreasePayments> _DecreasePayments = await _groupRepository
  1216. .Query<Grp_DecreasePayments>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1217. .ToListAsync();
  1218. /*
  1219. * 285:收款退还
  1220. */
  1221. List<Fin_PaymentRefundAndOtherMoney> _PaymentRefundAndOtherMoneys = await _groupRepository
  1222. .Query<Fin_PaymentRefundAndOtherMoney>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1223. .ToListAsync();
  1224. /*
  1225. * 1015: //超支费用
  1226. */
  1227. List<Fin_GroupExtraCost> _GroupExtraCosts = await _groupRepository.Query<Fin_GroupExtraCost>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1228. /*
  1229. * 币种信息
  1230. */
  1231. var currencyItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 66 && s.IsDel == 0).ToListAsync();
  1232. /*
  1233. * 车/导游地接 费用类型
  1234. */
  1235. var carFeeTypeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 17 && s.IsDel == 0).ToListAsync();
  1236. /*
  1237. * 车/导游地接 费用类型
  1238. */
  1239. var carFeeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 83 && s.IsDel == 0).ToListAsync();
  1240. var initDatas = await _groupRepository.Query<Sys_SetData>(s => s.IsDel == 0).ToListAsync();
  1241. var cityData = await _groupRepository.Query<Grp_NationalTravelFee>(s => s.IsDel == 0).ToListAsync();
  1242. /*
  1243. * 用户信息
  1244. */
  1245. var userItems = await _groupRepository.Query<Sys_Users>(s => s.IsDel == 0).ToListAsync();
  1246. /*
  1247. * 费用模块
  1248. */
  1249. Sys_SetData sdPriceName = _groupRepository.Query<Sys_SetData>(s => s.Id == _dto.Label).First();
  1250. string priceModule = string.Empty;
  1251. if (sdPriceName != null)
  1252. {
  1253. priceModule = sdPriceName.Name;
  1254. }
  1255. /*
  1256. * 成本信息
  1257. */
  1258. var groupCost = _groupRepository.Query<Grp_GroupCostParameter>(s => s.DiId == _dto.DiId && s.IsDel == 0).First();
  1259. decimal _groupRate = 0.0000M;
  1260. string _groupCurrencyCode = "-";
  1261. if (groupCost != null)
  1262. {
  1263. _groupRate = groupCost.Rate;
  1264. if (int.TryParse(groupCost.Currency, out int _currency))
  1265. {
  1266. _groupCurrencyCode = currencyItems.Find(it => it.Id == _currency)?.Name ?? "-";
  1267. }
  1268. else _groupCurrencyCode = groupCost.Currency;
  1269. }
  1270. string costContentSql = $"Select * From Grp_GroupCost";
  1271. var groupCostDetails = _sqlSugar.SqlQueryable<GroupCostAuditView>(costContentSql).Where(x => x.IsDel == 0 && x.Diid == _dto.DiId).ToList();
  1272. //处理日期为空的天数
  1273. for (int i = 0; i < groupCostDetails.Count; i++)
  1274. if (i != 0)
  1275. if (string.IsNullOrEmpty(groupCostDetails[i].Date))
  1276. groupCostDetails[i].Date = groupCostDetails[i - 1].Date;
  1277. /*
  1278. * 处理详情数据
  1279. */
  1280. foreach (var entity in entityList)
  1281. {
  1282. Grp_CreditCardPaymentDetailView _detail = new Grp_CreditCardPaymentDetailView();
  1283. _detail.Id = entity.Id;
  1284. _detail.PriceName = priceModule;
  1285. _detail.PayType = initDatas.Find(it => it.Id == entity.PayDId)?.Name ?? "-";
  1286. _detail.CardType = initDatas.Find(it => it.Id == entity.CTDId)?.Name ?? "-";
  1287. /*
  1288. * 应付款金额
  1289. */
  1290. Sys_SetData sdPaymentCurrency_WaitPay = currencyItems.Where(s => s.Id == entity.PaymentCurrency).FirstOrDefault();
  1291. string PaymentCurrency_WaitPay = "Unknown";
  1292. string hotelCurrncyCode = "Unknown";
  1293. string hotelCurrncyName = "Unknown";
  1294. if (sdPaymentCurrency_WaitPay != null)
  1295. {
  1296. PaymentCurrency_WaitPay = sdPaymentCurrency_WaitPay.Name;
  1297. hotelCurrncyCode = sdPaymentCurrency_WaitPay.Name;
  1298. hotelCurrncyName = sdPaymentCurrency_WaitPay.Remark;
  1299. if (hotelCurrncyCode.Equals("CNY"))
  1300. {
  1301. entity.DayRate = 1.0000M;
  1302. }
  1303. }
  1304. _detail.WaitPay = entity.PayMoney.ConvertToDecimal1().ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1305. /*
  1306. * 此次付款金额
  1307. */
  1308. decimal CurrPayStr = 0;
  1309. if (entity.PayPercentage == 0)
  1310. {
  1311. if (entity.PayThenMoney != 0)
  1312. CurrPayStr = (entity.PayThenMoney * entity.DayRate).ConvertToDecimal1();
  1313. }
  1314. else
  1315. {
  1316. if (entity.PayMoney != 0)
  1317. {
  1318. CurrPayStr = (entity.PayMoney * entity.PayPercentage / 100 * entity.DayRate).ConvertToDecimal1();
  1319. }
  1320. }
  1321. _detail.CurrPay = CurrPayStr.ToString("#0.00") + " CNY";
  1322. /*
  1323. * 剩余尾款
  1324. */
  1325. decimal BalanceStr = 0;
  1326. if (CurrPayStr != 0)
  1327. {
  1328. if (entity.PayMoney - (CurrPayStr / entity.DayRate) < 0.01M)
  1329. BalanceStr = 0;
  1330. else
  1331. BalanceStr = (entity.PayMoney - CurrPayStr / entity.DayRate).ConvertToDecimal1();
  1332. }
  1333. _detail.Balance = BalanceStr.ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1334. /*
  1335. * Bus名称
  1336. */
  1337. _detail.BusName = "待增加";
  1338. /*
  1339. *费用所属
  1340. */
  1341. switch (entity.CTable)
  1342. {
  1343. case 76://酒店预订
  1344. Grp_HotelReservations hotelReservations = _HotelReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1345. if (hotelReservations != null)
  1346. {
  1347. DateTime checkIn = Convert.ToDateTime(hotelReservations.CheckInDate),
  1348. checkOut = Convert.ToDateTime(hotelReservations.CheckOutDate);
  1349. int hotel_days = (int)(checkOut - checkIn).TotalDays;
  1350. string roomFeeStr = "", roomFeestr1 = "";
  1351. //是否比较房型价格
  1352. bool __isSingle = false, __isDouble = false, __isSuite = false, __isOther = false;
  1353. roomFeeStr += $"<br/><span style='width:70px;display: inline-block;'></span>";
  1354. if (hotelReservations.SingleRoomPrice > 0)
  1355. { roomFeestr1 += $"单间:{hotelReservations.SingleRoomPrice.ToString("#0.00")} * {hotelReservations.SingleRoomCount}"; __isSingle = true; }
  1356. if (hotelReservations.DoubleRoomPrice > 0)
  1357. { roomFeestr1 += $"双人间:{hotelReservations.DoubleRoomPrice.ToString("#0.00")} * {hotelReservations.DoubleRoomCount}"; __isDouble = true; }
  1358. if (hotelReservations.SuiteRoomPrice > 0)
  1359. { roomFeestr1 += $"套房:{hotelReservations.SuiteRoomPrice.ToString("#0.00")} * {hotelReservations.SuiteRoomCount}"; __isSuite = true; }
  1360. if (hotelReservations.OtherRoomPrice > 0)
  1361. { roomFeestr1 += $"其他:{hotelReservations.OtherRoomPrice.ToString("#0.00")} * {hotelReservations.OtherRoomCount}"; __isOther = true; }
  1362. if (roomFeestr1.Length > 0) roomFeeStr += roomFeestr1;
  1363. else roomFeeStr += " 0.00 * 0";
  1364. decimal governmentRentFee = 0.00M, cityTaxFee = 0.00M, breakfastFee = 0.00M, roomFee = 0.00M;
  1365. string governmentRentBool = "否", cityTaxBool = "否", breakfastBool = "否", roomBool = "否";
  1366. string governmentRentCode = "", governmentRentName = "", cityTaxCode = "", cityTaxName = "", breakfastCode = "", breakfastName = "", roomCode = "", roomName = "";
  1367. var _HotelReservationsContents1 = _HotelReservationsContents.Where(it => it.HrId == hotelReservations.Id).ToList();
  1368. /*
  1369. * 费用类型
  1370. * 1:房费
  1371. * 2:早餐
  1372. * 3:地税
  1373. * 4:城市税
  1374. * </summary>
  1375. */
  1376. //地税
  1377. var governmentRentData = _HotelReservationsContents1.Find(it => it.PriceType == 3);
  1378. if (governmentRentData != null)
  1379. {
  1380. governmentRentBool = governmentRentData.IsOppay == 1 ? "是" : "否";
  1381. governmentRentFee = governmentRentData.Price;
  1382. var governmentRentCurrData = currencyItems.Find(s => s.Id == governmentRentData.Currency);
  1383. if (governmentRentCurrData != null)
  1384. {
  1385. governmentRentCode = governmentRentCurrData.Name;
  1386. governmentRentName = $"({governmentRentCurrData.Remark})";
  1387. }
  1388. }
  1389. //城市税
  1390. var cityTaxData = _HotelReservationsContents1.Find(it => it.PriceType == 4);
  1391. if (cityTaxData != null)
  1392. {
  1393. cityTaxBool = cityTaxData.IsOppay == 1 ? "是" : "否";
  1394. cityTaxFee = cityTaxData.Price;
  1395. var cityTaxCurrData = currencyItems.Find(s => s.Id == cityTaxData.Currency);
  1396. if (cityTaxCurrData != null)
  1397. {
  1398. cityTaxCode = cityTaxCurrData.Name;
  1399. cityTaxName = $"({cityTaxCurrData.Remark})";
  1400. }
  1401. }
  1402. //酒店早餐
  1403. var breakfastData = _HotelReservationsContents1.Find(it => it.PriceType == 2);
  1404. if (breakfastData != null)
  1405. {
  1406. breakfastBool = breakfastData.IsOppay == 1 ? "是" : "否";
  1407. breakfastFee = breakfastData.Price;
  1408. var breakfastCurrData = currencyItems.Find(s => s.Id == breakfastData.Currency);
  1409. if (breakfastCurrData != null)
  1410. {
  1411. breakfastCode = breakfastCurrData.Name;
  1412. breakfastName = $"({breakfastCurrData.Remark})";
  1413. }
  1414. }
  1415. //房间费用
  1416. var roomData = _HotelReservationsContents1.Find(it => it.PriceType == 1);
  1417. if (roomData != null)
  1418. {
  1419. _detail.PayType = initDatas.Find(it => it.Id == roomData.PayDId)?.Name ?? "-";
  1420. _detail.CardType = initDatas.Find(it => it.Id == roomData.CTDId)?.Name ?? "-";
  1421. roomBool = roomData.IsOppay == 1 ? "是" : "否";
  1422. roomFee = roomData.Price;
  1423. var roomCurrData = currencyItems.Find(s => s.Id == roomData.Currency);
  1424. if (roomCurrData != null)
  1425. {
  1426. roomCode = roomCurrData.Name;
  1427. roomName = $"({roomCurrData.Remark})";
  1428. }
  1429. }
  1430. string hotelCostTitalStr = "<span style='font-weight:800;'>成本信息</span><br/>";
  1431. string hotelCostStr = "";
  1432. decimal hotelCsotTotal = 0.00M;
  1433. if (groupCost != null)
  1434. {
  1435. if (int.TryParse(groupCost.Currency, out int currencyId)) groupCost.Currency = currencyItems.Find(s => s.Id == currencyId)?.Name ?? "-";
  1436. hotelCostStr += $"{groupCost.Currency}(汇率:{groupCost.Rate.ToString("#0.0000")})<br/>";
  1437. }
  1438. if (checkOut > checkIn) checkOut = checkOut.AddDays(-1);
  1439. var hotelCostDetails = groupCostDetails.Where(x => Convert.ToDateTime(x.Date) >= checkIn && Convert.ToDateTime(x.Date) <= checkOut).ToList();
  1440. string hotelCost_day = "";
  1441. var hotelCostDetails1 = hotelCostDetails.GroupBy(x => x.Date);
  1442. foreach (var item in hotelCostDetails1)
  1443. {
  1444. hotelCsotTotal += item.Sum(x => x.HotelSingleRoomFee) + item.Sum(x => x.HotelDoubleRoomFee) + item.Sum(x => x.HotelSuiteRoomFee) + item.Sum(x => x.HotelSuiteFee);
  1445. hotelCost_day += @$"{item.First()?.Date ?? "-"}";
  1446. if (item.Sum(x => x.HotelSingleRoomFee) != 0) hotelCost_day += @$" 单间:{item.Sum(x => x.HotelSingleRoomFee).ToString("#0.00")}";
  1447. else { if (__isSingle) hotelCost_day += @$" 单间:0.00"; }
  1448. if (item.Sum(x => x.HotelDoubleRoomFee) != 0) hotelCost_day += @$" 双人间:{item.Sum(x => x.HotelDoubleRoomFee).ToString("#0.00")}";
  1449. else { if (__isDouble) hotelCost_day += @$" 双人间:0.00"; }
  1450. if (item.Sum(x => x.HotelSuiteRoomFee) != 0) hotelCost_day += @$" 小套房/豪华套房:{item.Sum(x => x.HotelSuiteRoomFee).ToString("#0.00")}";
  1451. else { if (__isSuite) hotelCost_day += @$" 小套房/豪华套房:0.00"; }
  1452. if (item.Sum(x => x.HotelSuiteFee) != 0) hotelCost_day += @$" 套房:{item.Sum(x => x.HotelSuiteFee).ToString("#0.00")}";
  1453. else { if (__isOther) hotelCost_day += @$" 套房:0.00"; }
  1454. hotelCost_day += @$"</br>";
  1455. }
  1456. string hotelBreakfastStr = "", hotelGovernmentRentStr = "", hotelCityTaxStr = "";
  1457. if (breakfastFee > 0) hotelBreakfastStr = $"酒店早餐: {breakfastFee.ToString("#0.00")} {breakfastCode} {breakfastName} 当时汇率 {breakfastData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{breakfastBool}<br/><br/>";
  1458. if (governmentRentFee > 0) hotelGovernmentRentStr = $"地税: {governmentRentFee.ToString("#0.00")} {governmentRentCode} {governmentRentName} 当时汇率 {governmentRentData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{governmentRentBool}<br/><br/>";
  1459. if (cityTaxFee > 0) hotelCityTaxStr = $"城市税: {cityTaxFee.ToString("#0.00")} {cityTaxCode} {cityTaxName} 当时汇率 {cityTaxData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{cityTaxBool}<br/>";
  1460. string hotelCostTotalStr = "";// $"&nbsp;&nbsp;成本合计:{hotelCsotTotal.ToString("#0.00")}<br/>";
  1461. _detail.PriceMsgContent = $"{hotelCostTitalStr}{hotelCostStr}{hotelCostTotalStr}{hotelCost_day}<br/>" +
  1462. $"<span style='font-weight:800;'>{hotelReservations.HotelName} [{hotelReservations.CheckInDate} - {hotelReservations.CheckOutDate}]</span><br/>" +
  1463. $"信用卡金额:{_detail.WaitPay} ({hotelCurrncyName})<br/>" +
  1464. $"房间说明: {hotelReservations.Remark} <br/>" +
  1465. $"房间费用: {roomCode} {roomName} 当时汇率 {roomData?.Rate.ToString("#0.0000")}{roomFeeStr} <br/>是否由地接代付:{roomBool}<br/><br/>" +
  1466. $"{hotelBreakfastStr}" +
  1467. $"{hotelGovernmentRentStr}" +
  1468. $"{hotelCityTaxStr}";
  1469. _detail.PriceNameContent = hotelReservations.HotelName;
  1470. }
  1471. break;
  1472. case 79://车/导游地接
  1473. Grp_CarTouristGuideGroundReservations touristGuideGroundReservations = _CarTouristGuideGroundReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1474. if (touristGuideGroundReservations != null)
  1475. {
  1476. if (!string.IsNullOrEmpty(touristGuideGroundReservations.BusName))
  1477. {
  1478. _detail.BusName = touristGuideGroundReservations.BusName;
  1479. }
  1480. _detail.PriceNameContent = touristGuideGroundReservations.PriceName;
  1481. //bool isInt = int.TryParse(touristGuideGroundReservations.Area, out int cityId);
  1482. //if (isInt)
  1483. //{
  1484. // var cityInfo = cityData.Find(it => it.Id == cityId);
  1485. // if (cityInfo != null)
  1486. // {
  1487. // string nameContent = $@"{cityInfo.Country}-{cityInfo.City}";
  1488. // var carFeeItem = carFeeItems.Find(it => it.Id == touristGuideGroundReservations.PriceType);
  1489. // if (carFeeItem != null)
  1490. // {
  1491. // nameContent += $@"({carFeeItem.Name})";
  1492. // }
  1493. // _detail.PriceNameContent = nameContent;
  1494. // }
  1495. //}
  1496. //else
  1497. //{
  1498. // _detail.PriceNameContent = touristGuideGroundReservations.Area;
  1499. //}
  1500. var touristGuideGroundReservationsContents =
  1501. _CarTouristGuideGroundReservationsContent.Where(s => s.CTGGRId == touristGuideGroundReservations.Id && s.IsDel == 0 && s.Price != 0).ToList();
  1502. string priceMsg = $"<span style='font-weight:800;'>{touristGuideGroundReservations.PriceName}({touristGuideGroundReservations.ServiceStartTime} - {touristGuideGroundReservations.ServiceEndTime})</span><br/>";
  1503. foreach (var item in touristGuideGroundReservationsContents)
  1504. {
  1505. string typeName = "Unknown";
  1506. string carCurrencyCode = "Unknown";
  1507. string carCurrencyName = "Unknown";
  1508. var carTypeData = carFeeTypeItems.Where(s => s.Id == item.SId && s.IsDel == 0).FirstOrDefault();
  1509. if (carTypeData != null) typeName = carTypeData.Name;
  1510. var currencyData = currencyItems.Where(s => s.Id == item.Currency && s.IsDel == 0).FirstOrDefault();
  1511. if (currencyData != null)
  1512. {
  1513. carCurrencyCode = currencyData.Name;
  1514. carCurrencyName = currencyData.Remark;
  1515. }
  1516. string opCostStr = string.Empty;
  1517. decimal opCostTypePrice = 0.00M;
  1518. #region 处理成本各项费用
  1519. var opDate = item.DatePrice?.ToString("yyyy-MM-dd");
  1520. var opCost = groupCostDetails.Where(x => x.Date.Equals(opDate)).ToList();
  1521. if (opCost.Count > 0)
  1522. {
  1523. switch (item.SId)
  1524. {
  1525. case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //91车费
  1526. //case 982: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //982 车超时费 -- 暂无
  1527. case 92: opCostTypePrice = opCost.Sum(x => x.GuideFee); break; //92 导游费
  1528. case 94: opCostTypePrice = opCost.Sum(x => x.GuideScenicFee); break; //94 导游景点费
  1529. case 95: opCostTypePrice = opCost.Sum(x => x.GuideTipFee); break; //95 导游小费
  1530. case 983: opCostTypePrice = opCost.Sum(x => x.GuideMealFee); break; //983 导游餐补
  1531. case 984: opCostTypePrice = opCost.Sum(x => x.GuideMealFee); break; //984 导游房补
  1532. case 985: opCostTypePrice = opCost.Sum(x => x.GuideRoomFee); break; //985 导游交通
  1533. //case 96: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //96 接送机费 -- 暂无
  1534. //case 97: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //97 其他费用 -- 暂无
  1535. case 979: opCostTypePrice = opCost.Sum(x => x.DriverFee); break; //979 司机工资
  1536. case 980: opCostTypePrice = opCost.Sum(x => x.DriverTipFee); break; //980 司机小费
  1537. case 981: opCostTypePrice = opCost.Sum(x => x.DriverMealFee); break; //981 司机餐补
  1538. case 988: opCostTypePrice = opCost.Sum(x => x.ClientBreakfastFee); break; //988 客户早餐费用
  1539. case 93: opCostTypePrice = opCost.Sum(x => x.ClientDinnerFee); break; //93 客户午餐费用
  1540. case 989: opCostTypePrice = opCost.Sum(x => x.ClientLunchFee); break; //989 客户晚餐费用
  1541. case 990: opCostTypePrice = opCost.Sum(x => x.ScenicTicketFee); break; //990 景点门票费
  1542. case 991: opCostTypePrice = opCost.Sum(x => x.DrinkSnackFruitFee); break; //991 饮料/零食/水果
  1543. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //992 住补费用 -- 暂无
  1544. case 994: opCostTypePrice = opCost.Sum(x => x.TranslatorFee); break; //994 翻译费
  1545. case 1059: opCostTypePrice = opCost.Sum(x => x.GuideOverTimeFee); break; //1059 导游超时费用
  1546. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1070 尾款金额
  1547. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1071 其他额外费用
  1548. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1073 翻译超时费
  1549. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1074 早餐超支费用
  1550. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1075 午餐超支费用
  1551. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1076 晚餐超支费用
  1552. }
  1553. opCostStr = $"&nbsp;&nbsp;/&nbsp;&nbsp;成本:{opCostTypePrice.ToString("#0.00")} {_groupCurrencyCode}(汇率:{_groupRate.ToString("#0.0000")})";
  1554. }
  1555. #endregion
  1556. priceMsg += $"日期:{item.DatePrice?.ToString("yyyy-MM-dd") ?? "-"}<br/>" +
  1557. $"{typeName}:{item.Price.ToString("#0.00")} {carCurrencyCode}(汇率:{entity.DayRate.ToString("#0.0000")}) {opCostStr}<br/>" +
  1558. $"明细:{item.PriceContent ?? "-"}<br/>" +
  1559. $"备注:{item.Remark ?? "-"}<br/><br/>";
  1560. }
  1561. _detail.PriceMsgContent = priceMsg;
  1562. }
  1563. break;
  1564. case 80: //签证
  1565. Grp_VisaInfo visaInfo = _VisaInfos.Where(s => s.Id == entity.CId).FirstOrDefault();
  1566. if (visaInfo != null)
  1567. {
  1568. string visaName = getClientNameStr1(clientNameList, visaInfo.VisaClient);
  1569. _detail.PriceNameContent = visaInfo.VisaDescription ;
  1570. _detail.PriceMsgContent = $"签证描述:{visaName}<br/> 备注:{visaInfo.Remark}";
  1571. }
  1572. break;
  1573. case 81: //邀请/公务活动
  1574. Grp_InvitationOfficialActivities _ioa = _InvitationOfficialActivities.Where(s => s.Id == entity.CId).FirstOrDefault();
  1575. if (_ioa != null)
  1576. {
  1577. string inviteCurrName = "Unknown", //邀请费用币种 Name
  1578. inviteCurrCode = "Unknown", //邀请费用币种 Code
  1579. sendCurrName = "Unknown", //快递费用币种 Name
  1580. sendCurrCode = "Unknown", //快递费用币种 Code
  1581. eventsCurrName = "Unknown", //公务活动费币种 Name
  1582. eventsCurrCode = "Unknown", //公务活动费币种 Code
  1583. translateCurrName = "Unknown", //公务翻译费 Name
  1584. translateCurrCode = "Unknown"; //公务翻译费 Code
  1585. #region 处理费用币种
  1586. var inviteCurrData = currencyItems.Where(s => s.Id == _ioa.InviteCurrency && s.IsDel == 0).FirstOrDefault();
  1587. if (inviteCurrData != null)
  1588. {
  1589. inviteCurrName = inviteCurrData.Remark;
  1590. inviteCurrCode = inviteCurrData.Name;
  1591. }
  1592. var sendCurrData = currencyItems.Where(s => s.Id == _ioa.SendCurrency && s.IsDel == 0).FirstOrDefault();
  1593. if (sendCurrData != null)
  1594. {
  1595. sendCurrName = sendCurrData.Remark;
  1596. sendCurrCode = sendCurrData.Name;
  1597. }
  1598. var eventsCurrData = currencyItems.Where(s => s.Id == _ioa.EventsCurrency && s.IsDel == 0).FirstOrDefault();
  1599. if (eventsCurrData != null)
  1600. {
  1601. eventsCurrName = eventsCurrData.Remark;
  1602. eventsCurrCode = eventsCurrData.Name;
  1603. }
  1604. var translateCurrData = currencyItems.Where(s => s.Id == _ioa.TranslateCurrency && s.IsDel == 0).FirstOrDefault();
  1605. if (translateCurrData != null)
  1606. {
  1607. translateCurrName = translateCurrData.Remark;
  1608. translateCurrCode = translateCurrData.Name;
  1609. }
  1610. #endregion
  1611. _detail.PriceNameContent = _ioa.InviterArea;
  1612. _detail.PriceMsgContent = $@"邀请费用:{_ioa.InviteCost.ToString("#0.00")} {inviteCurrCode}({inviteCurrName})<br/>" +
  1613. $@"快递费用:{_ioa.SendCost.ToString("#0.00")} {sendCurrCode}({sendCurrName})<br/>" +
  1614. $@"公务活动费:{_ioa.EventsCost.ToString("#0.00")} {eventsCurrCode}({eventsCurrName})<br/>" +
  1615. $@"公务翻译费:{_ioa.TranslateCost.ToString("#0.00")} {translateCurrCode}({translateCurrName})<br/>" +
  1616. $@"备注:" + _ioa.Remark + "<br/>";
  1617. }
  1618. break;
  1619. case 82: //团组客户保险
  1620. Grp_Customers customers = _Customers.Where(s => s.Id == entity.CId && s.IsDel == 0).FirstOrDefault();
  1621. if (customers != null)
  1622. {
  1623. _detail.PriceNameContent = getClientNameStr(clientNameList, customers.ClientName);
  1624. _detail.PriceMsgContent = "备注:" + customers.Remark + "<br/>";
  1625. }
  1626. break;
  1627. case 85: //机票预订
  1628. Grp_AirTicketReservations jpRes = _AirTicketReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1629. if (jpRes != null)
  1630. {
  1631. string FlightsDescription = jpRes.FlightsDescription;
  1632. string PriceDescription = jpRes.PriceDescription;
  1633. _detail.PriceMsgContent = "航班号:" + jpRes.FlightsCode + "<br/>城市A-B:" + jpRes.FlightsCity + "<br/>航班描述:" + FlightsDescription.Replace("\r\n", "<br />") + "<br/>" + "价格描述:" + PriceDescription;
  1634. _detail.PriceNameContent = "(" + jpRes.FlightsCode + ")";
  1635. }
  1636. break;
  1637. case 98://其他款项
  1638. Grp_DecreasePayments gdpRes = _DecreasePayments.Where(s => s.Id == entity.CId).FirstOrDefault();
  1639. if (gdpRes != null)
  1640. {
  1641. _detail.PriceMsgContent = "备注:" + gdpRes.Remark;
  1642. _detail.PriceNameContent = gdpRes.PriceName;
  1643. }
  1644. break;
  1645. case 285://收款退还
  1646. Fin_PaymentRefundAndOtherMoney refundAndOtherMoney = _PaymentRefundAndOtherMoneys.Where(s => s.Id == entity.CId).FirstOrDefault();
  1647. if (refundAndOtherMoney != null)
  1648. {
  1649. _detail.PriceMsgContent = "备注:" + refundAndOtherMoney.Remark;
  1650. _detail.PriceNameContent = refundAndOtherMoney.PriceName;
  1651. }
  1652. break;
  1653. case 751://酒店早餐
  1654. break;
  1655. case 1015://超支费用
  1656. Fin_GroupExtraCost groupExtraCost = _GroupExtraCosts.Where(s => s.Id == entity.CId).FirstOrDefault();
  1657. if (groupExtraCost != null)
  1658. {
  1659. _detail.PriceNameContent = groupExtraCost.PriceName;
  1660. _detail.PriceMsgContent = "备注:" + groupExtraCost.Remark;
  1661. }
  1662. break;
  1663. default:
  1664. break;
  1665. }
  1666. /*
  1667. * 申请人
  1668. */
  1669. string operatorName = " - ";
  1670. Sys_Users _opUser = userItems.Where(s => s.Id == entity.CreateUserId).FirstOrDefault();
  1671. if (_opUser != null)
  1672. {
  1673. operatorName = _opUser.CnName;
  1674. }
  1675. _detail.OperatorName = operatorName;
  1676. /*
  1677. * 审核人
  1678. */
  1679. string auditOperatorName = "Unknown";
  1680. if (entity.AuditGMOperate == 0)
  1681. auditOperatorName = " - ";
  1682. else if (entity.AuditGMOperate == 4)
  1683. auditOperatorName = "自动审核";
  1684. else
  1685. {
  1686. Sys_Users _adUser = userItems.Where(s => s.Id == entity.AuditGMOperate).FirstOrDefault();
  1687. if (_adUser != null)
  1688. {
  1689. auditOperatorName = _adUser.CnName;
  1690. }
  1691. }
  1692. _detail.AuditOperatorName = auditOperatorName;
  1693. /*
  1694. * 超预算比例
  1695. */
  1696. string overBudgetStr = "";
  1697. if (entity.ExceedBudget == -1)
  1698. overBudgetStr = sdPriceName.Name + "尚无预算";
  1699. else if (entity.ExceedBudget == 0)
  1700. {
  1701. if (entity.CTable == 76 || entity.CTable == 79)
  1702. {
  1703. if (entity.IsAuditGM == 3) overBudgetStr = "未超预算";
  1704. else overBudgetStr = "超预算";
  1705. }
  1706. else
  1707. {
  1708. overBudgetStr = "未超预算";
  1709. }
  1710. }
  1711. else
  1712. overBudgetStr = entity.ExceedBudget.ToString("P");
  1713. _detail.OverBudget = overBudgetStr;
  1714. /*
  1715. * 费用总计
  1716. */
  1717. ccpCurrencyPrices.Add(new CreditCardPaymentCurrencyPriceItem()
  1718. {
  1719. CurrencyId = entity.PaymentCurrency,
  1720. CurrencyName = PaymentCurrency_WaitPay,
  1721. AmountPayable = entity.PayMoney,
  1722. ThisPayment = CurrPayStr,
  1723. BalancePayment = BalanceStr,
  1724. AuditedFunds = CurrPayStr
  1725. });
  1726. _detail.IsAuditGM = entity.IsAuditGM;
  1727. detailList.Add(_detail);
  1728. }
  1729. #endregion
  1730. _view.DetailList = new List<Grp_CreditCardPaymentDetailView>(detailList);
  1731. /*
  1732. * 下方描述处理
  1733. */
  1734. List<CreditCardPaymentCurrencyPriceItem> nonDuplicat = ccpCurrencyPrices.Where((x, i) => ccpCurrencyPrices.FindIndex(z => z.CurrencyId == x.CurrencyId) == i).ToList();//Lambda表达式去重
  1735. CreditCardPaymentCurrencyPriceItem ccpCurrencyPrice = nonDuplicat.Where(it => it.CurrencyId == 836).FirstOrDefault();
  1736. if (ccpCurrencyPrice != null)
  1737. {
  1738. int CNYIndex = nonDuplicat.IndexOf(ccpCurrencyPrice);
  1739. nonDuplicat.MoveItemAtIndexToFront(CNYIndex);
  1740. }
  1741. else
  1742. {
  1743. nonDuplicat.OrderBy(it => it.CurrencyId).ToList();
  1744. }
  1745. string amountPayableStr = string.Format(@"应付款总金额: ");
  1746. string thisPaymentStr = string.Format(@"此次付款总金额: ");
  1747. string balancePaymentStr = string.Format(@"目前剩余尾款总金额: ");
  1748. string auditedFundsStr = string.Format(@"已审费用总额: ");
  1749. foreach (var item in nonDuplicat)
  1750. {
  1751. var strs = ccpCurrencyPrices.Where(it => it.CurrencyId == item.CurrencyId).ToList();
  1752. if (strs.Count > 0)
  1753. {
  1754. decimal amountPayable = strs.Sum(it => it.AmountPayable);
  1755. decimal balancePayment = strs.Sum(it => it.BalancePayment);
  1756. amountPayableStr += string.Format(@"{0}{1}&nbsp;|", amountPayable.ToString("#0.00"), item.CurrencyName);
  1757. //单独处理此次付款金额
  1758. if (item.CurrencyId == 836) //人民币
  1759. {
  1760. decimal thisPayment = ccpCurrencyPrices.Sum(it => it.ThisPayment);
  1761. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", thisPayment.ToString("#0.00"), item.CurrencyName);
  1762. }
  1763. else
  1764. {
  1765. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1766. }
  1767. balancePaymentStr += string.Format(@"{0}{1}&nbsp;|", balancePayment.ToString("#0.00"), item.CurrencyName);
  1768. //单独处理已审核费用
  1769. if (item.CurrencyId == 836) //人民币
  1770. {
  1771. decimal auditedFunds = ccpCurrencyPrices.Sum(it => it.AuditedFunds);
  1772. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", auditedFunds.ToString("#0.00"), item.CurrencyName);
  1773. }
  1774. else
  1775. {
  1776. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1777. }
  1778. }
  1779. }
  1780. _view.TotalStr1 = amountPayableStr.Substring(0, amountPayableStr.Length - 1);
  1781. _view.TotalStr2 = thisPaymentStr.Substring(0, thisPaymentStr.Length - 1);
  1782. _view.TotalStr3 = balancePaymentStr.Substring(0, balancePaymentStr.Length - 1);
  1783. _view.TotalStr4 = auditedFundsStr.Substring(0, auditedFundsStr.Length - 1);
  1784. var _view1 = new
  1785. {
  1786. PageFuncAuth = pageFunAuthView,
  1787. Data = _view
  1788. };
  1789. return Ok(JsonView(_view1));
  1790. }
  1791. catch (Exception ex)
  1792. {
  1793. return Ok(JsonView(false, ex.Message));
  1794. }
  1795. }
  1796. /// <summary>
  1797. /// 费用审核
  1798. /// 修改团组费用审核状态
  1799. /// </summary>
  1800. /// <param name="_dto">参数Json字符串</param>
  1801. /// <returns></returns>
  1802. [HttpPost]
  1803. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1804. public async Task<IActionResult> PostAuditGrpCreditCardPayment(Edit_GrpCreditCardPaymentDto _dto)
  1805. {
  1806. #region 参数验证
  1807. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1808. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1809. #endregion
  1810. #region 页面操作权限验证
  1811. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1812. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1813. if (pageFunAuthView.AuditAuth == 0) return Ok(JsonView(false, "您没有审核权限"));
  1814. #endregion
  1815. List<string> idList = _dto.CreditIdStr.Split(',').ToList();
  1816. Grp_CreditCardPayment _detail = _mapper.Map<Grp_CreditCardPayment>(_dto);
  1817. DateTime dtNow = DateTime.Now;
  1818. _groupRepository.BeginTran();
  1819. int rst = 0;
  1820. var creditDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && idList.Contains(it.Id.ToString())).ToList();
  1821. var creditTypeDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 16).ToList();
  1822. var creditCurrencyDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  1823. var groupDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).ToList();
  1824. List<dynamic> msgDatas = new List<dynamic>();
  1825. Dictionary<int, int> dic_ccp_user = new Dictionary<int, int>() { };
  1826. foreach (var item in idList)
  1827. {
  1828. int CreditId = int.Parse(item);
  1829. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_CreditCardPayment>()
  1830. .SetColumns(it => it.IsAuditGM == _dto.AuditCode)
  1831. .SetColumns(it => it.AuditGMOperate == _dto.UserId)
  1832. .SetColumns(it => it.AuditGMDate == dtNow.ToString("yyyy-MM-dd HH:mm:ss"))
  1833. .Where(s => s.Id == CreditId)
  1834. .ExecuteCommandAsync();
  1835. if (result < 1)
  1836. {
  1837. rst = -1;
  1838. _groupRepository.RollbackTran();
  1839. return Ok(JsonView(false, "操作失败并回滚!"));
  1840. }
  1841. var creditData = creditDatas.Where(it => it.Id == CreditId).FirstOrDefault();
  1842. if (creditData != null)
  1843. {
  1844. #region 应用通知配置
  1845. try
  1846. {
  1847. dic_ccp_user.Add(creditData.Id, creditData.CreateUserId);
  1848. }
  1849. catch (Exception ex)
  1850. {
  1851. }
  1852. #endregion
  1853. string auditStr = _dto.AuditCode == 1 ? "已通过" : _dto.AuditCode == 2 ? "未通过" : "未审核";
  1854. string groupNameStr = string.Empty;
  1855. var groupData = groupDatas.Where(it => it.Id == creditData.DIId).FirstOrDefault();
  1856. if (groupData != null) groupNameStr = groupData.TeamName;
  1857. string creditTypeStr = string.Empty;
  1858. var creditTypeData = creditTypeDatas.Where(it => it.Id == creditData.CTable).FirstOrDefault();
  1859. if (creditTypeData != null) creditTypeStr = creditTypeData.Name;
  1860. string creditCurrency = string.Empty;
  1861. var creditCurrencyData = creditCurrencyDatas.Where(it => it.Id == creditData.PaymentCurrency).FirstOrDefault();
  1862. if (creditCurrencyData != null) creditCurrency = creditCurrencyData.Name;
  1863. if (creditCurrency.Equals("CNY"))
  1864. {
  1865. creditData.DayRate = 1.0000M;
  1866. }
  1867. if (creditData.PayPercentage == 0.00M)
  1868. {
  1869. creditData.PayPercentage = 100M;
  1870. }
  1871. decimal CNYPrice = (creditData.PayMoney * (creditData.PayPercentage / 100)) * creditData.DayRate;
  1872. string msgTitle = $"[{groupNameStr}({creditTypeStr})]的费用申请";
  1873. string msgContent = "";
  1874. if (creditCurrency.Equals("CNY"))
  1875. {
  1876. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY) {auditStr}!";
  1877. }
  1878. else
  1879. {
  1880. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY({creditData.PayMoney.ToString("0.00")} {creditCurrency})) {auditStr}!";
  1881. }
  1882. msgDatas.Add(new { DiId = creditData.DIId, UserId = creditData.CreateUserId, MsgTitle = msgTitle, MsgContent = msgContent });
  1883. }
  1884. }
  1885. if (rst == 0)
  1886. {
  1887. _groupRepository.CommitTran();
  1888. foreach (var item in msgDatas)
  1889. {
  1890. //发送消息
  1891. GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupExpenseAudit, item.MsgTitle, item.MsgContent, new List<int>() { item.UserId }, item.DiId);
  1892. }
  1893. #region 应用推送
  1894. try
  1895. {
  1896. foreach (var ccpId in dic_ccp_user.Keys)
  1897. {
  1898. List<string> templist = new List<string>() { dic_ccp_user[ccpId].ToString() };
  1899. await AppNoticeLibrary.SendUserMsg_GroupStatus_AuditFee(ccpId, templist, QiyeWeChatEnum.CaiWuChat);
  1900. }
  1901. }
  1902. catch (Exception)
  1903. {
  1904. }
  1905. #endregion
  1906. return Ok(JsonView(true, "操作成功!"));
  1907. }
  1908. return Ok(JsonView(false, "操作失败!"));
  1909. }
  1910. #endregion
  1911. #region 机票费用录入
  1912. /// <summary>
  1913. /// 机票录入当前登录人可操作团组
  1914. /// </summary>
  1915. /// <param name="dto"></param>
  1916. /// <returns></returns>
  1917. [HttpPost]
  1918. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1919. public async Task<IActionResult> AirTicketResSelect(AirTicketResDto dto)
  1920. {
  1921. try
  1922. {
  1923. Result groupData = await _airTicketResRep.AirTicketResSelect(dto);
  1924. if (groupData.Code != 0)
  1925. {
  1926. return Ok(JsonView(false, groupData.Msg));
  1927. }
  1928. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1929. }
  1930. catch (Exception ex)
  1931. {
  1932. return Ok(JsonView(false, "程序错误!"));
  1933. throw;
  1934. }
  1935. }
  1936. /// <summary>
  1937. /// 机票费用录入列表
  1938. /// </summary>
  1939. /// <param name="dto"></param>
  1940. /// <returns></returns>
  1941. [HttpPost]
  1942. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1943. public async Task<IActionResult> AirTicketResList(AirTicketResDto dto)
  1944. {
  1945. try
  1946. {
  1947. Result groupData = await _airTicketResRep.AirTicketResList(dto);
  1948. if (groupData.Code != 0)
  1949. {
  1950. return Ok(JsonView(false, groupData.Msg));
  1951. }
  1952. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1953. }
  1954. catch (Exception ex)
  1955. {
  1956. return Ok(JsonView(false, ex.Message));
  1957. throw;
  1958. }
  1959. }
  1960. /// <summary>
  1961. /// 根据id查询费用录入信息
  1962. /// </summary>
  1963. /// <param name="dto"></param>
  1964. /// <returns></returns>
  1965. [HttpPost]
  1966. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1967. public async Task<IActionResult> AirTicketResById(AirTicketResByIdDto dto)
  1968. {
  1969. try
  1970. {
  1971. Result groupData = await _airTicketResRep.AirTicketResById(dto);
  1972. if (groupData.Code != 0)
  1973. {
  1974. return Ok(JsonView(false, groupData.Msg));
  1975. }
  1976. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1977. }
  1978. catch (Exception ex)
  1979. {
  1980. return Ok(JsonView(false, "程序错误!"));
  1981. throw;
  1982. }
  1983. }
  1984. /// <summary>
  1985. /// 机票费用录入操作(Status:1.新增,2.修改)
  1986. /// </summary>
  1987. /// <param name="dto"></param>
  1988. /// <returns></returns>
  1989. [HttpPost]
  1990. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1991. public async Task<IActionResult> OpAirTicketRes(AirTicketResOpDto dto)
  1992. {
  1993. try
  1994. {
  1995. Result groupData = await _airTicketResRep.OpAirTicketRes(dto, _setDataRep.PostCurrencyByDiid);
  1996. if (groupData.Code != 0)
  1997. {
  1998. return Ok(JsonView(false, groupData.Msg));
  1999. }
  2000. #region 应用推送
  2001. try
  2002. {
  2003. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2004. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2005. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2006. }
  2007. catch (Exception ex)
  2008. {
  2009. }
  2010. #endregion
  2011. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2012. }
  2013. catch (Exception ex)
  2014. {
  2015. return Ok(JsonView(false, "程序错误!"));
  2016. throw;
  2017. }
  2018. }
  2019. /// <summary>
  2020. /// 根据舱位类型查询接团客户名单信息
  2021. /// </summary>
  2022. /// <param name="dto"></param>
  2023. /// <returns></returns>
  2024. [HttpPost]
  2025. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2026. public async Task<IActionResult> tankType(AirTicketResByIdDto dto)
  2027. {
  2028. try
  2029. {
  2030. List<Crm_GroupCustomer> crm_Groups = _sqlSugar.Queryable<Crm_GroupCustomer>().Where(a => a.IsDel == 0 && a.AirType == dto.Id).ToList();
  2031. if (crm_Groups.Count != 0)
  2032. {
  2033. List<dynamic> Customer = new List<dynamic>();
  2034. foreach (var item in crm_Groups)
  2035. {
  2036. var data = new
  2037. {
  2038. Id = item.Id,
  2039. Pinyin = item.Pinyin,
  2040. Name = item.LastName + item.FirstName
  2041. };
  2042. Customer.Add(data);
  2043. }
  2044. return Ok(JsonView(true, "查询成功!", Customer));
  2045. }
  2046. return Ok(JsonView(true, "暂无数据", crm_Groups));
  2047. }
  2048. catch (Exception ex)
  2049. {
  2050. return Ok(JsonView(false, "程序错误!"));
  2051. throw;
  2052. }
  2053. }
  2054. /// <summary>
  2055. /// 根据团号获取客户信息
  2056. /// </summary>
  2057. /// <param name="dto"></param>
  2058. /// <returns></returns>
  2059. [HttpPost]
  2060. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2061. public IActionResult QueryClientInfoByDIID(QueryClientInfoByDIIDDto dto)
  2062. {
  2063. var jw = JsonView(false);
  2064. if (dto.DIID < 1)
  2065. {
  2066. jw.Msg += "请输入正确的diid";
  2067. return Ok(jw);
  2068. }
  2069. var arr = getSimplClientList(dto.DIID);
  2070. jw = JsonView(true, "获取成功!", arr);
  2071. return Ok(jw);
  2072. }
  2073. private List<SimplClientInfo> getSimplClientList(int diId)
  2074. {
  2075. string sql = string.Format("select b.Id,b.Pinyin,b.lastName,b.firstName,b.phone from Grp_TourClientList a, Crm_DeleClient b where a.clientid = b.id and a.isdel = 0 and a.diid = {0}", diId);
  2076. List<SimplClientInfo> arr = _sqlSugar.SqlQueryable<SimplClientInfo>(sql).ToList();
  2077. return arr;
  2078. }
  2079. private string getClientNameStr(List<SimplClientInfo> list, string origin)
  2080. {
  2081. string result = origin;
  2082. if (Regex.Match(origin, @"\d+,?").Value.Length > 0)
  2083. {
  2084. string[] temparr = origin.Split(',');
  2085. string fistrStr = temparr[0];
  2086. int count = temparr.Count();
  2087. int tempId;
  2088. bool success = int.TryParse(fistrStr, out tempId);
  2089. if (success)
  2090. {
  2091. SimplClientInfo tempInfo = list.FirstOrDefault(s => s.Id == tempId);
  2092. if (tempInfo != null)
  2093. {
  2094. if (count > 1)
  2095. {
  2096. result = string.Format(@"{0}{1}等{2}人", tempInfo.LastName, tempInfo.FirstName, count);
  2097. }
  2098. else
  2099. {
  2100. result = string.Format(@"{0}{1}", tempInfo.LastName, tempInfo.FirstName);
  2101. }
  2102. }
  2103. }
  2104. }
  2105. return result;
  2106. }
  2107. private string getClientNameStr1(List<SimplClientInfo> list, string origin)
  2108. {
  2109. string result = origin;
  2110. if (Regex.Match(origin, @"\d+,?").Value.Length > 0)
  2111. {
  2112. string[] temparr = origin.Split(',');
  2113. result = "";
  2114. foreach (var item in temparr)
  2115. {
  2116. int tempId;
  2117. bool success = int.TryParse(item, out tempId);
  2118. if (success)
  2119. {
  2120. SimplClientInfo tempInfo = list.FirstOrDefault(s => s.Id == tempId);
  2121. if (tempInfo != null)
  2122. {
  2123. result += string.Format(@"{0}{1}、", tempInfo.LastName, tempInfo.FirstName);
  2124. }
  2125. }
  2126. }
  2127. }
  2128. if (result.Length > 0) result = result.Substring(0, result.Length - 1);
  2129. return result;
  2130. }
  2131. /// <summary>
  2132. /// 机票费用录入,删除
  2133. /// </summary>
  2134. /// <param name="dto"></param>
  2135. /// <returns></returns>
  2136. [HttpPost]
  2137. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2138. public async Task<IActionResult> DelAirTicketRes(DelBaseDto dto)
  2139. {
  2140. try
  2141. {
  2142. var res = await _airTicketResRep.SoftDeleteByIdAsync<Grp_AirTicketReservations>(dto.Id.ToString(), dto.DeleteUserId);
  2143. if (res)
  2144. {
  2145. var result = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.CTable == 85).SetColumns(a => new Grp_CreditCardPayment()
  2146. {
  2147. IsDel = 1,
  2148. DeleteUserId = dto.DeleteUserId,
  2149. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  2150. }).ExecuteCommandAsync();
  2151. return Ok(JsonView(true, "删除成功!"));
  2152. }
  2153. return Ok(JsonView(false, "删除失败!"));
  2154. }
  2155. catch (Exception ex)
  2156. {
  2157. return Ok(JsonView(false, "程序错误!"));
  2158. throw;
  2159. }
  2160. }
  2161. /// <summary>
  2162. /// 导出机票录入报表
  2163. /// </summary>
  2164. /// <param name="dto"></param>
  2165. /// <returns></returns>
  2166. [HttpPost]
  2167. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2168. public async Task<IActionResult> DeriveAirTicketRes(AirTicketResDto dto)
  2169. {
  2170. try
  2171. {
  2172. Result groupData = await _airTicketResRep.DeriveAirTicketRes(dto);
  2173. if (groupData.Code != 0)
  2174. {
  2175. return Ok(JsonView(StatusCodes.Status400BadRequest, groupData.Msg, ""));
  2176. }
  2177. else
  2178. {
  2179. List<AirTicketReservationsPayView> AirTicketReservations = groupData.Data.GetType().GetProperty("AirTicketRes").GetValue(groupData.Data);
  2180. if (AirTicketReservations.Count != 0)
  2181. {
  2182. Grp_DelegationInfo DelegationInfo = groupData.Data.GetType().GetProperty("Delegation").GetValue(groupData.Data);
  2183. Sys_Users _Users = groupData.Data.GetType().GetProperty("Users").GetValue(groupData.Data);
  2184. string diCode = DelegationInfo != null ? DelegationInfo.TourCode : "XXX";
  2185. string diName = DelegationInfo != null ? DelegationInfo.TeamName : "XXX";
  2186. WorkbookDesigner designer = new WorkbookDesigner();
  2187. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/机票预订费用报表模板.xlsx");
  2188. decimal countCost = 0;
  2189. foreach (var item in AirTicketReservations)
  2190. {
  2191. #region 处理客人姓名
  2192. string clientNames = _tourClientListRep._ResolveCustomerName(item.ClientName);
  2193. item.ClientName = clientNames;
  2194. #endregion
  2195. if (item.BankType == "其他")
  2196. {
  2197. item.BankNo = "--";
  2198. }
  2199. else
  2200. {
  2201. if (!string.IsNullOrEmpty(item.BankType))
  2202. {
  2203. item.BankNo = item.BankType + ":" + item.BankNo?.Substring(0, 3);
  2204. }
  2205. }
  2206. item.PrePrice = System.Decimal.Round(item.PrePrice, 2);
  2207. item.Price = System.Decimal.Round(item.Price, 2);
  2208. countCost += Convert.ToDecimal(item.Price);
  2209. }
  2210. designer.SetDataSource("Export", AirTicketReservations);
  2211. designer.SetDataSource("ExportDiCode", diCode);
  2212. designer.SetDataSource("ExportDiName", diName);
  2213. designer.SetDataSource("ExportOpUserName", _Users.CnName);
  2214. designer.SetDataSource("ExportCountCost", countCost + "(" + AirTicketReservations[0].CurrencyStr);
  2215. designer.Process();
  2216. string fileName = ("AirfareStatement/" + diName + "机票费用报表" + "_" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xlsx").Replace(":", "");
  2217. designer.Workbook.Save(AppSettingsHelper.Get("ExcelBasePath") + fileName);
  2218. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  2219. return Ok(JsonView(true, "成功", url = rst));
  2220. }
  2221. else
  2222. {
  2223. return Ok(JsonView(StatusCodes.Status400BadRequest, "暂无数据!", ""));
  2224. }
  2225. }
  2226. }
  2227. catch (Exception ex)
  2228. {
  2229. return Ok(JsonView(StatusCodes.Status400BadRequest, ex.Message, ""));
  2230. throw;
  2231. }
  2232. }
  2233. Dictionary<string, string> transDic = new Dictionary<string, string>();
  2234. /// <summary>
  2235. /// 行程单导出
  2236. /// </summary>
  2237. /// <param name="dto"></param>
  2238. /// <returns></returns>
  2239. [HttpPost]
  2240. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2241. public async Task<IActionResult> ItineraryAirTicketRes(ItineraryAirTicketResDto dto)
  2242. {
  2243. try
  2244. {
  2245. Result groupData = await _airTicketResRep.ItineraryAirTicketRes(dto);
  2246. if (groupData.Code != 0)
  2247. {
  2248. return Ok(JsonView(StatusCodes.Status400BadRequest, groupData.Msg, ""));
  2249. }
  2250. else
  2251. {
  2252. List<AirTicketReservationsView> _AirTicketReservations = groupData.Data;
  2253. if (dto.Language == "CN")
  2254. {
  2255. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_CN.docx");
  2256. DocumentBuilder builder = new DocumentBuilder(doc);
  2257. int tableIndex = 0;//表格索引
  2258. //得到文档中的第一个表格
  2259. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2260. foreach (var item in _AirTicketReservations)
  2261. {
  2262. #region 处理固定数据
  2263. string[] FlightsCode = item.FlightsCode.Split('/');
  2264. if (FlightsCode.Length != 0)
  2265. {
  2266. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2267. if (_AirCompany != null)
  2268. {
  2269. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2270. }
  2271. else
  2272. {
  2273. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2274. }
  2275. }
  2276. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2277. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2278. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2279. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2280. string name = "";
  2281. foreach (string clientName in nameArray)
  2282. {
  2283. if (!name.Contains(clientName))
  2284. {
  2285. name += clientName + ",";
  2286. }
  2287. }
  2288. if (!string.IsNullOrWhiteSpace(name))
  2289. {
  2290. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2291. }
  2292. else
  2293. {
  2294. table.Range.Bookmarks["ClientName"].Text = "--";
  2295. }
  2296. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2297. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2298. table.Range.Bookmarks["JointTicket"].Text = "--";
  2299. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2300. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2301. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2302. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2303. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2304. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2305. #endregion
  2306. #region 循环数据处理
  2307. List<AirInfo> airs = new List<AirInfo>();
  2308. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2309. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2310. for (int i = 0; i < FlightsCode.Length; i++)
  2311. {
  2312. AirInfo air = new AirInfo();
  2313. string[] tempstr = DayArray[i]
  2314. .Replace("\r\n", string.Empty)
  2315. .Replace("\\r\\n", string.Empty)
  2316. .TrimStart().TrimEnd()
  2317. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2318. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2319. string starCity = "";
  2320. if (star_Three != null)
  2321. {
  2322. starCity = star_Three.AirPort;
  2323. }
  2324. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2325. string EndCity = "";
  2326. if (End_Three != null)
  2327. {
  2328. EndCity = End_Three.AirPort;
  2329. }
  2330. air.Destination = starCity + "/" + EndCity;
  2331. air.Flight = FlightsCode[i];
  2332. air.SeatingClass = item.CTypeName;
  2333. string dateTime = tempstr[2];
  2334. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2335. air.FlightDate = DateTemp;
  2336. air.DepartureTime = tempstr[5];
  2337. air.LandingTime = tempstr[6];
  2338. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2339. air.TicketStatus = "--";
  2340. air.Luggage = "--";
  2341. air.DepartureTerminal = "--";
  2342. air.LandingTerminal = "--";
  2343. airs.Add(air);
  2344. }
  2345. int row = 13;
  2346. for (int i = 0; i < airs.Count; i++)
  2347. {
  2348. if (airs.Count > 2)
  2349. {
  2350. for (int j = 0; j < airs.Count - 2; j++)
  2351. {
  2352. var CopyRow = table.Rows[12].Clone(true);
  2353. table.Rows.Add(CopyRow);
  2354. }
  2355. }
  2356. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2357. int index = 0;
  2358. foreach (PropertyInfo property in properties)
  2359. {
  2360. string value = property.GetValue(airs[i]).ToString();
  2361. Cell ishcel0 = table.Rows[row].Cells[index];
  2362. Paragraph p = new Paragraph(doc);
  2363. string s = value;
  2364. p.AppendChild(new Run(doc, s));
  2365. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2366. ishcel0.AppendChild(p);
  2367. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2368. index++;
  2369. }
  2370. row++;
  2371. }
  2372. #endregion
  2373. Paragraph lastParagraph = new Paragraph(doc);
  2374. //第一个表格末尾加段落
  2375. table.ParentNode.InsertAfter(lastParagraph, table);
  2376. //复制第一个表格
  2377. Table cloneTable = (Table)table.Clone(true);
  2378. //在文档末尾段落后面加入复制的表格
  2379. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2380. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2381. {
  2382. int rownewsIndex = 13;
  2383. for (int i = 0; i < 2; i++)
  2384. {
  2385. var CopyRow = table.Rows[12].Clone(true);
  2386. table.Rows.RemoveAt(13);
  2387. table.Rows.Add(CopyRow);
  2388. rownewsIndex++;
  2389. }
  2390. }
  2391. else
  2392. {
  2393. table.Rows.RemoveAt(12);
  2394. }
  2395. cloneTable.Rows.RemoveAt(12);
  2396. }
  2397. if (_AirTicketReservations.Count != 0)
  2398. {
  2399. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2400. if (FlightsCode.Length != 0)
  2401. {
  2402. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2403. if (_AirCompany != null)
  2404. {
  2405. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2406. }
  2407. else
  2408. {
  2409. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2410. }
  2411. }
  2412. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2413. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2414. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2415. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2416. string name = "";
  2417. foreach (string clientName in nameArray)
  2418. {
  2419. if (!name.Contains(clientName))
  2420. {
  2421. name += clientName + ",";
  2422. }
  2423. }
  2424. if (!string.IsNullOrWhiteSpace(name))
  2425. {
  2426. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2427. }
  2428. else
  2429. {
  2430. table.Range.Bookmarks["ClientName"].Text = "--";
  2431. }
  2432. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2433. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2434. table.Range.Bookmarks["JointTicket"].Text = "--";
  2435. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2436. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2437. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2438. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2439. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2440. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2441. }
  2442. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2443. //保存合并后的文档
  2444. string fileName = "AirItinerary/电子客票中文行程单_CN.docx";
  2445. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2446. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2447. return Ok(JsonView(true, "成功!", rst));
  2448. }
  2449. else
  2450. {
  2451. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_EN.docx");
  2452. DocumentBuilder builder = new DocumentBuilder(doc);
  2453. int tableIndex = 0;//表格索引
  2454. //得到文档中的第一个表格
  2455. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2456. List<string> texts = new List<string>();
  2457. foreach (var item in _AirTicketReservations)
  2458. {
  2459. string[] FlightsCode = item.FlightsCode.Split('/');
  2460. if (FlightsCode.Length != 0)
  2461. {
  2462. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2463. if (_AirCompany != null)
  2464. {
  2465. if (!transDic.ContainsKey(_AirCompany.CnName))
  2466. {
  2467. transDic.Add(_AirCompany.CnName, _AirCompany.EnName);
  2468. }
  2469. }
  2470. else
  2471. {
  2472. if (!transDic.ContainsKey("--"))
  2473. {
  2474. transDic.Add("--", "--");
  2475. }
  2476. }
  2477. }
  2478. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2479. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2480. string name = "";
  2481. foreach (string clientName in nameArray)
  2482. {
  2483. name += clientName + ",";
  2484. }
  2485. if (!texts.Contains(name))
  2486. {
  2487. texts.Add(name);
  2488. }
  2489. List<AirInfo> airs = new List<AirInfo>();
  2490. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2491. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2492. for (int i = 0; i < FlightsCode.Length; i++)
  2493. {
  2494. AirInfo air = new AirInfo();
  2495. string[] tempstr = DayArray[i]
  2496. .Replace("\r\n", string.Empty)
  2497. .Replace("\\r\\n", string.Empty)
  2498. .TrimStart().TrimEnd()
  2499. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2500. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2501. if (star_Three != null)
  2502. {
  2503. if (!transDic.ContainsKey(star_Three.AirPort))
  2504. {
  2505. transDic.Add(star_Three.AirPort, star_Three.AirPort_En);
  2506. }
  2507. }
  2508. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2509. if (End_Three != null)
  2510. {
  2511. if (!transDic.ContainsKey(End_Three.AirPort))
  2512. {
  2513. transDic.Add(End_Three.AirPort, End_Three.AirPort_En);
  2514. }
  2515. }
  2516. if (!texts.Contains(item.CTypeName))
  2517. {
  2518. texts.Add(item.CTypeName);
  2519. }
  2520. }
  2521. }
  2522. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  2523. if (transData.Count > 0)
  2524. {
  2525. foreach (TranslateResult item in transData)
  2526. {
  2527. if (!transDic.ContainsKey(item.Query))
  2528. {
  2529. transDic.Add(item.Query, item.Translation);
  2530. }
  2531. }
  2532. }
  2533. foreach (var item in _AirTicketReservations)
  2534. {
  2535. #region 处理固定数据
  2536. string[] FlightsCode = item.FlightsCode.Split('/');
  2537. if (FlightsCode.Length != 0)
  2538. {
  2539. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2540. if (_AirCompany != null)
  2541. {
  2542. string str = "--";
  2543. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2544. if (!string.IsNullOrEmpty(translateResult))
  2545. {
  2546. str = translateResult;
  2547. str = _airTicketResRep.Processing(str);
  2548. }
  2549. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2550. }
  2551. else
  2552. {
  2553. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2554. }
  2555. }
  2556. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2557. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2558. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2559. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2560. string names = "";
  2561. foreach (string clientName in nameArray)
  2562. {
  2563. names += clientName + ",";
  2564. }
  2565. if (!string.IsNullOrWhiteSpace(names))
  2566. {
  2567. string str = "--";
  2568. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2569. if (!string.IsNullOrEmpty(translateResult))
  2570. {
  2571. str = translateResult;
  2572. str = _airTicketResRep.Processing(str);
  2573. }
  2574. table.Range.Bookmarks["ClientName"].Text = str;
  2575. }
  2576. else
  2577. {
  2578. table.Range.Bookmarks["ClientName"].Text = "--";
  2579. }
  2580. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2581. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2582. table.Range.Bookmarks["JointTicket"].Text = "--";
  2583. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2584. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2585. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2586. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2587. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2588. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2589. #endregion
  2590. #region 循环数据处理
  2591. List<AirInfo> airs = new List<AirInfo>();
  2592. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2593. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2594. for (int i = 0; i < FlightsCode.Length; i++)
  2595. {
  2596. AirInfo air = new AirInfo();
  2597. string[] tempstr = DayArray[i]
  2598. .Replace("\r\n", string.Empty)
  2599. .Replace("\\r\\n", string.Empty)
  2600. .TrimStart().TrimEnd()
  2601. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2602. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2603. string starCity = "";
  2604. if (star_Three != null)
  2605. {
  2606. string str2 = "--";
  2607. string translateResult2 = transDic.Where(s => s.Key == star_Three.AirPort).FirstOrDefault().Value;
  2608. if (!string.IsNullOrEmpty(translateResult2))
  2609. {
  2610. str2 = translateResult2;
  2611. str2 = _airTicketResRep.Processing(str2);
  2612. }
  2613. starCity = str2;
  2614. }
  2615. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2616. string EndCity = "";
  2617. if (End_Three != null)
  2618. {
  2619. string str1 = "--";
  2620. string translateResult1 = transDic.Where(s => s.Key == End_Three.AirPort).FirstOrDefault().Value;
  2621. if (!string.IsNullOrEmpty(translateResult1))
  2622. {
  2623. str1 = translateResult1;
  2624. str1 = _airTicketResRep.Processing(str1);
  2625. }
  2626. EndCity = str1;
  2627. }
  2628. air.Destination = starCity + "/" + EndCity;
  2629. air.Flight = FlightsCode[i];
  2630. string str = "--";
  2631. string translateResult = transDic.Where(s => s.Key == item.CTypeName).FirstOrDefault().Value;
  2632. if (!string.IsNullOrEmpty(translateResult))
  2633. {
  2634. str = translateResult;
  2635. str = _airTicketResRep.Processing(str);
  2636. }
  2637. air.SeatingClass = str;
  2638. string dateTime = tempstr[2];
  2639. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2640. air.FlightDate = DateTemp;
  2641. air.DepartureTime = tempstr[5];
  2642. air.LandingTime = tempstr[6];
  2643. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2644. air.TicketStatus = "--";
  2645. air.Luggage = "--";
  2646. air.DepartureTerminal = "--";
  2647. air.LandingTerminal = "--";
  2648. airs.Add(air);
  2649. }
  2650. int row = 13;
  2651. for (int i = 0; i < airs.Count; i++)
  2652. {
  2653. if (airs.Count > 2)
  2654. {
  2655. for (int j = 0; j < airs.Count - 2; j++)
  2656. {
  2657. var CopyRow = table.Rows[12].Clone(true);
  2658. table.Rows.Add(CopyRow);
  2659. }
  2660. }
  2661. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2662. int index = 0;
  2663. foreach (PropertyInfo property in properties)
  2664. {
  2665. string value = property.GetValue(airs[i]).ToString();
  2666. Cell ishcel0 = table.Rows[row].Cells[index];
  2667. Paragraph p = new Paragraph(doc);
  2668. string s = value;
  2669. p.AppendChild(new Run(doc, s));
  2670. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2671. ishcel0.AppendChild(p);
  2672. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2673. //ishcel0.CellFormat.VerticalAlignment=
  2674. index++;
  2675. }
  2676. row++;
  2677. }
  2678. #endregion
  2679. Paragraph lastParagraph = new Paragraph(doc);
  2680. //第一个表格末尾加段落
  2681. table.ParentNode.InsertAfter(lastParagraph, table);
  2682. //复制第一个表格
  2683. Table cloneTable = (Table)table.Clone(true);
  2684. //在文档末尾段落后面加入复制的表格
  2685. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2686. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2687. {
  2688. int rownewsIndex = 13;
  2689. for (int i = 0; i < 2; i++)
  2690. {
  2691. var CopyRow = table.Rows[12].Clone(true);
  2692. table.Rows.RemoveAt(13);
  2693. table.Rows.Add(CopyRow);
  2694. rownewsIndex++;
  2695. }
  2696. }
  2697. else
  2698. {
  2699. table.Rows.RemoveAt(12);
  2700. }
  2701. cloneTable.Rows.RemoveAt(12);
  2702. }
  2703. if (_AirTicketReservations.Count != 0)
  2704. {
  2705. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2706. if (FlightsCode.Length != 0)
  2707. {
  2708. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2709. if (_AirCompany != null)
  2710. {
  2711. string str = "--";
  2712. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2713. if (!string.IsNullOrEmpty(translateResult))
  2714. {
  2715. str = translateResult;
  2716. str = _airTicketResRep.Processing(str);
  2717. }
  2718. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2719. }
  2720. else
  2721. {
  2722. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2723. }
  2724. }
  2725. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2726. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2727. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2728. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2729. string names = "";
  2730. foreach (string clientName in nameArray)
  2731. {
  2732. names += clientName + ",";
  2733. }
  2734. if (!string.IsNullOrWhiteSpace(names))
  2735. {
  2736. string str = "--";
  2737. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2738. if (!string.IsNullOrEmpty(translateResult))
  2739. {
  2740. str = translateResult;
  2741. str = _airTicketResRep.Processing(str);
  2742. }
  2743. table.Range.Bookmarks["ClientName"].Text = str;
  2744. }
  2745. else
  2746. {
  2747. table.Range.Bookmarks["ClientName"].Text = "--";
  2748. }
  2749. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2750. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2751. table.Range.Bookmarks["JointTicket"].Text = "--";
  2752. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2753. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2754. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2755. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2756. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2757. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2758. }
  2759. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2760. //保存合并后的文档
  2761. string fileName = "AirItinerary/电子客票英文行程单_EN.docx";
  2762. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2763. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2764. return Ok(JsonView(true, "成功!", rst));
  2765. }
  2766. }
  2767. }
  2768. catch (Exception ex)
  2769. {
  2770. return Ok(JsonView(StatusCodes.Status400BadRequest, "程序错误!", ""));
  2771. throw;
  2772. }
  2773. }
  2774. #endregion
  2775. #region 团组增减款项 --> 其他款项
  2776. /// <summary>
  2777. /// 团组增减款项下拉框绑定
  2778. /// </summary>
  2779. /// <param name="dto"></param>
  2780. /// <returns></returns>
  2781. [HttpPost]
  2782. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2783. public async Task<IActionResult> DecreasePaymentsSelect(DecreasePaymentsDto dto)
  2784. {
  2785. #region 参数验证
  2786. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2787. if (dto.CTId < 1) return Ok(JsonView(false, "请传入有效的CTId参数!"));
  2788. #endregion
  2789. return Ok(await _decreasePaymentsRep.DecreasePaymentsSelect(dto));
  2790. }
  2791. /// <summary>
  2792. /// 根据团组Id查询团组增减款项
  2793. /// </summary>
  2794. /// <param name="dto"></param>
  2795. /// <returns></returns>
  2796. [HttpPost]
  2797. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2798. public async Task<IActionResult> DecreasePaymentsList(DecreasePaymentsListDto dto)
  2799. {
  2800. #region 参数验证
  2801. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2802. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  2803. #endregion
  2804. return Ok(await _decreasePaymentsRep.DecreasePaymentsList(dto));
  2805. }
  2806. /// <summary>
  2807. /// 团组增减款项操作(Status:1.新增,2.修改)
  2808. /// </summary>
  2809. /// <param name="dto"></param>
  2810. /// <returns></returns>
  2811. [HttpPost]
  2812. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2813. public async Task<IActionResult> OpDecreasePayments(DecreasePaymentsOpDto dto)
  2814. {
  2815. JsonView groupData = await _decreasePaymentsRep.OpDecreasePayments(dto);
  2816. if (groupData.Code != 200)
  2817. {
  2818. return Ok(JsonView(false, groupData.Msg));
  2819. }
  2820. #region 应用推送
  2821. int ccpId = (int)groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2822. int sign = (int)groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2823. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2824. #endregion
  2825. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2826. }
  2827. /// <summary>
  2828. /// 团组增减款项操作 删除
  2829. /// </summary>
  2830. /// <param name="dto"></param>
  2831. /// <returns></returns>
  2832. [HttpPost]
  2833. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2834. public async Task<IActionResult> DelDecreasePayments(DelBaseDto dto)
  2835. {
  2836. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  2837. if (dto.DeleteUserId < 1) return Ok(JsonView(false, "请传入有效的DeleteUserId参数!"));
  2838. var res = await _decreasePaymentsRep._Del(dto.Id, dto.DeleteUserId);
  2839. if (res.Code == 0)
  2840. {
  2841. return Ok(JsonView(true, "删除成功!"));
  2842. }
  2843. return Ok(JsonView(false, "删除失败!"));
  2844. }
  2845. /// <summary>
  2846. /// 根据团组增减款项Id查询
  2847. /// </summary>
  2848. /// <param name="dto"></param>
  2849. /// <returns></returns>
  2850. [HttpPost]
  2851. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2852. public async Task<IActionResult> QueryDecreasePaymentsById(DecreasePaymentsByIdDto dto)
  2853. {
  2854. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的数据Id!"));
  2855. return Ok(await _decreasePaymentsRep.QueryDecreasePaymentsById(dto));
  2856. }
  2857. /// <summary>
  2858. /// 查询供应商名称
  2859. /// </summary>
  2860. /// <param name="dto"></param>
  2861. /// <returns></returns>
  2862. [HttpPost]
  2863. public IActionResult QueryAssociateSupplier(AssociateSupplierDto dto)
  2864. {
  2865. var dbResult = _sqlSugar.Queryable<Grp_DecreasePayments>()
  2866. .Where(x => x.SupplierName.Contains(dto.param) && x.IsDel == 0).ToList()
  2867. ?? new List<Grp_DecreasePayments>();
  2868. dbResult = dbResult.Distinct(new
  2869. ProductComparer()).ToList();
  2870. var jw = JsonView(true, "success", dbResult.OrderByDescending(x => x.Id).Select(x => new
  2871. {
  2872. x.Id,
  2873. x.SupplierAddress,
  2874. x.SupplierArea,
  2875. x.SupplierContact,
  2876. x.SupplierContactNumber,
  2877. x.SupplierEmail,
  2878. x.SupplierName,
  2879. x.SupplierSocialAccount,
  2880. x.SupplierTypeId,
  2881. }).ToList());
  2882. return Ok(jw);
  2883. }
  2884. #endregion
  2885. #region 文件上传、删除
  2886. /// <summary>
  2887. /// region 文件上传 可以带参数
  2888. /// </summary>
  2889. /// <param name="file"></param>
  2890. /// <returns></returns>
  2891. [HttpPost]
  2892. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2893. public async Task<IActionResult> UploadProject(IFormFile file)
  2894. {
  2895. try
  2896. {
  2897. var TypeName = Request.Headers["TypeName"].ToString();
  2898. if (file != null)
  2899. {
  2900. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2901. //文件名称
  2902. string projectFileName = file.FileName;
  2903. //上传的文件的路径
  2904. string filePath = "";
  2905. if (TypeName == "A")//A代表团组增减款项
  2906. {
  2907. if (!Directory.Exists(fileDir))
  2908. {
  2909. Directory.CreateDirectory(fileDir);
  2910. }
  2911. //上传的文件的路径
  2912. filePath = fileDir + $@"\团组增减款项相关文件\{projectFileName}";
  2913. }
  2914. else if (TypeName == "B")//B代表商邀相关文件
  2915. {
  2916. if (!Directory.Exists(fileDir))
  2917. {
  2918. Directory.CreateDirectory(fileDir);
  2919. }
  2920. //上传的文件的路径
  2921. filePath = fileDir + $@"\商邀相关文件\{projectFileName}";
  2922. }
  2923. using (FileStream fs = System.IO.File.Create(filePath))
  2924. {
  2925. file.CopyTo(fs);
  2926. fs.Flush();
  2927. }
  2928. return Ok(JsonView(true, "上传成功!", projectFileName));
  2929. }
  2930. else
  2931. {
  2932. return Ok(JsonView(false, "上传失败!"));
  2933. }
  2934. }
  2935. catch (Exception ex)
  2936. {
  2937. return Ok(JsonView(false, "程序错误!"));
  2938. throw;
  2939. }
  2940. }
  2941. /// <summary>
  2942. /// 删除指定文件
  2943. /// </summary>
  2944. /// <param name="dto"></param>
  2945. /// <returns></returns>
  2946. [HttpPost]
  2947. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2948. public async Task<IActionResult> DelFile(DelFileDto dto)
  2949. {
  2950. try
  2951. {
  2952. var TypeName = Request.Headers["TypeName"].ToString();
  2953. string filePath = "";
  2954. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2955. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  2956. int id = 0;
  2957. if (TypeName == "A")
  2958. {
  2959. filePath = fileDir + "/团组增减款项相关文件/" + dto.fileName;
  2960. // 删除该文件
  2961. System.IO.File.Delete(filePath);
  2962. id = await _sqlSugar.Updateable<Grp_DecreasePayments>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_DecreasePayments { FilePath = "" }).ExecuteCommandAsync();
  2963. }
  2964. else if (TypeName == "B")
  2965. {
  2966. filePath = fileDir + "/商邀相关文件/" + dto.fileName;
  2967. // 删除该文件
  2968. System.IO.File.Delete(filePath);
  2969. id = await _sqlSugar.Updateable<Grp_InvitationOfficialActivities>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_InvitationOfficialActivities { Attachment = "" }).ExecuteCommandAsync();
  2970. }
  2971. if (id != 0)
  2972. {
  2973. return Ok(JsonView(true, "成功!"));
  2974. }
  2975. else
  2976. {
  2977. return Ok(JsonView(false, "失败!"));
  2978. }
  2979. }
  2980. catch (Exception ex)
  2981. {
  2982. return Ok(JsonView(false, "程序错误!"));
  2983. throw;
  2984. }
  2985. }
  2986. #endregion
  2987. #region 商邀费用录入
  2988. /// <summary>
  2989. /// 根据团组Id查询商邀费用列表
  2990. /// </summary>
  2991. /// <param name="dto"></param>
  2992. /// <returns></returns>
  2993. [HttpPost]
  2994. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2995. public async Task<IActionResult> InvitationOfficialActivitiesList(InvitationOfficialActivitiesListDto dto)
  2996. {
  2997. try
  2998. {
  2999. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesList(dto);
  3000. if (groupData.Code != 0)
  3001. {
  3002. return Ok(JsonView(false, groupData.Msg));
  3003. }
  3004. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3005. }
  3006. catch (Exception ex)
  3007. {
  3008. return Ok(JsonView(false, "程序错误!"));
  3009. throw;
  3010. }
  3011. }
  3012. //
  3013. /// <summary>
  3014. /// 商邀费用 Info Page 基础数据源
  3015. /// </summary>
  3016. /// <param name="dto"></param>
  3017. /// <returns></returns>
  3018. [HttpPost]
  3019. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3020. public async Task<IActionResult> InvitationOfficialActivityInitBasicData()
  3021. {
  3022. try
  3023. {
  3024. Result groupData = await _InvitationOfficialActivitiesRep._InitBasicData();
  3025. if (groupData.Code != 0)
  3026. {
  3027. return Ok(JsonView(false, groupData.Msg));
  3028. }
  3029. return Ok(JsonView(true, "操作成功", groupData.Data));
  3030. }
  3031. catch (Exception ex)
  3032. {
  3033. return Ok(JsonView(false, ex.Message));
  3034. throw;
  3035. }
  3036. }
  3037. /// <summary>
  3038. /// 根据商邀费用ID查询C表和商邀费用数据
  3039. /// </summary>
  3040. /// <param name="dto"></param>
  3041. /// <returns></returns>
  3042. [HttpPost]
  3043. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3044. public async Task<IActionResult> InvitationOfficialActivitiesById(InvitationOfficialActivitiesByIdDto dto)
  3045. {
  3046. try
  3047. {
  3048. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesById(dto);
  3049. if (groupData.Code != 0)
  3050. {
  3051. return Ok(JsonView(false, groupData.Msg));
  3052. }
  3053. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3054. }
  3055. catch (Exception ex)
  3056. {
  3057. return Ok(JsonView(false, ex.Message));
  3058. throw;
  3059. }
  3060. }
  3061. /// <summary>
  3062. /// 商邀费用录入操作(Status:1.新增,2.修改)
  3063. /// </summary>
  3064. /// <param name="dto"></param>
  3065. /// <returns></returns>
  3066. [HttpPost]
  3067. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3068. public async Task<IActionResult> OpInvitationOfficialActivities(OpInvitationOfficialActivitiesDto dto)
  3069. {
  3070. try
  3071. {
  3072. Result groupData = await _InvitationOfficialActivitiesRep.OpInvitationOfficialActivities(dto, _setDataRep.PostCurrencyByDiid);
  3073. if (groupData.Code != 0)
  3074. {
  3075. return Ok(JsonView(false, groupData.Msg));
  3076. }
  3077. #region 应用推送
  3078. try
  3079. {
  3080. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  3081. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  3082. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  3083. }
  3084. catch (Exception ex)
  3085. {
  3086. }
  3087. #endregion
  3088. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3089. }
  3090. catch (Exception ex)
  3091. {
  3092. return Ok(JsonView(false, "程序错误!"));
  3093. throw;
  3094. }
  3095. }
  3096. /// <summary>
  3097. /// 商邀删除
  3098. /// </summary>
  3099. /// <param name="dto"></param>
  3100. /// <returns></returns>
  3101. [HttpPost]
  3102. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3103. public async Task<IActionResult> DelInvitationOfficialActivities(DelBaseDto dto)
  3104. {
  3105. try
  3106. {
  3107. _sqlSugar.BeginTran();
  3108. var res1 = _sqlSugar.Updateable<Grp_InvitationOfficialActivities>()
  3109. .SetColumns(it => new Grp_InvitationOfficialActivities()
  3110. {
  3111. IsDel = 1,
  3112. DeleteUserId = dto.DeleteUserId,
  3113. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  3114. })
  3115. .Where(it => it.Id == dto.Id)
  3116. .ExecuteCommand();
  3117. if (res1 > 0)
  3118. {
  3119. int _diId = 0;
  3120. var _ioaInfo = _sqlSugar.Queryable<Grp_InvitationOfficialActivities>().Where(it => it.Id == dto.Id).First();
  3121. if (_ioaInfo != null)
  3122. {
  3123. _diId = _ioaInfo.DiId;
  3124. }
  3125. var res2 = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  3126. .SetColumns(a => new Grp_CreditCardPayment()
  3127. {
  3128. IsDel = 1,
  3129. DeleteUserId = dto.DeleteUserId,
  3130. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  3131. })
  3132. .Where(a => a.CId == dto.Id && a.DIId == _diId && a.CTable == 81)
  3133. .ExecuteCommand();
  3134. if (res2 > 0)
  3135. {
  3136. _sqlSugar.CommitTran();
  3137. return Ok(JsonView(true, "删除成功!"));
  3138. }
  3139. }
  3140. _sqlSugar.RollbackTran();
  3141. return Ok(JsonView(false, "删除失败"));
  3142. }
  3143. catch (Exception ex)
  3144. {
  3145. _sqlSugar.RollbackTran();
  3146. return Ok(JsonView(false, ex.Message));
  3147. }
  3148. }
  3149. #endregion
  3150. #region 团组英文资料
  3151. /// <summary>
  3152. /// 查询团组英文所有资料
  3153. /// </summary>
  3154. /// <param name="dto"></param>
  3155. /// <returns></returns>
  3156. [HttpPost]
  3157. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3158. public async Task<IActionResult> QueryDelegationEnData(QueryDelegationEnDataDto dto)
  3159. {
  3160. try
  3161. {
  3162. Result groupData = await _delegationEnDataRep.QueryDelegationEnData(dto);
  3163. if (groupData.Code != 0)
  3164. {
  3165. return Ok(JsonView(false, groupData.Msg));
  3166. }
  3167. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3168. }
  3169. catch (Exception ex)
  3170. {
  3171. return Ok(JsonView(false, "程序错误!"));
  3172. throw;
  3173. }
  3174. }
  3175. /// <summary>
  3176. /// 团组英文资料操作(Status:1.新增,2.修改)
  3177. /// </summary>
  3178. /// <param name="dto"></param>
  3179. /// <returns></returns>
  3180. [HttpPost]
  3181. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3182. public async Task<IActionResult> OpDelegationEnData(OpDelegationEnDataDto dto)
  3183. {
  3184. try
  3185. {
  3186. Result groupData = await _delegationEnDataRep.OpDelegationEnData(dto);
  3187. if (groupData.Code != 0)
  3188. {
  3189. return Ok(JsonView(false, groupData.Msg));
  3190. }
  3191. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3192. }
  3193. catch (Exception ex)
  3194. {
  3195. return Ok(JsonView(false, "程序错误!"));
  3196. throw;
  3197. }
  3198. }
  3199. /// <summary>
  3200. /// 团组英文资料Id查询数据
  3201. /// </summary>
  3202. /// <param name="dto"></param>
  3203. /// <returns></returns>
  3204. [HttpPost]
  3205. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3206. public async Task<IActionResult> QueryDelegationEnDataById(QueryDelegationEnDataByIdDto dto)
  3207. {
  3208. try
  3209. {
  3210. Grp_DelegationEnData _DelegationEnData = await _sqlSugar.Queryable<Grp_DelegationEnData>().FirstAsync(it => it.Id == dto.Id && it.IsDel == 0);
  3211. if (_DelegationEnData != null)
  3212. {
  3213. return Ok(JsonView(true, "查询成功!", _DelegationEnData));
  3214. }
  3215. return Ok(JsonView(true, "暂无数据!", _DelegationEnData));
  3216. }
  3217. catch (Exception ex)
  3218. {
  3219. return Ok(JsonView(false, "程序错误!"));
  3220. throw;
  3221. }
  3222. }
  3223. /// <summary>
  3224. /// 团组英文资料删除
  3225. /// </summary>
  3226. /// <param name="dto"></param>
  3227. /// <returns></returns>
  3228. [HttpPost]
  3229. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3230. public async Task<IActionResult> DelDelegationEnData(DelBaseDto dto)
  3231. {
  3232. try
  3233. {
  3234. var res = await _delegationEnDataRep.SoftDeleteByIdAsync<Grp_DelegationEnData>(dto.Id.ToString(), dto.DeleteUserId);
  3235. if (!res)
  3236. {
  3237. return Ok(JsonView(false, "删除失败"));
  3238. }
  3239. return Ok(JsonView(true, "删除成功!"));
  3240. }
  3241. catch (Exception ex)
  3242. {
  3243. return Ok(JsonView(false, "程序错误!"));
  3244. throw;
  3245. }
  3246. }
  3247. #endregion
  3248. #region 导出邀请函
  3249. /// <summary>
  3250. /// 导出邀请函页面初始化
  3251. /// </summary>
  3252. /// <param name="dto"></param>
  3253. /// <returns></returns>
  3254. [HttpPost]
  3255. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3256. public async Task<IActionResult> QueryinvitationLetter(DecreasePaymentsListDto dto)
  3257. {
  3258. try
  3259. {
  3260. List<Grp_DelegationInfo> grp_Delegations = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(a => a.IsDel == 0).OrderBy(a => a.Id, OrderByType.Desc).ToList();
  3261. List<Crm_DeleClient> crm_Deles = new List<Crm_DeleClient>();
  3262. if (dto.DiId == 0)
  3263. {
  3264. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == grp_Delegations[0].Id && a.IsDel == 0).ToListAsync();
  3265. }
  3266. else
  3267. {
  3268. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == dto.DiId && a.IsDel == 0).ToListAsync();
  3269. }
  3270. return Ok(JsonView(true, "查询成功!", new
  3271. {
  3272. deleClient = crm_Deles,
  3273. delegations = grp_Delegations
  3274. }));
  3275. }
  3276. catch (Exception ex)
  3277. {
  3278. return Ok(JsonView(false, "程序错误!"));
  3279. throw;
  3280. }
  3281. }
  3282. /// <summary>
  3283. /// 导出邀请函
  3284. /// </summary>
  3285. /// <param name="dto"></param>
  3286. /// <returns></returns>
  3287. [HttpPost]
  3288. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3289. public async Task<IActionResult> invitationLetter(DecreasePaymentsListDto dto)
  3290. {
  3291. #region 参数验证
  3292. //if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  3293. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  3294. #endregion
  3295. try
  3296. {
  3297. Dictionary<string, string> transDic = new Dictionary<string, string>();
  3298. string sql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  3299. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  3300. From Grp_TourClientList tcl
  3301. Left Join
  3302. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  3303. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  3304. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  3305. From Crm_DeleClient dc
  3306. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  3307. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  3308. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  3309. Where dc.IsDel = 0) temp
  3310. On temp.DcId =tcl.ClientId
  3311. Where tcl.IsDel = 0 And tcl.DiId = {0}", dto.DiId);
  3312. var datas = _sqlSugar.SqlQueryable<TourClientListDetailsView>(sql).ToList();
  3313. List<string> texts = new List<string>();
  3314. if (datas.Count != 0)
  3315. {
  3316. foreach (TourClientListDetailsView item in datas)
  3317. {
  3318. if (!string.IsNullOrWhiteSpace(item.Pinyin))
  3319. {
  3320. transDic.Add(item.LastName + item.FirstName, item.Pinyin);
  3321. }
  3322. else
  3323. {
  3324. string name = item.LastName + item.FirstName;
  3325. texts.Add(name);
  3326. }
  3327. if (!string.IsNullOrEmpty(item.Job) && !texts.Contains(item.Job))
  3328. {
  3329. if (!transDic.ContainsKey(item.Job))
  3330. {
  3331. texts.Add(item.Job);
  3332. }
  3333. }
  3334. if (!string.IsNullOrEmpty(item.CompanyFullName))
  3335. {
  3336. texts.Add(item.CompanyFullName);
  3337. }
  3338. }
  3339. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  3340. if (transData.Count > 0)
  3341. {
  3342. foreach (TranslateResult item in transData)
  3343. {
  3344. if (!transDic.ContainsKey(item.Query))
  3345. {
  3346. transDic.Add(item.Query, item.Translation);
  3347. }
  3348. }
  3349. }
  3350. List<GuestList> list = new List<GuestList>();
  3351. foreach (TourClientListDetailsView dele in datas)
  3352. {
  3353. GuestList guestList = new GuestList();
  3354. if (!string.IsNullOrWhiteSpace(dele.Pinyin))
  3355. {
  3356. guestList.Name = dele.Pinyin;
  3357. }
  3358. else
  3359. {
  3360. string Name = transDic.Where(s => s.Key == dele.LastName + dele.FirstName).FirstOrDefault().Value;
  3361. guestList.Name = Name;
  3362. }
  3363. if (dele.Sex == 0)
  3364. {
  3365. guestList.Sex = "Male";
  3366. }
  3367. else if (dele.Sex == 1)
  3368. {
  3369. guestList.Sex = "Female";
  3370. }
  3371. guestList.DOB = dele.BirthDay.Replace('-', '.');
  3372. if (!string.IsNullOrEmpty(dele.Job))
  3373. {
  3374. guestList.Job = dele.Job;
  3375. }
  3376. list.Add(guestList);
  3377. }
  3378. //载入模板
  3379. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/邀请函模板0210.docx");
  3380. DocumentBuilder builder = new DocumentBuilder(doc);
  3381. //获取word里所有表格
  3382. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3383. //获取所填表格的序数
  3384. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  3385. var rowStart = tableOne.Rows[0]; //获取第1行
  3386. //循环赋值
  3387. for (int i = 0; i < list.Count; i++)
  3388. {
  3389. builder.MoveToCell(0, i + 1, 0, 0);
  3390. builder.Write(list[i].Name.ToString());
  3391. builder.MoveToCell(0, i + 1, 1, 0);
  3392. builder.Write(list[i].Sex.ToString());
  3393. builder.MoveToCell(0, i + 1, 2, 0);
  3394. builder.Write(list[i].DOB.ToString());
  3395. builder.MoveToCell(0, i + 1, 3, 0);
  3396. builder.Write(list[i].Job.ToString());
  3397. }
  3398. //删除多余行
  3399. while (tableOne.Rows.Count > list.Count + 1)
  3400. {
  3401. tableOne.Rows.RemoveAt(list.Count + 1);
  3402. }
  3403. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  3404. string fileName = "邀请函" + DateTime.Now.ToString("yyyy-MM-dd") + ".docx";
  3405. string filePath = fileDir + $@"商邀相关文件/{fileName}";
  3406. doc.Save(filePath);
  3407. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/GrpFile/商邀相关文件/" + fileName;
  3408. return Ok(JsonView(true, "操作成功!", Url));
  3409. }
  3410. else
  3411. {
  3412. return Ok(JsonView(false, "该团组客户名单暂未录入!"));
  3413. }
  3414. }
  3415. catch (Exception ex)
  3416. {
  3417. return Ok(JsonView(false, ex.Message));
  3418. throw;
  3419. }
  3420. }
  3421. #endregion
  3422. #region 团组经理模块 出入境费用
  3423. ///// <summary>
  3424. ///// 团组模块 - 出入境费用
  3425. ///// </summary>
  3426. ///// <returns></returns>
  3427. //[HttpPost]
  3428. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3429. //public async Task<IActionResult> SetEnterExitCostCurrencyChange()
  3430. //{
  3431. // try
  3432. // {
  3433. // var data = await _enterExitCostRep.SetEnterExitCostCurrencyChange();
  3434. // if (data.Code != 0)
  3435. // {
  3436. // return Ok(JsonView(false, data.Msg));
  3437. // }
  3438. // return Ok(JsonView(true, "查询成功!"));
  3439. // }
  3440. // catch (Exception ex)
  3441. // {
  3442. // return Ok(JsonView(false, ex.Message));
  3443. // throw;
  3444. // }
  3445. //}
  3446. /// <summary>
  3447. /// 团组模块 - 出入境费用 - 子项 地区更改为 nationalTravelFee 的id
  3448. /// </summary>
  3449. /// <returns></returns>
  3450. [HttpPost]
  3451. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3452. public async Task<IActionResult> SetDayAndCostAreaChange()
  3453. {
  3454. try
  3455. {
  3456. var nationalTravelFee = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  3457. var dayAndCost = await _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0).ToListAsync();
  3458. var unite = dayAndCost.Where(a => nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //交集
  3459. var merge = dayAndCost.Where(a => !nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //差集
  3460. foreach (var item in unite) //处理交集数据
  3461. {
  3462. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault().Id;
  3463. }
  3464. foreach (var item in merge) //处理差集数据
  3465. {
  3466. int nationalTravelFeeId = 0;
  3467. var cityData = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault();
  3468. if (cityData != null) nationalTravelFeeId = cityData.Id;
  3469. else
  3470. {
  3471. var countryData = nationalTravelFee.Where(it => it.Country.Trim() == item.Place.Trim()).FirstOrDefault();
  3472. if (countryData != null) nationalTravelFeeId = countryData.Id;
  3473. }
  3474. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFeeId;
  3475. }
  3476. //只更新dayAndCost 的 nationalTravelFeeId;
  3477. var result = _sqlSugar.Updateable(dayAndCost).UpdateColumns(it => new { it.NationalTravelFeeId }).ExecuteCommand();
  3478. if (result > 0) return Ok(JsonView(true, "nationalTravelFeeId列更新成功!"));
  3479. else return Ok(JsonView(false, "nationalTravelFeeId列更新失败!"));
  3480. }
  3481. catch (Exception ex)
  3482. {
  3483. return Ok(JsonView(false, ex.Message));
  3484. throw;
  3485. }
  3486. }
  3487. /// <summary>
  3488. /// 团组模块 - 出入境费用 - 基础数据源(团组名称/币种类型)
  3489. /// </summary>
  3490. /// <returns></returns>
  3491. [HttpPost]
  3492. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3493. public async Task<IActionResult> GetEnterExitCostDataSource(PortDtoBase dto)
  3494. {
  3495. try
  3496. {
  3497. var groupNameData = await _groupRepository.GetGroupNameList(new GroupNameDto { PortType = dto.PortType });
  3498. string sql = string.Format("Select * From Sys_SetData Where IsDel = 0");
  3499. //SetDataInfoView
  3500. var dataSource = await _sqlSugar.SqlQueryable<Sys_SetData>(sql).ToListAsync();
  3501. var currencyData = dataSource.Where(it => it.STid == 66).ToList(); //所有币种
  3502. List<SetDataInfoView> _CurrencyData = _mapper.Map<List<SetDataInfoView>>(currencyData);
  3503. var wordTypeData = dataSource.Where(it => it.STid == 72).ToList(); //三公费用-Word明细类型
  3504. List<SetDataInfoView> _WordTypeData = _mapper.Map<List<SetDataInfoView>>(wordTypeData);
  3505. var excelTypeData = dataSource.Where(it => it.STid == 73).ToList(); //三公费用-Excel明细类型
  3506. List<SetDataInfoView> _ExcelTypeData = _mapper.Map<List<SetDataInfoView>>(excelTypeData);
  3507. //默认币种显示
  3508. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3509. {
  3510. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 7.5000M },
  3511. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 8.0000M },
  3512. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 9.5000M },
  3513. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0500M },
  3514. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.9500M },
  3515. };
  3516. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3517. if (_currencyRate.Count > 0)
  3518. {
  3519. foreach (var item in _currencyInfos)
  3520. {
  3521. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3522. if (rateInfo != null)
  3523. {
  3524. decimal rate1 = Convert.ToDecimal(rateInfo.FSellPri) / 100.00M;
  3525. rate1 *= 1.035M;
  3526. item.Rate = Convert.ToDecimal(rate1.ToString("#0.00")) + 0.01M;
  3527. }
  3528. }
  3529. }
  3530. return Ok(JsonView(true, "查询成功!", new
  3531. {
  3532. GroupNameData = groupNameData.Data,
  3533. CurrencyData = _CurrencyData,
  3534. WordTypeData = _WordTypeData,
  3535. ExcelTypeData = _ExcelTypeData,
  3536. CurrencyInit = _currencyInfos
  3537. }));
  3538. }
  3539. catch (Exception ex)
  3540. {
  3541. return Ok(JsonView(false, ex.Message));
  3542. throw;
  3543. }
  3544. }
  3545. /// <summary>
  3546. /// 团组模块 - 出入境费用
  3547. /// 实时汇率 tips
  3548. /// 签证费用 tips
  3549. /// </summary>
  3550. /// <returns></returns>
  3551. [HttpPost]
  3552. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3553. public async Task<IActionResult> GetEnterExitCostCorrelationTips(EnterExitCostInfobyDiIdDto dto)
  3554. {
  3555. var groupInfo = await _sqlSugar.Queryable<Grp_DelegationInfo>().FirstAsync(it => it.Id == dto.DiId && it.IsDel == 0);
  3556. //默认币种显示
  3557. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3558. {
  3559. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 7.5000M },
  3560. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 8.0000M },
  3561. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 9.5000M },
  3562. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0500M },
  3563. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.9500M },
  3564. };
  3565. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3566. List<dynamic> reteInfos = new List<dynamic>();
  3567. if (_currencyRate.Count > 0)
  3568. {
  3569. foreach (var item in _currencyInfos)
  3570. {
  3571. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3572. if (rateInfo != null)
  3573. {
  3574. item.Rate = Convert.ToDecimal((Convert.ToDecimal(rateInfo.FSellPri == null ? 0.00M : rateInfo.FSellPri) / 100.00M).ToString("#0.0000"));
  3575. decimal rate1 = item.Rate;
  3576. rate1 *= 1.03M;
  3577. decimal rate2 = Convert.ToDecimal(rate1.ToString("#0.00")) + 0.01M;
  3578. reteInfos.Add(new
  3579. {
  3580. currCode = item.CurrencyCode,
  3581. currName = item.CurrencyName,
  3582. rate = rate2,
  3583. lastUpdateDt = rateInfo.Date + " " + rateInfo.Time
  3584. });
  3585. }
  3586. }
  3587. }
  3588. var visaData = await _visaFeeInfoRep.EntryAndExitTips(dto.DiId);
  3589. var airData = await _ticketBlackCodeRep.EntryAndExitTips(dto.DiId);
  3590. return Ok(JsonView(true, "查询成功!", new
  3591. {
  3592. //GroupNameData = groupNameData.Data,
  3593. visaData = visaData.Data,
  3594. airData = airData.Data,
  3595. reteInfos = reteInfos
  3596. }));
  3597. }
  3598. /// <summary>
  3599. /// 团组模块 - 出入境费用 - Info
  3600. /// </summary>
  3601. /// <returns></returns>
  3602. [HttpPost]
  3603. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3604. public async Task<IActionResult> GetEnterExitCostInfobyDiId(EnterExitCostInfobyDiIdDto dto)
  3605. {
  3606. try
  3607. {
  3608. var data = await _enterExitCostRep.GetEnterExitCostInfoByDiId(dto);
  3609. if (data.Code != 0)
  3610. {
  3611. return Ok(JsonView(false, data.Msg));
  3612. }
  3613. return Ok(JsonView(true, "查询成功!", data.Data));
  3614. }
  3615. catch (Exception ex)
  3616. {
  3617. return Ok(JsonView(false, ex.Message));
  3618. }
  3619. }
  3620. /// <summary>
  3621. /// 团组模块 - 出入境费用 - Add And Update
  3622. /// </summary>
  3623. /// <returns></returns>
  3624. [HttpPost]
  3625. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3626. public async Task<IActionResult> PostEnterExitCostOperate(EnterExitCostOperateDto dto)
  3627. {
  3628. try
  3629. {
  3630. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  3631. if (data.Code != 0)
  3632. {
  3633. return Ok(JsonView(false, data.Msg));
  3634. }
  3635. //生成默认文件pdf并且通知人员
  3636. var fileView = await GeneralMethod.EnterExitCostDownload(new EnterExitCostDownloadDto()
  3637. {
  3638. DiId = dto.DiId,
  3639. ExportType = 1,
  3640. SubTypeId = 1005
  3641. }, "pdf");
  3642. //发送通知
  3643. string fileUrl = (string)fileView.Data.GetType().GetProperty("Url").GetValue(fileView.Data, null);
  3644. int sign = (int)data.Data.GetType().GetProperty("sign").GetValue(data.Data, null);
  3645. string md5Sign = GeneralMethod.Encrypt($"{sign}&fileName={fileUrl}");
  3646. string url = string.Format("http://oa.pan-american-intl.com:4399/#/Sankunginfo?sign={0}&fileName={1}", sign,fileUrl);
  3647. await AppNoticeLibrary.SendUserMsg_GroupShare_ToGM(dto.DiId, new List<string>() { "208","233","21" }, dto.UserId, url);
  3648. return Ok(JsonView(true, data.Msg, data.Data));
  3649. }
  3650. catch (Exception ex)
  3651. {
  3652. return Ok(JsonView(false, ex.Message));
  3653. }
  3654. }
  3655. /// <summary>
  3656. /// 团组模块 - 出入境费用 - Confirm 费用
  3657. /// </summary>
  3658. /// <returns></returns>
  3659. [HttpPost]
  3660. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3661. public async Task<IActionResult> PostEnterExitCostIsConfirm(ConfirmCostDto dto)
  3662. {
  3663. //TODO:测试完毕需把对应的用户ID更改
  3664. //1、数据表添加字段
  3665. //2、更改字段接口()
  3666. var _view = await _enterExitCostRep.ConfirmCost(dto);
  3667. //3、确认成功 给财务发送消息
  3668. if (_view.Code == 200)
  3669. {
  3670. if (dto.Type == 1)
  3671. {
  3672. int diId = _enterExitCostRep._sqlSugar.Queryable<Grp_EnterExitCost>().Where(x => x.IsDel == 0 && x.Id == dto.Id).First()?.DiId ?? 0;
  3673. await AppNoticeLibrary.SendUserMsg_GroupShare_ToFinance(diId);
  3674. }
  3675. }
  3676. return Ok(_view);
  3677. }
  3678. /// <summary>
  3679. /// 团组模块 - 出入境费用 - File downlaod
  3680. /// </summary>
  3681. /// <param name="dto"></param>
  3682. /// <returns></returns>
  3683. [HttpPost]
  3684. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3685. public async Task<IActionResult> PostEnterExitCostDownload(EnterExitCostDownloadDto dto)
  3686. {
  3687. try
  3688. {
  3689. if (dto.DiId < 1)
  3690. {
  3691. return Ok(JsonView(false, "请传入有效的DiId参数;"));
  3692. }
  3693. if (dto.ExportType < 1)
  3694. {
  3695. return Ok(JsonView(false, "请传入有效的ExportType参数; 1 明细表 2 表格"));
  3696. }
  3697. if (dto.SubTypeId < 1)
  3698. {
  3699. return Ok(JsonView(false, @"请传入有效的SubTypeId参数;
  3700. 1 明细表 --> 1005(默认明细表) 1006(因公出国(境)经费测算明细表) 1007(四川省商务厅出国经费财政先行审核表)
  3701. 2 表格 --> 1008(派员单位出(境)任务和预算审批意见表) 1009(省级单位出(境)经费报销单)
  3702. 3 团组成员名单 1 团组成员名单"));
  3703. }
  3704. var _EnterExitCosts = _sqlSugar.Queryable<Grp_EnterExitCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  3705. var _DayAndCosts = _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  3706. if (_EnterExitCosts == null)
  3707. {
  3708. return Ok(JsonView(false, "该团组未填写出入境费用;"));
  3709. }
  3710. //数据源
  3711. List<Grp_DayAndCost> dac1 = _DayAndCosts.Where(it => it.Type == 1).ToList(); //住宿费
  3712. List<Grp_DayAndCost> dac2 = _DayAndCosts.Where(it => it.Type == 2).ToList(); //伙食费
  3713. List<Grp_DayAndCost> dac3 = _DayAndCosts.Where(it => it.Type == 3).ToList(); //公杂费
  3714. List<Grp_DayAndCost> dac4 = _DayAndCosts.Where(it => it.Type == 4).ToList(); //培训费
  3715. var _CurrDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  3716. var _DelegationInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == dto.DiId).First();
  3717. var DeleClientList = _sqlSugar.Queryable<Grp_TourClientList>()
  3718. .LeftJoin<Crm_DeleClient>((tcl, dc) => tcl.ClientId == dc.Id && dc.IsDel == 0)
  3719. .LeftJoin<Crm_CustomerCompany>((tcl, dc, cc) => dc.CrmCompanyId == cc.Id && dc.IsDel == 0)
  3720. .Where((tcl, dc, cc) => tcl.IsDel == 0 && tcl.DiId == dto.DiId)
  3721. .Select((tcl, dc, cc) => new
  3722. {
  3723. Name = dc.LastName + dc.FirstName,
  3724. Sex = dc.Sex,
  3725. Birthday = dc.BirthDay,
  3726. Company = cc.CompanyFullName,
  3727. Job = dc.Job
  3728. })
  3729. .ToList();
  3730. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  3731. var threeCodes = _sqlSugar.Queryable<Res_ThreeCode>().Where(it => it.IsDel == 0).ToList();
  3732. var placeData = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(it => it.IsDel == 0).ToList();
  3733. var rateDatas = await _EnterExitCosts.CurrencyRemark.SplitExchangeRate();
  3734. _DelegationInfo.VisitCountry = _DelegationInfo.VisitCountry.Replace("|", "、");
  3735. if (dto.ExportType == 1) //明细表
  3736. {
  3737. if (dto.SubTypeId == 1005) //1005(默认明细表)
  3738. {
  3739. //获取模板
  3740. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/出入境费用表模板.docx");
  3741. //载入模板
  3742. Document doc = new Document(tempPath);
  3743. DocumentBuilder builder = new DocumentBuilder(doc);
  3744. //利用键值对存放数据
  3745. Dictionary<string, string> dic = new Dictionary<string, string>();
  3746. decimal stayFeeTotal = _DayAndCosts.Where(it => it.Type == 1).Sum(it => it.SubTotal); // 住宿费
  3747. decimal mealsFeeTotal = _DayAndCosts.Where(it => it.Type == 2).Sum(it => it.SubTotal); // 伙食费费
  3748. decimal miscellaneousFeeTotal = _DayAndCosts.Where(it => it.Type == 3).Sum(it => it.SubTotal); // 公杂费
  3749. decimal tainFeeTotal = _DayAndCosts.Where(it => it.Type == 4).Sum(it => it.SubTotal); // 培训费
  3750. decimal insidePayTotal = _EnterExitCosts.InsidePay;
  3751. string row1_1 = "";
  3752. if (_EnterExitCosts.Visa > 0)
  3753. {
  3754. //insidePayTotal += _EnterExitCosts.Visa;
  3755. row1_1 = $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 人民币/人";
  3756. if (!string.IsNullOrEmpty(_EnterExitCosts.VisaRemark))
  3757. {
  3758. row1_1 += $"\t签证费用描述: : {_EnterExitCosts.VisaRemark} 人民币/人";
  3759. }
  3760. }
  3761. string row1_2 = "";
  3762. if (_EnterExitCosts.YiMiao > 0)
  3763. {
  3764. //insidePayTotal += _EnterExitCosts.YiMiao;
  3765. row1_2 += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")} 人民币/人";
  3766. }
  3767. if (_EnterExitCosts.HeSuan > 0)
  3768. {
  3769. //insidePayTotal += _EnterExitCosts.HeSuan;
  3770. row1_2 += $"核酸检测费:{_EnterExitCosts.HeSuan.ToString("#0.00")} 人民币/人";
  3771. }
  3772. if (_EnterExitCosts.Service > 0)
  3773. {
  3774. //insidePayTotal += _EnterExitCosts.Service;
  3775. row1_2 += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")} 人民币/人";
  3776. }
  3777. string row1_3 = "";
  3778. if (_EnterExitCosts.Safe > 0)
  3779. {
  3780. //insidePayTotal += _EnterExitCosts.Safe;
  3781. row1_3 += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")} 人民币/人";
  3782. }
  3783. if (_EnterExitCosts.Ticket > 0)
  3784. {
  3785. //insidePayTotal += _EnterExitCosts.Ticket;
  3786. row1_3 += $"参展门票:{_EnterExitCosts.Ticket.ToString("#0.00")} 人民币/人";
  3787. }
  3788. string row1 = "";
  3789. if (!string.IsNullOrEmpty(row1_1)) row1 += $"{row1_1}\r\n";
  3790. if (!string.IsNullOrEmpty(row1_2)) row1 += $"{row1_2}\r\n";
  3791. if (!string.IsNullOrEmpty(row1_3)) row1 += $"{row1_3}";
  3792. dic.Add("InsidePay", insidePayTotal.ToString("#0.00"));
  3793. dic.Add("Row1Str", row1);
  3794. dic.Add("OutsideJJ", _EnterExitCosts.OutsideJJPay.ToString("#0.00"));
  3795. dic.Add("OutsaideGW", _EnterExitCosts.OutsaideGWPay.ToString("#0.00"));
  3796. dic.Add("AirJJ", _EnterExitCosts.AirJJ.ToString("#0.00"));
  3797. dic.Add("AirGW", _EnterExitCosts.AirGW.ToString("#0.00"));
  3798. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  3799. dic.Add("SubZS", stayFeeTotal.ToString("#0.00"));
  3800. dic.Add("SubHS", mealsFeeTotal.ToString("#0.00"));
  3801. string miscellaneousFeeTotalStr = miscellaneousFeeTotal.ToString("#0.00");
  3802. dic.Add("SubGZF", miscellaneousFeeTotalStr);
  3803. //dic.Add("SubPX", tainFeeTotal.ToString("#0.00"));
  3804. decimal subJJC = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal + _EnterExitCosts.OutsideJJPay;
  3805. decimal subGWC = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal + _EnterExitCosts.OutsaideGWPay;
  3806. dic.Add("SubJJC", subJJC.ToString("#0.00"));
  3807. dic.Add("SubGWC", subGWC.ToString("#0.00"));
  3808. #region 填充word模板书签内容
  3809. foreach (var key in dic.Keys)
  3810. {
  3811. builder.MoveToBookmark(key);
  3812. builder.Write(dic[key]);
  3813. }
  3814. #endregion
  3815. #region 填充word表格内容
  3816. ////获读取指定表格方法二
  3817. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3818. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  3819. for (int i = 0; i < dac1.Count; i++)
  3820. {
  3821. Grp_DayAndCost dac = dac1[i];
  3822. if (dac == null) continue;
  3823. builder.MoveToCell(0, i, 0, 0);
  3824. builder.Write("第" + dac.Days.ToString() + "晚:");
  3825. builder.MoveToCell(0, i, 1, 0);
  3826. //builder.Write(placeData.Find(it => it.Id == dac.NationalTravelFeeId)?.Country ?? "Unknown");
  3827. //builder.Write(dac.Place == null ? "" : dac.Place);
  3828. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3829. builder.MoveToCell(0, i, 2, 0);
  3830. builder.Write("费用标准:");
  3831. string curr = "";
  3832. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  3833. if (currData != null)
  3834. {
  3835. curr = currData.Name;
  3836. }
  3837. builder.MoveToCell(0, i, 3, 0);
  3838. builder.Write(dac.Cost.ToString("#0.00") + curr);
  3839. builder.MoveToCell(0, i, 4, 0);
  3840. builder.Write("费用小计:");
  3841. builder.MoveToCell(0, i, 5, 0);
  3842. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  3843. }
  3844. //删除多余行
  3845. while (table1.Rows.Count > dac1.Count)
  3846. {
  3847. table1.Rows.RemoveAt(dac1.Count);
  3848. }
  3849. Aspose.Words.Tables.Table table2 = allTables[1] as Aspose.Words.Tables.Table;
  3850. for (int i = 0; i < dac2.Count; i++)
  3851. {
  3852. Grp_DayAndCost dac = dac2[i];
  3853. if (dac == null) continue;
  3854. builder.MoveToCell(1, i, 0, 0);
  3855. builder.Write("第" + dac.Days.ToString() + "天:");
  3856. builder.MoveToCell(1, i, 1, 0);
  3857. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3858. builder.MoveToCell(1, i, 2, 0);
  3859. builder.Write("费用标准:");
  3860. string curr = "";
  3861. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  3862. if (currData != null)
  3863. {
  3864. curr = currData.Name;
  3865. }
  3866. builder.MoveToCell(1, i, 3, 0);
  3867. builder.Write(dac.Cost.ToString("#0.00") + curr);
  3868. builder.MoveToCell(1, i, 4, 0);
  3869. builder.Write("费用小计:");
  3870. builder.MoveToCell(1, i, 5, 0);
  3871. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  3872. }
  3873. //删除多余行
  3874. while (table2.Rows.Count > dac2.Count)
  3875. {
  3876. table2.Rows.RemoveAt(dac2.Count);
  3877. }
  3878. Aspose.Words.Tables.Table table3 = allTables[2] as Aspose.Words.Tables.Table;
  3879. for (int i = 0; i < dac3.Count; i++)
  3880. {
  3881. Grp_DayAndCost dac = dac3[i];
  3882. if (dac == null) continue;
  3883. builder.MoveToCell(2, i, 0, 0);
  3884. builder.Write("第" + dac.Days.ToString() + "天:");
  3885. builder.MoveToCell(2, i, 1, 0);
  3886. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3887. builder.MoveToCell(2, i, 2, 0);
  3888. builder.Write("费用标准:");
  3889. string curr = "";
  3890. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  3891. if (currData != null)
  3892. {
  3893. curr = currData.Name;
  3894. }
  3895. builder.MoveToCell(2, i, 3, 0);
  3896. builder.Write(dac.Cost.ToString("#0.00") + curr);
  3897. builder.MoveToCell(2, i, 4, 0);
  3898. builder.Write("费用小计:");
  3899. builder.MoveToCell(2, i, 5, 0);
  3900. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  3901. }
  3902. //删除多余行
  3903. while (table3.Rows.Count > dac3.Count)
  3904. {
  3905. table3.Rows.RemoveAt(dac3.Count);
  3906. }
  3907. #endregion
  3908. //文件名
  3909. string strFileName = $"{_DelegationInfo.TeamName}出入境费用{Guid.NewGuid().ToString()}.docx";
  3910. AsposeHelper.removewatermark_v2180();
  3911. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  3912. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  3913. return Ok(JsonView(true, "成功", new { Url = url }));
  3914. }
  3915. else if (dto.SubTypeId == 1006)//1006(因公出国(境)经费测算明细表)
  3916. {
  3917. //获取模板
  3918. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/因公出国(境)经费测算明细表.docx");
  3919. //载入模板
  3920. Document doc = new Document(tempPath);
  3921. DocumentBuilder builder = new DocumentBuilder(doc);
  3922. Dictionary<string, string> dic = new Dictionary<string, string>();
  3923. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  3924. {
  3925. List<string> list = new List<string>();
  3926. try
  3927. {
  3928. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  3929. foreach (var item in spilitArr)
  3930. {
  3931. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  3932. var depCode = spDotandEmpty[2].Substring(0, 3);
  3933. var arrCode = spDotandEmpty[2].Substring(3, 3);
  3934. string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  3935. arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  3936. list.Add(depName);
  3937. list.Add(arrName);
  3938. }
  3939. list = list.Distinct().ToList();
  3940. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  3941. }
  3942. catch (Exception)
  3943. {
  3944. dic.Add("ReturnCode", "行程录入不正确!");
  3945. }
  3946. }
  3947. else
  3948. {
  3949. dic.Add("ReturnCode", "未录入行程!");
  3950. }
  3951. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  3952. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  3953. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  3954. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  3955. {
  3956. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  3957. dic.Add("Day", sp.Days.ToString());
  3958. }
  3959. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  3960. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  3961. //var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  3962. //dic.Add("Names", Names);
  3963. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3964. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  3965. decimal dac1totalPrice = 0.00M;
  3966. int accommodationStartIndex = 6, foodandotherStartIndex = 22;
  3967. foreach (var dac in dac1)
  3968. {
  3969. if (dac.SubTotal == 0.00M)
  3970. {
  3971. continue;
  3972. }
  3973. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  3974. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  3975. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  3976. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3977. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  3978. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  3979. builder.Write(currency);//币种
  3980. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  3981. builder.Write(dac.Cost.ToString("#0.00"));//标准
  3982. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  3983. builder.Write("");//人数
  3984. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  3985. builder.Write("");//天数
  3986. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  3987. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  3988. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  3989. decimal rate = 0.00M;
  3990. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  3991. builder.Write(rate.ToString("#0.0000"));//汇率
  3992. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  3993. decimal rbmPrice = dac.SubTotal;
  3994. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  3995. accommodationStartIndex++;
  3996. dac1totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  3997. }
  3998. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  3999. for (int i = 21; i > (dac1.Count == 0 ? 1 : dac1.Count) + 6; i--)
  4000. {
  4001. table1.Rows.RemoveAt(i - 1);
  4002. foodandotherStartIndex--;
  4003. }
  4004. if (dac2.Count == dac3.Count)//国家 币种 金额
  4005. {
  4006. for (int i = 0; i < dac2.Count; i++)
  4007. {
  4008. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4009. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4010. }
  4011. }
  4012. decimal dac2totalPrice = 0.00M;
  4013. foreach (var dac in dac2)
  4014. {
  4015. if (dac.SubTotal == 0)
  4016. {
  4017. continue;
  4018. }
  4019. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  4020. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4021. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  4022. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  4023. builder.Write(currency);//币种
  4024. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  4025. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4026. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  4027. builder.Write("");//人数
  4028. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  4029. builder.Write("");//天数
  4030. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  4031. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4032. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  4033. decimal rate = 0.00M;
  4034. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  4035. builder.Write(rate.ToString("#0.0000"));//汇率
  4036. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  4037. decimal rbmPrice = dac.SubTotal;
  4038. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4039. foodandotherStartIndex++;
  4040. dac2totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  4041. }
  4042. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  4043. for (int i = foodandotherStartIndex + (15 - dac2.Count); i > (dac2.Count == 0 ? 1 : 0) + foodandotherStartIndex; i--)
  4044. {
  4045. table1.Rows.RemoveAt(i - 1);
  4046. }
  4047. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4048. string otherFeeStr = "";
  4049. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  4050. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  4051. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  4052. if (otherFeeStr.Length > 0)
  4053. {
  4054. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  4055. otherFeeStr = $"({otherFeeStr})";
  4056. dic.Add("OtherFeeStr", otherFeeStr);
  4057. }
  4058. //总计
  4059. decimal allPrice = dac1totalPrice + dac2totalPrice + _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket;
  4060. //国际旅费
  4061. string outsideJJ = "";
  4062. string allPriceJJ = "";
  4063. if (_EnterExitCosts.SumJJC == 1)
  4064. {
  4065. outsideJJ = string.Format(@"经济舱:{0} 元/人", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4066. allPriceJJ = string.Format(@"经济舱:{0} 元/人", (allPrice + _EnterExitCosts.OutsideJJPay).ToString("#0.00"));
  4067. }
  4068. string outsideGW = "";
  4069. string allPriceGW = "";
  4070. if (_EnterExitCosts.SumGWC == 1)
  4071. {
  4072. outsideGW = string.Format(@"公务舱:{0} 元/人", _EnterExitCosts.AirGW.ToString("#0.00"));
  4073. allPriceGW = string.Format(@"公务舱:{0} 元/人", (allPrice + _EnterExitCosts.OutsaideGWPay).ToString("#0.00"));
  4074. }
  4075. if (_EnterExitCosts.SumJJC == 1 || _EnterExitCosts.SumGWC == 1)
  4076. {
  4077. string InTravelPriceStr = string.Format(@" ({0} {1})", outsideJJ, outsideGW);
  4078. dic.Add("InTravelPrice", InTravelPriceStr);
  4079. string FinalSumPriceStr = string.Format(@" ({0} {1})", allPriceJJ, allPriceGW);
  4080. dic.Add("FinalSumPrice", FinalSumPriceStr);
  4081. }
  4082. //dic.Add("VisaPay", _EnterExitCosts.Visa.ToString("#0.00"));
  4083. //dic.Add("SafePay", _EnterExitCosts.Safe.ToString("#0.00"));
  4084. //dic.Add("YiMiao", _EnterExitCosts.YiMiao.ToString("#0.00"));
  4085. foreach (var key in dic.Keys)
  4086. {
  4087. builder.MoveToBookmark(key);
  4088. builder.Write(dic[key]);
  4089. }
  4090. //模板文件名
  4091. string strFileName = $"{_DelegationInfo.TeamName}因公出国(境)经费测算明细表.docx";
  4092. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4093. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4094. return Ok(JsonView(true, "成功", new { Url = url }));
  4095. }
  4096. else if (dto.SubTypeId == 1007) //1007(四川省商务厅出国经费财政先行审核表)
  4097. {
  4098. //获取模板
  4099. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/四川省商务厅出国经费财政先行审核表.xls");
  4100. //载入模板
  4101. WorkbookDesigner designer = new WorkbookDesigner();
  4102. designer.Workbook = new Workbook(tempPath);
  4103. Dictionary<string, string> dic = new Dictionary<string, string>();
  4104. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4105. {
  4106. List<string> list = new List<string>();
  4107. try
  4108. {
  4109. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4110. foreach (var item in spilitArr)
  4111. {
  4112. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4113. var depCode = spDotandEmpty[2].Substring(0, 3);
  4114. var arrCode = spDotandEmpty[2].Substring(3, 3);
  4115. string depName = threeCodes.Find(it => it.Three.Equals(depCode))?.City ?? "Unknwon",
  4116. arrName = threeCodes.Find(it => it.Three.Equals(arrCode))?.City ?? "Unknown";
  4117. list.Add(depName);
  4118. list.Add(arrName);
  4119. }
  4120. list = list.Distinct().ToList();
  4121. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4122. }
  4123. catch (Exception)
  4124. {
  4125. dic.Add("ReturnCode", "行程录入不正确!");
  4126. }
  4127. }
  4128. else
  4129. {
  4130. dic.Add("ReturnCode", "未录入行程!");
  4131. }
  4132. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4133. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4134. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4135. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4136. {
  4137. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4138. dic.Add("Day", sp.Days.ToString());
  4139. }
  4140. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4141. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4142. var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  4143. designer.SetDataSource("ClientUnit", _DelegationInfo.ClientUnit);
  4144. designer.SetDataSource("VisitCountry", _DelegationInfo.VisitCountry);
  4145. designer.SetDataSource("Group", _DelegationInfo.TeamName);
  4146. designer.SetDataSource("ClientUnitTitle", _DelegationInfo.TeamName);
  4147. designer.SetDataSource("Name", Names);
  4148. designer.SetDataSource("VisitStartDate", dic["VisitStartDate"] + "-" + dic["VisitEndDate"]);
  4149. designer.SetDataSource("Day", dic["Day"] + "天");
  4150. designer.SetDataSource("ReturnCode", dic["ReturnCode"]);
  4151. designer.SetDataSource("ReturnCodeAir", dic["ReturnCodeAir"]);
  4152. int startIndex = 10;
  4153. const int startIndexcopy = 10;
  4154. if (dac2.Count == dac3.Count)//国家 币种 金额
  4155. {
  4156. for (int i = 0; i < dac2.Count; i++)
  4157. {
  4158. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4159. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4160. }
  4161. }
  4162. DataTable dtdac1 = new DataTable();
  4163. List<string> place = new List<string>();
  4164. dtdac1.Columns.AddRange(new DataColumn[] {
  4165. new DataColumn(){ ColumnName = "city"},
  4166. new DataColumn(){ ColumnName = "curr"},
  4167. new DataColumn(){ ColumnName = "criterion"},
  4168. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  4169. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  4170. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  4171. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  4172. new DataColumn(){ ColumnName = "costRMB", DataType = typeof(decimal) },
  4173. });
  4174. DataTable dtdac2 = new DataTable();
  4175. dtdac2.Columns.AddRange(new DataColumn[] {
  4176. new DataColumn(){ ColumnName = "city"},
  4177. new DataColumn(){ ColumnName = "curr"},
  4178. new DataColumn(){ ColumnName = "criterion"},
  4179. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  4180. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  4181. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  4182. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  4183. new DataColumn(){ ColumnName = "costRMB",DataType = typeof(decimal)},
  4184. });
  4185. dtdac1.TableName = "tb1";
  4186. dtdac2.TableName = "tb2";
  4187. decimal dac1totalPrice = 0.00M, dac2totalPrice = 0.00M;
  4188. foreach (var item in dac1)
  4189. {
  4190. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  4191. if (place.Contains(item.Place))
  4192. {
  4193. continue;
  4194. }
  4195. DataRow row = dtdac1.NewRow();
  4196. row["city"] = item.Place;
  4197. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  4198. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4199. row["curr"] = currency;
  4200. row["rate"] = rate.ToString("#0.0000");
  4201. row["criterion"] = item.Cost.ToString("#0.00");
  4202. row["number"] = 1;
  4203. row["day"] = dac1.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  4204. //row["costRMB"] = rbmPrice;
  4205. dtdac1.Rows.Add(row);
  4206. place.Add(item.Place);
  4207. }
  4208. place = new List<string>();
  4209. foreach (var item in dac2)
  4210. {
  4211. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  4212. if (place.Contains(item.Place))
  4213. {
  4214. continue;
  4215. }
  4216. DataRow row = dtdac2.NewRow();
  4217. row["city"] = item.Place;
  4218. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  4219. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4220. row["curr"] = currency;
  4221. row["rate"] = rate.ToString("#0.0000");
  4222. row["criterion"] = item.Cost.ToString("#0.00");
  4223. row["number"] = 1;
  4224. row["day"] = dac2.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  4225. //row["cost"] = item.SubTotal;
  4226. //row["costRMB"] = rbmPrice;
  4227. dtdac2.Rows.Add(row);
  4228. place.Add(item.Place);
  4229. //dac2totalPrice += rbmPrice;
  4230. }
  4231. dac1totalPrice = dac1.Sum(it => it.SubTotal);
  4232. dac2totalPrice = dac2.Sum(it => it.SubTotal);
  4233. designer.SetDataSource("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4234. designer.SetDataSource("dac2totalPrice", dac2totalPrice);
  4235. designer.SetDataSource("cityTranffic", @$"其中:国外城市间机票费: {_EnterExitCosts.CityTranffic.ToString("#0.00")} 元");
  4236. designer.SetDataSource("sumCityTranffic", @$"{_EnterExitCosts.CityTranffic.ToString("#0.00")} ");
  4237. string cell4Str = $" 4.国际旅费:经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 元/人,公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")} 元/人";
  4238. string cellStr = $" 5.其他费用(";
  4239. if (_EnterExitCosts.Visa > 0) cellStr += $"签证费:{_EnterExitCosts.Visa.ToString("#0.00")}元,";
  4240. if (_EnterExitCosts.YiMiao > 0) cellStr += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")}元,";
  4241. if (_EnterExitCosts.HeSuan > 0) cellStr += $"核酸费:{_EnterExitCosts.HeSuan.ToString("#0.00")}元,";
  4242. if (_EnterExitCosts.Safe > 0) cellStr += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")}元,";
  4243. if (_EnterExitCosts.Ticket > 0) cellStr += $"参展门票费:{_EnterExitCosts.Ticket.ToString("#0.00")}元,";
  4244. if (_EnterExitCosts.Service > 0) cellStr += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")}元,";
  4245. if (cellStr.Length > 8)
  4246. {
  4247. cellStr = cellStr.Substring(0, cellStr.Length - 1);
  4248. }
  4249. cellStr += ")";
  4250. decimal otherFee = _EnterExitCosts.Visa + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.Service;
  4251. decimal s = dac1totalPrice + dac2totalPrice + _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay + otherFee;
  4252. decimal pxFee = dac4.Sum(it => it.Cost);
  4253. decimal glvFee = _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay;
  4254. string celllastStr1 = "";
  4255. if (dac1totalPrice > 0) celllastStr1 += $"住宿费 {dac1totalPrice.ToString("#0.00")} 元";
  4256. if (dac2totalPrice > 0) celllastStr1 += $",伙食费和公杂费 {dac2totalPrice.ToString("#0.00")} 元";
  4257. if (pxFee > 0) celllastStr1 += $",培训费 {pxFee.ToString("#0.00")} 元";
  4258. celllastStr1 += $",国际旅费 元";
  4259. if (otherFee > 0) celllastStr1 += $",其他费用 {otherFee.ToString("#0.00")} 元";
  4260. string celllastStr = $" 经审核,{celllastStr1},本次出国经费预算合计为 元。其中:市本级安排 。";
  4261. designer.SetDataSource("cell4Str", cell4Str);
  4262. designer.SetDataSource("cellStr", cellStr);
  4263. designer.SetDataSource("cellSum", (_EnterExitCosts.Visa + _EnterExitCosts.Safe).ToString("#0.00"));
  4264. designer.SetDataSource("cellSum4", (_EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay).ToString("#0.00"));
  4265. designer.SetDataSource("celllastStr", celllastStr);
  4266. Workbook wb = designer.Workbook;
  4267. var sheet = wb.Worksheets[0];
  4268. //绑定datatable数据集
  4269. designer.SetDataSource(dtdac1);
  4270. designer.SetDataSource(dtdac2);
  4271. designer.Process();
  4272. var rowStart = dtdac1.Rows.Count;
  4273. while (rowStart > 0)
  4274. {
  4275. sheet.Cells[startIndex, 8].Formula = $"=G{startIndex + 1} * H{startIndex + 1}";
  4276. sheet.Cells[startIndex, 6].Formula = $"=E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4277. startIndex++;
  4278. rowStart--;
  4279. }
  4280. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + 1}: I{startIndex})";
  4281. startIndex += 1; //总计行
  4282. rowStart = dtdac2.Rows.Count;
  4283. while (rowStart > 0)
  4284. {
  4285. sheet.Cells[startIndex, 8].Formula = $"= G{startIndex + 1} * H{startIndex + 1}";
  4286. sheet.Cells[startIndex, 6].Formula = $"= E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4287. startIndex++;
  4288. rowStart--;
  4289. }
  4290. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + dtdac1.Rows.Count + 2}: I{startIndex})";
  4291. wb.CalculateFormula(true);
  4292. //模板文件名
  4293. string strFileName = $"{_DelegationInfo.TeamName}-四川省商务厅出国经费财政先行审核表{DateTime.Now.ToString("yyyyMMddHHmmss")}.xls"; ;//$".xls";
  4294. designer.Workbook.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4295. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4296. return Ok(JsonView(true, "成功", new { Url = url }));
  4297. }
  4298. else if (dto.SubTypeId == 1066) //成都市因公临时出国任务和预算审批意见表(外专培训团专用)
  4299. {
  4300. //获取模板
  4301. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/成都市因公临时出国任务和预算审批意见表.docx");
  4302. //载入模板
  4303. Document doc = new Document(tempPath);
  4304. DocumentBuilder builder = new DocumentBuilder(doc);
  4305. Dictionary<string, string> dic = new Dictionary<string, string>();
  4306. dic.Add("GroupName", _DelegationInfo.TeamName);
  4307. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4308. string missionLeader = ""; //团负责人默认接团客户名单第一个人
  4309. string missionLeaderJob = "";//负责人job
  4310. int groupNumber = 0; //团人数
  4311. if (DeleClientList.Count > 0)
  4312. {
  4313. missionLeader = DeleClientList[0]?.Name ?? "";
  4314. missionLeaderJob = DeleClientList[0]?.Job ?? "";
  4315. }
  4316. dic.Add("MissionLeader", missionLeader); //团负责人
  4317. dic.Add("MissionLeaderJob", missionLeaderJob); //团负责人job
  4318. dic.Add("GroupNumber", _DelegationInfo.VisitPNumber.ToString()); //团人数
  4319. #region MyRegion
  4320. //if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4321. //{
  4322. // List<string> list = new List<string>();
  4323. // try
  4324. // {
  4325. // var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4326. // foreach (var item in spilitArr)
  4327. // {
  4328. // var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4329. // var depCode = spDotandEmpty[2].Substring(0, 3);
  4330. // var arrCode = spDotandEmpty[2].Substring(3, 3);
  4331. // string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  4332. // arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  4333. // list.Add(depName);
  4334. // list.Add(arrName);
  4335. // }
  4336. // list = list.Distinct().ToList();
  4337. // dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4338. // }
  4339. // catch (Exception)
  4340. // {
  4341. // dic.Add("ReturnCode", "行程录入不正确!");
  4342. // }
  4343. //}
  4344. //else
  4345. //{
  4346. // dic.Add("ReturnCode", "未录入行程!");
  4347. //}
  4348. List<string> countrys = _groupRepository.GroupSplitCountry(_DelegationInfo.VisitCountry);
  4349. dic.Add("ReturnCode", string.Join("、", countrys));
  4350. #endregion
  4351. //dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4352. //dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4353. //dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4354. //if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4355. //{
  4356. // TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4357. // dic.Add("Day", sp.Days.ToString());
  4358. //}
  4359. dic.Add("Day", _DelegationInfo.VisitDays.ToString());
  4360. dic.Add("CultivateDay", dac4.Count.ToString()); //培训天数
  4361. // dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4362. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4363. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4364. //培训人员名单
  4365. int cultivateRowIndex = 7;
  4366. foreach (var item in DeleClientList)
  4367. {
  4368. builder.MoveToCell(0, cultivateRowIndex, 0, 0);
  4369. builder.Write(item.Name);
  4370. builder.MoveToCell(0, cultivateRowIndex, 1, 0);
  4371. builder.Write(item.Sex == 0 ? "男" : item.Sex == 1 ? "女" : "");
  4372. builder.MoveToCell(0, cultivateRowIndex, 2, 0);
  4373. string birthDay = "";
  4374. if (item.Birthday != null)
  4375. {
  4376. DateTime dt = Convert.ToDateTime(item.Birthday);
  4377. birthDay = $"{dt.Year}.{dt.Month}";
  4378. }
  4379. builder.Write(birthDay);
  4380. builder.MoveToCell(0, cultivateRowIndex, 3, 0);
  4381. builder.Write(item.Company);
  4382. builder.MoveToCell(0, cultivateRowIndex, 4, 0);
  4383. builder.Write(item.Job);
  4384. cultivateRowIndex++;
  4385. }
  4386. //删除多余行
  4387. //cultivateRowIndex -= 2;
  4388. int delRows = 10 + 7 - cultivateRowIndex;
  4389. if (delRows > 0)
  4390. {
  4391. for (int i = 0; i < delRows; i++)
  4392. {
  4393. table1.Rows.RemoveAt(cultivateRowIndex);
  4394. //cultivateRowIndex++;
  4395. }
  4396. }
  4397. decimal hotelFeeTotal = dac1.Sum(it => it.SubTotal);//住宿费
  4398. dic.Add("HotelFeeTotal", hotelFeeTotal.ToString("#0.00"));
  4399. decimal mealsFeeTotal = dac2.Sum(it => it.SubTotal);//伙食费
  4400. dic.Add("MealsFeeTotal", mealsFeeTotal.ToString("#0.00"));
  4401. decimal miscellaneousFeeTotal = dac3.Sum(it => it.SubTotal);//公杂费
  4402. dic.Add("MiscellaneousFeeTotal", miscellaneousFeeTotal.ToString("#0.00"));
  4403. decimal trainingFeeTotal = dac4.Sum(it => it.SubTotal);//培训费
  4404. dic.Add("TrainingFeeTotal", trainingFeeTotal.ToString("#0.00"));
  4405. decimal cityTranfficFeeToatal = _EnterExitCosts.CityTranffic; //城市区间交通费
  4406. dic.Add("CityTranfficFeeToatal", cityTranfficFeeToatal.ToString("#0.00"));//
  4407. //其他费用
  4408. decimal otherFeeTotal = _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Service;
  4409. dic.Add("OtherFeeTotal", otherFeeTotal.ToString("#0.00"));
  4410. //其他费用合计
  4411. decimal _otherFeeTotal = hotelFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + trainingFeeTotal + cityTranfficFeeToatal + otherFeeTotal;
  4412. decimal _jjcFeeToatal = _EnterExitCosts.AirJJ + _otherFeeTotal; //经济舱
  4413. decimal _gwcFeeToatal = _EnterExitCosts.AirGW + _otherFeeTotal; //公务舱
  4414. //公务舱合计
  4415. //国际旅费
  4416. string outsideJJ = "";
  4417. string allPriceJJ = "";
  4418. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 0)
  4419. {
  4420. dic.Add("AirFeeTotal", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4421. dic.Add("FeeTotal", _jjcFeeToatal.ToString("#0.00"));
  4422. }
  4423. if (_EnterExitCosts.SumGWC == 1 && _EnterExitCosts.SumJJC == 0)
  4424. {
  4425. dic.Add("AirFeeTotal", _EnterExitCosts.AirGW.ToString("#0.00"));
  4426. dic.Add("FeeTotal", _gwcFeeToatal.ToString("#0.00"));
  4427. }
  4428. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 1)
  4429. {
  4430. string airFeeTotalStr = string.Format(@$"经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")}");
  4431. dic.Add("AirFeeTotal", airFeeTotalStr);
  4432. string feeTotalStr = string.Format(@$"经济舱:{_jjcFeeToatal.ToString("#0.00")} 公务舱:{_gwcFeeToatal.ToString("#0.00")}");
  4433. dic.Add("FeeTotal", feeTotalStr);
  4434. }
  4435. foreach (var key in dic.Keys)
  4436. {
  4437. builder.MoveToBookmark(key);
  4438. builder.Write(dic[key]);
  4439. }
  4440. //模板文件名
  4441. string strFileName = $"{_DelegationInfo.TeamName}-成都市因公临时出国任务和预算审批意见表(外专培训团专用).docx";
  4442. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4443. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4444. return Ok(JsonView(true, "成功", new { Url = url }));
  4445. }
  4446. }
  4447. else if (dto.ExportType == 2) //表格
  4448. {
  4449. //利用键值对存放数据
  4450. Dictionary<string, string> dic = new Dictionary<string, string>();
  4451. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4452. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4453. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4454. dic.Add("Day", sp.Days.ToString());
  4455. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4456. if (dto.SubTypeId == 1008) //1008(派员单位出(境)任务和预算审批意见表)
  4457. {
  4458. //获取模板
  4459. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/派员单位出(境)任务和预算审批意见表.docx");
  4460. //载入模板
  4461. Document doc = new Document(tempPath);
  4462. DocumentBuilder builder = new DocumentBuilder(doc);
  4463. dic.Add("TeamName", _DelegationInfo.TeamName);
  4464. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4465. //dic.Add("TellPhone", _DelegationInfo.TellPhone);
  4466. string missionLeaderName = "",
  4467. missionLeaderJob = "";
  4468. if (DeleClientList.Count > 0)
  4469. {
  4470. missionLeaderName = DeleClientList[0].Name;
  4471. missionLeaderJob = DeleClientList[0].Job;
  4472. }
  4473. dic.Add("MissionLeaderName", missionLeaderName);
  4474. dic.Add("MissionLeaderJob", missionLeaderJob);
  4475. dic.Add("VisitPNumber", _DelegationInfo.VisitPNumber.ToString());
  4476. dic.Add("VisitPurpose", _DelegationInfo.VisitPurpose);
  4477. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4478. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4479. int rowCount = 10;//总人数行
  4480. int startRowIndex = 7; //起始行
  4481. for (int i = 0; i < DeleClientList.Count; i++)
  4482. {
  4483. builder.MoveToCell(0, startRowIndex, 0, 0);
  4484. builder.Write(DeleClientList[i].Name); //出国人员姓名
  4485. builder.MoveToCell(0, startRowIndex, 1, 0);
  4486. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  4487. builder.Write(sex);//性别
  4488. builder.MoveToCell(0, startRowIndex, 2, 0);
  4489. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));//出生年月
  4490. builder.MoveToCell(0, startRowIndex, 3, 0);
  4491. builder.Write(DeleClientList[i].Company);//工作单位
  4492. builder.MoveToCell(0, startRowIndex, 4, 0);
  4493. builder.Write(DeleClientList[i].Job);//职务及级别
  4494. builder.MoveToCell(0, startRowIndex, 5, 0);
  4495. builder.Write("");//人员属性
  4496. builder.MoveToCell(0, startRowIndex, 6, 0);
  4497. builder.Write("");//上次出国时间
  4498. startRowIndex++;
  4499. }
  4500. int nullRow = rowCount - DeleClientList.Count;//空行
  4501. for (int i = 0; i < nullRow; i++)
  4502. {
  4503. table1.Rows.Remove(table1.Rows[startRowIndex]);
  4504. }
  4505. foreach (var key in dic.Keys)
  4506. {
  4507. builder.MoveToBookmark(key);
  4508. builder.Write(dic[key]);
  4509. }
  4510. //模板文件名
  4511. string strFileName = $"派员单位出(境)任务和预算审批意见表.docx";
  4512. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4513. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4514. return Ok(JsonView(true, "成功", new { Url = url }));
  4515. }
  4516. else if (dto.SubTypeId == 1009)//1009(省级单位出(境)经费报销单)
  4517. {
  4518. //获取模板
  4519. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/省级单位出(境)经费报销单.docx");
  4520. //载入模板
  4521. Document doc = new Document(tempPath);
  4522. DocumentBuilder builder = new DocumentBuilder(doc);
  4523. dic.Add("GroupClient", _DelegationInfo.ClientUnit);
  4524. var Names = string.Join("、", DeleClientList.Select(x => x.Name)).TrimEnd('、');
  4525. dic.Add("Names", Names);
  4526. int accommodationRows = 12, foodandotherRows = 12;
  4527. var Dac1currCn = dac1.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4528. var Dac2currCn = dac2.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4529. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4530. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4531. int accommodationStartIndex = 6;
  4532. decimal dac1totalPrice = 0.00M;
  4533. foreach (var dac in dac1)
  4534. {
  4535. if (dac.SubTotal == 0)
  4536. {
  4537. continue;
  4538. }
  4539. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  4540. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  4541. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4542. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  4543. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  4544. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  4545. builder.Write(currency);//币种
  4546. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  4547. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4548. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  4549. builder.Write("");//人数
  4550. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  4551. builder.Write("");//天数
  4552. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  4553. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4554. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  4555. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4556. builder.Write(rate.ToString("#0.0000"));//汇率
  4557. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4558. decimal rbmPrice = rate * dac.SubTotal;
  4559. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4560. accommodationStartIndex++;
  4561. dac1totalPrice += rbmPrice;
  4562. }
  4563. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4564. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4565. builder.Write("小计");
  4566. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4567. builder.Write(dac1totalPrice.ToString("#0.00"));
  4568. accommodationStartIndex++;
  4569. int nullRow = accommodationRows - dac1.Count;
  4570. //删除空行
  4571. //if (nullRow > 0)
  4572. //{
  4573. // int rowIndex = accommodationStartIndex;
  4574. // for (int i = 0; i < nullRow; i++)
  4575. // {
  4576. // Row row = table1.Rows[rowIndex];
  4577. // row.Remove();
  4578. // rowIndex++;
  4579. // }
  4580. //}
  4581. if (dac2.Count == dac3.Count)//国家 币种 金额
  4582. {
  4583. for (int i = 0; i < dac2.Count; i++)
  4584. {
  4585. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4586. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4587. }
  4588. }
  4589. int foodandotherStartIndex = 19;//
  4590. decimal dac2totalPrice = 0.00M;
  4591. foreach (var dac in dac2)
  4592. {
  4593. if (dac.SubTotal == 0)
  4594. {
  4595. continue;
  4596. }
  4597. //foodandotherStartIndex = 12;
  4598. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  4599. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  4600. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  4601. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  4602. builder.Write(currency);//币种
  4603. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  4604. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4605. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  4606. builder.Write("");//人数
  4607. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  4608. builder.Write("");//天数
  4609. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  4610. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4611. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  4612. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4613. builder.Write(rate.ToString("#0.0000"));//汇率
  4614. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  4615. decimal rbmPrice = rate * dac.SubTotal;
  4616. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4617. foodandotherStartIndex++;
  4618. dac2totalPrice += rbmPrice;
  4619. }
  4620. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  4621. //删除空行
  4622. if (dac2.Count < foodandotherRows)
  4623. {
  4624. //int nullRow = accommodationRows - dac2.Count;
  4625. //while (table2.Rows.Count > dac2.Count)
  4626. //{
  4627. // table2.Rows.RemoveAt(dac2.Count);
  4628. //}
  4629. }
  4630. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4631. string otherFeeStr = "";
  4632. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  4633. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  4634. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  4635. if (otherFeeStr.Length > 0)
  4636. {
  4637. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  4638. otherFeeStr = $"({otherFeeStr})";
  4639. dic.Add("OtherFeeStr", otherFeeStr);
  4640. }
  4641. foreach (var key in dic.Keys)
  4642. {
  4643. builder.MoveToBookmark(key);
  4644. builder.Write(dic[key]);
  4645. }
  4646. //模板文件名
  4647. string strFileName = $"省级单位出(境)经费报销单.docx";
  4648. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4649. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4650. return Ok(JsonView(true, "成功", new { Url = url }));
  4651. }
  4652. }
  4653. else if (dto.ExportType == 3)
  4654. {
  4655. if (dto.SubTypeId == 1) //团组成员名单
  4656. {
  4657. if (DeleClientList.Count < 1)
  4658. {
  4659. return Ok(JsonView(false, "团组成员暂未录入!!!"));
  4660. }
  4661. //获取模板
  4662. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/dwon_团组人员列表模板.doc");
  4663. //载入模板
  4664. Document doc = new Document(tempPath);
  4665. DocumentBuilder builder = new DocumentBuilder(doc);
  4666. //获取word里所有表格
  4667. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4668. //获取所填表格的序数
  4669. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  4670. var rowStart = tableOne.Rows[0]; //获取第1行
  4671. //循环赋值
  4672. for (int i = 0; i < DeleClientList.Count; i++)
  4673. {
  4674. builder.MoveToCell(0, i + 1, 0, 0);
  4675. builder.Write(DeleClientList[i].Name);
  4676. builder.MoveToCell(0, i + 1, 1, 0);
  4677. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  4678. builder.Write(sex);
  4679. builder.MoveToCell(0, i + 1, 2, 0);
  4680. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));
  4681. builder.MoveToCell(0, i + 1, 3, 0);
  4682. builder.Write(DeleClientList[i].Company);
  4683. builder.MoveToCell(0, i + 1, 4, 0);
  4684. builder.Write(DeleClientList[i].Job);
  4685. }
  4686. //删除多余行
  4687. while (tableOne.Rows.Count > DeleClientList.Count + 1)
  4688. {
  4689. tableOne.Rows.RemoveAt(DeleClientList.Count + 1);
  4690. }
  4691. string strFileName = $"{_DelegationInfo.TeamName}组团人员名单({DateTime.Now.ToString("yyyyMMddHHmmss")}).doc";
  4692. //C:/Server/File/OA2023/Office/Word/EnterExitCost/File/
  4693. //C:\Server\File\OA2023\Office\Word\EnterExitCost\File\
  4694. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4695. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4696. return Ok(JsonView(true, "成功", new { Url = url }));
  4697. }
  4698. }
  4699. return Ok(JsonView(false, "操作失败!"));
  4700. }
  4701. catch (Exception ex)
  4702. {
  4703. return Ok(JsonView(false, ex.Message));
  4704. }
  4705. }
  4706. /// <summary>
  4707. /// 获取三公费用标准city
  4708. /// </summary>
  4709. /// <param name="placeData"></param>
  4710. /// <param name="nationalTravelFeeId"></param>
  4711. /// <returns></returns>
  4712. private string GetEnterExitCostExportCity(List<Grp_NationalTravelFee> placeData, int nationalTravelFeeId)
  4713. {
  4714. string _city = string.Empty;
  4715. if (placeData.Count < 1) return _city;
  4716. var data = placeData.Find(it => it.Id == nationalTravelFeeId);
  4717. if (data == null) return _city;
  4718. string country = data.Country;
  4719. string city = data.City;
  4720. if (city.Contains("其他城市") || city.Contains("所有城市")) _city = $"{country}-{city}";
  4721. else _city = city;
  4722. return _city;
  4723. }
  4724. /// <summary>
  4725. /// 团组模块 - 出入境费用 - 明细表导出
  4726. /// </summary>
  4727. /// <returns></returns>
  4728. [HttpPost]
  4729. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4730. public async Task<IActionResult> PostEnterExitCostExportDetailsList(EnterExitCostOperateDto dto)
  4731. {
  4732. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  4733. if (data.Code != 0)
  4734. {
  4735. return Ok(JsonView(false, data.Msg));
  4736. }
  4737. return Ok(JsonView(true, data.Msg, data.Data));
  4738. }
  4739. /// <summary>
  4740. /// 团组模块 - 出入境费用 - 一键清空
  4741. /// </summary>
  4742. /// <returns></returns>
  4743. [HttpPost]
  4744. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4745. public async Task<IActionResult> PostEnterExitCostOneClickClear(EnterExitCostOneClickClearDto dto)
  4746. {
  4747. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数;"));
  4748. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数;"));
  4749. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数;"));
  4750. var _view = await _enterExitCostRep._OneClickClear(dto.Id, dto.DiId, dto.UserId);
  4751. if (_view.Code == 0)
  4752. {
  4753. return Ok(JsonView(true, "操作成功"));
  4754. }
  4755. return Ok(JsonView(false, "操作失败"));
  4756. }
  4757. /// <summary>
  4758. /// 团组模块 - 出入境费用 - 子项删除
  4759. /// </summary>
  4760. /// <returns></returns>
  4761. [HttpPost]
  4762. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4763. public async Task<IActionResult> PostEnterExitCostSubItemDel(EnterExitCostSubItemDelDto dto)
  4764. {
  4765. try
  4766. {
  4767. var data = await _enterExitCostRep.PostEnterExitCostSubItemDel(dto);
  4768. if (data.Code != 0)
  4769. {
  4770. return Ok(JsonView(false, data.Msg));
  4771. }
  4772. return Ok(JsonView(true, "操作成功!", data.Data));
  4773. }
  4774. catch (Exception ex)
  4775. {
  4776. return Ok(JsonView(false, ex.Message));
  4777. }
  4778. }
  4779. /// <summary>
  4780. /// 团组模块 - 出入境国家费用标准 List
  4781. /// </summary>
  4782. /// <returns></returns>
  4783. [HttpPost]
  4784. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4785. public async Task<IActionResult> GetNationalTravelFeeData(PortDtoBase dto)
  4786. {
  4787. try
  4788. {
  4789. Stopwatch sw = new Stopwatch();
  4790. sw.Start();
  4791. string nationalTravelFeeSql = string.Format(@"Select ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.* From Grp_NationalTravelFee gntf
  4792. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  4793. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  4794. Where gntf.Isdel = 0");
  4795. var nationalTravelFeeData = _sqlSugar.SqlQueryable<NationalTravelFeeInfoView>(nationalTravelFeeSql).ToList();
  4796. //var nationalTravel = nationalTravelFeeData.GroupBy(it => it.Country).Select(it1 => it1.FirstOrDefault());
  4797. //List<dynamic> nationalTravelFeeData1 = new List<dynamic>();
  4798. //foreach (var item in nationalTravel)
  4799. //{
  4800. // var cityData = nationalTravelFeeData.Where(it => it.Country == item.Country).ToList();
  4801. // var otherData = cityData.Where(it => it.City.Contains("其他城市")).FirstOrDefault();
  4802. // if (otherData != null)
  4803. // {
  4804. // cityData.Remove(otherData);
  4805. // cityData.Add(otherData);
  4806. // }
  4807. // nationalTravelFeeData1.Add(new
  4808. // {
  4809. // Country = item.Country,
  4810. // CityData = cityData
  4811. // });
  4812. //}
  4813. sw.Stop();
  4814. return Ok(JsonView(true, "查询成功!耗时:" + sw.ElapsedMilliseconds + "ms", nationalTravelFeeData));
  4815. }
  4816. catch (Exception ex)
  4817. {
  4818. return Ok(JsonView(false, ex.Message));
  4819. throw;
  4820. }
  4821. }
  4822. /// <summary>
  4823. /// 团组模块 - 出入境国家费用标准 Page List Data Source
  4824. /// </summary>
  4825. /// <returns></returns>
  4826. [HttpPost]
  4827. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4828. public async Task<IActionResult> GetNationalTravelFeePageDataSource()
  4829. {
  4830. string sql = string.Format(@"Select * From Grp_NationalTravelFee Where Isdel = 0 ");
  4831. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<Grp_NationalTravelFee>(sql).ToListAsync();
  4832. List<string> countryData = new List<string>();
  4833. countryData.AddRange(nationalTravelFeeData.Select(it => it.Country).ToList());
  4834. countryData = countryData.Distinct().ToList();
  4835. List<dynamic> dataSource = new List<dynamic>();
  4836. foreach (var item in countryData)
  4837. {
  4838. List<string> cityData1 = new List<string>();
  4839. cityData1 = nationalTravelFeeData.Where(it => it.Country == item).Select(it => it.City).ToList();
  4840. var countryData2 = new
  4841. {
  4842. CountryName = item,
  4843. CityData = cityData1
  4844. };
  4845. dataSource.Add(countryData2);
  4846. }
  4847. return Ok(JsonView(true, "查询成功!", dataSource));
  4848. }
  4849. /// <summary>
  4850. /// 团组模块 - 出入境国家费用标准 Page List
  4851. /// </summary>
  4852. /// <returns></returns>
  4853. [HttpPost]
  4854. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4855. public async Task<IActionResult> PostNationalTravelFeePage(NationalTravelFeePageDto dto)
  4856. {
  4857. int portId = dto.PortType;
  4858. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  4859. if (dto.PageIndex == 0) return Ok(JsonView(false, "当前页码数不能为0!"));
  4860. if (dto.PageSize == 0) return Ok(JsonView(false, "每页条数不能0!"));
  4861. string whereSql = string.Empty;
  4862. if (!string.IsNullOrEmpty(dto.Country))
  4863. {
  4864. whereSql += string.Format(@" And gntf.Country ='{0}'", dto.Country);
  4865. }
  4866. if (!string.IsNullOrEmpty(dto.City))
  4867. {
  4868. whereSql += string.Format(@" And gntf.City='{0}'", dto.City);
  4869. }
  4870. string pageSql = string.Format(@"Select * From (
  4871. Select row_number() over(order by gntf.LastUpdateTime Desc) as RowNumber,
  4872. ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.*
  4873. From Grp_NationalTravelFee gntf
  4874. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  4875. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  4876. Where gntf.Isdel = 0 {0} ) temp ", whereSql);
  4877. RefAsync<int> total = 0;
  4878. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeePageInfoView>(pageSql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  4879. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData, (int)total));
  4880. }
  4881. /// <summary>
  4882. /// 团组模块 - 出入境国家费用标准 根据城市查询
  4883. /// </summary>
  4884. /// <returns></returns>
  4885. [HttpPost]
  4886. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4887. public async Task<IActionResult> PostNationalTravelFeeInfoByCountryAndCity(NationalTravelFeeByCountryAndCityDto dto)
  4888. {
  4889. if (dto == null) return Ok(JsonView(false, "请传入参数!"));
  4890. int portId = dto.PortType;
  4891. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  4892. string whereSql = string.Empty;
  4893. if (!string.IsNullOrEmpty(dto.Country))
  4894. {
  4895. whereSql = string.Format(@"And Country = '{0}' ", dto.Country);
  4896. }
  4897. if (!string.IsNullOrEmpty(dto.City))
  4898. {
  4899. whereSql = string.Format(@"And City = '{0}' ", dto.City);
  4900. }
  4901. string sql = string.Format(@"Select gntf.Country,gntf.City,gntf.Currency,ssd.Name as CurrencyCode,
  4902. ssd.Remark as CurrencyName,gntf.RoomCost,gntf.FoodCost,gntf.PublicCost,
  4903. gntf.LastUpdateUserId,su.CnName as LastUpdateUserName,gntf.LastUpdateTime
  4904. From Grp_NationalTravelFee gntf
  4905. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  4906. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  4907. Where gntf.Isdel = 0 {0} ", whereSql);
  4908. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeeInfoByCountryAndCityView>(sql).FirstAsync();
  4909. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData));
  4910. }
  4911. /// <summary>
  4912. /// 团组模块 - 出入境国家费用标准 - Add Or Update
  4913. /// </summary>
  4914. /// <returns></returns>
  4915. [HttpPost]
  4916. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4917. public async Task<IActionResult> PostNationalTravelFeeOperate(NationalTravelFeeOperateDto dto)
  4918. {
  4919. try
  4920. {
  4921. var data = await _enterExitCostRep.PostNationalTravelFeeOperate(dto);
  4922. if (data.Code != 0)
  4923. {
  4924. return Ok(JsonView(false, data.Msg));
  4925. }
  4926. return Ok(JsonView(true, "操作成功!", data.Data));
  4927. }
  4928. catch (Exception ex)
  4929. {
  4930. return Ok(JsonView(false, ex.Message));
  4931. }
  4932. }
  4933. /// <summary>
  4934. /// 团组模块 - 出入境国家费用标准 - Del
  4935. /// </summary>
  4936. /// <returns></returns>
  4937. [HttpPost]
  4938. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4939. public async Task<IActionResult> PostNationalTravelFeeDel(NationalTravelFeeDelDto dto)
  4940. {
  4941. try
  4942. {
  4943. Grp_NationalTravelFee _nationalTravelFee = new Grp_NationalTravelFee()
  4944. {
  4945. Id = dto.Id,
  4946. DeleteUserId = dto.DeleteUserId,
  4947. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  4948. IsDel = 1
  4949. };
  4950. var delStatus = await _enterExitCostRep._sqlSugar.Updateable<Grp_NationalTravelFee>(_nationalTravelFee)
  4951. .UpdateColumns(it => new { it.DeleteTime, it.DeleteUserId, it.IsDel })
  4952. .WhereColumns(it => new { it.Id })
  4953. .ExecuteCommandAsync();
  4954. if (delStatus <= 0)
  4955. {
  4956. return Ok(JsonView(false, "删除失败!"));
  4957. }
  4958. return Ok(JsonView(true, "操作成功!"));
  4959. }
  4960. catch (Exception ex)
  4961. {
  4962. return Ok(JsonView(false, ex.Message));
  4963. }
  4964. }
  4965. #endregion
  4966. #region 签证费用录入
  4967. /// <summary>
  4968. /// 根据diid查询签证费用列表
  4969. /// </summary>
  4970. /// <param name="dto"></param>
  4971. /// <returns></returns>
  4972. [HttpPost]
  4973. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4974. public async Task<IActionResult> QueryVisaByDiId(VisaPriceDto dto)
  4975. {
  4976. try
  4977. {
  4978. Result groupData = await _visaPriceRep.PostVisaByDiId(dto);
  4979. if (groupData.Code != 0)
  4980. {
  4981. return Ok(JsonView(false, groupData.Msg));
  4982. }
  4983. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  4984. }
  4985. catch (Exception ex)
  4986. {
  4987. return Ok(JsonView(false, ex.Message));
  4988. }
  4989. }
  4990. /// <summary>
  4991. /// 根据签证费用Id查询单条数据及c表数据
  4992. /// </summary>
  4993. /// <param name="dto"></param>
  4994. /// <returns></returns>
  4995. [HttpPost]
  4996. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4997. public async Task<IActionResult> QueryVisaById(PostVisaByIdDto dto)
  4998. {
  4999. try
  5000. {
  5001. Result groupData = await _visaPriceRep.PostVisaById(dto);
  5002. if (groupData.Code != 0)
  5003. {
  5004. return Ok(JsonView(false, groupData.Msg));
  5005. }
  5006. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5007. }
  5008. catch (Exception ex)
  5009. {
  5010. return Ok(JsonView(false, ex.Message));
  5011. }
  5012. }
  5013. /// <summary>
  5014. /// 签证费用删除
  5015. /// </summary>
  5016. /// <param name="dto"></param>
  5017. /// <returns></returns>
  5018. [HttpPost]
  5019. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5020. public async Task<IActionResult> DelVisaPrice(DelBaseDto dto)
  5021. {
  5022. _sqlSugar.BeginTran();
  5023. var res = await _visaPriceRep.SoftDeleteByIdAsync<Grp_VisaInfo>(dto.Id.ToString(), dto.DeleteUserId);
  5024. if (!res)
  5025. {
  5026. _sqlSugar.RollbackTran();
  5027. return Ok(JsonView(false, "删除失败"));
  5028. }
  5029. var resSub = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  5030. .Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 80)
  5031. .SetColumns(a => new Grp_CreditCardPayment()
  5032. {
  5033. IsDel = 1,
  5034. DeleteUserId = dto.DeleteUserId,
  5035. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5036. }).ExecuteCommand();
  5037. if (resSub < 1)
  5038. {
  5039. _sqlSugar.RollbackTran();
  5040. return Ok(JsonView(false, "删除失败"));
  5041. }
  5042. _sqlSugar.CommitTran();
  5043. return Ok(JsonView(true, "删除成功!"));
  5044. }
  5045. /// <summary>
  5046. /// 签证费用录入下拉框初始化
  5047. /// </summary>
  5048. /// <returns></returns>
  5049. [HttpPost]
  5050. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5051. public async Task<IActionResult> VisaPriceAddSelect()
  5052. {
  5053. try
  5054. {
  5055. //支付方式
  5056. List<Sys_SetData> Payment = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 14 && a.IsDel == 0).ToList();
  5057. List<SetDataInfoView> _Payment = _mapper.Map<List<SetDataInfoView>>(Payment);
  5058. //币种
  5059. List<Sys_SetData> CurrencyList = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 66 && a.IsDel == 0).ToList();
  5060. List<SetDataInfoView> _CurrencyList = _mapper.Map<List<SetDataInfoView>>(CurrencyList);
  5061. //乘客类型
  5062. List<Sys_SetData> PassengerType = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 69 && a.IsDel == 0).ToList();
  5063. List<SetDataInfoView> _PassengerType = _mapper.Map<List<SetDataInfoView>>(PassengerType);
  5064. //卡类型
  5065. List<Sys_SetData> BankCard = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 15 && a.IsDel == 0).ToList();
  5066. List<SetDataInfoView> _BankCard = _mapper.Map<List<SetDataInfoView>>(BankCard);
  5067. var data = new
  5068. {
  5069. Payment = _Payment,
  5070. CurrencyList = _CurrencyList,
  5071. PassengerType = _PassengerType,
  5072. BankCard = _BankCard
  5073. };
  5074. return Ok(JsonView(true, "查询成功!", data));
  5075. }
  5076. catch (Exception ex)
  5077. {
  5078. return Ok(JsonView(false, "程序错误!"));
  5079. throw;
  5080. }
  5081. }
  5082. /// <summary>
  5083. /// 签证费用录入操作(Status:1.新增,2.修改)
  5084. /// </summary>
  5085. /// <param name="dto"></param>
  5086. /// <returns></returns>
  5087. [HttpPost]
  5088. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5089. public async Task<IActionResult> OpVisaPrice(OpVisaPriceDto dto)
  5090. {
  5091. try
  5092. {
  5093. Result groupData = await _visaPriceRep.OpVisaPrice(dto);
  5094. if (groupData.Code != 0)
  5095. {
  5096. return Ok(JsonView(false, groupData.Msg));
  5097. }
  5098. #region 应用推送
  5099. try
  5100. {
  5101. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  5102. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  5103. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  5104. }
  5105. catch (Exception ex)
  5106. {
  5107. }
  5108. #endregion
  5109. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5110. }
  5111. catch (Exception ex)
  5112. {
  5113. return Ok(JsonView(false, ex.Message));
  5114. }
  5115. }
  5116. #endregion
  5117. #region op费用录入
  5118. /// <summary>
  5119. /// 根据diid查询op费用列表
  5120. /// </summary>
  5121. /// <param name="dto"></param>
  5122. /// <returns></returns>
  5123. [HttpPost]
  5124. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5125. public async Task<IActionResult> QueryCarTouristGuideGroundByDiId(CarTouristGuideGroundDto dto)
  5126. {
  5127. try
  5128. {
  5129. Result groupData = await _carTouristGuideGroundRep.QueryCarTouristGuideGroundByDiId(dto);
  5130. if (groupData.Code != 0)
  5131. {
  5132. return Ok(JsonView(false, groupData.Msg));
  5133. }
  5134. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5135. }
  5136. catch (Exception ex)
  5137. {
  5138. return Ok(JsonView(false, ex.Message));
  5139. }
  5140. }
  5141. /// <summary>
  5142. /// 根据op费用Id查询单条数据及c表数据
  5143. /// </summary>
  5144. /// <param name="dto"></param>
  5145. /// <returns></returns>
  5146. [HttpPost]
  5147. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5148. public async Task<IActionResult> QueryCarTouristGuideGroundById(CarTouristGuideGroundIdDto dto)
  5149. {
  5150. try
  5151. {
  5152. Grp_CarTouristGuideGroundReservations _groupData = await _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().FirstAsync(a => a.Id == dto.Id && a.IsDel == 0);
  5153. Grp_CreditCardPayment _creditCardPayment = await _sqlSugar.Queryable<Grp_CreditCardPayment>().FirstAsync(a => a.CId == dto.Id && a.CTable == 79 && a.IsDel == 0);
  5154. var data = new
  5155. {
  5156. CarTouristGuideGround = _groupData,
  5157. CreditCardPayment = _creditCardPayment
  5158. };
  5159. return Ok(JsonView(true, "查询成功!", data));
  5160. }
  5161. catch (Exception ex)
  5162. {
  5163. return Ok(JsonView(false, "程序错误!"));
  5164. }
  5165. }
  5166. /// <summary>
  5167. /// op费用删除
  5168. /// </summary>
  5169. /// <param name="dto"></param>
  5170. /// <returns></returns>
  5171. [HttpPost]
  5172. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5173. public async Task<IActionResult> DelCarTouristGuideGround(DelBaseDto dto)
  5174. {
  5175. try
  5176. {
  5177. var res = await _carTouristGuideGroundRep.SoftDeleteByIdAsync<Grp_CarTouristGuideGroundReservations>(dto.Id.ToString(), dto.DeleteUserId);
  5178. if (!res)
  5179. {
  5180. return Ok(JsonView(false, "删除失败"));
  5181. }
  5182. var result = await _sqlSugar.Updateable<Grp_CarTouristGuideGroundReservationsContent>().Where(a => a.CTGGRId == dto.Id && a.IsDel == 0).SetColumns(a => new Grp_CarTouristGuideGroundReservationsContent()
  5183. {
  5184. IsDel = 1,
  5185. DeleteUserId = dto.DeleteUserId,
  5186. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5187. }).ExecuteCommandAsync();
  5188. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 79).SetColumns(a => new Grp_CreditCardPayment()
  5189. {
  5190. IsDel = 1,
  5191. DeleteUserId = dto.DeleteUserId,
  5192. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5193. }).ExecuteCommandAsync();
  5194. return Ok(JsonView(true, "删除成功!"));
  5195. }
  5196. catch (Exception ex)
  5197. {
  5198. return Ok(JsonView(false, "程序错误!"));
  5199. throw;
  5200. }
  5201. }
  5202. /// <summary>
  5203. /// op费用录入操作(Status:1.新增,2.修改)
  5204. /// </summary>
  5205. /// <param name="dto"></param>
  5206. /// <returns></returns>
  5207. [HttpPost]
  5208. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5209. public async Task<IActionResult> OpCarTouristGuideGround(OpCarTouristGuideGroundDto dto)
  5210. {
  5211. try
  5212. {
  5213. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGround(dto);
  5214. if (groupData.Code != 0)
  5215. {
  5216. return Ok(JsonView(false, groupData.Msg));
  5217. }
  5218. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5219. }
  5220. catch (Exception ex)
  5221. {
  5222. return Ok(JsonView(false, ex.Message));
  5223. }
  5224. }
  5225. /// <summary>
  5226. /// 填写费用详细页面初始化绑定
  5227. /// </summary>
  5228. /// <param name="dto"></param>
  5229. /// <returns></returns>
  5230. [HttpPost]
  5231. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5232. public IActionResult CarTouristGuideGroundContentInitialize(CarTouristGuideGroundContentDto dto)
  5233. {
  5234. try
  5235. {
  5236. Result groupData = _carTouristGuideGroundRep.CarTouristGuideGroundContent(dto);
  5237. if (groupData.Code != 0)
  5238. {
  5239. return Ok(JsonView(false, groupData.Msg));
  5240. }
  5241. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5242. }
  5243. catch (Exception ex)
  5244. {
  5245. return Ok(JsonView(false, ex.Message));
  5246. }
  5247. }
  5248. /// <summary>
  5249. /// 根据op费用Id查询详细数据
  5250. /// </summary>
  5251. /// <param name="dto"></param>
  5252. /// <returns></returns>
  5253. [HttpPost]
  5254. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5255. public IActionResult OpCarTouristGuideGroundContentById(CarTouristGuideGroundIdDto dto)
  5256. {
  5257. try
  5258. {
  5259. Result groupData = _carTouristGuideGroundRep.OpCarTouristGuideGroundContentById(dto);
  5260. if (groupData.Code != 0)
  5261. {
  5262. return Ok(JsonView(false, groupData.Msg));
  5263. }
  5264. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5265. }
  5266. catch (Exception ex)
  5267. {
  5268. return Ok(JsonView(false, ex.Message));
  5269. }
  5270. }
  5271. /// <summary>
  5272. /// OP费用录入填写详情
  5273. /// </summary>
  5274. /// <param name="dto"></param>
  5275. /// <returns></returns>
  5276. [HttpPost]
  5277. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5278. public async Task<IActionResult> OpCarTouristGuideGroundContent(OpCarTouristGuideGroundContentDto dto)
  5279. {
  5280. try
  5281. {
  5282. #region 参数校验
  5283. if (dto.Currency <= 0) return Ok(JsonView(false, "币种错误!"));
  5284. var di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.DiId && x.IsDel == 0);
  5285. if (di == null) return Ok(JsonView(false, "团组错误!"));
  5286. #endregion
  5287. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGroundContent(dto);
  5288. if (groupData.Code != 0)
  5289. {
  5290. return Ok(JsonView(false, groupData.Msg));
  5291. }
  5292. //自动审核
  5293. await _feeAuditRep.FeeAutomaticAudit(2, dto.DiId, dto.CTGGRId);
  5294. #region 应用推送
  5295. try
  5296. {
  5297. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  5298. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  5299. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  5300. }
  5301. catch (Exception ex)
  5302. {
  5303. }
  5304. #endregion
  5305. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5306. }
  5307. catch (Exception ex)
  5308. {
  5309. return Ok(JsonView(false, ex.Message));
  5310. }
  5311. }
  5312. /// <summary>
  5313. /// 获取三公详细所有城市
  5314. /// </summary>
  5315. /// <returns></returns>
  5316. [HttpGet]
  5317. public IActionResult OpCarCityResult()
  5318. {
  5319. var jw = JsonView(false);
  5320. var data = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(x => x.IsDel == 0).Select(x => new
  5321. {
  5322. x.Id,
  5323. x.Country,
  5324. x.City,
  5325. }).ToList();
  5326. if (data.Count > 0)
  5327. {
  5328. jw = JsonView(true, "获取成功!", data);
  5329. }
  5330. else
  5331. {
  5332. jw.Msg = "城市数据为空!";
  5333. jw.Data = new string[0];
  5334. }
  5335. return Ok(jw);
  5336. }
  5337. /// <summary>
  5338. /// 导出地接费用明细
  5339. /// </summary>
  5340. /// <param name="dto"></param>
  5341. /// <returns></returns>
  5342. [HttpPost]
  5343. public IActionResult ExportLocalGuidePriceDetail(ExportLocalGuidePriceDetailDto dto)
  5344. {
  5345. var jw = JsonView(false);
  5346. if (dto.Diid < 1)
  5347. {
  5348. jw.Msg = "请输入正确的diid!";
  5349. return Ok(jw);
  5350. }
  5351. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  5352. if (group == null)
  5353. {
  5354. jw.Msg = "未找到团组信息!";
  5355. return Ok(jw);
  5356. }
  5357. var localGuideArr = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).ToList();
  5358. if (localGuideArr.Count == 0)
  5359. {
  5360. jw.Msg = "该团组暂无地接信息!";
  5361. return Ok(jw);
  5362. }
  5363. var localGroup = localGuideArr.GroupBy(x => x.Area).ToList();
  5364. var overspendSoure = new Dictionary<int, int>
  5365. {
  5366. { 91, 982 }, //车
  5367. { 92 , 1059} ,//导游
  5368. { 994 , 1073}, //翻译
  5369. { 988 , 1074 }, //早餐
  5370. { 93 , 1075 }, //午餐
  5371. { 989 , 1076 }, //晚餐
  5372. };
  5373. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  5374. foreach (var groupArr in localGroup)
  5375. {
  5376. var keyValue = groupArr.Key;
  5377. if (int.TryParse(keyValue, out int cityid))
  5378. {
  5379. var city = _sqlSugar.Queryable<Grp_NationalTravelFee>().First(x => x.Id == cityid && x.IsDel == 0);
  5380. keyValue = city == null ? keyValue : city.Country + "-" + city.City;
  5381. }
  5382. List<List<Grp_CarTouristGuideGroundReservationsContentExtend>> contentArr = new List<List<Grp_CarTouristGuideGroundReservationsContentExtend>>();
  5383. foreach (var item in groupArr)
  5384. {
  5385. var content = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservationsContent, Sys_SetData>((a, b) => a.SId == b.Id
  5386. ).Where((a, b) => a.CTGGRId == item.Id && a.Price != 0M && a.IsDel == 0 && b.IsDel == 0).Select((a, b) =>
  5387. new Grp_CarTouristGuideGroundReservationsContentExtend
  5388. {
  5389. Count = a.Count,
  5390. CreateTime = a.CreateTime,
  5391. CreateUserId = a.CreateUserId,
  5392. CTGGRId = a.CTGGRId,
  5393. Currency = a.Currency,
  5394. DatePrice = a.DatePrice,
  5395. DeleteTime = a.DeleteTime,
  5396. DeleteUserId = a.DeleteUserId,
  5397. DiId = a.DiId,
  5398. Id = a.Id,
  5399. IsDel = a.IsDel,
  5400. Price = a.Price,
  5401. PriceContent = a.PriceContent,
  5402. Remark = a.Remark,
  5403. SId = a.SId,
  5404. SidName = b.Name,
  5405. Units = a.Units,
  5406. }
  5407. ).ToList();
  5408. if (content.Count > 0)
  5409. {
  5410. contentArr.Add(content);
  5411. }
  5412. }
  5413. //open excel
  5414. //set excel
  5415. //save excel
  5416. try
  5417. {
  5418. string filePath = AppSettingsHelper.Get("ExcelBasePath") + "\\Template\\地接费用明细.xlsx";
  5419. IWorkbook workbook;
  5420. if (Path.GetExtension(filePath).ToLower() == ".xls")
  5421. {
  5422. workbook = new HSSFWorkbook(new FileStream(filePath, FileMode.Open, FileAccess.Read));
  5423. }
  5424. else
  5425. {
  5426. workbook = new XSSFWorkbook(new FileStream(filePath, FileMode.Open, FileAccess.Read));
  5427. }
  5428. ISheet sheet = workbook.GetSheetAt(0);
  5429. var rowStartIndex = 2;
  5430. var clounmCount = 10;
  5431. var initStyleRow = sheet.GetRow(2);
  5432. var arr = contentArr.SelectMany(x => x).OrderBy(x => x.SId).ToList();
  5433. //var overspendArrDetail =
  5434. var existsId = new List<CarCompare>();
  5435. var lastElem = arr.Last();
  5436. var thisSid = -1;
  5437. var curr = arr.Count > 0 ? arr[0].Currency : -1;
  5438. var currObj = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == curr && x.IsDel == 0) ?? new Sys_SetData
  5439. {
  5440. Name = "未知币种!",
  5441. Remark = "未知币种!",
  5442. };
  5443. sheet.GetRow(0).GetCell(1).SetCellValue($"{keyValue}费用明细(货币:{currObj.Remark})");
  5444. Action cloneRowFn = () =>
  5445. {
  5446. rowStartIndex++;
  5447. var cloneRow = sheet.CreateRow(rowStartIndex);
  5448. // 复制样式
  5449. for (int i = initStyleRow.FirstCellNum; i < initStyleRow.LastCellNum; i++)
  5450. {
  5451. ICell sourceCell = initStyleRow.GetCell(i);
  5452. ICell targetCell = cloneRow.GetCell(i) ?? cloneRow.CreateCell(i);
  5453. // 确保单元格存在样式
  5454. if (sourceCell.CellStyle != null)
  5455. {
  5456. targetCell.CellStyle = sourceCell.CellStyle;
  5457. }
  5458. }
  5459. };
  5460. var mergeRow = () =>
  5461. {
  5462. for (int i = 2; i < sheet.LastRowNum; i++)
  5463. {
  5464. var row = sheet.GetRow(i);
  5465. var cellFirst = row.GetCell(0);
  5466. var thisIndex = i + 1;
  5467. while (thisIndex < sheet.LastRowNum)
  5468. {
  5469. var nextRow = sheet.GetRow(thisIndex);
  5470. var nextCellFirst = nextRow.GetCell(0);
  5471. if (cellFirst != null && nextCellFirst != null && cellFirst.ToString().Trim() == nextCellFirst.ToString().Trim())
  5472. {
  5473. thisIndex++;
  5474. }
  5475. else
  5476. {
  5477. break;
  5478. }
  5479. }
  5480. thisIndex--;
  5481. if (thisIndex != i)
  5482. {
  5483. //合并row
  5484. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5485. i, // 起始行索引(0-based)
  5486. thisIndex, // 结束行索引(0-based)
  5487. 0, // 起始列索引(0-based)
  5488. 0 // 结束列索引(0-based)
  5489. );
  5490. sheet.AddMergedRegion(cellRangeAddress);
  5491. i = thisIndex;
  5492. }
  5493. }
  5494. };
  5495. var chaoshiNumber = 0;
  5496. var totalNumber = 0.00M;
  5497. string lastStr = "";
  5498. var queryCarArrByCityAndDiid = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations, Grp_CreditCardPayment>((x, b) => x.Id == b.CId && b.IsDel == 0 && b.CTable == 79)
  5499. .Where(x => x.DiId == dto.Diid && x.Area == groupArr.Key).Select((x, b) => new
  5500. {
  5501. b.IsAuditGM,
  5502. x.Id,
  5503. x.Area,
  5504. b.PayPercentage,
  5505. b.PayMoney,
  5506. }).ToList();
  5507. string yesPayment = "", noPayment = "";
  5508. foreach (var item in queryCarArrByCityAndDiid)
  5509. {
  5510. if (item.IsAuditGM == 1)
  5511. {
  5512. yesPayment += $"已支付团款({(int)item.PayPercentage}%):{item.PayMoney} {currObj.Remark}(如有需要,请在此处填写明细)\r\n";
  5513. }
  5514. else
  5515. {
  5516. noPayment += $"剩余团款:{item.PayMoney}{currObj.Remark}(如有需要,请在此处填写明细)\r\n";
  5517. }
  5518. }
  5519. lastStr = yesPayment + noPayment;
  5520. foreach (var item in arr)
  5521. {
  5522. if (existsId.FirstOrDefault(x => x.Sid == item.SId && DateTime.Compare(x.DataPrice, item.DatePrice.ObjToDate()) == 0) == null && !overspendSoure.Values.Contains(item.SId))
  5523. {
  5524. if (thisSid != item.SId)
  5525. {
  5526. if (thisSid == -1)
  5527. {
  5528. thisSid = item.SId;
  5529. }
  5530. else
  5531. {
  5532. //合并小计行
  5533. //创建合并区域的实例
  5534. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5535. rowStartIndex, // 起始行索引(0-based)
  5536. rowStartIndex, // 结束行索引(0-based)
  5537. 0, // 起始列索引(0-based)
  5538. 3 // 结束列索引(0-based)
  5539. );
  5540. sheet.AddMergedRegion(cellRangeAddress);
  5541. var CellStyle = workbook.CreateCellStyle();
  5542. CellStyle.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5543. CellStyle.FillForegroundColor = IndexedColors.Yellow.Index; // 选择填充颜色
  5544. CellStyle.FillPattern = FillPattern.SolidForeground; // 填充方式
  5545. for (int i = 0; i <= clounmCount; i++)
  5546. {
  5547. if (i > 6)
  5548. {
  5549. var CellStyle1 = workbook.CreateCellStyle();
  5550. CellStyle1.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5551. IFont Font = workbook.CreateFont(); // 创建字体
  5552. Font.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(i).CellStyle.GetFont(workbook));
  5553. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  5554. CellStyle1.SetFont(Font);
  5555. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle1;
  5556. }
  5557. else
  5558. {
  5559. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle;
  5560. }
  5561. }
  5562. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue("合计:");
  5563. sheet.GetRow(rowStartIndex).GetCell(4).SetCellValue(arr.Where(x => x.SId == thisSid).Sum(x => x.Count * x.Price).ToString("F2"));
  5564. //超时合计
  5565. sheet.GetRow(rowStartIndex).GetCell(7).SetCellValue("超时合计:");
  5566. //超时数
  5567. sheet.GetRow(rowStartIndex).GetCell(8).SetCellValue(chaoshiNumber == 0 ? "" : chaoshiNumber.ToString());
  5568. //超时合计费用
  5569. sheet.GetRow(rowStartIndex).GetCell(9).SetCellValue(totalNumber == 0 ? "" : totalNumber.ToString());
  5570. thisSid = item.SId;
  5571. cloneRowFn();
  5572. chaoshiNumber = 0;
  5573. totalNumber = 0;
  5574. }
  5575. }
  5576. IRow row = sheet.GetRow(rowStartIndex);
  5577. var whereForResult = arr.Where(x => x.SId == item.SId && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5578. var isOpenOverspendSoure = overspendSoure.Keys.Contains(item.SId);
  5579. List<Grp_CarTouristGuideGroundReservationsContentExtend> overspendWhereForResult = null;
  5580. if (isOpenOverspendSoure)
  5581. {
  5582. overspendWhereForResult = arr.Where(x => x.SId == overspendSoure[item.SId] && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5583. chaoshiNumber += overspendWhereForResult.Sum(x => x.Count);
  5584. totalNumber += overspendWhereForResult.Sum(x => x.Count * x.Price);
  5585. }
  5586. for (int i = 0; i <= clounmCount; i++)
  5587. {
  5588. var cell = row.GetCell(i);
  5589. var setCellValue = InIndexOutFunction(i, whereForResult, overspendWhereForResult);
  5590. if (cell == null)
  5591. {
  5592. cell = row.CreateCell(i);
  5593. }
  5594. var fontRed = workbook.CreateCellStyle(); // 创建单元格样式
  5595. fontRed.CloneStyleFrom(cell.CellStyle);
  5596. IFont Font = workbook.CreateFont(); // 创建字体
  5597. Font.CloneStyleFrom(cell.CellStyle.GetFont(workbook));
  5598. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  5599. fontRed.SetFont(Font);
  5600. byte[] rgb = new byte[3] { 255, 242, 204 };
  5601. var BackgroundColor255_242_204 = workbook.CreateCellStyle();
  5602. BackgroundColor255_242_204.CloneStyleFrom(cell.CellStyle);
  5603. byte[] rgb1 = new byte[3] { 189, 215, 238 };
  5604. if (workbook is XSSFWorkbook)
  5605. {
  5606. BackgroundColor255_242_204.FillForegroundColor = 0;
  5607. ((XSSFColor)BackgroundColor255_242_204.FillForegroundColorColor).SetRgb(rgb);
  5608. BackgroundColor255_242_204.FillPattern = FillPattern.SolidForeground;
  5609. }
  5610. else
  5611. {
  5612. BackgroundColor255_242_204.FillForegroundColor = (((HSSFWorkbook)workbook).GetCustomPalette().FindSimilarColor(rgb[0], rgb[1], rgb[2])).Indexed;
  5613. }
  5614. if (i == 1 || i > 6)
  5615. {
  5616. if (i > 6)
  5617. {
  5618. fontRed.FillForegroundColor = 0;
  5619. ((XSSFColor)fontRed.FillForegroundColorColor).SetRgb(rgb1);
  5620. fontRed.FillPattern = FillPattern.SolidForeground;
  5621. }
  5622. cell.CellStyle = fontRed;
  5623. }
  5624. if (i > 2 && i < 7)
  5625. {
  5626. cell.CellStyle = BackgroundColor255_242_204;
  5627. }
  5628. cell.SetCellValue(setCellValue); //写入单元格
  5629. }
  5630. if (overspendSoure.ContainsKey(thisSid))
  5631. {
  5632. var overspendId = overspendSoure[thisSid];
  5633. whereForResult = arr.Where(x => x.SId == item.SId && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5634. }
  5635. cloneRowFn();
  5636. existsId.Add(new CarCompare
  5637. {
  5638. DataPrice = item.DatePrice.ObjToDate(),
  5639. Sid = item.SId
  5640. });
  5641. }
  5642. if (item.Equals(lastElem))
  5643. {
  5644. //合并小计行
  5645. //创建合并区域的实例
  5646. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5647. rowStartIndex, // 起始行索引(0-based)
  5648. rowStartIndex, // 结束行索引(0-based)
  5649. 0, // 起始列索引(0-based)
  5650. 3 // 结束列索引(0-based)
  5651. );
  5652. sheet.AddMergedRegion(cellRangeAddress);
  5653. var CellStyle = workbook.CreateCellStyle();
  5654. CellStyle.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5655. CellStyle.FillForegroundColor = IndexedColors.Yellow.Index; // 选择填充颜色
  5656. CellStyle.FillPattern = FillPattern.SolidForeground; // 填充方式
  5657. for (int i = 0; i <= clounmCount; i++)
  5658. {
  5659. if (i > 6)
  5660. {
  5661. var CellStyle1 = workbook.CreateCellStyle();
  5662. CellStyle1.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5663. IFont Font = workbook.CreateFont(); // 创建字体
  5664. Font.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(i).CellStyle.GetFont(workbook));
  5665. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  5666. CellStyle1.SetFont(Font);
  5667. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle1;
  5668. }
  5669. else
  5670. {
  5671. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle;
  5672. }
  5673. }
  5674. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue("合计:");
  5675. sheet.GetRow(rowStartIndex).GetCell(4).SetCellValue(arr.Where(x => x.SId == thisSid).Sum(x => x.Count * x.Price).ToString("F2"));
  5676. //超时合计
  5677. sheet.GetRow(rowStartIndex).GetCell(7).SetCellValue("超时合计:");
  5678. //超时数
  5679. sheet.GetRow(rowStartIndex).GetCell(8).SetCellValue(chaoshiNumber == 0 ? "" : chaoshiNumber.ToString());
  5680. //超时合计费用
  5681. sheet.GetRow(rowStartIndex).GetCell(9).SetCellValue(totalNumber == 0 ? "" : totalNumber.ToString());
  5682. cloneRowFn();
  5683. // 创建合并区域的实例
  5684. cellRangeAddress = new CellRangeAddress(
  5685. rowStartIndex, // 起始行索引(0-based)
  5686. rowStartIndex, // 结束行索引(0-based)
  5687. 0, // 起始列索引(0-based)
  5688. initStyleRow.LastCellNum - 1 // 结束列索引(0-based)
  5689. );
  5690. // 添加合并区域
  5691. sheet.AddMergedRegion(cellRangeAddress);
  5692. sheet.GetRow(rowStartIndex).Height = 30 * 30;
  5693. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue(lastStr);
  5694. }
  5695. }
  5696. mergeRow();
  5697. // 保存修改后的Excel文件到新文件
  5698. //string newFilePath = Path.Combine(Path.GetDirectoryName(filePath), keyValue +"_" + Path.GetFileName(filePath));
  5699. // new FileStream(newFilePath, FileMode.CreateNew)
  5700. using (var stream = new MemoryStream())
  5701. {
  5702. workbook.Write(stream, true);
  5703. stream.Flush();
  5704. stream.Seek(0, SeekOrigin.Begin);
  5705. MemoryStream memoryStream = new MemoryStream();
  5706. stream.CopyTo(memoryStream);
  5707. memoryStream.Seek(0, SeekOrigin.Begin);
  5708. Zips.Add(keyValue + "_" + "费用明细表.xlsx", memoryStream);
  5709. }
  5710. workbook.Close();
  5711. workbook.Dispose();
  5712. }
  5713. catch (Exception ex)
  5714. {
  5715. jw.Msg = "出现异常!" + ex.Message;
  5716. return Ok(jw);
  5717. }
  5718. }
  5719. if (Zips.Count > 0)
  5720. {
  5721. IOOperatorHelper io = new IOOperatorHelper();
  5722. var byts = io.ConvertZipStream(Zips);
  5723. io.ByteToFile(byts, AppSettingsHelper.Get("ExcelBasePath") + $"\\ExportLocalGuidePriceDetail\\{group.TeamName}_地接费用明细.zip");
  5724. //http://132.232.92.186:24/Office/Word/EnterExitCost/File/
  5725. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("OfficeBaseUrl") + $"\\Office\\Excel\\ExportLocalGuidePriceDetail\\{group.TeamName}_地接费用明细.zip" });
  5726. }
  5727. else
  5728. {
  5729. jw.Msg = "暂无生成文件!";
  5730. }
  5731. return Ok(jw);
  5732. }
  5733. private string InIndexOutFunction(int i, List<Grp_CarTouristGuideGroundReservationsContentExtend> arr, List<Grp_CarTouristGuideGroundReservationsContentExtend> arrOverspendSoure)
  5734. {
  5735. string outStr = string.Empty;
  5736. switch (i)
  5737. {
  5738. case 0:
  5739. outStr = arr[0].SidName;
  5740. break;
  5741. case 1:
  5742. outStr = arr[0].DataPriceStr;
  5743. break;
  5744. case 2:
  5745. outStr = string.Join("-", arr.Select(x => x.PriceContent));
  5746. break;
  5747. case 4:
  5748. outStr = arr.Sum(x => x.Subtotal).ToString("F2");
  5749. break;
  5750. case 7:
  5751. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  5752. {
  5753. var curr = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == arrOverspendSoure[0].Currency && x.IsDel == 0);
  5754. var unit = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == arrOverspendSoure[0].Units && x.IsDel == 0);
  5755. outStr = arrOverspendSoure.Sum(x => x.Price).ToString("F2") + curr?.Remark + "/" + unit?.Name;
  5756. }
  5757. break;
  5758. case 8:
  5759. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  5760. {
  5761. outStr = arrOverspendSoure.Sum(x => x.Count).ToString();
  5762. }
  5763. break;
  5764. case 9:
  5765. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  5766. {
  5767. outStr = arrOverspendSoure.Sum(x => x.Count * x.Price).ToString();
  5768. }
  5769. break;
  5770. case 10:
  5771. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  5772. {
  5773. outStr = string.Join("-", arrOverspendSoure.Select(x => x.PriceContent));
  5774. }
  5775. break;
  5776. }
  5777. return outStr;
  5778. }
  5779. #region OP行程单
  5780. /// <summary>
  5781. /// OP行程单初始化
  5782. /// </summary>
  5783. /// <param name="dto"></param>
  5784. /// <returns></returns>
  5785. [HttpPost]
  5786. public IActionResult InitOpTravel(InitOpTravelDto dto)
  5787. {
  5788. var jw = JsonView(false);
  5789. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  5790. var group = groupList.First();
  5791. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  5792. if (group == null)
  5793. {
  5794. jw.Msg = "暂无团组!";
  5795. return Ok(jw);
  5796. }
  5797. group = groupList.Find(x => x.Id == diid);
  5798. if (group == null)
  5799. {
  5800. jw.Msg = "请输入正确的团组ID!";
  5801. return Ok(jw);
  5802. }
  5803. string city = string.Empty;
  5804. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(x => x.IsDel == 0 && x.DiId == diid).ToList();
  5805. if (blackCode.Count > 0)
  5806. {
  5807. var black = blackCode.First();
  5808. black.BlackCode = black.BlackCode == null ? "" : black.BlackCode;
  5809. var blackSp = Regex.Split(black.BlackCode, "\\d+\\.", RegexOptions.IgnoreCase).Where(x => !string.IsNullOrWhiteSpace(x)).ToArray();
  5810. if (blackSp.Length > 0)
  5811. {
  5812. try
  5813. {
  5814. var cityArrCode = new List<string>(20);
  5815. foreach (var item in blackSp)
  5816. {
  5817. var itemSp = item.Split(' ').Where(x => !string.IsNullOrWhiteSpace(x)).ToList();
  5818. var IndexSelect = itemSp[2];
  5819. var cityArrCodeLength = cityArrCode.Count - 1;
  5820. var startCity = IndexSelect.Substring(0, 3);
  5821. if (cityArrCodeLength > 0)
  5822. {
  5823. var arrEndCity = cityArrCode[cityArrCodeLength];
  5824. if (arrEndCity != startCity)
  5825. {
  5826. cityArrCode.Add(startCity.ToUpper());
  5827. }
  5828. }
  5829. else
  5830. {
  5831. cityArrCode.Add(startCity.ToUpper());
  5832. }
  5833. var endCity = IndexSelect.Substring(3, 3);
  5834. cityArrCode.Add(endCity.ToUpper());
  5835. }
  5836. var cityThree = string.Empty;
  5837. cityArrCode.ForEach(x => cityThree += "'" + x + "',");
  5838. cityThree = cityThree.TrimEnd(',');
  5839. if (string.IsNullOrWhiteSpace(cityThree))
  5840. {
  5841. throw new
  5842. Exception("error");
  5843. }
  5844. string sql = $"SELECT * FROM Res_ThreeCode rtc WHERE UPPER(rtc.Three) in ({cityThree}) ";
  5845. var cityArr = _sqlSugar.SqlQueryable<Res_ThreeCode>(sql).ToList();
  5846. foreach (var item in cityArrCode)
  5847. {
  5848. var find = cityArr.Find(x => x.Three.ToUpper() == item.ToUpper());
  5849. if (find != null)
  5850. {
  5851. city += find.City + "/";
  5852. }
  5853. else
  5854. {
  5855. city += item + "三字码未收入/";
  5856. }
  5857. }
  5858. city = city.TrimEnd('/');
  5859. }
  5860. catch (Exception e)
  5861. {
  5862. city = "黑屏代码格式不正确!";
  5863. }
  5864. }
  5865. }
  5866. else
  5867. {
  5868. city = "未录入黑屏代码";
  5869. }
  5870. var OpTravelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0).OrderBy(x => x.Days).Select(x => new TravelArrView
  5871. {
  5872. Date = x.Date,
  5873. Days = x.Days,
  5874. Diffgroup = x.Diffgroup,
  5875. Diid = x.Diid,
  5876. Traffic_First = x.Traffic_First,
  5877. Traffic_Second = x.Traffic_Second,
  5878. Trip = x.Trip,
  5879. WeekDay = x.WeekDay,
  5880. Id = x.Id
  5881. }).ToList();
  5882. jw.Data = new
  5883. {
  5884. groupList = groupList.Select(x => new
  5885. {
  5886. x.Id,
  5887. x.TeamName,
  5888. x.TourCode
  5889. }).ToList(),
  5890. groupInfo = new
  5891. {
  5892. group.VisitDays,
  5893. group.TourCode,
  5894. group.VisitPNumber,
  5895. group.TeamName,
  5896. city
  5897. },
  5898. OpTravelList
  5899. };
  5900. jw.Code = 200;
  5901. jw.Msg = "操作成功!";
  5902. return Ok(jw);
  5903. }
  5904. /// <summary>
  5905. /// 删除团组行程单
  5906. /// </summary>
  5907. /// <returns></returns>
  5908. [HttpPost]
  5909. public IActionResult DelTravel(DelOpTravelDto dto)
  5910. {
  5911. var jw = JsonView(false);
  5912. if (dto.UserId <= 0 || dto.Diid <= 0)
  5913. {
  5914. jw.Msg = "请输入正确的参数!";
  5915. return Ok(jw);
  5916. }
  5917. var isTrue = _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Diid == dto.Diid && x.IsDel == 0)
  5918. .SetColumns(x => new Grp_TravelList
  5919. {
  5920. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  5921. DeleteUserId = dto.UserId,
  5922. IsDel = 1,
  5923. }).ExecuteCommand();
  5924. jw = JsonView(true);
  5925. return Ok(jw);
  5926. }
  5927. /// <summary>
  5928. /// 行程单保存
  5929. /// </summary>
  5930. /// <returns></returns>
  5931. [HttpPost]
  5932. public IActionResult TravelSave(TravelSaveDto dto)
  5933. {
  5934. var jw = JsonView(false);
  5935. if (dto.Arr.Count > 0)
  5936. {
  5937. try
  5938. {
  5939. _sqlSugar.BeginTran();
  5940. foreach (var item in dto.Arr)
  5941. {
  5942. if (item.Id == 0)
  5943. {
  5944. throw new Exception("请传入正确的Id");
  5945. }
  5946. _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Id == item.Id)
  5947. .SetColumns(x => new Grp_TravelList
  5948. {
  5949. Trip = item.Trip
  5950. }).ExecuteCommand();
  5951. }
  5952. _sqlSugar.CommitTran();
  5953. jw = JsonView(true);
  5954. }
  5955. catch (Exception ex)
  5956. {
  5957. _sqlSugar.RollbackTran();
  5958. jw.Msg = "程序异常!" + ex.Message;
  5959. }
  5960. }
  5961. else
  5962. {
  5963. jw.Msg = "请传入正确的参数!";
  5964. }
  5965. return Ok(jw);
  5966. }
  5967. /// <summary>
  5968. /// 导出行程单
  5969. /// </summary>
  5970. /// <param name="dto"></param>
  5971. /// <returns></returns>
  5972. [HttpPost]
  5973. public IActionResult ExportTravel(ExportTravelDto dto)
  5974. {
  5975. var jw = JsonView(false);
  5976. jw.Data = "";
  5977. int diid = 0;
  5978. var Find = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid);
  5979. if (Find == null)
  5980. {
  5981. jw.Msg = "请选择正确的团组!";
  5982. return Ok(jw);
  5983. }
  5984. else
  5985. {
  5986. diid = Find.Id;
  5987. }
  5988. //数据源
  5989. List<Grp_TravelList> _travelList = new List<Grp_TravelList>();
  5990. DataTable dtBlack = null;
  5991. try
  5992. {
  5993. dtBlack = GeneralMethod.GetTableByBlackCode(diid);
  5994. }
  5995. catch (Exception)
  5996. {
  5997. jw.Msg = "机票黑屏代码有误!";
  5998. return Ok(jw);
  5999. }
  6000. string CityStr = string.Empty;
  6001. if (dtBlack.Rows.Count == 0)
  6002. {
  6003. jw.Msg = "机票黑屏代码有误!";
  6004. return Ok(jw);
  6005. }
  6006. else
  6007. {
  6008. foreach (DataRow row in dtBlack.Rows)
  6009. {
  6010. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  6011. {
  6012. jw.Msg = "机票黑屏代码有误!" + row["Error"].ToString();
  6013. return Ok(jw);
  6014. }
  6015. }
  6016. CityStr = GeneralMethod.GetGroupCityLine(diid, "/");
  6017. _travelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0 && x.Issel == 1).ToList();
  6018. }
  6019. //创建数据源Table
  6020. DataTable dtSource = new DataTable();
  6021. dtSource.Columns.Add("Days", typeof(string));
  6022. dtSource.Columns.Add("Date", typeof(string));
  6023. dtSource.Columns.Add("Week", typeof(string));
  6024. dtSource.Columns.Add("Traffic", typeof(string));
  6025. dtSource.Columns.Add("Trip", typeof(string));
  6026. //获取数据,放到datatable
  6027. foreach (var item in _travelList)
  6028. {
  6029. DataRow dr = dtSource.NewRow();
  6030. dr["Days"] = item.Days;
  6031. dr["Date"] = item.Date;
  6032. dr["Week"] = item.WeekDay;
  6033. dr["Traffic"] = item.Traffic_First
  6034. + "\r\n"
  6035. + item.Traffic_Second;
  6036. dr["Trip"] = item.Trip;
  6037. dtSource.Rows.Add(dr);
  6038. }
  6039. Dictionary<string, string> dic = new Dictionary<string, string>();
  6040. dic.Add("Dele", Find.TeamName.ToString() + GetNum(Find.VisitDays.ToString()));
  6041. dic.Add("City", CityStr);
  6042. dic.Add("Days", Find.VisitDays.ToString());
  6043. dic.Add("DeleCode", Find.TourCode);
  6044. dic.Add("Pnum", Find.VisitPNumber.ToString());
  6045. //模板路径
  6046. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Travel/日行程3.docx";
  6047. //载入模板
  6048. Document doc = null;
  6049. DocumentBuilder builder = null;
  6050. try
  6051. {
  6052. //载入模板
  6053. doc = new Document(tempPath);
  6054. builder = new DocumentBuilder(doc);
  6055. }
  6056. catch (Exception)
  6057. {
  6058. jw.Msg = "模板位置不存在!";
  6059. return Ok(jw);
  6060. }
  6061. foreach (var key in dic.Keys)
  6062. {
  6063. Bookmark bookmark = doc.Range.Bookmarks[key];
  6064. if (bookmark != null)
  6065. {
  6066. builder.MoveToBookmark(key);
  6067. builder.Write(dic[key]);
  6068. }
  6069. }
  6070. //获取word里所有表格
  6071. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  6072. //获取所填表格的序数
  6073. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  6074. try
  6075. {
  6076. //循环赋值
  6077. for (int i = 0; i < dtSource.Rows.Count; i++)
  6078. {
  6079. builder.MoveToCell(0, i + 1, 0, 0);
  6080. builder.Write(dtSource.Rows[i]["Days"].ToString());
  6081. builder.MoveToCell(0, i + 1, 1, 0);
  6082. builder.Write(dtSource.Rows[i]["Date"].ToString() + "\r\n" + dtSource.Rows[i]["Week"].ToString());
  6083. builder.MoveToCell(0, i + 1, 2, 0);
  6084. builder.Write(dtSource.Rows[i]["Traffic"].ToString());
  6085. var trip = dtSource.Rows[i]["Trip"].ToString();
  6086. builder.MoveToCell(0, i + 1, 3, 0);
  6087. builder.Write(trip);
  6088. var cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 1, true);
  6089. var paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  6090. // 获取特定索引的段落
  6091. Paragraph paragraph = (Paragraph)paragraphs[0];
  6092. Run run = paragraph.Runs[0];
  6093. Aspose.Words.Font font = run.Font;
  6094. font.Name = "黑体";
  6095. //设置双休红色
  6096. cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 3, true);
  6097. paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  6098. paragraph = (Paragraph)paragraphs[1];
  6099. if (paragraph.GetText().Contains("星期六") || paragraph.GetText().Contains("星期日"))
  6100. {
  6101. run = paragraph.Runs[0];
  6102. font = run.Font;
  6103. font.Color = Color.Red;
  6104. }
  6105. }
  6106. }
  6107. catch (Exception ex)
  6108. {
  6109. }
  6110. //删除多余行
  6111. while (tableOne.Rows.Count > 1 + dtSource.Rows.Count)
  6112. {
  6113. tableOne.Rows.RemoveAt(1 + dtSource.Rows.Count);//(1+dtSource.Rows.Count + 1)-1
  6114. }
  6115. string savePath = AppSettingsHelper.Get("WordBasePath") + "Travel/export/";
  6116. if (!Directory.Exists(savePath))
  6117. {
  6118. try
  6119. {
  6120. Directory.CreateDirectory(savePath);
  6121. }
  6122. catch
  6123. {
  6124. }
  6125. }
  6126. string path = savePath + Find.TeamName + "出访日程";
  6127. string ftpPath = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + "Travel/export/" + Find.TeamName + "出访日程";
  6128. try
  6129. {
  6130. Aspose.Words.SaveFormat saveFormat = Aspose.Words.SaveFormat.Doc;
  6131. string postfix = ".docx";
  6132. if (dto.IsPDF == 1)
  6133. {
  6134. saveFormat = Aspose.Words.SaveFormat.Pdf;
  6135. postfix = ".pdf";
  6136. }
  6137. doc.Save(path + postfix, saveFormat);
  6138. jw = JsonView(true, "导出成功", ftpPath + postfix);
  6139. }
  6140. catch (Exception)
  6141. {
  6142. jw = JsonView(false);
  6143. }
  6144. return Ok(jw);
  6145. }
  6146. /// <summary>
  6147. /// 根据大写数字返回小写数字或根据小写数字返回大写数字
  6148. /// </summary>
  6149. /// <param name="num"></param>
  6150. /// <returns></returns>
  6151. string GetNum(string num)
  6152. {
  6153. string str = "";
  6154. switch (num)
  6155. {
  6156. case "1":
  6157. str = "一";
  6158. break;
  6159. case "2":
  6160. str = "二";
  6161. break;
  6162. case "3":
  6163. str = "三";
  6164. break;
  6165. case "4":
  6166. str = "四";
  6167. break;
  6168. case "5":
  6169. str = "五";
  6170. break;
  6171. case "6":
  6172. str = "六";
  6173. break;
  6174. case "7":
  6175. str = "七";
  6176. break;
  6177. case "8":
  6178. str = "八";
  6179. break;
  6180. case "9":
  6181. str = "九";
  6182. break;
  6183. case "10":
  6184. str = "十";
  6185. break;
  6186. case "11":
  6187. str = "十一";
  6188. break;
  6189. case "12":
  6190. str = "十二";
  6191. break;
  6192. case "一":
  6193. str = "1";
  6194. break;
  6195. case "二":
  6196. str = "2";
  6197. break;
  6198. case "三":
  6199. str = "3";
  6200. break;
  6201. case "四":
  6202. str = "4";
  6203. break;
  6204. case "五":
  6205. str = "5";
  6206. break;
  6207. case "六":
  6208. str = "6";
  6209. break;
  6210. case "七":
  6211. str = "7";
  6212. break;
  6213. case "八":
  6214. str = "8";
  6215. break;
  6216. case "九":
  6217. str = "9";
  6218. break;
  6219. case "十":
  6220. str = "10";
  6221. break;
  6222. case "十一":
  6223. str = "11";
  6224. break;
  6225. case "十二":
  6226. str = "12";
  6227. break;
  6228. }
  6229. return str;
  6230. }
  6231. #endregion
  6232. #endregion
  6233. #region 团组成本
  6234. /// <summary>
  6235. /// 团组成本数据初始化
  6236. /// </summary>
  6237. /// <param name="dto"></param>
  6238. /// <returns></returns>
  6239. [HttpPost]
  6240. public async Task<IActionResult> GroupCostInit(GroupCostInItDto dto)
  6241. {
  6242. var groupList = _sqlSugar.SqlQueryable<DelegationInfoAndIsTrueView>($@"
  6243. Select a.Id,TeamName GroupName,b.isTrue From Grp_DelegationInfo a left join (select top 100 percent Diid, CASE
  6244. WHEN COUNT(*) >= 0 THEN 'True'
  6245. ELSE 'False' END as isTrue from Grp_GroupCost where Isdel = 0 and date != '' group by Diid) b on a.Id = b.Diid
  6246. Where TeamName != '' And IsDel = 0 Order By a.Id Desc
  6247. ").ToList(); //团组列表
  6248. int diid = dto.Diid == -1 ? groupList.First().Id : dto.Diid;
  6249. var groupInfo = await _groupRepository.PostShareGroupInfo(new ShareGroupInfoDto { PortType = 1, Id = diid }); //团组信息
  6250. List<Res_CountryFeeCost> visaCountryInfoArr = new List<Res_CountryFeeCost>();
  6251. var groupinfoValue = (groupInfo.Data as Web_ShareGroupInfoView);
  6252. if (groupinfoValue != null)
  6253. {
  6254. var countryArr = groupinfoValue.VisitCountry ??= string.Empty;
  6255. var spArr = new string[1] { countryArr };
  6256. if (countryArr.Contains("|"))
  6257. {
  6258. spArr = countryArr.Split("|");
  6259. }
  6260. else if (countryArr.Contains("、"))
  6261. {
  6262. spArr = countryArr.Split("、");
  6263. }
  6264. foreach (var item in spArr.Where(x => !string.IsNullOrWhiteSpace(x)).ToList())
  6265. {
  6266. var dbQueryCountry = _sqlSugar.Queryable<Res_CountryFeeCost>().First(x => x.VisaCountry.Contains(item));
  6267. if (dbQueryCountry != null)
  6268. {
  6269. visaCountryInfoArr.Add(dbQueryCountry);
  6270. }
  6271. }
  6272. }
  6273. var groupChecks = _checkBoxs.GetCheckBoxsByDiid(diid); //团组选中信息 可枚举
  6274. var groupCost = _GroupCostRepository.GetAllByDiid(diid); //团组列表信息
  6275. var create = _GroupCostRepository.
  6276. CreateGroupCostByBlackCode(dto.Diid);
  6277. if (groupCost.Count == 0 && create.Code == 0)
  6278. {
  6279. groupCost = (create.Data as List<Grp_GroupCost>) ?? new List<Grp_GroupCost>();
  6280. }
  6281. var groupCostMap = _mapper.Map<List<Grp_GroupCostDto>>(groupCost);
  6282. var hotelNumber = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(diid); //酒店数量 可枚举
  6283. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(diid); //成本系数 可枚举
  6284. groupCostMap = groupCostMap.Select(x =>
  6285. {
  6286. if (DateTime.TryParse(x.Date, out DateTime dataForamt))
  6287. {
  6288. x.Date = dataForamt.ToString("yyyy-MM-dd");
  6289. }
  6290. return x;
  6291. }).ToList();
  6292. //GroupCostParameter.Add(new
  6293. // Grp_GroupCostParameter());
  6294. var GroupCostParameterMap = _mapper.Map<List<Grp_GroupCostParameterDto>>(GroupCostParameter);
  6295. bool hotelIsTrue = _sqlSugar.Queryable<Grp_HotelInquiry>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).Count() > 0;
  6296. return Ok(JsonView(new
  6297. {
  6298. groupList,
  6299. groupInfo,
  6300. groupChecks,
  6301. groupCost = groupCostMap,
  6302. hotelNumber,
  6303. GroupCostParameter = GroupCostParameterMap,
  6304. visaCountryInfoArr = visaCountryInfoArr.Select(x => new
  6305. {
  6306. x.VisaCountry,
  6307. x.VisaPrice,
  6308. x.Id,
  6309. }).ToList(),
  6310. baoPi = _GroupCostParameterRepository.GetBaoPi(diid),
  6311. blackCodeIsTrue = create.Code == 0 ? true : false,
  6312. hotelIsTrue = hotelIsTrue,
  6313. }));
  6314. }
  6315. /// <summary>
  6316. /// 团组成本信息保存
  6317. /// </summary>
  6318. /// <param name="dto"></param>
  6319. /// <returns></returns>
  6320. [HttpPost]
  6321. public async Task<IActionResult> SaveGroupCost(GroupCostSavaDto dto)
  6322. {
  6323. if (dto.Diid <= 0 || dto.Userid <= 0)
  6324. {
  6325. return Ok(JsonView(false));
  6326. }
  6327. JsonView jw = null;
  6328. bool isTrue = false;
  6329. #region 复制团组成本
  6330. //if (dto.Diid == 2581)
  6331. //{
  6332. // dto.Diid = 2599;
  6333. // dto.CheckBoxs.ForEach(x =>
  6334. // {
  6335. // x.Diid = 2599;
  6336. // });
  6337. // dto.GroupCosts.ForEach(x =>
  6338. // {
  6339. // x.Diid = 2599;
  6340. // });
  6341. // dto.CostTypeHotelNumbers.ForEach(x =>
  6342. // {
  6343. // x.Diid = 2599;
  6344. // });
  6345. // dto.GroupCostParameters.ForEach(x =>
  6346. // {
  6347. // x.DiId = 2599;
  6348. // });
  6349. //}
  6350. #endregion
  6351. var Grp_groups = _mapper.Map<List<Grp_GroupCost>>(dto.GroupCosts);
  6352. Grp_groups.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; }); //.ToString("yyyy-MM-dd HH:mm:ss")
  6353. var Grp_CheckBoxs = _mapper.Map<List<Grp_CheckBoxs>>(dto.CheckBoxs);
  6354. Grp_CheckBoxs.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; });
  6355. var Grp_HotelNumber = _mapper.Map<List<Grp_CostTypeHotelNumber>>(dto.CostTypeHotelNumbers);
  6356. var Grp_CostParameters = _mapper.Map<List<Grp_GroupCostParameter>>(dto.GroupCostParameters);
  6357. try
  6358. {
  6359. _sqlSugar.BeginTran();
  6360. isTrue = await _GroupCostRepository.
  6361. SaveGroupCostList(Grp_groups, dto.Diid, dto.Userid); //列表
  6362. isTrue = await _checkBoxs.SaveCheckBoxs(Grp_CheckBoxs, dto.Diid); //选中项
  6363. isTrue = await _CostTypeHotelNumberRepository.SaveHotelNumber(Grp_HotelNumber, dto.Userid, dto.Diid); //酒店房间数量
  6364. isTrue = await _GroupCostParameterRepository.SaveAsync(Grp_CostParameters, dto.Userid, dto.Diid); //系数
  6365. _sqlSugar.CommitTran();
  6366. jw = JsonView(true, "保存成功!", isTrue);
  6367. }
  6368. catch (Exception)
  6369. {
  6370. _sqlSugar.RollbackTran();
  6371. jw = JsonView(false);
  6372. }
  6373. return Ok(jw);
  6374. }
  6375. /// <summary>
  6376. /// 司兼导数据
  6377. /// </summary>
  6378. /// <param name="dto"></param>
  6379. /// <returns></returns>
  6380. [HttpPost]
  6381. public IActionResult GetCarGuides(CarGuidesDto dto)
  6382. {
  6383. JsonView jw = null;
  6384. var Data = _sqlSugar.SqlQueryable<Grp_CarGuides>($@" select * from Grp_CarGuides where isdel = 0 ").ToList();
  6385. jw = JsonView(true, "获取成功!", Data);
  6386. return Ok(jw);
  6387. }
  6388. /// <summary>
  6389. /// 导游数据
  6390. /// </summary>
  6391. /// <param name="dto"></param>
  6392. /// <returns></returns>
  6393. [HttpPost]
  6394. public IActionResult GetGuidesInfo(CarGuidesDto dto)
  6395. {
  6396. JsonView jw = null;
  6397. //var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" SELECT* FROM (
  6398. // 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
  6399. // where RowNumber BETWEEN {(dto.Page - 1) * dto.Size + 1} and {(dto.Page) * dto.Size}").ToList();
  6400. var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" select * from Grp_GuidesInfo where isdel = 0 ").ToList();
  6401. jw = JsonView(true, "获取成功!", Data);
  6402. return Ok(jw);
  6403. }
  6404. /// <summary>
  6405. /// 成本车数据
  6406. /// </summary>
  6407. /// <param name="dto"></param>
  6408. /// <returns></returns>
  6409. [HttpPost]
  6410. public IActionResult GetCarInfo(CarGuidesDto dto)
  6411. {
  6412. JsonView jw = null;
  6413. var Data = _sqlSugar.SqlQueryable<Grp_CarInfo>($@" select * from Grp_CarInfo where isdel = 0 ").ToList();
  6414. jw = JsonView(true, "获取成功!", Data);
  6415. return Ok(jw);
  6416. }
  6417. /// <summary>
  6418. /// 景点数据
  6419. /// </summary>
  6420. /// <param name="dto"></param>
  6421. /// <returns></returns>
  6422. [HttpPost]
  6423. public IActionResult GetScenicSpotInfo(CarGuidesDto dto)
  6424. {
  6425. var Data = _sqlSugar.SqlQueryable<Grp_ScenicSpotInfo>($@" select * from Grp_ScenicSpotInfo where isdel = 0 ").ToList();
  6426. return Ok(JsonView(true, "获取成功!", Data));
  6427. }
  6428. /// <summary>
  6429. /// 成本通知
  6430. /// </summary>
  6431. /// <param name="dto"></param>
  6432. /// <returns></returns>
  6433. [HttpPost]
  6434. public async Task<IActionResult> GroupIsShare(GroupIsShareDto dto)
  6435. {
  6436. if (dto.Diid < 0)
  6437. {
  6438. return Ok(JsonView(false));
  6439. }
  6440. JsonView jw = null;
  6441. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterMainByDiid(dto.Diid);
  6442. if (GroupCostParameter != null)
  6443. {
  6444. int IsShare = 0;
  6445. if (GroupCostParameter.IsShare == 0) IsShare = 1;
  6446. else if (GroupCostParameter.IsShare == 1) IsShare = 0;
  6447. bool isTrue = await _GroupCostParameterRepository.UpdateIsShareById(GroupCostParameter.Id, IsShare);
  6448. string msg = string.Empty;
  6449. if (isTrue)
  6450. {
  6451. if (IsShare == 0)
  6452. {
  6453. msg = "禁止通知,其他模块操作人员不可见此成本信息!";
  6454. }
  6455. else
  6456. {
  6457. #region 企微通知对应岗位用户
  6458. try
  6459. {
  6460. AppNoticeLibrary.SendUserMsg_GroupShare_ToJob(dto.Diid);
  6461. }
  6462. catch (Exception ex)
  6463. {
  6464. }
  6465. #endregion
  6466. msg = "通知成功,其他模块操作人员可见此成本信息!";
  6467. }
  6468. jw = JsonView(isTrue, msg, new { IsShare });
  6469. }
  6470. else
  6471. {
  6472. msg = "修改失败!";
  6473. jw = JsonView(isTrue, msg);
  6474. }
  6475. }
  6476. else
  6477. {
  6478. jw = JsonView(false, "该团没有数据,请添加数据,保存后再操作!");
  6479. }
  6480. return Ok(jw);
  6481. }
  6482. /// <summary>
  6483. /// 导出报价单
  6484. /// </summary>
  6485. /// <param name="dto"></param>
  6486. /// <returns></returns>
  6487. [HttpPost]
  6488. public async Task<IActionResult> ExportPriceCheckWordFile(GroupCostExportWordFile dto)
  6489. {
  6490. if (dto.Diid == 0)
  6491. {
  6492. return Ok(JsonView(false, "请传递团组id"));
  6493. }
  6494. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  6495. if (deleInfo.Code != 0)
  6496. {
  6497. return Ok(JsonView(false, "团组信息查询失败!"));
  6498. }
  6499. var di = deleInfo.Data as DelegationInfoWebView;
  6500. if (di != null)
  6501. {
  6502. //文件名
  6503. string strFileName = di.TeamName + "-收款账单.doc";
  6504. //获取模板
  6505. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/收款账单(四川)模板.doc");
  6506. //载入模板
  6507. Document doc = new Document(tmppath);
  6508. decimal TotalPrice = 0.00M;
  6509. string itemStr = string.Empty;
  6510. Dictionary<string, string> airSouer = new Dictionary<string, string>();
  6511. //airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  6512. airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  6513. airSouer.Add("JJCSGR", "经济舱及酒店单人间");
  6514. airSouer.Add("GWCSGR", "公务舱及酒店单人间");
  6515. airSouer.Add("GWCJSES", "公务舱及酒店小套房");
  6516. airSouer.Add("GWCSUITE", "公务舱及酒店套房");
  6517. airSouer.Add("JJCSUITE", "经济舱及酒店套房");
  6518. var groupCostType = dto.airs.GroupBy(x => x.costType).OrderBy(x => x.Key);
  6519. foreach (var cost in groupCostType)
  6520. {
  6521. var List = cost.ToList();
  6522. if (cost.Key == "A")
  6523. {
  6524. foreach (var ListItem in List)
  6525. {
  6526. if (ListItem.number > 0)
  6527. {
  6528. if (ListItem.code.Contains("TBR"))
  6529. {
  6530. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6531. }
  6532. else
  6533. {
  6534. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6535. }
  6536. TotalPrice += (ListItem.number * ListItem.price);
  6537. }
  6538. }
  6539. }
  6540. else
  6541. {
  6542. itemStr = itemStr.Insert(0, "A段\r\n");
  6543. itemStr += "B段\r\n";
  6544. foreach (var ListItem in List)
  6545. {
  6546. if (ListItem.number > 0)
  6547. {
  6548. if (ListItem.code.Contains("TBR"))
  6549. {
  6550. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6551. }
  6552. else
  6553. {
  6554. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6555. }
  6556. TotalPrice += (ListItem.number * ListItem.price);
  6557. }
  6558. }
  6559. }
  6560. }
  6561. #region 替换Word模板书签内容
  6562. Dictionary<string, string> marks = new Dictionary<string, string>();
  6563. marks.Add("To", di.ClientUnit);//付款方
  6564. marks.Add("ToTel", di.TellPhone);//付款方电话
  6565. marks.Add("Date", DateTime.Now.ToString("yyyy-MM-dd"));//导出时间
  6566. marks.Add("Team", di.VisitCountry.Replace(" ", "、"));//团队名称
  6567. marks.Add("TontractTime", (di.VisitDate).ToString("yyyy年MM月dd日"));//付款日期
  6568. marks.Add("PayDay", (di.PayDay).ToString());//付款预期
  6569. marks.Add("PaymentMoney", (di.PaymentMoney).ToString("#0.00"));//付款金额
  6570. marks.Add("WeChat", di.WeChatNo ?? "");//微信号
  6571. marks.Add("PayItemContent", itemStr);//详细信息
  6572. marks.Add("Total", TotalPrice.ToString("F2"));//合计
  6573. #endregion
  6574. ////注
  6575. //if (doc.Range.Bookmarks["Attention"] != null)
  6576. //{
  6577. // Bookmark mark = doc.Range.Bookmarks["Attention"];
  6578. // mark.Text = frList[0].Attention;
  6579. //}
  6580. foreach (var item in marks.Keys)
  6581. {
  6582. if (doc.Range.Bookmarks[item] != null)
  6583. {
  6584. Bookmark mark = doc.Range.Bookmarks[item];
  6585. mark.Text = marks[item];
  6586. }
  6587. }
  6588. byte[] bytes = null;
  6589. using (MemoryStream stream = new MemoryStream())
  6590. {
  6591. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  6592. bytes = stream.ToArray();
  6593. }
  6594. //doc.Save((AppSettingsHelper.Get("WordBasePath") + "Template/") + strFileName);
  6595. return Ok(JsonView(true, "", new
  6596. {
  6597. Data = bytes,
  6598. strFileName,
  6599. }));
  6600. }
  6601. else
  6602. {
  6603. return Ok(JsonView(false, "团组信息不存在!"));
  6604. }
  6605. }
  6606. /// <summary>
  6607. /// 导出团组成本
  6608. /// </summary>
  6609. /// <param name="dto"></param>
  6610. /// <returns></returns>
  6611. [HttpPost]
  6612. public async Task<IActionResult> ExportGroupCostExcelFile(GroupCostExportExcelFile dto)
  6613. {
  6614. var jw = JsonView(false);
  6615. if (dto.Diid == 0)
  6616. {
  6617. return Ok(JsonView(false, "请传递团组id"));
  6618. }
  6619. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  6620. if (deleInfo.Code != 0)
  6621. {
  6622. return Ok(JsonView(false, "团组信息查询失败!"));
  6623. }
  6624. var di = deleInfo.Data as DelegationInfoWebView;
  6625. if (di == null)
  6626. {
  6627. return Ok(JsonView(false, "团组信息查询失败!"));
  6628. }
  6629. List<GroupCost_Excel> List_GC1 = new List<GroupCost_Excel>();
  6630. WorkbookDesigner designer = new WorkbookDesigner();
  6631. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + ("Template/团组-成本.xls"));
  6632. var List_GC = _GroupCostRepository.GetAllByDiid(dto.Diid);
  6633. for (int i = 0; i < List_GC.Count; i++)
  6634. {
  6635. GroupCost_Excel gc = new GroupCost_Excel();
  6636. gc.Id = List_GC[i].Id;
  6637. gc.Diid = List_GC[i].Diid.ToString();
  6638. gc.DAY = List_GC[i].DAY;
  6639. string week = "";
  6640. if (!string.IsNullOrEmpty(List_GC[i].Date.Trim()))
  6641. week = CultureInfo.CurrentCulture.DateTimeFormat.GetDayName(Convert.ToDateTime(List_GC[i].Date).DayOfWeek);
  6642. gc.Date = (List_GC[i].Date + "\n" + week).ToString();
  6643. gc.ITIN = List_GC[i].ITIN;
  6644. gc.CarType = List_GC[i].CarType;
  6645. gc.CarTiming = List_GC[i].CarTiming.ToString() == "0" ? "/" : List_GC[i].CarTiming.ToString();
  6646. gc.CarCost = List_GC[i].CarCost.ToString() == "0" ? "/" : List_GC[i].CarCost.ToString();
  6647. gc.CarNumber = List_GC[i].CarNumber.ToString() == "0" ? "/" : List_GC[i].CarNumber.ToString();
  6648. gc.TGS = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGS.ToString();
  6649. gc.TGWH = List_GC[i].TGWH.ToString() == "0" ? "/" : List_GC[i].TGWH.ToString();
  6650. gc.TGN = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGN.ToString();
  6651. gc.TGOF = List_GC[i].TGOF.ToString() == "0" ? "/" : List_GC[i].TGOF.ToString();
  6652. gc.TGM = List_GC[i].TGM.ToString() == "0" ? "/" : List_GC[i].TGM.ToString();
  6653. gc.TGA = List_GC[i].TGA.ToString() == "0" ? "/" : List_GC[i].TGA.ToString();
  6654. gc.TGTF = List_GC[i].TGTF.ToString() == "0" ? "/" : List_GC[i].TGTF.ToString();
  6655. gc.TGEF = List_GC[i].TGEF.ToString() == "0" ? "/" : List_GC[i].TGEF.ToString();
  6656. gc.CFS = List_GC[i].CFS.ToString() == "0" ? "/" : List_GC[i].CFS.ToString();
  6657. gc.CFM = List_GC[i].CFM.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  6658. gc.CFOF = List_GC[i].CFOF.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  6659. gc.B = List_GC[i].B.ToString() == "0" ? "/" : List_GC[i].B.ToString();
  6660. gc.L = List_GC[i].L.ToString() == "0" ? "/" : List_GC[i].L.ToString();
  6661. gc.D = List_GC[i].D.ToString() == "0" ? "/" : List_GC[i].D.ToString();
  6662. gc.TBR = List_GC[i].TBR.ToString() == "0" ? "/" : List_GC[i].TBR.ToString();
  6663. gc.SGR = List_GC[i].SGR.ToString() == "0" ? "/" : List_GC[i].SGR.ToString();
  6664. gc.JS_ES = List_GC[i].JS_ES.ToString() == "0" ? "/" : List_GC[i].JS_ES.ToString();
  6665. gc.Suite = List_GC[i].Suite.ToString() == "0" ? "/" : List_GC[i].Suite.ToString();
  6666. gc.ACCON = List_GC[i].ACCON.ToString() == "0" ? "/" : List_GC[i].ACCON.ToString();
  6667. gc.TV = List_GC[i].TV.ToString() == "0" ? "/" : List_GC[i].TV.ToString();
  6668. gc.iL = List_GC[i].iL.ToString() == "0" ? "/" : List_GC[i].iL.ToString();
  6669. gc.IF = List_GC[i].IF.ToString() == "0" ? "/" : List_GC[i].IF.ToString();
  6670. gc.EF = List_GC[i].EF.ToString() == "0" ? "/" : List_GC[i].EF.ToString();
  6671. gc.B_R_F = List_GC[i].B_R_F.ToString() == "0" ? "/" : List_GC[i].B_R_F.ToString();
  6672. gc.TE = List_GC[i].TE.ToString() == "0" ? "/" : List_GC[i].TE.ToString();
  6673. gc.TGTips = List_GC[i].TGTips.ToString() == "0" ? "/" : List_GC[i].TGTips.ToString();
  6674. gc.DRVTips = List_GC[i].DRVTips.ToString() == "0" ? "/" : List_GC[i].DRVTips.ToString();
  6675. gc.PC = List_GC[i].PC.ToString() == "0" ? "/" : List_GC[i].PC.ToString();
  6676. gc.TLF = List_GC[i].TLF.ToString() == "0" ? "/" : List_GC[i].TLF.ToString();
  6677. gc.ECT = List_GC[i].ECT.ToString() == "0" ? "/" : List_GC[i].ECT.ToString();
  6678. List_GC1.Add(gc);
  6679. }
  6680. var dt = CommonFun.GetDataTableFromIList(List_GC1);
  6681. dt.TableName = "TB";
  6682. //报表标题等不用dt的值
  6683. designer.SetDataSource("TeamName", dto.title.TeamName);
  6684. designer.SetDataSource("Pnumber", dto.title.GroupNumber);
  6685. designer.SetDataSource("Tax", dto.title.Tax);
  6686. //designer.SetDataSource("FFYS", lblHotelCB.Text);
  6687. designer.SetDataSource("Currency", dto.title.Currency);
  6688. //designer.SetDataSource("HotelXS", txtHotelXS.Text);
  6689. designer.SetDataSource("Rate", dto.title.Rate);
  6690. var hotels = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(dto.Diid);
  6691. var Aparams = hotels.Find(x => x.Type == "Default");
  6692. if (Aparams == null)
  6693. {
  6694. return Ok(jw);
  6695. }
  6696. //酒店数量
  6697. var txtSGRNumber = Aparams.SGR.ToString();
  6698. var txtTBRNumber = Aparams.TBR.ToString();
  6699. var txtJSESNumber = Aparams.JSES.ToString();
  6700. var txtSUITENumbe = Aparams.SUITE.ToString();
  6701. if (dto.costType == "B")
  6702. {
  6703. Aparams = hotels.Find(x => x.Type == "A");
  6704. var Bparams = hotels.Find(x => x.Type == "B");
  6705. if (Aparams == null || Bparams == null)
  6706. {
  6707. return Ok(jw);
  6708. }
  6709. txtSGRNumber = "A段人数:" + Aparams.SGR.ToString() + " B段人数:" + Bparams.SGR.ToString();
  6710. txtTBRNumber = "A段人数:" + Aparams.TBR.ToString() + " B段人数:" + Bparams.TBR.ToString();
  6711. txtJSESNumber = "A段人数:" + Aparams.JSES.ToString() + " B段人数:" + Bparams.JSES.ToString();
  6712. txtSUITENumbe = "A段人数:" + Aparams.SUITE.ToString() + " B段人数:" + Bparams.SUITE.ToString();
  6713. }
  6714. designer.SetDataSource("SGRNumber", txtSGRNumber);
  6715. designer.SetDataSource("TBRNumber", txtTBRNumber);
  6716. designer.SetDataSource("JSESNumber", txtJSESNumber);
  6717. designer.SetDataSource("SUITENumber", txtSUITENumbe);
  6718. var ws = designer.Workbook.Worksheets[0];
  6719. int Row = List_GC.Count;
  6720. int startIndex = 11;
  6721. int HideRows = 0;
  6722. List<int> hideRowsList = new List<int>();
  6723. decimal TzZCB2 = 0.00M, TzZLR2 = 0.00M, TzZBJ2 = 0.00M;
  6724. #region A段left数据
  6725. var left = dto.leftInfo.Find(x => x.Type == "A");
  6726. if (left == null)
  6727. {
  6728. return Ok(jw);
  6729. }
  6730. var leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("签证"));
  6731. if (leftBindData != null)
  6732. {
  6733. designer.SetDataSource("VisaDRCB", leftBindData.cb);
  6734. designer.SetDataSource("VisaRS", leftBindData.rs);
  6735. designer.SetDataSource("VisaXS", leftBindData.xs);
  6736. designer.SetDataSource("VisaZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6737. designer.SetDataSource("VisaDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6738. designer.SetDataSource("VisaZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6739. designer.SetDataSource("VisaDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6740. designer.SetDataSource("VisaZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6741. }
  6742. else
  6743. {
  6744. hideRowsList.Add(Row + startIndex + HideRows);
  6745. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6746. }
  6747. HideRows += 2;
  6748. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("保险"));
  6749. if (leftBindData != null)
  6750. {
  6751. designer.SetDataSource("BXDRCB", leftBindData.cb);
  6752. designer.SetDataSource("BXRS", leftBindData.rs);
  6753. designer.SetDataSource("BXXS", leftBindData.xs);
  6754. designer.SetDataSource("BXZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6755. designer.SetDataSource("BXDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6756. designer.SetDataSource("BXZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6757. designer.SetDataSource("BXDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6758. designer.SetDataSource("BXZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6759. }
  6760. else
  6761. {
  6762. hideRowsList.Add(Row + startIndex + HideRows);
  6763. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6764. }
  6765. HideRows += 2;
  6766. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  6767. if (leftBindData != null)
  6768. {
  6769. designer.SetDataSource("HSDRCB", leftBindData.cb);
  6770. designer.SetDataSource("HSRS", leftBindData.rs);
  6771. designer.SetDataSource("HSXS", leftBindData.xs);
  6772. designer.SetDataSource("HSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6773. designer.SetDataSource("HSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6774. designer.SetDataSource("HSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6775. designer.SetDataSource("HSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6776. designer.SetDataSource("HSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6777. }
  6778. else
  6779. {
  6780. hideRowsList.Add(Row + startIndex + HideRows);
  6781. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6782. }
  6783. HideRows += 2;
  6784. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  6785. if (leftBindData != null)
  6786. {
  6787. designer.SetDataSource("JPJJCCB", leftBindData.cb);
  6788. designer.SetDataSource("JPJJCPnum", leftBindData.rs);
  6789. designer.SetDataSource("JPJJCXS", leftBindData.xs);
  6790. designer.SetDataSource("JPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6791. designer.SetDataSource("JPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6792. designer.SetDataSource("JPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6793. designer.SetDataSource("JPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6794. designer.SetDataSource("JPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6795. }
  6796. else
  6797. {
  6798. hideRowsList.Add(Row + startIndex + HideRows);
  6799. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6800. }
  6801. HideRows += 2;
  6802. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  6803. if (leftBindData != null)
  6804. {
  6805. designer.SetDataSource("JPGWCCB", leftBindData.cb);
  6806. designer.SetDataSource("JPGWCPNum", leftBindData.rs);
  6807. designer.SetDataSource("JPGWCXS", leftBindData.xs);
  6808. designer.SetDataSource("JPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6809. designer.SetDataSource("JPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6810. designer.SetDataSource("JPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6811. designer.SetDataSource("JPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6812. designer.SetDataSource("JPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6813. }
  6814. else
  6815. {
  6816. hideRowsList.Add(Row + startIndex + HideRows);
  6817. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6818. }
  6819. HideRows += 2;
  6820. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  6821. if (leftBindData != null)
  6822. {
  6823. ////TBR
  6824. designer.SetDataSource("HotelTBRDRCB", leftBindData.cb);
  6825. designer.SetDataSource("HotelTBRRS", leftBindData.rs);
  6826. designer.SetDataSource("HotelTBRXS", leftBindData.xs);
  6827. designer.SetDataSource("HotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6828. designer.SetDataSource("HotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6829. designer.SetDataSource("HotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6830. designer.SetDataSource("HotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6831. designer.SetDataSource("HotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6832. }
  6833. else
  6834. {
  6835. hideRowsList.Add(Row + startIndex + HideRows);
  6836. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6837. }
  6838. HideRows += 2;
  6839. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  6840. if (leftBindData != null)
  6841. {
  6842. ////SGR
  6843. designer.SetDataSource("HotelSGRDRCB", leftBindData.cb);
  6844. designer.SetDataSource("HotelSGRRS", leftBindData.rs);
  6845. designer.SetDataSource("HotelSGRXS", leftBindData.xs);
  6846. designer.SetDataSource("HotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6847. designer.SetDataSource("HotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6848. designer.SetDataSource("HotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6849. designer.SetDataSource("HotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6850. designer.SetDataSource("HotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6851. }
  6852. else
  6853. {
  6854. hideRowsList.Add(Row + startIndex + HideRows);
  6855. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6856. }
  6857. HideRows += 2;
  6858. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  6859. if (leftBindData != null)
  6860. {
  6861. ////JS/ES
  6862. designer.SetDataSource("HotelJSESDRCB", leftBindData.cb);
  6863. designer.SetDataSource("HotelJSESRS", leftBindData.rs);
  6864. designer.SetDataSource("HotelJSESXS", leftBindData.xs);
  6865. designer.SetDataSource("HotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6866. designer.SetDataSource("HotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6867. designer.SetDataSource("HotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6868. designer.SetDataSource("HotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6869. designer.SetDataSource("HotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6870. }
  6871. else
  6872. {
  6873. hideRowsList.Add(Row + startIndex + HideRows);
  6874. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6875. }
  6876. HideRows += 2;
  6877. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  6878. if (leftBindData != null)
  6879. {
  6880. ////SUITE
  6881. designer.SetDataSource("HotelSUITEDRCB", leftBindData.cb);
  6882. designer.SetDataSource("HotelSUITERS", leftBindData.rs);
  6883. designer.SetDataSource("HotelSUITEXS", leftBindData.xs);
  6884. designer.SetDataSource("HotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6885. designer.SetDataSource("HotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6886. designer.SetDataSource("HotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6887. designer.SetDataSource("HotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6888. designer.SetDataSource("HotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6889. }
  6890. else
  6891. {
  6892. hideRowsList.Add(Row + startIndex + HideRows);
  6893. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6894. }
  6895. HideRows += 2;
  6896. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  6897. if (leftBindData != null)
  6898. {
  6899. designer.SetDataSource("DJDRCB", leftBindData.cb);
  6900. designer.SetDataSource("DJRS", leftBindData.rs);
  6901. designer.SetDataSource("DJXS", leftBindData.xs);
  6902. designer.SetDataSource("DJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6903. designer.SetDataSource("DJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6904. designer.SetDataSource("DJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6905. designer.SetDataSource("DJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6906. designer.SetDataSource("DJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6907. }
  6908. else
  6909. {
  6910. hideRowsList.Add(Row + startIndex + HideRows);
  6911. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6912. }
  6913. HideRows += 2;
  6914. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  6915. if (leftBindData != null)
  6916. {
  6917. designer.SetDataSource("HCPCB", leftBindData.cb);
  6918. designer.SetDataSource("HCPRS", leftBindData.rs);
  6919. designer.SetDataSource("HCPXS", leftBindData.xs);
  6920. designer.SetDataSource("HCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6921. designer.SetDataSource("HCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6922. designer.SetDataSource("HCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6923. designer.SetDataSource("HCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6924. designer.SetDataSource("HCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6925. }
  6926. else
  6927. {
  6928. hideRowsList.Add(Row + startIndex + HideRows);
  6929. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6930. }
  6931. HideRows += 2;
  6932. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  6933. if (leftBindData != null)
  6934. {
  6935. designer.SetDataSource("CPCB", leftBindData.cb);
  6936. designer.SetDataSource("CPRS", leftBindData.rs);
  6937. designer.SetDataSource("CPXS", leftBindData.xs);
  6938. designer.SetDataSource("CPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6939. designer.SetDataSource("CPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6940. designer.SetDataSource("CPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6941. designer.SetDataSource("CPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6942. designer.SetDataSource("CPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6943. }
  6944. else
  6945. {
  6946. hideRowsList.Add(Row + startIndex + HideRows);
  6947. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6948. }
  6949. HideRows += 2;
  6950. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  6951. if (leftBindData != null)
  6952. {
  6953. designer.SetDataSource("GWDRCD", leftBindData.cb);
  6954. designer.SetDataSource("GWRS", leftBindData.rs);
  6955. designer.SetDataSource("GWXS", leftBindData.xs);
  6956. designer.SetDataSource("GWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6957. designer.SetDataSource("GWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6958. designer.SetDataSource("GWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6959. designer.SetDataSource("GWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6960. designer.SetDataSource("GWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6961. }
  6962. else
  6963. {
  6964. hideRowsList.Add(Row + startIndex + HideRows);
  6965. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6966. }
  6967. HideRows += 2;
  6968. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  6969. if (leftBindData != null)
  6970. {
  6971. designer.SetDataSource("LYJDRCB", leftBindData.cb);
  6972. designer.SetDataSource("LYJRS", leftBindData.rs);
  6973. designer.SetDataSource("LYJXS", leftBindData.xs);
  6974. designer.SetDataSource("LYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6975. designer.SetDataSource("LYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6976. designer.SetDataSource("LYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6977. designer.SetDataSource("LYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6978. designer.SetDataSource("LYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6979. }
  6980. else
  6981. {
  6982. hideRowsList.Add(Row + startIndex + HideRows);
  6983. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6984. }
  6985. #endregion
  6986. #region A段Right信息
  6987. var right = dto.rightInfo.Find(x => x.Type == "A");
  6988. if (right == null)
  6989. {
  6990. return Ok(jw);
  6991. }
  6992. HideRows += 4;
  6993. var rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  6994. if (rightBindData != null)
  6995. {
  6996. //经济舱 + 双人间 TBR
  6997. designer.SetDataSource("lblJJCTBRDRCB", rightBindData.cb);
  6998. designer.SetDataSource("txtJJCTBRRS", rightBindData.rs);
  6999. designer.SetDataSource("lblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7000. designer.SetDataSource("lblJJCTBRDRBJ", rightBindData.bj);
  7001. designer.SetDataSource("lblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7002. designer.SetDataSource("lblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7003. designer.SetDataSource("lblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7004. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7005. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7006. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7007. }
  7008. else
  7009. {
  7010. hideRowsList.Add(Row + startIndex + HideRows);
  7011. }
  7012. HideRows += 2;
  7013. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  7014. if (rightBindData != null)
  7015. {
  7016. //经济舱 + 单人间 SGR
  7017. designer.SetDataSource("lblJJCSGRDRCB", rightBindData.cb);
  7018. designer.SetDataSource("txtJJCSGRRS", rightBindData.rs);
  7019. designer.SetDataSource("lblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7020. designer.SetDataSource("lblJJCSGRDRBJ", rightBindData.bj);
  7021. designer.SetDataSource("lblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7022. designer.SetDataSource("lblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7023. designer.SetDataSource("lblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7024. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7025. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7026. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7027. }
  7028. else
  7029. {
  7030. hideRowsList.Add(Row + startIndex + HideRows);
  7031. }
  7032. HideRows += 2;
  7033. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  7034. if (rightBindData != null)
  7035. {
  7036. //公务舱 + 单人间 SGR
  7037. designer.SetDataSource("lblGWCSGRCB", rightBindData.cb);
  7038. designer.SetDataSource("lblGWCSGRRS", rightBindData.rs);
  7039. designer.SetDataSource("lblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7040. designer.SetDataSource("lblGWCSGRDRBJ", rightBindData.bj);
  7041. designer.SetDataSource("lblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7042. designer.SetDataSource("lblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7043. designer.SetDataSource("lblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7044. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7045. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7046. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7047. }
  7048. else
  7049. {
  7050. hideRowsList.Add(Row + startIndex + HideRows);
  7051. }
  7052. HideRows += 2;
  7053. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7054. if (rightBindData != null)
  7055. {
  7056. //公务舱 + 小套房 JSES
  7057. designer.SetDataSource("lblGWCJSESDRCB", rightBindData.cb);
  7058. designer.SetDataSource("txtGWCJSESRS", rightBindData.rs);
  7059. designer.SetDataSource("lblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7060. designer.SetDataSource("lblGWCJSESDRBJ", rightBindData.bj);
  7061. designer.SetDataSource("lblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7062. designer.SetDataSource("lblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7063. designer.SetDataSource("lblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7064. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7065. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7066. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7067. }
  7068. else
  7069. {
  7070. hideRowsList.Add(Row + startIndex + HideRows);
  7071. }
  7072. HideRows += 2;
  7073. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  7074. if (rightBindData != null)
  7075. {
  7076. //公务舱 + 小套房 JSES
  7077. designer.SetDataSource("lblGWCSUITEDRCB", rightBindData.cb);
  7078. designer.SetDataSource("txtGWCSUITERS", rightBindData.rs);
  7079. designer.SetDataSource("lblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7080. designer.SetDataSource("lblGWCSUITEDRBJ", rightBindData.bj);
  7081. designer.SetDataSource("lblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7082. designer.SetDataSource("lblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7083. designer.SetDataSource("lblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7084. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7085. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7086. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7087. }
  7088. else
  7089. {
  7090. hideRowsList.Add(Row + startIndex + HideRows);
  7091. }
  7092. HideRows += 2;
  7093. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7094. if (rightBindData != null)
  7095. {
  7096. //经济舱 + 大套房
  7097. designer.SetDataSource("lblJJCSUITEDRCB", rightBindData.cb);
  7098. designer.SetDataSource("txtJJCSUITERS", rightBindData.rs);
  7099. designer.SetDataSource("lblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7100. designer.SetDataSource("lblJJCSUITEDRBJ", rightBindData.bj);
  7101. designer.SetDataSource("lblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7102. designer.SetDataSource("lblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7103. designer.SetDataSource("lblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7104. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7105. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7106. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7107. }
  7108. else
  7109. {
  7110. hideRowsList.Add(Row + startIndex + HideRows);
  7111. }
  7112. #endregion
  7113. #region B段标题清空
  7114. designer.SetDataSource("CostBDRCB", "");
  7115. designer.SetDataSource("CostBRS", "");
  7116. designer.SetDataSource("CostBXS", "");
  7117. designer.SetDataSource("CostBZCB", "");
  7118. designer.SetDataSource("CostBDRBJ", "");
  7119. designer.SetDataSource("CostBZBJ", "");
  7120. designer.SetDataSource("CostBDRLR", "");
  7121. designer.SetDataSource("CostBZLR", "");
  7122. designer.SetDataSource("CostBDRCBOM", "");
  7123. designer.SetDataSource("CostBRSOM", "");
  7124. designer.SetDataSource("CostBZCBOM", "");
  7125. designer.SetDataSource("CostBDRBJOM", "");
  7126. designer.SetDataSource("CostBZBJOM", "");
  7127. designer.SetDataSource("CostBDRLROM", "");
  7128. designer.SetDataSource("CostBZLROM", "");
  7129. #endregion
  7130. designer.SetDataSource("HotelTBRName", "酒店TBR单间成本(CNY)");
  7131. designer.SetDataSource("HotelSGRName", "酒店SGR单间成本(CNY)");
  7132. designer.SetDataSource("HotelJSESName", "酒店JSES单间成本(CNY)");
  7133. designer.SetDataSource("HotelSUITEName", "酒店SUITE单间成本(CNY)");
  7134. designer.SetDataSource("DJName", "地接(CNY)");
  7135. designer.SetDataSource("HCPName", "地接-火车票(CNY)");
  7136. designer.SetDataSource("CPName", "地接-船票(CNY)");
  7137. designer.SetDataSource("GWName", "公务(CNY)");
  7138. designer.SetDataSource("YQHName", "邀请函(CNY)");
  7139. designer.SetDataSource("LYJName", "零用金(CNY)");
  7140. designer.SetDataSource("HSName", "核酸检测(CNY)");
  7141. designer.SetDataSource("AirGWCName", "机票-公务舱(CNY)");
  7142. designer.SetDataSource("AirJJCName", "机票-经济舱(CNY)");
  7143. designer.SetDataSource("BXName", "保险(CNY)");
  7144. designer.SetDataSource("VisaName", "签证(CNY)");
  7145. #region B段基本数据
  7146. if (dto.costType == "B")
  7147. {
  7148. left = dto.leftInfo.Find(x => x.Type == "B");
  7149. if (left == null)
  7150. {
  7151. return Ok(jw);
  7152. }
  7153. #region B段left数据
  7154. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  7155. if (leftBindData != null)
  7156. {
  7157. designer.SetDataSource("BHSDRCB", leftBindData.cb);
  7158. designer.SetDataSource("BHSRS", leftBindData.rs);
  7159. designer.SetDataSource("BHSXS", leftBindData.xs);
  7160. designer.SetDataSource("BHSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7161. designer.SetDataSource("BHSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7162. designer.SetDataSource("BHSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7163. designer.SetDataSource("BHSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7164. designer.SetDataSource("BHSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7165. }
  7166. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  7167. if (leftBindData != null)
  7168. {
  7169. designer.SetDataSource("BJPJJCCB", leftBindData.cb);
  7170. designer.SetDataSource("BJPJJCPnum", leftBindData.rs);
  7171. designer.SetDataSource("BJPJJCXS", leftBindData.xs);
  7172. designer.SetDataSource("BJPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7173. designer.SetDataSource("BJPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7174. designer.SetDataSource("BJPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7175. designer.SetDataSource("BJPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7176. designer.SetDataSource("BJPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7177. }
  7178. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  7179. if (leftBindData != null)
  7180. {
  7181. designer.SetDataSource("BJPGWCCB", leftBindData.cb);
  7182. designer.SetDataSource("BJPGWCPNum", leftBindData.rs);
  7183. designer.SetDataSource("BJPGWCXS", leftBindData.xs);
  7184. designer.SetDataSource("BJPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7185. designer.SetDataSource("BJPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7186. designer.SetDataSource("BJPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7187. designer.SetDataSource("BJPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7188. designer.SetDataSource("BJPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7189. }
  7190. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  7191. if (leftBindData != null)
  7192. {
  7193. designer.SetDataSource("BHCPCB", leftBindData.cb);
  7194. designer.SetDataSource("BHCPRS", leftBindData.rs);
  7195. designer.SetDataSource("BHCPXS", leftBindData.xs);
  7196. designer.SetDataSource("BHCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7197. designer.SetDataSource("BHCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7198. designer.SetDataSource("BHCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7199. designer.SetDataSource("BHCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7200. designer.SetDataSource("BHCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7201. }
  7202. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  7203. if (leftBindData != null)
  7204. {
  7205. designer.SetDataSource("BCPCB", leftBindData.cb);
  7206. designer.SetDataSource("BCPRS", leftBindData.rs);
  7207. designer.SetDataSource("BCPXS", leftBindData.xs);
  7208. designer.SetDataSource("BCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7209. designer.SetDataSource("BCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7210. designer.SetDataSource("BCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7211. designer.SetDataSource("BCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7212. designer.SetDataSource("BCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7213. }
  7214. //TBR
  7215. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  7216. if (leftBindData != null)
  7217. {
  7218. designer.SetDataSource("BHotelTBRDRCB", leftBindData.cb);
  7219. designer.SetDataSource("BHotelTBRRS", leftBindData.rs);
  7220. designer.SetDataSource("BHotelTBRXS", leftBindData.xs);
  7221. designer.SetDataSource("BHotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7222. designer.SetDataSource("BHotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7223. designer.SetDataSource("BHotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7224. designer.SetDataSource("BHotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7225. designer.SetDataSource("BHotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7226. }
  7227. //SGR
  7228. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  7229. if (leftBindData != null)
  7230. {
  7231. designer.SetDataSource("BHotelSGRDRCB", leftBindData.cb);
  7232. designer.SetDataSource("BHotelSGRRS", leftBindData.rs);
  7233. designer.SetDataSource("BHotelSGRXS", leftBindData.xs);
  7234. designer.SetDataSource("BHotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7235. designer.SetDataSource("BHotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7236. designer.SetDataSource("BHotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7237. designer.SetDataSource("BHotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7238. designer.SetDataSource("BHotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7239. }
  7240. //JS/ES
  7241. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  7242. if (leftBindData != null)
  7243. {
  7244. designer.SetDataSource("BHotelJSESDRCB", leftBindData.cb);
  7245. designer.SetDataSource("BHotelJSESRS", leftBindData.rs);
  7246. designer.SetDataSource("BHotelJSESXS", leftBindData.xs);
  7247. designer.SetDataSource("BHotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7248. designer.SetDataSource("BHotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7249. designer.SetDataSource("BHotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7250. designer.SetDataSource("BHotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7251. designer.SetDataSource("BHotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7252. }
  7253. //SUITE
  7254. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  7255. if (leftBindData != null)
  7256. {
  7257. designer.SetDataSource("BHotelSUITEDRCB", leftBindData.cb);
  7258. designer.SetDataSource("BHotelSUITERS", leftBindData.rs);
  7259. designer.SetDataSource("BHotelSUITEXS", leftBindData.xs);
  7260. designer.SetDataSource("BHotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7261. designer.SetDataSource("BHotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7262. designer.SetDataSource("BHotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7263. designer.SetDataSource("BHotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7264. designer.SetDataSource("BHotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7265. }
  7266. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  7267. if (leftBindData != null)
  7268. {
  7269. designer.SetDataSource("BDJDRCB", leftBindData.cb);
  7270. designer.SetDataSource("BDJRS", leftBindData.rs);
  7271. designer.SetDataSource("BDJXS", leftBindData.xs);
  7272. designer.SetDataSource("BDJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7273. designer.SetDataSource("BDJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7274. designer.SetDataSource("BDJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7275. designer.SetDataSource("BDJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7276. designer.SetDataSource("BDJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7277. }
  7278. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  7279. if (leftBindData != null)
  7280. {
  7281. designer.SetDataSource("BGWDRCD", leftBindData.cb);
  7282. designer.SetDataSource("BGWRS", leftBindData.rs);
  7283. designer.SetDataSource("BGWXS", leftBindData.xs);
  7284. designer.SetDataSource("BGWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7285. designer.SetDataSource("BGWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7286. designer.SetDataSource("BGWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7287. designer.SetDataSource("BGWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7288. designer.SetDataSource("BGWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7289. }
  7290. #region 优化方案
  7291. //Dictionary<string, object> excelBind = new Dictionary<string, object>();
  7292. //excelBind.Add("零用金", new {
  7293. //cb="",
  7294. //rs="",
  7295. //xs ="",
  7296. //zcb = "",
  7297. //});
  7298. #endregion
  7299. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  7300. if (leftBindData != null)
  7301. {
  7302. designer.SetDataSource("BLYJDRCB", leftBindData.cb);
  7303. designer.SetDataSource("BLYJRS", leftBindData.rs);
  7304. designer.SetDataSource("BLYJXS", leftBindData.xs);
  7305. designer.SetDataSource("BLYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7306. designer.SetDataSource("BLYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7307. designer.SetDataSource("BLYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7308. designer.SetDataSource("BLYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7309. designer.SetDataSource("BLYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7310. }
  7311. #endregion
  7312. #region B段Right信息
  7313. right = dto.rightInfo.Find(x => x.Type == "B");
  7314. if (right == null)
  7315. {
  7316. return Ok(jw);
  7317. }
  7318. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  7319. if (rightBindData != null)
  7320. {
  7321. //经济舱 + 双人间 TBR
  7322. designer.SetDataSource("BlblJJCTBRDRCB", rightBindData.cb);
  7323. designer.SetDataSource("BtxtJJCTBRRS", rightBindData.rs);
  7324. designer.SetDataSource("BlblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7325. designer.SetDataSource("BlblJJCTBRDRBJ", rightBindData.bj);
  7326. designer.SetDataSource("BlblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7327. designer.SetDataSource("BlblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7328. designer.SetDataSource("BlblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7329. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7330. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7331. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7332. }
  7333. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  7334. if (rightBindData != null)
  7335. {
  7336. //经济舱 + 单人间 SGR
  7337. designer.SetDataSource("BlblJJCSGRDRCB", rightBindData.cb);
  7338. designer.SetDataSource("BtxtJJCSGRRS", rightBindData.rs);
  7339. designer.SetDataSource("BlblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7340. designer.SetDataSource("BlblJJCSGRDRBJ", rightBindData.bj);
  7341. designer.SetDataSource("BlblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7342. designer.SetDataSource("BlblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7343. designer.SetDataSource("BlblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7344. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7345. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7346. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7347. }
  7348. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  7349. if (rightBindData != null)
  7350. {
  7351. //公务舱 + 单人间 SGR
  7352. designer.SetDataSource("BlblGWCSGRCB", rightBindData.cb);
  7353. designer.SetDataSource("BlblGWCSGRRS", rightBindData.rs);
  7354. designer.SetDataSource("BlblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7355. designer.SetDataSource("BlblGWCSGRDRBJ", rightBindData.bj);
  7356. designer.SetDataSource("BlblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7357. designer.SetDataSource("BlblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7358. designer.SetDataSource("BlblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7359. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7360. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7361. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7362. }
  7363. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7364. if (rightBindData != null)
  7365. {
  7366. //公务舱 + 小套房 JSES
  7367. designer.SetDataSource("BlblGWCJSESDRCB", rightBindData.cb);
  7368. designer.SetDataSource("BtxtGWCJSESRS", rightBindData.rs);
  7369. designer.SetDataSource("BlblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7370. designer.SetDataSource("BlblGWCJSESDRBJ", rightBindData.bj);
  7371. designer.SetDataSource("BlblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7372. designer.SetDataSource("BlblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7373. designer.SetDataSource("BlblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7374. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7375. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7376. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7377. }
  7378. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  7379. if (rightBindData != null)
  7380. {
  7381. //公务舱 + 小套房 JSES
  7382. designer.SetDataSource("BlblGWCSUITEDRCB", rightBindData.cb);
  7383. designer.SetDataSource("BtxtGWCSUITERS", rightBindData.rs);
  7384. designer.SetDataSource("BlblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7385. designer.SetDataSource("BlblGWCSUITEDRBJ", rightBindData.bj);
  7386. designer.SetDataSource("BlblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7387. designer.SetDataSource("BlblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7388. designer.SetDataSource("BlblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7389. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7390. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7391. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7392. }
  7393. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7394. if (rightBindData != null)
  7395. {
  7396. //经济舱 + 大套房
  7397. designer.SetDataSource("BlblJJCSUITEDRCB", rightBindData.cb);
  7398. designer.SetDataSource("BtxtJJCSUITERS", rightBindData.rs);
  7399. designer.SetDataSource("BlblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7400. designer.SetDataSource("BlblJJCSUITEDRBJ", rightBindData.bj);
  7401. designer.SetDataSource("BlblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7402. designer.SetDataSource("BlblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7403. designer.SetDataSource("BlblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7404. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7405. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7406. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7407. }
  7408. #endregion
  7409. #region 标题
  7410. designer.SetDataSource("CostBDRCB", "单人成本");
  7411. designer.SetDataSource("CostBRS", "人数");
  7412. designer.SetDataSource("CostBXS", "系数");
  7413. designer.SetDataSource("CostBZCB", "总成本");
  7414. designer.SetDataSource("CostBDRBJ", "单人报价");
  7415. designer.SetDataSource("CostBZBJ", "总报价");
  7416. designer.SetDataSource("CostBDRLR", "单人利润");
  7417. designer.SetDataSource("CostBZLR", "总利润");
  7418. designer.SetDataSource("CostBDRCBOM", "单人成本");
  7419. designer.SetDataSource("CostBRSOM", "人数");
  7420. designer.SetDataSource("CostBZCBOM", "总成本");
  7421. designer.SetDataSource("CostBDRBJOM", "单人报价");
  7422. designer.SetDataSource("CostBZBJOM", "总报价");
  7423. designer.SetDataSource("CostBDRLROM", "单人利润");
  7424. designer.SetDataSource("CostBZLROM", "总利润");
  7425. #endregion
  7426. }
  7427. #endregion
  7428. designer.SetDataSource("TzZCB2", TzZCB2);
  7429. designer.SetDataSource("TzZBJ2", TzZBJ2);
  7430. designer.SetDataSource("TzZLR2", TzZLR2);
  7431. string[] dataSourceKeys = new string[]
  7432. {
  7433. "VF",
  7434. "TGS",
  7435. "TGOF",
  7436. "TGM",
  7437. "TGA",
  7438. "TGTF",
  7439. "TGEF",
  7440. "CFM",
  7441. "CFOF",
  7442. "B",
  7443. "L",
  7444. "D",
  7445. "TBR",
  7446. "SGR",
  7447. "JSES",
  7448. "Suite",
  7449. "TV",
  7450. "1L",
  7451. "IF",
  7452. "EF",
  7453. "BRF",
  7454. "TE",
  7455. "TGT",
  7456. "DRVT",
  7457. "PC",
  7458. "TLF",
  7459. "ECT"
  7460. };
  7461. foreach (var item in dataSourceKeys)
  7462. {
  7463. var find = dto.titleModel.FirstOrDefault(x => x.label.Replace(" ", "").Replace("/", "") == item);
  7464. if (find != null)
  7465. {
  7466. designer.SetDataSource(item, find.text);
  7467. }
  7468. else
  7469. {
  7470. designer.SetDataSource(item, 0);
  7471. }
  7472. }
  7473. designer.SetDataSource(dt);
  7474. //根据数据源处理生成报表内容
  7475. designer.Process();
  7476. designer.Workbook.Worksheets[0].Name = "清单";
  7477. Worksheet sheet = designer.Workbook.Worksheets[0];
  7478. foreach (var Rowindex in hideRowsList)
  7479. {
  7480. ws.Cells.HideRows(Rowindex, 2);
  7481. }
  7482. byte[] bytes = null;
  7483. string strFileName = di.TeamName + "-团组-成本.xls";
  7484. using (MemoryStream stream = new MemoryStream())
  7485. {
  7486. designer.Workbook.Save(stream, Aspose.Cells.SaveFormat.Xlsx);
  7487. bytes = stream.ToArray();
  7488. }
  7489. return Ok(JsonView(true, "", new
  7490. {
  7491. Data = bytes,
  7492. strFileName,
  7493. }));
  7494. }
  7495. /// <summary>
  7496. /// 导出客户报表
  7497. /// </summary>
  7498. /// <returns></returns>
  7499. [HttpPost]
  7500. public async Task<IActionResult> ExportClientWordFile(ExportClientWordFileDto dto)
  7501. {
  7502. var jw = JsonView(false);
  7503. if (dto.Diid == 0)
  7504. {
  7505. return Ok(JsonView(false, "请传递团组id"));
  7506. }
  7507. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  7508. if (deleInfo.Code != 0)
  7509. {
  7510. return Ok(JsonView(false, "团组信息查询失败!"));
  7511. }
  7512. var di = deleInfo.Data as DelegationInfoWebView;
  7513. if (di == null)
  7514. {
  7515. return Ok(JsonView(false, "团组信息查询失败!"));
  7516. }
  7517. //文件名
  7518. //string strFileName = di.TeamName + "-团组-客户报价.doc";
  7519. //获取模板
  7520. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/团组-客户报价.doc");
  7521. //载入模板
  7522. Document doc = new Document(tmppath);
  7523. Aspose.Words.DocumentBuilder builder = new Aspose.Words.DocumentBuilder(doc);
  7524. Dictionary<string, string> DickeyValue = new Dictionary<string, string>();
  7525. DickeyValue.Add("DickeyValue", di.TeamName); //团组名
  7526. var ParameterList = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(dto.Diid);
  7527. var AParameter = ParameterList.Find(x => x.CostType == "A");
  7528. var BParameter = ParameterList.Find(x => x.CostType == "B");
  7529. if (AParameter == null)
  7530. {
  7531. return Ok(JsonView(false, "系数不存在!"));
  7532. }
  7533. string CarGuides, TzNumber, CarGuides1, Meal, SubsidizedMeals, NightRepair, AttractionsTickets, MiscellaneousFees, ATip, TzHotelDesc, Offcial, PettyCash, Visa, TrainTicket, TicketPrice
  7534. , TzAirDesc, TzZCost;
  7535. CarGuides = TzNumber = CarGuides1 = Meal = SubsidizedMeals = NightRepair = AttractionsTickets = MiscellaneousFees = ATip = TzHotelDesc = Offcial = PettyCash = Visa = TrainTicket = TicketPrice
  7536. = TzAirDesc = TzZCost = string.Empty;
  7537. TzNumber = AParameter.CostTypenumber.ToString();
  7538. CarGuides = "RMB " + (AParameter.DJCB * AParameter.DJXS).ToString("#0.00");
  7539. CarGuides1 = dto.CarGuides1;
  7540. Meal = dto.Meal;
  7541. SubsidizedMeals = dto.SubsidizedMeals;
  7542. NightRepair = dto.NightRepair;
  7543. AttractionsTickets = dto.AttractionsTickets;
  7544. MiscellaneousFees = dto.MiscellaneousFees;
  7545. ATip = dto.ATip;
  7546. TzHotelDesc = "";
  7547. Offcial = "RMB " + (AParameter.GWCB * AParameter.GWXS).ToString("#0.00");
  7548. PettyCash = "RMB " + (AParameter.LYJCB * AParameter.LYJXS).ToString("#0.00");
  7549. Visa = "RMB " + (AParameter.VisaCB * AParameter.VisaXS + AParameter.HSCB * AParameter.HSXS + AParameter.BXCB * AParameter.BXXS).ToString("#0.00");
  7550. TrainTicket = "RMB " + (AParameter.HCPCB * AParameter.HCPXS).ToString("#0.00");
  7551. TicketPrice = "RMB " + (AParameter.CPCB * AParameter.CPXS).ToString("#0.00");
  7552. TzAirDesc = "";
  7553. TzZCost = dto.TzZCost;
  7554. var TzHotelDescArr = new string[] { "SGR", "JSES", "SUITE", "TBR" };
  7555. var TzAirDescArr = new string[] { "经济舱", "公务舱" };
  7556. var index = 1;
  7557. var AinfoArr = dto.leftInfo.Find(x => x.Type == "A");
  7558. foreach (var item in TzHotelDescArr)
  7559. {
  7560. if (AinfoArr != null)
  7561. {
  7562. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7563. if (Ainfo != null)
  7564. {
  7565. if (int.Parse(Ainfo.rs) <= 0)
  7566. {
  7567. continue;
  7568. }
  7569. var hotelText = string.Empty;
  7570. switch (item)
  7571. {
  7572. case "SGR":
  7573. hotelText = "单人间";
  7574. break;
  7575. case "JSES":
  7576. hotelText = "小套房";
  7577. break;
  7578. case "SUITE":
  7579. hotelText = "套房";
  7580. break;
  7581. case "TBR":
  7582. hotelText = "双人间";
  7583. break;
  7584. }
  7585. if (item != "TBR")
  7586. {
  7587. 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";
  7588. }
  7589. else
  7590. {
  7591. 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";
  7592. }
  7593. index++;
  7594. }
  7595. }
  7596. }
  7597. index = 1;
  7598. foreach (var item in TzAirDescArr)
  7599. {
  7600. if (AinfoArr != null)
  7601. {
  7602. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7603. if (Ainfo != null)
  7604. {
  7605. if (int.Parse(Ainfo.rs) <= 0)
  7606. {
  7607. continue;
  7608. }
  7609. 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";
  7610. index++;
  7611. }
  7612. }
  7613. }
  7614. if (dto.costType == "B")
  7615. {
  7616. if (BParameter == null)
  7617. {
  7618. return Ok(JsonView(false, "B段系数不存在!"));
  7619. }
  7620. CarGuides = CarGuides.Insert(0, "A段 ") + " B段 RMB" + (BParameter.DJCB * BParameter.DJXS).ToString("#0.00");
  7621. Offcial = Offcial.Insert(0, "A段 ") + " B段 RMB " + (BParameter.GWCB * BParameter.GWXS).ToString("#0.00");
  7622. PettyCash = PettyCash.Insert(0, "A段 ") + " B段 RMB " + (BParameter.LYJCB * BParameter.LYJXS).ToString("#0.00");
  7623. Visa = Visa.Insert(0, "A段 ") + " B段 RMB " + (BParameter.VisaCB * BParameter.VisaXS + BParameter.HSCB * BParameter.HSXS + BParameter.BXCB * BParameter.BXXS).ToString("#0.00");
  7624. TrainTicket = TrainTicket.Insert(0, "A段 ") + " B段 RMB " + (BParameter.HCPCB * BParameter.HCPXS).ToString("#0.00");
  7625. TicketPrice = TicketPrice.Insert(0, "A段 ") + " B段 RMB " + (BParameter.CPCB * BParameter.CPXS).ToString("#0.00");
  7626. AinfoArr = dto.leftInfo.Find(x => x.Type == "B");
  7627. foreach (var item in TzHotelDescArr)
  7628. {
  7629. if (AinfoArr != null)
  7630. {
  7631. TzHotelDesc += "B段信息 \r\n";
  7632. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7633. if (Ainfo != null)
  7634. {
  7635. if (int.Parse(Ainfo.rs) <= 0)
  7636. {
  7637. continue;
  7638. }
  7639. var hotelText = string.Empty;
  7640. switch (item)
  7641. {
  7642. case "SGR":
  7643. hotelText = "单人间";
  7644. break;
  7645. case "JSES":
  7646. hotelText = "小套房";
  7647. break;
  7648. case "SUITE":
  7649. hotelText = "套房";
  7650. break;
  7651. case "TBR":
  7652. hotelText = "双人间";
  7653. break;
  7654. }
  7655. if (item != "TBR")
  7656. {
  7657. 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";
  7658. }
  7659. else
  7660. {
  7661. 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";
  7662. }
  7663. index++;
  7664. }
  7665. TzHotelDesc = TzHotelDesc.Insert(0, "A段信息 \r\n");
  7666. }
  7667. }
  7668. index = 1;
  7669. foreach (var item in TzAirDescArr)
  7670. {
  7671. if (AinfoArr != null)
  7672. {
  7673. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7674. if (Ainfo != null)
  7675. {
  7676. if (int.Parse(Ainfo.rs) <= 0)
  7677. {
  7678. continue;
  7679. }
  7680. 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";
  7681. index++;
  7682. }
  7683. }
  7684. }
  7685. }
  7686. Visa = Visa.Insert(0, "签证及保险(含核酸检测): ");
  7687. DickeyValue.Add("TzNumber", TzNumber); //团组人数
  7688. DickeyValue.Add("CarGuides", CarGuides); //地接单人报价
  7689. DickeyValue.Add("CarGuides1", CarGuides1); // 地接 - 车导费
  7690. DickeyValue.Add("Meal", Meal); // 地接 - 餐费
  7691. DickeyValue.Add("SubsidizedMeals", SubsidizedMeals);// 地接 - 餐补
  7692. DickeyValue.Add("NightRepair", NightRepair); // 地接 - 宿补
  7693. DickeyValue.Add("AttractionsTickets", AttractionsTickets); // 地接 - 景点
  7694. DickeyValue.Add("MiscellaneousFees", MiscellaneousFees); // 地接 - 杂费
  7695. DickeyValue.Add("ATip", ATip); // 地接 - 小费
  7696. DickeyValue.Add("TzHotelDesc", TzHotelDesc); //酒店
  7697. DickeyValue.Add("Offcial", Offcial); // 公务单人报价
  7698. DickeyValue.Add("PettyCash", PettyCash); // 零用金单人报价
  7699. DickeyValue.Add("Visa", Visa); // 签证单人报价
  7700. DickeyValue.Add("TrainTicket", TrainTicket); //火车票
  7701. DickeyValue.Add("TicketPrice", TicketPrice); //船票
  7702. DickeyValue.Add("TzAirDesc", TzAirDesc); //机票
  7703. DickeyValue.Add("TzZCost", TzZCost);
  7704. foreach (var key in DickeyValue.Keys)
  7705. {
  7706. if (doc.Range.Bookmarks[key] != null)
  7707. {
  7708. Bookmark mark = doc.Range.Bookmarks[key];
  7709. mark.Text = DickeyValue[key];
  7710. }
  7711. }
  7712. byte[] bytes = null;
  7713. string strFileName = di.TeamName + "-客户报价.doc";
  7714. using (MemoryStream stream = new MemoryStream())
  7715. {
  7716. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  7717. bytes = stream.ToArray();
  7718. }
  7719. return Ok(JsonView(true, "", new
  7720. {
  7721. Data = bytes,
  7722. strFileName,
  7723. }));
  7724. }
  7725. /// <summary>
  7726. /// 团组成本 各模块(酒店,地接,机票)成本提示
  7727. /// </summary>
  7728. /// <param name="dto"></param>
  7729. /// <returns></returns>
  7730. [HttpPost]
  7731. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  7732. public async Task<IActionResult> PostGroupCostModulePrompt(GroupCostModulePromptDto dto)
  7733. {
  7734. try
  7735. {
  7736. #region 参数验证
  7737. if (dto.DiId < 0)
  7738. {
  7739. return Ok(JsonView(false, "请传入有效的DiId参数!"));
  7740. }
  7741. List<int> cTableIds = new List<int>() {
  7742. 76 ,//酒店预订
  7743. 77 ,//行程
  7744. 79 ,//车/导游地接
  7745. 80 ,//签证
  7746. 81 ,//邀请/公务活
  7747. 82 ,//团组客户保险
  7748. 85 ,//机票预订
  7749. 98 ,//其他款项
  7750. 285 ,//收款退还
  7751. 751 ,//酒店早餐
  7752. 1015 // 超支费用
  7753. };
  7754. if (dto.CTable < 0 && !cTableIds.Contains(dto.CTable))
  7755. {
  7756. return Ok(JsonView(false, "请传入有效的CTable参数!"));
  7757. }
  7758. #endregion
  7759. //Grp_GroupCostParameter 预算表 Grp_GroupCost 详细费用列表
  7760. var _GroupCostParameters = _usersRep._sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  7761. if (_GroupCostParameters.Count <= 0)
  7762. {
  7763. return Ok(JsonView(false, "暂无该团组成本信息!", new List<dynamic>()));
  7764. }
  7765. if (_GroupCostParameters[0].IsShare == 0)
  7766. {
  7767. return Ok(JsonView(false, "该团组成本未完成!", new List<dynamic>()));
  7768. }
  7769. var _GroupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  7770. //处理date为空问题
  7771. if (_GroupCosts.Count > 0)
  7772. {
  7773. for (int i = 0; i < _GroupCosts.Count; i++)
  7774. {
  7775. if (string.IsNullOrEmpty(_GroupCosts[i].Date))
  7776. {
  7777. if (i > 0)
  7778. {
  7779. _GroupCosts[i].Date = _GroupCosts[i - 1].Date;
  7780. }
  7781. }
  7782. }
  7783. }
  7784. GroupCostModulePromptView _view = new GroupCostModulePromptView();
  7785. List<GroupCostModulePromptInfo> _ModulePromptInfos = new List<GroupCostModulePromptInfo>(); //机票存储多段
  7786. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  7787. string currCode = "";
  7788. #region currCode 验证
  7789. bool isInt = int.TryParse(_GroupCostParameters[0].Currency, out int intCurrency);
  7790. if (isInt)
  7791. {
  7792. var currData = currDatas.Find(it => it.Id == intCurrency);
  7793. if (currData != null)
  7794. {
  7795. currCode = currData.Name;
  7796. }
  7797. }
  7798. else
  7799. {
  7800. currCode = _GroupCostParameters[0].Currency.Trim();
  7801. }
  7802. #endregion
  7803. //op,酒店单段模式存储
  7804. GroupCostModulePromptInfo _ModulePromptInfo = new GroupCostModulePromptInfo()
  7805. {
  7806. CurrencyCode = currCode,
  7807. Rate = _GroupCostParameters[0].Rate,
  7808. CostType = _GroupCostParameters[0].CostType,
  7809. CostTypeStartTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeStartTime).ToString("yyyy-MM-dd"),
  7810. CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeendTime).ToString("yyyy-MM-dd"),
  7811. CostTypeNumber = _GroupCostParameters[0].CostTypenumber
  7812. };
  7813. List<dynamic> _ModuleSubPromptInfo = new List<dynamic>(); // 存储CTbale != 85 的动态数据
  7814. if (_GroupCostParameters.Count == 2)
  7815. {
  7816. _ModulePromptInfo.CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[1].CostTypeendTime).ToString("yyyy-MM-dd");
  7817. }
  7818. foreach (var item in _GroupCostParameters)
  7819. {
  7820. decimal _rate = 1;
  7821. decimal _rate1 = item.Rate;
  7822. decimal _scale = 1;
  7823. //decimal _scale = 0.95M; 雷怡 2024-06-11 10:06:08 屏蔽
  7824. #region 处理地接价格比例 总经理 国交部经理 主管 不下调 其他人 下调 5%
  7825. //var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  7826. //if (userInfo != null)
  7827. //{
  7828. // if (userInfo.DepId == 1 || userInfo.DepId == 7)
  7829. // {
  7830. // if (userInfo.JobPostId == 1 || userInfo.JobPostId == 22 || userInfo.JobPostId == 32)
  7831. // {
  7832. // _scale = 1.00M;
  7833. // }
  7834. // }
  7835. //}
  7836. #endregion
  7837. GroupCostModulePromptInfo modulePromptInfo = new GroupCostModulePromptInfo()
  7838. {
  7839. CurrencyCode = currCode,
  7840. Rate = _rate1,
  7841. CostType = item.CostType,
  7842. CostTypeStartTime = Convert.ToDateTime(item.CostTypeStartTime).ToString("yyyy-MM-dd"),
  7843. CostTypeEndTime = Convert.ToDateTime(item.CostTypeendTime).ToString("yyyy-MM-dd"),
  7844. CostTypeNumber = item.CostTypenumber
  7845. };
  7846. if (_GroupCostParameters.Count > 1)
  7847. {
  7848. modulePromptInfo.CostTypeNumber = item.CostTypenumber;
  7849. }
  7850. else
  7851. {
  7852. modulePromptInfo.CostTypeNumber = item.LYJRS;
  7853. }
  7854. if (dto.CTable == 79)//
  7855. {
  7856. modulePromptInfo.IndividualCost = item.DJCB / modulePromptInfo.CostTypeNumber;
  7857. modulePromptInfo.TotalCost = item.DJCB;
  7858. }
  7859. List<string> costTypes = new List<string>() { "A", "B" };
  7860. List<Grp_GroupCost> _GroupCostsTypeData = new List<Grp_GroupCost>();
  7861. var _GroupCostsDuplicates = _GroupCostParameters.GroupBy(x => x.CostType).Select(y => y.FirstOrDefault());
  7862. if (_GroupCostsDuplicates.Count() == 1)
  7863. {
  7864. _GroupCostsTypeData = _GroupCosts;
  7865. }
  7866. else
  7867. {
  7868. _GroupCostsTypeData = _GroupCosts.Where(it => Convert.ToDateTime(it.Date) >= Convert.ToDateTime(item.CostTypeStartTime) &&
  7869. Convert.ToDateTime(it.Date) <= Convert.ToDateTime(item.CostTypeendTime)).ToList();
  7870. }
  7871. /*
  7872. * 76 酒店预订
  7873. * 77 行程
  7874. * 79 车/导游地接
  7875. * 80 签证
  7876. * 81 邀请/公务活动
  7877. * 82 团组客户保险
  7878. * 85 机票预订
  7879. * 98 其他款项
  7880. * 285 收款退还
  7881. * 751 酒店早餐
  7882. * 1015 超支费用
  7883. */
  7884. switch (dto.CTable)
  7885. {
  7886. case 76: // 酒店预订
  7887. _ModuleSubPromptInfo.AddRange(
  7888. _GroupCostsTypeData.Select(it => new
  7889. {
  7890. it.DAY,
  7891. it.Date,
  7892. it.ACCON,
  7893. it.ITIN,
  7894. it.SGR,
  7895. it.TBR,
  7896. it.JS_ES,
  7897. it.Suite
  7898. })
  7899. );
  7900. break;
  7901. case 79: // 车/导游地接
  7902. _ModuleSubPromptInfo.AddRange(
  7903. _GroupCostsTypeData.Select(it => new
  7904. {
  7905. Date = it.Date, //日期
  7906. CarFee = it.CarCost * _rate * _scale, //车费用
  7907. CarType = it.CarType, //车型
  7908. DriverFee = it.CFS * _rate * _scale, //司机工资
  7909. DriverTipsFee = it.DRVTips * _rate * _scale, //司机小费
  7910. DriverMealSubsidy = it.CFM * _rate * _scale, //司机餐补
  7911. DriverOvertimeFee = it.CFOF * _rate * _scale, //司机超时费用
  7912. GuideFee = it.TGS * _rate * _scale, //导游费用
  7913. GuideOvertimeFee = it.TGOF * _rate * _scale, //导游超时费用
  7914. GuideMealSubsidy = it.TGM * _rate * _scale, //导游餐补
  7915. GuideRoomSubsidy = it.TGA * _rate * _scale, //导游房补
  7916. GuideCarFare = it.TGTF * _rate * _scale, //导游交通费
  7917. GuideSpotFee = it.TGEF * _rate * _scale, //导游景点费
  7918. GuideTipsFee = it.TGTips * _rate * _scale, //导游小费
  7919. Breakfast = it.B * _rate * _scale, //早餐费
  7920. Lunch = it.L * _rate * _scale, //午餐费
  7921. Dinner = it.D * _rate * _scale, //晚餐费
  7922. TicketFee = it.EF * _rate * _scale, //门票费
  7923. SpentCash = it.PC * _rate * _scale, //零用金
  7924. LeadersFee = it.TLF * _rate * _scale, //领队费
  7925. DrinksSnacksFruitFee = it.B_R_F * _rate * _scale, //饮料零食水果
  7926. TravelSupplies = it.TE * _rate * _scale, //出行物资
  7927. })
  7928. );
  7929. break;
  7930. case 85: // 机票
  7931. List<dynamic> datas = new List<dynamic>();
  7932. datas.Add(
  7933. new
  7934. {
  7935. AirType = "经济舱",
  7936. AirNum = item.JJCRS,
  7937. AirDRCB = item.JJCCB,
  7938. AirZCB = (item.JJCRS * item.JJCCB)
  7939. }
  7940. );
  7941. datas.Add(
  7942. new
  7943. {
  7944. AirType = "公务舱",
  7945. AirNum = item.GWCRS,
  7946. AirDRCB = item.GWCCB,
  7947. AirZCB = (item.GWCRS * item.GWCCB)
  7948. }
  7949. );
  7950. var groupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  7951. var initDatas = groupCosts.Select(it => new { date = it.Date, week = it.Date.GetWeek() == "" ? "-" : it.Date.GetWeek(), itinerary = it.ITIN }).ToList();
  7952. modulePromptInfo.Data = new
  7953. {
  7954. airFeeData = datas,
  7955. airInitData = initDatas
  7956. };
  7957. _ModulePromptInfos.Add(modulePromptInfo);
  7958. break;
  7959. default:
  7960. break;
  7961. }
  7962. }
  7963. if (dto.CTable != 85)
  7964. {
  7965. _ModulePromptInfo.Data = _ModuleSubPromptInfo;
  7966. _ModulePromptInfos.Add(_ModulePromptInfo);
  7967. }
  7968. _view.ModulePromptInfos = _ModulePromptInfos;
  7969. return Ok(JsonView(true, "操作成功!", _view));
  7970. }
  7971. catch (Exception ex)
  7972. {
  7973. return Ok(JsonView(false, ex.Message));
  7974. }
  7975. }
  7976. /// <summary>
  7977. /// 根据黑屏代码重新生成行程
  7978. /// </summary>
  7979. /// <param name="dto"></param>
  7980. /// <returns></returns>
  7981. [HttpPost]
  7982. public IActionResult CraeteGroupCostTravel(GroupCostInItDto dto)
  7983. {
  7984. var jw = JsonView(false);
  7985. var Create = _GroupCostRepository.
  7986. CreateGroupCostByBlackCode(dto.Diid);
  7987. jw.Msg = Create.Msg;
  7988. if (Create.Code == 0)
  7989. {
  7990. jw.Code = 200;
  7991. jw.Data = new
  7992. {
  7993. groupCost = Create.Data,
  7994. blackCodeIsTrue = true
  7995. };
  7996. }
  7997. else
  7998. {
  7999. jw.Code = 400;
  8000. jw.Data = new
  8001. {
  8002. groupCost = Create.Data,
  8003. blackCodeIsTrue = false,
  8004. };
  8005. }
  8006. return Ok(jw);
  8007. }
  8008. /// <summary>
  8009. /// 成本获取OP历史车费用
  8010. /// </summary>
  8011. /// <param name="dto"></param>
  8012. /// <returns></returns>
  8013. [HttpPost]
  8014. public async Task<IActionResult> GetHistoryCarData(HistoryCarDataDto dto)
  8015. {
  8016. var jw = JsonView(false);
  8017. try
  8018. {
  8019. List<HistoryCarDataView> dbResult = new List<HistoryCarDataView>();
  8020. //获取现有所有车的数据
  8021. if (!dto.Param.IsNullOrWhiteSpace())
  8022. {
  8023. string sql = $@"
  8024. SELECT gdi.TeamName , gctggr.Area, gctggr.PriceName , gctggrc.Id ,gctggrc.Price , gctggrc.DatePrice , gctggrc.PriceContent , gctggrc.Currency , gctggr.ServiceStartTime , gctggr.ServiceEndTime
  8025. FROM Grp_CarTouristGuideGroundReservationsContent gctggrc inner join Grp_CarTouristGuideGroundReservations gctggr on
  8026. gctggrc.CTGGRId = gctggr.Id inner JOIN Grp_DelegationInfo gdi on gctggr.DiId = gdi.Id LEFT JOIN Sys_SetData ssd on ssd.Id = gctggr.PriceType
  8027. 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
  8028. AND gctggr.ServiceEndTime is not NULL
  8029. ORDER by gctggrc.id DESC
  8030. ";
  8031. dbResult = await _sqlSugar.SqlQueryable<HistoryCarDataView>(sql).ToListAsync();
  8032. var numeberResult = await Task.Run(() =>
  8033. {
  8034. var numberArr = dbResult.Where(x => int.TryParse(x.Area, out int number)).ToList();
  8035. _ = dbResult.RemoveAll(x => int.TryParse(x.Area, out int number));
  8036. return numberArr;
  8037. });
  8038. var cityArr = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  8039. foreach (var item in numeberResult)
  8040. {
  8041. var find = cityArr.Find(x => x.Id == int.Parse(item.Area)) ?? new Grp_NationalTravelFee
  8042. {
  8043. Country = "数据异常!",
  8044. City = string.Empty,
  8045. };
  8046. item.Area = find.Country + " " + find.City;
  8047. }
  8048. dbResult.AddRange(numeberResult);
  8049. if (dto.Param.Contains("、"))
  8050. {
  8051. var sp = dto.Param.Split("、");
  8052. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  8053. .Where(x =>
  8054. {
  8055. return System.Array.Exists(sp, e =>
  8056. {
  8057. bool where = false;
  8058. if (x.Area != null)
  8059. {
  8060. where = x.Area.Contains(e);
  8061. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  8062. {
  8063. return false;
  8064. }
  8065. }
  8066. if (x.PriceName != null && !where)
  8067. {
  8068. where = x.PriceName.Contains(e);
  8069. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  8070. {
  8071. return false;
  8072. }
  8073. }
  8074. return where;
  8075. });
  8076. }).ToList();
  8077. }
  8078. else
  8079. {
  8080. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  8081. .Where(x =>
  8082. {
  8083. bool where = false;
  8084. if (x.Area != null)
  8085. {
  8086. where = x.Area.Contains(dto.Param);
  8087. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  8088. {
  8089. return false;
  8090. }
  8091. }
  8092. if (x.PriceName != null && !where)
  8093. {
  8094. where = x.PriceName.Contains(dto.Param);
  8095. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  8096. {
  8097. return false;
  8098. }
  8099. }
  8100. return where;
  8101. }
  8102. )
  8103. .ToList();
  8104. }
  8105. }
  8106. var view = dbResult.Select(x =>
  8107. {
  8108. decimal dp = 0.00M;
  8109. var startB = DateTime.TryParse(x.Start.ToString(), out DateTime startD);
  8110. var endB = DateTime.TryParse(x.End.ToString(), out DateTime endD);
  8111. if (string.IsNullOrWhiteSpace(x.DatePrice))
  8112. {
  8113. if (startB && endB)
  8114. {
  8115. var timesp = endD.Subtract(startD);
  8116. if ((timesp.Days + 1) != 0)
  8117. {
  8118. dp = x.Price / (timesp.Days + 1);
  8119. }
  8120. }
  8121. }
  8122. else
  8123. {
  8124. dp = x.Price;
  8125. }
  8126. return new
  8127. {
  8128. start = startB ? startD.ToString("yyyy-MM-dd") : "",
  8129. end = endB ? endD.ToString("yyyy-MM-dd") : "",
  8130. x.Area,
  8131. x.id,
  8132. price = x.Price.ToString("F2"),
  8133. x.PriceName,
  8134. x.PriceContent,
  8135. x.TeamName,
  8136. x.DatePrice,
  8137. dayPrice = dp.ToString("F2"),
  8138. };
  8139. }).OrderByDescending(x => x.id).ToList();
  8140. jw = JsonView(true, "获取成功!", view);
  8141. }
  8142. catch (Exception e)
  8143. {
  8144. jw = JsonView(false, e.Message);
  8145. }
  8146. return Ok(jw);
  8147. }
  8148. #endregion
  8149. #region 酒店预订 新 雷怡 2023-12-28 17:45
  8150. /// <summary>
  8151. /// 酒店预订
  8152. /// 酒店费用列表 根据团组Id查询
  8153. /// </summary>
  8154. /// <param name="_dto"></param>
  8155. /// <returns></returns>
  8156. [HttpPost]
  8157. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8158. public async Task<IActionResult> PostHotelReservationsItemsByDiId(HotelReservationItemDto _dto)
  8159. {
  8160. #region 参数验证
  8161. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8162. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8163. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8164. #region 团组操作权限验证 76 酒店预定模块
  8165. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8166. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8167. #endregion
  8168. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8169. #region 页面操作权限验证
  8170. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8171. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8172. #endregion
  8173. #endregion
  8174. return Ok(await _hotelPriceRep._ItemsByDiId(_dto.PortType, _dto.DiId));
  8175. }
  8176. /// <summary>
  8177. /// 酒店预订
  8178. /// 基础数据
  8179. /// </summary>
  8180. /// <param name="_dto"></param>
  8181. /// <returns></returns>
  8182. [HttpPost]
  8183. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8184. public async Task<IActionResult> PostHotelReservationsBasicsDataInit(HotelReservationBasicsDataInitDto _dto)
  8185. {
  8186. #region 参数验证
  8187. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8188. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8189. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8190. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8191. #region 页面操作权限验证
  8192. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8193. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8194. #endregion
  8195. #region 团组操作权限验证 76 酒店预定模块
  8196. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8197. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8198. #endregion
  8199. #endregion
  8200. return Ok(await _hotelPriceRep._BasicsDataInit(_dto.PortType, _dto.DiId));
  8201. }
  8202. /// <summary>
  8203. /// 酒店预订
  8204. /// 创建 入住卷号码
  8205. /// </summary>
  8206. /// <param name="_dto"></param>
  8207. /// <returns></returns>
  8208. [HttpPost]
  8209. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8210. public async Task<IActionResult> PostHotelReservationsCreateCheckVolumeNo(HotelReservationBasicsDataInitDto _dto)
  8211. {
  8212. try
  8213. {
  8214. #region 参数验证
  8215. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8216. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8217. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8218. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8219. #region 页面操作权限验证
  8220. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8221. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8222. #endregion
  8223. #region 团组操作权限验证 76 酒店预定模块
  8224. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8225. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8226. #endregion
  8227. #endregion
  8228. Result data = await _hotelPriceRep._CreateCheckVolumeNo(_dto.DiId);
  8229. if (data.Code != 0)
  8230. {
  8231. return Ok(JsonView(false, data.Msg));
  8232. }
  8233. return Ok(JsonView(true, data.Msg, data.Data));
  8234. }
  8235. catch (Exception ex)
  8236. {
  8237. return Ok(JsonView(false, ex.Message));
  8238. }
  8239. }
  8240. /// <summary>
  8241. /// 酒店预订
  8242. /// 详情
  8243. /// </summary>
  8244. /// <param name="_dto"></param>
  8245. /// <returns></returns>
  8246. [HttpPost]
  8247. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8248. public async Task<IActionResult> PostHotelReservationsDetails(HotelReservationsDetailsDto _dto)
  8249. {
  8250. #region 参数验证
  8251. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入正确的UserId参数"));
  8252. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8253. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入正确的DiId参数"));
  8254. #region 团组操作权限验证 76 酒店预定模块
  8255. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8256. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8257. #endregion
  8258. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8259. #region 页面操作权限验证
  8260. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8261. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8262. #endregion
  8263. #endregion
  8264. return Ok(await _hotelPriceRep._Details(_dto.PortType, _dto.Id));
  8265. }
  8266. /// <summary>
  8267. /// 酒店预订
  8268. /// Add Or Edit
  8269. /// </summary>
  8270. /// <param name="_dto"></param>
  8271. /// <returns></returns>
  8272. [HttpPost]
  8273. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8274. public async Task<IActionResult> PostHotelReservationsAddOrEdit(HotelReservationsAddOrEditDto _dto)
  8275. {
  8276. #region 参数验证
  8277. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8278. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8279. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8280. #region 团组操作权限验证 76 酒店预定模块
  8281. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8282. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8283. #endregion
  8284. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8285. #region 页面操作权限验证
  8286. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8287. if (_dto.Id == 0) // Add
  8288. {
  8289. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  8290. }
  8291. else if (_dto.Id > 1) // Edit
  8292. {
  8293. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  8294. }
  8295. else return Ok(JsonView(false, "请输入正确的数据Id!"));
  8296. #endregion
  8297. #endregion
  8298. JsonView _view = await _hotelPriceRep._AddOrEdit(_dto);
  8299. if (_view.Code != 200)
  8300. {
  8301. return Ok(_view);
  8302. }
  8303. #region 应用推送
  8304. try
  8305. {
  8306. int ccpId = (int)_view.Data.GetType().GetProperty("ccpId").GetValue(_view.Data, null);
  8307. int sign = (int)_view.Data.GetType().GetProperty("sign").GetValue(_view.Data, null);
  8308. int hotelId = (int)_view.Data.GetType().GetProperty("hotelId").GetValue(_view.Data, null);
  8309. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  8310. //自动审核
  8311. await _feeAuditRep.FeeAutomaticAudit(1, _dto.DiId, hotelId);
  8312. }
  8313. catch (Exception ex)
  8314. {
  8315. }
  8316. #endregion
  8317. return Ok(_view);
  8318. }
  8319. /// <summary>
  8320. /// 酒店预订
  8321. /// Del
  8322. /// </summary>
  8323. /// <param name="_dto"></param>
  8324. /// <returns></returns>
  8325. [HttpPost]
  8326. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8327. public async Task<IActionResult> PostHotelReservationsDel(HotelReservationsDelDto _dto)
  8328. {
  8329. #region 参数验证
  8330. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8331. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8332. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8333. #region 团组操作权限验证 76 酒店预定模块
  8334. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8335. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8336. #endregion
  8337. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8338. #region 页面操作权限验证
  8339. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8340. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  8341. #endregion
  8342. #endregion
  8343. return Ok(await _hotelPriceRep._Del(_dto.Id, _dto.UserId));
  8344. }
  8345. /// <summary>
  8346. /// 酒店预订
  8347. /// 生成VOUCHER
  8348. /// 2024.05.06 之前版本
  8349. /// </summary>
  8350. /// <param name="_dto"></param>
  8351. /// <returns></returns>
  8352. [HttpPost]
  8353. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8354. public async Task<IActionResult> PostHotelReservationsCreateVoucher1(HotelReservationsCreateVoucherDto _dto)
  8355. {
  8356. try
  8357. {
  8358. #region 参数验证
  8359. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8360. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8361. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8362. #region 团组操作权限验证 76 酒店预定模块
  8363. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8364. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8365. #endregion
  8366. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8367. #region 页面操作权限验证
  8368. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8369. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8370. #endregion
  8371. #endregion
  8372. Grp_HotelReservations hr = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.Id == _dto.Id).FirstAsync();
  8373. //判断数据是否完整
  8374. if (hr != null)
  8375. {
  8376. if (!string.IsNullOrEmpty(hr.DetermineNo))
  8377. {
  8378. string strFileName = "HotelStatement/";
  8379. Grp_DelegationInfo dele = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == _dto.DiId).FirstAsync();
  8380. if (dele != null)
  8381. strFileName += dele.TourCode;
  8382. //载入模板
  8383. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/酒店预订模板.doc";
  8384. Document doc = new Document(sss);
  8385. DocumentBuilder builder = new DocumentBuilder(doc);
  8386. #region 替换Word模板书签内容
  8387. //这里可以创建个DataTable循环添加书签的值,这里提示一下就不多做修改了
  8388. //入住卷预定号码
  8389. if (doc.Range.Bookmarks["VNO"] != null)
  8390. {
  8391. Bookmark mark = doc.Range.Bookmarks["VNO"];
  8392. mark.Text = hr.CheckNumber;
  8393. }
  8394. //酒店时间
  8395. if (doc.Range.Bookmarks["Date"] != null)
  8396. {
  8397. Bookmark mark = doc.Range.Bookmarks["Date"];
  8398. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  8399. }
  8400. //团号
  8401. if (doc.Range.Bookmarks["TNo"] != null)
  8402. {
  8403. Bookmark mark = doc.Range.Bookmarks["TNo"];
  8404. mark.Text = dele.TourCode;
  8405. }
  8406. //预定号码
  8407. if (doc.Range.Bookmarks["BookingId"] != null)
  8408. {
  8409. Bookmark mark = doc.Range.Bookmarks["BookingId"];
  8410. mark.Text = hr.ReservationsNo;
  8411. }
  8412. if (doc.Range.Bookmarks["HotelConfirmNo"] != null)
  8413. {
  8414. Bookmark mark = doc.Range.Bookmarks["HotelConfirmNo"];
  8415. mark.Text = hr.DetermineNo;
  8416. }
  8417. //酒店城市
  8418. if (doc.Range.Bookmarks["City"] != null)
  8419. {
  8420. Bookmark mark = doc.Range.Bookmarks["City"];
  8421. mark.Text = hr.City;
  8422. }
  8423. //酒店名称
  8424. if (doc.Range.Bookmarks["HName"] != null)
  8425. {
  8426. Bookmark mark = doc.Range.Bookmarks["HName"];
  8427. mark.Text = hr.HotelName;
  8428. }
  8429. //酒店地址
  8430. if (doc.Range.Bookmarks["Address"] != null)
  8431. {
  8432. Bookmark mark = doc.Range.Bookmarks["Address"];
  8433. mark.Text = hr.HotelAddress;
  8434. }
  8435. //酒店电话
  8436. if (doc.Range.Bookmarks["Tel"] != null)
  8437. {
  8438. Bookmark mark = doc.Range.Bookmarks["Tel"];
  8439. mark.Text = hr.HotelTel;
  8440. }
  8441. //酒店传真
  8442. if (doc.Range.Bookmarks["Fax"] != null)
  8443. {
  8444. Bookmark mark = doc.Range.Bookmarks["Fax"];
  8445. if (!string.IsNullOrWhiteSpace(hr.HotelFax))
  8446. {
  8447. mark.Text = hr.HotelFax;
  8448. }
  8449. }
  8450. //入住时间
  8451. if (doc.Range.Bookmarks["CIn"] != null)
  8452. {
  8453. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  8454. Bookmark mark = doc.Range.Bookmarks["CIn"];
  8455. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year;
  8456. }
  8457. //退房时间
  8458. if (doc.Range.Bookmarks["COut"] != null)
  8459. {
  8460. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  8461. Bookmark mark = doc.Range.Bookmarks["COut"];
  8462. mark.Text = dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8463. }
  8464. //客户名称
  8465. if (doc.Range.Bookmarks["GName"] != null)
  8466. {
  8467. string guestName = "";
  8468. string[] clients = new string[] { };
  8469. if (hr.GuestName.Contains(","))
  8470. {
  8471. clients = hr.GuestName.Split(",");
  8472. }
  8473. else
  8474. {
  8475. clients = new string[] { hr.GuestName };
  8476. }
  8477. List<int> clientIds_int = new List<int>();
  8478. if (clients.Length > 0)
  8479. {
  8480. foreach (var item in clients)
  8481. {
  8482. if (item.IsNumeric())
  8483. {
  8484. clientIds_int.Add(int.Parse(item));
  8485. }
  8486. }
  8487. }
  8488. if (clientIds_int.Count > 0)
  8489. {
  8490. var _clientDatas = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && clientIds_int.Contains(it.Id)).ToList();
  8491. foreach (var client in _clientDatas)
  8492. {
  8493. //男
  8494. if (client.Sex == 0) guestName += $"Mr.";
  8495. //女
  8496. else if (client.Sex == 1) guestName += $"Ms.";
  8497. if (!String.IsNullOrEmpty(client.FirstName + client.LastName))
  8498. {
  8499. guestName += $"{string.Join("", client.FirstName.GetTotalPingYin()).ToUpper()} {string.Join("", client.LastName.GetTotalPingYin()).ToUpper()},";
  8500. }
  8501. //guestName += $"{client.Pinyin},";
  8502. }
  8503. if (guestName.Length > 0)
  8504. {
  8505. guestName = guestName.Substring(0, guestName.Length - 1);
  8506. }
  8507. }
  8508. else
  8509. {
  8510. guestName = hr.GuestName;
  8511. }
  8512. Bookmark mark = doc.Range.Bookmarks["GName"];
  8513. mark.Text = guestName;
  8514. }
  8515. //房间介绍
  8516. if (doc.Range.Bookmarks["ROOM"] != null)
  8517. {
  8518. Bookmark mark = doc.Range.Bookmarks["ROOM"];
  8519. mark.Text = hr.RoomExplanation;
  8520. }
  8521. //报价描述
  8522. if (doc.Range.Bookmarks["NOTE"] != null)
  8523. {
  8524. Bookmark mark = doc.Range.Bookmarks["NOTE"];
  8525. Sys_SetData ss = _sqlSugar.Queryable<Sys_SetData>().First(a => a.Id == hr.ReservationsWebsite);
  8526. if (ss != null)
  8527. mark.Text = ss.Name;
  8528. }
  8529. //入住时间
  8530. if (doc.Range.Bookmarks["CheckIn"] != null)
  8531. {
  8532. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  8533. Bookmark mark = doc.Range.Bookmarks["CheckIn"];
  8534. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year + " ";
  8535. }
  8536. //退房时间
  8537. if (doc.Range.Bookmarks["CheckOut"] != null)
  8538. {
  8539. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  8540. Bookmark mark = doc.Range.Bookmarks["CheckOut"];
  8541. mark.Text = " " + dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8542. }
  8543. //日期
  8544. if (doc.Range.Bookmarks["DT"] != null)
  8545. {
  8546. Bookmark mark = doc.Range.Bookmarks["DT"];
  8547. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  8548. }
  8549. //名称
  8550. if (doc.Range.Bookmarks["VName"] != null)
  8551. {
  8552. Bookmark mark = doc.Range.Bookmarks["VName"];
  8553. mark.Text = hr.HotelName;
  8554. }
  8555. //号码
  8556. if (doc.Range.Bookmarks["VOUCHERNO"] != null)
  8557. {
  8558. Bookmark mark = doc.Range.Bookmarks["VOUCHERNO"];
  8559. mark.Text = hr.CheckNumber;
  8560. }
  8561. #endregion
  8562. strFileName += "VOUCHER.doc";
  8563. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  8564. doc.Save(fileDir);
  8565. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  8566. return Ok(JsonView(true, "操作成功!", Url));
  8567. }
  8568. else
  8569. {
  8570. return Ok(JsonView(false, "酒店确定号码未填写,无法生成Voucher!"));
  8571. }
  8572. }
  8573. else
  8574. {
  8575. return Ok(JsonView(false, "该条数据已删除或不存在!"));
  8576. }
  8577. }
  8578. catch (Exception ex)
  8579. {
  8580. return Ok(JsonView(false, ex.Message));
  8581. }
  8582. }
  8583. /// <summary>
  8584. /// 酒店预订
  8585. /// 生成VOUCHER
  8586. /// 2024.05.06 之后版本
  8587. /// </summary>
  8588. /// <param name="_dto"></param>
  8589. /// <returns></returns>
  8590. [HttpPost]
  8591. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8592. public async Task<IActionResult> PostHotelReservationsCreateVoucher(HotelReservationsCreateVoucherDto _dto)
  8593. {
  8594. #region 参数验证
  8595. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  8596. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8597. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  8598. #region 团组操作权限验证 76 酒店预定模块
  8599. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8600. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  8601. #endregion
  8602. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8603. #region 页面操作权限验证
  8604. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8605. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8606. #endregion
  8607. #endregion
  8608. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  8609. //判断数据是否完整
  8610. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "请先录入酒店预订信息!", ""));
  8611. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  8612. string strFileName = "HotelStatement/";
  8613. string guestNames = ""; //格式Mr.xxx Ms.xxx
  8614. List<HotelVoucherInfoView> vouchers = new List<HotelVoucherInfoView>();
  8615. #region 数据处理
  8616. List<int> guestIds = new List<int>();
  8617. int index = 0;
  8618. foreach (var item in hrDtas)
  8619. {
  8620. if (item.GuestName.Contains(","))
  8621. {
  8622. string[] guestIdArr = item.GuestName.Split(',');
  8623. foreach (var guestIdStr in guestIdArr)
  8624. {
  8625. bool guestBool = int.TryParse(guestIdStr, out int guestId);
  8626. if (guestBool)
  8627. {
  8628. guestIds.Add(guestId);
  8629. }
  8630. }
  8631. }
  8632. else guestNames += item.GuestName;
  8633. var voucherInfo = new HotelVoucherInfoView()
  8634. {
  8635. HotelName = item.HotelName,
  8636. CheckInDate = item.CheckInDate,
  8637. CheckOutDate = item.CheckOutDate,
  8638. ConfirmationNumber = item.DetermineNo.Trim(),
  8639. RoomType = item.RoomExplanation
  8640. };
  8641. vouchers.Add(voucherInfo);
  8642. }
  8643. if (guestIds.Count > 0)
  8644. {
  8645. guestIds = guestIds.Distinct().ToList();
  8646. var guestDatas = await _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && guestIds.Contains(it.Id)).ToListAsync();
  8647. if (guestDatas.Count > 0)
  8648. {
  8649. guestNames = "";
  8650. foreach (var guest in guestDatas)
  8651. {
  8652. string guestName = "";
  8653. if (guest.Sex == 0) guestName += @"MR.";
  8654. else if (guest.Sex == 1) guestName += @"MS.";
  8655. if (guest.Pinyin == null) guestName += $"{string.Join("", guest.LastName.GetTotalPingYin()).ToUpper()}/{string.Join("", guest.FirstName.GetTotalPingYin()).ToUpper()}";
  8656. else guestName += @$"{guest.Pinyin.Replace(" ", "")}";
  8657. guestNames += @$"{guestName.Trim()}、";
  8658. }
  8659. if (guestNames.Length > 0)
  8660. {
  8661. guestNames = guestNames.Substring(0, guestNames.Length - 1);
  8662. }
  8663. }
  8664. }
  8665. #endregion
  8666. //载入模板
  8667. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/Voucher-2024Versions.docx";
  8668. Document doc = new Document(sss);
  8669. DocumentBuilder builder = new DocumentBuilder(doc);
  8670. if (doc.Range.Bookmarks["GuestName"] != null)
  8671. {
  8672. Bookmark mark = doc.Range.Bookmarks["GuestName"];
  8673. mark.Text = guestNames;
  8674. }
  8675. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  8676. Aspose.Words.Tables.Table table = allTables[0] as Aspose.Words.Tables.Table;
  8677. vouchers = vouchers.OrderBy(it => it.CheckInDate).ToList();
  8678. for (int i = 1; i <= vouchers.Count; i++)
  8679. {
  8680. HotelVoucherInfoView hviv = vouchers[i - 1];
  8681. builder.MoveToCell(0, i, 0, 0);
  8682. builder.Write(hviv.HotelName);
  8683. builder.MoveToCell(0, i, 1, 0);
  8684. builder.Write(hviv.CheckInDate);
  8685. builder.MoveToCell(0, i, 2, 0);
  8686. builder.Write(hviv.CheckOutDate);
  8687. builder.MoveToCell(0, i, 3, 0);
  8688. builder.Write(hviv.RoomType);
  8689. builder.MoveToCell(0, i, 4, 0);
  8690. builder.Write(hviv.ConfirmationNumber);
  8691. }
  8692. //删除多余行
  8693. int currRowIndex = vouchers.Count + 1;
  8694. int delRows = 21 - currRowIndex;
  8695. if (delRows > 0)
  8696. {
  8697. for (int i = 0; i < delRows; i++)
  8698. {
  8699. table.Rows.RemoveAt(currRowIndex);
  8700. //cultivateRowIndex++;
  8701. }
  8702. }
  8703. strFileName += "VOUCHER.docx";
  8704. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  8705. doc.Save(fileDir);
  8706. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  8707. return Ok(JsonView(true, "操作成功!", Url));
  8708. }
  8709. /// <summary>
  8710. /// 酒店预订
  8711. /// 生成 预定成本 Excel
  8712. /// </summary>
  8713. /// <param name="_dto"></param>
  8714. /// <returns></returns>
  8715. [HttpPost]
  8716. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8717. public async Task<IActionResult> PostHotelReservationsPredictedCostFileDownload(HotelReservations_PCFD_DTO _dto)
  8718. {
  8719. #region 参数验证
  8720. var vadalitor = new HotelReservations_PCFD_DTOFoalidator();
  8721. var vadalitorRes = await vadalitor.ValidateAsync(_dto);
  8722. if (!vadalitorRes.IsValid)
  8723. {
  8724. var errors = new StringBuilder();
  8725. foreach (var valid in vadalitorRes.Errors) errors.AppendLine(valid.ErrorMessage);
  8726. return Ok(JsonView(StatusCodes.Status400BadRequest, errors.ToString(), ""));
  8727. }
  8728. #region 团组操作权限验证 76 酒店预定模块
  8729. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8730. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8731. #endregion
  8732. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8733. #region 页面操作权限验证
  8734. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8735. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8736. #endregion
  8737. #endregion
  8738. decimal _rate = 1.00M;
  8739. string _currency = "";
  8740. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.STid == 66).ToList();
  8741. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  8742. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "酒店预订费用未录入,不支持预定成本Excel导出", ""));
  8743. Grp_GroupCostParameter _GroupCostParameter = await _sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).FirstAsync();
  8744. if (_GroupCostParameter == null) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用未录入,不支持预定成本Excel导出", ""));
  8745. if (string.IsNullOrEmpty(_GroupCostParameter.Currency))
  8746. {
  8747. return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用“币种为录入”未录入,不支持预定成本Excel导出", ""));
  8748. }
  8749. _currency = _GroupCostParameter.Currency;
  8750. bool isIntType = int.TryParse(_currency, out int currId);
  8751. if (isIntType)
  8752. {
  8753. _currency = currDatas.Find(it => it.Id == currId)?.Name ?? "";
  8754. }
  8755. var teamRate = await _teamRateRep.PostGroupTeamRateItemByDiIdAndCTableId(1, _dto.DiId, 76);
  8756. var currInfo = teamRate.Find(it => it.CurrencyCode.Equals(_currency));
  8757. if (currInfo == null)
  8758. {
  8759. return Ok(JsonView(StatusCodes.Status400BadRequest, $"团组汇率-->酒店模块 {_currency} 币种未设置汇率,不支持预定成本Excel导出", ""));
  8760. }
  8761. if (!_currency.ToUpper().Equals("CNY"))
  8762. {
  8763. _rate = _GroupCostParameter.Rate;
  8764. }
  8765. _rate = currInfo.Rate;
  8766. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  8767. string strFileName = "HotelStatement/";
  8768. string guestNames = ""; //格式Mr.xxx Ms.xxx
  8769. List<HotelReservations_PCFD_View> pcfds = new List<HotelReservations_PCFD_View>();
  8770. var hotelSubData = _sqlSugar.Queryable<Grp_HotelReservationsContent>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToList();
  8771. var ccpData = _sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && it.DIId == _dto.DiId && it.CTable == 76).ToList();
  8772. #region 数据处理
  8773. foreach (var item in hrDtas)
  8774. {
  8775. var ccpInfo = ccpData.Where(it => it.DIId == _dto.DiId && it.CId == item.Id).First();
  8776. var roomInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 1).FirstOrDefault(); //房费
  8777. var breakfastInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 2).FirstOrDefault(); //早餐
  8778. var governmentRentInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 3).FirstOrDefault(); //地税
  8779. var cityTaxInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 4).FirstOrDefault(); //城市税
  8780. string roomCurr = currDatas.Find(it => it.Id == roomInfo.Currency)?.Name ?? "";
  8781. string singleRoomFeeStr = string.Empty,
  8782. doubleRoomFeeStr = string.Empty,
  8783. suiteRoomFeeStr = string.Empty,
  8784. otherRoomFeeStr = string.Empty,
  8785. payMoneyStr = string.Empty,
  8786. cardPriceStr = string.Empty;
  8787. if (roomCurr.Equals(_currency))
  8788. {
  8789. singleRoomFeeStr = $"{item.SingleRoomPrice.ToString("#0.00")} {_currency}";
  8790. doubleRoomFeeStr = $"{item.DoubleRoomPrice.ToString("#0.00")} {_currency}";
  8791. suiteRoomFeeStr = $"{item.SuiteRoomPrice.ToString("#0.00")} {_currency}";
  8792. otherRoomFeeStr = $"{item.OtherRoomPrice.ToString("#0.00")} {_currency}";
  8793. payMoneyStr = $"{ccpInfo.PayMoney.ToString("#0.00")} {_currency}";
  8794. cardPriceStr = $"{item.CardPrice.ToString("#0.00")} {_currency}";
  8795. }
  8796. else
  8797. {
  8798. singleRoomFeeStr = $"{(item.SingleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SingleRoomPrice.ToString("#0.00")} {roomCurr}";
  8799. doubleRoomFeeStr = $"{(item.DoubleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.DoubleRoomPrice.ToString("#0.00")} {roomCurr}";
  8800. suiteRoomFeeStr = $"{(item.SuiteRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SuiteRoomPrice.ToString("#0.00")} {roomCurr}";
  8801. otherRoomFeeStr = $"{(item.OtherRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.OtherRoomPrice.ToString("#0.00")} {roomCurr}";
  8802. payMoneyStr = $"{(ccpInfo.PayMoney / _rate).ToString("#0.00")} {_currency}\r\n{ccpInfo.PayMoney.ToString("#0.00")} {roomCurr}";
  8803. cardPriceStr = $"{(item.CardPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.CardPrice.ToString("#0.00")} {roomCurr}";
  8804. }
  8805. string breakfastPriceStr = string.Empty,
  8806. breakfastCurrency = currDatas.Find(it => it.Id == item.BreakfastCurrency)?.Name ?? "",
  8807. governmentRentStr = string.Empty,
  8808. governmentRentCurrency = currDatas.Find(it => it.Id == item.GovernmentRentCurrency)?.Name ?? "",
  8809. cityTaxStrStr = string.Empty,
  8810. cityTaxStrCurrency = currDatas.Find(it => it.Id == item.CityTaxCurrency)?.Name ?? "";
  8811. breakfastPriceStr = $"{breakfastInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == breakfastInfo?.Currency)?.Name}";
  8812. governmentRentStr = $"{governmentRentInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == governmentRentInfo?.Currency)?.Name}";
  8813. cityTaxStrStr = $"{cityTaxInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == cityTaxInfo?.Currency)?.Name}";
  8814. pcfds.Add(new HotelReservations_PCFD_View()
  8815. {
  8816. City = item.City,
  8817. HotelName = item.HotelName,
  8818. Date = $"{item.CheckInDate} - {item.CheckOutDate}",
  8819. // SingleRoomCount = item.SingleRoomCount,
  8820. SingleRoomPrice = singleRoomFeeStr,
  8821. // DoubleRoomCount = item.DoubleRoomCount,
  8822. DoubleRoomPrice = doubleRoomFeeStr,
  8823. //SuiteRoomCount = item.SuiteRoomCount,
  8824. SuiteRoomPrice = suiteRoomFeeStr,
  8825. OtherRoomPrice = otherRoomFeeStr,
  8826. //OtherRoomCount = item.OtherRoomCount,
  8827. BreakfastPrice = breakfastPriceStr,
  8828. GovernmentRent = governmentRentStr,
  8829. CityTax = cityTaxStrStr,
  8830. RoomExplanation = item.RoomExplanation,
  8831. PayTypeName = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.Id == roomInfo.PayDId).First()?.Name ?? "",
  8832. PayTime = roomInfo.ConsumptionDate,
  8833. BankNo = roomInfo.BankNo,
  8834. PayMoney = payMoneyStr,
  8835. //PayMoneys = ccpInfo.PayMoney.ToString("#0.00"),
  8836. ConsumptionPatterns = roomInfo.ConsumptionPatterns,
  8837. CardPrice = cardPriceStr,
  8838. Remark = ccpInfo.Remark
  8839. });
  8840. }
  8841. #endregion
  8842. //载入模板
  8843. WorkbookDesigner designer = new WorkbookDesigner();
  8844. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/酒店预订成本.xls");
  8845. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == _dto.DiId).First();
  8846. var userInfo = _sqlSugar.Queryable<Sys_Users>().Where(it => it.Id == hrDtas[0].CreateUserId).First();
  8847. designer.SetDataSource("TourNo", groupInfo.TourCode);
  8848. designer.SetDataSource("TeamName", $"{groupInfo.TeamName} 团组成本币种:{_currency} 团组汇率-->酒店模块汇率:{_rate.ToString("#0.0000")}");
  8849. designer.SetDataSource("Opertor", userInfo.CnName);
  8850. DataTable dt = CommonFun.GetDataTableFromIList<HotelReservations_PCFD_View>(pcfds);
  8851. dt.TableName = "ViewMyHotelReservations";
  8852. designer.SetDataSource(dt);
  8853. designer.Process();
  8854. string fileName = ($"HotelReservation/{groupInfo.TeamName}_酒店预订成本_" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xls").Replace(":", "");
  8855. string serverPath = AppSettingsHelper.Get("ExcelBasePath") + fileName;
  8856. designer.Workbook.Save(serverPath);
  8857. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  8858. #region 删除指定行
  8859. bool singleDel = true, doubleDel = true, suiteDel = true, otherDel = true, zcDel = true, dsDel = true, cssDel = true, cpDel = true, remarkDel = true;
  8860. int singleIndex = dt.Columns["SingleRoomPrice"].Ordinal,
  8861. doubleIndex = dt.Columns["DoubleRoomPrice"].Ordinal,
  8862. suiteIndex = dt.Columns["SuiteRoomPrice"].Ordinal,
  8863. otherIndex = dt.Columns["OtherRoomPrice"].Ordinal,
  8864. zcIndex = dt.Columns["BreakfastPrice"].Ordinal,
  8865. dsIndex = dt.Columns["GovernmentRent"].Ordinal,
  8866. cssIndex = dt.Columns["CityTax"].Ordinal,
  8867. cpIndex = dt.Columns["ConsumptionPatterns"].Ordinal,
  8868. remarkIndex = dt.Columns["Remark"].Ordinal;
  8869. //删除指定列
  8870. foreach (DataRow item in dt.Rows)
  8871. {
  8872. string singleStr = item["SingleRoomPrice"].ToString();
  8873. bool containsDigitButNotZero1 = !singleStr.StartsWith("0") && Regex.IsMatch(singleStr, @"[1-9]");
  8874. if (containsDigitButNotZero1) singleDel = false;
  8875. singleIndex = dt.Columns["SingleRoomPrice"].Ordinal;
  8876. string doubleStr = item["DoubleRoomPrice"].ToString();
  8877. bool containsDigitButNotZero2 = !doubleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  8878. if (containsDigitButNotZero2) doubleDel = false;
  8879. string suiteStr = item["SuiteRoomPrice"].ToString();
  8880. bool containsDigitButNotZero3 = !singleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  8881. if (containsDigitButNotZero3) suiteDel = false;
  8882. string otherStr = item["OtherRoomPrice"].ToString();
  8883. bool containsDigitButNotZero4 = !otherStr.StartsWith("0") && Regex.IsMatch(otherStr, @"[1-9]");
  8884. if (containsDigitButNotZero4) otherDel = false;
  8885. string zcStr = item["BreakfastPrice"].ToString();
  8886. bool containsDigitButNotZero5 = !zcStr.StartsWith("0") && Regex.IsMatch(zcStr, @"[1-9]");
  8887. if (containsDigitButNotZero5) zcDel = false;
  8888. string dsStr = item["GovernmentRent"].ToString();
  8889. bool containsDigitButNotZero6 = !dsStr.StartsWith("0") && Regex.IsMatch(dsStr, @"[1-9]");
  8890. if (containsDigitButNotZero6) dsDel = false;
  8891. string cssStr = item["CityTax"].ToString();
  8892. bool containsDigitButNotZero7 = !cssStr.StartsWith("0") && Regex.IsMatch(cssStr, @"[1-9]");
  8893. if (containsDigitButNotZero7) cssDel = false;
  8894. string cpStr = item["ConsumptionPatterns"].ToString();
  8895. if (!string.IsNullOrEmpty(cpStr)) cpDel = false;
  8896. string remarkStr = item["Remark"].ToString();
  8897. if (!string.IsNullOrEmpty(remarkStr)) remarkDel = false;
  8898. }
  8899. DeleteColumn(serverPath, remarkIndex, remarkDel);
  8900. DeleteColumn(serverPath, cpIndex, cpDel);
  8901. DeleteColumn(serverPath, dsIndex, dsDel);
  8902. DeleteColumn(serverPath, cssIndex, cssDel);
  8903. DeleteColumn(serverPath, zcIndex, zcDel);
  8904. DeleteColumn(serverPath, otherIndex, otherDel);
  8905. DeleteColumn(serverPath, suiteIndex, suiteDel);
  8906. DeleteColumn(serverPath, doubleIndex, doubleDel);
  8907. DeleteColumn(serverPath, singleIndex, singleDel);
  8908. #endregion
  8909. //只保留第一个表格
  8910. DeleteSheet(serverPath);
  8911. return Ok(JsonView(true, "操作成功", url = rst));
  8912. }
  8913. /// <summary>
  8914. /// 删除指定列
  8915. /// </summary>
  8916. /// <param name="file"></param>
  8917. /// <param name="columnIndex"></param>
  8918. /// <param name="isDel"></param>
  8919. private void DeleteColumn(string file, int columnIndex, bool isDel)
  8920. {
  8921. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  8922. //wb.Save(file);
  8923. Aspose.Cells.Worksheet sheet1 = wb.Worksheets[0];
  8924. if (sheet1 != null)
  8925. {
  8926. if (isDel)
  8927. {
  8928. Cells cells = sheet1.Cells;
  8929. cells.DeleteColumn(columnIndex);
  8930. }
  8931. }
  8932. wb.Save(file);
  8933. }
  8934. /// <summary>
  8935. /// 删除sheet
  8936. /// </summary>
  8937. /// <param name="file"></param>
  8938. /// <param name="sheetName"></param>
  8939. private void DeleteSheet(string file, string sheetName = "")
  8940. {
  8941. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  8942. //wb.Save(file);
  8943. List<string> sheets = new List<string>();
  8944. foreach (var item in wb.Worksheets)
  8945. {
  8946. sheets.Add(item.Name);
  8947. }
  8948. if (sheets.Count > 0)
  8949. {
  8950. sheets.RemoveAt(0);//不删除第一个sheet
  8951. foreach (var item in sheets)
  8952. {
  8953. wb.Worksheets.RemoveAt(item);
  8954. }
  8955. }
  8956. wb.Save(file);
  8957. }
  8958. /// <summary>
  8959. /// 酒店预订
  8960. /// 确认单
  8961. /// </summary>
  8962. /// <param name="_dto"></param>
  8963. /// <returns></returns>
  8964. [HttpPost]
  8965. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8966. public async Task<IActionResult> PostHotelReservationsConfirmationSlip(HotelReservationsConfirmationSlipDto _dto)
  8967. {
  8968. try
  8969. {
  8970. #region 参数验证
  8971. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  8972. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8973. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  8974. #region 团组操作权限验证 76 酒店预定模块
  8975. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8976. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  8977. #endregion
  8978. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8979. #region 页面操作权限验证
  8980. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8981. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8982. #endregion
  8983. #endregion
  8984. //团组信息
  8985. Grp_DelegationInfo di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(a => a.Id == _dto.DiId);
  8986. //酒店数据
  8987. List<Grp_HotelReservations> listhoteldata = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(a => a.DiId == _dto.DiId && a.IsDel == 0).ToListAsync();
  8988. if (listhoteldata.Count < 0)
  8989. {
  8990. return Ok(JsonView(StatusCodes.Status400BadRequest, "当前团组暂无酒店预订信息!", ""));
  8991. }
  8992. //利datatable存储
  8993. DataTable dt = new DataTable();
  8994. dt.Columns.Add("CheckInDate", typeof(string));
  8995. dt.Columns.Add("City", typeof(string));
  8996. dt.Columns.Add("Hotel", typeof(string));
  8997. dt.Columns.Add("Room", typeof(string));
  8998. for (int i = 0; i < listhoteldata.Count; i++)
  8999. {
  9000. DateTime dayStart = Convert.ToDateTime(listhoteldata[i].CheckInDate);
  9001. DateTime dayEnd = Convert.ToDateTime(listhoteldata[i].CheckOutDate);
  9002. while (dayStart < dayEnd)
  9003. {
  9004. string temp = "";
  9005. DataRow row = dt.NewRow();
  9006. row["CheckInDate"] = dayStart.ToString("yyyy-MM-dd");
  9007. row["City"] = listhoteldata[i].City;
  9008. row["Hotel"] = listhoteldata[i].HotelName;
  9009. if (listhoteldata[i].SingleRoomCount > 0)
  9010. {
  9011. temp = listhoteldata[i].SingleRoomCount + "个单间" + "\r\n";
  9012. }
  9013. if (listhoteldata[i].DoubleRoomCount > 0)
  9014. {
  9015. temp = temp + listhoteldata[i].DoubleRoomCount + "个标间" + "\r\n";
  9016. }
  9017. if (listhoteldata[i].SuiteRoomCount > 0)
  9018. {
  9019. temp = temp + listhoteldata[i].SuiteRoomCount + "个套房" + "\r\n";
  9020. }
  9021. if (listhoteldata[i].OtherRoomCount > 0)
  9022. {
  9023. temp = temp + listhoteldata[i].OtherRoomCount + "个其他房型" + "\r\n";
  9024. }
  9025. row["Room"] = temp;
  9026. dt.Rows.Add(row);
  9027. dayStart = dayStart.AddDays(1);
  9028. }
  9029. }
  9030. Dictionary<string, string> dic = new Dictionary<string, string>();
  9031. dic.Add("Dele", di.TeamName);
  9032. dic.Add("City", di.VisitCountry);
  9033. //模板路径
  9034. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/酒店用房确认单-模板.doc";
  9035. //载入模板
  9036. Aspose.Words.Document doc = new Aspose.Words.Document(tempPath);
  9037. DocumentBuilder builder = new DocumentBuilder(doc);
  9038. foreach (var key in dic.Keys)
  9039. {
  9040. builder.MoveToBookmark(key);
  9041. builder.Write(dic[key]);
  9042. }
  9043. //获取word里所有表格
  9044. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  9045. //获取所填表格的序数
  9046. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  9047. var rowStart = tableOne.Rows[0]; //获取第1行
  9048. //循环赋值
  9049. for (int i = 0; i < dt.Rows.Count; i++)
  9050. {
  9051. builder.MoveToCell(0, i + 1, 0, 0);
  9052. builder.Write(dt.Rows[i]["CheckInDate"].ToString());
  9053. builder.MoveToCell(0, i + 1, 1, 0);
  9054. builder.Write(dt.Rows[i]["City"].ToString());
  9055. builder.MoveToCell(0, i + 1, 2, 0);
  9056. builder.Write(dt.Rows[i]["Hotel"].ToString());
  9057. builder.MoveToCell(0, i + 1, 3, 0);
  9058. builder.Write(dt.Rows[i]["Room"].ToString());
  9059. }
  9060. //删除多余行
  9061. while (tableOne.Rows.Count > dt.Rows.Count + 1)
  9062. {
  9063. tableOne.Rows.RemoveAt(dt.Rows.Count + 1);
  9064. }
  9065. string strFileName = di.TeamName + "酒店确认单.doc";
  9066. doc.Save(AppSettingsHelper.Get("WordBasePath") + "HotelStatement/" + strFileName);
  9067. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/HotelStatement/" + strFileName;
  9068. return Ok(JsonView(true, "成功", url));
  9069. }
  9070. catch (Exception ex)
  9071. {
  9072. return Ok(JsonView(StatusCodes.Status400BadRequest, ex.Message, ""));
  9073. }
  9074. }
  9075. #endregion
  9076. #region 团组状态
  9077. /// <summary>
  9078. /// 团组状态列表 Page
  9079. /// </summary>
  9080. /// <param name="dto">团组列表请求dto</param>
  9081. /// <returns></returns>
  9082. [HttpPost]
  9083. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9084. public async Task<IActionResult> PostGroupStatusPageList(GroupStatusListDto dto)
  9085. {
  9086. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  9087. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  9088. {
  9089. string sqlWhere = string.Empty;
  9090. if (dto.IsSure == 0) //未完成
  9091. {
  9092. sqlWhere += string.Format(@" And IsSure = 0");
  9093. }
  9094. else if (dto.IsSure == 1) //已完成
  9095. {
  9096. sqlWhere += string.Format(@" And IsSure = 1");
  9097. }
  9098. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  9099. {
  9100. string tj = dto.SearchCriteria;
  9101. 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}%')",
  9102. tj, tj, tj, tj, tj);
  9103. }
  9104. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  9105. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  9106. VisitDate,VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  9107. From (
  9108. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  9109. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  9110. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  9111. VisitDate,VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  9112. From Grp_DelegationInfo gdi
  9113. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  9114. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  9115. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  9116. Where gdi.IsDel = 0 {0}
  9117. ) temp ", sqlWhere);
  9118. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  9119. var _DelegationList = await _sqlSugar.SqlQueryable<GroupStatusView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  9120. return Ok(JsonView(true, "查询成功!", _DelegationList, total));
  9121. }
  9122. else
  9123. {
  9124. return Ok(JsonView(false, "查询失败"));
  9125. }
  9126. }
  9127. /// <summary>
  9128. /// 团组状态
  9129. /// 设置操作完成
  9130. /// </summary>
  9131. /// <param name="dto">团组列表请求dto</param>
  9132. /// <returns></returns>
  9133. [HttpPost]
  9134. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9135. public async Task<IActionResult> PostGroupStatusSetOperationComplete(GroupStatusSetOperationCompleteDto dto)
  9136. {
  9137. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  9138. Grp_DelegationInfo _DelegationInfo = new Grp_DelegationInfo()
  9139. {
  9140. Id = dto.Id,
  9141. IsSure = 1
  9142. };
  9143. var result = await _sqlSugar.Updateable(_DelegationInfo)
  9144. .UpdateColumns(it => new { it.IsSure })
  9145. .WhereColumns(it => new { it.Id })
  9146. .ExecuteCommandAsync();
  9147. if (result > 0)
  9148. {
  9149. return Ok(JsonView(true, "操作完成!"));
  9150. }
  9151. return Ok(JsonView(false, "操作失败!"));
  9152. }
  9153. #endregion
  9154. #region 保险费用录入
  9155. /// <summary>
  9156. /// 根据团组Id查询保险费用列表
  9157. /// </summary>
  9158. /// <param name="dto"></param>
  9159. /// <returns></returns>
  9160. [HttpPost]
  9161. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9162. public async Task<IActionResult> CustomersByDiId(CustomersByDiIdDto dto)
  9163. {
  9164. try
  9165. {
  9166. Result groupData = await _customersRep.CustomersByDiId(dto);
  9167. if (groupData.Code != 0)
  9168. {
  9169. return Ok(JsonView(false, groupData.Msg));
  9170. }
  9171. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9172. }
  9173. catch (Exception ex)
  9174. {
  9175. return Ok(JsonView(false, ex.Message));
  9176. }
  9177. }
  9178. /// <summary>
  9179. /// 根据保险费用Id查询保险费用详细
  9180. /// </summary>
  9181. /// <param name="dto"></param>
  9182. /// <returns></returns>
  9183. [HttpPost]
  9184. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9185. public async Task<IActionResult> CustomersById(CustomersByIdDto dto)
  9186. {
  9187. try
  9188. {
  9189. Result groupData = await _customersRep.CustomersById(dto);
  9190. if (groupData.Code != 0)
  9191. {
  9192. return Ok(JsonView(false, groupData.Msg));
  9193. }
  9194. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9195. }
  9196. catch (Exception ex)
  9197. {
  9198. return Ok(JsonView(false, ex.Message));
  9199. }
  9200. }
  9201. /// <summary>
  9202. /// 保险费用录入页面初始化绑定
  9203. /// </summary>
  9204. /// <param name="dto"></param>
  9205. /// <returns></returns>
  9206. [HttpPost]
  9207. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9208. public async Task<IActionResult> CustomersInitialize(CustomersInitializeDto dto)
  9209. {
  9210. try
  9211. {
  9212. Result groupData = await _customersRep.CustomersInitialize(dto);
  9213. if (groupData.Code != 0)
  9214. {
  9215. return Ok(JsonView(false, groupData.Msg));
  9216. }
  9217. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9218. }
  9219. catch (Exception ex)
  9220. {
  9221. return Ok(JsonView(false, ex.Message));
  9222. }
  9223. }
  9224. /// <summary>
  9225. /// 保险费用操作(Status:1.新增,2.修改)
  9226. /// </summary>
  9227. /// <param name="dto"></param>
  9228. /// <returns></returns>
  9229. [HttpPost]
  9230. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9231. public async Task<IActionResult> OpCustomers(OpCustomersDto dto)
  9232. {
  9233. try
  9234. {
  9235. Result groupData = await _customersRep.OpCustomers(dto);
  9236. if (groupData.Code != 0)
  9237. {
  9238. return Ok(JsonView(false, groupData.Msg));
  9239. }
  9240. #region 应用推送
  9241. try
  9242. {
  9243. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  9244. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  9245. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  9246. }
  9247. catch (Exception ex)
  9248. {
  9249. }
  9250. #endregion
  9251. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9252. }
  9253. catch (Exception ex)
  9254. {
  9255. return Ok(JsonView(false, ex.Message));
  9256. }
  9257. }
  9258. /// <summary>
  9259. /// 保险文件上传
  9260. /// </summary>
  9261. /// <param name="file"></param>
  9262. /// <returns></returns>
  9263. [HttpPost]
  9264. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9265. public async Task<IActionResult> UploadCus(IFormFile file)
  9266. {
  9267. try
  9268. {
  9269. if (file != null)
  9270. {
  9271. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  9272. //文件名称
  9273. string projectFileName = file.FileName;
  9274. //上传的文件的路径
  9275. string filePath = "";
  9276. if (!Directory.Exists(fileDir))
  9277. {
  9278. Directory.CreateDirectory(fileDir);
  9279. }
  9280. //上传的文件的路径
  9281. filePath = fileDir + $@"\保险费用文件上传\{projectFileName}";
  9282. using (FileStream fs = System.IO.File.Create(filePath))
  9283. {
  9284. file.CopyTo(fs);
  9285. fs.Flush();
  9286. }
  9287. return Ok(JsonView(true, "上传成功!", projectFileName));
  9288. }
  9289. else
  9290. {
  9291. return Ok(JsonView(false, "上传失败!"));
  9292. }
  9293. }
  9294. catch (Exception ex)
  9295. {
  9296. return Ok(JsonView(false, "程序错误!"));
  9297. throw;
  9298. }
  9299. }
  9300. /// <summary>
  9301. /// 保险删除指定文件
  9302. /// </summary>
  9303. /// <param name="dto"></param>
  9304. /// <returns></returns>
  9305. [HttpPost]
  9306. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9307. public async Task<IActionResult> DelFileCus(DelFileDto dto)
  9308. {
  9309. try
  9310. {
  9311. string filePath = "";
  9312. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  9313. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  9314. //int id = 0;
  9315. filePath = fileDir + "/保险费用文件上传/" + dto.fileName;
  9316. // 删除该文件
  9317. try
  9318. {
  9319. System.IO.File.Delete(filePath);
  9320. 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()
  9321. {
  9322. Attachment = "",
  9323. }).ExecuteCommandAsync();
  9324. if (result != 0)
  9325. {
  9326. return Ok(JsonView(true, "成功!"));
  9327. }
  9328. else
  9329. {
  9330. return Ok(JsonView(false, "失败!"));
  9331. }
  9332. }
  9333. catch (Exception)
  9334. {
  9335. 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()
  9336. {
  9337. Attachment = "",
  9338. }).ExecuteCommandAsync();
  9339. if (result != 0)
  9340. {
  9341. return Ok(JsonView(true, "成功!"));
  9342. }
  9343. else
  9344. {
  9345. return Ok(JsonView(false, "失败!"));
  9346. }
  9347. }
  9348. }
  9349. catch (Exception ex)
  9350. {
  9351. return Ok(JsonView(false, "程序错误!"));
  9352. throw;
  9353. }
  9354. }
  9355. /// <summary>
  9356. /// 保险费用操作(删除)
  9357. /// </summary>
  9358. /// <param name="dto"></param>
  9359. /// <returns></returns>
  9360. [HttpPost]
  9361. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9362. public async Task<IActionResult> DelCustomers(DelBaseDto dto)
  9363. {
  9364. try
  9365. {
  9366. var res = await _customersRep.SoftDeleteByIdAsync<Grp_Customers>(dto.Id.ToString(), dto.DeleteUserId);
  9367. if (!res)
  9368. {
  9369. return Ok(JsonView(false, "删除失败"));
  9370. }
  9371. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 82).SetColumns(a => new Grp_CreditCardPayment()
  9372. {
  9373. IsDel = 1,
  9374. DeleteUserId = dto.DeleteUserId,
  9375. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  9376. }).ExecuteCommandAsync();
  9377. return Ok(JsonView(true, "删除成功!"));
  9378. }
  9379. catch (Exception ex)
  9380. {
  9381. return Ok(JsonView(false, "程序错误!"));
  9382. throw;
  9383. }
  9384. }
  9385. #endregion
  9386. #region 接团客户名单 PageId 104
  9387. /// <summary>
  9388. /// 接团客户名单
  9389. /// 迁移数据(慎用!)
  9390. /// </summary>
  9391. /// <param name="dto"></param>
  9392. /// <returns></returns>
  9393. [HttpPost]
  9394. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9395. public async Task<IActionResult> PostTourClientListChange()
  9396. {
  9397. try
  9398. {
  9399. _sqlSugar.ChangeDatabase(DBEnum.OA2014DB);
  9400. //var groupClinetData1
  9401. string sql = string.Format($"Select * From DeleClient Where Isdel = 0");
  9402. var oldOAClientList = await _sqlSugar.SqlQueryable<OA2021_DeleClient>(sql).Where(it => it.Isdel == 0).ToListAsync();
  9403. int updateCount = 0;
  9404. if (oldOAClientList.Count > 0)
  9405. {
  9406. _sqlSugar.ChangeDatabase(DBEnum.OA2023DB);
  9407. _sqlSugar.BeginTran();
  9408. var clientComInfos = _sqlSugar.Queryable<Crm_CustomerCompany>().Where(it => it.IsDel == 0).ToList();
  9409. var clientInfos = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0).ToList();
  9410. foreach (var item in oldOAClientList)
  9411. {
  9412. int comId = 0;
  9413. string format = "yyyy-MM-dd HH:mm:ss";
  9414. string data11 = "1990-01-01 00:00";
  9415. var data1 = IsValidDate(item.OPdate, format);
  9416. if (data1) data11 = item.OPdate;
  9417. //客户公司验证
  9418. if (!string.IsNullOrEmpty(item.Company))
  9419. {
  9420. var clientComInfo = clientComInfos.Where(it => it.CompanyFullName.Equals(item.Company)).FirstOrDefault();
  9421. if (clientComInfo == null) // add
  9422. {
  9423. var addInfo = new Crm_CustomerCompany()
  9424. {
  9425. CompanyAbbreviation = "",
  9426. CompanyFullName = item.Company,
  9427. Address = "",
  9428. PostCodes = "",
  9429. LastedOpUserId = item.OPer,
  9430. LastedOpDt = Convert.ToDateTime(data11),
  9431. CreateUserId = item.OPer,
  9432. CreateTime = Convert.ToDateTime(data11),
  9433. IsDel = 0
  9434. };
  9435. var comId1 = _sqlSugar.Insertable<Crm_CustomerCompany>(addInfo).ExecuteReturnIdentity();
  9436. if (comId1 > 0) comId = comId1;
  9437. }
  9438. else comId = clientComInfo.Id;
  9439. }
  9440. //客户人员验证
  9441. int clientId = 0;
  9442. string name = item.LastName + item.Name;
  9443. if (!string.IsNullOrEmpty(name))
  9444. {
  9445. var clientInfo = clientInfos.Where(it => (it.LastName + it.FirstName).Equals(name)).FirstOrDefault();
  9446. if (clientInfo == null)
  9447. {
  9448. DateTime? dateTime = null;
  9449. var isDt = DateTime.TryParse(item.Birthday, out DateTime birthDayDt);
  9450. if (isDt) dateTime = birthDayDt;
  9451. var addInfo1 = new Crm_DeleClient()
  9452. {
  9453. CrmCompanyId = comId,
  9454. DiId = -1,
  9455. LastName = item.LastName,
  9456. FirstName = item.Name,
  9457. OldName = "",
  9458. Pinyin = item.Pinyin,
  9459. Sex = item.Sex == "男" ? 0 : item.Sex == "女" ? 1 : -1,
  9460. Marriage = 0,
  9461. Phone = item.Phone,
  9462. Job = item.Job,
  9463. BirthDay = dateTime
  9464. };
  9465. var clientId1 = _sqlSugar.Insertable<Crm_DeleClient>(addInfo1).ExecuteReturnIdentity();
  9466. if (clientId1 > 0) clientId = clientId1;
  9467. }
  9468. else clientId = clientInfo.Id;
  9469. }
  9470. if (clientId < 1)
  9471. {
  9472. continue;
  9473. }
  9474. int airType = 0;
  9475. if (item.AirType == "超经舱") airType = 459;
  9476. else if (item.AirType == "公务舱") airType = 458;
  9477. else if (item.AirType == "经济舱") airType = 460;
  9478. else if (item.AirType == "其他") airType = 565;
  9479. else if (item.AirType == "头等舱") airType = 457;
  9480. var _TourClientListEntity = new Grp_TourClientList()
  9481. {
  9482. DiId = item.Diid,
  9483. ClientId = clientId,
  9484. CreateUserId = item.OPer,
  9485. CreateTime = Convert.ToDateTime(data11),
  9486. Remark = item.Remark,
  9487. IsDel = item.Isdel,
  9488. ShippingSpaceTypeId = airType,
  9489. ShippingSpaceSpecialNeeds = item.AirRemark,
  9490. HotelSpecialNeeds = item.RoomType
  9491. };
  9492. var _TourClientList = _sqlSugar.Insertable<Grp_TourClientList>(_TourClientListEntity).ExecuteCommand();
  9493. if (_TourClientList > 0)
  9494. {
  9495. updateCount++;
  9496. }
  9497. }
  9498. _sqlSugar.CommitTran();
  9499. }
  9500. return Ok(JsonView(true, $"更新条数:{updateCount}条"));
  9501. }
  9502. catch (Exception ex)
  9503. {
  9504. _sqlSugar.RollbackTran();
  9505. return Ok(JsonView(false, ex.Message));
  9506. }
  9507. return Ok(JsonView(true));
  9508. }
  9509. private bool IsValidDate(string dateString, string format)
  9510. {
  9511. DateTime dateValue;
  9512. bool valid = DateTime.TryParseExact(dateString, format, CultureInfo.InvariantCulture, DateTimeStyles.None, out dateValue);
  9513. return valid;
  9514. }
  9515. /// <summary>
  9516. /// 接团客户名单
  9517. /// 根据团组Id查询List
  9518. /// </summary>
  9519. /// <param name="dto"></param>
  9520. /// <returns></returns>
  9521. [HttpPost]
  9522. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9523. public async Task<IActionResult> PostTourClientListByDiId(TourClientListByDiIdDto _dto)
  9524. {
  9525. #region 参数验证
  9526. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId"));
  9527. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9528. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId!"));
  9529. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9530. #region 页面操作权限验证
  9531. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9532. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9533. #endregion
  9534. #endregion
  9535. var viewData = await _tourClientListRep._ItemByDiId(_dto.PortType, _dto.DiId);
  9536. if (viewData.Code != 0)
  9537. {
  9538. return Ok(JsonView(false, viewData.Msg));
  9539. }
  9540. return Ok(JsonView(viewData.Data));
  9541. }
  9542. /// <summary>
  9543. /// 接团客户名单
  9544. /// 基础数据 Init
  9545. /// </summary>
  9546. /// <param name="_dto"></param>
  9547. /// <returns></returns>
  9548. [HttpPost]
  9549. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9550. public async Task<IActionResult> PostTourClientListBasicDataInit(TourClientListBasicDataInitDto _dto)
  9551. {
  9552. #region 参数验证
  9553. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9554. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9555. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9556. #region 页面操作权限验证
  9557. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9558. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9559. #endregion
  9560. #endregion
  9561. var viewData = await _tourClientListRep._BasicDataInit(_dto.PortType);
  9562. if (viewData.Code != 0)
  9563. {
  9564. return Ok(JsonView(false, viewData.Msg));
  9565. }
  9566. return Ok(JsonView(viewData.Data));
  9567. }
  9568. /// <summary>
  9569. /// 接团客户名单
  9570. /// 根据 Id查询 Details
  9571. /// </summary>
  9572. /// <param name="_dto"></param>
  9573. /// <returns></returns>
  9574. [HttpPost]
  9575. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9576. public async Task<IActionResult> PostTourClientListDetails(TourClientListDetailsDto _dto)
  9577. {
  9578. #region 参数验证
  9579. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9580. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9581. if (_dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  9582. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9583. #region 页面操作权限验证
  9584. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9585. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9586. #endregion
  9587. #endregion
  9588. var viewData = await _tourClientListRep._Details(_dto.PortType, _dto.Id);
  9589. if (viewData.Code != 0)
  9590. {
  9591. return Ok(JsonView(false, viewData.Msg));
  9592. }
  9593. return Ok(JsonView(viewData.Data));
  9594. }
  9595. /// <summary>
  9596. /// 接团客户名单
  9597. /// Add Or Edit
  9598. /// </summary>
  9599. /// <param name="_dto"></param>
  9600. /// <returns></returns>
  9601. [HttpPost]
  9602. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9603. public async Task<IActionResult> PostTourClientListAddOrEdit(TourClientListAddOrEditDto _dto)
  9604. {
  9605. #region 参数验证
  9606. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9607. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9608. if (_dto.Id < 0) return Ok(JsonView(false, "请传入有效的Id参数!"));
  9609. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9610. #region 页面操作权限验证
  9611. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9612. if (_dto.Id == 0) //添加
  9613. {
  9614. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  9615. }
  9616. else if (_dto.Id >= 0) //修改
  9617. {
  9618. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  9619. }
  9620. #endregion
  9621. #endregion
  9622. var viewData = await _tourClientListRep._AddOrEdit(_dto);
  9623. if (viewData.Code != 0)
  9624. {
  9625. return Ok(JsonView(false, viewData.Msg));
  9626. }
  9627. return Ok(JsonView(true));
  9628. }
  9629. /// <summary>
  9630. /// 接团客户名单
  9631. /// AddMultiple(添加多个)
  9632. /// </summary>
  9633. /// <param name="_dto"></param>
  9634. /// <returns></returns>
  9635. [HttpPost]
  9636. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9637. public async Task<IActionResult> PostTourClientListAddMultiple(TourClientListAddMultipleDto _dto)
  9638. {
  9639. #region 参数验证
  9640. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9641. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9642. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9643. #region 页面操作权限验证
  9644. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9645. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  9646. #endregion
  9647. #endregion
  9648. var viewData = await _tourClientListRep._AddMultiple(_dto);
  9649. if (viewData.Code != 0)
  9650. {
  9651. return Ok(JsonView(false, viewData.Msg));
  9652. }
  9653. return Ok(JsonView(true));
  9654. }
  9655. /// <summary>
  9656. /// 接团客户名单
  9657. /// Del
  9658. /// </summary>
  9659. /// <param name="_dto"></param>
  9660. /// <returns></returns>
  9661. [HttpPost]
  9662. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9663. public async Task<IActionResult> PostTourClientListDel(TourClientListDelDto _dto)
  9664. {
  9665. #region 参数验证
  9666. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9667. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9668. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9669. #region 页面操作权限验证
  9670. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9671. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  9672. #endregion
  9673. #endregion
  9674. var viewData = await _tourClientListRep._Del(_dto.Id, _dto.UserId);
  9675. if (viewData.Code != 0)
  9676. {
  9677. return Ok(JsonView(false, viewData.Msg));
  9678. }
  9679. return Ok(JsonView(true));
  9680. }
  9681. /// <summary>
  9682. /// 接团客户名单
  9683. /// 文件下载 客户名单
  9684. /// </summary>
  9685. /// <param name="_dto"></param>
  9686. /// <returns></returns>
  9687. [HttpPost]
  9688. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9689. public async Task<IActionResult> PostTourClientListDownloadFile(PostTourClientListDownloadFile _dto)
  9690. {
  9691. #region 参数验证
  9692. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9693. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9694. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数"));
  9695. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9696. #region 页面操作权限验证
  9697. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9698. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9699. #endregion
  9700. #endregion
  9701. string clientSql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  9702. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  9703. From Grp_TourClientList tcl
  9704. Left Join
  9705. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  9706. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  9707. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  9708. From Crm_DeleClient dc
  9709. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  9710. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  9711. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  9712. Where dc.IsDel = 0) temp
  9713. On temp.DcId =tcl.ClientId
  9714. Where tcl.IsDel = 0 And tcl.DiId = {0}", _dto.DiId);
  9715. List<TourClientListDetailsView> DcList = await _sqlSugar.SqlQueryable<TourClientListDetailsView>(clientSql).ToListAsync();
  9716. if (DcList.Count < 0) return Ok(JsonView(false, "该团未录入客户名单!"));
  9717. //载入模板
  9718. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/dwon_团组人员列表模板.doc";
  9719. if (_dto.Language == 1)
  9720. {
  9721. tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/EN_Down_团组人员列表模板.doc";
  9722. }
  9723. //载入模板
  9724. var doc = new Document(tempPath);
  9725. DocumentBuilder builder = new DocumentBuilder(doc);
  9726. //获取word里所有表格
  9727. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  9728. //获取所填表格的序数
  9729. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  9730. var rowStart = tableOne.Rows[0]; //获取第1行
  9731. if (_dto.Language == 0)
  9732. {
  9733. //循环赋值
  9734. for (int i = 0; i < DcList.Count; i++)
  9735. {
  9736. builder.MoveToCell(0, i + 1, 0, 0);
  9737. builder.Write(DcList[i].LastName + DcList[i].FirstName);
  9738. builder.MoveToCell(0, i + 1, 1, 0);
  9739. int sex = DcList[i].Sex;
  9740. string sexStr = string.Empty;
  9741. if (sex == 0) sexStr = "男";
  9742. else if (sex == 1) sexStr = "女";
  9743. else sexStr = "未设置";
  9744. builder.Write(sexStr);
  9745. builder.MoveToCell(0, i + 1, 2, 0);
  9746. string birthDay = DcList[i].BirthDay;
  9747. string birthDayStr = string.Empty;
  9748. if (!string.IsNullOrEmpty(birthDay))
  9749. {
  9750. birthDayStr = Convert.ToDateTime(birthDay).ToString("yyyy-MM-dd");
  9751. }
  9752. builder.Write(birthDayStr);
  9753. builder.MoveToCell(0, i + 1, 3, 0);
  9754. string company = "";
  9755. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  9756. {
  9757. company = DcList[i].CompanyFullName.ToString();
  9758. }
  9759. builder.Write(company);
  9760. builder.MoveToCell(0, i + 1, 4, 0);
  9761. builder.Write(DcList[i].Job);
  9762. }
  9763. }
  9764. else if (_dto.Language == 1)
  9765. {
  9766. List<Res_PositionEnglishComparison> listPEC = _setDataRep.Query<Res_PositionEnglishComparison>(s => s.IsDel == 0).ToList();
  9767. List<Res_CompanyEnglishComparison> listCEC = _setDataRep.Query<Res_CompanyEnglishComparison>(s => s.IsDel == 0).ToList();
  9768. List<string> transArrayStr = new List<string>();
  9769. string transStrRes1 = "";
  9770. for (int i = 0; i < DcList.Count; i++)
  9771. {
  9772. var dc = DcList[i];
  9773. if (dc.CompanyFullName.Equals("暂无")) dc.CompanyFullName = "-";
  9774. if (dc.Job.Equals("暂无")) dc.Job = "-";
  9775. string str1 = $"{i}&{dc.CompanyFullName}&{dc.Job}";
  9776. if (DcList.Count - 1 == i) transStrRes1 += str1;
  9777. else transStrRes1 += $"{str1}|";
  9778. }
  9779. 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";
  9780. if (transStrRes1.Length > 0 )
  9781. {
  9782. //transStrRes = await _juHeApi.GetTextTranslateAsync(transStrRes1);
  9783. }
  9784. //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
  9785. //await _juHeApi.GetTextTranslateAsync(DcList[i].CompanyFullName.ToString().Trim()) ?? "";
  9786. //List<string> transArray = new List<string> { };
  9787. List<TranslateInfo> transArray = new List<TranslateInfo>();
  9788. if (transStrRes.Contains("|"))
  9789. {
  9790. string[] transArray1 = transStrRes.Split('|');
  9791. if (transArray1.Length > 0)
  9792. {
  9793. foreach (var item in transArray1)
  9794. {
  9795. if (item.Contains("&"))
  9796. {
  9797. string[] transArray2 = item.Split('&');
  9798. int index = 0;
  9799. string companyName = "", job = "";
  9800. if (transArray2.Length > 0)
  9801. {
  9802. bool success = int.TryParse(transArray2[0].Trim(), out index);
  9803. if (1 < transArray2.Length) companyName = transArray2[1];
  9804. if (2 < transArray2.Length) job = transArray2[2];
  9805. }
  9806. transArray.Add(new TranslateInfo { Index = index, CompanyName = companyName, Job = job });
  9807. }
  9808. }
  9809. }
  9810. }
  9811. //循环赋值
  9812. for (int i = 0; i < DcList.Count; i++)
  9813. {
  9814. string PYName = "";
  9815. if (DcList[i].Pinyin.Length > 0 && DcList[i].Pinyin.IndexOf('/') > -1)
  9816. {
  9817. string PY_Last = DcList[i].Pinyin.Split('/')[0];
  9818. string PY_First = DcList[i].Pinyin.Split('/')[1];
  9819. PYName = PY_First + " " + PY_Last;
  9820. }
  9821. else
  9822. {
  9823. string PY_Last = DcList[i].LastName.GetTotalPingYin().Count > 0 ? DcList[i].LastName.GetTotalPingYin()[0].ToUpper() : "";
  9824. string PY_First = DcList[i].FirstName.GetTotalPingYin().Count > 0 ? DcList[i].FirstName.GetTotalPingYin()[0].ToUpper() : "";
  9825. PYName = PY_First + " " + PY_Last;
  9826. }
  9827. builder.MoveToCell(0, i + 1, 0, 0);
  9828. builder.Write(PYName);
  9829. string sex = DcList[i].Sex == 0 ? "Male" : DcList[i].Sex == 1 ? "Female" : "";
  9830. builder.MoveToCell(0, i + 1, 1, 0);
  9831. builder.Write(sex);
  9832. DateTime birthDt;
  9833. bool b_birth = DateTime.TryParse(DcList[i].BirthDay, out birthDt);
  9834. string birthday = b_birth ? birthDt.ToString("yyyy-MM-dd") : " ";
  9835. builder.MoveToCell(0, i + 1, 2, 0);
  9836. builder.Write(birthday);
  9837. string company = string.Empty,job = string.Empty;
  9838. var dcTransInfo = transArray.FirstOrDefault(s => s.Index == i);
  9839. if (dcTransInfo != null)
  9840. {
  9841. company = dcTransInfo.CompanyName;
  9842. job = dcTransInfo.Job;
  9843. }
  9844. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  9845. {
  9846. //查询对照表
  9847. Res_CompanyEnglishComparison tempCec = listCEC.FirstOrDefault(s => s.zhName.Contains(DcList[i].CompanyFullName.ToString().Trim()));
  9848. if (tempCec != null)
  9849. {
  9850. company = tempCec.enName;
  9851. }
  9852. //翻译
  9853. else
  9854. {
  9855. }
  9856. }
  9857. builder.MoveToCell(0, i + 1, 3, 0);
  9858. builder.Write(company);
  9859. if (!string.IsNullOrEmpty(DcList[i].Job.ToString()))
  9860. {
  9861. //查询对照表
  9862. Res_PositionEnglishComparison tempPec = listPEC.FirstOrDefault(s => s.zhName == DcList[i].Job.ToString().Trim());
  9863. if (tempPec != null)
  9864. {
  9865. job = tempPec.enName;
  9866. }
  9867. //翻译
  9868. else
  9869. {
  9870. }
  9871. }
  9872. builder.MoveToCell(0, i + 1, 4, 0);
  9873. builder.Write(job);
  9874. }
  9875. }
  9876. //删除多余行
  9877. while (tableOne.Rows.Count > DcList.Count + 1)
  9878. {
  9879. tableOne.Rows.RemoveAt(DcList.Count + 1);
  9880. }
  9881. string fileName = "组团人员名单(" + DateTime.Now.ToString("yyyyhhddHHmmss") + ").doc";
  9882. var fileDir = AppSettingsHelper.Get("WordBasePath") + "TourClientList/" + fileName;
  9883. doc.Save(fileDir);
  9884. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/TourClientList/" + fileName;
  9885. return Ok(JsonView(true, "操作成功!", Url));
  9886. }
  9887. private class TranslateInfo
  9888. {
  9889. public int Index { get; set; }
  9890. public string CompanyName { get; set; }
  9891. public string Job { get; set; }
  9892. }
  9893. #endregion
  9894. #region 团组倒推表
  9895. /// <summary>
  9896. /// 倒推表基础数据
  9897. /// Init
  9898. /// </summary>
  9899. /// <param name="dto"></param>
  9900. /// <returns></returns>
  9901. [HttpPost]
  9902. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9903. public async Task<IActionResult> PostInvertedListInit()
  9904. {
  9905. var viewData = await _invertedListRep._Init();
  9906. if (viewData.Code != 0)
  9907. {
  9908. return Ok(JsonView(false, viewData.Msg));
  9909. }
  9910. return Ok(JsonView(viewData.Data));
  9911. }
  9912. /// <summary>
  9913. /// 倒推表
  9914. /// Info
  9915. /// </summary>
  9916. /// <param name="dto"></param>
  9917. /// <returns></returns>
  9918. [HttpPost]
  9919. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9920. public async Task<IActionResult> PostInvertedListInfo(InvertedListCreateDto dto)
  9921. {
  9922. var viewData = await _invertedListRep._Info(dto.PortType, dto.DiId);
  9923. if (viewData.Code != 0)
  9924. {
  9925. return Ok(JsonView(false, viewData.Msg));
  9926. }
  9927. return Ok(JsonView(viewData.Data));
  9928. }
  9929. /// <summary>
  9930. /// 倒推表
  9931. /// Create
  9932. /// </summary>
  9933. /// <param name="dto"></param>
  9934. /// <returns></returns>
  9935. [HttpPost]
  9936. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9937. public async Task<IActionResult> PostInvertedListCreate(InvertedListCreateDto dto)
  9938. {
  9939. var viewData = await _invertedListRep._Create(dto.PortType, dto.DiId);
  9940. if (viewData.Code != 0)
  9941. {
  9942. return Ok(JsonView(false, viewData.Msg));
  9943. }
  9944. return Ok(JsonView(viewData.Data));
  9945. }
  9946. /// <summary>
  9947. /// 倒推表
  9948. /// Update
  9949. /// </summary>
  9950. /// <param name="dto"></param>
  9951. /// <returns></returns>
  9952. [HttpPost]
  9953. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9954. public async Task<IActionResult> PostInvertedListUpdate(InvertedListUpdateDto dto)
  9955. {
  9956. var viewData = await _invertedListRep._Update(dto);
  9957. if (viewData.Code != 0)
  9958. {
  9959. return Ok(JsonView(false, viewData.Msg));
  9960. }
  9961. return Ok(JsonView(viewData.Data));
  9962. }
  9963. /// <summary>
  9964. /// 倒推表
  9965. /// File Download
  9966. /// </summary>
  9967. /// <param name="dto"></param>
  9968. /// <returns></returns>
  9969. [HttpPost]
  9970. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9971. public async Task<IActionResult> PostInvertedListFileDownload(InvertedListFileDownloadDto dto)
  9972. {
  9973. var info2 = await _invertedListRep._Info(1, dto.DiId);
  9974. if (info2.Code != 0)
  9975. {
  9976. return Ok(JsonView(false, "倒推表数据未生成,请先生成倒退表数据!"));
  9977. }
  9978. var info1 = info2.Data as InvertedListInfoView;
  9979. var info = await _invertedListRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == dto.DiId).FirstAsync();
  9980. string teamName = "";
  9981. if (info != null) teamName = info.TeamName;
  9982. //载入模板
  9983. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/倒退表模板20200617.doc");
  9984. DocumentBuilder builder = new DocumentBuilder(doc);
  9985. //利用键值对存放数据
  9986. Dictionary<string, string> dic = new Dictionary<string, string>();
  9987. dic.Add("TeamName", teamName);
  9988. dic.Add("StartTime", info1.AirportdDropOffDt.ConvertToDatetime()); //开始时间
  9989. dic.Add("BPtime", info1.ApprovalDataDt.ConvertToDatetime());
  9990. dic.Add("BPRemark", info1.ApprovalDataRemark);
  9991. dic.Add("SQtime", info1.ApprovalDt.ConvertToDatetime());
  9992. dic.Add("SQRemark", info1.ApprovalRemark);
  9993. dic.Add("CPJtime", info1.IssueApprovalDt.ConvertToDatetime());
  9994. dic.Add("CPJRemark", info1.IssueApprovalRemark);
  9995. //dic.Add("HZtime", info1.ApplyPassportDt.ConvertToDatetime());
  9996. //dic.Add("HZRemark", info1.ApplyPassportRemark);
  9997. dic.Add("QZtime", info1.VisaInformationDt.ConvertToDatetime());
  9998. dic.Add("QZRemark", info1.VisaInformationRemark);
  9999. dic.Add("SQQZtime", info1.SendVisaDt.ConvertToDatetime());
  10000. dic.Add("SQQZRemark", info1.SendVisaRemark);
  10001. dic.Add("CQtime", info1.IssueVisaDt.ConvertToDatetime());
  10002. dic.Add("CQRemark", info1.IssueVisaRemark);
  10003. dic.Add("XQHtime", info1.PreTripMeetingDt.ConvertToDatetime());
  10004. dic.Add("XQHRemark", info1.PreTripMeetingRemark);
  10005. dic.Add("SJtime", info1.AirportdDropOffDt.ConvertToDatetime());
  10006. dic.Add("SJRemark", info1.AirportdDropOffRemark);
  10007. #region 填充word模板书签内容
  10008. foreach (var key in dic.Keys)
  10009. {
  10010. builder.MoveToBookmark(key);
  10011. builder.Write(dic[key]);
  10012. }
  10013. #endregion
  10014. var fileDir = AppSettingsHelper.Get("WordBasePath");
  10015. string fileName = $"{teamName}团出行准备流程表.doc";
  10016. string filePath = fileDir + $@"InvertedList/{fileName}";
  10017. doc.Save(filePath);
  10018. string Url = $@"{AppSettingsHelper.Get("WordBaseUrl")}Office/Word/InvertedList/{fileName}";
  10019. return Ok(JsonView(true, "操作成功!", Url));
  10020. }
  10021. #endregion
  10022. #region 三公签证费用(签证费、代办费)
  10023. /// <summary>
  10024. /// 三公签证费用(签证费、代办费)
  10025. /// List
  10026. /// </summary>
  10027. /// <returns></returns>
  10028. [HttpPost]
  10029. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10030. public async Task<IActionResult> PostVisaFeeList(VisaFeeListDto _dto)
  10031. {
  10032. var _view = await _visaFeeInfoRep._List(_dto.PortType, _dto.DiId);
  10033. if (_view.Code != 0)
  10034. {
  10035. return Ok(JsonView(false, _view.Msg));
  10036. }
  10037. return Ok(JsonView(true, "操作成功!", _view.Data));
  10038. }
  10039. /// <summary>
  10040. /// 三公签证费用(签证费、代办费)
  10041. /// Add Or Update
  10042. /// </summary>
  10043. /// <returns></returns>
  10044. [HttpPost]
  10045. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10046. public async Task<IActionResult> PostVisaFeeAddAndUpdate(VisaFeeAddAndUpdateDto _dto)
  10047. {
  10048. var _view = await _visaFeeInfoRep._Update(_dto);
  10049. if (_view.Code != 0)
  10050. {
  10051. return Ok(JsonView(false, _view.Msg));
  10052. }
  10053. return Ok(JsonView(true, _view.Msg));
  10054. }
  10055. #endregion
  10056. #region 酒店询价
  10057. /// <summary>
  10058. /// 酒店询价
  10059. /// Init
  10060. /// </summary>
  10061. /// <param name="dto"></param>
  10062. /// <returns></returns>
  10063. [HttpPost]
  10064. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10065. public async Task<IActionResult> PostHotelInquiryInit()
  10066. {
  10067. var res = await _hotelInquiryRep._Init();
  10068. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10069. return Ok(JsonView(true, res.Msg, res.Data));
  10070. }
  10071. /// <summary>
  10072. /// 酒店询价
  10073. /// page Item
  10074. /// </summary>
  10075. /// <param name="_dto"></param>
  10076. /// <returns></returns>
  10077. [HttpPost]
  10078. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10079. public async Task<IActionResult> PostHotelInquiryPageItem(HotelInquiryPageItemDto _dto)
  10080. {
  10081. var res = await _hotelInquiryRep._PageItem(_dto.PageIndex, _dto.PageSize, _dto.PortType, _dto.DiId);
  10082. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10083. var view = res.Data as PageDataViewBase;
  10084. return Ok(JsonView(true, res.Msg, view.Data, view.Total));
  10085. }
  10086. /// <summary>
  10087. /// 酒店询价
  10088. /// info
  10089. /// </summary>
  10090. /// <param name="_dto"></param>
  10091. /// <returns></returns>
  10092. [HttpPost]
  10093. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10094. public async Task<IActionResult> PostHotelInquiryInfo(HotelInquiryInfoDto _dto)
  10095. {
  10096. var res = await _hotelInquiryRep._Info(_dto.PortType, _dto.Id);
  10097. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10098. return Ok(JsonView(true, res.Msg, res.Data));
  10099. }
  10100. /// <summary>
  10101. /// 酒店询价
  10102. /// Add Or Edit
  10103. /// </summary>
  10104. /// <param name="_dto"></param>
  10105. /// <returns></returns>
  10106. [HttpPost]
  10107. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10108. public async Task<IActionResult> PostHotelInquiryAddOrEdit(HotelInquiryAddOrEditDto _dto)
  10109. {
  10110. var res = await _hotelInquiryRep._AddOrEdit(_dto);
  10111. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10112. return Ok(JsonView(true, res.Msg, res.Data));
  10113. }
  10114. /// <summary>
  10115. /// 酒店询价
  10116. /// Del
  10117. /// </summary>
  10118. /// <param name="_dto"></param>
  10119. /// <returns></returns>
  10120. [HttpPost]
  10121. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10122. public async Task<IActionResult> PostHotelInquiryDel(HotelInquiryDelDto _dto)
  10123. {
  10124. var res = await _hotelInquiryRep._Del(_dto.Id, _dto.DeleteUserId);
  10125. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10126. return Ok(JsonView(true, res.Msg, res.Data));
  10127. }
  10128. #endregion
  10129. #region 下载匹配op行程单
  10130. /// <summary>
  10131. /// 匹配op行程单
  10132. /// Init
  10133. /// </summary>
  10134. /// <param name="dto">团组列表请求dto</param>
  10135. /// <returns></returns>
  10136. [HttpPost]
  10137. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10138. public async Task<IActionResult> PostMateOpGroupInit(MateOpGroupInitDto dto)
  10139. {
  10140. Stopwatch stopwatch = Stopwatch.StartNew(); // 创建并启动Stopwatch
  10141. if (dto.CurrUserId < 1) return Ok(JsonView(false, MsgTips.UserId));
  10142. bool isDepStatus = await GeneralMethod.IsMarketingStaff(dto.CurrUserId);
  10143. List<Grp_DelegationInfo> groupInfos = new List<Grp_DelegationInfo>();
  10144. groupInfos = _sqlSugar.Queryable<Grp_DelegationInfo>()
  10145. .Where(it => it.IsDel == 0)
  10146. .WhereIF(isDepStatus, it => it.JietuanOperator == dto.CurrUserId)
  10147. .OrderByDescending(it => it.CreateUserId)
  10148. .ToList();
  10149. if (groupInfos.Count < 1) return Ok(JsonView(false, "暂无和你相关的团组信息!"));
  10150. var country = groupInfos.Select(it => it.VisitCountry).ToList();
  10151. var diids = groupInfos.Select(it => it.Id).ToList();
  10152. List<string> countrys = new List<string>();
  10153. foreach (var item in country)
  10154. {
  10155. var data = _groupRepository.FormartTeamName(item);
  10156. var dataArray = _groupRepository.GroupSplitCountry(data);
  10157. if (dataArray.Count > 0) countrys.AddRange(dataArray);
  10158. }
  10159. countrys = countrys.Where(it => !string.IsNullOrEmpty(it)).Distinct().ToList();
  10160. List<string> areaArray = new List<string>(); //GetGroupCityLine
  10161. var areaItem = GeneralMethod.GetGroupCityLineItem(diids, "-");
  10162. foreach (var item in areaItem)
  10163. {
  10164. string areaStr = item.Value;
  10165. if (!string.IsNullOrEmpty(areaStr))
  10166. {
  10167. string[] str1 = areaStr.Split("-");
  10168. if (str1.Length > 0)
  10169. {
  10170. areaArray.AddRange(str1);
  10171. }
  10172. }
  10173. }
  10174. if (areaArray.Count > 0) areaArray = areaArray.Distinct().ToList();
  10175. var cityDatas = _sqlSugar.Queryable<Sys_Cities>()
  10176. .Where(it => it.IsDel == 0 && areaArray.Contains(it.Name_CN))
  10177. .Select(it => new { id = it.Id, parentId = it.CountriesId, name = it.Name_CN })
  10178. .ToList();
  10179. List<int> countriesIds = cityDatas.Select(it => it.parentId).ToList();
  10180. var countriesDatas = _sqlSugar.Queryable<Sys_Countries>()
  10181. .Where(it => countriesIds.Contains(it.Id))
  10182. .Select(it => new { it.Id, Name = it.Name_CN })
  10183. .ToList();
  10184. var teamNames = groupInfos.Where(it => !string.IsNullOrEmpty(it.TeamName))
  10185. .Select(it => it.TeamName).ToList();
  10186. stopwatch.Stop();
  10187. return Ok(JsonView(true, $"操作成功,耗时{stopwatch.ElapsedMilliseconds} ms", new { teamNames, countriesDatas, citiesDatas = cityDatas }));
  10188. }
  10189. ///// <summary>
  10190. ///// 匹配op行程单
  10191. ///// Init 查询区域数据
  10192. ///// </summary>
  10193. ///// <param name="dto">团组列表请求dto</param>
  10194. ///// <returns></returns>
  10195. //[HttpPost]
  10196. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10197. //public async Task<IActionResult> PostMateOpGroupCountryChangeData(MateOpGroupCountryChangeDataDto dto)
  10198. //{
  10199. // Stopwatch stopwatch = Stopwatch.StartNew(); // 创建并启动Stopwatch
  10200. // List<Sys_Cities> cityDatas = new List<Sys_Cities>();
  10201. // string countriesDataStr = await RedisRepository.RedisFactory.CreateRedisRepository().StringGetAsync<string>("CityDatas");//string 取
  10202. // if (string.IsNullOrEmpty(countriesDataStr))
  10203. // {
  10204. // cityDatas = await _sqlSugar.Queryable<Sys_Cities>().Where(it => it.IsDel == 0).ToListAsync();
  10205. // TimeSpan ts = DateTime.Now.AddHours(2).TimeOfDay; //设置redis 过期时间 2
  10206. // await RedisRepository.RedisFactory.CreateRedisRepository().StringSetAsync<string>("CountriesDatas", JsonConvert.SerializeObject(cityDatas), ts);//string 存
  10207. // }
  10208. // else
  10209. // {
  10210. // cityDatas = JsonConvert.DeserializeObject<List<Sys_Cities>>(countriesDataStr);
  10211. // }
  10212. // var provinceData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 1).ToList();
  10213. // var citiesData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 2).ToList();
  10214. // var countiesData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 3).ToList();
  10215. // List<dynamic> childList = new List<dynamic>();
  10216. // int parentId = dto.CountriesId;
  10217. // if (provinceData.Count > 1)
  10218. // {
  10219. // foreach (var item1 in provinceData)
  10220. // {
  10221. // List<dynamic> childList1 = new List<dynamic>();
  10222. // var citiesData1 = citiesData.Where(it => it.ParentId == item1.Id).ToList();
  10223. // foreach (var item2 in citiesData1)
  10224. // {
  10225. // List<dynamic> childList2 = new List<dynamic>();
  10226. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10227. // foreach (var item3 in countiesData1)
  10228. // {
  10229. // childList2.Add(new
  10230. // {
  10231. // id = item3.Id,
  10232. // parentId = item2.Id,
  10233. // level = "district",
  10234. // name = item3.Name_CN,
  10235. // });
  10236. // }
  10237. // childList1.Add(new
  10238. // {
  10239. // id = item2.Id,
  10240. // parentId = item1.Id,
  10241. // level = "city",
  10242. // name = item2.Name_CN,
  10243. // childList = childList2
  10244. // });
  10245. // }
  10246. // childList.Add(new
  10247. // {
  10248. // id = item1.Id,
  10249. // parentId = parentId,
  10250. // level = "province",
  10251. // name = item1.Name_CN,
  10252. // childList = childList1
  10253. // });
  10254. // }
  10255. // //城市
  10256. // var citiesData2 = citiesData.Where(it => it.ParentId == 0).ToList();
  10257. // foreach (var item2 in citiesData2)
  10258. // {
  10259. // List<dynamic> childList22 = new List<dynamic>();
  10260. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10261. // foreach (var item3 in countiesData1)
  10262. // {
  10263. // childList22.Add(new
  10264. // {
  10265. // id = item3.Id,
  10266. // parentId = item2.Id,
  10267. // level = "district",
  10268. // name = item3.Name_CN,
  10269. // });
  10270. // }
  10271. // childList.Add(new
  10272. // {
  10273. // id = item2.Id,
  10274. // parentId = parentId,
  10275. // level = "city",
  10276. // name = item2.Name_CN,
  10277. // childList = childList22
  10278. // });
  10279. // }
  10280. // }
  10281. // else
  10282. // {
  10283. // foreach (var item2 in citiesData)
  10284. // {
  10285. // string cname = item2.Name_CN;
  10286. // List<dynamic> childList1 = new List<dynamic>();
  10287. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10288. // foreach (var item3 in countiesData1)
  10289. // {
  10290. // childList1.Add(new
  10291. // {
  10292. // Id = item3.Id,
  10293. // parentId = item2.Id,
  10294. // level = "district",
  10295. // name = item3.Name_CN
  10296. // });
  10297. // }
  10298. // childList.Add(new
  10299. // {
  10300. // id = item2.Id,
  10301. // parentId = parentId,
  10302. // level = "city",
  10303. // name = item2.Name_CN,
  10304. // childList = childList1
  10305. // });
  10306. // }
  10307. // }
  10308. // stopwatch.Stop();
  10309. // return Ok(JsonView(true, $"操作成功,耗时{stopwatch.ElapsedMilliseconds} ms", childList));
  10310. //}
  10311. /// <summary>
  10312. /// 匹配op行程单
  10313. /// 接团信息列表 Page
  10314. /// </summary>
  10315. /// <param name="dto">团组列表请求dto</param>
  10316. /// <returns></returns>
  10317. [HttpPost]
  10318. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10319. public async Task<IActionResult> PostMateOpGroupPageList(MateOpGroupPageListDto dto)
  10320. {
  10321. var swatch = new Stopwatch();
  10322. swatch.Start();
  10323. #region 参数验证
  10324. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  10325. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  10326. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10327. #region 页面操作权限验证
  10328. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  10329. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  10330. #endregion
  10331. #endregion
  10332. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) // web/Android
  10333. {
  10334. var _view = await GeneralMethod.MateOpGroupPageListRedis();
  10335. string sqlWhere = "";
  10336. if (!string.IsNullOrEmpty(dto.Country))
  10337. {
  10338. _view = _view.Where(x => !string.IsNullOrEmpty(x.VisitCountry) && x.VisitCountry.Contains(dto.Country)).ToList();
  10339. }
  10340. if (!string.IsNullOrEmpty(dto.Area))
  10341. {
  10342. _view = _view.Where(x => !string.IsNullOrEmpty(x.RouteCity) && x.RouteCity.Contains(dto.Area)).ToList();
  10343. }
  10344. if (!string.IsNullOrEmpty(dto.TeamName))
  10345. {
  10346. _view = _view.Where(x => !string.IsNullOrEmpty(x.TeamName) && x.TeamName.Contains(dto.TeamName)).ToList();
  10347. }
  10348. int startIndex = (dto.PageIndex - 1) * dto.PageSize; // 计算开始的索引
  10349. int endIndex = startIndex + dto.PageSize - 1; // 计算结束的索引
  10350. var _view1 = _view.Skip(startIndex).Take(endIndex).ToList();
  10351. swatch.Stop();
  10352. return Ok(JsonView(true, $"查询成功!耗时 {swatch.ElapsedMilliseconds} ms", _view1, _view.Count));
  10353. }
  10354. else
  10355. {
  10356. return Ok(JsonView(false, "查询失败"));
  10357. }
  10358. }
  10359. /// <summary>
  10360. /// 匹配op行程单
  10361. /// 行程单下载
  10362. /// </summary>
  10363. /// <param name="dto">团组列表请求dto</param>
  10364. /// <returns></returns>
  10365. [HttpPost]
  10366. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10367. public async Task<IActionResult> PostMateOpGroupDownload(MateOpGroupDownloadDto dto)
  10368. {
  10369. #region 参数验证
  10370. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  10371. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  10372. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10373. #region 页面操作权限验证
  10374. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  10375. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限"));
  10376. #endregion
  10377. #endregion
  10378. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) // web/Android
  10379. {
  10380. var res = ExportTravel(new ExportTravelDto() { Diid = dto.diId });
  10381. return Ok(res.GetType().GetProperty("Value").GetValue(res, null));
  10382. }
  10383. else
  10384. {
  10385. return Ok(JsonView(false, "下载失败!"));
  10386. }
  10387. }
  10388. #endregion
  10389. #region 国家信息 数据 注释
  10390. //[HttpPost]
  10391. //public async Task<IActionResult> LoadCitiesInitData(List<int> dto)
  10392. //{
  10393. // List<Grp_GroupsTaskAssignment> infos = new List<Grp_GroupsTaskAssignment>();
  10394. // foreach (var item in dto)
  10395. // {
  10396. // infos.Add(new Grp_GroupsTaskAssignment()
  10397. // {
  10398. // DIId = item,
  10399. // CTId = 82,
  10400. // UId = 248,
  10401. // IsEnable = 1,
  10402. // CreateUserId = 233,
  10403. // CreateTime = DateTime.Now,
  10404. // IsDel = 0
  10405. // });
  10406. // infos.Add(new Grp_GroupsTaskAssignment()
  10407. // {
  10408. // DIId = item,
  10409. // CTId = 82,
  10410. // UId = 286,
  10411. // IsEnable = 1,
  10412. // CreateUserId = 233,
  10413. // CreateTime = DateTime.Now,
  10414. // IsDel = 0
  10415. // });
  10416. // }
  10417. // int add = _sqlSugar.Insertable<Grp_GroupsTaskAssignment>(infos).ExecuteCommand();
  10418. // return Ok("操作成功");
  10419. //}
  10420. //public class paramJsonDto
  10421. //{
  10422. // public List<CountriesInfo> str { get; set; }
  10423. //}
  10424. //[HttpPost]
  10425. //public async Task<IActionResult> LoadCitiesInitData(paramJsonDto dto)
  10426. //{
  10427. // //List<CountriesInfo> infos = new List<CountriesInfo>();
  10428. // //infos = JsonConvert.DeserializeObject<List<CountriesInfo>>(dto.str);
  10429. // List<Sys_Cities> cities = new List<Sys_Cities>();
  10430. // List<Sys_Cities> districts = new List<Sys_Cities>();
  10431. // var counties = _sqlSugar.Queryable<Sys_Countries>().Where(it => it.IsDel == 0).ToList();
  10432. // _sqlSugar.BeginTran();
  10433. // int countitiesIndex = 0;
  10434. // foreach (var item in dto.str)
  10435. // {
  10436. // dynamic data = item.c;
  10437. // int countriesId = counties.Find(it => it.Name_CN.Equals(item.cn))?.Id ?? 0;
  10438. // if (data != null)
  10439. // {
  10440. // countitiesIndex++;
  10441. // foreach (var item1 in data)
  10442. // {
  10443. // string cnname = item1.cn;
  10444. // string enname = item1.en;
  10445. // Sys_Cities provinceInfo = new Sys_Cities()
  10446. // {
  10447. // CountriesId = countriesId,
  10448. // Name_CN = cnname,
  10449. // Name_EN = enname,
  10450. // ParentId = 0,
  10451. // IsCapital = 1,
  10452. // CreateUserId = 208,
  10453. // CreateTime = DateTime.Now,
  10454. // IsDel = 0
  10455. // };
  10456. // if (item1.lv == "province") //省份
  10457. // {
  10458. // provinceInfo.Level = 1;
  10459. // int provinceId = 0;
  10460. // var provinceInfo1 = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 1 && it.Name_CN.Equals(cnname)).First();
  10461. // if (provinceInfo1 != null) provinceId = provinceInfo1.Id;
  10462. // else provinceId = _sqlSugar.Insertable<Sys_Cities>(provinceInfo).ExecuteReturnIdentity();
  10463. // var data1 = item1.c;
  10464. // foreach (var item2 in data1)
  10465. // {
  10466. // if (item2.lv == "city")
  10467. // {
  10468. // string citycnname = item2.cn;
  10469. // string cityenname = item2.en;
  10470. // Sys_Cities cityInfo = new Sys_Cities()
  10471. // {
  10472. // CountriesId = countriesId,
  10473. // ParentId = provinceId,
  10474. // Level = 2,
  10475. // Name_CN = citycnname,
  10476. // Name_EN = cityenname,
  10477. // IsCapital = 1,
  10478. // CreateUserId = 208,
  10479. // CreateTime = DateTime.Now,
  10480. // IsDel = 0
  10481. // };
  10482. // if (item2.c != null)
  10483. // {
  10484. // int cityId = 0;
  10485. // var citiesInfo = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 2 && it.Name_CN.Equals(citycnname)).First();
  10486. // if (citiesInfo != null) cityId = citiesInfo.Id;
  10487. // else cityId = _sqlSugar.Insertable<Sys_Cities>(cityInfo).ExecuteReturnIdentity();
  10488. // foreach (var item3 in item2.c)
  10489. // {
  10490. // if (item3.lv == "district")
  10491. // {
  10492. // var districtInfo = new Sys_Cities()
  10493. // {
  10494. // CountriesId = countriesId,
  10495. // Name_CN = item3.cn,
  10496. // Name_EN = item3.en,
  10497. // Level = 3,
  10498. // ParentId = cityId,
  10499. // IsCapital = 1,
  10500. // CreateUserId = 208,
  10501. // CreateTime = DateTime.Now,
  10502. // IsDel = 0
  10503. // };
  10504. // //if (districts.Find(it => it.CountriesId == countriesId && it.ParentId == cityId && it.Name_CN.Equals(districtInfo.Name_CN)) == null)
  10505. // //{
  10506. // districts.Add(districtInfo);
  10507. // //}
  10508. // }
  10509. // }
  10510. // }
  10511. // else
  10512. // {
  10513. // //if (cities.Find(it => it.CountriesId == countriesId && it.ParentId == provinceId && it.Name_CN.Equals(citycnname)) == null)
  10514. // //{
  10515. // cities.Add(cityInfo);
  10516. // //}
  10517. // }
  10518. // }
  10519. // }
  10520. // }
  10521. // else if (item1.lv == "city")//城市
  10522. // {
  10523. // provinceInfo.Level = 2;
  10524. // if (item1.c != null)
  10525. // {
  10526. // int cityId = 0;
  10527. // var citiesInfo = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 1 && it.Name_CN.Equals(provinceInfo.Name_CN)).First();
  10528. // if (citiesInfo != null) cityId = citiesInfo.Id;
  10529. // else cityId = _sqlSugar.Insertable<Sys_Cities>(provinceInfo).ExecuteReturnIdentity();
  10530. // foreach (var item3 in item1.c)
  10531. // {
  10532. // if (item3.lv == "district")
  10533. // {
  10534. // var districtInfo = new Sys_Cities()
  10535. // {
  10536. // CountriesId = countriesId,
  10537. // Name_CN = item3.cn,
  10538. // Name_EN = item3.en,
  10539. // Level = 3,
  10540. // ParentId = cityId,
  10541. // IsCapital = 1,
  10542. // CreateUserId = 208,
  10543. // CreateTime = DateTime.Now,
  10544. // IsDel = 0
  10545. // };
  10546. // //if (districts.Find(it => it.CountriesId == countriesId && it.ParentId == cityId && it.Name_CN.Equals(districtInfo.Name_CN)) == null)
  10547. // //{
  10548. // districts.Add(districtInfo);
  10549. // //}
  10550. // }
  10551. // }
  10552. // }
  10553. // else
  10554. // {
  10555. // //if (cities.Find(it => it.CountriesId == countriesId && it.Name_CN.Equals(provinceInfo.Name_CN)) == null)
  10556. // //{
  10557. // cities.Add(provinceInfo);
  10558. // //}
  10559. // }
  10560. // }
  10561. // }
  10562. // }
  10563. // }
  10564. // var procinceDatas = _sqlSugar.Queryable<Sys_Cities>().ToList();
  10565. // cities = cities.Distinct().ToList();
  10566. // districts = districts.Distinct().ToList();
  10567. // var citiesDatas = cities.Where(it => it.Level == 2).ToList();
  10568. // //var districtDatas = cities.Where(it => it.Level == 3).ToList();
  10569. // cities.AddRange(districts);
  10570. // var citiesAdd = _sqlSugar.Insertable<Sys_Cities>(cities).ExecuteReturnIdentity();
  10571. // //_sqlSugar.RollbackTran();
  10572. // _sqlSugar.CommitTran();
  10573. // return Ok(JsonView(false, "操作成功!"));
  10574. //}
  10575. //[HttpPost]
  10576. //public async Task<IActionResult> LoadCitiesInitInfo(CounrtiesDto dto)
  10577. //{
  10578. // List<CountitiesInfo> infos = dto.MyProperty;
  10579. // List<Sys_Cities> cityInfos = new List<Sys_Cities>();
  10580. // _sqlSugar.BeginTran();
  10581. // var countities = _sqlSugar.Queryable<Sys_Countries>().Where(it => it.IsDel == 0).ToList();
  10582. // var citities = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.IsDel == 0 && it.Level == 2).ToList();
  10583. // foreach (var item in infos)
  10584. // {
  10585. // var countryInfo = countities.Where(it => it.ThreeCode.Equals(item.country_code3)).FirstOrDefault();
  10586. // if (countryInfo != null)
  10587. // {
  10588. // var cityInfo = citities.Where(it => it.CountriesId == countryInfo.Id).ToList();
  10589. // var cityInfo1 = cityInfo.Where(it => item.capital_name_chinese.Contains(it.Name_CN)).FirstOrDefault();
  10590. // if (cityInfo1 != null)
  10591. // {
  10592. // cityInfo1.IsCapital = 0;
  10593. // cityInfos.Add(cityInfo1);
  10594. // }
  10595. // }
  10596. // }
  10597. // var update = _sqlSugar.Updateable<Sys_Cities>(cityInfos)
  10598. // .UpdateColumns(it => it.IsCapital)
  10599. // .WhereColumns(it => it.Id)
  10600. // .ExecuteCommand();
  10601. // //_sqlSugar.RollbackTran();
  10602. // _sqlSugar.CommitTran();
  10603. // return Ok(JsonView(false, "操作成功!"));
  10604. //}
  10605. //public class CounrtiesDto
  10606. //{
  10607. // public List<CountitiesInfo> MyProperty { get; set; }
  10608. //}
  10609. //public class CountitiesInfo
  10610. //{
  10611. // /// <summary>
  10612. // /// 圣约翰
  10613. // /// </summary>
  10614. // public string capital_name_chinese { get; set; }
  10615. // /// <summary>
  10616. // ///
  10617. // /// </summary>
  10618. // public string capital_name { get; set; }
  10619. // /// <summary>
  10620. // ///
  10621. // /// </summary>
  10622. // public string country_type { get; set; }
  10623. // /// <summary>
  10624. // /// 安提瓜和巴布达
  10625. // /// </summary>
  10626. // public string country_name_chinese { get; set; }
  10627. // /// <summary>
  10628. // /// 安提瓜和巴布达
  10629. // /// </summary>
  10630. // public string country_name_chinese_short { get; set; }
  10631. // /// <summary>
  10632. // /// 安提瓜和巴布达
  10633. // /// </summary>
  10634. // public string country_name_chinese_UN { get; set; }
  10635. // /// <summary>
  10636. // ///
  10637. // /// </summary>
  10638. // public string country_name_english_abbreviation { get; set; }
  10639. // /// <summary>
  10640. // ///
  10641. // /// </summary>
  10642. // public string country_name_english_formal { get; set; }
  10643. // /// <summary>
  10644. // ///
  10645. // /// </summary>
  10646. // public string country_name_english_UN { get; set; }
  10647. // /// <summary>
  10648. // ///
  10649. // /// </summary>
  10650. // public string continent_name { get; set; }
  10651. // /// <summary>
  10652. // ///
  10653. // /// </summary>
  10654. // public string subregion_name { get; set; }
  10655. // /// <summary>
  10656. // ///
  10657. // /// </summary>
  10658. // public string country_code2 { get; set; }
  10659. // /// <summary>
  10660. // ///
  10661. // /// </summary>
  10662. // public string country_code3 { get; set; }
  10663. // /// <summary>
  10664. // ///
  10665. // /// </summary>
  10666. // public string phone_code { get; set; }
  10667. //}
  10668. //public class CountriesInfo : BasicInfo
  10669. //{
  10670. // public List<CitiesInfo> c { get; set; }
  10671. //}
  10672. //public class CitiesInfo : BasicInfo
  10673. //{
  10674. // public List<AreaInfo> c { get; set; }
  10675. //}
  10676. //public class AreaInfo : BasicInfo
  10677. //{
  10678. // public List<AreaInfo> c { get; set; }
  10679. //}
  10680. //public class BasicInfo
  10681. //{
  10682. // public string code { get; set; }
  10683. // public string cn { get; set; }
  10684. // public string lv { get; set; }
  10685. // public string en { get; set; }
  10686. //}
  10687. #endregion
  10688. #region 查看邀请方
  10689. /// <summary>
  10690. /// 查看邀请方
  10691. /// 邀请方信息 Init
  10692. /// </summary>
  10693. /// <param name="dto"></param>
  10694. /// <returns></returns>
  10695. [HttpPost]
  10696. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10697. public async Task<IActionResult> PostGroupLinkInvitingUnitNameInit(GroupLinkInvitingUnitNameInitDto dto)
  10698. {
  10699. string sqlWhere = string.Empty;
  10700. if (!string.IsNullOrEmpty(dto.Search))
  10701. {
  10702. sqlWhere = string.Format($@" And UnitName Like '%{dto.Search}%'");
  10703. }
  10704. string sql = string.Format($@"Select
  10705. ROW_NUMBER() Over(Order By Id desc) As Row_Number,
  10706. Id,
  10707. UnitName
  10708. From Res_InvitationOfficialActivityData
  10709. Where IsDel = 0
  10710. And (UnitName != '' Or UnitName != null) {sqlWhere}");
  10711. RefAsync<int> total = 0;
  10712. var _views = await _sqlSugar.SqlQueryable<GroupLinkInvitingUnitNameInitView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  10713. return Ok(JsonView(true, MsgTips.Succeed, _views, total));
  10714. }
  10715. /// <summary>
  10716. /// 查看邀请方
  10717. /// 国家信息 Init
  10718. /// </summary>
  10719. /// <param name="dto"></param>
  10720. /// <returns></returns>
  10721. [HttpPost]
  10722. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10723. public async Task<IActionResult> PostGroupLinkInvitingCountryInit(GroupLinkInvitingUnitNameInitDto dto)
  10724. {
  10725. var groupInfos = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).OrderByDescending(it => it.CreateUserId).ToListAsync();
  10726. var country = groupInfos.Select(it => it.VisitCountry).ToList();
  10727. var diids = groupInfos.Select(it => it.Id).ToList();
  10728. List<string> countrys = new List<string>();
  10729. foreach (var item in country)
  10730. {
  10731. var data = _groupRepository.FormartTeamName(item);
  10732. var dataArray = _groupRepository.GroupSplitCountry(data);
  10733. if (dataArray.Count > 0) countrys.AddRange(dataArray);
  10734. }
  10735. countrys = countrys.Distinct().ToList();
  10736. for (int i = 0; i < countrys.Count; i++)
  10737. {
  10738. string item = countrys[i];
  10739. if (string.IsNullOrEmpty(item) || item.Contains("-"))
  10740. {
  10741. countrys.Remove(item);
  10742. i--;
  10743. }
  10744. }
  10745. RefAsync<int> total = 0;
  10746. var countyDatas = await _sqlSugar.Queryable<Sys_Countries>()
  10747. .Where(it => countrys.Contains(it.Name_CN))
  10748. .WhereIF(!string.IsNullOrEmpty(dto.Search), it => it.Name_CN.Contains(dto.Search))
  10749. .Select(it => new { id = it.Id, name = it.Name_CN })
  10750. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  10751. return Ok(JsonView(true, MsgTips.Succeed, countyDatas, total));
  10752. }
  10753. /// <summary>
  10754. /// 查看邀请方
  10755. /// 城市信息 Init
  10756. /// </summary>
  10757. /// <param name="dto"></param>
  10758. /// <returns></returns>
  10759. [HttpPost]
  10760. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10761. public async Task<IActionResult> PostGroupLinkInvitingCityInit(GroupLinkInvitingCityInitDto dto)
  10762. {
  10763. if (dto.CountiesId < 1) return Ok(JsonView(false, "请传入有效的国家Id"));
  10764. RefAsync<int> total = 0;
  10765. var countyDatas = await _sqlSugar.Queryable<Sys_Cities>()
  10766. .Where(it => it.CountriesId == dto.CountiesId)
  10767. .WhereIF(!string.IsNullOrEmpty(dto.Search), it => it.Name_CN.Contains(dto.Search))
  10768. .OrderBy(it => new { IsCapital = SqlFunc.Asc(it.IsCapital), Id = SqlFunc.Asc(it.Id) })
  10769. .Select(it => new { id = it.Id, name = it.Name_CN })
  10770. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  10771. return Ok(JsonView(true, MsgTips.Succeed, countyDatas, total));
  10772. }
  10773. /// <summary>
  10774. /// 查看邀请方
  10775. /// 团组名称 Init
  10776. /// </summary>
  10777. /// <param name="dto"></param>
  10778. /// <returns></returns>
  10779. [HttpPost]
  10780. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10781. public async Task<IActionResult> PostGroupLinkInvitingGroupInit(GroupLinkInvitingDto dto)
  10782. {
  10783. var watch = new Stopwatch();
  10784. watch.Start();
  10785. RefAsync<int> total = 0;
  10786. var countyDatas = await _sqlSugar.Queryable<Res_OfficialActivities>()
  10787. .InnerJoin<Grp_DelegationInfo>((oa, di) => oa.DiId == di.Id)
  10788. .Where((oa, di) => oa.IsDel == 0)
  10789. .WhereIF(!string.IsNullOrEmpty(dto.Search), (oa, di) => di.TeamName.Contains(dto.Search))
  10790. .OrderBy((oa, di) => new { id = SqlFunc.Desc(di.Id) })
  10791. .Select((oa, di) => new { id = di.Id, name = di.TeamName })
  10792. .Distinct()
  10793. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  10794. watch.Stop();
  10795. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", countyDatas, total));
  10796. }
  10797. /// <summary>
  10798. /// 查看邀请方
  10799. /// 团组 & 邀请方信息
  10800. /// </summary>
  10801. /// <param name="dto"></param>
  10802. /// <returns></returns>
  10803. [HttpPost]
  10804. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10805. public async Task<IActionResult> PostGroupLinkInvitingPageList(GroupLinkInvitingPageListDto dto)
  10806. {
  10807. var watch = new Stopwatch();
  10808. watch.Start();
  10809. RefAsync<int> total = 0;
  10810. var infos = await _sqlSugar.Queryable<GroupLinkInvitingPageListView>()
  10811. .AS("Grp_DelegationInfo")
  10812. .Includes(x => x.InvitingInfos)
  10813. .Where(x => x.IsDel == 0 && x.InvitingInfos.Any(z => z.IsDel == 0))
  10814. .WhereIF(!string.IsNullOrEmpty(dto.Counrty), x => x.VisitCountry.Contains(dto.Counrty))
  10815. .WhereIF(!string.IsNullOrEmpty(dto.Area), x => x.InvitingInfos.Any(z => z.Area.Contains(dto.Area))) //
  10816. .WhereIF(!string.IsNullOrEmpty(dto.TeamName), x => x.TeamName.Contains(dto.TeamName)) //
  10817. .WhereIF(!string.IsNullOrEmpty(dto.UnitName), x => x.InvitingInfos.Any(z => z.Client.Contains(dto.UnitName)))
  10818. .OrderBy(x => new { JietuanTime = SqlFunc.Desc(x.VisitStartDate) })
  10819. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  10820. var userDatas = _sqlSugar.Queryable<Sys_Users>().Where(x => x.IsDel == 0).ToList();
  10821. var setDatas = _sqlSugar.Queryable<Sys_SetData>().Where(x => x.IsDel == 0).ToList();
  10822. infos.ForEach(x =>
  10823. {
  10824. x.TeamDid = setDatas.Find(y => int.Parse(x.TeamDid) == y.Id)?.Name ?? "-";
  10825. x.JietuanOperator = userDatas.Find(y => int.Parse(x.JietuanOperator) == y.Id)?.CnName ?? "-";
  10826. x.TeamLevSId = setDatas.Find(y => int.Parse(x.TeamLevSId) == y.Id)?.Name ?? "-";
  10827. x.InvitingInfos = x.InvitingInfos.Where(it => it.IsDel == 0).ToList();
  10828. });
  10829. watch.Stop();
  10830. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", infos, total));
  10831. }
  10832. #endregion
  10833. #region 报批行程
  10834. /// <summary>
  10835. /// 报批行程初始化
  10836. /// </summary>
  10837. /// <param name="dto"></param>
  10838. /// <returns></returns>
  10839. [HttpPost]
  10840. public IActionResult ApprovalJourneyInit(ApprovalJourneyDto dto)
  10841. {
  10842. const int chiNumber = 5;
  10843. var jw = JsonView(false);
  10844. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  10845. var group = groupList.First();
  10846. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  10847. group = groupList.First(x => x.Id == diid);
  10848. if (group == null)
  10849. {
  10850. jw.Msg = "暂无团组!";
  10851. return Ok(jw);
  10852. }
  10853. var data = new
  10854. {
  10855. groupList = groupList.Select(x => new
  10856. {
  10857. x.TeamName,
  10858. x.Id
  10859. }),
  10860. content = new ArrayList(),
  10861. groupInfo = new
  10862. {
  10863. group.VisitDays,
  10864. group.TourCode,
  10865. group.VisitPNumber,
  10866. group.TeamName,
  10867. group.Id,
  10868. visitStartDate = group.VisitStartDate.ToString("yyyy-MM-dd"),
  10869. visitEndDate = group.VisitEndDate.ToString("yyyy-MM-dd")
  10870. },
  10871. };
  10872. var resultArr = new ArrayList();
  10873. var content = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.Diid == diid && x.IsDel == 0).ToList();
  10874. if (content.Count == 0)
  10875. {
  10876. var stay = "-";
  10877. var cityPath = "-";
  10878. //添加城市路径以及住宿地
  10879. //黑屏代码数据
  10880. DataTable dtBlack = GeneralMethod.GetTableByBlackCode(group.Id);
  10881. if (dtBlack.Rows.Count == 0 || string.IsNullOrWhiteSpace(dtBlack.Rows[0][1].ToString()))
  10882. {
  10883. jw = JsonView(true, "黑屏代码有误!", data);
  10884. return Ok(jw);
  10885. }
  10886. foreach (DataRow row in dtBlack.Rows)
  10887. {
  10888. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  10889. {
  10890. jw = JsonView(true, "黑屏代码有误!" + row["Error"].ToString(), data);
  10891. return Ok(jw);
  10892. }
  10893. }
  10894. //黑屏代码获取时间区间
  10895. var timeArr = GeneralMethod.GetTimeListByDataTable(dtBlack);
  10896. string[] Day = new string[] { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" };
  10897. _sqlSugar.BeginTran();
  10898. for (int i = 0; i < timeArr.Count; i++)
  10899. {
  10900. stay = "-";
  10901. cityPath = "-";
  10902. DateTime NewData = DateTime.Parse(timeArr[i]);
  10903. string week = Day[Convert.ToInt32(NewData.DayOfWeek.ToString("d"))].ToString();
  10904. Grp_ApprovalTravel appro = new Grp_ApprovalTravel();
  10905. var tbSelect = dtBlack.Select(string.Format("Day = '{0}'", NewData.ToString("yyyy-MM-dd")));
  10906. if (tbSelect.Length > 0)
  10907. {
  10908. List<string> threeCodeStr = new List<string>();
  10909. foreach (var item in tbSelect)
  10910. {
  10911. var threeCode = item["Three"].ToString() ?? "";
  10912. if (threeCode.Length == 6)
  10913. {
  10914. var start = threeCode.Substring(0, 3);
  10915. var end = threeCode.Substring(3, 3);
  10916. if (threeCodeStr.Count == 0)
  10917. {
  10918. threeCodeStr.Add(start);
  10919. threeCodeStr.Add(end);
  10920. }
  10921. else
  10922. {
  10923. if (threeCodeStr[threeCodeStr.Count - 1] == start)
  10924. {
  10925. threeCodeStr.Add(end);
  10926. }
  10927. else
  10928. {
  10929. threeCodeStr.Add(start);
  10930. threeCodeStr.Add(end);
  10931. }
  10932. }
  10933. }
  10934. }
  10935. var threeCodeList = _threeCodeRepository.QueryThreeCodeArray(threeCodeStr);
  10936. var last = threeCodeStr.Last();
  10937. foreach (var item in threeCodeStr)
  10938. {
  10939. cityPath += (threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】") + "-";
  10940. if (item.Equals(last))
  10941. {
  10942. stay = threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】";
  10943. }
  10944. }
  10945. cityPath = cityPath.Trim('-');
  10946. }
  10947. appro.Date = "第" + intToString(i + 1) + "天 " + NewData.Month + "月" + NewData.Day + "日(" + week + ") " + cityPath + " 宿:" + stay;
  10948. appro.Diid = diid ?? -1;
  10949. var thisId = _sqlSugar.Insertable<Grp_ApprovalTravel>(appro).ExecuteReturnIdentity();
  10950. appro.Id = thisId;
  10951. appro.CreateUserId = dto.UserId;
  10952. appro.CreateTime = DateTime.Now;
  10953. content.Add(appro);
  10954. }
  10955. _sqlSugar.CommitTran();
  10956. }
  10957. foreach (var x in content)
  10958. {
  10959. var chiList = _sqlSugar.Queryable<Grp_ApprovalTravelDetails>().Where(x1 => x1.ParentId == x.Id && x1.IsDel == 0).ToList();
  10960. if (chiList.Count < chiNumber)
  10961. {
  10962. for (int i = chiList.Count; i < chiNumber; i++)
  10963. {
  10964. chiList.Add(new Grp_ApprovalTravelDetails());
  10965. }
  10966. }
  10967. resultArr.Add(new
  10968. {
  10969. x.Id,
  10970. x.Date,
  10971. x.Diid,
  10972. chiList = chiList.Select(x1 => new
  10973. {
  10974. timeInterval = x1.Time == null ? new string[1] : x1.Time.Split('-'),
  10975. x1.Details,
  10976. x1.ParentId,
  10977. x1.Id
  10978. })
  10979. });
  10980. }
  10981. data = data with
  10982. {
  10983. content = resultArr,
  10984. };
  10985. jw = JsonView(true, "获取成功!", data);
  10986. return Ok(jw);
  10987. }
  10988. /// <summary>
  10989. /// 报批行程删除
  10990. /// </summary>
  10991. /// <param name="dto"></param>
  10992. /// <returns></returns>
  10993. [HttpPost]
  10994. public IActionResult DeleteApprovalJourney(DeleteApprovalJourney dto)
  10995. {
  10996. var jw = JsonView(false);
  10997. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  10998. if (group == null)
  10999. {
  11000. jw.Msg = "团组参数有误!";
  11001. return Ok(jw);
  11002. }
  11003. try
  11004. {
  11005. _sqlSugar.BeginTran();
  11006. var arr = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.Diid == dto.Diid && x.IsDel == 0).Select(x => x.Id).ToList();
  11007. _ = _sqlSugar.Updateable<Grp_ApprovalTravelDetails>().SetColumns(x => new Grp_ApprovalTravelDetails
  11008. {
  11009. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  11010. DeleteUserId = dto.uesrId,
  11011. IsDel = 1
  11012. }).Where(x => arr.Contains(x.ParentId) && x.IsDel == 0).ExecuteCommand();
  11013. _ = _sqlSugar.Updateable<Grp_ApprovalTravel>().SetColumns(x => new Grp_ApprovalTravel
  11014. {
  11015. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  11016. DeleteUserId = dto.uesrId,
  11017. IsDel = 1
  11018. }).Where(x => arr.Contains(x.Id)).ExecuteCommand();
  11019. _sqlSugar.CommitTran();
  11020. jw = JsonView(true, "删除成功");
  11021. }
  11022. catch (Exception ex)
  11023. {
  11024. jw = JsonView(false, ex.Message);
  11025. }
  11026. return Ok(jw);
  11027. }
  11028. /// <summary>
  11029. /// 报批行程保存
  11030. /// </summary>
  11031. /// <param name="dto"></param>
  11032. /// <returns></returns>
  11033. [HttpPost]
  11034. public IActionResult SaveApprovalJourney(SaveApprovalJourney dto)
  11035. {
  11036. var jw = JsonView(false);
  11037. var Find = dto.Arr.Find(x => x.id == 0);
  11038. if (Find != null)
  11039. {
  11040. jw.Msg = "生成的ID为0!";
  11041. return Ok(jw);
  11042. }
  11043. foreach (var item in dto.Arr)
  11044. {
  11045. foreach (var chi in item.chiList)
  11046. {
  11047. if (chi.parentId == 0)
  11048. {
  11049. chi.parentId = item.id;
  11050. }
  11051. }
  11052. }
  11053. var chiArr = dto.Arr.SelectMany(x => x.chiList).ToList();
  11054. _sqlSugar.BeginTran();
  11055. if (chiArr.Where(x => x.id == 0).Count() == chiArr.Count)
  11056. {
  11057. var parentIds = dto.Arr.Select(x => x.id).ToList();
  11058. _sqlSugar.Updateable<Grp_ApprovalTravelDetails>().Where(x => parentIds.Contains(x.ParentId) && x.IsDel == 0).SetColumns(x => new Grp_ApprovalTravelDetails
  11059. {
  11060. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  11061. DeleteUserId = dto.UserId,
  11062. IsDel = 1
  11063. }).ExecuteCommand();
  11064. }
  11065. try
  11066. {
  11067. _ = _sqlSugar.Insertable<Grp_ApprovalTravelDetails>(chiArr.Where(x => x.id == 0).Select(x => new Grp_ApprovalTravelDetails
  11068. {
  11069. CreateTime = DateTime.Now,
  11070. CreateUserId = dto.UserId,
  11071. Details = x.details,
  11072. ParentId = x.parentId,
  11073. Time = x.timeInterval.Where(x => !string.IsNullOrWhiteSpace(x)).Count() > 1 ? x.timeInterval[0] + "-" + x.timeInterval[1] : "",
  11074. Remark = "",
  11075. IsDel = 0
  11076. }).ToList()).ExecuteCommand();
  11077. _ = _sqlSugar.Updateable<Grp_ApprovalTravelDetails>(chiArr.Where(x => x.id != 0).Select(x => new Grp_ApprovalTravelDetails
  11078. {
  11079. Id = x.id,
  11080. Details = x.details,
  11081. ParentId = x.parentId,
  11082. Time = x.timeInterval.Where(x => !string.IsNullOrWhiteSpace(x)).Count() > 1 ? x.timeInterval[0] + "-" + x.timeInterval[1] : "",
  11083. }).ToList()).UpdateColumns(x => new Grp_ApprovalTravelDetails
  11084. {
  11085. Details = x.Details,
  11086. ParentId = x.ParentId,
  11087. Time = x.Time
  11088. }).ExecuteCommand();
  11089. _ = _sqlSugar.Updateable<Grp_ApprovalTravel>(dto.Arr.Where(x => x.id != 0).Select(x => new Grp_ApprovalTravel
  11090. {
  11091. Id = x.id,
  11092. Date = x.date,
  11093. }).ToList()).UpdateColumns(x => new Grp_ApprovalTravel
  11094. {
  11095. Date = x.Date
  11096. }).ExecuteCommand();
  11097. _sqlSugar.CommitTran();
  11098. jw = JsonView(true, "保存成功!");
  11099. }
  11100. catch (Exception ex)
  11101. {
  11102. _sqlSugar.RollbackTran();
  11103. jw = JsonView(false, "保存失败!" + ex.Message);
  11104. }
  11105. return Ok(jw);
  11106. }
  11107. /// <summary>
  11108. /// 报批行程生成
  11109. /// </summary>
  11110. /// <param name="dto"></param>
  11111. /// <returns></returns>
  11112. [HttpPost]
  11113. public IActionResult CreateApprovalJourney(CreateApprovalJourneyDto dto)
  11114. {
  11115. var jw = JsonView(false);
  11116. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  11117. if (group == null)
  11118. {
  11119. jw.Msg = "暂无该团组!";
  11120. return Ok(jw);
  11121. }
  11122. //黑屏代码数据
  11123. DataTable dtBlack = GeneralMethod.GetTableByBlackCode(group.Id);
  11124. if (dtBlack.Rows.Count == 0 || string.IsNullOrWhiteSpace(dtBlack.Rows[0][1].ToString()))
  11125. {
  11126. jw.Msg = "黑屏代码有误!";
  11127. return Ok(jw);
  11128. }
  11129. foreach (DataRow row in dtBlack.Rows)
  11130. {
  11131. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  11132. {
  11133. jw.Msg = "黑屏代码有误!" + row["Error"].ToString();
  11134. return Ok(jw);
  11135. }
  11136. }
  11137. var officialActivitiesArr = _sqlSugar.Queryable<Res_OfficialActivities>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).ToList();
  11138. var resultArr = new ArrayList();
  11139. if (officialActivitiesArr.Count == 0)
  11140. {
  11141. jw.Msg = "暂无公务出访信息!";
  11142. return Ok(jw);
  11143. }
  11144. try
  11145. {
  11146. _sqlSugar.BeginTran();
  11147. DeleteApprovalJourney(new
  11148. Domain.Dtos.Groups.DeleteApprovalJourney
  11149. {
  11150. Diid = dto.Diid,
  11151. uesrId = dto.Userid
  11152. });
  11153. var stay = "-";
  11154. var cityPath = "-";
  11155. //添加城市路径以及住宿地
  11156. //黑屏代码获取时间区间
  11157. var timeArr = GeneralMethod.GetTimeListByDataTable(dtBlack);
  11158. var empty = "【未收入该三字码!请机票同事录入】";
  11159. string[] Day = new string[] { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" };
  11160. for (int i = 0; i < timeArr.Count; i++)
  11161. {
  11162. stay = "-";
  11163. cityPath = "-";
  11164. var chiarr = new List<Grp_ApprovalTravelDetails>();
  11165. DateTime NewData = DateTime.Parse(timeArr[i]);
  11166. 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();
  11167. var tbSelect = dtBlack.Select(string.Format("Day = '{0}'", NewData.ToString("yyyy-MM-dd")));
  11168. if (tbSelect.Length > 0)
  11169. {
  11170. List<string> threeCodeStr = new List<string>();
  11171. bool isTrade = false;
  11172. string trip = string.Empty;
  11173. var rowLast = tbSelect.Last();
  11174. var rowFirst = tbSelect.First();
  11175. var airStartTime = rowFirst["StartTime"].ToString() ?? "0000";
  11176. var airEndTime = rowLast["EndTime"].ToString() ?? "0000";
  11177. var takeOffTime = DateTime.Parse(timeArr[i]);
  11178. var fallToTime = DateTime.Parse(timeArr[i]);
  11179. takeOffTime = takeOffTime.AddHours(int.Parse(airStartTime.Substring(0, 2)));
  11180. takeOffTime = takeOffTime.AddMinutes(int.Parse(airStartTime.Substring(2, 2)));
  11181. fallToTime = fallToTime.AddHours(int.Parse(airEndTime.Substring(0, 2)));
  11182. fallToTime = fallToTime.AddMinutes(int.Parse(airEndTime.Substring(2, 2)));
  11183. foreach (var item in tbSelect)
  11184. {
  11185. var start = string.Empty;
  11186. var end = string.Empty;
  11187. var threeCode = item["Three"].ToString() ?? "";
  11188. if (threeCode.Length == 6)
  11189. {
  11190. start = threeCode.Substring(0, 3);
  11191. end = threeCode.Substring(3, 3);
  11192. if (threeCodeStr.Count == 0)
  11193. {
  11194. threeCodeStr.Add(start);
  11195. threeCodeStr.Add(end);
  11196. }
  11197. else
  11198. {
  11199. if (threeCodeStr[threeCodeStr.Count - 1] == start)
  11200. {
  11201. threeCodeStr.Add(end);
  11202. }
  11203. else
  11204. {
  11205. threeCodeStr.Add(start);
  11206. threeCodeStr.Add(end);
  11207. }
  11208. }
  11209. }
  11210. //处理机票信息
  11211. var start_Object = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three.ToUpper() == start.ToUpper());
  11212. var end_Object = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three.ToUpper() == end.ToUpper());
  11213. if (start_Object == null)
  11214. {
  11215. start_Object = new Res_ThreeCode()
  11216. {
  11217. AirPort = empty,
  11218. AirPort_En = empty,
  11219. City = empty,
  11220. Country = empty,
  11221. Four = empty,
  11222. Three = empty,
  11223. };
  11224. }
  11225. if (end_Object == null)
  11226. {
  11227. end_Object = new Res_ThreeCode()
  11228. {
  11229. AirPort = empty,
  11230. AirPort_En = empty,
  11231. City = empty,
  11232. Country = empty,
  11233. Four = empty,
  11234. Three = empty,
  11235. };
  11236. }
  11237. //机型判断
  11238. string airModel = item["AirModel"].ToString();
  11239. airModel = GeneralMethod.GetLonger(airModel!.Substring(0, 1)) + airModel;
  11240. string flightTime = item["FlightTime"].ToString();
  11241. if (flightTime!.Contains(":"))
  11242. {
  11243. flightTime = flightTime.Replace(":", "小时");
  11244. flightTime += "分钟";
  11245. }
  11246. if (flightTime.Contains("H"))
  11247. {
  11248. flightTime = flightTime.Replace("H", "小时");
  11249. }
  11250. if (flightTime.Contains("M"))
  11251. {
  11252. flightTime = flightTime.Replace("M", "分钟");
  11253. }
  11254. IFormatProvider ifp = new CultureInfo("zh-CN", true);
  11255. if (DateTime.TryParseExact(flightTime, "HH小时mm分钟", ifp, DateTimeStyles.None, out DateTime flightDataTime))
  11256. {
  11257. flightTime = flightDataTime.Hour > 0
  11258. ? flightDataTime.Hour.ToString() + "小时" + (flightDataTime.Minute > 0
  11259. ? flightDataTime.Minute.ToString() + "分钟" : "") : flightDataTime.Minute > 0
  11260. ? flightDataTime.Minute.ToString() + "分钟" : "";
  11261. }
  11262. //航班号
  11263. string flightcode = item["Fliagtcode"].ToString();
  11264. var aircompany = _sqlSugar.Queryable<Res_AirCompany>().First(x => x.ShortCode.ToUpper() == flightcode!.Substring(0, 2).ToUpper() && x.IsDel == 0);
  11265. var hsEmpty = "【此航司" + flightcode!.Substring(0, 2).ToUpper() + "未收录,请机票同事录入】";
  11266. if (aircompany == null)
  11267. {
  11268. aircompany = new Res_AirCompany
  11269. {
  11270. CnName = hsEmpty,
  11271. EnName = hsEmpty,
  11272. ShortCode = hsEmpty,
  11273. };
  11274. }
  11275. //从成都天府国际机场搭乘四川航空公司3U3961飞往东京
  11276. trip += $"从{start_Object.AirPort}搭乘{aircompany.CnName} {flightcode} 飞往 {end_Object.City};\r\n({start_Object.AirPort}/{end_Object.AirPort} 机型:{airModel} 飞行时间{flightTime});\r\n";
  11277. isTrade = Convert.ToBoolean(item["isTransitShipment"]);
  11278. if (isTrade)
  11279. {
  11280. trip += $"抵达{end_Object.AirPort}{item["EndBuilding"].ToString().Trim()}航站楼(中转 行李直达)\r\n";
  11281. }
  11282. else
  11283. {
  11284. trip += "\r\n"; //$"抵达{end_Object.AirPort}{item["EndBuilding"].ToString().Trim()}航站楼,办理入境手续,之后前往提取行李\r\n";
  11285. }
  11286. }
  11287. chiarr.Add(new Grp_ApprovalTravelDetails
  11288. {
  11289. Time = takeOffTime.ToString("HH:mm") + "-" + fallToTime.ToString("HH:mm"),
  11290. CreateTime = DateTime.Now,
  11291. CreateUserId = dto.Userid,
  11292. ParentId = 0,
  11293. Details = trip
  11294. });
  11295. var threeCodeList = _threeCodeRepository.QueryThreeCodeArray(threeCodeStr);
  11296. var last = threeCodeStr.Last();
  11297. foreach (var item in threeCodeStr)
  11298. {
  11299. cityPath += (threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】") + "-";
  11300. if (item.Equals(last))
  11301. {
  11302. stay = threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】";
  11303. }
  11304. }
  11305. cityPath = cityPath.Trim('-');
  11306. }
  11307. string week = Day[Convert.ToInt32(NewData.DayOfWeek.ToString("d"))].ToString();
  11308. Grp_ApprovalTravel appro = new Grp_ApprovalTravel();
  11309. appro.Date = "第" + intToString(i + 1) + "天 " + NewData.Month + "月" + NewData.Day + "日(" + week + ") " + cityPath + " 宿:" + stay;
  11310. appro.Diid = dto.Diid;
  11311. var thisId = _sqlSugar.Insertable<Grp_ApprovalTravel>(appro).ExecuteReturnIdentity();
  11312. appro.Id = thisId;
  11313. appro.CreateUserId = dto.Userid;
  11314. appro.CreateTime = DateTime.Now;
  11315. foreach (var item in gwinfo)
  11316. {
  11317. Grp_ApprovalTravelDetails chi = new Grp_ApprovalTravelDetails();
  11318. chi.Details = "拜访" + item.Client;
  11319. if (!string.IsNullOrWhiteSpace(item.ReqSample))
  11320. {
  11321. chi.Details += "," + item.ReqSample;
  11322. }
  11323. chi.ParentId = thisId;
  11324. chi.Time = item.Time;
  11325. chiarr.Add(chi);
  11326. }
  11327. if (chiarr.Count < 5)
  11328. {
  11329. for (int j = chiarr.Count; j < 5; j++)
  11330. {
  11331. chiarr.Add(new
  11332. Grp_ApprovalTravelDetails());
  11333. }
  11334. }
  11335. resultArr.Add(new
  11336. {
  11337. appro.Id,
  11338. appro.Date,
  11339. appro.Diid,
  11340. chiList = chiarr.Select(x1 => new
  11341. {
  11342. timeInterval = x1.Time == null ? new string[1] : x1.Time.Split('-'),
  11343. x1.Details,
  11344. x1.ParentId,
  11345. x1.Id
  11346. })
  11347. });
  11348. }
  11349. _sqlSugar.CommitTran();
  11350. jw = JsonView(true, "生成成功!", resultArr);
  11351. }
  11352. catch (Exception ex)
  11353. {
  11354. jw.Code = 400;
  11355. jw.Msg = "生成失败!" + ex.Message;
  11356. }
  11357. return Ok(jw);
  11358. }
  11359. /// <summary>
  11360. /// 报批行程word导出
  11361. /// </summary>
  11362. /// <param name="dto"></param>
  11363. /// <returns></returns>
  11364. [HttpPost]
  11365. public IActionResult ExportApprovalJourneyWord(ExportApprovalJourneyWord dto)
  11366. {
  11367. var jw = JsonView(false);
  11368. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  11369. if (group == null)
  11370. {
  11371. jw.Msg = "暂无该团组!";
  11372. return Ok(jw);
  11373. }
  11374. //模板路径
  11375. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "Template/公务行程导出模板.docx"); //"C:\\Server\\File\\OA2023\\Office\\Word\\Template/公务行程导出模板.docx"
  11376. //载入模板
  11377. Document doc = new Document(tempPath);
  11378. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  11379. //获取所填表格的序数
  11380. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  11381. Aspose.Words.Tables.Row titleRowClone = null;
  11382. Aspose.Words.Tables.Row CenterRowClone = null;
  11383. int index = 0;
  11384. int indexChi = 0;
  11385. int SetIndex = 0;
  11386. var ApprovalTravelArr = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid).ToList();
  11387. //获取数据,放到datatable
  11388. foreach (var item in ApprovalTravelArr)
  11389. {
  11390. if (index > 0)
  11391. {
  11392. titleRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[0].Clone(true);
  11393. tableOne.AppendChild(titleRowClone);
  11394. }
  11395. var textTime = item.Date;
  11396. var ChiRep = _sqlSugar.Queryable<Grp_ApprovalTravelDetails>().Where(x => x.IsDel == 0 && x.ParentId == item.Id).ToList();
  11397. SetCells(tableOne, doc, SetIndex, 0, textTime);
  11398. SetIndex++;
  11399. if (ChiRep.Count > 0)
  11400. {
  11401. foreach (var itemChi in ChiRep)
  11402. {
  11403. var txtTime = itemChi.Time;
  11404. var txtDetail = itemChi.Details;
  11405. if (indexChi > 0)
  11406. {
  11407. CenterRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[1].Clone(true);
  11408. tableOne.AppendChild(CenterRowClone);
  11409. }
  11410. if (string.IsNullOrEmpty(txtTime) && string.IsNullOrEmpty(txtDetail))
  11411. {
  11412. SetCells(tableOne, doc, SetIndex, 0, "");
  11413. SetCells(tableOne, doc, SetIndex, 1, "");
  11414. indexChi++;
  11415. SetIndex++;
  11416. break;
  11417. }
  11418. SetCells(tableOne, doc, SetIndex, 0, txtTime);
  11419. SetCells(tableOne, doc, SetIndex, 1, txtDetail);
  11420. indexChi++;
  11421. SetIndex++;
  11422. }
  11423. }
  11424. else
  11425. {
  11426. if (indexChi > 0)
  11427. {
  11428. CenterRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[1].Clone(true);
  11429. tableOne.AppendChild(CenterRowClone);
  11430. }
  11431. SetCells(tableOne, doc, SetIndex, 0, "");
  11432. SetCells(tableOne, doc, SetIndex, 1, "");
  11433. indexChi++;
  11434. SetIndex++;
  11435. }
  11436. index++;
  11437. }
  11438. string strFileName = "/Travel/ExportApprovalJourneyWord/" + group.TeamName + "商邀出访日程.doc";
  11439. doc.Save(AppSettingsHelper.Get("WordBasePath") + strFileName); //"C:\\Server\\File\\OA2023\\Office\\Word" + strFileName
  11440. jw.Data = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + strFileName; //"C:\\Server\\File\\OA2023\\Office\\Word" + strFileName
  11441. jw.Code = 200;
  11442. jw.Msg = "";
  11443. return Ok(jw);
  11444. }
  11445. private string intToString(int numberVal)
  11446. {
  11447. string numberval = numberVal.ToString();
  11448. Dictionary<char, string> Number = new Dictionary<char, string>();
  11449. Number.Add('1', "一");
  11450. Number.Add('2', "二");
  11451. Number.Add('3', "三");
  11452. Number.Add('4', "四");
  11453. Number.Add('5', "五");
  11454. Number.Add('6', "六");
  11455. Number.Add('7', "七");
  11456. Number.Add('8', "八");
  11457. Number.Add('9', "九");
  11458. string stringNumberVal = string.Empty;
  11459. for (int i = 0; i < numberval.Length; i++)
  11460. {
  11461. if (i == 0)
  11462. {
  11463. stringNumberVal += Number[numberval[i]];
  11464. }
  11465. else if (i >= 1)
  11466. {
  11467. if (numberval[i] == '0')
  11468. {
  11469. stringNumberVal = "十";
  11470. }
  11471. else
  11472. {
  11473. stringNumberVal += "十" + Number[numberval[i]];
  11474. }
  11475. }
  11476. }
  11477. return stringNumberVal;
  11478. }
  11479. private void SetCells(Aspose.Words.Tables.Table table, Document doc, int rows, int cells, string val)
  11480. {
  11481. //获取table中的某个单元格,从0开始
  11482. Cell lshCell = table.Rows[rows].Cells[cells];
  11483. //将单元格中段落移除
  11484. foreach (Node item in lshCell.Paragraphs)
  11485. {
  11486. lshCell.Paragraphs.Remove(item);
  11487. }
  11488. if (val.Contains("\r\n"))
  11489. {
  11490. var spArr = val.Split("\r\n").Where(x => !string.IsNullOrWhiteSpace(x));
  11491. foreach (var item in spArr)
  11492. {
  11493. //新建一个段落
  11494. Paragraph p = new Paragraph(doc);
  11495. var r = new Run(doc, item);
  11496. //把设置的值赋给之前新建的段落
  11497. p.AppendChild(r);
  11498. //将此段落加到单元格内
  11499. lshCell.AppendChild(p);
  11500. }
  11501. }
  11502. else
  11503. {
  11504. //新建一个段落
  11505. Paragraph p = new Paragraph(doc);
  11506. var r = new Run(doc, val);
  11507. //把设置的值赋给之前新建的段落
  11508. p.AppendChild(r);
  11509. //将此段落加到单元格内
  11510. lshCell.AppendChild(p);
  11511. }
  11512. }
  11513. [HttpPost]
  11514. public async Task<IActionResult> ServerHttp(string paramStr)
  11515. {
  11516. paramStr = paramStr.TrimEnd('\'');
  11517. paramStr = paramStr.TrimStart('\'');
  11518. JsonView jw = JsonView(false);
  11519. JObject param = JObject.Parse(paramStr);
  11520. if (!param.ContainsKey("url"))
  11521. {
  11522. jw.Msg = "url null";
  11523. return Ok(jw);
  11524. }
  11525. string url = param["url"]!.ToString();
  11526. var methon = "get";
  11527. Dictionary<string, string> bodyValues = null;
  11528. Dictionary<string, string> headValues = null;
  11529. if (param.ContainsKey("methon"))
  11530. {
  11531. methon = param["methon"]!.ToString();
  11532. }
  11533. if (param.ContainsKey("header"))
  11534. {
  11535. var header = param["header"]!.ToString();
  11536. JObject headerJobject = JObject.Parse(header);
  11537. headValues = new Dictionary<string, string>();
  11538. foreach (JProperty item in headerJobject.Properties())
  11539. {
  11540. var value = item.Value.ToString();
  11541. var head = item.Path;
  11542. headValues.Add(head, value);
  11543. }
  11544. }
  11545. if (param.ContainsKey("body"))
  11546. {
  11547. var body = param["body"]!.ToString();
  11548. bodyValues = new Dictionary<string, string>();
  11549. JObject bodyJobject = JObject.Parse(body);
  11550. foreach (JProperty item in bodyJobject.Properties())
  11551. {
  11552. var value = item.Value.ToString();
  11553. var head = item.Path;
  11554. bodyValues.Add(head, value);
  11555. }
  11556. }
  11557. HttpClient client = new HttpClient();
  11558. string responseString = string.Empty;
  11559. if (param.ContainsKey("isJson"))
  11560. {
  11561. }
  11562. if (headValues != null)
  11563. {
  11564. foreach (var item in headValues.Keys)
  11565. {
  11566. client.DefaultRequestHeaders.Add(item, headValues[item]);
  11567. }
  11568. }
  11569. try
  11570. {
  11571. if (methon == "get")
  11572. {
  11573. responseString = await client.GetStringAsync(url);
  11574. }
  11575. else if (methon == "post")
  11576. {
  11577. if (bodyValues == null)
  11578. {
  11579. jw.Msg = "methon post body null";
  11580. return Ok(jw);
  11581. }
  11582. // 数据转化为 key=val 格式
  11583. var content = new FormUrlEncodedContent(bodyValues);
  11584. var response = await client.PostAsync(url, content);
  11585. // 获取数据
  11586. responseString = await response.Content.ReadAsStringAsync();
  11587. }
  11588. else
  11589. {
  11590. jw.Msg = "methon error";
  11591. }
  11592. jw = JsonView(true, "success", responseString);
  11593. }
  11594. catch (Exception ex)
  11595. {
  11596. jw.Msg = "error " + ex.Message;
  11597. jw.Data = ex.StackTrace;
  11598. }
  11599. finally
  11600. {
  11601. client.Dispose();
  11602. }
  11603. return Ok(jw);
  11604. }
  11605. #endregion
  11606. // /// <summary>
  11607. // ///
  11608. // /// </summary>
  11609. // /// <param name="_dto"></param>
  11610. // /// <returns></returns>
  11611. // [HttpPost]
  11612. // [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11613. // public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  11614. // {
  11615. // _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  11616. // string sql = string.Format(@" Select * From Visa With(Nolock) ");
  11617. // List<OA2014_Visa> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_Visa>(sql).ToList();
  11618. // _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  11619. // Dictionary<string, int> dic_psg = new Dictionary<string, int>();
  11620. // dic_psg.Add("客人", 974);
  11621. // dic_psg.Add("司机", 975);
  11622. // dic_psg.Add("导游", 976);
  11623. // dic_psg.Add("公司内部人员", 977);
  11624. // dic_psg.Add("司机/导游/公司内部人员", 978);
  11625. // foreach (var item in list_visa)
  11626. // {
  11627. // Grp_VisaInfo temp = new Grp_VisaInfo();
  11628. // temp.Id = item.Id;
  11629. // temp.DIId = item.DIId;
  11630. // temp.VisaClient = item.VisaClient;
  11631. // temp.VisaPrice = Convert.ToDecimal(item.VisaPrice);
  11632. // temp.VisaCurrency = item.VisaCurrency;
  11633. // temp.IsThird = item.IsThird;
  11634. // if (dic_psg.ContainsKey(item.PassengerType))
  11635. // {
  11636. // temp.PassengerType = dic_psg[item.PassengerType];
  11637. // }
  11638. // else {
  11639. // temp.PassengerType = -1;
  11640. // }
  11641. // temp.VisaNumber = item.VisaNumber;
  11642. // temp.VisaFreeNumber = item.VisaFreeNumber;
  11643. // temp.CreateUserId = item.Operators;
  11644. // DateTime dt_ct;
  11645. // bool b_ct = DateTime.TryParse(item.OperatorsDate, out dt_ct);
  11646. // if (b_ct)
  11647. // {
  11648. // temp.CreateTime = dt_ct;
  11649. // }
  11650. // else
  11651. // {
  11652. // temp.CreateTime = DateTime.Now;
  11653. // }
  11654. // temp.DeleteTime = "";
  11655. // temp.DeleteUserId = 0;
  11656. // temp.Remark = item.Remark;
  11657. // if (string.IsNullOrEmpty(temp.Remark)) {
  11658. // temp.Remark = "";
  11659. // }
  11660. // temp.IsDel = item.IsDel;
  11661. // temp.VisaDescription = item.VisaAttachment;
  11662. // string sqlInsert = string.Format(@" INSERT INTO [dbo].[Grp_VisaInfo]
  11663. //([Id]
  11664. // ,[DIId]
  11665. // ,[VisaClient]
  11666. // ,[VisaPrice]
  11667. // ,[VisaCurrency]
  11668. // ,[IsThird]
  11669. // ,[PassengerType]
  11670. // ,[VisaNumber]
  11671. // ,[VisaFreeNumber]
  11672. // ,[CreateUserId]
  11673. // ,[CreateTime]
  11674. // ,[DeleteTime]
  11675. // ,[DeleteUserId]
  11676. // ,[Remark]
  11677. // ,[IsDel]
  11678. // ,[visaDescription])
  11679. // VALUES
  11680. // ({0},{1},'{2}',{3},{4}
  11681. //,{5},{6},{7},{8},{9}
  11682. //,'{10}','{11}',{12},'{13}',{14},'{15}') ",temp.Id,temp.DIId,temp.VisaClient,temp.VisaPrice,temp.VisaCurrency,
  11683. //temp.IsThird,temp.PassengerType,temp.VisaNumber,temp.VisaNumber,temp.CreateUserId,
  11684. //temp.CreateTime, temp.DeleteTime, temp.DeleteUserId, temp.Remark,temp.IsDel,temp.VisaDescription
  11685. //);
  11686. // await _airTicketResRep.ExecuteCommandAsync(sqlInsert);
  11687. // }
  11688. // return Ok(JsonView(true, "操作成功!"));
  11689. // }
  11690. /// <summary>
  11691. /// 123132123
  11692. /// </summary>
  11693. /// <param name="_dto"></param>
  11694. /// <returns></returns>
  11695. [HttpPost]
  11696. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11697. public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  11698. {
  11699. _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  11700. string sql = string.Format(@" Select * From grouopExceed where id > 20 And id not in (26,27) ");
  11701. List<OA2014_grouopExceed> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_grouopExceed>(sql).ToList();
  11702. _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  11703. Dictionary<int, int> dicDetail = new Dictionary<int, int>();
  11704. dicDetail.Add(789, 1034);
  11705. dicDetail.Add(790, 1035);
  11706. dicDetail.Add(791, 1036);
  11707. dicDetail.Add(792, 1037);
  11708. dicDetail.Add(793, 1038);
  11709. dicDetail.Add(794, 1039);
  11710. dicDetail.Add(795, 1040);
  11711. dicDetail.Add(796, 1041);
  11712. dicDetail.Add(797, 1042);
  11713. dicDetail.Add(798, 1043);
  11714. dicDetail.Add(801, 1044);
  11715. dicDetail.Add(802, 1045);
  11716. dicDetail.Add(803, 1046);
  11717. Dictionary<int, int> dic = new Dictionary<int, int>();
  11718. dic.Add(806, 1027);
  11719. dic.Add(807, 1028);
  11720. dic.Add(808, 1029);
  11721. dic.Add(809, 1030);
  11722. dic.Add(810, 1031);
  11723. dic.Add(811, 1032);
  11724. dic.Add(812, 1033);
  11725. foreach (var item in list_visa)
  11726. {
  11727. Fin_GroupExtraCost temp = new Fin_GroupExtraCost();
  11728. temp.Coefficient = item.coefficient;
  11729. DateTime dtCrt;
  11730. bool b1 = DateTime.TryParse(item.OperatorsDate, out dtCrt);
  11731. if (b1)
  11732. {
  11733. temp.CreateTime = dtCrt;
  11734. }
  11735. else
  11736. {
  11737. temp.CreateTime = DateTime.Now;
  11738. }
  11739. temp.CreateUserId = item.Operators;
  11740. temp.DeleteTime = "";
  11741. temp.DeleteUserId = 0;
  11742. temp.DiId = int.Parse(item.DIID);
  11743. temp.FilePath = item.FilePath;
  11744. temp.IsDel = item.IsDel;
  11745. temp.Price = item.Price;
  11746. temp.PriceCount = 1;
  11747. temp.PriceCurrency = item.Currency;
  11748. int detailId = 0;
  11749. if (dicDetail.ContainsKey(item.PriceTypeDetail))
  11750. {
  11751. detailId = dicDetail[item.PriceTypeDetail];
  11752. }
  11753. temp.PriceDetailType = detailId;
  11754. temp.PriceDt = DateTime.Now;
  11755. temp.PriceName = item.PriceName;
  11756. temp.PriceSum = item.Price;
  11757. int tid = 0;
  11758. if (dic.ContainsKey(item.PriceType))
  11759. {
  11760. tid = dic[item.PriceType];
  11761. }
  11762. temp.PriceType = tid;
  11763. temp.Remark = item.Remark;
  11764. await _airTicketResRep.AddAsync<Fin_GroupExtraCost>(temp);
  11765. }
  11766. return Ok(JsonView(true, "操作成功!"));
  11767. }
  11768. }
  11769. }