GroupsController.cs 549 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214
  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. namespace OASystem.API.Controllers
  77. {
  78. /// <summary>
  79. /// 团组相关
  80. /// </summary>
  81. //[Authorize]
  82. [Route("api/[controller]/[action]")]
  83. public class GroupsController : ControllerBase
  84. {
  85. private readonly GrpScheduleRepository _grpScheduleRep;
  86. private readonly IMapper _mapper;
  87. private readonly DelegationInfoRepository _groupRepository;
  88. private readonly TaskAssignmentRepository _taskAssignmentRep;
  89. private readonly AirTicketResRepository _airTicketResRep;
  90. private readonly DecreasePaymentsRepository _decreasePaymentsRep;
  91. private readonly InvitationOfficialActivitiesRepository _InvitationOfficialActivitiesRep;
  92. private readonly DelegationEnDataRepository _delegationEnDataRep;
  93. private readonly DelegationVisaRepository _delegationVisaRep;
  94. private readonly VisaPriceRepository _visaPriceRep;
  95. private readonly CarTouristGuideGroundRepository _carTouristGuideGroundRep;
  96. private readonly HotelPriceRepository _hotelPriceRep;
  97. private readonly CustomersRepository _customersRep;
  98. private readonly MessageRepository _message;
  99. private readonly SqlSugarClient _sqlSugar;
  100. private readonly TourClientListRepository _tourClientListRep;
  101. private readonly TeamRateRepository _teamRateRep;
  102. #region 成本相关
  103. private readonly CheckBoxsRepository _checkBoxs;
  104. private readonly GroupCostRepository _GroupCostRepository;
  105. private readonly CostTypeHotelNumberRepository _CostTypeHotelNumberRepository;
  106. private readonly GroupCostParameterRepository _GroupCostParameterRepository;
  107. #endregion
  108. private readonly SetDataRepository _setDataRep;
  109. private string url;
  110. private string path;
  111. private readonly EnterExitCostRepository _enterExitCostRep;
  112. private readonly IHubContext<ChatHub, IChatClient> _hubContext;
  113. private readonly UsersRepository _usersRep;
  114. private readonly IJuHeApiService _juHeApi;
  115. private readonly InvertedListRepository _invertedListRep;
  116. private readonly VisaFeeInfoRepository _visaFeeInfoRep;
  117. private readonly TicketBlackCodeRepository _ticketBlackCodeRep;
  118. private readonly HotelInquiryRepository _hotelInquiryRep;
  119. public GroupsController(IMapper mapper, SqlSugarClient sqlSugar, GrpScheduleRepository grpScheduleRep, DelegationInfoRepository groupRepository,
  120. TaskAssignmentRepository taskAssignmentRep, AirTicketResRepository airTicketResRep, DecreasePaymentsRepository decreasePaymentsRep,
  121. InvitationOfficialActivitiesRepository InvitationOfficialActivitiesRep, DelegationEnDataRepository delegationEnDataRep, EnterExitCostRepository enterExitCostRep
  122. , DelegationVisaRepository delegationVisaRep, MessageRepository message, VisaPriceRepository visaPriceRep, CarTouristGuideGroundRepository carTouristGuideGroundRep,
  123. CheckBoxsRepository checkBoxs, GroupCostRepository GroupCostRepository, CostTypeHotelNumberRepository CostTypeHotelNumberRepository,
  124. GroupCostParameterRepository GroupCostParameterRepository, HotelPriceRepository hotelPriceRep, CustomersRepository customersRep, SetDataRepository setDataRep,
  125. TourClientListRepository tourClientListRep, TeamRateRepository teamRateRep, IHubContext<ChatHub, IChatClient> hubContext, UsersRepository usersRep, IJuHeApiService juHeApi,
  126. InvertedListRepository invertedListRep, VisaFeeInfoRepository visaFeeInfoRep, TicketBlackCodeRepository ticketBlackCodeRep, HotelInquiryRepository hotelInquiryRep)
  127. {
  128. _mapper = mapper;
  129. _grpScheduleRep = grpScheduleRep;
  130. _groupRepository = groupRepository;
  131. _taskAssignmentRep = taskAssignmentRep;
  132. _airTicketResRep = airTicketResRep;
  133. _sqlSugar = sqlSugar;
  134. url = AppSettingsHelper.Get("ExcelBaseUrl");
  135. path = AppSettingsHelper.Get("ExcelBasePath");
  136. if (!System.IO.Directory.Exists(path))
  137. {
  138. System.IO.Directory.CreateDirectory(path);//不存在就创建文件夹
  139. }
  140. _decreasePaymentsRep = decreasePaymentsRep;
  141. _InvitationOfficialActivitiesRep = InvitationOfficialActivitiesRep;
  142. _delegationEnDataRep = delegationEnDataRep;
  143. _enterExitCostRep = enterExitCostRep;
  144. _delegationVisaRep = delegationVisaRep;
  145. _message = message;
  146. _visaPriceRep = visaPriceRep;
  147. _carTouristGuideGroundRep = carTouristGuideGroundRep;
  148. _checkBoxs = checkBoxs;
  149. _GroupCostRepository = GroupCostRepository;
  150. _CostTypeHotelNumberRepository = CostTypeHotelNumberRepository;
  151. _GroupCostParameterRepository = GroupCostParameterRepository;
  152. _hotelPriceRep = hotelPriceRep;
  153. _customersRep = customersRep;
  154. _setDataRep = setDataRep;
  155. _tourClientListRep = tourClientListRep;
  156. _teamRateRep = teamRateRep;
  157. _hubContext = hubContext;
  158. _usersRep = usersRep;
  159. _juHeApi = juHeApi;
  160. _invertedListRep = invertedListRep;
  161. _visaFeeInfoRep = visaFeeInfoRep;
  162. _ticketBlackCodeRep = ticketBlackCodeRep;
  163. _hotelInquiryRep = hotelInquiryRep;
  164. }
  165. #region 流程管控
  166. /// <summary>
  167. /// 获取团组流程管控信息
  168. /// </summary>
  169. /// <param name="paras">参数Json字符串</param>
  170. /// <returns></returns>
  171. [HttpPost]
  172. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  173. public async Task<IActionResult> PostSearchGrpSchedule(JsonDtoBase _jsonDto)
  174. {
  175. if (string.IsNullOrEmpty(_jsonDto.Paras))
  176. {
  177. return Ok(JsonView(false, "参数为空"));
  178. }
  179. Grp_ScheduleDto _ScheduleDto = JsonConvert.DeserializeObject<Grp_ScheduleDto>(_jsonDto.Paras);
  180. if (_ScheduleDto != null)
  181. {
  182. if (_ScheduleDto.SearchType == 2)//获取列表
  183. {
  184. List<Grp_ScheduleView> _grpScheduleViewList = await _grpScheduleRep.GetViewList_GrpSchedule(_ScheduleDto);
  185. return Ok(JsonView(_grpScheduleViewList));
  186. }
  187. else//获取对象
  188. {
  189. Grp_ScheduleCombinView _grpScheduleView = await _grpScheduleRep.GetView_GrpSchedule(_ScheduleDto);
  190. if (_grpScheduleView != null)
  191. {
  192. return Ok(JsonView(_grpScheduleView));
  193. }
  194. }
  195. }
  196. else
  197. {
  198. return Ok(JsonView(false, "参数反序列化失败"));
  199. }
  200. return Ok(JsonView(false, "暂无数据!"));
  201. }
  202. /// <summary>
  203. /// 修改团组流程管控详细表数据
  204. /// </summary>
  205. /// <param name="paras"></param>
  206. /// <returns></returns>
  207. [HttpPost]
  208. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  209. public async Task<IActionResult> PostUpdateGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  210. {
  211. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  212. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  213. .SetColumns(it => it.Duty == _detail.Duty)
  214. .SetColumns(it => it.ExpectBeginDt == _detail.ExpectBeginDt)
  215. .SetColumns(it => it.ExpectEndDt == _detail.ExpectEndDt)
  216. .SetColumns(it => it.JobContent == _detail.JobContent)
  217. .SetColumns(it => it.Remark == _detail.Remark)
  218. .SetColumns(it => it.StepStatus == _detail.StepStatus)
  219. .Where(s => s.Id == dto.Id)
  220. //.UpdateColumns(s => new { s.Duty, s.ExpectBeginDt, s.ExpectEndDt, s.JobContent, s.Remark, s.StepStatus })
  221. .ExecuteCommandAsync();
  222. if (result > 0)
  223. {
  224. return Ok(JsonView(true, "保存成功!"));
  225. }
  226. return Ok(JsonView(false, "保存失败!"));
  227. }
  228. /// <summary>
  229. /// 删除团组流程管控详细表数据,删除人Id请放在Duty
  230. /// </summary>
  231. /// <param name="dto"></param>
  232. /// <returns></returns>
  233. [HttpPost]
  234. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  235. public async Task<ActionResult> PostDeleteGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  236. {
  237. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  238. _detail.IsDel = 1;
  239. _detail.DeleteUserId = dto.Duty;
  240. _detail.DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  241. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  242. .SetColumns(it => it.IsDel == _detail.IsDel)
  243. .SetColumns(it => it.DeleteUserId == _detail.DeleteUserId)
  244. .SetColumns(it => it.DeleteTime == _detail.DeleteTime)
  245. .Where(it => it.Id == dto.Id)
  246. //.UpdateColumns(s => new { s.IsDel, s.DeleteUserId, s.DeleteTime })
  247. //.WhereColumns(s => s.Id == dto.Id)
  248. .ExecuteCommandAsync();
  249. if (result > 0)
  250. {
  251. return Ok(JsonView(true, "删除成功!"));
  252. }
  253. return Ok(JsonView(false, "删除失败!"));
  254. }
  255. /// <summary>
  256. /// 增加团组流程管控详细表数据
  257. /// </summary>
  258. /// <param name="dto"></param>
  259. /// <returns></returns>
  260. [HttpPost]
  261. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  262. public async Task<ActionResult> PostInsertGrpScheduleDetail(Grp_ScheduleDetailInsertDto dto)
  263. {
  264. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  265. if (DateTime.Now < _detail.ExpectBeginDt)
  266. {
  267. _detail.StepStatus = 0;
  268. }
  269. else
  270. {//若大于设置时间,不考虑设置的预计结束日期,统一视为进行中
  271. _detail.StepStatus = 1;
  272. }
  273. var result = await _grpScheduleRep._sqlSugar.Insertable(_detail).ExecuteReturnIdentityAsync();
  274. if (result > 0)
  275. {
  276. Grp_ScheduleDetailView _result = await _grpScheduleRep.GetInsertBackData(result);
  277. return Ok(JsonView(true, "添加成功!", _result));
  278. }
  279. return Ok(JsonView(false, "添加失败!"));
  280. }
  281. #endregion
  282. #region 团组基本信息
  283. /// <summary>
  284. /// 接团信息列表
  285. /// </summary>
  286. /// <param name="dto">团组列表请求dto</param>
  287. /// <returns></returns>
  288. [HttpPost]
  289. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  290. public async Task<IActionResult> GetGroupList(GroupListDto dto)
  291. {
  292. var groupData = await _groupRepository.GetGroupList(dto);
  293. if (groupData.Code != 0)
  294. {
  295. return Ok(JsonView(false, groupData.Msg));
  296. }
  297. return Ok(JsonView(groupData.Data));
  298. }
  299. /// <summary>
  300. /// 接团信息列表 Page
  301. /// </summary>
  302. /// <param name="dto">团组列表请求dto</param>
  303. /// <returns></returns>
  304. [HttpPost]
  305. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  306. public async Task<IActionResult> PostGroupPageList(GroupPageListDto dto)
  307. {
  308. #region 参数验证
  309. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  310. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  311. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  312. #region 页面操作权限验证
  313. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  314. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  315. #endregion
  316. #endregion
  317. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  318. {
  319. string sqlWhere = string.Empty;
  320. if (dto.IsSure == 0) //未完成
  321. {
  322. sqlWhere += string.Format(@" And IsSure = 0");
  323. }
  324. else if (dto.IsSure == 1) //已完成
  325. {
  326. sqlWhere += string.Format(@" And IsSure = 1");
  327. }
  328. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  329. {
  330. string tj = dto.SearchCriteria;
  331. 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}%')",
  332. tj, tj, tj, tj, tj);
  333. }
  334. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  335. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  336. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  337. JietuanOperator,IsSure,CreateTime
  338. From (
  339. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  340. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  341. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  342. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  343. su.CnName JietuanOperator,IsSure,gdi.CreateTime
  344. From Grp_DelegationInfo gdi
  345. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  346. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  347. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  348. Where gdi.IsDel = 0 {0}
  349. ) temp", sqlWhere);
  350. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  351. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  352. #region 处理所属部门
  353. /*
  354. * 1.sq 和 gyy 等显示 市场部
  355. * 2.王鸽和主管及张总还有管理员号统一国交部
  356. * 2-1. 4 管理员 ,21 张海麟
  357. */
  358. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  359. List<int> userIds1 = new List<int>() { 4, 21 };
  360. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  361. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  362. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  363. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  364. .ToList();
  365. foreach (var item in _DelegationList)
  366. {
  367. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  368. }
  369. #endregion
  370. var _view = new
  371. {
  372. PageFuncAuth = pageFunAuthView,
  373. Data = _DelegationList
  374. };
  375. return Ok(JsonView(true, "查询成功!", _view, total));
  376. }
  377. else
  378. {
  379. return Ok(JsonView(false, "查询失败"));
  380. }
  381. }
  382. /// <summary>
  383. /// 团组列表
  384. /// </summary>
  385. /// <returns></returns>
  386. [HttpPost]
  387. public async Task<IActionResult> GetGroupListByWhere(GroupListByWhere dto)
  388. {
  389. #region 参数验证
  390. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  391. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  392. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  393. #region 页面操作权限验证
  394. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  395. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  396. #endregion
  397. #endregion
  398. if (dto.PortType != 1 && dto.PortType != 2)
  399. {
  400. return Ok(JsonView(false, "查询失败!"));
  401. }
  402. string orderbyStr = "order by gdi.CreateTime Desc";
  403. string sqlWhere = string.Empty;
  404. if (dto.IsSure == 0) //未完成
  405. {
  406. sqlWhere += string.Format(@" And IsSure = 0");
  407. }
  408. else if (dto.IsSure == 1) //已完成
  409. {
  410. sqlWhere += string.Format(@" And IsSure = 1");
  411. }
  412. //团组类型
  413. if (dto.TeamDid > 0)
  414. {
  415. sqlWhere += string.Format(@"And TeamDid = {0} ", dto.TeamDid);
  416. }
  417. //团组名称
  418. if (!string.IsNullOrEmpty(dto.TeamName))
  419. {
  420. sqlWhere += string.Format(@"And TeamName Like '%{0}%'", dto.TeamName);
  421. }
  422. //客户名称
  423. if (!string.IsNullOrEmpty(dto.ClientName))
  424. {
  425. sqlWhere += string.Format(@"And ClientName Like '%{0}%'", dto.ClientName);
  426. }
  427. //客户单位
  428. if (!string.IsNullOrEmpty(dto.ClientUnit))
  429. {
  430. sqlWhere += string.Format(@"And ClientUnit Like '%{0}%'", dto.ClientUnit);
  431. }
  432. //出访时间
  433. if (!string.IsNullOrEmpty(dto.visitDataTime))
  434. {
  435. sqlWhere += string.Format(@"And VisitDate >= '{0}'", dto.visitDataTime);
  436. orderbyStr = "order by gdi.VisitDate";
  437. }
  438. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  439. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  440. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  441. JietuanOperator,IsSure,CreateTime
  442. From (
  443. Select row_number() over({0}) as Row_Number,
  444. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  445. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  446. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  447. su.CnName JietuanOperator,IsSure,gdi.CreateTime
  448. From Grp_DelegationInfo gdi
  449. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  450. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  451. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  452. Where gdi.IsDel = 0 {1}
  453. ) temp ", orderbyStr, sqlWhere);
  454. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  455. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  456. #region 处理所属部门
  457. /*
  458. * 1.sq 和 gyy 等显示 市场部
  459. * 2.王鸽和主管及张总还有管理员号统一国交部
  460. * 2-1. 4 管理员 ,21 张海麟
  461. */
  462. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  463. List<int> userIds1 = new List<int>() { 4, 21 };
  464. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  465. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  466. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  467. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  468. .ToList();
  469. foreach (var item in _DelegationList)
  470. {
  471. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  472. }
  473. #endregion
  474. var _view = new
  475. {
  476. PageFuncAuth = pageFunAuthView,
  477. Data = _DelegationList
  478. };
  479. return Ok(JsonView(true, "查询成功!", _view, total));
  480. }
  481. /// <summary>
  482. /// 接团信息详情
  483. /// </summary>
  484. /// <param name="dto">团组info请求dto</param>
  485. /// <returns></returns>
  486. [HttpPost]
  487. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  488. public async Task<IActionResult> GetGroupInfo(GroupInfoDto dto)
  489. {
  490. var groupData = await _groupRepository.GetGroupInfo(dto);
  491. if (groupData.Code != 0)
  492. {
  493. return Ok(JsonView(false, groupData.Msg));
  494. }
  495. return Ok(JsonView(groupData.Data));
  496. }
  497. /// <summary>
  498. /// 接团信息 编辑添加
  499. /// 基础信息数据源
  500. /// </summary>
  501. /// <param name="dto"></param>
  502. /// <returns></returns>
  503. [HttpPost]
  504. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  505. public async Task<IActionResult> GroupEditBasicSource(GroupListDto dto)
  506. {
  507. var groupData = await _groupRepository.GroupEditBasicSource(dto);
  508. if (groupData.Code != 0)
  509. {
  510. return Ok(JsonView(false, groupData.Msg));
  511. }
  512. return Ok(JsonView(groupData.Data));
  513. }
  514. /// <summary>
  515. /// 接团信息 操作(增改)
  516. /// </summary>
  517. /// <param name="dto"></param>
  518. /// <returns></returns>
  519. [HttpPost]
  520. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  521. public async Task<IActionResult> GroupOperation(GroupOperationDto dto)
  522. {
  523. try
  524. {
  525. var groupData = await _groupRepository.GroupOperation(dto);
  526. if (groupData.Code != 0)
  527. {
  528. return Ok(JsonView(false, groupData.Msg));
  529. }
  530. int diId = 0;
  531. //添加时 默认加入团组汇率
  532. if (dto.Status == 1) //添加
  533. {
  534. diId = groupData.Data;
  535. //添加默认币种
  536. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  537. //默认分配权限
  538. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  539. //消息提示 王鸽 主管号
  540. List<int> _managerIds = new List<int>() { 22, 32 };
  541. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  542. if (userIds.Count > 0)
  543. {
  544. userIds.Add(208);
  545. //创建团组管控
  546. GroupStepForDelegation.CreateWorkStep(diId);
  547. //发送消息
  548. string groupName = dto.TeamName;
  549. string createGroupUser = string.Empty;
  550. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  551. if (userInfo != null) createGroupUser = userInfo.CnName;
  552. string title = $"系统通知";
  553. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  554. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  555. }
  556. //默认创建倒推表
  557. await _invertedListRep._Create(dto.UserId, diId);
  558. }
  559. else if (dto.Status == 2)
  560. {
  561. diId = dto.Id;
  562. }
  563. return Ok(JsonView(true, "操作成功!", diId));
  564. }
  565. catch (Exception ex)
  566. {
  567. Logs("[response]" + JsonConvert.SerializeObject(dto));
  568. Logs(ex.Message);
  569. return Ok(JsonView(false, ex.Message));
  570. }
  571. }
  572. /// <summary>
  573. /// 接团流程操作(增改)
  574. /// 安卓端使用 建团时添加客户名单
  575. /// </summary>
  576. /// <param name="dto"></param>
  577. /// <returns></returns>
  578. [HttpPost]
  579. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  580. public async Task<IActionResult> GroupProcessOperation(GroupProcessOperationDto dto)
  581. {
  582. try
  583. {
  584. #region 参数验证
  585. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  586. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  587. #region 页面操作权限验证
  588. //pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 104);
  589. //if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "客户名单您没有添加权限!"));
  590. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 27);
  591. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "团组操作您没有添加权限!"));
  592. #endregion
  593. #endregion
  594. _sqlSugar.BeginTran();
  595. var _dto = new GroupOperationDto();
  596. _dto = _mapper.Map<GroupProcessOperationDto, GroupOperationDto>(dto);
  597. var groupData = await _groupRepository.GroupOperation(_dto);
  598. if (groupData.Code != 0)
  599. {
  600. return Ok(JsonView(false, "团组操作添加失败!" + groupData.Msg));
  601. }
  602. int diId = 0;
  603. //添加时 默认加入团组汇率
  604. if (dto.Status == 1) //添加
  605. {
  606. diId = groupData.Data;
  607. //添加默认币种
  608. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  609. //默认分配权限
  610. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  611. //消息提示 王鸽 主管号
  612. List<int> _managerIds = new List<int>() { 22, 32 };
  613. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  614. if (userIds.Count > 0)
  615. {
  616. userIds.Add(208);
  617. //创建团组管控
  618. GroupStepForDelegation.CreateWorkStep(diId);
  619. //发送消息
  620. string groupName = dto.TeamName;
  621. string createGroupUser = string.Empty;
  622. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  623. if (userInfo != null) createGroupUser = userInfo.CnName;
  624. string title = $"系统通知";
  625. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  626. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  627. }
  628. }
  629. if (dto.Status == 2)
  630. {
  631. diId = dto.Id;
  632. if (diId == 0)
  633. {
  634. return Ok(JsonView(false, "修改失败! 未添加团组id" + groupData.Msg));
  635. }
  636. }
  637. var viewData = await _tourClientListRep.OperMultiple(dto.TourClientListInfos, diId, dto.UserId);
  638. if (viewData.Code != 0)
  639. {
  640. _sqlSugar.RollbackTran();
  641. return Ok(JsonView(false, "客户名单添加失败!" + viewData.Msg));
  642. }
  643. _sqlSugar.CommitTran();
  644. return Ok(JsonView(true, "添加成功"));
  645. }
  646. catch (Exception ex)
  647. {
  648. _sqlSugar.RollbackTran();
  649. return Ok(JsonView(false, ex.Message));
  650. }
  651. }
  652. /// <summary>
  653. /// 接团信息 操作(删除)
  654. /// </summary>
  655. /// <param name="dto"></param>
  656. /// <returns></returns>
  657. [HttpPost]
  658. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  659. public async Task<IActionResult> GroupDel(GroupDelDto dto)
  660. {
  661. try
  662. {
  663. var groupData = await _groupRepository.GroupDel(dto);
  664. if (groupData.Code != 0)
  665. {
  666. return Ok(JsonView(false, groupData.Msg));
  667. }
  668. return Ok(JsonView(true));
  669. }
  670. catch (Exception ex)
  671. {
  672. Logs("[response]" + JsonConvert.SerializeObject(dto));
  673. Logs(ex.Message);
  674. return Ok(JsonView(false, ex.Message));
  675. }
  676. }
  677. /// <summary>
  678. /// 获取团组销售报价号
  679. /// 团组添加时 使用
  680. /// </summary>
  681. /// <returns></returns>
  682. [HttpPost]
  683. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  684. public async Task<IActionResult> GetGroupSalesQuoteNo()
  685. {
  686. var groupData = await _groupRepository.GetGroupSalesQuoteNo();
  687. if (groupData.Code != 0)
  688. {
  689. return Ok(JsonView(false, groupData.Msg));
  690. }
  691. object salesQuoteNo = new
  692. {
  693. SalesQuoteNo = groupData.Data
  694. };
  695. return Ok(JsonView(salesQuoteNo));
  696. }
  697. /// <summary>
  698. /// 设置确认出团
  699. /// </summary>
  700. /// <param name="dto"></param>
  701. /// <returns></returns>
  702. [HttpPost]
  703. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  704. public async Task<IActionResult> SetConfirmationGroup(ConfirmationGroupDto dto)
  705. {
  706. var groupData = await _groupRepository.ConfirmationGroup(dto);
  707. if (groupData.Code != 0)
  708. {
  709. return Ok(JsonView(false, groupData.Msg));
  710. }
  711. var groupInfo = _groupRepository.Query(s => s.Id == dto.GroupId).First();
  712. #region OA消息推送
  713. try
  714. {
  715. string groupName = groupInfo.TeamName;
  716. List<Sys_Users> listUser = _airTicketResRep.Query<Sys_Users>(s => s.DepId == 7 && s.IsDel == 0).ToList();
  717. List<int> userIds = new List<int>();
  718. listUser.ForEach(s => userIds.Add(s.Id));
  719. string title = $"系统通知";
  720. string content = $"团组[{groupName}]已确认出团!";
  721. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, dto.GroupId);
  722. }
  723. catch (Exception ex)
  724. {
  725. }
  726. #endregion
  727. #region 应用推送
  728. try
  729. {
  730. await AppNoticeLibrary.SendChatMsg_GroupStatus_Create(dto.GroupId, QiyeWeChatEnum.CompanyCRMChat);
  731. Sys_Users users = _airTicketResRep.Query<Sys_Users>(s => s.Id == groupInfo.JietuanOperator).First();
  732. Sys_Department department = _airTicketResRep.Query<Sys_Department>(s => s.Id == users.DepId).First();
  733. if (department.Id == 6 && !string.IsNullOrEmpty(users.QiyeChatUserId))
  734. {
  735. List<string> userList = new List<string>() { users.QiyeChatUserId };
  736. await AppNoticeLibrary.SendUserMsg_GroupStatus_Create(dto.GroupId, userList);
  737. }
  738. }
  739. catch (Exception ex)
  740. {
  741. }
  742. #endregion
  743. GroupStepForDelegation.CreateWorkStep(dto.GroupId); //创建管控流程
  744. return Ok(JsonView(true, "操作成功!", groupData.Data));
  745. }
  746. /// <summary>
  747. /// 获取团组名称data And 签证国别Data
  748. /// </summary>
  749. /// <param name="dto"></param>
  750. /// <returns></returns>
  751. [HttpPost]
  752. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  753. public async Task<IActionResult> GetGroupNameAndVisaNationality(GroupNameDto dto)
  754. {
  755. var groupData = await _groupRepository.GetGroupNameAndVisaNationality(dto);
  756. if (groupData.Code != 0)
  757. {
  758. return Ok(JsonView(false, groupData.Msg));
  759. }
  760. return Ok(JsonView(groupData.Data));
  761. }
  762. /// <summary>
  763. /// 根据CTable类型返回对应的团组名称及简单数据(APP端)
  764. /// </summary>
  765. /// <returns></returns>
  766. [HttpPost]
  767. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  768. public async Task<IActionResult> PostGroupNameAndEasy(DecreasePaymentsDto dto)
  769. {
  770. try
  771. {
  772. Result groupData = await _decreasePaymentsRep.PostGroupNameAndEasy(dto);
  773. if (groupData.Code != 0)
  774. {
  775. return Ok(JsonView(false, groupData.Msg));
  776. }
  777. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  778. }
  779. catch (Exception ex)
  780. {
  781. return Ok(JsonView(false, "程序错误!"));
  782. throw;
  783. }
  784. }
  785. #endregion
  786. #region 团组&签证
  787. /// <summary>
  788. /// 根据团组Id获取签证客户信息List
  789. /// </summary>
  790. /// <param name="dto">请求dto</param>
  791. /// <returns></returns>
  792. [HttpPost]
  793. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  794. public async Task<IActionResult> GetCrmByGroupId(ClientByGroupIdDto dto)
  795. {
  796. var groupData = await _groupRepository.GetCrmByGroupId(dto);
  797. if (groupData.Code != 0)
  798. {
  799. return Ok(JsonView(false, groupData.Msg));
  800. }
  801. return Ok(JsonView(groupData.Data));
  802. }
  803. /// <summary>
  804. /// IOS获取团组签证拍照上传进度01(团组列表)
  805. /// </summary>
  806. /// <param name="dto">请求dto</param>
  807. /// <returns></returns>
  808. [HttpPost]
  809. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  810. public async Task<IActionResult> PostIOSVisaProgress(IOS_VisaDto dto)
  811. {
  812. if (dto == null)
  813. {
  814. return Ok(JsonView(false, "参数为空"));
  815. }
  816. DelegationVisaViewList visaList = _delegationVisaRep.GetDelegationList(dto);
  817. return Ok(JsonView(visaList));
  818. }
  819. /// <summary>
  820. /// IOS获取团组签证拍照上传进度02(团组签证详情\人员列表\国家)
  821. /// </summary>
  822. /// <returns></returns>
  823. [HttpPost]
  824. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  825. public async Task<ActionResult> PostIOSVisaProgressContent(IOS_VisaCustomerListDto dto)
  826. {
  827. if (dto == null)
  828. {
  829. return Ok(JsonView(false, "请求错误:"));
  830. }
  831. List<DelegationVisaProgressView> list = _delegationVisaRep.GetDelegationProgressList(dto.diId);
  832. return Ok(JsonView(list));
  833. }
  834. /// <summary>
  835. /// IOS获取团组签证拍照上传进度03(相册)
  836. /// </summary>
  837. /// <returns></returns>
  838. [HttpPost]
  839. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  840. public async Task<ActionResult> PostIOSVisaProgressImageList(IOS_VisaImageListDto dto)
  841. {
  842. if (dto == null)
  843. {
  844. return Ok(JsonView(false, "请求错误:"));
  845. }
  846. List<VisaProgressImageView> list = _delegationVisaRep.GetVisaProgressImageList(dto.visaProgressCustomerId, dto.picType);
  847. string url = AppSettingsHelper.Get("VisaProgressImageBaseUrl") + AppSettingsHelper.Get("VisaProgressImageFtpPath");
  848. list.ForEach(s => s.url = url);
  849. return Ok(JsonView(list));
  850. }
  851. /// <summary>
  852. /// IOS获取团组签证拍照上传进度04(图片上传)
  853. /// </summary>
  854. /// <param name="dto"></param>
  855. /// <returns></returns>
  856. [HttpPost]
  857. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  858. public async Task<ActionResult> PostIOSVisaProgressUploadImage(IOS_VisaUploadImageDto dto)
  859. {
  860. //string result = decodeBase64ToImage(dto.base64DataURL, dto.imageName);
  861. //if (!string.IsNullOrEmpty(result))
  862. //{
  863. //}
  864. //else {
  865. // return Ok(JsonView(false, "上传失败"));
  866. //}
  867. DateTime dt1970 = new DateTime(1970, 1, 1, 0, 0, 0, 0);
  868. int sucNum = 0;
  869. try
  870. {
  871. foreach (var item in dto.base64DataList)
  872. {
  873. string imageName = dto.imageName + ((DateTime.Now.Ticks - dt1970.Ticks) / 10000).ToString();
  874. string result = decodeBase64ToImage(item, imageName);
  875. if (!string.IsNullOrEmpty(result))
  876. {
  877. Grp_VisaProgressCustomerPicture pic = new Grp_VisaProgressCustomerPicture();
  878. pic.CreateUserId = dto.CreateUserId;
  879. pic.PicName = imageName;
  880. pic.PicPath = result;
  881. pic.VisaProgressCustomerId = dto.visaProgressCustomerId;
  882. int insertResult = await _delegationVisaRep.AddAsync<Grp_VisaProgressCustomerPicture>(pic);
  883. if (insertResult > 0)
  884. {
  885. sucNum++;
  886. }
  887. }
  888. }
  889. }
  890. catch (Exception ex)
  891. {
  892. return Ok(JsonView(false, ex.Message));
  893. }
  894. string msg = string.Format(@"成功上传{0}张", sucNum);
  895. return Ok(JsonView(true, msg));
  896. }
  897. private string decodeBase64ToImage(string base64DataURL, string imgName)
  898. {
  899. string filename = "";//声明一个string类型的相对路径
  900. String base64 = base64DataURL.Substring(base64DataURL.IndexOf(",") + 1); //将‘,’以前的多余字符串删除
  901. System.Drawing.Bitmap bitmap = null;//定义一个Bitmap对象,接收转换完成的图片
  902. try//会有异常抛出,try,catch一下
  903. {
  904. byte[] arr = Convert.FromBase64String(base64);//将纯净资源Base64转换成等效的8位无符号整形数组
  905. System.IO.MemoryStream ms = new System.IO.MemoryStream(arr);//转换成无法调整大小的MemoryStream对象
  906. bitmap = new System.Drawing.Bitmap(ms);//将MemoryStream对象转换成Bitmap对象
  907. var fileDir = AppSettingsHelper.Get("VisaProgressImageBasePath");
  908. //文件名称
  909. filename = "VisaProgress_" + DateTime.Now.ToString("yyyyMMddHHmmss") + "_" + imgName + ".jpeg";//所要保存的相对路径及名字
  910. //上传的文件的路径
  911. string filePath = "";
  912. if (!Directory.Exists(fileDir))
  913. {
  914. Directory.CreateDirectory(fileDir);
  915. }
  916. //上传的文件的路径
  917. filePath = fileDir + filename;
  918. //string url = HttpRuntime.AppDomainAppPath.ToString();
  919. //string tmpRootDir = System.Web.HttpContext.Current.Server.MapPath(System.Web.HttpContext.Current.Request.ApplicationPath.ToString()); //获取程序根目录
  920. //string imagesurl2 = tmpRootDir + filename; //转换成绝对路径
  921. bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Jpeg);//保存到服务器路径
  922. //bitmap.Save(filePath + ".bmp", System.Drawing.Imaging.ImageFormat.Bmp);
  923. //bitmap.Save(filePath + ".gif", System.Drawing.Imaging.ImageFormat.Gif);
  924. //bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Png);
  925. ms.Close();//关闭当前流,并释放所有与之关联的资源
  926. bitmap.Dispose();
  927. }
  928. catch (Exception e)
  929. {
  930. string massage = e.Message;
  931. Logs("IOS图片上传Error:" + massage);
  932. //filename = e.Message;
  933. }
  934. return filename;//返回相对路径
  935. }
  936. /// <summary>
  937. /// IOS获取团组签证拍照上传进度05(修改签证状态/通知)
  938. /// </summary>
  939. /// <param name="dto"></param>
  940. /// <returns></returns>
  941. [HttpPost]
  942. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  943. public async Task<ActionResult> PostIOSVisaProgressChangeStatus(IOS_VisaChangeStatusDto dto)
  944. {
  945. if (dto == null)
  946. {
  947. return Ok(JsonView(false, "请求错误:"));
  948. }
  949. string msg = "参数错误";
  950. if (dto.diId > 0 && dto.visaStatus > 0 && dto.visaStatus < 4)
  951. {
  952. try
  953. {
  954. //_delegationVisaRep.BeginTran();
  955. var updCount = await _delegationVisaRep._sqlSugar.Updateable<Grp_VisaProgressCustomer>()
  956. .SetColumns(it => it.WorkStatus == dto.visaStatus)
  957. .Where(s => s.Id == dto.visaProgressCustomerId)
  958. .ExecuteCommandAsync();
  959. if (updCount > 0 && dto.publishCode == 1)
  960. {
  961. _delegationVisaRep.ChangeDataBase(DBEnum.OA2014DB); //切换到新OA后删除
  962. string sqlDelegation = string.Format(@" Select * From DelegationInfo With(Nolock) Where Id = {0} ", dto.diId);
  963. OA2021_DelegationInfo groupData = _sqlSugar.SqlQueryable<OA2021_DelegationInfo>(sqlDelegation).First();
  964. //GroupInfoDto grpDto = new GroupInfoDto() { Id = dto.diId };
  965. //var groupData = await _groupRepository.GetGroupInfo(grpDto);
  966. _delegationVisaRep.ChangeDataBase(DBEnum.OA2023DB); //切换到新OA后删除
  967. if (groupData == null)
  968. {
  969. _delegationVisaRep.RollbackTran();
  970. }
  971. string title = string.Format(@"[签证进度更新]");
  972. string content = string.Format(@"测试文本");
  973. bool rst = await _message.AddMsg(new MessageDto()
  974. {
  975. Type = MessageTypeEnum.GroupVisaProgressUpdate,
  976. IssuerId = dto.publisher,
  977. Title = title,
  978. Content = content,
  979. ReleaseTime = DateTime.Now,
  980. UIdList = new List<int> {
  981. 234
  982. }
  983. });
  984. if (rst)
  985. {
  986. return Ok(JsonView(true, "发送通知成功"));
  987. }
  988. }
  989. //_delegationVisaRep.CommitTran();
  990. }
  991. catch (Exception)
  992. {
  993. //_delegationVisaRep.RollbackTran();
  994. }
  995. }
  996. return Ok(JsonView(true, msg));
  997. }
  998. #endregion
  999. #region 团组任务分配
  1000. /// <summary>
  1001. /// 团组任务分配初始化
  1002. /// </summary>
  1003. /// <param name="dto"></param>
  1004. /// <returns></returns>
  1005. [HttpPost]
  1006. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1007. public async Task<IActionResult> GetTaskAssignmen()
  1008. {
  1009. var groupData = await _taskAssignmentRep.GetTaskAssignmen();
  1010. if (groupData.Code != 0)
  1011. {
  1012. return Ok(JsonView(false, groupData.Msg));
  1013. }
  1014. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1015. }
  1016. /// <summary>
  1017. /// 团组任务分配查询
  1018. /// </summary>
  1019. /// <param name="dto"></param>
  1020. /// <returns></returns>
  1021. [HttpPost]
  1022. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1023. public async Task<IActionResult> TaskAssignmenQuery(TaskAssignmenQueryDto dto)
  1024. {
  1025. var groupData = await _taskAssignmentRep.TaskAssignmenQuery(dto);
  1026. if (groupData.Code != 0)
  1027. {
  1028. return Ok(JsonView(false, groupData.Msg));
  1029. }
  1030. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1031. }
  1032. /// <summary>
  1033. /// 团组任务分配操作
  1034. /// </summary>
  1035. /// <param name="dto"></param>
  1036. /// <returns></returns>
  1037. [HttpPost]
  1038. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1039. public async Task<IActionResult> GetTaskAssignmenOp(TaskAssignmenDto dto)
  1040. {
  1041. Result groupData = await _taskAssignmentRep.GetTaskAssignmenOp(dto);
  1042. if (groupData.Code != 0)
  1043. {
  1044. return Ok(JsonView(false, groupData.Msg));
  1045. }
  1046. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1047. }
  1048. #endregion
  1049. #region 团组费用审核
  1050. /// <summary>
  1051. /// 费用审核
  1052. /// 团组列表 Page
  1053. /// </summary>
  1054. /// <param name="_dto">团组列表请求dto</param>
  1055. /// <returns></returns>
  1056. [HttpPost]
  1057. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1058. public async Task<IActionResult> PostExpenseAuditGroupPageItems(ExpenseAuditGroupPageItemsDto _dto)
  1059. {
  1060. #region 参数验证
  1061. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1062. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1063. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1064. #region 页面操作权限验证
  1065. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1066. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1067. #endregion
  1068. #endregion
  1069. if (_dto.PortType == 1 || _dto.PortType == 2 || _dto.PortType == 2) // web/Android/IOS
  1070. {
  1071. string sqlWhere = string.Empty;
  1072. if (_dto.IsSure == 0) //未完成
  1073. {
  1074. sqlWhere += string.Format(@" And IsSure = 0");
  1075. }
  1076. else if (_dto.IsSure == 1) //已完成
  1077. {
  1078. sqlWhere += string.Format(@" And IsSure = 1");
  1079. }
  1080. if (!string.IsNullOrEmpty(_dto.SearchCriteria))
  1081. {
  1082. string tj = _dto.SearchCriteria;
  1083. 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}%')",
  1084. tj, tj, tj, tj, tj);
  1085. }
  1086. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  1087. TeamName,ClientName,ClientUnit, TeamLevId,TeamLev,VisitDate,
  1088. VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  1089. From (
  1090. Select row_number() over(order by gdi.VisitDate Desc) as Row_Number,
  1091. gdi.Id,SalesQuoteNo,TourCode,ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,
  1092. ClientName,ClientUnit,ssd.Id TeamTypeId, ssd.Name TeamType,VisitDate,
  1093. VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  1094. From Grp_DelegationInfo gdi
  1095. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  1096. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  1097. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  1098. Where gdi.IsDel = 0 {0}
  1099. ) temp ", sqlWhere);
  1100. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  1101. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(_dto.PageIndex, _dto.PageSize, total);//ToPageAsync
  1102. var _view = new
  1103. {
  1104. PageFuncAuth = pageFunAuthView,
  1105. Data = _DelegationList
  1106. };
  1107. return Ok(JsonView(true, "查询成功!", _view, total));
  1108. }
  1109. else
  1110. {
  1111. return Ok(JsonView(false, "查询失败"));
  1112. }
  1113. }
  1114. /// <summary>
  1115. /// 获取团组费用审核
  1116. /// </summary>
  1117. /// <param name="paras">参数Json字符串</param>
  1118. /// <returns></returns>
  1119. [HttpPost]
  1120. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1121. public async Task<IActionResult> PostSearchGrpCreditCardPayment(Search_GrpCreditCardPaymentDto _dto)
  1122. {
  1123. try
  1124. {
  1125. #region 参数验证
  1126. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1127. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1128. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  1129. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1130. #region 页面操作权限验证
  1131. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1132. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1133. #endregion
  1134. #endregion
  1135. Grp_CreditCardPaymentView _view = new Grp_CreditCardPaymentView();
  1136. List<SimplClientInfo> clientNameList = getSimplClientList(_dto.DiId);
  1137. #region 费用清单
  1138. var exp = Expressionable.Create<Grp_CreditCardPayment>();
  1139. exp.AndIF(_dto.AuditStatus != -1, it => it.IsAuditGM == _dto.AuditStatus);
  1140. exp.AndIF(_dto.Label != -1, it => it.CTable == _dto.Label);
  1141. List<Grp_CreditCardPayment> entityList = _groupRepository
  1142. .Query<Grp_CreditCardPayment>(s => s.DIId == _dto.DiId && s.IsDel == 0 && s.CreateUserId > 0)
  1143. .Where(exp.ToExpression())
  1144. .ToList();
  1145. List<Grp_CreditCardPaymentDetailView> detailList = new List<Grp_CreditCardPaymentDetailView>();
  1146. List<CreditCardPaymentCurrencyPriceItem> ccpCurrencyPrices = new List<CreditCardPaymentCurrencyPriceItem>();
  1147. /*
  1148. * 76://酒店预订
  1149. */
  1150. List<Grp_HotelReservations> _HotelReservations = await _groupRepository
  1151. .Query<Grp_HotelReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1152. .ToListAsync();
  1153. /*
  1154. * 79://车/导游地接
  1155. */
  1156. List<Grp_CarTouristGuideGroundReservations> _CarTouristGuideGroundReservations = await _groupRepository
  1157. .Query<Grp_CarTouristGuideGroundReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1158. .ToListAsync();
  1159. List<Grp_CarTouristGuideGroundReservationsContent> _CarTouristGuideGroundReservationsContent = await _groupRepository
  1160. .Query<Grp_CarTouristGuideGroundReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1161. .ToListAsync();
  1162. /*
  1163. * 80: //签证
  1164. */
  1165. List<Grp_VisaInfo> _VisaInfos = await _groupRepository
  1166. .Query<Grp_VisaInfo>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1167. .ToListAsync();
  1168. /*
  1169. *81: //邀请/公务活动
  1170. */
  1171. List<Grp_InvitationOfficialActivities> _InvitationOfficialActivities = await _groupRepository
  1172. .Query<Grp_InvitationOfficialActivities>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1173. .ToListAsync();
  1174. /*
  1175. * 82: //团组客户保险
  1176. */
  1177. List<Grp_Customers> _Customers = await _groupRepository.Query<Grp_Customers>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1178. /*
  1179. * Lable = 85 机票预订
  1180. */
  1181. List<Grp_AirTicketReservations> p_AirTicketReservations = await _groupRepository
  1182. .Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1183. .ToListAsync();
  1184. /*
  1185. * 85 机票预定
  1186. */
  1187. List<Grp_AirTicketReservations> _AirTicketReservations = await _groupRepository.Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1188. /*
  1189. * 98 其他款项
  1190. */
  1191. List<Grp_DecreasePayments> _DecreasePayments = await _groupRepository
  1192. .Query<Grp_DecreasePayments>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1193. .ToListAsync();
  1194. /*
  1195. * 285:收款退还
  1196. */
  1197. List<Fin_PaymentRefundAndOtherMoney> _PaymentRefundAndOtherMoneys = await _groupRepository
  1198. .Query<Fin_PaymentRefundAndOtherMoney>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1199. .ToListAsync();
  1200. /*
  1201. * 1015: //超支费用
  1202. */
  1203. List<Fin_GroupExtraCost> _GroupExtraCosts = await _groupRepository.Query<Fin_GroupExtraCost>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1204. /*
  1205. * 币种信息
  1206. */
  1207. var currencyItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 66 && s.IsDel == 0).ToListAsync();
  1208. /*
  1209. * 车/导游地接 费用类型
  1210. */
  1211. var carFeeTypeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 17 && s.IsDel == 0).ToListAsync();
  1212. /*
  1213. * 车/导游地接 费用类型
  1214. */
  1215. var carFeeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 83 && s.IsDel == 0).ToListAsync();
  1216. var cityData = await _groupRepository.Query<Grp_NationalTravelFee>(s => s.IsDel == 0).ToListAsync();
  1217. /*
  1218. * 用户信息
  1219. */
  1220. var userItems = await _groupRepository.Query<Sys_Users>(s => s.IsDel == 0).ToListAsync();
  1221. /*
  1222. * 费用模块
  1223. */
  1224. Sys_SetData sdPriceName = _groupRepository.Query<Sys_SetData>(s => s.Id == _dto.Label).First();
  1225. string priceModule = string.Empty;
  1226. if (sdPriceName != null)
  1227. {
  1228. priceModule = sdPriceName.Name;
  1229. }
  1230. /*
  1231. * 处理详情数据
  1232. */
  1233. foreach (var entity in entityList)
  1234. {
  1235. Grp_CreditCardPaymentDetailView _detail = new Grp_CreditCardPaymentDetailView();
  1236. _detail.Id = entity.Id;
  1237. _detail.PriceName = priceModule;
  1238. /*
  1239. * 应付款金额
  1240. */
  1241. Sys_SetData sdPaymentCurrency_WaitPay = currencyItems.Where(s => s.Id == entity.PaymentCurrency).FirstOrDefault();
  1242. string PaymentCurrency_WaitPay = "Unknown";
  1243. string hotelCurrncyCode = "Unknown";
  1244. string hotelCurrncyName = "Unknown";
  1245. if (sdPaymentCurrency_WaitPay != null)
  1246. {
  1247. PaymentCurrency_WaitPay = sdPaymentCurrency_WaitPay.Name;
  1248. hotelCurrncyCode = sdPaymentCurrency_WaitPay.Name;
  1249. hotelCurrncyName = sdPaymentCurrency_WaitPay.Remark;
  1250. if (hotelCurrncyCode.Equals("CNY"))
  1251. {
  1252. entity.DayRate = 1.0000M;
  1253. }
  1254. }
  1255. _detail.WaitPay = entity.PayMoney.ConvertToDecimal1().ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1256. /*
  1257. * 此次付款金额
  1258. */
  1259. decimal CurrPayStr = 0;
  1260. if (entity.PayPercentage == 0)
  1261. {
  1262. if (entity.PayThenMoney != 0)
  1263. CurrPayStr = (entity.PayThenMoney * entity.DayRate).ConvertToDecimal1();
  1264. }
  1265. else
  1266. {
  1267. CurrPayStr = (entity.PayMoney * entity.PayPercentage / 100 * entity.DayRate).ConvertToDecimal1();
  1268. }
  1269. _detail.CurrPay = CurrPayStr.ToString("#0.00") + " CNY";
  1270. /*
  1271. * 剩余尾款
  1272. */
  1273. decimal BalanceStr = 0;
  1274. if (entity.PayMoney - (CurrPayStr / entity.DayRate) < 0.01M)
  1275. BalanceStr = 0;
  1276. else
  1277. BalanceStr = (entity.PayMoney - CurrPayStr / entity.DayRate).ConvertToDecimal1();
  1278. _detail.Balance = BalanceStr.ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1279. /*
  1280. * Bus名称
  1281. */
  1282. _detail.BusName = "待增加";
  1283. /*
  1284. *费用所属
  1285. */
  1286. switch (entity.CTable)
  1287. {
  1288. case 76://酒店预订
  1289. Grp_HotelReservations hotelReservations = _HotelReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1290. if (hotelReservations != null)
  1291. {
  1292. string GovernmentRentCode = "", GovernmentRentName = "", CityTaxCode = "", CityTaxName = "", BreakfastCode = "", BreakfastName = "";
  1293. Sys_SetData sdPaymentCurrency_GovernmentRent = currencyItems.Where(s => s.Id == hotelReservations.GovernmentRentCurrency).FirstOrDefault();
  1294. if (sdPaymentCurrency_GovernmentRent != null)
  1295. {
  1296. GovernmentRentCode = sdPaymentCurrency_GovernmentRent.Name;
  1297. GovernmentRentName = sdPaymentCurrency_GovernmentRent.Remark;
  1298. }
  1299. Sys_SetData sdPaymentCurrency_CityTax = currencyItems.Where(s => s.Id == hotelReservations.CityTaxCurrency).FirstOrDefault();
  1300. if (sdPaymentCurrency_CityTax != null)
  1301. {
  1302. CityTaxCode = sdPaymentCurrency_CityTax.Name;
  1303. CityTaxName = sdPaymentCurrency_CityTax.Remark;
  1304. }
  1305. Sys_SetData sdPaymentCurrency_Breakfast = currencyItems.Where(s => s.Id == hotelReservations.BreakfastCurrency).FirstOrDefault();
  1306. if (sdPaymentCurrency_Breakfast != null)
  1307. {
  1308. BreakfastCode = sdPaymentCurrency_Breakfast.Name;
  1309. BreakfastName = sdPaymentCurrency_Breakfast.Remark;
  1310. }
  1311. string isoppayStr = hotelReservations.Isoppay == 0 ? "是" : "否";
  1312. _detail.PriceMsgContent = $"信用卡金额:{_detail.WaitPay} ({hotelCurrncyName})<br/>" +
  1313. $"房间说明: {hotelReservations.Remark} <br/>" +
  1314. $"地税: {hotelReservations.GovernmentRent.ToString("#0.00")} {GovernmentRentCode} ({GovernmentRentName})<br/>" +
  1315. $"城市税: {hotelReservations.CityTax.ToString("#0.00")} {CityTaxCode} ({CityTaxName})<br/>" +
  1316. $"酒店早餐: {hotelReservations.BreakfastPrice.ToString("#0.00")} {BreakfastCode} ({BreakfastName})<br/>" +
  1317. $"酒店早餐是否由地接代付: {isoppayStr}";
  1318. _detail.PriceNameContent = hotelReservations.HotelName;
  1319. }
  1320. break;
  1321. case 79://车/导游地接
  1322. Grp_CarTouristGuideGroundReservations touristGuideGroundReservations = _CarTouristGuideGroundReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1323. if (touristGuideGroundReservations != null)
  1324. {
  1325. if (!string.IsNullOrEmpty(touristGuideGroundReservations.BusName))
  1326. {
  1327. _detail.BusName = touristGuideGroundReservations.BusName;
  1328. }
  1329. _detail.PriceNameContent = touristGuideGroundReservations.PriceName;
  1330. //bool isInt = int.TryParse(touristGuideGroundReservations.Area, out int cityId);
  1331. //if (isInt)
  1332. //{
  1333. // var cityInfo = cityData.Find(it => it.Id == cityId);
  1334. // if (cityInfo != null)
  1335. // {
  1336. // string nameContent = $@"{cityInfo.Country}-{cityInfo.City}";
  1337. // var carFeeItem = carFeeItems.Find(it => it.Id == touristGuideGroundReservations.PriceType);
  1338. // if (carFeeItem != null)
  1339. // {
  1340. // nameContent += $@"({carFeeItem.Name})";
  1341. // }
  1342. // _detail.PriceNameContent = nameContent;
  1343. // }
  1344. //}
  1345. //else
  1346. //{
  1347. // _detail.PriceNameContent = touristGuideGroundReservations.Area;
  1348. //}
  1349. List<Grp_CarTouristGuideGroundReservationsContent> touristGuideGroundReservationsContents = _CarTouristGuideGroundReservationsContent
  1350. .Where(s => s.CTGGRId == touristGuideGroundReservations.Id && s.IsDel == 0 && s.Price != 0).ToList();
  1351. string priceMsg = string.Empty;
  1352. foreach (var item in touristGuideGroundReservationsContents)
  1353. {
  1354. string typeName = "Unknown";
  1355. string carCurrencyCode = "Unknown";
  1356. string carCurrencyName = "Unknown";
  1357. var carTypeData = carFeeTypeItems.Where(s => s.Id == item.SId && s.IsDel == 0).FirstOrDefault();
  1358. if (carTypeData != null) typeName = carTypeData.Name;
  1359. var currencyData = currencyItems.Where(s => s.Id == item.Currency && s.IsDel == 0).FirstOrDefault();
  1360. if (currencyData != null)
  1361. {
  1362. carCurrencyCode = currencyData.Name;
  1363. carCurrencyName = currencyData.Remark;
  1364. }
  1365. priceMsg += typeName + ":" + item.Price.ToString("#0.00") + " " + carCurrencyCode + "(" + carCurrencyName + ")<br/>" +
  1366. "明细:" + item.PriceContent + "<br/>" +
  1367. "备注:" + item.Remark + "<br/><br/>";
  1368. }
  1369. _detail.PriceMsgContent = priceMsg;
  1370. }
  1371. break;
  1372. case 80: //签证
  1373. Grp_VisaInfo visaInfo = _VisaInfos.Where(s => s.Id == entity.CId).FirstOrDefault();
  1374. if (visaInfo != null)
  1375. {
  1376. _detail.PriceNameContent = getClientNameStr(clientNameList, visaInfo.VisaClient);
  1377. _detail.PriceMsgContent = "备注:" + visaInfo.Remark;
  1378. }
  1379. break;
  1380. case 81: //邀请/公务活动
  1381. Grp_InvitationOfficialActivities _ioa = _InvitationOfficialActivities.Where(s => s.Id == entity.CId).FirstOrDefault();
  1382. if (_ioa != null)
  1383. {
  1384. string inviteCurrName = "Unknown", //邀请费用币种 Name
  1385. inviteCurrCode = "Unknown", //邀请费用币种 Code
  1386. sendCurrName = "Unknown", //快递费用币种 Name
  1387. sendCurrCode = "Unknown", //快递费用币种 Code
  1388. eventsCurrName = "Unknown", //公务活动费币种 Name
  1389. eventsCurrCode = "Unknown", //公务活动费币种 Code
  1390. translateCurrName = "Unknown", //公务翻译费 Name
  1391. translateCurrCode = "Unknown"; //公务翻译费 Code
  1392. #region 处理费用币种
  1393. var inviteCurrData = currencyItems.Where(s => s.Id == _ioa.InviteCurrency && s.IsDel == 0).FirstOrDefault();
  1394. if (inviteCurrData != null)
  1395. {
  1396. inviteCurrName = inviteCurrData.Remark;
  1397. inviteCurrCode = inviteCurrData.Name;
  1398. }
  1399. var sendCurrData = currencyItems.Where(s => s.Id == _ioa.SendCurrency && s.IsDel == 0).FirstOrDefault();
  1400. if (sendCurrData != null)
  1401. {
  1402. sendCurrName = sendCurrData.Remark;
  1403. sendCurrCode = sendCurrData.Name;
  1404. }
  1405. var eventsCurrData = currencyItems.Where(s => s.Id == _ioa.EventsCurrency && s.IsDel == 0).FirstOrDefault();
  1406. if (eventsCurrData != null)
  1407. {
  1408. eventsCurrName = eventsCurrData.Remark;
  1409. eventsCurrCode = eventsCurrData.Name;
  1410. }
  1411. var translateCurrData = currencyItems.Where(s => s.Id == _ioa.TranslateCurrency && s.IsDel == 0).FirstOrDefault();
  1412. if (translateCurrData != null)
  1413. {
  1414. translateCurrName = translateCurrData.Remark;
  1415. translateCurrCode = translateCurrData.Name;
  1416. }
  1417. #endregion
  1418. _detail.PriceNameContent = _ioa.InviterArea;
  1419. _detail.PriceMsgContent = $@"邀请费用:{_ioa.InviteCost.ToString("#0.00")} {inviteCurrCode}({inviteCurrName})<br/>" +
  1420. $@"快递费用:{_ioa.SendCost.ToString("#0.00")} {sendCurrCode}({sendCurrName})<br/>" +
  1421. $@"公务活动费:{_ioa.EventsCost.ToString("#0.00")} {eventsCurrCode}({eventsCurrName})<br/>" +
  1422. $@"公务翻译费:{_ioa.TranslateCost.ToString("#0.00")} {translateCurrCode}({translateCurrName})<br/>" +
  1423. $@"备注:" + _ioa.Remark + "<br/>";
  1424. }
  1425. break;
  1426. case 82: //团组客户保险
  1427. Grp_Customers customers = _Customers.Where(s => s.Id == entity.CId && s.IsDel == 0).FirstOrDefault();
  1428. if (customers != null)
  1429. {
  1430. _detail.PriceNameContent = getClientNameStr(clientNameList, customers.ClientName);
  1431. _detail.PriceMsgContent = "备注:" + customers.Remark + "<br/>";
  1432. }
  1433. break;
  1434. case 85: //机票预订
  1435. Grp_AirTicketReservations jpRes = _AirTicketReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1436. if (jpRes != null)
  1437. {
  1438. string FlightsDescription = jpRes.FlightsDescription;
  1439. string PriceDescription = jpRes.PriceDescription;
  1440. _detail.PriceMsgContent = "航班号:" + jpRes.FlightsCode + "<br/>城市A-B:" + jpRes.FlightsCity + "<br/>航班描述:" + FlightsDescription.Replace("\r\n", "<br />") + "<br/>" + "价格描述:" + PriceDescription;
  1441. _detail.PriceNameContent = "(" + jpRes.FlightsCode + ")";
  1442. }
  1443. break;
  1444. case 98://其他款项
  1445. Grp_DecreasePayments gdpRes = _DecreasePayments.Where(s => s.Id == entity.CId).FirstOrDefault();
  1446. if (gdpRes != null)
  1447. {
  1448. _detail.PriceMsgContent = "备注:" + gdpRes.Remark;
  1449. _detail.PriceNameContent = gdpRes.PriceName;
  1450. }
  1451. break;
  1452. case 285://收款退还
  1453. Fin_PaymentRefundAndOtherMoney refundAndOtherMoney = _PaymentRefundAndOtherMoneys.Where(s => s.Id == entity.CId).FirstOrDefault();
  1454. if (refundAndOtherMoney != null)
  1455. {
  1456. _detail.PriceMsgContent = "备注:" + refundAndOtherMoney.Remark;
  1457. _detail.PriceNameContent = refundAndOtherMoney.PriceName;
  1458. }
  1459. break;
  1460. case 751://酒店早餐
  1461. break;
  1462. case 1015://超支费用
  1463. Fin_GroupExtraCost groupExtraCost = _GroupExtraCosts.Where(s => s.Id == entity.CId).FirstOrDefault();
  1464. if (groupExtraCost != null)
  1465. {
  1466. _detail.PriceNameContent = groupExtraCost.PriceName;
  1467. _detail.PriceMsgContent = "备注:" + groupExtraCost.Remark;
  1468. }
  1469. break;
  1470. default:
  1471. break;
  1472. }
  1473. /*
  1474. * 申请人
  1475. */
  1476. string operatorName = " - ";
  1477. Sys_Users _opUser = userItems.Where(s => s.Id == entity.CreateUserId).FirstOrDefault();
  1478. if (_opUser != null)
  1479. {
  1480. operatorName = _opUser.CnName;
  1481. }
  1482. _detail.OperatorName = operatorName;
  1483. /*
  1484. * 审核人
  1485. */
  1486. string auditOperatorName = "Unknown";
  1487. if (entity.AuditGMOperate == 0)
  1488. auditOperatorName = " - ";
  1489. else if (entity.AuditGMOperate == 4)
  1490. auditOperatorName = "自动审核";
  1491. else
  1492. {
  1493. Sys_Users _adUser = userItems.Where(s => s.Id == entity.AuditGMOperate).FirstOrDefault();
  1494. if (_adUser != null)
  1495. {
  1496. auditOperatorName = _adUser.CnName;
  1497. }
  1498. }
  1499. _detail.AuditOperatorName = auditOperatorName;
  1500. /*
  1501. * 超预算比例
  1502. */
  1503. string overBudgetStr = "";
  1504. if (entity.ExceedBudget == -1)
  1505. overBudgetStr = sdPriceName.Name + "尚无预算";
  1506. else if (entity.ExceedBudget == 0)
  1507. overBudgetStr = "未超预算";
  1508. else
  1509. overBudgetStr = entity.ExceedBudget.ToString("P");
  1510. _detail.OverBudget = overBudgetStr;
  1511. /*
  1512. * 费用总计
  1513. */
  1514. ccpCurrencyPrices.Add(new CreditCardPaymentCurrencyPriceItem()
  1515. {
  1516. CurrencyId = entity.PaymentCurrency,
  1517. CurrencyName = PaymentCurrency_WaitPay,
  1518. AmountPayable = entity.PayMoney,
  1519. ThisPayment = CurrPayStr,
  1520. BalancePayment = BalanceStr,
  1521. AuditedFunds = CurrPayStr
  1522. });
  1523. _detail.IsAuditGM = entity.IsAuditGM;
  1524. detailList.Add(_detail);
  1525. }
  1526. #endregion
  1527. _view.DetailList = new List<Grp_CreditCardPaymentDetailView>(detailList);
  1528. /*
  1529. * 下方描述处理
  1530. */
  1531. List<CreditCardPaymentCurrencyPriceItem> nonDuplicat = ccpCurrencyPrices.Where((x, i) => ccpCurrencyPrices.FindIndex(z => z.CurrencyId == x.CurrencyId) == i).ToList();//Lambda表达式去重
  1532. CreditCardPaymentCurrencyPriceItem ccpCurrencyPrice = nonDuplicat.Where(it => it.CurrencyId == 836).FirstOrDefault();
  1533. if (ccpCurrencyPrice != null)
  1534. {
  1535. int CNYIndex = nonDuplicat.IndexOf(ccpCurrencyPrice);
  1536. nonDuplicat.MoveItemAtIndexToFront(CNYIndex);
  1537. }
  1538. else
  1539. {
  1540. nonDuplicat.OrderBy(it => it.CurrencyId).ToList();
  1541. }
  1542. string amountPayableStr = string.Format(@"应付款总金额: ");
  1543. string thisPaymentStr = string.Format(@"此次付款总金额: ");
  1544. string balancePaymentStr = string.Format(@"目前剩余尾款总金额: ");
  1545. string auditedFundsStr = string.Format(@"已审费用总额: ");
  1546. foreach (var item in nonDuplicat)
  1547. {
  1548. var strs = ccpCurrencyPrices.Where(it => it.CurrencyId == item.CurrencyId).ToList();
  1549. if (strs.Count > 0)
  1550. {
  1551. decimal amountPayable = strs.Sum(it => it.AmountPayable);
  1552. decimal balancePayment = strs.Sum(it => it.BalancePayment);
  1553. amountPayableStr += string.Format(@"{0}{1}&nbsp;|", amountPayable.ToString("#0.00"), item.CurrencyName);
  1554. //单独处理此次付款金额
  1555. if (item.CurrencyId == 836) //人民币
  1556. {
  1557. decimal thisPayment = ccpCurrencyPrices.Sum(it => it.ThisPayment);
  1558. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", thisPayment.ToString("#0.00"), item.CurrencyName);
  1559. }
  1560. else
  1561. {
  1562. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1563. }
  1564. balancePaymentStr += string.Format(@"{0}{1}&nbsp;|", balancePayment.ToString("#0.00"), item.CurrencyName);
  1565. //单独处理已审核费用
  1566. if (item.CurrencyId == 836) //人民币
  1567. {
  1568. decimal auditedFunds = ccpCurrencyPrices.Sum(it => it.AuditedFunds);
  1569. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", auditedFunds.ToString("#0.00"), item.CurrencyName);
  1570. }
  1571. else
  1572. {
  1573. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1574. }
  1575. }
  1576. }
  1577. _view.TotalStr1 = amountPayableStr.Substring(0, amountPayableStr.Length - 1);
  1578. _view.TotalStr2 = thisPaymentStr.Substring(0, thisPaymentStr.Length - 1);
  1579. _view.TotalStr3 = balancePaymentStr.Substring(0, balancePaymentStr.Length - 1);
  1580. _view.TotalStr4 = auditedFundsStr.Substring(0, auditedFundsStr.Length - 1);
  1581. var _view1 = new
  1582. {
  1583. PageFuncAuth = pageFunAuthView,
  1584. Data = _view
  1585. };
  1586. return Ok(JsonView(_view1));
  1587. }
  1588. catch (Exception ex)
  1589. {
  1590. return Ok(JsonView(false, ex.Message));
  1591. }
  1592. }
  1593. /// <summary>
  1594. /// 费用审核
  1595. /// 修改团组费用审核状态
  1596. /// </summary>
  1597. /// <param name="_dto">参数Json字符串</param>
  1598. /// <returns></returns>
  1599. [HttpPost]
  1600. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1601. public async Task<IActionResult> PostAuditGrpCreditCardPayment(Edit_GrpCreditCardPaymentDto _dto)
  1602. {
  1603. #region 参数验证
  1604. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1605. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1606. #endregion
  1607. #region 页面操作权限验证
  1608. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1609. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1610. if (pageFunAuthView.AuditAuth == 0) return Ok(JsonView(false, "您没有审核权限"));
  1611. #endregion
  1612. List<string> idList = _dto.CreditIdStr.Split(',').ToList();
  1613. Grp_CreditCardPayment _detail = _mapper.Map<Grp_CreditCardPayment>(_dto);
  1614. DateTime dtNow = DateTime.Now;
  1615. _groupRepository.BeginTran();
  1616. int rst = 0;
  1617. var creditDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && idList.Contains(it.Id.ToString())).ToList();
  1618. var creditTypeDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 16).ToList();
  1619. var creditCurrencyDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  1620. var groupDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).ToList();
  1621. List<dynamic> msgDatas = new List<dynamic>();
  1622. Dictionary<int, int> dic_ccp_user = new Dictionary<int, int>() { };
  1623. foreach (var item in idList)
  1624. {
  1625. int CreditId = int.Parse(item);
  1626. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_CreditCardPayment>()
  1627. .SetColumns(it => it.IsAuditGM == _dto.AuditCode)
  1628. .SetColumns(it => it.AuditGMOperate == _dto.UserId)
  1629. .SetColumns(it => it.AuditGMDate == dtNow.ToString("yyyy-MM-dd HH:mm:ss"))
  1630. .Where(s => s.Id == CreditId)
  1631. .ExecuteCommandAsync();
  1632. if (result < 1)
  1633. {
  1634. rst = -1;
  1635. _groupRepository.RollbackTran();
  1636. return Ok(JsonView(false, "操作失败并回滚!"));
  1637. }
  1638. var creditData = creditDatas.Where(it => it.Id == CreditId).FirstOrDefault();
  1639. if (creditData != null)
  1640. {
  1641. #region 应用通知配置
  1642. try
  1643. {
  1644. dic_ccp_user.Add(creditData.Id, creditData.CreateUserId);
  1645. }
  1646. catch (Exception ex)
  1647. {
  1648. }
  1649. #endregion
  1650. string auditStr = _dto.AuditCode == 1 ? "已通过" : _dto.AuditCode == 2 ? "未通过" : "未审核";
  1651. string groupNameStr = string.Empty;
  1652. var groupData = groupDatas.Where(it => it.Id == creditData.DIId).FirstOrDefault();
  1653. if (groupData != null) groupNameStr = groupData.TeamName;
  1654. string creditTypeStr = string.Empty;
  1655. var creditTypeData = creditTypeDatas.Where(it => it.Id == creditData.CTable).FirstOrDefault();
  1656. if (creditTypeData != null) creditTypeStr = creditTypeData.Name;
  1657. string creditCurrency = string.Empty;
  1658. var creditCurrencyData = creditCurrencyDatas.Where(it => it.Id == creditData.PaymentCurrency).FirstOrDefault();
  1659. if (creditCurrencyData != null) creditCurrency = creditCurrencyData.Name;
  1660. if (creditCurrency.Equals("CNY"))
  1661. {
  1662. creditData.DayRate = 1.0000M;
  1663. }
  1664. if (creditData.PayPercentage == 0.00M)
  1665. {
  1666. creditData.PayPercentage = 100M;
  1667. }
  1668. decimal CNYPrice = (creditData.PayMoney * (creditData.PayPercentage / 100)) * creditData.DayRate;
  1669. string msgTitle = $"[{groupNameStr}({creditTypeStr})]的费用申请";
  1670. string msgContent = "";
  1671. if (creditCurrency.Equals("CNY"))
  1672. {
  1673. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY) {auditStr}!";
  1674. }
  1675. else
  1676. {
  1677. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY({creditData.PayMoney.ToString("0.00")} {creditCurrency})) {auditStr}!";
  1678. }
  1679. msgDatas.Add(new { DiId = creditData.DIId, UserId = creditData.CreateUserId, MsgTitle = msgTitle, MsgContent = msgContent });
  1680. }
  1681. }
  1682. if (rst == 0)
  1683. {
  1684. _groupRepository.CommitTran();
  1685. foreach (var item in msgDatas)
  1686. {
  1687. //发送消息
  1688. GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupExpenseAudit, item.MsgTitle, item.MsgContent, new List<int>() { item.UserId }, item.DiId);
  1689. }
  1690. #region 应用推送
  1691. try
  1692. {
  1693. foreach (var ccpId in dic_ccp_user.Keys)
  1694. {
  1695. List<string> templist = new List<string>() { dic_ccp_user[ccpId].ToString() };
  1696. await AppNoticeLibrary.SendUserMsg_GroupStatus_AuditFee(ccpId, templist, QiyeWeChatEnum.CaiWuChat);
  1697. }
  1698. }
  1699. catch (Exception)
  1700. {
  1701. }
  1702. #endregion
  1703. return Ok(JsonView(true, "操作成功!"));
  1704. }
  1705. return Ok(JsonView(false, "操作失败!"));
  1706. }
  1707. #endregion
  1708. #region 机票费用录入
  1709. /// <summary>
  1710. /// 机票录入当前登录人可操作团组
  1711. /// </summary>
  1712. /// <param name="dto"></param>
  1713. /// <returns></returns>
  1714. [HttpPost]
  1715. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1716. public async Task<IActionResult> AirTicketResSelect(AirTicketResDto dto)
  1717. {
  1718. try
  1719. {
  1720. Result groupData = await _airTicketResRep.AirTicketResSelect(dto);
  1721. if (groupData.Code != 0)
  1722. {
  1723. return Ok(JsonView(false, groupData.Msg));
  1724. }
  1725. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1726. }
  1727. catch (Exception ex)
  1728. {
  1729. return Ok(JsonView(false, "程序错误!"));
  1730. throw;
  1731. }
  1732. }
  1733. /// <summary>
  1734. /// 机票费用录入列表
  1735. /// </summary>
  1736. /// <param name="dto"></param>
  1737. /// <returns></returns>
  1738. [HttpPost]
  1739. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1740. public async Task<IActionResult> AirTicketResList(AirTicketResDto dto)
  1741. {
  1742. try
  1743. {
  1744. Result groupData = await _airTicketResRep.AirTicketResList(dto);
  1745. if (groupData.Code != 0)
  1746. {
  1747. return Ok(JsonView(false, groupData.Msg));
  1748. }
  1749. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1750. }
  1751. catch (Exception ex)
  1752. {
  1753. return Ok(JsonView(false, ex.Message));
  1754. throw;
  1755. }
  1756. }
  1757. /// <summary>
  1758. /// 根据id查询费用录入信息
  1759. /// </summary>
  1760. /// <param name="dto"></param>
  1761. /// <returns></returns>
  1762. [HttpPost]
  1763. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1764. public async Task<IActionResult> AirTicketResById(AirTicketResByIdDto dto)
  1765. {
  1766. try
  1767. {
  1768. Result groupData = await _airTicketResRep.AirTicketResById(dto);
  1769. if (groupData.Code != 0)
  1770. {
  1771. return Ok(JsonView(false, groupData.Msg));
  1772. }
  1773. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1774. }
  1775. catch (Exception ex)
  1776. {
  1777. return Ok(JsonView(false, "程序错误!"));
  1778. throw;
  1779. }
  1780. }
  1781. /// <summary>
  1782. /// 机票费用录入操作(Status:1.新增,2.修改)
  1783. /// </summary>
  1784. /// <param name="dto"></param>
  1785. /// <returns></returns>
  1786. [HttpPost]
  1787. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1788. public async Task<IActionResult> OpAirTicketRes(AirTicketResOpDto dto)
  1789. {
  1790. try
  1791. {
  1792. Result groupData = await _airTicketResRep.OpAirTicketRes(dto, _setDataRep.PostCurrencyByDiid);
  1793. if (groupData.Code != 0)
  1794. {
  1795. return Ok(JsonView(false, groupData.Msg));
  1796. }
  1797. #region 应用推送
  1798. try
  1799. {
  1800. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  1801. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  1802. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  1803. }
  1804. catch (Exception ex)
  1805. {
  1806. }
  1807. #endregion
  1808. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1809. }
  1810. catch (Exception ex)
  1811. {
  1812. return Ok(JsonView(false, "程序错误!"));
  1813. throw;
  1814. }
  1815. }
  1816. /// <summary>
  1817. /// 根据舱位类型查询接团客户名单信息
  1818. /// </summary>
  1819. /// <param name="dto"></param>
  1820. /// <returns></returns>
  1821. [HttpPost]
  1822. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1823. public async Task<IActionResult> tankType(AirTicketResByIdDto dto)
  1824. {
  1825. try
  1826. {
  1827. List<Crm_GroupCustomer> crm_Groups = _sqlSugar.Queryable<Crm_GroupCustomer>().Where(a => a.IsDel == 0 && a.AirType == dto.Id).ToList();
  1828. if (crm_Groups.Count != 0)
  1829. {
  1830. List<dynamic> Customer = new List<dynamic>();
  1831. foreach (var item in crm_Groups)
  1832. {
  1833. var data = new
  1834. {
  1835. Id = item.Id,
  1836. Pinyin = item.Pinyin,
  1837. Name = item.LastName + item.FirstName
  1838. };
  1839. Customer.Add(data);
  1840. }
  1841. return Ok(JsonView(true, "查询成功!", Customer));
  1842. }
  1843. return Ok(JsonView(true, "暂无数据", crm_Groups));
  1844. }
  1845. catch (Exception ex)
  1846. {
  1847. return Ok(JsonView(false, "程序错误!"));
  1848. throw;
  1849. }
  1850. }
  1851. /// <summary>
  1852. /// 根据团号获取客户信息
  1853. /// </summary>
  1854. /// <param name="dto"></param>
  1855. /// <returns></returns>
  1856. [HttpPost]
  1857. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1858. public IActionResult QueryClientInfoByDIID(QueryClientInfoByDIIDDto dto)
  1859. {
  1860. var jw = JsonView(false);
  1861. if (dto.DIID < 1)
  1862. {
  1863. jw.Msg += "请输入正确的diid";
  1864. return Ok(jw);
  1865. }
  1866. var arr = getSimplClientList(dto.DIID);
  1867. jw = JsonView(true, "获取成功!", arr);
  1868. return Ok(jw);
  1869. }
  1870. private List<SimplClientInfo> getSimplClientList(int diId)
  1871. {
  1872. 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);
  1873. List<SimplClientInfo> arr = _sqlSugar.SqlQueryable<SimplClientInfo>(sql).ToList();
  1874. return arr;
  1875. }
  1876. private string getClientNameStr(List<SimplClientInfo> list, string origin)
  1877. {
  1878. string result = origin;
  1879. if (Regex.Match(origin, @"\d+,?").Value.Length > 0)
  1880. {
  1881. string[] temparr = origin.Split(',');
  1882. string fistrStr = temparr[0];
  1883. int count = temparr.Count();
  1884. int tempId;
  1885. bool success = int.TryParse(fistrStr, out tempId);
  1886. if (success)
  1887. {
  1888. SimplClientInfo tempInfo = list.FirstOrDefault(s => s.Id == tempId);
  1889. if (tempInfo != null)
  1890. {
  1891. if (count > 1)
  1892. {
  1893. result = string.Format(@"{0}{1}等{2}人", tempInfo.LastName, tempInfo.FirstName, count);
  1894. }
  1895. else
  1896. {
  1897. result = string.Format(@"{0}{1}", tempInfo.LastName, tempInfo.FirstName);
  1898. }
  1899. }
  1900. }
  1901. }
  1902. return result;
  1903. }
  1904. /// <summary>
  1905. /// 机票费用录入,删除
  1906. /// </summary>
  1907. /// <param name="dto"></param>
  1908. /// <returns></returns>
  1909. [HttpPost]
  1910. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1911. public async Task<IActionResult> DelAirTicketRes(DelBaseDto dto)
  1912. {
  1913. try
  1914. {
  1915. var res = await _airTicketResRep.SoftDeleteByIdAsync<Grp_AirTicketReservations>(dto.Id.ToString(), dto.DeleteUserId);
  1916. if (res)
  1917. {
  1918. var result = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.CTable == 85).SetColumns(a => new Grp_CreditCardPayment()
  1919. {
  1920. IsDel = 1,
  1921. DeleteUserId = dto.DeleteUserId,
  1922. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  1923. }).ExecuteCommandAsync();
  1924. return Ok(JsonView(true, "删除成功!"));
  1925. }
  1926. return Ok(JsonView(false, "删除失败!"));
  1927. }
  1928. catch (Exception ex)
  1929. {
  1930. return Ok(JsonView(false, "程序错误!"));
  1931. throw;
  1932. }
  1933. }
  1934. /// <summary>
  1935. /// 导出机票录入报表
  1936. /// </summary>
  1937. /// <param name="dto"></param>
  1938. /// <returns></returns>
  1939. [HttpPost]
  1940. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1941. public async Task<IActionResult> DeriveAirTicketRes(AirTicketResDto dto)
  1942. {
  1943. try
  1944. {
  1945. Result groupData = await _airTicketResRep.DeriveAirTicketRes(dto);
  1946. if (groupData.Code != 0)
  1947. {
  1948. return Ok(JsonView(false, groupData.Msg));
  1949. }
  1950. else
  1951. {
  1952. List<AirTicketReservationsPayView> AirTicketReservations = groupData.Data.GetType().GetProperty("AirTicketRes").GetValue(groupData.Data);
  1953. if (AirTicketReservations.Count != 0)
  1954. {
  1955. Grp_DelegationInfo DelegationInfo = groupData.Data.GetType().GetProperty("Delegation").GetValue(groupData.Data);
  1956. Sys_Users _Users = groupData.Data.GetType().GetProperty("Users").GetValue(groupData.Data);
  1957. string diCode = DelegationInfo != null ? DelegationInfo.TourCode : "XXX";
  1958. string diName = DelegationInfo != null ? DelegationInfo.TeamName : "XXX";
  1959. WorkbookDesigner designer = new WorkbookDesigner();
  1960. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/机票预订费用报表模板.xlsx");
  1961. decimal countCost = 0;
  1962. foreach (var item in AirTicketReservations)
  1963. {
  1964. #region 处理客人姓名
  1965. string clientNames = _tourClientListRep._ResolveCustomerName(item.ClientName);
  1966. item.ClientName = clientNames;
  1967. #endregion
  1968. if (item.BankType == "其他")
  1969. {
  1970. item.BankNo = "--";
  1971. }
  1972. else
  1973. {
  1974. if (!string.IsNullOrEmpty(item.BankType))
  1975. {
  1976. item.BankNo = item.BankType + ":" + item.BankNo?.Substring(0, 3);
  1977. }
  1978. }
  1979. item.PrePrice = System.Decimal.Round(item.PrePrice, 2);
  1980. item.Price = System.Decimal.Round(item.Price, 2);
  1981. countCost += Convert.ToDecimal(item.Price);
  1982. }
  1983. designer.SetDataSource("Export", AirTicketReservations);
  1984. designer.SetDataSource("ExportDiCode", diCode);
  1985. designer.SetDataSource("ExportDiName", diName);
  1986. designer.SetDataSource("ExportOpUserName", _Users.CnName);
  1987. designer.SetDataSource("ExportCountCost", countCost + "(" + AirTicketReservations[0].CurrencyStr);
  1988. designer.Process();
  1989. string fileName = ("AirfareStatement/" + diName + "机票费用报表" + "_" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xlsx").Replace(":", "");
  1990. designer.Workbook.Save(AppSettingsHelper.Get("ExcelBasePath") + fileName);
  1991. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  1992. return Ok(JsonView(true, "成功", url = rst));
  1993. }
  1994. else
  1995. {
  1996. return Ok(JsonView(false, "暂无数据!"));
  1997. }
  1998. }
  1999. }
  2000. catch (Exception ex)
  2001. {
  2002. return Ok(JsonView(false, ex.Message));
  2003. throw;
  2004. }
  2005. }
  2006. Dictionary<string, string> transDic = new Dictionary<string, string>();
  2007. /// <summary>
  2008. /// 行程单导出
  2009. /// </summary>
  2010. /// <param name="dto"></param>
  2011. /// <returns></returns>
  2012. [HttpPost]
  2013. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2014. public async Task<IActionResult> ItineraryAirTicketRes(ItineraryAirTicketResDto dto)
  2015. {
  2016. try
  2017. {
  2018. Result groupData = await _airTicketResRep.ItineraryAirTicketRes(dto);
  2019. if (groupData.Code != 0)
  2020. {
  2021. return Ok(JsonView(false, groupData.Msg));
  2022. }
  2023. else
  2024. {
  2025. List<AirTicketReservationsView> _AirTicketReservations = groupData.Data;
  2026. if (dto.Language == "CN")
  2027. {
  2028. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_CN.docx");
  2029. DocumentBuilder builder = new DocumentBuilder(doc);
  2030. int tableIndex = 0;//表格索引
  2031. //得到文档中的第一个表格
  2032. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2033. foreach (var item in _AirTicketReservations)
  2034. {
  2035. #region 处理固定数据
  2036. string[] FlightsCode = item.FlightsCode.Split('/');
  2037. if (FlightsCode.Length != 0)
  2038. {
  2039. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2040. if (_AirCompany != null)
  2041. {
  2042. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2043. }
  2044. else
  2045. {
  2046. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2047. }
  2048. }
  2049. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2050. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2051. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2052. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2053. string name = "";
  2054. foreach (string clientName in nameArray)
  2055. {
  2056. if (!name.Contains(clientName))
  2057. {
  2058. name += clientName + ",";
  2059. }
  2060. }
  2061. if (!string.IsNullOrWhiteSpace(name))
  2062. {
  2063. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2064. }
  2065. else
  2066. {
  2067. table.Range.Bookmarks["ClientName"].Text = "--";
  2068. }
  2069. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2070. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2071. table.Range.Bookmarks["JointTicket"].Text = "--";
  2072. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2073. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2074. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2075. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2076. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2077. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2078. #endregion
  2079. #region 循环数据处理
  2080. List<AirInfo> airs = new List<AirInfo>();
  2081. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2082. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2083. for (int i = 0; i < FlightsCode.Length; i++)
  2084. {
  2085. AirInfo air = new AirInfo();
  2086. string[] tempstr = DayArray[i]
  2087. .Replace("\r\n", string.Empty)
  2088. .Replace("\\r\\n", string.Empty)
  2089. .TrimStart().TrimEnd()
  2090. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2091. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2092. string starCity = "";
  2093. if (star_Three != null)
  2094. {
  2095. starCity = star_Three.AirPort;
  2096. }
  2097. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2098. string EndCity = "";
  2099. if (End_Three != null)
  2100. {
  2101. EndCity = End_Three.AirPort;
  2102. }
  2103. air.Destination = starCity + "/" + EndCity;
  2104. air.Flight = FlightsCode[i];
  2105. air.SeatingClass = item.CTypeName;
  2106. string dateTime = tempstr[2];
  2107. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2108. air.FlightDate = DateTemp;
  2109. air.DepartureTime = tempstr[5];
  2110. air.LandingTime = tempstr[6];
  2111. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2112. air.TicketStatus = "--";
  2113. air.Luggage = "--";
  2114. air.DepartureTerminal = "--";
  2115. air.LandingTerminal = "--";
  2116. airs.Add(air);
  2117. }
  2118. int row = 13;
  2119. for (int i = 0; i < airs.Count; i++)
  2120. {
  2121. if (airs.Count > 2)
  2122. {
  2123. for (int j = 0; j < airs.Count - 2; j++)
  2124. {
  2125. var CopyRow = table.Rows[12].Clone(true);
  2126. table.Rows.Add(CopyRow);
  2127. }
  2128. }
  2129. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2130. int index = 0;
  2131. foreach (PropertyInfo property in properties)
  2132. {
  2133. string value = property.GetValue(airs[i]).ToString();
  2134. Cell ishcel0 = table.Rows[row].Cells[index];
  2135. Paragraph p = new Paragraph(doc);
  2136. string s = value;
  2137. p.AppendChild(new Run(doc, s));
  2138. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2139. ishcel0.AppendChild(p);
  2140. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2141. index++;
  2142. }
  2143. row++;
  2144. }
  2145. #endregion
  2146. Paragraph lastParagraph = new Paragraph(doc);
  2147. //第一个表格末尾加段落
  2148. table.ParentNode.InsertAfter(lastParagraph, table);
  2149. //复制第一个表格
  2150. Table cloneTable = (Table)table.Clone(true);
  2151. //在文档末尾段落后面加入复制的表格
  2152. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2153. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2154. {
  2155. int rownewsIndex = 13;
  2156. for (int i = 0; i < 2; i++)
  2157. {
  2158. var CopyRow = table.Rows[12].Clone(true);
  2159. table.Rows.RemoveAt(13);
  2160. table.Rows.Add(CopyRow);
  2161. rownewsIndex++;
  2162. }
  2163. }
  2164. else
  2165. {
  2166. table.Rows.RemoveAt(12);
  2167. }
  2168. cloneTable.Rows.RemoveAt(12);
  2169. }
  2170. if (_AirTicketReservations.Count != 0)
  2171. {
  2172. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2173. if (FlightsCode.Length != 0)
  2174. {
  2175. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2176. if (_AirCompany != null)
  2177. {
  2178. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2179. }
  2180. else
  2181. {
  2182. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2183. }
  2184. }
  2185. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2186. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2187. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2188. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2189. string name = "";
  2190. foreach (string clientName in nameArray)
  2191. {
  2192. if (!name.Contains(clientName))
  2193. {
  2194. name += clientName + ",";
  2195. }
  2196. }
  2197. if (!string.IsNullOrWhiteSpace(name))
  2198. {
  2199. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2200. }
  2201. else
  2202. {
  2203. table.Range.Bookmarks["ClientName"].Text = "--";
  2204. }
  2205. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2206. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2207. table.Range.Bookmarks["JointTicket"].Text = "--";
  2208. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2209. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2210. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2211. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2212. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2213. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2214. }
  2215. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2216. //保存合并后的文档
  2217. string fileName = "AirItinerary/电子客票中文行程单_CN.docx";
  2218. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2219. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2220. return Ok(JsonView(true, "成功!", rst));
  2221. }
  2222. else
  2223. {
  2224. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_EN.docx");
  2225. DocumentBuilder builder = new DocumentBuilder(doc);
  2226. int tableIndex = 0;//表格索引
  2227. //得到文档中的第一个表格
  2228. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2229. List<string> texts = new List<string>();
  2230. foreach (var item in _AirTicketReservations)
  2231. {
  2232. string[] FlightsCode = item.FlightsCode.Split('/');
  2233. if (FlightsCode.Length != 0)
  2234. {
  2235. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2236. if (_AirCompany != null)
  2237. {
  2238. if (!transDic.ContainsKey(_AirCompany.CnName))
  2239. {
  2240. transDic.Add(_AirCompany.CnName, _AirCompany.EnName);
  2241. }
  2242. }
  2243. else
  2244. {
  2245. if (!transDic.ContainsKey("--"))
  2246. {
  2247. transDic.Add("--", "--");
  2248. }
  2249. }
  2250. }
  2251. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2252. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2253. string name = "";
  2254. foreach (string clientName in nameArray)
  2255. {
  2256. name += clientName + ",";
  2257. }
  2258. if (!texts.Contains(name))
  2259. {
  2260. texts.Add(name);
  2261. }
  2262. List<AirInfo> airs = new List<AirInfo>();
  2263. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2264. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2265. for (int i = 0; i < FlightsCode.Length; i++)
  2266. {
  2267. AirInfo air = new AirInfo();
  2268. string[] tempstr = DayArray[i]
  2269. .Replace("\r\n", string.Empty)
  2270. .Replace("\\r\\n", string.Empty)
  2271. .TrimStart().TrimEnd()
  2272. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2273. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2274. if (star_Three != null)
  2275. {
  2276. if (!transDic.ContainsKey(star_Three.AirPort))
  2277. {
  2278. transDic.Add(star_Three.AirPort, star_Three.AirPort_En);
  2279. }
  2280. }
  2281. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2282. if (End_Three != null)
  2283. {
  2284. if (!transDic.ContainsKey(End_Three.AirPort))
  2285. {
  2286. transDic.Add(End_Three.AirPort, End_Three.AirPort_En);
  2287. }
  2288. }
  2289. if (!texts.Contains(item.CTypeName))
  2290. {
  2291. texts.Add(item.CTypeName);
  2292. }
  2293. }
  2294. }
  2295. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  2296. if (transData.Count > 0)
  2297. {
  2298. foreach (TranslateResult item in transData)
  2299. {
  2300. if (!transDic.ContainsKey(item.Query))
  2301. {
  2302. transDic.Add(item.Query, item.Translation);
  2303. }
  2304. }
  2305. }
  2306. foreach (var item in _AirTicketReservations)
  2307. {
  2308. #region 处理固定数据
  2309. string[] FlightsCode = item.FlightsCode.Split('/');
  2310. if (FlightsCode.Length != 0)
  2311. {
  2312. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2313. if (_AirCompany != null)
  2314. {
  2315. string str = "--";
  2316. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2317. if (!string.IsNullOrEmpty(translateResult))
  2318. {
  2319. str = translateResult;
  2320. str = _airTicketResRep.Processing(str);
  2321. }
  2322. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2323. }
  2324. else
  2325. {
  2326. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2327. }
  2328. }
  2329. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2330. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2331. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2332. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2333. string names = "";
  2334. foreach (string clientName in nameArray)
  2335. {
  2336. names += clientName + ",";
  2337. }
  2338. if (!string.IsNullOrWhiteSpace(names))
  2339. {
  2340. string str = "--";
  2341. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2342. if (!string.IsNullOrEmpty(translateResult))
  2343. {
  2344. str = translateResult;
  2345. str = _airTicketResRep.Processing(str);
  2346. }
  2347. table.Range.Bookmarks["ClientName"].Text = str;
  2348. }
  2349. else
  2350. {
  2351. table.Range.Bookmarks["ClientName"].Text = "--";
  2352. }
  2353. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2354. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2355. table.Range.Bookmarks["JointTicket"].Text = "--";
  2356. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2357. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2358. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2359. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2360. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2361. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2362. #endregion
  2363. #region 循环数据处理
  2364. List<AirInfo> airs = new List<AirInfo>();
  2365. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2366. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2367. for (int i = 0; i < FlightsCode.Length; i++)
  2368. {
  2369. AirInfo air = new AirInfo();
  2370. string[] tempstr = DayArray[i]
  2371. .Replace("\r\n", string.Empty)
  2372. .Replace("\\r\\n", string.Empty)
  2373. .TrimStart().TrimEnd()
  2374. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2375. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2376. string starCity = "";
  2377. if (star_Three != null)
  2378. {
  2379. string str2 = "--";
  2380. string translateResult2 = transDic.Where(s => s.Key == star_Three.AirPort).FirstOrDefault().Value;
  2381. if (!string.IsNullOrEmpty(translateResult2))
  2382. {
  2383. str2 = translateResult2;
  2384. str2 = _airTicketResRep.Processing(str2);
  2385. }
  2386. starCity = str2;
  2387. }
  2388. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2389. string EndCity = "";
  2390. if (End_Three != null)
  2391. {
  2392. string str1 = "--";
  2393. string translateResult1 = transDic.Where(s => s.Key == End_Three.AirPort).FirstOrDefault().Value;
  2394. if (!string.IsNullOrEmpty(translateResult1))
  2395. {
  2396. str1 = translateResult1;
  2397. str1 = _airTicketResRep.Processing(str1);
  2398. }
  2399. EndCity = str1;
  2400. }
  2401. air.Destination = starCity + "/" + EndCity;
  2402. air.Flight = FlightsCode[i];
  2403. string str = "--";
  2404. string translateResult = transDic.Where(s => s.Key == item.CTypeName).FirstOrDefault().Value;
  2405. if (!string.IsNullOrEmpty(translateResult))
  2406. {
  2407. str = translateResult;
  2408. str = _airTicketResRep.Processing(str);
  2409. }
  2410. air.SeatingClass = str;
  2411. string dateTime = tempstr[2];
  2412. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2413. air.FlightDate = DateTemp;
  2414. air.DepartureTime = tempstr[5];
  2415. air.LandingTime = tempstr[6];
  2416. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2417. air.TicketStatus = "--";
  2418. air.Luggage = "--";
  2419. air.DepartureTerminal = "--";
  2420. air.LandingTerminal = "--";
  2421. airs.Add(air);
  2422. }
  2423. int row = 13;
  2424. for (int i = 0; i < airs.Count; i++)
  2425. {
  2426. if (airs.Count > 2)
  2427. {
  2428. for (int j = 0; j < airs.Count - 2; j++)
  2429. {
  2430. var CopyRow = table.Rows[12].Clone(true);
  2431. table.Rows.Add(CopyRow);
  2432. }
  2433. }
  2434. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2435. int index = 0;
  2436. foreach (PropertyInfo property in properties)
  2437. {
  2438. string value = property.GetValue(airs[i]).ToString();
  2439. Cell ishcel0 = table.Rows[row].Cells[index];
  2440. Paragraph p = new Paragraph(doc);
  2441. string s = value;
  2442. p.AppendChild(new Run(doc, s));
  2443. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2444. ishcel0.AppendChild(p);
  2445. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2446. //ishcel0.CellFormat.VerticalAlignment=
  2447. index++;
  2448. }
  2449. row++;
  2450. }
  2451. #endregion
  2452. Paragraph lastParagraph = new Paragraph(doc);
  2453. //第一个表格末尾加段落
  2454. table.ParentNode.InsertAfter(lastParagraph, table);
  2455. //复制第一个表格
  2456. Table cloneTable = (Table)table.Clone(true);
  2457. //在文档末尾段落后面加入复制的表格
  2458. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2459. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2460. {
  2461. int rownewsIndex = 13;
  2462. for (int i = 0; i < 2; i++)
  2463. {
  2464. var CopyRow = table.Rows[12].Clone(true);
  2465. table.Rows.RemoveAt(13);
  2466. table.Rows.Add(CopyRow);
  2467. rownewsIndex++;
  2468. }
  2469. }
  2470. else
  2471. {
  2472. table.Rows.RemoveAt(12);
  2473. }
  2474. cloneTable.Rows.RemoveAt(12);
  2475. }
  2476. if (_AirTicketReservations.Count != 0)
  2477. {
  2478. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2479. if (FlightsCode.Length != 0)
  2480. {
  2481. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2482. if (_AirCompany != null)
  2483. {
  2484. string str = "--";
  2485. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2486. if (!string.IsNullOrEmpty(translateResult))
  2487. {
  2488. str = translateResult;
  2489. str = _airTicketResRep.Processing(str);
  2490. }
  2491. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2492. }
  2493. else
  2494. {
  2495. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2496. }
  2497. }
  2498. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2499. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2500. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2501. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2502. string names = "";
  2503. foreach (string clientName in nameArray)
  2504. {
  2505. names += clientName + ",";
  2506. }
  2507. if (!string.IsNullOrWhiteSpace(names))
  2508. {
  2509. string str = "--";
  2510. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2511. if (!string.IsNullOrEmpty(translateResult))
  2512. {
  2513. str = translateResult;
  2514. str = _airTicketResRep.Processing(str);
  2515. }
  2516. table.Range.Bookmarks["ClientName"].Text = str;
  2517. }
  2518. else
  2519. {
  2520. table.Range.Bookmarks["ClientName"].Text = "--";
  2521. }
  2522. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2523. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2524. table.Range.Bookmarks["JointTicket"].Text = "--";
  2525. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2526. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2527. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2528. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2529. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2530. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2531. }
  2532. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2533. //保存合并后的文档
  2534. string fileName = "AirItinerary/电子客票英文行程单_EN.docx";
  2535. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2536. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2537. return Ok(JsonView(true, "成功!", rst));
  2538. }
  2539. }
  2540. }
  2541. catch (Exception ex)
  2542. {
  2543. return Ok(JsonView(false, "程序错误!"));
  2544. throw;
  2545. }
  2546. }
  2547. #endregion
  2548. #region 团组增减款项 --> 其他款项
  2549. /// <summary>
  2550. /// 团组增减款项下拉框绑定
  2551. /// </summary>
  2552. /// <param name="dto"></param>
  2553. /// <returns></returns>
  2554. [HttpPost]
  2555. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2556. public async Task<IActionResult> DecreasePaymentsSelect(DecreasePaymentsDto dto)
  2557. {
  2558. try
  2559. {
  2560. #region 参数验证
  2561. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2562. if (dto.CTId < 1) return Ok(JsonView(false, "请传入有效的CTId参数!"));
  2563. #endregion
  2564. //var groupData = await GeneralMethod.PostOperationAuthReturnGroupInfosAsync(dto.UserId, dto.CTId);
  2565. ////支付方式
  2566. //List<Sys_SetData> Payment = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 14 && a.IsDel == 0).ToList();
  2567. //List<SetDataInfoView> _Payment = _mapper.Map<List<SetDataInfoView>>(Payment);
  2568. //var data = new
  2569. //{
  2570. // Payment = _Payment,
  2571. // GroupName = groupData,
  2572. //};
  2573. var res = await _decreasePaymentsRep.DecreasePaymentsSelect(dto);
  2574. if (res.Code != 0)
  2575. {
  2576. return Ok(JsonView(false, res.Msg));
  2577. }
  2578. return Ok(JsonView(true, "操作成功!", res.Data));
  2579. }
  2580. catch (Exception ex)
  2581. {
  2582. return Ok(JsonView(false, ex.Message));
  2583. }
  2584. }
  2585. /// <summary>
  2586. /// 根据团组Id查询团组增减款项
  2587. /// </summary>
  2588. /// <param name="dto"></param>
  2589. /// <returns></returns>
  2590. [HttpPost]
  2591. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2592. public async Task<IActionResult> DecreasePaymentsList(DecreasePaymentsListDto dto)
  2593. {
  2594. try
  2595. {
  2596. #region 参数验证
  2597. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2598. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  2599. #endregion
  2600. Result groupData = await _decreasePaymentsRep.DecreasePaymentsList(dto);
  2601. if (groupData.Code != 0)
  2602. {
  2603. return Ok(JsonView(false, groupData.Msg));
  2604. }
  2605. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2606. }
  2607. catch (Exception ex)
  2608. {
  2609. return Ok(JsonView(false, "程序错误!"));
  2610. }
  2611. }
  2612. /// <summary>
  2613. /// 团组增减款项操作(Status:1.新增,2.修改)
  2614. /// </summary>
  2615. /// <param name="dto"></param>
  2616. /// <returns></returns>
  2617. [HttpPost]
  2618. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2619. public async Task<IActionResult> OpDecreasePayments(DecreasePaymentsOpDto dto)
  2620. {
  2621. try
  2622. {
  2623. Result groupData = await _decreasePaymentsRep.OpDecreasePayments(dto);
  2624. if (groupData.Code != 0)
  2625. {
  2626. return Ok(JsonView(false, groupData.Msg));
  2627. }
  2628. #region 应用推送
  2629. try
  2630. {
  2631. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2632. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2633. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2634. }
  2635. catch (Exception ex)
  2636. {
  2637. }
  2638. #endregion
  2639. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2640. }
  2641. catch (Exception ex)
  2642. {
  2643. return Ok(JsonView(false, "程序错误!"));
  2644. throw;
  2645. }
  2646. }
  2647. /// <summary>
  2648. /// 团组增减款项操作 删除
  2649. /// </summary>
  2650. /// <param name="dto"></param>
  2651. /// <returns></returns>
  2652. [HttpPost]
  2653. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2654. public async Task<IActionResult> DelDecreasePayments(DelBaseDto dto)
  2655. {
  2656. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  2657. if (dto.DeleteUserId < 1) return Ok(JsonView(false, "请传入有效的DeleteUserId参数!"));
  2658. var res = await _decreasePaymentsRep._Del(dto.Id, dto.DeleteUserId);
  2659. if (res.Code == 0)
  2660. {
  2661. return Ok(JsonView(true, "删除成功!"));
  2662. }
  2663. return Ok(JsonView(false, "删除失败!"));
  2664. }
  2665. /// <summary>
  2666. /// 根据团组增减款项Id查询
  2667. /// </summary>
  2668. /// <param name="dto"></param>
  2669. /// <returns></returns>
  2670. [HttpPost]
  2671. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2672. public async Task<IActionResult> QueryDecreasePaymentsById(DecreasePaymentsByIdDto dto)
  2673. {
  2674. try
  2675. {
  2676. Result groupData = await _decreasePaymentsRep.QueryDecreasePaymentsById(dto);
  2677. if (groupData.Code != 0)
  2678. {
  2679. return Ok(JsonView(false, groupData.Msg));
  2680. }
  2681. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2682. }
  2683. catch (Exception ex)
  2684. {
  2685. return Ok(JsonView(false, "程序错误!"));
  2686. throw;
  2687. }
  2688. }
  2689. #endregion
  2690. #region 文件上传、删除
  2691. /// <summary>
  2692. /// region 文件上传 可以带参数
  2693. /// </summary>
  2694. /// <param name="file"></param>
  2695. /// <returns></returns>
  2696. [HttpPost]
  2697. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2698. public async Task<IActionResult> UploadProject(IFormFile file)
  2699. {
  2700. try
  2701. {
  2702. var TypeName = Request.Headers["TypeName"].ToString();
  2703. if (file != null)
  2704. {
  2705. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2706. //文件名称
  2707. string projectFileName = file.FileName;
  2708. //上传的文件的路径
  2709. string filePath = "";
  2710. if (TypeName == "A")//A代表团组增减款项
  2711. {
  2712. if (!Directory.Exists(fileDir))
  2713. {
  2714. Directory.CreateDirectory(fileDir);
  2715. }
  2716. //上传的文件的路径
  2717. filePath = fileDir + $@"\团组增减款项相关文件\{projectFileName}";
  2718. }
  2719. else if (TypeName == "B")//B代表商邀相关文件
  2720. {
  2721. if (!Directory.Exists(fileDir))
  2722. {
  2723. Directory.CreateDirectory(fileDir);
  2724. }
  2725. //上传的文件的路径
  2726. filePath = fileDir + $@"\商邀相关文件\{projectFileName}";
  2727. }
  2728. using (FileStream fs = System.IO.File.Create(filePath))
  2729. {
  2730. file.CopyTo(fs);
  2731. fs.Flush();
  2732. }
  2733. return Ok(JsonView(true, "上传成功!", projectFileName));
  2734. }
  2735. else
  2736. {
  2737. return Ok(JsonView(false, "上传失败!"));
  2738. }
  2739. }
  2740. catch (Exception ex)
  2741. {
  2742. return Ok(JsonView(false, "程序错误!"));
  2743. throw;
  2744. }
  2745. }
  2746. /// <summary>
  2747. /// 删除指定文件
  2748. /// </summary>
  2749. /// <param name="dto"></param>
  2750. /// <returns></returns>
  2751. [HttpPost]
  2752. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2753. public async Task<IActionResult> DelFile(DelFileDto dto)
  2754. {
  2755. try
  2756. {
  2757. var TypeName = Request.Headers["TypeName"].ToString();
  2758. string filePath = "";
  2759. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2760. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  2761. int id = 0;
  2762. if (TypeName == "A")
  2763. {
  2764. filePath = fileDir + "/团组增减款项相关文件/" + dto.fileName;
  2765. // 删除该文件
  2766. System.IO.File.Delete(filePath);
  2767. id = await _sqlSugar.Updateable<Grp_DecreasePayments>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_DecreasePayments { FilePath = "" }).ExecuteCommandAsync();
  2768. }
  2769. else if (TypeName == "B")
  2770. {
  2771. filePath = fileDir + "/商邀相关文件/" + dto.fileName;
  2772. // 删除该文件
  2773. System.IO.File.Delete(filePath);
  2774. id = await _sqlSugar.Updateable<Grp_InvitationOfficialActivities>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_InvitationOfficialActivities { Attachment = "" }).ExecuteCommandAsync();
  2775. }
  2776. if (id != 0)
  2777. {
  2778. return Ok(JsonView(true, "成功!"));
  2779. }
  2780. else
  2781. {
  2782. return Ok(JsonView(false, "失败!"));
  2783. }
  2784. }
  2785. catch (Exception ex)
  2786. {
  2787. return Ok(JsonView(false, "程序错误!"));
  2788. throw;
  2789. }
  2790. }
  2791. #endregion
  2792. #region 商邀费用录入
  2793. /// <summary>
  2794. /// 根据团组Id查询商邀费用列表
  2795. /// </summary>
  2796. /// <param name="dto"></param>
  2797. /// <returns></returns>
  2798. [HttpPost]
  2799. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2800. public async Task<IActionResult> InvitationOfficialActivitiesList(InvitationOfficialActivitiesListDto dto)
  2801. {
  2802. try
  2803. {
  2804. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesList(dto);
  2805. if (groupData.Code != 0)
  2806. {
  2807. return Ok(JsonView(false, groupData.Msg));
  2808. }
  2809. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2810. }
  2811. catch (Exception ex)
  2812. {
  2813. return Ok(JsonView(false, "程序错误!"));
  2814. throw;
  2815. }
  2816. }
  2817. //
  2818. /// <summary>
  2819. /// 商邀费用 Info Page 基础数据源
  2820. /// </summary>
  2821. /// <param name="dto"></param>
  2822. /// <returns></returns>
  2823. [HttpPost]
  2824. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2825. public async Task<IActionResult> InvitationOfficialActivityInitBasicData()
  2826. {
  2827. try
  2828. {
  2829. Result groupData = await _InvitationOfficialActivitiesRep._InitBasicData();
  2830. if (groupData.Code != 0)
  2831. {
  2832. return Ok(JsonView(false, groupData.Msg));
  2833. }
  2834. return Ok(JsonView(true, "操作成功", groupData.Data));
  2835. }
  2836. catch (Exception ex)
  2837. {
  2838. return Ok(JsonView(false, ex.Message));
  2839. throw;
  2840. }
  2841. }
  2842. /// <summary>
  2843. /// 根据商邀费用ID查询C表和商邀费用数据
  2844. /// </summary>
  2845. /// <param name="dto"></param>
  2846. /// <returns></returns>
  2847. [HttpPost]
  2848. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2849. public async Task<IActionResult> InvitationOfficialActivitiesById(InvitationOfficialActivitiesByIdDto dto)
  2850. {
  2851. try
  2852. {
  2853. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesById(dto);
  2854. if (groupData.Code != 0)
  2855. {
  2856. return Ok(JsonView(false, groupData.Msg));
  2857. }
  2858. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2859. }
  2860. catch (Exception ex)
  2861. {
  2862. return Ok(JsonView(false, ex.Message));
  2863. throw;
  2864. }
  2865. }
  2866. /// <summary>
  2867. /// 商邀费用录入操作(Status:1.新增,2.修改)
  2868. /// </summary>
  2869. /// <param name="dto"></param>
  2870. /// <returns></returns>
  2871. [HttpPost]
  2872. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2873. public async Task<IActionResult> OpInvitationOfficialActivities(OpInvitationOfficialActivitiesDto dto)
  2874. {
  2875. try
  2876. {
  2877. Result groupData = await _InvitationOfficialActivitiesRep.OpInvitationOfficialActivities(dto, _setDataRep.PostCurrencyByDiid);
  2878. if (groupData.Code != 0)
  2879. {
  2880. return Ok(JsonView(false, groupData.Msg));
  2881. }
  2882. #region 应用推送
  2883. try
  2884. {
  2885. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2886. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2887. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2888. }
  2889. catch (Exception ex)
  2890. {
  2891. }
  2892. #endregion
  2893. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2894. }
  2895. catch (Exception ex)
  2896. {
  2897. return Ok(JsonView(false, "程序错误!"));
  2898. throw;
  2899. }
  2900. }
  2901. /// <summary>
  2902. /// 商邀删除
  2903. /// </summary>
  2904. /// <param name="dto"></param>
  2905. /// <returns></returns>
  2906. [HttpPost]
  2907. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2908. public async Task<IActionResult> DelInvitationOfficialActivities(DelBaseDto dto)
  2909. {
  2910. try
  2911. {
  2912. _sqlSugar.BeginTran();
  2913. var res1 = _sqlSugar.Updateable<Grp_InvitationOfficialActivities>()
  2914. .SetColumns(it => new Grp_InvitationOfficialActivities()
  2915. {
  2916. IsDel = 1,
  2917. DeleteUserId = dto.DeleteUserId,
  2918. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  2919. })
  2920. .Where(it => it.Id == dto.Id)
  2921. .ExecuteCommand();
  2922. if (res1 > 0)
  2923. {
  2924. int _diId = 0;
  2925. var _ioaInfo = _sqlSugar.Queryable<Grp_InvitationOfficialActivities>().Where(it => it.Id == dto.Id).First();
  2926. if (_ioaInfo != null)
  2927. {
  2928. _diId = _ioaInfo.DiId;
  2929. }
  2930. var res2 = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  2931. .SetColumns(a => new Grp_CreditCardPayment()
  2932. {
  2933. IsDel = 1,
  2934. DeleteUserId = dto.DeleteUserId,
  2935. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  2936. })
  2937. .Where(a => a.CId == dto.Id && a.DIId == _diId && a.CTable == 81)
  2938. .ExecuteCommand();
  2939. if (res2 > 0)
  2940. {
  2941. _sqlSugar.CommitTran();
  2942. return Ok(JsonView(true, "删除成功!"));
  2943. }
  2944. }
  2945. _sqlSugar.RollbackTran();
  2946. return Ok(JsonView(false, "删除失败"));
  2947. }
  2948. catch (Exception ex)
  2949. {
  2950. _sqlSugar.RollbackTran();
  2951. return Ok(JsonView(false, ex.Message));
  2952. }
  2953. }
  2954. #endregion
  2955. #region 团组英文资料
  2956. /// <summary>
  2957. /// 查询团组英文所有资料
  2958. /// </summary>
  2959. /// <param name="dto"></param>
  2960. /// <returns></returns>
  2961. [HttpPost]
  2962. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2963. public async Task<IActionResult> QueryDelegationEnData(QueryDelegationEnDataDto dto)
  2964. {
  2965. try
  2966. {
  2967. Result groupData = await _delegationEnDataRep.QueryDelegationEnData(dto);
  2968. if (groupData.Code != 0)
  2969. {
  2970. return Ok(JsonView(false, groupData.Msg));
  2971. }
  2972. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2973. }
  2974. catch (Exception ex)
  2975. {
  2976. return Ok(JsonView(false, "程序错误!"));
  2977. throw;
  2978. }
  2979. }
  2980. /// <summary>
  2981. /// 团组英文资料操作(Status:1.新增,2.修改)
  2982. /// </summary>
  2983. /// <param name="dto"></param>
  2984. /// <returns></returns>
  2985. [HttpPost]
  2986. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2987. public async Task<IActionResult> OpDelegationEnData(OpDelegationEnDataDto dto)
  2988. {
  2989. try
  2990. {
  2991. Result groupData = await _delegationEnDataRep.OpDelegationEnData(dto);
  2992. if (groupData.Code != 0)
  2993. {
  2994. return Ok(JsonView(false, groupData.Msg));
  2995. }
  2996. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2997. }
  2998. catch (Exception ex)
  2999. {
  3000. return Ok(JsonView(false, "程序错误!"));
  3001. throw;
  3002. }
  3003. }
  3004. /// <summary>
  3005. /// 团组英文资料Id查询数据
  3006. /// </summary>
  3007. /// <param name="dto"></param>
  3008. /// <returns></returns>
  3009. [HttpPost]
  3010. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3011. public async Task<IActionResult> QueryDelegationEnDataById(QueryDelegationEnDataByIdDto dto)
  3012. {
  3013. try
  3014. {
  3015. Grp_DelegationEnData _DelegationEnData = await _sqlSugar.Queryable<Grp_DelegationEnData>().FirstAsync(it => it.Id == dto.Id && it.IsDel == 0);
  3016. if (_DelegationEnData != null)
  3017. {
  3018. return Ok(JsonView(true, "查询成功!", _DelegationEnData));
  3019. }
  3020. return Ok(JsonView(true, "暂无数据!", _DelegationEnData));
  3021. }
  3022. catch (Exception ex)
  3023. {
  3024. return Ok(JsonView(false, "程序错误!"));
  3025. throw;
  3026. }
  3027. }
  3028. /// <summary>
  3029. /// 团组英文资料删除
  3030. /// </summary>
  3031. /// <param name="dto"></param>
  3032. /// <returns></returns>
  3033. [HttpPost]
  3034. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3035. public async Task<IActionResult> DelDelegationEnData(DelBaseDto dto)
  3036. {
  3037. try
  3038. {
  3039. var res = await _delegationEnDataRep.SoftDeleteByIdAsync<Grp_DelegationEnData>(dto.Id.ToString(), dto.DeleteUserId);
  3040. if (!res)
  3041. {
  3042. return Ok(JsonView(false, "删除失败"));
  3043. }
  3044. return Ok(JsonView(true, "删除成功!"));
  3045. }
  3046. catch (Exception ex)
  3047. {
  3048. return Ok(JsonView(false, "程序错误!"));
  3049. throw;
  3050. }
  3051. }
  3052. #endregion
  3053. #region 导出邀请函
  3054. /// <summary>
  3055. /// 导出邀请函页面初始化
  3056. /// </summary>
  3057. /// <param name="dto"></param>
  3058. /// <returns></returns>
  3059. [HttpPost]
  3060. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3061. public async Task<IActionResult> QueryinvitationLetter(DecreasePaymentsListDto dto)
  3062. {
  3063. try
  3064. {
  3065. List<Grp_DelegationInfo> grp_Delegations = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(a => a.IsDel == 0).OrderBy(a => a.Id, OrderByType.Desc).ToList();
  3066. List<Crm_DeleClient> crm_Deles = new List<Crm_DeleClient>();
  3067. if (dto.DiId == 0)
  3068. {
  3069. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == grp_Delegations[0].Id && a.IsDel == 0).ToListAsync();
  3070. }
  3071. else
  3072. {
  3073. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == dto.DiId && a.IsDel == 0).ToListAsync();
  3074. }
  3075. return Ok(JsonView(true, "查询成功!", new
  3076. {
  3077. deleClient = crm_Deles,
  3078. delegations = grp_Delegations
  3079. }));
  3080. }
  3081. catch (Exception ex)
  3082. {
  3083. return Ok(JsonView(false, "程序错误!"));
  3084. throw;
  3085. }
  3086. }
  3087. /// <summary>
  3088. /// 导出邀请函
  3089. /// </summary>
  3090. /// <param name="dto"></param>
  3091. /// <returns></returns>
  3092. [HttpPost]
  3093. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3094. public async Task<IActionResult> invitationLetter(DecreasePaymentsListDto dto)
  3095. {
  3096. #region 参数验证
  3097. //if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  3098. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  3099. #endregion
  3100. try
  3101. {
  3102. Dictionary<string, string> transDic = new Dictionary<string, string>();
  3103. string sql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  3104. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  3105. From Grp_TourClientList tcl
  3106. Left Join
  3107. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  3108. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  3109. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  3110. From Crm_DeleClient dc
  3111. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  3112. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  3113. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  3114. Where dc.IsDel = 0) temp
  3115. On temp.DcId =tcl.ClientId
  3116. Where tcl.IsDel = 0 And tcl.DiId = {0}", dto.DiId);
  3117. var datas = _sqlSugar.SqlQueryable<TourClientListDetailsView>(sql).ToList();
  3118. List<string> texts = new List<string>();
  3119. if (datas.Count != 0)
  3120. {
  3121. foreach (TourClientListDetailsView item in datas)
  3122. {
  3123. if (!string.IsNullOrWhiteSpace(item.Pinyin))
  3124. {
  3125. transDic.Add(item.LastName + item.FirstName, item.Pinyin);
  3126. }
  3127. else
  3128. {
  3129. string name = item.LastName + item.FirstName;
  3130. texts.Add(name);
  3131. }
  3132. if (!string.IsNullOrEmpty(item.Job) && !texts.Contains(item.Job))
  3133. {
  3134. if (!transDic.ContainsKey(item.Job))
  3135. {
  3136. texts.Add(item.Job);
  3137. }
  3138. }
  3139. if (!string.IsNullOrEmpty(item.CompanyFullName))
  3140. {
  3141. texts.Add(item.CompanyFullName);
  3142. }
  3143. }
  3144. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  3145. if (transData.Count > 0)
  3146. {
  3147. foreach (TranslateResult item in transData)
  3148. {
  3149. if (!transDic.ContainsKey(item.Query))
  3150. {
  3151. transDic.Add(item.Query, item.Translation);
  3152. }
  3153. }
  3154. }
  3155. List<GuestList> list = new List<GuestList>();
  3156. foreach (TourClientListDetailsView dele in datas)
  3157. {
  3158. GuestList guestList = new GuestList();
  3159. if (!string.IsNullOrWhiteSpace(dele.Pinyin))
  3160. {
  3161. guestList.Name = dele.Pinyin;
  3162. }
  3163. else
  3164. {
  3165. string Name = transDic.Where(s => s.Key == dele.LastName + dele.FirstName).FirstOrDefault().Value;
  3166. guestList.Name = Name;
  3167. }
  3168. if (dele.Sex == 0)
  3169. {
  3170. guestList.Sex = "Male";
  3171. }
  3172. else if (dele.Sex == 1)
  3173. {
  3174. guestList.Sex = "Female";
  3175. }
  3176. guestList.DOB = dele.BirthDay.Replace('-', '.');
  3177. if (!string.IsNullOrEmpty(dele.Job))
  3178. {
  3179. guestList.Job = dele.Job;
  3180. }
  3181. list.Add(guestList);
  3182. }
  3183. //载入模板
  3184. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/邀请函模板0210.docx");
  3185. DocumentBuilder builder = new DocumentBuilder(doc);
  3186. //获取word里所有表格
  3187. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3188. //获取所填表格的序数
  3189. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  3190. var rowStart = tableOne.Rows[0]; //获取第1行
  3191. //循环赋值
  3192. for (int i = 0; i < list.Count; i++)
  3193. {
  3194. builder.MoveToCell(0, i + 1, 0, 0);
  3195. builder.Write(list[i].Name.ToString());
  3196. builder.MoveToCell(0, i + 1, 1, 0);
  3197. builder.Write(list[i].Sex.ToString());
  3198. builder.MoveToCell(0, i + 1, 2, 0);
  3199. builder.Write(list[i].DOB.ToString());
  3200. builder.MoveToCell(0, i + 1, 3, 0);
  3201. builder.Write(list[i].Job.ToString());
  3202. }
  3203. //删除多余行
  3204. while (tableOne.Rows.Count > list.Count + 1)
  3205. {
  3206. tableOne.Rows.RemoveAt(list.Count + 1);
  3207. }
  3208. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  3209. string fileName = "邀请函" + DateTime.Now.ToString("yyyy-MM-dd") + ".docx";
  3210. string filePath = fileDir + $@"商邀相关文件/{fileName}";
  3211. doc.Save(filePath);
  3212. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/GrpFile/商邀相关文件/" + fileName;
  3213. return Ok(JsonView(true, "操作成功!", Url));
  3214. }
  3215. else
  3216. {
  3217. return Ok(JsonView(false, "该团组客户名单暂未录入!"));
  3218. }
  3219. }
  3220. catch (Exception ex)
  3221. {
  3222. return Ok(JsonView(false, ex.Message));
  3223. throw;
  3224. }
  3225. }
  3226. #endregion
  3227. #region 团组经理模块 出入境费用
  3228. ///// <summary>
  3229. ///// 团组模块 - 出入境费用
  3230. ///// </summary>
  3231. ///// <returns></returns>
  3232. //[HttpPost]
  3233. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3234. //public async Task<IActionResult> SetEnterExitCostCurrencyChange()
  3235. //{
  3236. // try
  3237. // {
  3238. // var data = await _enterExitCostRep.SetEnterExitCostCurrencyChange();
  3239. // if (data.Code != 0)
  3240. // {
  3241. // return Ok(JsonView(false, data.Msg));
  3242. // }
  3243. // return Ok(JsonView(true, "查询成功!"));
  3244. // }
  3245. // catch (Exception ex)
  3246. // {
  3247. // return Ok(JsonView(false, ex.Message));
  3248. // throw;
  3249. // }
  3250. //}
  3251. /// <summary>
  3252. /// 团组模块 - 出入境费用 - 子项 地区更改为 nationalTravelFee 的id
  3253. /// </summary>
  3254. /// <returns></returns>
  3255. [HttpPost]
  3256. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3257. public async Task<IActionResult> SetDayAndCostAreaChange()
  3258. {
  3259. try
  3260. {
  3261. var nationalTravelFee = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  3262. var dayAndCost = await _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0).ToListAsync();
  3263. var unite = dayAndCost.Where(a => nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //交集
  3264. var merge = dayAndCost.Where(a => !nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //差集
  3265. foreach (var item in unite) //处理交集数据
  3266. {
  3267. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault().Id;
  3268. }
  3269. foreach (var item in merge) //处理差集数据
  3270. {
  3271. int nationalTravelFeeId = 0;
  3272. var cityData = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault();
  3273. if (cityData != null) nationalTravelFeeId = cityData.Id;
  3274. else
  3275. {
  3276. var countryData = nationalTravelFee.Where(it => it.Country.Trim() == item.Place.Trim()).FirstOrDefault();
  3277. if (countryData != null) nationalTravelFeeId = countryData.Id;
  3278. }
  3279. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFeeId;
  3280. }
  3281. //只更新dayAndCost 的 nationalTravelFeeId;
  3282. var result = _sqlSugar.Updateable(dayAndCost).UpdateColumns(it => new { it.NationalTravelFeeId }).ExecuteCommand();
  3283. if (result > 0) return Ok(JsonView(true, "nationalTravelFeeId列更新成功!"));
  3284. else return Ok(JsonView(false, "nationalTravelFeeId列更新失败!"));
  3285. }
  3286. catch (Exception ex)
  3287. {
  3288. return Ok(JsonView(false, ex.Message));
  3289. throw;
  3290. }
  3291. }
  3292. /// <summary>
  3293. /// 团组模块 - 出入境费用 - 基础数据源(团组名称/币种类型)
  3294. /// </summary>
  3295. /// <returns></returns>
  3296. [HttpPost]
  3297. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3298. public async Task<IActionResult> GetEnterExitCostDataSource(PortDtoBase dto)
  3299. {
  3300. try
  3301. {
  3302. var groupNameData = await _groupRepository.GetGroupNameList(new GroupNameDto { PortType = dto.PortType });
  3303. string sql = string.Format("Select * From Sys_SetData Where IsDel = 0");
  3304. //SetDataInfoView
  3305. var dataSource = await _sqlSugar.SqlQueryable<Sys_SetData>(sql).ToListAsync();
  3306. var currencyData = dataSource.Where(it => it.STid == 66).ToList(); //所有币种
  3307. List<SetDataInfoView> _CurrencyData = _mapper.Map<List<SetDataInfoView>>(currencyData);
  3308. var wordTypeData = dataSource.Where(it => it.STid == 72).ToList(); //三公费用-Word明细类型
  3309. List<SetDataInfoView> _WordTypeData = _mapper.Map<List<SetDataInfoView>>(wordTypeData);
  3310. var excelTypeData = dataSource.Where(it => it.STid == 73).ToList(); //三公费用-Excel明细类型
  3311. List<SetDataInfoView> _ExcelTypeData = _mapper.Map<List<SetDataInfoView>>(excelTypeData);
  3312. //默认币种显示
  3313. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3314. {
  3315. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 0.0000M },
  3316. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 0.0000M },
  3317. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 0.0000M },
  3318. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0000M },
  3319. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.0000M },
  3320. };
  3321. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3322. if (_currencyRate.Count > 0)
  3323. {
  3324. foreach (var item in _currencyInfos)
  3325. {
  3326. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3327. if (rateInfo != null)
  3328. {
  3329. item.Rate = Convert.ToDecimal(rateInfo.FSellPri) / 100.00M;
  3330. }
  3331. }
  3332. }
  3333. return Ok(JsonView(true, "查询成功!", new
  3334. {
  3335. GroupNameData = groupNameData.Data,
  3336. CurrencyData = _CurrencyData,
  3337. WordTypeData = _WordTypeData,
  3338. ExcelTypeData = _ExcelTypeData,
  3339. CurrencyInit = _currencyInfos
  3340. }));
  3341. }
  3342. catch (Exception ex)
  3343. {
  3344. return Ok(JsonView(false, ex.Message));
  3345. throw;
  3346. }
  3347. }
  3348. /// <summary>
  3349. /// 团组模块 - 出入境费用
  3350. /// 实时汇率 tips
  3351. /// 签证费用 tips
  3352. /// </summary>
  3353. /// <returns></returns>
  3354. [HttpPost]
  3355. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3356. public async Task<IActionResult> GetEnterExitCostCorrelationTips(EnterExitCostInfobyDiIdDto dto)
  3357. {
  3358. var groupInfo = await _sqlSugar.Queryable<Grp_DelegationInfo>().FirstAsync(it => it.Id == dto.DiId && it.IsDel == 0);
  3359. //默认币种显示
  3360. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3361. {
  3362. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 0.0000M },
  3363. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 0.0000M },
  3364. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 0.0000M },
  3365. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0000M },
  3366. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.0000M },
  3367. };
  3368. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3369. List<dynamic> reteInfos = new List<dynamic>();
  3370. if (_currencyRate.Count > 0)
  3371. {
  3372. foreach (var item in _currencyInfos)
  3373. {
  3374. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3375. if (rateInfo != null)
  3376. {
  3377. item.Rate = Convert.ToDecimal((Convert.ToDecimal(rateInfo.FSellPri == null ? 0.00M : rateInfo.FSellPri) / 100.00M).ToString("#0.0000"));
  3378. reteInfos.Add(new
  3379. {
  3380. currCode = item.CurrencyCode,
  3381. currName = item.CurrencyName,
  3382. rate = item.Rate,
  3383. lastUpdateDt = rateInfo.Date + " " + rateInfo.Time
  3384. });
  3385. }
  3386. }
  3387. }
  3388. var visaData = await _visaFeeInfoRep.EntryAndExitTips(dto.DiId);
  3389. var airData = await _ticketBlackCodeRep.EntryAndExitTips(dto.DiId);
  3390. return Ok(JsonView(true, "查询成功!", new
  3391. {
  3392. //GroupNameData = groupNameData.Data,
  3393. visaData = visaData.Data,
  3394. airData = airData.Data,
  3395. reteInfos = reteInfos
  3396. }));
  3397. }
  3398. /// <summary>
  3399. /// 团组模块 - 出入境费用 - Info
  3400. /// </summary>
  3401. /// <returns></returns>
  3402. [HttpPost]
  3403. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3404. public async Task<IActionResult> GetEnterExitCostInfobyDiId(EnterExitCostInfobyDiIdDto dto)
  3405. {
  3406. try
  3407. {
  3408. var data = await _enterExitCostRep.GetEnterExitCostInfoByDiId(dto);
  3409. if (data.Code != 0)
  3410. {
  3411. return Ok(JsonView(false, data.Msg));
  3412. }
  3413. return Ok(JsonView(true, "查询成功!", data.Data));
  3414. }
  3415. catch (Exception ex)
  3416. {
  3417. return Ok(JsonView(false, ex.Message));
  3418. }
  3419. }
  3420. /// <summary>
  3421. /// 团组模块 - 出入境费用 - Add And Update
  3422. /// </summary>
  3423. /// <returns></returns>
  3424. [HttpPost]
  3425. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3426. public async Task<IActionResult> PostEnterExitCostOperate(EnterExitCostOperateDto dto)
  3427. {
  3428. try
  3429. {
  3430. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  3431. if (data.Code != 0)
  3432. {
  3433. return Ok(JsonView(false, data.Msg));
  3434. }
  3435. return Ok(JsonView(true, data.Msg, data.Data));
  3436. }
  3437. catch (Exception ex)
  3438. {
  3439. return Ok(JsonView(false, ex.Message));
  3440. }
  3441. }
  3442. /// <summary>
  3443. /// 团组模块 - 出入境费用 - File downlaod
  3444. /// </summary>
  3445. /// <param name="dto"></param>
  3446. /// <returns></returns>
  3447. [HttpPost]
  3448. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3449. public async Task<IActionResult> PostEnterExitCostDownload(EnterExitCostDownloadDto dto)
  3450. {
  3451. try
  3452. {
  3453. if (dto.DiId < 1)
  3454. {
  3455. return Ok(JsonView(false, "请传入有效的DiId参数;"));
  3456. }
  3457. if (dto.ExportType < 1)
  3458. {
  3459. return Ok(JsonView(false, "请传入有效的ExportType参数; 1 明细表 2 表格"));
  3460. }
  3461. if (dto.SubTypeId < 1)
  3462. {
  3463. return Ok(JsonView(false, @"请传入有效的SubTypeId参数;
  3464. 1 明细表 --> 1005(默认明细表) 1006(因公出国(境)经费测算明细表) 1007(四川省商务厅出国经费财政先行审核表)
  3465. 2 表格 --> 1008(派员单位出(境)任务和预算审批意见表) 1009(省级单位出(境)经费报销单)
  3466. 3 团组成员名单 1 团组成员名单"));
  3467. }
  3468. var _EnterExitCosts = _sqlSugar.Queryable<Grp_EnterExitCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  3469. var _DayAndCosts = _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  3470. if (_EnterExitCosts == null)
  3471. {
  3472. return Ok(JsonView(false, "该团组未填写出入境费用;"));
  3473. }
  3474. //数据源
  3475. List<Grp_DayAndCost> dac1 = _DayAndCosts.Where(it => it.Type == 1).ToList(); //住宿费
  3476. List<Grp_DayAndCost> dac2 = _DayAndCosts.Where(it => it.Type == 2).ToList(); //伙食费
  3477. List<Grp_DayAndCost> dac3 = _DayAndCosts.Where(it => it.Type == 3).ToList(); //公杂费
  3478. List<Grp_DayAndCost> dac4 = _DayAndCosts.Where(it => it.Type == 4).ToList(); //培训费
  3479. var _CurrDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  3480. var _DelegationInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == dto.DiId).First();
  3481. var DeleClientList = _sqlSugar.Queryable<Grp_TourClientList>()
  3482. .LeftJoin<Crm_DeleClient>((tcl, dc) => tcl.ClientId == dc.Id && dc.IsDel == 0)
  3483. .LeftJoin<Crm_CustomerCompany>((tcl, dc, cc) => dc.CrmCompanyId == cc.Id && dc.IsDel == 0)
  3484. .Where((tcl, dc, cc) => tcl.IsDel == 0 && tcl.DiId == dto.DiId)
  3485. .Select((tcl, dc, cc) => new
  3486. {
  3487. Name = dc.LastName + dc.FirstName,
  3488. Sex = dc.Sex,
  3489. Birthday = dc.BirthDay,
  3490. Company = cc.CompanyFullName,
  3491. Job = dc.Job
  3492. })
  3493. .ToList();
  3494. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  3495. var threeCodes = _sqlSugar.Queryable<Res_ThreeCode>().Where(it => it.IsDel == 0).ToList();
  3496. var placeData = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(it => it.IsDel == 0).ToList();
  3497. var rateDatas = await _EnterExitCosts.CurrencyRemark.SplitExchangeRate();
  3498. _DelegationInfo.VisitCountry = _DelegationInfo.VisitCountry.Replace("|", "、");
  3499. if (dto.ExportType == 1) //明细表
  3500. {
  3501. if (dto.SubTypeId == 1005) //1005(默认明细表)
  3502. {
  3503. //获取模板
  3504. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/出入境费用表模板.docx");
  3505. //载入模板
  3506. Document doc = new Document(tempPath);
  3507. DocumentBuilder builder = new DocumentBuilder(doc);
  3508. //利用键值对存放数据
  3509. Dictionary<string, string> dic = new Dictionary<string, string>();
  3510. decimal stayFeeTotal = _DayAndCosts.Where(it => it.Type == 1).Sum(it => it.SubTotal); // 住宿费
  3511. decimal mealsFeeTotal = _DayAndCosts.Where(it => it.Type == 2).Sum(it => it.SubTotal); // 伙食费费
  3512. decimal miscellaneousFeeTotal = _DayAndCosts.Where(it => it.Type == 3).Sum(it => it.SubTotal); // 公杂费
  3513. decimal tainFeeTotal = _DayAndCosts.Where(it => it.Type == 4).Sum(it => it.SubTotal); // 培训费
  3514. decimal insidePayTotal = _EnterExitCosts.InsidePay;
  3515. string row1_1 = "";
  3516. if (_EnterExitCosts.Visa > 0)
  3517. {
  3518. //insidePayTotal += _EnterExitCosts.Visa;
  3519. row1_1 = $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 人民币/人";
  3520. if (!string.IsNullOrEmpty(_EnterExitCosts.VisaRemark))
  3521. {
  3522. row1_1 += $"\t签证费用描述: : {_EnterExitCosts.VisaRemark} 人民币/人";
  3523. }
  3524. }
  3525. string row1_2 = "";
  3526. if (_EnterExitCosts.YiMiao > 0)
  3527. {
  3528. //insidePayTotal += _EnterExitCosts.YiMiao;
  3529. row1_2 += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")} 人民币/人";
  3530. }
  3531. if (_EnterExitCosts.HeSuan > 0)
  3532. {
  3533. //insidePayTotal += _EnterExitCosts.HeSuan;
  3534. row1_2 += $"核酸检测费:{_EnterExitCosts.HeSuan.ToString("#0.00")} 人民币/人";
  3535. }
  3536. if (_EnterExitCosts.Service > 0)
  3537. {
  3538. //insidePayTotal += _EnterExitCosts.Service;
  3539. row1_2 += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")} 人民币/人";
  3540. }
  3541. string row1_3 = "";
  3542. if (_EnterExitCosts.Safe > 0)
  3543. {
  3544. //insidePayTotal += _EnterExitCosts.Safe;
  3545. row1_3 += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")} 人民币/人";
  3546. }
  3547. if (_EnterExitCosts.Ticket > 0)
  3548. {
  3549. //insidePayTotal += _EnterExitCosts.Ticket;
  3550. row1_3 += $"参展门票:{_EnterExitCosts.Ticket.ToString("#0.00")} 人民币/人";
  3551. }
  3552. string row1 = "";
  3553. if (!string.IsNullOrEmpty(row1_1)) row1 += $"{row1_1}\r\n";
  3554. if (!string.IsNullOrEmpty(row1_2)) row1 += $"{row1_2}\r\n";
  3555. if (!string.IsNullOrEmpty(row1_3)) row1 += $"{row1_3}";
  3556. dic.Add("InsidePay", insidePayTotal.ToString("#0.00"));
  3557. dic.Add("Row1Str", row1);
  3558. dic.Add("OutsideJJ", _EnterExitCosts.OutsideJJPay.ToString("#0.00"));
  3559. dic.Add("OutsaideGW", _EnterExitCosts.OutsaideGWPay.ToString("#0.00"));
  3560. dic.Add("AirJJ", _EnterExitCosts.AirJJ.ToString("#0.00"));
  3561. dic.Add("AirGW", _EnterExitCosts.AirGW.ToString("#0.00"));
  3562. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  3563. dic.Add("SubZS", stayFeeTotal.ToString("#0.00"));
  3564. dic.Add("SubHS", mealsFeeTotal.ToString("#0.00"));
  3565. string miscellaneousFeeTotalStr = miscellaneousFeeTotal.ToString("#0.00");
  3566. dic.Add("SubGZF", miscellaneousFeeTotalStr);
  3567. //dic.Add("SubPX", tainFeeTotal.ToString("#0.00"));
  3568. decimal subJJC = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal + _EnterExitCosts.OutsideJJPay;
  3569. decimal subGWC = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal + _EnterExitCosts.OutsaideGWPay;
  3570. dic.Add("SubJJC", subJJC.ToString("#0.00"));
  3571. dic.Add("SubGWC", subGWC.ToString("#0.00"));
  3572. #region 填充word模板书签内容
  3573. foreach (var key in dic.Keys)
  3574. {
  3575. builder.MoveToBookmark(key);
  3576. builder.Write(dic[key]);
  3577. }
  3578. #endregion
  3579. #region 填充word表格内容
  3580. ////获读取指定表格方法二
  3581. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3582. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  3583. for (int i = 0; i < dac1.Count; i++)
  3584. {
  3585. Grp_DayAndCost dac = dac1[i];
  3586. if (dac == null) continue;
  3587. builder.MoveToCell(0, i, 0, 0);
  3588. builder.Write("第" + dac.Days.ToString() + "晚:");
  3589. builder.MoveToCell(0, i, 1, 0);
  3590. //builder.Write(placeData.Find(it => it.Id == dac.NationalTravelFeeId)?.Country ?? "Unknown");
  3591. //builder.Write(dac.Place == null ? "" : dac.Place);
  3592. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3593. builder.MoveToCell(0, i, 2, 0);
  3594. builder.Write("费用标准:");
  3595. string curr = "";
  3596. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  3597. if (currData != null)
  3598. {
  3599. curr = currData.Name;
  3600. }
  3601. builder.MoveToCell(0, i, 3, 0);
  3602. builder.Write(dac.Cost.ToString("#0.00") + curr);
  3603. builder.MoveToCell(0, i, 4, 0);
  3604. builder.Write("费用小计:");
  3605. builder.MoveToCell(0, i, 5, 0);
  3606. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  3607. }
  3608. //删除多余行
  3609. while (table1.Rows.Count > dac1.Count)
  3610. {
  3611. table1.Rows.RemoveAt(dac1.Count);
  3612. }
  3613. Aspose.Words.Tables.Table table2 = allTables[1] as Aspose.Words.Tables.Table;
  3614. for (int i = 0; i < dac2.Count; i++)
  3615. {
  3616. Grp_DayAndCost dac = dac2[i];
  3617. if (dac == null) continue;
  3618. builder.MoveToCell(1, i, 0, 0);
  3619. builder.Write("第" + dac.Days.ToString() + "天:");
  3620. builder.MoveToCell(1, i, 1, 0);
  3621. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3622. builder.MoveToCell(1, i, 2, 0);
  3623. builder.Write("费用标准:");
  3624. string curr = "";
  3625. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  3626. if (currData != null)
  3627. {
  3628. curr = currData.Name;
  3629. }
  3630. builder.MoveToCell(1, i, 3, 0);
  3631. builder.Write(dac.Cost.ToString("#0.00") + curr);
  3632. builder.MoveToCell(1, i, 4, 0);
  3633. builder.Write("费用小计:");
  3634. builder.MoveToCell(1, i, 5, 0);
  3635. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  3636. }
  3637. //删除多余行
  3638. while (table2.Rows.Count > dac2.Count)
  3639. {
  3640. table2.Rows.RemoveAt(dac2.Count);
  3641. }
  3642. Aspose.Words.Tables.Table table3 = allTables[2] as Aspose.Words.Tables.Table;
  3643. for (int i = 0; i < dac3.Count; i++)
  3644. {
  3645. Grp_DayAndCost dac = dac3[i];
  3646. if (dac == null) continue;
  3647. builder.MoveToCell(2, i, 0, 0);
  3648. builder.Write("第" + dac.Days.ToString() + "天:");
  3649. builder.MoveToCell(2, i, 1, 0);
  3650. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3651. builder.MoveToCell(2, i, 2, 0);
  3652. builder.Write("费用标准:");
  3653. string curr = "";
  3654. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  3655. if (currData != null)
  3656. {
  3657. curr = currData.Name;
  3658. }
  3659. builder.MoveToCell(2, i, 3, 0);
  3660. builder.Write(dac.Cost.ToString("#0.00") + curr);
  3661. builder.MoveToCell(2, i, 4, 0);
  3662. builder.Write("费用小计:");
  3663. builder.MoveToCell(2, i, 5, 0);
  3664. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  3665. }
  3666. //删除多余行
  3667. while (table3.Rows.Count > dac3.Count)
  3668. {
  3669. table3.Rows.RemoveAt(dac3.Count);
  3670. }
  3671. #endregion
  3672. //文件名
  3673. string strFileName = $"{_DelegationInfo.TeamName}出入境费用{Guid.NewGuid().ToString()}.docx";
  3674. AsposeHelper.removewatermark_v2180();
  3675. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  3676. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  3677. return Ok(JsonView(true, "成功", new { Url = url }));
  3678. }
  3679. else if (dto.SubTypeId == 1006)//1006(因公出国(境)经费测算明细表)
  3680. {
  3681. //获取模板
  3682. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/因公出国(境)经费测算明细表.docx");
  3683. //载入模板
  3684. Document doc = new Document(tempPath);
  3685. DocumentBuilder builder = new DocumentBuilder(doc);
  3686. Dictionary<string, string> dic = new Dictionary<string, string>();
  3687. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  3688. {
  3689. List<string> list = new List<string>();
  3690. try
  3691. {
  3692. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  3693. foreach (var item in spilitArr)
  3694. {
  3695. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  3696. var depCode = spDotandEmpty[2].Substring(0, 3);
  3697. var arrCode = spDotandEmpty[2].Substring(3, 3);
  3698. string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  3699. arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  3700. list.Add(depName);
  3701. list.Add(arrName);
  3702. }
  3703. list = list.Distinct().ToList();
  3704. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  3705. }
  3706. catch (Exception)
  3707. {
  3708. dic.Add("ReturnCode", "行程录入不正确!");
  3709. }
  3710. }
  3711. else
  3712. {
  3713. dic.Add("ReturnCode", "未录入行程!");
  3714. }
  3715. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  3716. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  3717. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  3718. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  3719. {
  3720. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  3721. dic.Add("Day", sp.Days.ToString());
  3722. }
  3723. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  3724. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  3725. //var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  3726. //dic.Add("Names", Names);
  3727. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3728. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  3729. decimal dac1totalPrice = 0.00M;
  3730. int accommodationStartIndex = 6, foodandotherStartIndex = 22;
  3731. foreach (var dac in dac1)
  3732. {
  3733. if (dac.SubTotal == 0.00M)
  3734. {
  3735. continue;
  3736. }
  3737. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  3738. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  3739. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  3740. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3741. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  3742. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  3743. builder.Write(currency);//币种
  3744. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  3745. builder.Write(dac.Cost.ToString("#0.00"));//标准
  3746. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  3747. builder.Write("");//人数
  3748. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  3749. builder.Write("");//天数
  3750. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  3751. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  3752. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  3753. decimal rate = 0.00M;
  3754. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  3755. builder.Write(rate.ToString("#0.0000"));//汇率
  3756. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  3757. decimal rbmPrice = dac.SubTotal;
  3758. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  3759. accommodationStartIndex++;
  3760. dac1totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  3761. }
  3762. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  3763. for (int i = 21; i > (dac1.Count == 0 ? 1 : dac1.Count) + 6; i--)
  3764. {
  3765. table1.Rows.RemoveAt(i - 1);
  3766. foodandotherStartIndex--;
  3767. }
  3768. if (dac2.Count == dac3.Count)//国家 币种 金额
  3769. {
  3770. for (int i = 0; i < dac2.Count; i++)
  3771. {
  3772. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  3773. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  3774. }
  3775. }
  3776. decimal dac2totalPrice = 0.00M;
  3777. foreach (var dac in dac2)
  3778. {
  3779. if (dac.SubTotal == 0)
  3780. {
  3781. continue;
  3782. }
  3783. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  3784. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3785. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  3786. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  3787. builder.Write(currency);//币种
  3788. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  3789. builder.Write(dac.Cost.ToString("#0.00"));//标准
  3790. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  3791. builder.Write("");//人数
  3792. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  3793. builder.Write("");//天数
  3794. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  3795. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  3796. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  3797. decimal rate = 0.00M;
  3798. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  3799. builder.Write(rate.ToString("#0.0000"));//汇率
  3800. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  3801. decimal rbmPrice = dac.SubTotal;
  3802. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  3803. foodandotherStartIndex++;
  3804. dac2totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  3805. }
  3806. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  3807. for (int i = foodandotherStartIndex + (15 - dac2.Count); i > (dac2.Count == 0 ? 1 : 0) + foodandotherStartIndex; i--)
  3808. {
  3809. table1.Rows.RemoveAt(i - 1);
  3810. }
  3811. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  3812. string otherFeeStr = "";
  3813. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  3814. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  3815. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  3816. if (otherFeeStr.Length > 0)
  3817. {
  3818. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  3819. otherFeeStr = $"({otherFeeStr})";
  3820. dic.Add("OtherFeeStr", otherFeeStr);
  3821. }
  3822. //总计
  3823. decimal allPrice = dac1totalPrice + dac2totalPrice + _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket;
  3824. //国际旅费
  3825. string outsideJJ = "";
  3826. string allPriceJJ = "";
  3827. if (_EnterExitCosts.SumJJC == 1)
  3828. {
  3829. outsideJJ = string.Format(@"经济舱:{0} 元/人", _EnterExitCosts.AirJJ.ToString("#0.00"));
  3830. allPriceJJ = string.Format(@"经济舱:{0} 元/人", (allPrice + _EnterExitCosts.OutsideJJPay).ToString("#0.00"));
  3831. }
  3832. string outsideGW = "";
  3833. string allPriceGW = "";
  3834. if (_EnterExitCosts.SumGWC == 1)
  3835. {
  3836. outsideGW = string.Format(@"公务舱:{0} 元/人", _EnterExitCosts.AirGW.ToString("#0.00"));
  3837. allPriceGW = string.Format(@"公务舱:{0} 元/人", (allPrice + _EnterExitCosts.OutsaideGWPay).ToString("#0.00"));
  3838. }
  3839. if (_EnterExitCosts.SumJJC == 1 || _EnterExitCosts.SumGWC == 1)
  3840. {
  3841. string InTravelPriceStr = string.Format(@" ({0} {1})", outsideJJ, outsideGW);
  3842. dic.Add("InTravelPrice", InTravelPriceStr);
  3843. string FinalSumPriceStr = string.Format(@" ({0} {1})", allPriceJJ, allPriceGW);
  3844. dic.Add("FinalSumPrice", FinalSumPriceStr);
  3845. }
  3846. //dic.Add("VisaPay", _EnterExitCosts.Visa.ToString("#0.00"));
  3847. //dic.Add("SafePay", _EnterExitCosts.Safe.ToString("#0.00"));
  3848. //dic.Add("YiMiao", _EnterExitCosts.YiMiao.ToString("#0.00"));
  3849. foreach (var key in dic.Keys)
  3850. {
  3851. builder.MoveToBookmark(key);
  3852. builder.Write(dic[key]);
  3853. }
  3854. //模板文件名
  3855. string strFileName = $"{_DelegationInfo.TeamName}因公出国(境)经费测算明细表.docx";
  3856. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  3857. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  3858. return Ok(JsonView(true, "成功", new { Url = url }));
  3859. }
  3860. else if (dto.SubTypeId == 1007) //1007(四川省商务厅出国经费财政先行审核表)
  3861. {
  3862. //获取模板
  3863. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/四川省商务厅出国经费财政先行审核表.xls");
  3864. //载入模板
  3865. WorkbookDesigner designer = new WorkbookDesigner();
  3866. designer.Workbook = new Workbook(tempPath);
  3867. Dictionary<string, string> dic = new Dictionary<string, string>();
  3868. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  3869. {
  3870. List<string> list = new List<string>();
  3871. try
  3872. {
  3873. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  3874. foreach (var item in spilitArr)
  3875. {
  3876. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  3877. var depCode = spDotandEmpty[2].Substring(0, 3);
  3878. var arrCode = spDotandEmpty[2].Substring(3, 3);
  3879. string depName = threeCodes.Find(it => it.Three.Equals(depCode))?.City ?? "Unknwon",
  3880. arrName = threeCodes.Find(it => it.Three.Equals(arrCode))?.City ?? "Unknown";
  3881. list.Add(depName);
  3882. list.Add(arrName);
  3883. }
  3884. list = list.Distinct().ToList();
  3885. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  3886. }
  3887. catch (Exception)
  3888. {
  3889. dic.Add("ReturnCode", "行程录入不正确!");
  3890. }
  3891. }
  3892. else
  3893. {
  3894. dic.Add("ReturnCode", "未录入行程!");
  3895. }
  3896. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  3897. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  3898. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  3899. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  3900. {
  3901. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  3902. dic.Add("Day", sp.Days.ToString());
  3903. }
  3904. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  3905. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  3906. var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  3907. designer.SetDataSource("ClientUnit", _DelegationInfo.ClientUnit);
  3908. designer.SetDataSource("VisitCountry", _DelegationInfo.VisitCountry);
  3909. designer.SetDataSource("Group", _DelegationInfo.TeamName);
  3910. designer.SetDataSource("ClientUnitTitle", _DelegationInfo.TeamName);
  3911. designer.SetDataSource("Name", Names);
  3912. designer.SetDataSource("VisitStartDate", dic["VisitStartDate"] + "-" + dic["VisitEndDate"]);
  3913. designer.SetDataSource("Day", dic["Day"] + "天");
  3914. designer.SetDataSource("ReturnCode", dic["ReturnCode"]);
  3915. designer.SetDataSource("ReturnCodeAir", dic["ReturnCodeAir"]);
  3916. int startIndex = 10;
  3917. const int startIndexcopy = 10;
  3918. if (dac2.Count == dac3.Count)//国家 币种 金额
  3919. {
  3920. for (int i = 0; i < dac2.Count; i++)
  3921. {
  3922. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  3923. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  3924. }
  3925. }
  3926. DataTable dtdac1 = new DataTable();
  3927. List<string> place = new List<string>();
  3928. dtdac1.Columns.AddRange(new DataColumn[] {
  3929. new DataColumn(){ ColumnName = "city"},
  3930. new DataColumn(){ ColumnName = "curr"},
  3931. new DataColumn(){ ColumnName = "criterion"},
  3932. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  3933. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  3934. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  3935. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  3936. new DataColumn(){ ColumnName = "costRMB", DataType = typeof(decimal) },
  3937. });
  3938. DataTable dtdac2 = new DataTable();
  3939. dtdac2.Columns.AddRange(new DataColumn[] {
  3940. new DataColumn(){ ColumnName = "city"},
  3941. new DataColumn(){ ColumnName = "curr"},
  3942. new DataColumn(){ ColumnName = "criterion"},
  3943. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  3944. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  3945. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  3946. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  3947. new DataColumn(){ ColumnName = "costRMB",DataType = typeof(decimal)},
  3948. });
  3949. dtdac1.TableName = "tb1";
  3950. dtdac2.TableName = "tb2";
  3951. decimal dac1totalPrice = 0.00M, dac2totalPrice = 0.00M;
  3952. foreach (var item in dac1)
  3953. {
  3954. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  3955. if (place.Contains(item.Place))
  3956. {
  3957. continue;
  3958. }
  3959. DataRow row = dtdac1.NewRow();
  3960. row["city"] = item.Place;
  3961. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  3962. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  3963. row["curr"] = currency;
  3964. row["rate"] = rate.ToString("#0.0000");
  3965. row["criterion"] = item.Cost.ToString("#0.00");
  3966. row["number"] = 1;
  3967. row["day"] = dac1.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  3968. //row["costRMB"] = rbmPrice;
  3969. dtdac1.Rows.Add(row);
  3970. place.Add(item.Place);
  3971. }
  3972. place = new List<string>();
  3973. foreach (var item in dac2)
  3974. {
  3975. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  3976. if (place.Contains(item.Place))
  3977. {
  3978. continue;
  3979. }
  3980. DataRow row = dtdac2.NewRow();
  3981. row["city"] = item.Place;
  3982. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  3983. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  3984. row["curr"] = currency;
  3985. row["rate"] = rate.ToString("#0.0000");
  3986. row["criterion"] = item.Cost.ToString("#0.00");
  3987. row["number"] = 1;
  3988. row["day"] = dac2.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  3989. //row["cost"] = item.SubTotal;
  3990. //row["costRMB"] = rbmPrice;
  3991. dtdac2.Rows.Add(row);
  3992. place.Add(item.Place);
  3993. //dac2totalPrice += rbmPrice;
  3994. }
  3995. dac1totalPrice = dac1.Sum(it => it.SubTotal);
  3996. dac2totalPrice = dac2.Sum(it => it.SubTotal);
  3997. designer.SetDataSource("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  3998. designer.SetDataSource("dac2totalPrice", dac2totalPrice);
  3999. designer.SetDataSource("cityTranffic", @$"其中:国外城市间机票费: {_EnterExitCosts.CityTranffic.ToString("#0.00")} 元");
  4000. designer.SetDataSource("sumCityTranffic", @$"{_EnterExitCosts.CityTranffic.ToString("#0.00")} ");
  4001. string cell4Str = $" 4.国际旅费:经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 元/人,公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")} 元/人";
  4002. string cellStr = $" 5.其他费用(";
  4003. if (_EnterExitCosts.Visa > 0) cellStr += $"签证费:{_EnterExitCosts.Visa.ToString("#0.00")}元,";
  4004. if (_EnterExitCosts.YiMiao > 0) cellStr += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")}元,";
  4005. if (_EnterExitCosts.HeSuan > 0) cellStr += $"核酸费:{_EnterExitCosts.HeSuan.ToString("#0.00")}元,";
  4006. if (_EnterExitCosts.Safe > 0) cellStr += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")}元,";
  4007. if (_EnterExitCosts.Ticket > 0) cellStr += $"参展门票费:{_EnterExitCosts.Ticket.ToString("#0.00")}元,";
  4008. if (_EnterExitCosts.Service > 0) cellStr += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")}元,";
  4009. if (cellStr.Length > 8)
  4010. {
  4011. cellStr = cellStr.Substring(0, cellStr.Length - 1);
  4012. }
  4013. cellStr += ")";
  4014. decimal otherFee = _EnterExitCosts.Visa + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.Service;
  4015. decimal s = dac1totalPrice + dac2totalPrice + _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay + otherFee;
  4016. decimal pxFee = dac4.Sum(it => it.Cost);
  4017. decimal glvFee = _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay;
  4018. string celllastStr1 = "";
  4019. if (dac1totalPrice > 0) celllastStr1 += $"住宿费 {dac1totalPrice.ToString("#0.00")} 元";
  4020. if (dac2totalPrice > 0) celllastStr1 += $",伙食费和公杂费 {dac2totalPrice.ToString("#0.00")} 元";
  4021. if (pxFee > 0) celllastStr1 += $",培训费 {pxFee.ToString("#0.00")} 元";
  4022. celllastStr1 += $",国际旅费 元";
  4023. if (otherFee > 0) celllastStr1 += $",其他费用 {otherFee.ToString("#0.00")} 元";
  4024. string celllastStr = $" 经审核,{celllastStr1},本次出国经费预算合计为 元。其中:市本级安排 。";
  4025. designer.SetDataSource("cell4Str", cell4Str);
  4026. designer.SetDataSource("cellStr", cellStr);
  4027. designer.SetDataSource("cellSum", (_EnterExitCosts.Visa + _EnterExitCosts.Safe).ToString("#0.00"));
  4028. designer.SetDataSource("cellSum4", (_EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay).ToString("#0.00"));
  4029. designer.SetDataSource("celllastStr", celllastStr);
  4030. Workbook wb = designer.Workbook;
  4031. var sheet = wb.Worksheets[0];
  4032. //绑定datatable数据集
  4033. designer.SetDataSource(dtdac1);
  4034. designer.SetDataSource(dtdac2);
  4035. designer.Process();
  4036. var rowStart = dtdac1.Rows.Count;
  4037. while (rowStart > 0)
  4038. {
  4039. sheet.Cells[startIndex, 8].Formula = $"=G{startIndex + 1} * H{startIndex + 1}";
  4040. sheet.Cells[startIndex, 6].Formula = $"=E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4041. startIndex++;
  4042. rowStart--;
  4043. }
  4044. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + 1}: I{startIndex})";
  4045. startIndex += 1; //总计行
  4046. rowStart = dtdac2.Rows.Count;
  4047. while (rowStart > 0)
  4048. {
  4049. sheet.Cells[startIndex, 8].Formula = $"= G{startIndex + 1} * H{startIndex + 1}";
  4050. sheet.Cells[startIndex, 6].Formula = $"= E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4051. startIndex++;
  4052. rowStart--;
  4053. }
  4054. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + dtdac1.Rows.Count + 2}: I{startIndex})";
  4055. wb.CalculateFormula(true);
  4056. //模板文件名
  4057. string strFileName = $"四川省商务厅出国经费财政先行审核表.xls";
  4058. designer.Workbook.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4059. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4060. return Ok(JsonView(true, "成功", new { Url = url }));
  4061. }
  4062. else if (dto.SubTypeId == 1066) //成都市因公临时出国任务和预算审批意见表(外专培训团专用)
  4063. {
  4064. //获取模板
  4065. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/成都市因公临时出国任务和预算审批意见表.docx");
  4066. //载入模板
  4067. Document doc = new Document(tempPath);
  4068. DocumentBuilder builder = new DocumentBuilder(doc);
  4069. Dictionary<string, string> dic = new Dictionary<string, string>();
  4070. dic.Add("GroupName", _DelegationInfo.TeamName);
  4071. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4072. string missionLeader = ""; //团负责人默认接团客户名单第一个人
  4073. string missionLeaderJob = "";//负责人job
  4074. int groupNumber = 0; //团人数
  4075. if (DeleClientList.Count > 0)
  4076. {
  4077. missionLeader = DeleClientList[0]?.Name ?? "";
  4078. missionLeaderJob = DeleClientList[0]?.Job ?? "";
  4079. }
  4080. dic.Add("MissionLeader", missionLeader); //团负责人
  4081. dic.Add("MissionLeaderJob", missionLeaderJob); //团负责人job
  4082. dic.Add("GroupNumber", _DelegationInfo.VisitPNumber.ToString()); //团人数
  4083. #region MyRegion
  4084. //if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4085. //{
  4086. // List<string> list = new List<string>();
  4087. // try
  4088. // {
  4089. // var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4090. // foreach (var item in spilitArr)
  4091. // {
  4092. // var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4093. // var depCode = spDotandEmpty[2].Substring(0, 3);
  4094. // var arrCode = spDotandEmpty[2].Substring(3, 3);
  4095. // string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  4096. // arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  4097. // list.Add(depName);
  4098. // list.Add(arrName);
  4099. // }
  4100. // list = list.Distinct().ToList();
  4101. // dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4102. // }
  4103. // catch (Exception)
  4104. // {
  4105. // dic.Add("ReturnCode", "行程录入不正确!");
  4106. // }
  4107. //}
  4108. //else
  4109. //{
  4110. // dic.Add("ReturnCode", "未录入行程!");
  4111. //}
  4112. List<string> countrys = _groupRepository.GroupSplitCountry(_DelegationInfo.VisitCountry);
  4113. dic.Add("ReturnCode", string.Join("、", countrys));
  4114. #endregion
  4115. //dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4116. //dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4117. //dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4118. //if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4119. //{
  4120. // TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4121. // dic.Add("Day", sp.Days.ToString());
  4122. //}
  4123. dic.Add("Day", _DelegationInfo.VisitDays.ToString());
  4124. dic.Add("CultivateDay", dac4.Count.ToString()); //培训天数
  4125. // dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4126. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4127. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4128. //培训人员名单
  4129. int cultivateRowIndex = 7;
  4130. foreach (var item in DeleClientList)
  4131. {
  4132. builder.MoveToCell(0, cultivateRowIndex, 0, 0);
  4133. builder.Write(item.Name);
  4134. builder.MoveToCell(0, cultivateRowIndex, 1, 0);
  4135. builder.Write(item.Sex == 0 ? "男" : item.Sex == 1 ? "女" : "");
  4136. builder.MoveToCell(0, cultivateRowIndex, 2, 0);
  4137. string birthDay = "";
  4138. if (item.Birthday != null)
  4139. {
  4140. DateTime dt = Convert.ToDateTime(item.Birthday);
  4141. birthDay = $"{dt.Year}.{dt.Month}";
  4142. }
  4143. builder.Write(birthDay);
  4144. builder.MoveToCell(0, cultivateRowIndex, 3, 0);
  4145. builder.Write(item.Company);
  4146. builder.MoveToCell(0, cultivateRowIndex, 4, 0);
  4147. builder.Write(item.Job);
  4148. cultivateRowIndex++;
  4149. }
  4150. //删除多余行
  4151. //cultivateRowIndex -= 2;
  4152. int delRows = 10 + 7 - cultivateRowIndex;
  4153. if (delRows > 0)
  4154. {
  4155. for (int i = 0; i < delRows; i++)
  4156. {
  4157. table1.Rows.RemoveAt(cultivateRowIndex);
  4158. //cultivateRowIndex++;
  4159. }
  4160. }
  4161. decimal hotelFeeTotal = dac1.Sum(it => it.SubTotal);//住宿费
  4162. dic.Add("HotelFeeTotal", hotelFeeTotal.ToString("#0.00"));
  4163. decimal mealsFeeTotal = dac2.Sum(it => it.SubTotal);//伙食费
  4164. dic.Add("MealsFeeTotal", mealsFeeTotal.ToString("#0.00"));
  4165. decimal miscellaneousFeeTotal = dac3.Sum(it => it.SubTotal);//公杂费
  4166. dic.Add("MiscellaneousFeeTotal", miscellaneousFeeTotal.ToString("#0.00"));
  4167. decimal trainingFeeTotal = dac4.Sum(it => it.SubTotal);//培训费
  4168. dic.Add("TrainingFeeTotal", trainingFeeTotal.ToString("#0.00"));
  4169. decimal cityTranfficFeeToatal = _EnterExitCosts.CityTranffic; //城市区间交通费
  4170. dic.Add("CityTranfficFeeToatal", cityTranfficFeeToatal.ToString("#0.00"));//
  4171. //其他费用
  4172. decimal otherFeeTotal = _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Service;
  4173. dic.Add("OtherFeeTotal", otherFeeTotal.ToString("#0.00"));
  4174. //其他费用合计
  4175. decimal _otherFeeTotal = hotelFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + trainingFeeTotal + cityTranfficFeeToatal + otherFeeTotal;
  4176. decimal _jjcFeeToatal = _EnterExitCosts.AirJJ + _otherFeeTotal; //经济舱
  4177. decimal _gwcFeeToatal = _EnterExitCosts.AirGW + _otherFeeTotal; //公务舱
  4178. //公务舱合计
  4179. //国际旅费
  4180. string outsideJJ = "";
  4181. string allPriceJJ = "";
  4182. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 0)
  4183. {
  4184. dic.Add("AirFeeTotal", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4185. dic.Add("FeeTotal", _jjcFeeToatal.ToString("#0.00"));
  4186. }
  4187. if (_EnterExitCosts.SumGWC == 1 && _EnterExitCosts.SumJJC == 0)
  4188. {
  4189. dic.Add("AirFeeTotal", _EnterExitCosts.AirGW.ToString("#0.00"));
  4190. dic.Add("FeeTotal", _gwcFeeToatal.ToString("#0.00"));
  4191. }
  4192. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 1)
  4193. {
  4194. string airFeeTotalStr = string.Format(@$"经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")}");
  4195. dic.Add("AirFeeTotal", airFeeTotalStr);
  4196. string feeTotalStr = string.Format(@$"经济舱:{_jjcFeeToatal.ToString("#0.00")} 公务舱:{_gwcFeeToatal.ToString("#0.00")}");
  4197. dic.Add("FeeTotal", feeTotalStr);
  4198. }
  4199. foreach (var key in dic.Keys)
  4200. {
  4201. builder.MoveToBookmark(key);
  4202. builder.Write(dic[key]);
  4203. }
  4204. //模板文件名
  4205. string strFileName = $"{_DelegationInfo.TeamName}成都市因公临时出国任务和预算审批意见表(外专培训团专用).docx";
  4206. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4207. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4208. return Ok(JsonView(true, "成功", new { Url = url }));
  4209. }
  4210. }
  4211. else if (dto.ExportType == 2) //表格
  4212. {
  4213. //利用键值对存放数据
  4214. Dictionary<string, string> dic = new Dictionary<string, string>();
  4215. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4216. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4217. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4218. dic.Add("Day", sp.Days.ToString());
  4219. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4220. if (dto.SubTypeId == 1008) //1008(派员单位出(境)任务和预算审批意见表)
  4221. {
  4222. //获取模板
  4223. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/派员单位出(境)任务和预算审批意见表.docx");
  4224. //载入模板
  4225. Document doc = new Document(tempPath);
  4226. DocumentBuilder builder = new DocumentBuilder(doc);
  4227. dic.Add("TeamName", _DelegationInfo.TeamName);
  4228. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4229. //dic.Add("TellPhone", _DelegationInfo.TellPhone);
  4230. string missionLeaderName = "",
  4231. missionLeaderJob = "";
  4232. if (DeleClientList.Count > 0)
  4233. {
  4234. missionLeaderName = DeleClientList[0].Name;
  4235. missionLeaderJob = DeleClientList[0].Job;
  4236. }
  4237. dic.Add("MissionLeaderName", missionLeaderName);
  4238. dic.Add("MissionLeaderJob", missionLeaderJob);
  4239. dic.Add("VisitPNumber", _DelegationInfo.VisitPNumber.ToString());
  4240. dic.Add("VisitPurpose", _DelegationInfo.VisitPurpose);
  4241. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4242. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4243. int rowCount = 10;//总人数行
  4244. int startRowIndex = 7; //起始行
  4245. for (int i = 0; i < DeleClientList.Count; i++)
  4246. {
  4247. builder.MoveToCell(0, startRowIndex, 0, 0);
  4248. builder.Write(DeleClientList[i].Name); //出国人员姓名
  4249. builder.MoveToCell(0, startRowIndex, 1, 0);
  4250. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  4251. builder.Write(sex);//性别
  4252. builder.MoveToCell(0, startRowIndex, 2, 0);
  4253. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));//出生年月
  4254. builder.MoveToCell(0, startRowIndex, 3, 0);
  4255. builder.Write(DeleClientList[i].Company);//工作单位
  4256. builder.MoveToCell(0, startRowIndex, 4, 0);
  4257. builder.Write(DeleClientList[i].Job);//职务及级别
  4258. builder.MoveToCell(0, startRowIndex, 5, 0);
  4259. builder.Write("");//人员属性
  4260. builder.MoveToCell(0, startRowIndex, 6, 0);
  4261. builder.Write("");//上次出国时间
  4262. startRowIndex++;
  4263. }
  4264. int nullRow = rowCount - DeleClientList.Count;//空行
  4265. for (int i = 0; i < nullRow; i++)
  4266. {
  4267. table1.Rows.Remove(table1.Rows[startRowIndex]);
  4268. }
  4269. foreach (var key in dic.Keys)
  4270. {
  4271. builder.MoveToBookmark(key);
  4272. builder.Write(dic[key]);
  4273. }
  4274. //模板文件名
  4275. string strFileName = $"派员单位出(境)任务和预算审批意见表.docx";
  4276. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4277. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4278. return Ok(JsonView(true, "成功", new { Url = url }));
  4279. }
  4280. else if (dto.SubTypeId == 1009)//1009(省级单位出(境)经费报销单)
  4281. {
  4282. //获取模板
  4283. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/省级单位出(境)经费报销单.docx");
  4284. //载入模板
  4285. Document doc = new Document(tempPath);
  4286. DocumentBuilder builder = new DocumentBuilder(doc);
  4287. dic.Add("GroupClient", _DelegationInfo.ClientUnit);
  4288. var Names = string.Join("、", DeleClientList.Select(x => x.Name)).TrimEnd('、');
  4289. dic.Add("Names", Names);
  4290. int accommodationRows = 12, foodandotherRows = 12;
  4291. var Dac1currCn = dac1.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4292. var Dac2currCn = dac2.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4293. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4294. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4295. int accommodationStartIndex = 6;
  4296. decimal dac1totalPrice = 0.00M;
  4297. foreach (var dac in dac1)
  4298. {
  4299. if (dac.SubTotal == 0)
  4300. {
  4301. continue;
  4302. }
  4303. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  4304. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  4305. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4306. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  4307. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  4308. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  4309. builder.Write(currency);//币种
  4310. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  4311. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4312. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  4313. builder.Write("");//人数
  4314. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  4315. builder.Write("");//天数
  4316. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  4317. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4318. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  4319. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4320. builder.Write(rate.ToString("#0.0000"));//汇率
  4321. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4322. decimal rbmPrice = rate * dac.SubTotal;
  4323. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4324. accommodationStartIndex++;
  4325. dac1totalPrice += rbmPrice;
  4326. }
  4327. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4328. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4329. builder.Write("小计");
  4330. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4331. builder.Write(dac1totalPrice.ToString("#0.00"));
  4332. accommodationStartIndex++;
  4333. int nullRow = accommodationRows - dac1.Count;
  4334. //删除空行
  4335. //if (nullRow > 0)
  4336. //{
  4337. // int rowIndex = accommodationStartIndex;
  4338. // for (int i = 0; i < nullRow; i++)
  4339. // {
  4340. // Row row = table1.Rows[rowIndex];
  4341. // row.Remove();
  4342. // rowIndex++;
  4343. // }
  4344. //}
  4345. if (dac2.Count == dac3.Count)//国家 币种 金额
  4346. {
  4347. for (int i = 0; i < dac2.Count; i++)
  4348. {
  4349. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4350. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4351. }
  4352. }
  4353. int foodandotherStartIndex = 19;//
  4354. decimal dac2totalPrice = 0.00M;
  4355. foreach (var dac in dac2)
  4356. {
  4357. if (dac.SubTotal == 0)
  4358. {
  4359. continue;
  4360. }
  4361. //foodandotherStartIndex = 12;
  4362. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  4363. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  4364. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  4365. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  4366. builder.Write(currency);//币种
  4367. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  4368. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4369. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  4370. builder.Write("");//人数
  4371. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  4372. builder.Write("");//天数
  4373. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  4374. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4375. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  4376. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4377. builder.Write(rate.ToString("#0.0000"));//汇率
  4378. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  4379. decimal rbmPrice = rate * dac.SubTotal;
  4380. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4381. foodandotherStartIndex++;
  4382. dac2totalPrice += rbmPrice;
  4383. }
  4384. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  4385. //删除空行
  4386. if (dac2.Count < foodandotherRows)
  4387. {
  4388. //int nullRow = accommodationRows - dac2.Count;
  4389. //while (table2.Rows.Count > dac2.Count)
  4390. //{
  4391. // table2.Rows.RemoveAt(dac2.Count);
  4392. //}
  4393. }
  4394. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4395. string otherFeeStr = "";
  4396. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  4397. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  4398. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  4399. if (otherFeeStr.Length > 0)
  4400. {
  4401. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  4402. otherFeeStr = $"({otherFeeStr})";
  4403. dic.Add("OtherFeeStr", otherFeeStr);
  4404. }
  4405. foreach (var key in dic.Keys)
  4406. {
  4407. builder.MoveToBookmark(key);
  4408. builder.Write(dic[key]);
  4409. }
  4410. //模板文件名
  4411. string strFileName = $"省级单位出(境)经费报销单.docx";
  4412. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4413. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4414. return Ok(JsonView(true, "成功", new { Url = url }));
  4415. }
  4416. }
  4417. else if (dto.ExportType == 3)
  4418. {
  4419. if (dto.SubTypeId == 1) //团组成员名单
  4420. {
  4421. if (DeleClientList.Count < 1)
  4422. {
  4423. return Ok(JsonView(false, "团组成员暂未录入!!!"));
  4424. }
  4425. //获取模板
  4426. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/dwon_团组人员列表模板.doc");
  4427. //载入模板
  4428. Document doc = new Document(tempPath);
  4429. DocumentBuilder builder = new DocumentBuilder(doc);
  4430. //获取word里所有表格
  4431. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4432. //获取所填表格的序数
  4433. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  4434. var rowStart = tableOne.Rows[0]; //获取第1行
  4435. //循环赋值
  4436. for (int i = 0; i < DeleClientList.Count; i++)
  4437. {
  4438. builder.MoveToCell(0, i + 1, 0, 0);
  4439. builder.Write(DeleClientList[i].Name);
  4440. builder.MoveToCell(0, i + 1, 1, 0);
  4441. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  4442. builder.Write(sex);
  4443. builder.MoveToCell(0, i + 1, 2, 0);
  4444. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));
  4445. builder.MoveToCell(0, i + 1, 3, 0);
  4446. builder.Write(DeleClientList[i].Company);
  4447. builder.MoveToCell(0, i + 1, 4, 0);
  4448. builder.Write(DeleClientList[i].Job);
  4449. }
  4450. //删除多余行
  4451. while (tableOne.Rows.Count > DeleClientList.Count + 1)
  4452. {
  4453. tableOne.Rows.RemoveAt(DeleClientList.Count + 1);
  4454. }
  4455. string strFileName = $"{_DelegationInfo.TeamName}组团人员名单({DateTime.Now.ToString("yyyyMMddHHmmss")}).doc";
  4456. //C:/Server/File/OA2023/Office/Word/EnterExitCost/File/
  4457. //C:\Server\File\OA2023\Office\Word\EnterExitCost\File\
  4458. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4459. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4460. return Ok(JsonView(true, "成功", new { Url = url }));
  4461. }
  4462. }
  4463. return Ok(JsonView(false, "操作失败!"));
  4464. }
  4465. catch (Exception ex)
  4466. {
  4467. return Ok(JsonView(false, ex.Message));
  4468. }
  4469. }
  4470. /// <summary>
  4471. /// 获取三公费用标准city
  4472. /// </summary>
  4473. /// <param name="placeData"></param>
  4474. /// <param name="nationalTravelFeeId"></param>
  4475. /// <returns></returns>
  4476. private string GetEnterExitCostExportCity(List<Grp_NationalTravelFee> placeData, int nationalTravelFeeId)
  4477. {
  4478. string _city = string.Empty;
  4479. if (placeData.Count < 1) return _city;
  4480. var data = placeData.Find(it => it.Id == nationalTravelFeeId);
  4481. if (data == null) return _city;
  4482. string country = data.Country;
  4483. string city = data.City;
  4484. if (city.Contains("其他城市") || city.Contains("所有城市")) _city = $"{country}-{city}";
  4485. else _city = city;
  4486. return _city;
  4487. }
  4488. /// <summary>
  4489. /// 团组模块 - 出入境费用 - 明细表导出
  4490. /// </summary>
  4491. /// <returns></returns>
  4492. [HttpPost]
  4493. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4494. public async Task<IActionResult> PostEnterExitCostExportDetailsList(EnterExitCostOperateDto dto)
  4495. {
  4496. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  4497. if (data.Code != 0)
  4498. {
  4499. return Ok(JsonView(false, data.Msg));
  4500. }
  4501. return Ok(JsonView(true, data.Msg, data.Data));
  4502. }
  4503. /// <summary>
  4504. /// 团组模块 - 出入境费用 - 一键清空
  4505. /// </summary>
  4506. /// <returns></returns>
  4507. [HttpPost]
  4508. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4509. public async Task<IActionResult> PostEnterExitCostOneClickClear(EnterExitCostOneClickClearDto dto)
  4510. {
  4511. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数;"));
  4512. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数;"));
  4513. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数;"));
  4514. var _view = await _enterExitCostRep._OneClickClear(dto.Id, dto.DiId, dto.UserId);
  4515. if (_view.Code == 0)
  4516. {
  4517. return Ok(JsonView(true, "操作成功"));
  4518. }
  4519. return Ok(JsonView(false, "操作失败"));
  4520. }
  4521. /// <summary>
  4522. /// 团组模块 - 出入境费用 - 子项删除
  4523. /// </summary>
  4524. /// <returns></returns>
  4525. [HttpPost]
  4526. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4527. public async Task<IActionResult> PostEnterExitCostSubItemDel(EnterExitCostSubItemDelDto dto)
  4528. {
  4529. try
  4530. {
  4531. var data = await _enterExitCostRep.PostEnterExitCostSubItemDel(dto);
  4532. if (data.Code != 0)
  4533. {
  4534. return Ok(JsonView(false, data.Msg));
  4535. }
  4536. return Ok(JsonView(true, "操作成功!", data.Data));
  4537. }
  4538. catch (Exception ex)
  4539. {
  4540. return Ok(JsonView(false, ex.Message));
  4541. }
  4542. }
  4543. /// <summary>
  4544. /// 团组模块 - 出入境国家费用标准 List
  4545. /// </summary>
  4546. /// <returns></returns>
  4547. [HttpPost]
  4548. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4549. public async Task<IActionResult> GetNationalTravelFeeData(PortDtoBase dto)
  4550. {
  4551. try
  4552. {
  4553. Stopwatch sw = new Stopwatch();
  4554. sw.Start();
  4555. string nationalTravelFeeSql = string.Format(@"Select ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.* From Grp_NationalTravelFee gntf
  4556. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  4557. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  4558. Where gntf.Isdel = 0");
  4559. var nationalTravelFeeData = _sqlSugar.SqlQueryable<NationalTravelFeeInfoView>(nationalTravelFeeSql).ToList();
  4560. //var nationalTravel = nationalTravelFeeData.GroupBy(it => it.Country).Select(it1 => it1.FirstOrDefault());
  4561. //List<dynamic> nationalTravelFeeData1 = new List<dynamic>();
  4562. //foreach (var item in nationalTravel)
  4563. //{
  4564. // var cityData = nationalTravelFeeData.Where(it => it.Country == item.Country).ToList();
  4565. // var otherData = cityData.Where(it => it.City.Contains("其他城市")).FirstOrDefault();
  4566. // if (otherData != null)
  4567. // {
  4568. // cityData.Remove(otherData);
  4569. // cityData.Add(otherData);
  4570. // }
  4571. // nationalTravelFeeData1.Add(new
  4572. // {
  4573. // Country = item.Country,
  4574. // CityData = cityData
  4575. // });
  4576. //}
  4577. sw.Stop();
  4578. return Ok(JsonView(true, "查询成功!耗时:" + sw.ElapsedMilliseconds + "ms", nationalTravelFeeData));
  4579. }
  4580. catch (Exception ex)
  4581. {
  4582. return Ok(JsonView(false, ex.Message));
  4583. throw;
  4584. }
  4585. }
  4586. /// <summary>
  4587. /// 团组模块 - 出入境国家费用标准 Page List Data Source
  4588. /// </summary>
  4589. /// <returns></returns>
  4590. [HttpPost]
  4591. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4592. public async Task<IActionResult> GetNationalTravelFeePageDataSource()
  4593. {
  4594. string sql = string.Format(@"Select * From Grp_NationalTravelFee Where Isdel = 0 ");
  4595. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<Grp_NationalTravelFee>(sql).ToListAsync();
  4596. List<string> countryData = new List<string>();
  4597. countryData.AddRange(nationalTravelFeeData.Select(it => it.Country).ToList());
  4598. countryData = countryData.Distinct().ToList();
  4599. List<dynamic> dataSource = new List<dynamic>();
  4600. foreach (var item in countryData)
  4601. {
  4602. List<string> cityData1 = new List<string>();
  4603. cityData1 = nationalTravelFeeData.Where(it => it.Country == item).Select(it => it.City).ToList();
  4604. var countryData2 = new
  4605. {
  4606. CountryName = item,
  4607. CityData = cityData1
  4608. };
  4609. dataSource.Add(countryData2);
  4610. }
  4611. return Ok(JsonView(true, "查询成功!", dataSource));
  4612. }
  4613. /// <summary>
  4614. /// 团组模块 - 出入境国家费用标准 Page List
  4615. /// </summary>
  4616. /// <returns></returns>
  4617. [HttpPost]
  4618. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4619. public async Task<IActionResult> PostNationalTravelFeePage(NationalTravelFeePageDto dto)
  4620. {
  4621. int portId = dto.PortType;
  4622. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  4623. if (dto.PageIndex == 0) return Ok(JsonView(false, "当前页码数不能为0!"));
  4624. if (dto.PageSize == 0) return Ok(JsonView(false, "每页条数不能0!"));
  4625. string whereSql = string.Empty;
  4626. if (!string.IsNullOrEmpty(dto.Country))
  4627. {
  4628. whereSql += string.Format(@" And gntf.Country ='{0}'", dto.Country);
  4629. }
  4630. if (!string.IsNullOrEmpty(dto.City))
  4631. {
  4632. whereSql += string.Format(@" And gntf.City='{0}'", dto.City);
  4633. }
  4634. string pageSql = string.Format(@"Select * From (
  4635. Select row_number() over(order by gntf.LastUpdateTime Desc) as RowNumber,
  4636. ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.*
  4637. From Grp_NationalTravelFee gntf
  4638. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  4639. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  4640. Where gntf.Isdel = 0 {0} ) temp ", whereSql);
  4641. RefAsync<int> total = 0;
  4642. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeePageInfoView>(pageSql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  4643. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData, (int)total));
  4644. }
  4645. /// <summary>
  4646. /// 团组模块 - 出入境国家费用标准 根据城市查询
  4647. /// </summary>
  4648. /// <returns></returns>
  4649. [HttpPost]
  4650. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4651. public async Task<IActionResult> PostNationalTravelFeeInfoByCountryAndCity(NationalTravelFeeByCountryAndCityDto dto)
  4652. {
  4653. if (dto == null) return Ok(JsonView(false, "请传入参数!"));
  4654. int portId = dto.PortType;
  4655. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  4656. string whereSql = string.Empty;
  4657. if (!string.IsNullOrEmpty(dto.Country))
  4658. {
  4659. whereSql = string.Format(@"And Country = '{0}' ", dto.Country);
  4660. }
  4661. if (!string.IsNullOrEmpty(dto.City))
  4662. {
  4663. whereSql = string.Format(@"And City = '{0}' ", dto.City);
  4664. }
  4665. string sql = string.Format(@"Select gntf.Country,gntf.City,gntf.Currency,ssd.Name as CurrencyCode,
  4666. ssd.Remark as CurrencyName,gntf.RoomCost,gntf.FoodCost,gntf.PublicCost,
  4667. gntf.LastUpdateUserId,su.CnName as LastUpdateUserName,gntf.LastUpdateTime
  4668. From Grp_NationalTravelFee gntf
  4669. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  4670. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  4671. Where gntf.Isdel = 0 {0} ", whereSql);
  4672. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeeInfoByCountryAndCityView>(sql).FirstAsync();
  4673. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData));
  4674. }
  4675. /// <summary>
  4676. /// 团组模块 - 出入境国家费用标准 - Add Or Update
  4677. /// </summary>
  4678. /// <returns></returns>
  4679. [HttpPost]
  4680. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4681. public async Task<IActionResult> PostNationalTravelFeeOperate(NationalTravelFeeOperateDto dto)
  4682. {
  4683. try
  4684. {
  4685. var data = await _enterExitCostRep.PostNationalTravelFeeOperate(dto);
  4686. if (data.Code != 0)
  4687. {
  4688. return Ok(JsonView(false, data.Msg));
  4689. }
  4690. return Ok(JsonView(true, "操作成功!", data.Data));
  4691. }
  4692. catch (Exception ex)
  4693. {
  4694. return Ok(JsonView(false, ex.Message));
  4695. }
  4696. }
  4697. /// <summary>
  4698. /// 团组模块 - 出入境国家费用标准 - Del
  4699. /// </summary>
  4700. /// <returns></returns>
  4701. [HttpPost]
  4702. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4703. public async Task<IActionResult> PostNationalTravelFeeDel(NationalTravelFeeDelDto dto)
  4704. {
  4705. try
  4706. {
  4707. Grp_NationalTravelFee _nationalTravelFee = new Grp_NationalTravelFee()
  4708. {
  4709. Id = dto.Id,
  4710. DeleteUserId = dto.DeleteUserId,
  4711. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  4712. IsDel = 1
  4713. };
  4714. var delStatus = await _enterExitCostRep._sqlSugar.Updateable<Grp_NationalTravelFee>(_nationalTravelFee)
  4715. .UpdateColumns(it => new { it.DeleteTime, it.DeleteUserId, it.IsDel })
  4716. .WhereColumns(it => new { it.Id })
  4717. .ExecuteCommandAsync();
  4718. if (delStatus <= 0)
  4719. {
  4720. return Ok(JsonView(false, "删除失败!"));
  4721. }
  4722. return Ok(JsonView(true, "操作成功!"));
  4723. }
  4724. catch (Exception ex)
  4725. {
  4726. return Ok(JsonView(false, ex.Message));
  4727. }
  4728. }
  4729. #endregion
  4730. #region 签证费用录入
  4731. /// <summary>
  4732. /// 根据diid查询签证费用列表
  4733. /// </summary>
  4734. /// <param name="dto"></param>
  4735. /// <returns></returns>
  4736. [HttpPost]
  4737. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4738. public async Task<IActionResult> QueryVisaByDiId(VisaPriceDto dto)
  4739. {
  4740. try
  4741. {
  4742. Result groupData = await _visaPriceRep.PostVisaByDiId(dto);
  4743. if (groupData.Code != 0)
  4744. {
  4745. return Ok(JsonView(false, groupData.Msg));
  4746. }
  4747. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  4748. }
  4749. catch (Exception ex)
  4750. {
  4751. return Ok(JsonView(false, ex.Message));
  4752. }
  4753. }
  4754. /// <summary>
  4755. /// 根据签证费用Id查询单条数据及c表数据
  4756. /// </summary>
  4757. /// <param name="dto"></param>
  4758. /// <returns></returns>
  4759. [HttpPost]
  4760. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4761. public async Task<IActionResult> QueryVisaById(PostVisaByIdDto dto)
  4762. {
  4763. try
  4764. {
  4765. Result groupData = await _visaPriceRep.PostVisaById(dto);
  4766. if (groupData.Code != 0)
  4767. {
  4768. return Ok(JsonView(false, groupData.Msg));
  4769. }
  4770. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  4771. }
  4772. catch (Exception ex)
  4773. {
  4774. return Ok(JsonView(false, ex.Message));
  4775. }
  4776. }
  4777. /// <summary>
  4778. /// 签证费用删除
  4779. /// </summary>
  4780. /// <param name="dto"></param>
  4781. /// <returns></returns>
  4782. [HttpPost]
  4783. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4784. public async Task<IActionResult> DelVisaPrice(DelBaseDto dto)
  4785. {
  4786. _sqlSugar.BeginTran();
  4787. var res = await _visaPriceRep.SoftDeleteByIdAsync<Grp_VisaInfo>(dto.Id.ToString(), dto.DeleteUserId);
  4788. if (!res)
  4789. {
  4790. _sqlSugar.RollbackTran();
  4791. return Ok(JsonView(false, "删除失败"));
  4792. }
  4793. var resSub = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  4794. .Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 80)
  4795. .SetColumns(a => new Grp_CreditCardPayment()
  4796. {
  4797. IsDel = 1,
  4798. DeleteUserId = dto.DeleteUserId,
  4799. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  4800. }).ExecuteCommand();
  4801. if (resSub < 1)
  4802. {
  4803. _sqlSugar.RollbackTran();
  4804. return Ok(JsonView(false, "删除失败"));
  4805. }
  4806. _sqlSugar.CommitTran();
  4807. return Ok(JsonView(true, "删除成功!"));
  4808. }
  4809. /// <summary>
  4810. /// 签证费用录入下拉框初始化
  4811. /// </summary>
  4812. /// <returns></returns>
  4813. [HttpPost]
  4814. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4815. public async Task<IActionResult> VisaPriceAddSelect()
  4816. {
  4817. try
  4818. {
  4819. //支付方式
  4820. List<Sys_SetData> Payment = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 14 && a.IsDel == 0).ToList();
  4821. List<SetDataInfoView> _Payment = _mapper.Map<List<SetDataInfoView>>(Payment);
  4822. //币种
  4823. List<Sys_SetData> CurrencyList = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 66 && a.IsDel == 0).ToList();
  4824. List<SetDataInfoView> _CurrencyList = _mapper.Map<List<SetDataInfoView>>(CurrencyList);
  4825. //乘客类型
  4826. List<Sys_SetData> PassengerType = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 69 && a.IsDel == 0).ToList();
  4827. List<SetDataInfoView> _PassengerType = _mapper.Map<List<SetDataInfoView>>(PassengerType);
  4828. //卡类型
  4829. List<Sys_SetData> BankCard = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 15 && a.IsDel == 0).ToList();
  4830. List<SetDataInfoView> _BankCard = _mapper.Map<List<SetDataInfoView>>(BankCard);
  4831. var data = new
  4832. {
  4833. Payment = _Payment,
  4834. CurrencyList = _CurrencyList,
  4835. PassengerType = _PassengerType,
  4836. BankCard = _BankCard
  4837. };
  4838. return Ok(JsonView(true, "查询成功!", data));
  4839. }
  4840. catch (Exception ex)
  4841. {
  4842. return Ok(JsonView(false, "程序错误!"));
  4843. throw;
  4844. }
  4845. }
  4846. /// <summary>
  4847. /// 签证费用录入操作(Status:1.新增,2.修改)
  4848. /// </summary>
  4849. /// <param name="dto"></param>
  4850. /// <returns></returns>
  4851. [HttpPost]
  4852. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4853. public async Task<IActionResult> OpVisaPrice(OpVisaPriceDto dto)
  4854. {
  4855. try
  4856. {
  4857. Result groupData = await _visaPriceRep.OpVisaPrice(dto);
  4858. if (groupData.Code != 0)
  4859. {
  4860. return Ok(JsonView(false, groupData.Msg));
  4861. }
  4862. #region 应用推送
  4863. try
  4864. {
  4865. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  4866. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  4867. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  4868. }
  4869. catch (Exception ex)
  4870. {
  4871. }
  4872. #endregion
  4873. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  4874. }
  4875. catch (Exception ex)
  4876. {
  4877. return Ok(JsonView(false, ex.Message));
  4878. }
  4879. }
  4880. #endregion
  4881. #region op费用录入
  4882. /// <summary>
  4883. /// 根据diid查询op费用列表
  4884. /// </summary>
  4885. /// <param name="dto"></param>
  4886. /// <returns></returns>
  4887. [HttpPost]
  4888. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4889. public async Task<IActionResult> QueryCarTouristGuideGroundByDiId(CarTouristGuideGroundDto dto)
  4890. {
  4891. try
  4892. {
  4893. Result groupData = await _carTouristGuideGroundRep.QueryCarTouristGuideGroundByDiId(dto);
  4894. if (groupData.Code != 0)
  4895. {
  4896. return Ok(JsonView(false, groupData.Msg));
  4897. }
  4898. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  4899. }
  4900. catch (Exception ex)
  4901. {
  4902. return Ok(JsonView(false, ex.Message));
  4903. }
  4904. }
  4905. /// <summary>
  4906. /// 根据op费用Id查询单条数据及c表数据
  4907. /// </summary>
  4908. /// <param name="dto"></param>
  4909. /// <returns></returns>
  4910. [HttpPost]
  4911. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4912. public async Task<IActionResult> QueryCarTouristGuideGroundById(CarTouristGuideGroundIdDto dto)
  4913. {
  4914. try
  4915. {
  4916. Grp_CarTouristGuideGroundReservations _groupData = await _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().FirstAsync(a => a.Id == dto.Id && a.IsDel == 0);
  4917. Grp_CreditCardPayment _creditCardPayment = await _sqlSugar.Queryable<Grp_CreditCardPayment>().FirstAsync(a => a.CId == dto.Id && a.CTable == 79 && a.IsDel == 0);
  4918. var data = new
  4919. {
  4920. CarTouristGuideGround = _groupData,
  4921. CreditCardPayment = _creditCardPayment
  4922. };
  4923. return Ok(JsonView(true, "查询成功!", data));
  4924. }
  4925. catch (Exception ex)
  4926. {
  4927. return Ok(JsonView(false, "程序错误!"));
  4928. }
  4929. }
  4930. /// <summary>
  4931. /// op费用删除
  4932. /// </summary>
  4933. /// <param name="dto"></param>
  4934. /// <returns></returns>
  4935. [HttpPost]
  4936. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4937. public async Task<IActionResult> DelCarTouristGuideGround(DelBaseDto dto)
  4938. {
  4939. try
  4940. {
  4941. var res = await _carTouristGuideGroundRep.SoftDeleteByIdAsync<Grp_CarTouristGuideGroundReservations>(dto.Id.ToString(), dto.DeleteUserId);
  4942. if (!res)
  4943. {
  4944. return Ok(JsonView(false, "删除失败"));
  4945. }
  4946. var result = await _sqlSugar.Updateable<Grp_CarTouristGuideGroundReservationsContent>().Where(a => a.CTGGRId == dto.Id && a.IsDel == 0).SetColumns(a => new Grp_CarTouristGuideGroundReservationsContent()
  4947. {
  4948. IsDel = 1,
  4949. DeleteUserId = dto.DeleteUserId,
  4950. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  4951. }).ExecuteCommandAsync();
  4952. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 79).SetColumns(a => new Grp_CreditCardPayment()
  4953. {
  4954. IsDel = 1,
  4955. DeleteUserId = dto.DeleteUserId,
  4956. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  4957. }).ExecuteCommandAsync();
  4958. return Ok(JsonView(true, "删除成功!"));
  4959. }
  4960. catch (Exception ex)
  4961. {
  4962. return Ok(JsonView(false, "程序错误!"));
  4963. throw;
  4964. }
  4965. }
  4966. /// <summary>
  4967. /// op费用录入操作(Status:1.新增,2.修改)
  4968. /// </summary>
  4969. /// <param name="dto"></param>
  4970. /// <returns></returns>
  4971. [HttpPost]
  4972. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4973. public async Task<IActionResult> OpCarTouristGuideGround(OpCarTouristGuideGroundDto dto)
  4974. {
  4975. try
  4976. {
  4977. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGround(dto);
  4978. if (groupData.Code != 0)
  4979. {
  4980. return Ok(JsonView(false, groupData.Msg));
  4981. }
  4982. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  4983. }
  4984. catch (Exception ex)
  4985. {
  4986. return Ok(JsonView(false, ex.Message));
  4987. }
  4988. }
  4989. /// <summary>
  4990. /// 填写费用详细页面初始化绑定
  4991. /// </summary>
  4992. /// <param name="dto"></param>
  4993. /// <returns></returns>
  4994. [HttpPost]
  4995. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4996. public IActionResult CarTouristGuideGroundContentInitialize(CarTouristGuideGroundContentDto dto)
  4997. {
  4998. try
  4999. {
  5000. Result groupData = _carTouristGuideGroundRep.CarTouristGuideGroundContent(dto);
  5001. if (groupData.Code != 0)
  5002. {
  5003. return Ok(JsonView(false, groupData.Msg));
  5004. }
  5005. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5006. }
  5007. catch (Exception ex)
  5008. {
  5009. return Ok(JsonView(false, ex.Message));
  5010. }
  5011. }
  5012. /// <summary>
  5013. /// 根据op费用Id查询详细数据
  5014. /// </summary>
  5015. /// <param name="dto"></param>
  5016. /// <returns></returns>
  5017. [HttpPost]
  5018. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5019. public IActionResult OpCarTouristGuideGroundContentById(CarTouristGuideGroundIdDto dto)
  5020. {
  5021. try
  5022. {
  5023. Result groupData = _carTouristGuideGroundRep.OpCarTouristGuideGroundContentById(dto);
  5024. if (groupData.Code != 0)
  5025. {
  5026. return Ok(JsonView(false, groupData.Msg));
  5027. }
  5028. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5029. }
  5030. catch (Exception ex)
  5031. {
  5032. return Ok(JsonView(false, ex.Message));
  5033. }
  5034. }
  5035. /// <summary>
  5036. /// OP费用录入填写详情
  5037. /// </summary>
  5038. /// <param name="dto"></param>
  5039. /// <returns></returns>
  5040. [HttpPost]
  5041. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5042. public async Task<IActionResult> OpCarTouristGuideGroundContent(OpCarTouristGuideGroundContentDto dto)
  5043. {
  5044. try
  5045. {
  5046. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGroundContent(dto);
  5047. if (groupData.Code != 0)
  5048. {
  5049. return Ok(JsonView(false, groupData.Msg));
  5050. }
  5051. #region 应用推送
  5052. try
  5053. {
  5054. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  5055. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  5056. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  5057. }
  5058. catch (Exception ex)
  5059. {
  5060. }
  5061. #endregion
  5062. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5063. }
  5064. catch (Exception ex)
  5065. {
  5066. return Ok(JsonView(false, ex.Message));
  5067. }
  5068. }
  5069. /// <summary>
  5070. /// 获取三公详细所有城市
  5071. /// </summary>
  5072. /// <returns></returns>
  5073. [HttpGet]
  5074. public IActionResult OpCarCityResult()
  5075. {
  5076. var jw = JsonView(false);
  5077. var data = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(x => x.IsDel == 0).Select(x => new
  5078. {
  5079. x.Id,
  5080. x.Country,
  5081. x.City,
  5082. }).ToList();
  5083. if (data.Count > 0)
  5084. {
  5085. jw = JsonView(true, "获取成功!", data);
  5086. }
  5087. else
  5088. {
  5089. jw.Msg = "城市数据未空!";
  5090. jw.Data = new string[0];
  5091. }
  5092. return Ok(jw);
  5093. }
  5094. #region OP行程单
  5095. /// <summary>
  5096. /// OP行程单初始化
  5097. /// </summary>
  5098. /// <param name="dto"></param>
  5099. /// <returns></returns>
  5100. [HttpPost]
  5101. public IActionResult InitOpTravel(InitOpTravelDto dto)
  5102. {
  5103. var jw = JsonView(false);
  5104. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  5105. var group = groupList.First();
  5106. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  5107. if (group == null)
  5108. {
  5109. jw.Msg = "暂无团组!";
  5110. return Ok(jw);
  5111. }
  5112. group = groupList.Find(x => x.Id == diid);
  5113. if (group == null)
  5114. {
  5115. jw.Msg = "请输入正确的团组ID!";
  5116. return Ok(jw);
  5117. }
  5118. string city = string.Empty;
  5119. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(x => x.IsDel == 0 && x.DiId == diid).ToList();
  5120. if (blackCode.Count > 0)
  5121. {
  5122. var black = blackCode.First();
  5123. black.BlackCode = black.BlackCode == null ? "" : black.BlackCode;
  5124. var blackSp = Regex.Split(black.BlackCode, "\\d+\\.", RegexOptions.IgnoreCase).Where(x => !string.IsNullOrWhiteSpace(x)).ToArray();
  5125. if (blackSp.Length > 0)
  5126. {
  5127. try
  5128. {
  5129. var cityArrCode = new List<string>(20);
  5130. foreach (var item in blackSp)
  5131. {
  5132. var itemSp = item.Split(' ').Where(x => !string.IsNullOrWhiteSpace(x)).ToList();
  5133. var IndexSelect = itemSp[2];
  5134. var cityArrCodeLength = cityArrCode.Count - 1;
  5135. var startCity = IndexSelect.Substring(0, 3);
  5136. if (cityArrCodeLength > 0)
  5137. {
  5138. var arrEndCity = cityArrCode[cityArrCodeLength];
  5139. if (arrEndCity != startCity)
  5140. {
  5141. cityArrCode.Add(startCity.ToUpper());
  5142. }
  5143. }
  5144. else
  5145. {
  5146. cityArrCode.Add(startCity.ToUpper());
  5147. }
  5148. var endCity = IndexSelect.Substring(3, 3);
  5149. cityArrCode.Add(endCity.ToUpper());
  5150. }
  5151. var cityThree = string.Empty;
  5152. cityArrCode.ForEach(x => cityThree += "'" + x + "',");
  5153. cityThree = cityThree.TrimEnd(',');
  5154. if (string.IsNullOrWhiteSpace(cityThree))
  5155. {
  5156. throw new
  5157. Exception("error");
  5158. }
  5159. string sql = $"SELECT * FROM Res_ThreeCode rtc WHERE UPPER(rtc.Three) in ({cityThree}) ";
  5160. var cityArr = _sqlSugar.SqlQueryable<Res_ThreeCode>(sql).ToList();
  5161. foreach (var item in cityArrCode)
  5162. {
  5163. var find = cityArr.Find(x => x.Three.ToUpper() == item.ToUpper());
  5164. if (find != null)
  5165. {
  5166. city += find.City + "/";
  5167. }
  5168. else
  5169. {
  5170. city += item + "三字码未收入/";
  5171. }
  5172. }
  5173. city = city.TrimEnd('/');
  5174. }
  5175. catch (Exception e)
  5176. {
  5177. city = "黑屏代码格式不正确!";
  5178. }
  5179. }
  5180. }
  5181. else
  5182. {
  5183. city = "未录入黑屏代码";
  5184. }
  5185. var OpTravelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0).OrderBy(x => x.Days).Select(x => new TravelArrView
  5186. {
  5187. Date = x.Date,
  5188. Days = x.Days,
  5189. Diffgroup = x.Diffgroup,
  5190. Diid = x.Diid,
  5191. Traffic_First = x.Traffic_First,
  5192. Traffic_Second = x.Traffic_Second,
  5193. Trip = x.Trip,
  5194. WeekDay = x.WeekDay,
  5195. Id = x.Id
  5196. }).ToList();
  5197. jw.Data = new
  5198. {
  5199. groupList = groupList.Select(x => new
  5200. {
  5201. x.Id,
  5202. x.TeamName,
  5203. x.TourCode
  5204. }).ToList(),
  5205. groupInfo = new
  5206. {
  5207. group.VisitDays,
  5208. group.TourCode,
  5209. group.VisitPNumber,
  5210. group.TeamName,
  5211. city
  5212. },
  5213. OpTravelList
  5214. };
  5215. jw.Code = 200;
  5216. jw.Msg = "操作成功!";
  5217. return Ok(jw);
  5218. }
  5219. /// <summary>
  5220. /// 删除团组行程单
  5221. /// </summary>
  5222. /// <returns></returns>
  5223. [HttpPost]
  5224. public IActionResult DelTravel(DelOpTravelDto dto)
  5225. {
  5226. var jw = JsonView(false);
  5227. if (dto.UserId <= 0 || dto.Diid <= 0)
  5228. {
  5229. jw.Msg = "请输入正确的参数!";
  5230. return Ok(jw);
  5231. }
  5232. var isTrue = _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Diid == dto.Diid && x.IsDel == 0)
  5233. .SetColumns(x => new Grp_TravelList
  5234. {
  5235. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  5236. DeleteUserId = dto.UserId,
  5237. IsDel = 1,
  5238. }).ExecuteCommand();
  5239. jw = JsonView(true);
  5240. return Ok(jw);
  5241. }
  5242. /// <summary>
  5243. /// 行程单保存
  5244. /// </summary>
  5245. /// <returns></returns>
  5246. [HttpPost]
  5247. public IActionResult TravelSave(TravelSaveDto dto)
  5248. {
  5249. var jw = JsonView(false);
  5250. if (dto.Arr.Count > 0)
  5251. {
  5252. try
  5253. {
  5254. _sqlSugar.BeginTran();
  5255. foreach (var item in dto.Arr)
  5256. {
  5257. if (item.Id == 0)
  5258. {
  5259. throw new Exception("请传入正确的Id");
  5260. }
  5261. _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Id == item.Id)
  5262. .SetColumns(x => new Grp_TravelList
  5263. {
  5264. Trip = item.Trip
  5265. }).ExecuteCommand();
  5266. }
  5267. _sqlSugar.CommitTran();
  5268. jw = JsonView(true);
  5269. }
  5270. catch (Exception ex)
  5271. {
  5272. _sqlSugar.RollbackTran();
  5273. jw.Msg = "程序异常!" + ex.Message;
  5274. }
  5275. }
  5276. else
  5277. {
  5278. jw.Msg = "请传入正确的参数!";
  5279. }
  5280. return Ok(jw);
  5281. }
  5282. /// <summary>
  5283. /// 导出行程单
  5284. /// </summary>
  5285. /// <param name="dto"></param>
  5286. /// <returns></returns>
  5287. [HttpPost]
  5288. public IActionResult ExportTravel(InitOpTravelDto dto)
  5289. {
  5290. var jw = JsonView(false);
  5291. //数据源
  5292. List<Grp_TravelList> _travelList = new List<Grp_TravelList>();
  5293. int diid = 0;
  5294. var Find = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid);
  5295. if (Find == null)
  5296. {
  5297. jw.Msg = "请选择正确的团组!";
  5298. return Ok(jw);
  5299. }
  5300. else
  5301. {
  5302. diid = Find.Id;
  5303. }
  5304. DataTable dtBlack = null;
  5305. try
  5306. {
  5307. dtBlack = GetTableByBlackCode(diid);
  5308. }
  5309. catch (Exception)
  5310. {
  5311. jw.Msg = "机票黑屏代码有误!";
  5312. return Ok(jw);
  5313. }
  5314. string CityStr1 = "";
  5315. List<string> countriesList = new List<string>();
  5316. List<string> cityList = new List<string>();
  5317. string countriesIntroduction = "";
  5318. string cityIntroduction = "";
  5319. string timeDifference = "";
  5320. string currExchangeRate = "";
  5321. string txt_itemPrepare = "";
  5322. string txt_specialReminder = "";
  5323. string txt_cGPrecautions = "";
  5324. string txt_yGCG = "";
  5325. string txt_conduct = "";
  5326. string txt_commonEnglish = "";
  5327. if (dtBlack == null && (dtBlack.Rows[0]["Day"] == null || dtBlack.Rows[0]["Day"].ToString() == ""))
  5328. {
  5329. //提示
  5330. //PublicCode.GetAlertMsg(this, GetType(), dt.Rows[dt.Rows.Count - 1]["Error"].ToString());
  5331. }
  5332. else
  5333. {
  5334. //创建三字码示例
  5335. Res_ThreeCode t = new Res_ThreeCode();
  5336. //城市缓存
  5337. string city = "";
  5338. //出访城市
  5339. for (int i = 0; i < dtBlack.Rows.Count; i++)
  5340. {
  5341. if ((i + 1) < dtBlack.Rows.Count && dtBlack.Rows[i]["Three"].ToString() == dtBlack.Rows[i + 1]["Three"].ToString())
  5342. {
  5343. continue;
  5344. }
  5345. if (dtBlack.Rows.Count > 0 && (dtBlack.Rows[i]["Three"].ToString() != null && dtBlack.Rows[i]["Three"].ToString() != ""))
  5346. {
  5347. //出发城市
  5348. string cityTemp = dtBlack.Rows[i]["Three"].ToString().Replace("/", string.Empty).Substring(0, 3);
  5349. t = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three == cityTemp && x.IsDel == 0);
  5350. if (t != null)
  5351. {
  5352. city = city + "/" + t.City;
  5353. }
  5354. else
  5355. {
  5356. city = city + "/【" + cityTemp + "未收录,请联系机票同事录入】";
  5357. }
  5358. if (i == dtBlack.Rows.Count - 1)
  5359. {
  5360. //抵达城市
  5361. cityTemp = dtBlack.Rows[i]["Three"].ToString().Replace("/", string.Empty).Substring(3, 3);
  5362. t = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three == cityTemp && x.IsDel == 0);
  5363. if (t != null)
  5364. {
  5365. city = city + "/" + t.City;
  5366. }
  5367. else
  5368. {
  5369. city = city + "/【" + cityTemp + "未收录,请联系机票同事录入】";
  5370. }
  5371. }
  5372. }
  5373. }
  5374. if (city != "" && city != null)
  5375. {
  5376. string[] cityStr2 = city.Split('/');
  5377. string[] strs = cityStr2.Distinct().ToArray(); ;
  5378. string str = "";
  5379. foreach (var s in strs)
  5380. {
  5381. str += s + "/";
  5382. }
  5383. str = str.TrimStart('/');
  5384. str = str.TrimEnd('/');
  5385. //lblTourCity.Text = "去重前:" + city.TrimStart('/') + "\n 去重后:" + str;
  5386. CityStr1 = city.TrimStart('/');
  5387. }
  5388. // 行程repeater
  5389. if (GetByDiid(diid).Count > 0)
  5390. {
  5391. _travelList = GetByDiid(diid).Where(x => x.Issel == 1 && x.IsDel == 0).ToList();
  5392. }
  5393. else
  5394. {
  5395. //生成该时间段日期
  5396. List<string> timeList = GetTimeListByDataTable(dtBlack);
  5397. if (timeList != null)
  5398. {
  5399. string[] str = new string[timeList.Count];
  5400. //rpData.DataSource = str;
  5401. //rpData.DataBind();
  5402. }
  5403. }
  5404. }
  5405. //创建数据源Table
  5406. DataTable dtSource = new DataTable();
  5407. dtSource.Columns.Add("Days", typeof(string));
  5408. dtSource.Columns.Add("Date", typeof(string));
  5409. dtSource.Columns.Add("Week", typeof(string));
  5410. dtSource.Columns.Add("Traffic", typeof(string));
  5411. dtSource.Columns.Add("Trip", typeof(string));
  5412. //获取数据,放到datatable
  5413. foreach (var item in _travelList)
  5414. {
  5415. DataRow dr = dtSource.NewRow();
  5416. dr["Days"] = item.Days;
  5417. dr["Date"] = item.Date;
  5418. dr["Week"] = item.WeekDay;
  5419. dr["Traffic"] = item.Traffic_First
  5420. + "\r\n"
  5421. + item.Traffic_Second;
  5422. if (item.Trip.Replace("(此地区为黄热病地区,请注意打疫苗)", "").Length < 15)
  5423. {
  5424. item.Trip += @"
  5425. 08:00 早餐于酒店;
  5426. 09:00 公务活动;
  5427. 10:30 公务活动;
  5428. 12:00 午餐于当地餐厅;
  5429. 14:00 公务活动;
  5430. 16:00 公务活动;
  5431. 18:00 晚餐于当地餐厅;
  5432. 19:00 入住酒店休息;";
  5433. }
  5434. dr["Trip"] = item.Trip;
  5435. dtSource.Rows.Add(dr);
  5436. }
  5437. //lblTeamName.Text = di.TourCode;
  5438. //lblVisitDays.Text = di.VisitDays.ToString();
  5439. //lblVisitDays2.Text = di.VisitDays.ToString();
  5440. //lblPNumber.Text = di.VisitPNumber.ToString();
  5441. //lblGroup.Text = di.TeamName.ToString();
  5442. Dictionary<string, string> dic = new Dictionary<string, string>();
  5443. dic.Add("Dele", Find.TeamName.ToString() + GetNum(Find.VisitDays.ToString()));
  5444. dic.Add("City", CityStr1);
  5445. dic.Add("Days", Find.VisitDays.ToString());
  5446. dic.Add("DeleCode", Find.TourCode);
  5447. dic.Add("Pnum", Find.VisitPNumber.ToString());
  5448. dic.Add("Pnum2", Find.VisitPNumber.ToString());
  5449. List<Crm_DeleClient> leader = GetByDiidClient(Find.Id);
  5450. if (leader != null && leader.Count > 0)
  5451. {
  5452. dic.Add("Leader", GetByDiidClient(Find.Id)[0].LastName + GetByDiidClient(Find.Id)[0].FirstName);
  5453. }
  5454. else
  5455. {
  5456. dic.Add("Leader", "");
  5457. }
  5458. dic.Add("Pnum3", Find.VisitPNumber.ToString());
  5459. int UserId = 253;
  5460. dic.Add("OP", "");
  5461. dic.Add("OPTel", "");
  5462. //dic.Add("OP", "OP姓名");
  5463. //dic.Add("OPTel", "OP手机号码");
  5464. string countriesStr = "";
  5465. countriesList.ForEach(s => countriesStr += s + "、");
  5466. countriesStr = countriesStr.TrimEnd('、');
  5467. string cityStr = "";
  5468. cityList.ForEach(s => cityStr += s + "、");
  5469. cityStr = cityStr.TrimEnd('、');
  5470. //下方数据
  5471. dic.Add("selCountries", countriesStr == null ? "" : countriesStr);
  5472. dic.Add("selCity", cityStr == null ? "" : cityStr);
  5473. dic.Add("countriesIntroduction", countriesIntroduction == null ? "" : countriesIntroduction);
  5474. dic.Add("CityIntroduction", cityIntroduction == null ? "" : cityIntroduction);
  5475. dic.Add("timeDifference", timeDifference == null ? "" : timeDifference);
  5476. dic.Add("currExchangeRate", currExchangeRate == null ? "" : currExchangeRate);
  5477. dic.Add("temperature", "");
  5478. dic.Add("txt_itemPrepare", txt_itemPrepare == null ? "" : txt_itemPrepare);
  5479. dic.Add("txt_specialReminder", txt_specialReminder == null ? "" : txt_specialReminder);
  5480. dic.Add("txt_cGPrecautions", txt_cGPrecautions == null ? "" : txt_cGPrecautions);
  5481. dic.Add("txt_yGCG", txt_yGCG == null ? "" : txt_yGCG);
  5482. dic.Add("txt_conduct", txt_conduct == null ? "" : txt_conduct);
  5483. dic.Add("txt_commonEnglish", txt_commonEnglish == null ? "" : txt_commonEnglish);
  5484. //模板路径
  5485. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Travel/日行程3.docx";
  5486. //载入模板
  5487. Document doc = null;
  5488. DocumentBuilder builder = null;
  5489. try
  5490. {
  5491. //载入模板
  5492. doc = new Document(tempPath);
  5493. builder = new DocumentBuilder(doc);
  5494. }
  5495. catch (Exception)
  5496. {
  5497. jw.Msg = "模板位置不存在!";
  5498. return Ok(jw);
  5499. }
  5500. foreach (var key in dic.Keys)
  5501. {
  5502. Bookmark bookmark = doc.Range.Bookmarks[key];
  5503. if (bookmark != null)
  5504. {
  5505. builder.MoveToBookmark(key);
  5506. builder.Write(dic[key]);
  5507. }
  5508. }
  5509. //获取word里所有表格
  5510. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  5511. //获取所填表格的序数
  5512. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  5513. try
  5514. {
  5515. //循环赋值
  5516. for (int i = 0; i < dtSource.Rows.Count; i++)
  5517. {
  5518. builder.MoveToCell(0, i + 1, 0, 0);
  5519. builder.Write(dtSource.Rows[i]["Days"].ToString());
  5520. builder.MoveToCell(0, i + 1, 1, 0);
  5521. builder.Write(dtSource.Rows[i]["Date"].ToString() + "\r\n" + dtSource.Rows[i]["Week"].ToString());
  5522. builder.MoveToCell(0, i + 1, 2, 0);
  5523. builder.Write(dtSource.Rows[i]["Traffic"].ToString());
  5524. var trip = dtSource.Rows[i]["Trip"].ToString();
  5525. builder.MoveToCell(0, i + 1, 3, 0);
  5526. builder.Write(trip);
  5527. var cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 1, true);
  5528. var paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  5529. // 获取特定索引的段落
  5530. Paragraph paragraph = (Paragraph)paragraphs[0];
  5531. Run run = paragraph.Runs[0];
  5532. Aspose.Words.Font font = run.Font;
  5533. font.Name = "黑体";
  5534. //设置双休红色
  5535. cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 3, true);
  5536. paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  5537. paragraph = (Paragraph)paragraphs[1];
  5538. if (paragraph.GetText().Contains("星期六") || paragraph.GetText().Contains("星期日"))
  5539. {
  5540. run = paragraph.Runs[0];
  5541. font = run.Font;
  5542. font.Color = Color.Red;
  5543. }
  5544. }
  5545. }
  5546. catch (Exception ex)
  5547. {
  5548. }
  5549. //删除多余行
  5550. while (tableOne.Rows.Count > 1 + dtSource.Rows.Count)
  5551. {
  5552. tableOne.Rows.RemoveAt(1 + dtSource.Rows.Count);//(1+dtSource.Rows.Count + 1)-1
  5553. }
  5554. string savePath = AppSettingsHelper.Get("WordBasePath") + "Travel/export/";
  5555. if (!Directory.Exists(savePath))
  5556. {
  5557. try
  5558. {
  5559. Directory.CreateDirectory(savePath);
  5560. }
  5561. catch
  5562. {
  5563. }
  5564. }
  5565. string path = savePath + Find.TeamName + "出访日程.docx";
  5566. try
  5567. {
  5568. doc.Save(path, Aspose.Words.SaveFormat.Doc);
  5569. jw = JsonView(true, "导出成功", path);
  5570. }
  5571. catch (Exception)
  5572. {
  5573. jw = JsonView(false);
  5574. }
  5575. return Ok(jw);
  5576. }
  5577. /// <summary>
  5578. ///根据机票黑屏代码整理DataTable
  5579. /// </summary>
  5580. /// <param name="diid"></param>
  5581. /// <returns></returns>
  5582. DataTable GetTableByBlackCode(int diid)
  5583. {
  5584. //黑屏代码信息
  5585. List<Air_TicketBlackCode> listcode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(x => x.DiId == diid && x.IsDel == 0).ToList();
  5586. //测试数据为序号,航班号,起飞日期,三字码,起飞时刻,到达时刻,出发航站楼,到达航站楼,机型,飞行时间
  5587. //1.3U8391 TU17NOV CTUCAI 0220 0715 T1 T2 330 10H55M
  5588. DataTable dt = new DataTable();
  5589. dt.Columns.Add("Fliagtcode", typeof(string)); //航班号
  5590. dt.Columns.Add("Date", typeof(string));//起飞日期
  5591. dt.Columns.Add("Three", typeof(string));//三字码
  5592. dt.Columns.Add("StartTime", typeof(string));//起飞时刻
  5593. dt.Columns.Add("EndTime", typeof(string));//到达时刻
  5594. dt.Columns.Add("StartBuilding", typeof(string));//出发航站楼
  5595. dt.Columns.Add("EndBuilding", typeof(string));//到达航站楼
  5596. dt.Columns.Add("AirModel", typeof(string)); //机型
  5597. dt.Columns.Add("FlightTime", typeof(string));//飞行时间
  5598. dt.Columns.Add("Day", typeof(string));//整理的起飞日期;作为排序依据
  5599. dt.Columns.Add("ArrivedDate", typeof(string));//整理的到达日期
  5600. dt.Columns.Add("Error", typeof(string));//整理的到达日期
  5601. dt.Columns.Add("Sign", typeof(string));//标识:0表示为原生黑屏代码、1表示“+1”新增的黑屏代码
  5602. //判断是否录入黑屏代码
  5603. if (listcode.Count() == 0 || listcode == null)
  5604. {
  5605. dt.Rows.Add(null, null, null, null, null, null, null, null, null, null, null, "黑屏代码未录入!", null);
  5606. }
  5607. else
  5608. {
  5609. //读取单段黑屏代码
  5610. for (int i = 0; i < listcode.Count; i++)
  5611. {
  5612. //去除序号
  5613. string[] CodeList = Regex.Split(listcode[i].BlackCode, "\\d+\\.", RegexOptions.IgnoreCase);
  5614. //去除多余空格,方法一Linq扩展方法
  5615. CodeList = CodeList.Where(str => str != "").ToArray();
  5616. CodeList = CodeList.Where(str => str != " ").ToArray();
  5617. //年
  5618. int year = Convert.ToInt32(DateTime.Now.Year.ToString());
  5619. //读取单条黑屏代码
  5620. for (int j = 0; j < CodeList.Count(); j++)
  5621. {
  5622. //去除多余空格,方法二使用Split()方法进行分割,分割有一个选项是RemoveEmptyEntries
  5623. CodeList[j] = CodeList[j].Replace("\r\n", string.Empty).Replace("\\r\\n", string.Empty).TrimStart().TrimEnd();
  5624. string[] Info = CodeList[j].Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  5625. //string[] Info = CodeList[j].Replace("\r\n", string.Empty).Replace("\\r\\n", string.Empty)
  5626. // .TrimStart().TrimEnd().Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  5627. //去除多余空格
  5628. Info = Info.Where(str => str != "").ToArray();
  5629. Info = Info.Where(str => str != " ").ToArray();
  5630. //判断黑屏代码是否正确拆分; 理应拆成9段
  5631. if (Info.Count() < 9)
  5632. {
  5633. dt.Rows.Add(null, null, null, null, null, null, null, null, null, null, null, "本团组第" + (i + 1) + "段黑屏代码中第" + (j + 1) + " 条有误,请联系机票同事核对", null);
  5634. }
  5635. else
  5636. {
  5637. try
  5638. {
  5639. //月
  5640. int month = Convert.ToInt32(GetLonger(Info[1].Substring(4, 3)));
  5641. //日
  5642. int day = Convert.ToInt32(Info[1].Substring(2, 2));
  5643. #region 逐一比较月份,判断是否翻年;逐一比较三字码顶真,判断是否跑错机场
  5644. if (j > 0)
  5645. {
  5646. string[] Temp = CodeList[j - 1].Replace("\r\n", string.Empty).Replace("\\r\\n", string.Empty)
  5647. .TrimStart().TrimEnd().Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  5648. Temp = Temp.Where(str => str != "").ToArray();
  5649. Temp = Temp.Where(str => str != " ").ToArray();
  5650. int monthTemp = Convert.ToInt32(GetLonger(Temp[1].Substring(4, 3)));
  5651. // 如果相邻月份之差小于0,则证明次一条年份需+1
  5652. if (month - monthTemp < 0)
  5653. {
  5654. year = year + 1;
  5655. }
  5656. //如果相邻代码三字码不顶真,提醒
  5657. string FootThree = Temp[2].Substring(3, 3);
  5658. string HeadThree = Info[2].Substring(0, 3);
  5659. if (FootThree != HeadThree)
  5660. {
  5661. //DelegationInfoService s = new DelegationInfoService();
  5662. //UsersService us = new UsersService();
  5663. //GroupsTaskAssignmentService gts = new GroupsTaskAssignmentService();
  5664. //77 行程
  5665. List<Grp_GroupsTaskAssignment> list2 = _sqlSugar.Queryable<Grp_GroupsTaskAssignment>().Where(x => x.CTId == 77 && x.DIId == diid && x.IsDel == 0).ToList();
  5666. foreach (var temp in list2)
  5667. {
  5668. //if (temp.UId != 21)
  5669. //SendAndReturn(us.GetUsersByID(temp.UId).Email,
  5670. // "黑屏代码提醒",
  5671. // s.GetDelegationInfoByID(diid).TeamName + "的机票黑屏代码中,相邻航段的三字码不连续,请查看!");
  5672. }
  5673. //85 机票预订
  5674. List<Grp_GroupsTaskAssignment> list6 = _sqlSugar.Queryable<Grp_GroupsTaskAssignment>().Where(x => x.CTId == 85 && x.DIId == diid && x.IsDel == 0).ToList();
  5675. foreach (var temp in list6)
  5676. {
  5677. //if (temp.UId != 21)
  5678. //SendAndReturn(us.GetUsersByID(temp.UId).Email,
  5679. // "黑屏代码提醒",
  5680. // s.GetDelegationInfoByID(diid).TeamName + "的机票黑屏代码中,相邻航段的三字码不连续,请查看!");
  5681. }
  5682. }
  5683. }
  5684. #endregion
  5685. #region 判断到达日期是否需要加1
  5686. if (Info[4].Contains("+"))
  5687. {
  5688. //日期+1
  5689. day = day + 1;
  5690. //判断是否进入下一月
  5691. if (day > Convert.ToInt32(GetDaysByMonth(Info[1].Substring(4, 3), year)))
  5692. {
  5693. day = day - Convert.ToInt32(GetDaysByMonth(Info[1].Substring(4, 3), year));
  5694. month = month + 1;
  5695. //判断是否进入下一年
  5696. if (month > 12)
  5697. {
  5698. month = month - 12;
  5699. year = year + 1;
  5700. }
  5701. }
  5702. //月份整理格式
  5703. string monthTemp = month.ToString();
  5704. if (month < 10)
  5705. {
  5706. monthTemp = "0" + monthTemp;
  5707. }
  5708. //日期整理格式
  5709. string daytemp = day.ToString();
  5710. if (day < 10)
  5711. {
  5712. daytemp = "0" + daytemp;
  5713. }
  5714. string temp = Info[4].Split('+')[0];
  5715. //添加起飞数据
  5716. dt.Rows.Add(Info[0],
  5717. Info[1],
  5718. Info[2],
  5719. Info[3],
  5720. temp,
  5721. Info[5],
  5722. Info[6],
  5723. Info[7],
  5724. Info[8],
  5725. year + "-" + GetLonger(Info[1].Substring(4, 3)) + "-" + Info[1].Substring(2, 2),
  5726. year + "-" + monthTemp + "-" + daytemp,
  5727. "",
  5728. "0");
  5729. //加1天,添加到达数据
  5730. dt.Rows.Add(Info[0],
  5731. Info[1].Replace(Info[1].Substring(2, 2), daytemp),
  5732. Info[2],
  5733. Info[3],
  5734. temp,
  5735. Info[5],
  5736. Info[6],
  5737. Info[7],
  5738. Info[8],
  5739. year + "-" + monthTemp + "-" + daytemp,
  5740. year + "-" + monthTemp + "-" + daytemp,
  5741. "",
  5742. "1");
  5743. }
  5744. else
  5745. {
  5746. //月份整理格式
  5747. string monthTemp = month.ToString();
  5748. if (month < 10)
  5749. {
  5750. monthTemp = "0" + monthTemp;
  5751. }
  5752. //日期整理格式
  5753. string daytemp = day.ToString();
  5754. if (day < 10)
  5755. {
  5756. daytemp = "0" + daytemp;
  5757. }
  5758. dt.Rows.Add(Info[0],
  5759. Info[1],
  5760. Info[2],
  5761. Info[3],
  5762. Info[4],
  5763. Info[5],
  5764. Info[6],
  5765. Info[7],
  5766. Info[8],
  5767. year + "-" + monthTemp + "-" + daytemp,
  5768. year + "-" + monthTemp + "-" + daytemp,
  5769. "",
  5770. "0");
  5771. }
  5772. #endregion
  5773. }
  5774. catch (Exception ex)
  5775. {
  5776. string exstr = ex.Message.ToString();
  5777. }
  5778. }
  5779. }
  5780. //排序
  5781. dt.DefaultView.Sort = "Day asc";
  5782. dt = dt.DefaultView.ToTable();
  5783. }
  5784. }
  5785. return dt;
  5786. }
  5787. /// <summary>
  5788. /// 根据团组编号查询信息
  5789. /// </summary>
  5790. /// <returns>返回空或者对象信息</returns>
  5791. List<Grp_TravelList> GetByDiid(int Diid)
  5792. {
  5793. //调用获取单个对象的方法
  5794. return _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == Diid && x.IsDel == 0).ToList();
  5795. }
  5796. /// <summary>
  5797. /// 20210816
  5798. /// 根据datatable生成某一时间段的日期
  5799. /// </summary>
  5800. /// <param name="dt">黑屏代码生成的datatable</param>
  5801. /// <returns></returns>
  5802. List<string> GetTimeListByDataTable(DataTable dt)
  5803. {
  5804. if (dt.Rows[0]["Day"].ToString() != "")
  5805. {
  5806. DateTime datestart = Convert.ToDateTime(dt.Rows[0]["Day"].ToString());
  5807. DateTime dateend = Convert.ToDateTime(dt.Rows[dt.Rows.Count - 1]["ArrivedDate"].ToString());
  5808. List<string> timeList = new List<string>();
  5809. while (datestart <= dateend)
  5810. {
  5811. timeList.Add(datestart.ToString("yyyy-MM-dd"));
  5812. datestart = datestart.AddDays(1);
  5813. }
  5814. return timeList;
  5815. }
  5816. return null;
  5817. }
  5818. /// <summary>
  5819. /// 根据大写数字返回小写数字或根据小写数字返回大写数字
  5820. /// </summary>
  5821. /// <param name="num"></param>
  5822. /// <returns></returns>
  5823. string GetNum(string num)
  5824. {
  5825. string str = "";
  5826. switch (num)
  5827. {
  5828. case "1":
  5829. str = "一";
  5830. break;
  5831. case "2":
  5832. str = "二";
  5833. break;
  5834. case "3":
  5835. str = "三";
  5836. break;
  5837. case "4":
  5838. str = "四";
  5839. break;
  5840. case "5":
  5841. str = "五";
  5842. break;
  5843. case "6":
  5844. str = "六";
  5845. break;
  5846. case "7":
  5847. str = "七";
  5848. break;
  5849. case "8":
  5850. str = "八";
  5851. break;
  5852. case "9":
  5853. str = "九";
  5854. break;
  5855. case "10":
  5856. str = "十";
  5857. break;
  5858. case "11":
  5859. str = "十一";
  5860. break;
  5861. case "12":
  5862. str = "十二";
  5863. break;
  5864. case "一":
  5865. str = "1";
  5866. break;
  5867. case "二":
  5868. str = "2";
  5869. break;
  5870. case "三":
  5871. str = "3";
  5872. break;
  5873. case "四":
  5874. str = "4";
  5875. break;
  5876. case "五":
  5877. str = "5";
  5878. break;
  5879. case "六":
  5880. str = "6";
  5881. break;
  5882. case "七":
  5883. str = "7";
  5884. break;
  5885. case "八":
  5886. str = "8";
  5887. break;
  5888. case "九":
  5889. str = "9";
  5890. break;
  5891. case "十":
  5892. str = "10";
  5893. break;
  5894. case "十一":
  5895. str = "11";
  5896. break;
  5897. case "十二":
  5898. str = "12";
  5899. break;
  5900. }
  5901. return str;
  5902. }
  5903. List<Crm_DeleClient> GetByDiidClient(int DIID)
  5904. {
  5905. return _sqlSugar.Queryable<Crm_DeleClient>().Where(x => x.DiId == DIID && x.IsDel == 0).ToList();
  5906. }
  5907. /// <summary>
  5908. /// 根据星期,月份的缩写,转换成数字或者全称
  5909. /// 根据币种中文名称返回币种代码
  5910. /// 根据数字返回机型型号【2、3开头的就是空客,比如空客320,7开头的就是波音,比如波音777】
  5911. /// 20210903贾文滔
  5912. /// </summary>
  5913. /// <param name="startDate"></param>
  5914. /// <param name="endDate"></param>
  5915. /// <returns></returns>
  5916. string GetLonger(string temp)
  5917. {
  5918. string str = "";
  5919. switch (temp.ToUpper())
  5920. {
  5921. case "美元":
  5922. str = "USD";
  5923. break;
  5924. case "日元":
  5925. str = "JPY";
  5926. break;
  5927. case "英镑":
  5928. str = "GBP";
  5929. break;
  5930. case "欧元":
  5931. str = "EUR";
  5932. break;
  5933. case "港币":
  5934. str = "HKD";
  5935. break;
  5936. case "MO":
  5937. str = "星期一";
  5938. break;
  5939. case "TU":
  5940. str = "星期二";
  5941. break;
  5942. case "WE":
  5943. str = "星期三";
  5944. break;
  5945. case "TH":
  5946. str = "星期四";
  5947. break;
  5948. case "FR":
  5949. str = "星期五";
  5950. break;
  5951. case "SA":
  5952. str = "星期六";
  5953. break;
  5954. case "SU":
  5955. str = "星期天";
  5956. break;
  5957. case "JAN":
  5958. str = "01";
  5959. break;
  5960. case "FEB":
  5961. str = "02";
  5962. break;
  5963. case "MAR":
  5964. str = "03";
  5965. break;
  5966. case "APR":
  5967. str = "04";
  5968. break;
  5969. case "MAY":
  5970. str = "05";
  5971. break;
  5972. case "JUN":
  5973. str = "06";
  5974. break;
  5975. case "JUL":
  5976. str = "07";
  5977. break;
  5978. case "AUG":
  5979. str = "08";
  5980. break;
  5981. case "SEP":
  5982. str = "09";
  5983. break;
  5984. case "OCT":
  5985. str = "10";
  5986. break;
  5987. case "NOV":
  5988. str = "11";
  5989. break;
  5990. case "DEC":
  5991. str = "12";
  5992. break;
  5993. case "MONDAY":
  5994. str = "星期一";
  5995. break;
  5996. case "TUESDAY":
  5997. str = "星期二";
  5998. break;
  5999. case "WEDNESDAY":
  6000. str = "星期三";
  6001. break;
  6002. case "THURSDAY":
  6003. str = "星期四";
  6004. break;
  6005. case "FRIDAY":
  6006. str = "星期五";
  6007. break;
  6008. case "SATURDAY":
  6009. str = "星期六";
  6010. break;
  6011. case "SUNDAY":
  6012. str = "星期日";
  6013. break;
  6014. case "01":
  6015. str = "JAN";
  6016. break;
  6017. case "02":
  6018. str = "FEB";
  6019. break;
  6020. case "03":
  6021. str = "MAR";
  6022. break;
  6023. case "04":
  6024. str = "APR";
  6025. break;
  6026. case "05":
  6027. str = "MAY";
  6028. break;
  6029. case "06":
  6030. str = "JUN";
  6031. break;
  6032. case "07":
  6033. str = "JUL";
  6034. break;
  6035. case "08":
  6036. str = "AUG";
  6037. break;
  6038. case "09":
  6039. str = "SEP";
  6040. break;
  6041. case "10":
  6042. str = "OCT";
  6043. break;
  6044. case "11":
  6045. str = "NOV";
  6046. break;
  6047. case "12":
  6048. str = "DEC";
  6049. break;
  6050. case "2":
  6051. str = "空客A";
  6052. break;
  6053. case "3":
  6054. str = "空客A";
  6055. break;
  6056. case "7":
  6057. str = "波音";
  6058. break;
  6059. }
  6060. return str;
  6061. }
  6062. /// <summary>
  6063. /// 根据月份返回天数
  6064. /// </summary>
  6065. /// <param name="temp"></param>
  6066. /// <returns></returns>
  6067. string GetDaysByMonth(string Month, int year)
  6068. {
  6069. string str = "";
  6070. //判断是否是闰年
  6071. if (DateTime.IsLeapYear(year) == false)
  6072. {
  6073. switch (Month.ToUpper())
  6074. {
  6075. case "JAN":
  6076. str = "31";
  6077. break;
  6078. case "FEB":
  6079. str = "28";
  6080. break;
  6081. case "MAR":
  6082. str = "31";
  6083. break;
  6084. case "APR":
  6085. str = "30";
  6086. break;
  6087. case "MAY":
  6088. str = "31";
  6089. break;
  6090. case "JUN":
  6091. str = "30";
  6092. break;
  6093. case "JUL":
  6094. str = "31";
  6095. break;
  6096. case "AUG":
  6097. str = "31";
  6098. break;
  6099. case "SEP":
  6100. str = "30";
  6101. break;
  6102. case "OCT":
  6103. str = "31";
  6104. break;
  6105. case "NOV":
  6106. str = "30";
  6107. break;
  6108. case "DEC":
  6109. str = "31";
  6110. break;
  6111. case "01":
  6112. str = "31";
  6113. break;
  6114. case "02":
  6115. str = "28";
  6116. break;
  6117. case "03":
  6118. str = "31";
  6119. break;
  6120. case "04":
  6121. str = "30";
  6122. break;
  6123. case "05":
  6124. str = "31";
  6125. break;
  6126. case "06":
  6127. str = "30";
  6128. break;
  6129. case "07":
  6130. str = "31";
  6131. break;
  6132. case "08":
  6133. str = "31";
  6134. break;
  6135. case "09":
  6136. str = "30";
  6137. break;
  6138. case "10":
  6139. str = "31";
  6140. break;
  6141. case "11":
  6142. str = "30";
  6143. break;
  6144. case "12":
  6145. str = "31";
  6146. break;
  6147. }
  6148. }
  6149. else
  6150. {
  6151. switch (Month.ToUpper())
  6152. {
  6153. case "JAN":
  6154. str = "31";
  6155. break;
  6156. case "FEB":
  6157. str = "29";
  6158. break;
  6159. case "MAR":
  6160. str = "31";
  6161. break;
  6162. case "APR":
  6163. str = "30";
  6164. break;
  6165. case "MAY":
  6166. str = "31";
  6167. break;
  6168. case "JUN":
  6169. str = "30";
  6170. break;
  6171. case "JUL":
  6172. str = "31";
  6173. break;
  6174. case "AUG":
  6175. str = "31";
  6176. break;
  6177. case "SEP":
  6178. str = "30";
  6179. break;
  6180. case "OCT":
  6181. str = "31";
  6182. break;
  6183. case "NOV":
  6184. str = "30";
  6185. break;
  6186. case "DEC":
  6187. str = "31";
  6188. break;
  6189. case "01":
  6190. str = "31";
  6191. break;
  6192. case "02":
  6193. str = "29";
  6194. break;
  6195. case "03":
  6196. str = "31";
  6197. break;
  6198. case "04":
  6199. str = "30";
  6200. break;
  6201. case "05":
  6202. str = "31";
  6203. break;
  6204. case "06":
  6205. str = "30";
  6206. break;
  6207. case "07":
  6208. str = "31";
  6209. break;
  6210. case "08":
  6211. str = "31";
  6212. break;
  6213. case "09":
  6214. str = "30";
  6215. break;
  6216. case "10":
  6217. str = "31";
  6218. break;
  6219. case "11":
  6220. str = "30";
  6221. break;
  6222. case "12":
  6223. str = "31";
  6224. break;
  6225. }
  6226. }
  6227. return str;
  6228. }
  6229. #endregion
  6230. #endregion
  6231. #region 团组成本
  6232. /// <summary>
  6233. /// 团组成本数据初始化
  6234. /// </summary>
  6235. /// <param name="dto"></param>
  6236. /// <returns></returns>
  6237. [HttpPost]
  6238. public async Task<IActionResult> GroupCostInit(GroupCostInItDto dto)
  6239. {
  6240. var groupList = _sqlSugar.SqlQueryable<DelegationInfoAndIsTrueView>($@"
  6241. Select a.Id,TeamName GroupName,b.isTrue From Grp_DelegationInfo a left join (select top 100 percent Diid, CASE
  6242. WHEN COUNT(*) >= 0 THEN 'True'
  6243. ELSE 'False' END as isTrue from Grp_GroupCost where Isdel = 0 and date != '' group by Diid) b on a.Id = b.Diid
  6244. Where TeamName != '' And IsDel = 0 Order By a.Id Desc
  6245. ").ToList(); //团组列表
  6246. int diid = dto.Diid == -1 ? groupList.First().Id : dto.Diid;
  6247. var groupInfo = await _groupRepository.PostShareGroupInfo(new ShareGroupInfoDto { PortType = 1, Id = diid }); //团组信息
  6248. List<Res_CountryFeeCost> visaCountryInfoArr = new List<Res_CountryFeeCost>();
  6249. var groupinfoValue = (groupInfo.Data as Web_ShareGroupInfoView);
  6250. if (groupinfoValue != null)
  6251. {
  6252. var countryArr = groupinfoValue.VisitCountry ??= string.Empty;
  6253. var spArr = new string[1] { countryArr };
  6254. if (countryArr.Contains("|"))
  6255. {
  6256. spArr = countryArr.Split("|");
  6257. }
  6258. else if (countryArr.Contains("、"))
  6259. {
  6260. spArr = countryArr.Split("、");
  6261. }
  6262. foreach (var item in spArr.Where(x => !string.IsNullOrWhiteSpace(x)).ToList())
  6263. {
  6264. var dbQueryCountry = _sqlSugar.Queryable<Res_CountryFeeCost>().First(x => x.VisaCountry.Contains(item));
  6265. if (dbQueryCountry != null)
  6266. {
  6267. visaCountryInfoArr.Add(dbQueryCountry);
  6268. }
  6269. }
  6270. }
  6271. var groupChecks = _checkBoxs.GetCheckBoxsByDiid(diid); //团组选中信息 可枚举
  6272. var groupCost = _GroupCostRepository.GetAllByDiid(diid); //团组列表信息
  6273. var create = _GroupCostRepository.
  6274. CreateGroupCostByBlackCode(dto.Diid);
  6275. if (groupCost.Count == 0 && create.Code == 0)
  6276. {
  6277. groupCost = (create.Data as List<Grp_GroupCost>) ?? new List<Grp_GroupCost>();
  6278. }
  6279. var groupCostMap = _mapper.Map<List<Grp_GroupCostDto>>(groupCost);
  6280. var hotelNumber = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(diid); //酒店数量 可枚举
  6281. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(diid); //成本系数 可枚举
  6282. groupCostMap = groupCostMap.Select(x =>
  6283. {
  6284. if (DateTime.TryParse(x.Date, out DateTime dataForamt))
  6285. {
  6286. x.Date = dataForamt.ToString("yyyy-MM-dd");
  6287. }
  6288. return x;
  6289. }).ToList();
  6290. //GroupCostParameter.Add(new
  6291. // Grp_GroupCostParameter());
  6292. var GroupCostParameterMap = _mapper.Map<List<Grp_GroupCostParameterDto>>(GroupCostParameter);
  6293. return Ok(JsonView(new
  6294. {
  6295. groupList,
  6296. groupInfo,
  6297. groupChecks,
  6298. groupCost = groupCostMap,
  6299. hotelNumber,
  6300. GroupCostParameter = GroupCostParameterMap,
  6301. visaCountryInfoArr = visaCountryInfoArr.Select(x => new
  6302. {
  6303. x.VisaCountry,
  6304. x.VisaPrice,
  6305. x.Id,
  6306. }).ToList(),
  6307. baoPi = _GroupCostParameterRepository.GetBaoPi(diid),
  6308. blackCodeIsTrue = create.Code == 0 ? true : false
  6309. })) ;
  6310. }
  6311. /// <summary>
  6312. /// 团组成本信息保存
  6313. /// </summary>
  6314. /// <param name="dto"></param>
  6315. /// <returns></returns>
  6316. [HttpPost]
  6317. public async Task<IActionResult> SaveGroupCost(GroupCostSavaDto dto)
  6318. {
  6319. if (dto.Diid <= 0 || dto.Userid <= 0)
  6320. {
  6321. return Ok(JsonView(false));
  6322. }
  6323. JsonView jw = null;
  6324. bool isTrue = false;
  6325. var Grp_groups = _mapper.Map<List<Grp_GroupCost>>(dto.GroupCosts);
  6326. Grp_groups.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; }); //.ToString("yyyy-MM-dd HH:mm:ss")
  6327. var Grp_CheckBoxs = _mapper.Map<List<Grp_CheckBoxs>>(dto.CheckBoxs);
  6328. Grp_CheckBoxs.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; });
  6329. var Grp_HotelNumber = _mapper.Map<List<Grp_CostTypeHotelNumber>>(dto.CostTypeHotelNumbers);
  6330. var Grp_CostParameters = _mapper.Map<List<Grp_GroupCostParameter>>(dto.GroupCostParameters);
  6331. try
  6332. {
  6333. _sqlSugar.BeginTran();
  6334. isTrue = await _GroupCostRepository.
  6335. SaveGroupCostList(Grp_groups, dto.Diid,dto.Userid); //列表
  6336. isTrue = await _checkBoxs.SaveCheckBoxs(Grp_CheckBoxs, dto.Diid); //选中项
  6337. isTrue = await _CostTypeHotelNumberRepository.SaveHotelNumber(Grp_HotelNumber, dto.Userid, dto.Diid); //酒店房间数量
  6338. isTrue = await _GroupCostParameterRepository.SaveAsync(Grp_CostParameters, dto.Userid, dto.Diid); //系数
  6339. _sqlSugar.CommitTran();
  6340. jw = JsonView(true, "保存成功!", isTrue);
  6341. }
  6342. catch (Exception)
  6343. {
  6344. _sqlSugar.RollbackTran();
  6345. jw = JsonView(false);
  6346. }
  6347. return Ok(jw);
  6348. }
  6349. /// <summary>
  6350. /// 司兼导数据
  6351. /// </summary>
  6352. /// <param name="dto"></param>
  6353. /// <returns></returns>
  6354. [HttpPost]
  6355. public IActionResult GetCarGuides(CarGuidesDto dto)
  6356. {
  6357. JsonView jw = null;
  6358. var Data = _sqlSugar.SqlQueryable<Grp_CarGuides>($@" select * from Grp_CarGuides where isdel = 0 ").ToList();
  6359. jw = JsonView(true, "获取成功!", Data);
  6360. return Ok(jw);
  6361. }
  6362. /// <summary>
  6363. /// 导游数据
  6364. /// </summary>
  6365. /// <param name="dto"></param>
  6366. /// <returns></returns>
  6367. [HttpPost]
  6368. public IActionResult GetGuidesInfo(CarGuidesDto dto)
  6369. {
  6370. JsonView jw = null;
  6371. //var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" SELECT* FROM (
  6372. // 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
  6373. // where RowNumber BETWEEN {(dto.Page - 1) * dto.Size + 1} and {(dto.Page) * dto.Size}").ToList();
  6374. var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" select * from Grp_GuidesInfo where isdel = 0 ").ToList();
  6375. jw = JsonView(true, "获取成功!", Data);
  6376. return Ok(jw);
  6377. }
  6378. /// <summary>
  6379. /// 成本车数据
  6380. /// </summary>
  6381. /// <param name="dto"></param>
  6382. /// <returns></returns>
  6383. [HttpPost]
  6384. public IActionResult GetCarInfo(CarGuidesDto dto)
  6385. {
  6386. JsonView jw = null;
  6387. var Data = _sqlSugar.SqlQueryable<Grp_CarInfo>($@" select * from Grp_CarInfo where isdel = 0 ").ToList();
  6388. jw = JsonView(true, "获取成功!", Data);
  6389. return Ok(jw);
  6390. }
  6391. /// <summary>
  6392. /// 景点数据
  6393. /// </summary>
  6394. /// <param name="dto"></param>
  6395. /// <returns></returns>
  6396. [HttpPost]
  6397. public IActionResult GetScenicSpotInfo(CarGuidesDto dto)
  6398. {
  6399. var Data = _sqlSugar.SqlQueryable<Grp_ScenicSpotInfo>($@" select * from Grp_ScenicSpotInfo where isdel = 0 ").ToList();
  6400. return Ok(JsonView(true, "获取成功!", Data));
  6401. }
  6402. /// <summary>
  6403. /// 成本通知
  6404. /// </summary>
  6405. /// <param name="dto"></param>
  6406. /// <returns></returns>
  6407. [HttpPost]
  6408. public async Task<IActionResult> GroupIsShare(GroupIsShareDto dto)
  6409. {
  6410. if (dto.Diid < 0)
  6411. {
  6412. return Ok(JsonView(false));
  6413. }
  6414. JsonView jw = null;
  6415. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterMainByDiid(dto.Diid);
  6416. if (GroupCostParameter != null)
  6417. {
  6418. int IsShare = 0;
  6419. if (GroupCostParameter.IsShare == 0) IsShare = 1;
  6420. else if (GroupCostParameter.IsShare == 1) IsShare = 0;
  6421. bool isTrue = await _GroupCostParameterRepository.UpdateIsShareById(GroupCostParameter.Id, IsShare);
  6422. string msg = string.Empty;
  6423. if (isTrue)
  6424. {
  6425. if (IsShare == 0)
  6426. {
  6427. msg = "禁止通知,其他模块操作人员不可见此成本信息!";
  6428. }
  6429. else
  6430. {
  6431. #region 企微通知对应岗位用户
  6432. try
  6433. {
  6434. AppNoticeLibrary.SendUserMsg_GroupShare_ToJob(dto.Diid);
  6435. }
  6436. catch (Exception ex)
  6437. {
  6438. }
  6439. #endregion
  6440. msg = "通知成功,其他模块操作人员可见此成本信息!";
  6441. }
  6442. jw = JsonView(isTrue, msg, new { IsShare });
  6443. }
  6444. else
  6445. {
  6446. msg = "修改失败!";
  6447. jw = JsonView(isTrue, msg);
  6448. }
  6449. }
  6450. else
  6451. {
  6452. jw = JsonView(false, "该团没有数据,请添加数据,保存后再操作!");
  6453. }
  6454. return Ok(jw);
  6455. }
  6456. /// <summary>
  6457. /// 导出收款账单
  6458. /// </summary>
  6459. /// <param name="dto"></param>
  6460. /// <returns></returns>
  6461. [HttpPost]
  6462. public async Task<IActionResult> ExportPriceCheckWordFile(GroupCostExportWordFile dto)
  6463. {
  6464. if (dto.Diid == 0)
  6465. {
  6466. return Ok(JsonView(false, "请传递团组id"));
  6467. }
  6468. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  6469. if (deleInfo.Code != 0)
  6470. {
  6471. return Ok(JsonView(false, "团组信息查询失败!"));
  6472. }
  6473. var di = deleInfo.Data as DelegationInfoWebView;
  6474. if (di != null)
  6475. {
  6476. //文件名
  6477. string strFileName = di.TeamName + "-收款账单.doc";
  6478. //获取模板
  6479. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/收款账单(四川)模板.doc");
  6480. //载入模板
  6481. Document doc = new Document(tmppath);
  6482. decimal TotalPrice = 0.00M;
  6483. string itemStr = string.Empty;
  6484. Dictionary<string, string> airSouer = new Dictionary<string, string>();
  6485. //airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  6486. airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  6487. airSouer.Add("JJCSGR", "经济舱及酒店单人间");
  6488. airSouer.Add("GWCSGR", "公务舱及酒店单人间");
  6489. airSouer.Add("GWCJSES", "公务舱及酒店小套房");
  6490. airSouer.Add("GWCSUITE", "公务舱及酒店套房");
  6491. airSouer.Add("JJCSUITE", "经济舱及酒店套房");
  6492. var groupCostType = dto.airs.GroupBy(x => x.costType).OrderBy(x => x.Key);
  6493. foreach (var cost in groupCostType)
  6494. {
  6495. var List = cost.ToList();
  6496. if (cost.Key == "A")
  6497. {
  6498. foreach (var ListItem in List)
  6499. {
  6500. if (ListItem.number > 0)
  6501. {
  6502. if (ListItem.code.Contains("TBR"))
  6503. {
  6504. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间( ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6505. }
  6506. else
  6507. {
  6508. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间( ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6509. }
  6510. TotalPrice += (ListItem.number * ListItem.price);
  6511. }
  6512. }
  6513. }
  6514. else
  6515. {
  6516. itemStr = itemStr.Insert(0, "A段\r\n");
  6517. itemStr += "B段\r\n";
  6518. foreach (var ListItem in List)
  6519. {
  6520. if (ListItem.number > 0)
  6521. {
  6522. if (ListItem.code.Contains("TBR"))
  6523. {
  6524. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间( ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6525. }
  6526. else
  6527. {
  6528. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间( ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6529. }
  6530. TotalPrice += (ListItem.number * ListItem.price);
  6531. }
  6532. }
  6533. }
  6534. }
  6535. #region 替换Word模板书签内容
  6536. Dictionary<string, string> marks = new Dictionary<string, string>();
  6537. marks.Add("To", di.ClientUnit);//付款方
  6538. marks.Add("ToTel", di.TellPhone);//付款方电话
  6539. marks.Add("Date", DateTime.Now.ToString("yyyy-MM-dd"));//导出时间
  6540. marks.Add("Team", di.VisitCountry.Replace(" ", "、"));//团队名称
  6541. marks.Add("TontractTime", (di.VisitDate).ToString("yyyy年MM月dd日"));//付款日期
  6542. marks.Add("PayDay", (di.PayDay).ToString());//付款预期
  6543. marks.Add("PaymentMoney", (di.PaymentMoney).ToString("#0.00"));//付款金额
  6544. marks.Add("WeChat", "WeChat");//微信号 di.WeChat;
  6545. marks.Add("PayItemContent", itemStr);//详细信息
  6546. marks.Add("Total", TotalPrice.ToString("F2"));//合计
  6547. #endregion
  6548. ////注
  6549. //if (doc.Range.Bookmarks["Attention"] != null)
  6550. //{
  6551. // Bookmark mark = doc.Range.Bookmarks["Attention"];
  6552. // mark.Text = frList[0].Attention;
  6553. //}
  6554. foreach (var item in marks.Keys)
  6555. {
  6556. if (doc.Range.Bookmarks[item] != null)
  6557. {
  6558. Bookmark mark = doc.Range.Bookmarks[item];
  6559. mark.Text = marks[item];
  6560. }
  6561. }
  6562. byte[] bytes = null;
  6563. using (MemoryStream stream = new MemoryStream())
  6564. {
  6565. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  6566. bytes = stream.ToArray();
  6567. }
  6568. //doc.Save((AppSettingsHelper.Get("WordBasePath") + "Template/") + strFileName);
  6569. return Ok(JsonView(true, "", new
  6570. {
  6571. Data = bytes,
  6572. strFileName,
  6573. }));
  6574. }
  6575. else
  6576. {
  6577. return Ok(JsonView(false, "团组信息不存在!"));
  6578. }
  6579. }
  6580. /// <summary>
  6581. /// 导出团组成本
  6582. /// </summary>
  6583. /// <param name="dto"></param>
  6584. /// <returns></returns>
  6585. [HttpPost]
  6586. public async Task<IActionResult> ExportGroupCostExcelFile(GroupCostExportExcelFile dto)
  6587. {
  6588. var jw = JsonView(false);
  6589. if (dto.Diid == 0)
  6590. {
  6591. return Ok(JsonView(false, "请传递团组id"));
  6592. }
  6593. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  6594. if (deleInfo.Code != 0)
  6595. {
  6596. return Ok(JsonView(false, "团组信息查询失败!"));
  6597. }
  6598. var di = deleInfo.Data as DelegationInfoWebView;
  6599. if (di == null)
  6600. {
  6601. return Ok(JsonView(false, "团组信息查询失败!"));
  6602. }
  6603. List<GroupCost_Excel> List_GC1 = new List<GroupCost_Excel>();
  6604. WorkbookDesigner designer = new WorkbookDesigner();
  6605. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + ("Template/团组-成本.xls"));
  6606. var List_GC = _GroupCostRepository.GetAllByDiid(dto.Diid);
  6607. for (int i = 0; i < List_GC.Count; i++)
  6608. {
  6609. GroupCost_Excel gc = new GroupCost_Excel();
  6610. gc.Id = List_GC[i].Id;
  6611. gc.Diid = List_GC[i].Diid.ToString();
  6612. gc.DAY = List_GC[i].DAY;
  6613. string week = "";
  6614. if (!string.IsNullOrEmpty(List_GC[i].Date.Trim()))
  6615. week = CultureInfo.CurrentCulture.DateTimeFormat.GetDayName(Convert.ToDateTime(List_GC[i].Date).DayOfWeek);
  6616. gc.Date = (List_GC[i].Date + "\n" + week).ToString();
  6617. gc.ITIN = List_GC[i].ITIN;
  6618. gc.CarType = List_GC[i].CarType;
  6619. gc.CarTiming = List_GC[i].CarTiming.ToString() == "0" ? "/" : List_GC[i].CarTiming.ToString();
  6620. gc.CarCost = List_GC[i].CarCost.ToString() == "0" ? "/" : List_GC[i].CarCost.ToString();
  6621. gc.CarNumber = List_GC[i].CarNumber.ToString() == "0" ? "/" : List_GC[i].CarNumber.ToString();
  6622. gc.TGS = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGS.ToString();
  6623. gc.TGWH = List_GC[i].TGWH.ToString() == "0" ? "/" : List_GC[i].TGWH.ToString();
  6624. gc.TGN = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGN.ToString();
  6625. gc.TGOF = List_GC[i].TGOF.ToString() == "0" ? "/" : List_GC[i].TGOF.ToString();
  6626. gc.TGM = List_GC[i].TGM.ToString() == "0" ? "/" : List_GC[i].TGM.ToString();
  6627. gc.TGA = List_GC[i].TGA.ToString() == "0" ? "/" : List_GC[i].TGA.ToString();
  6628. gc.TGTF = List_GC[i].TGTF.ToString() == "0" ? "/" : List_GC[i].TGTF.ToString();
  6629. gc.TGEF = List_GC[i].TGEF.ToString() == "0" ? "/" : List_GC[i].TGEF.ToString();
  6630. gc.CFS = List_GC[i].CFS.ToString() == "0" ? "/" : List_GC[i].CFS.ToString();
  6631. gc.CFM = List_GC[i].CFM.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  6632. gc.CFOF = List_GC[i].CFOF.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  6633. gc.B = List_GC[i].B.ToString() == "0" ? "/" : List_GC[i].B.ToString();
  6634. gc.L = List_GC[i].L.ToString() == "0" ? "/" : List_GC[i].L.ToString();
  6635. gc.D = List_GC[i].D.ToString() == "0" ? "/" : List_GC[i].D.ToString();
  6636. gc.TBR = List_GC[i].TBR.ToString() == "0" ? "/" : List_GC[i].TBR.ToString();
  6637. gc.SGR = List_GC[i].SGR.ToString() == "0" ? "/" : List_GC[i].SGR.ToString();
  6638. gc.JS_ES = List_GC[i].JS_ES.ToString() == "0" ? "/" : List_GC[i].JS_ES.ToString();
  6639. gc.Suite = List_GC[i].Suite.ToString() == "0" ? "/" : List_GC[i].Suite.ToString();
  6640. gc.ACCON = List_GC[i].ACCON.ToString() == "0" ? "/" : List_GC[i].ACCON.ToString();
  6641. gc.TV = List_GC[i].TV.ToString() == "0" ? "/" : List_GC[i].TV.ToString();
  6642. gc.iL = List_GC[i].iL.ToString() == "0" ? "/" : List_GC[i].iL.ToString();
  6643. gc.IF = List_GC[i].IF.ToString() == "0" ? "/" : List_GC[i].IF.ToString();
  6644. gc.EF = List_GC[i].EF.ToString() == "0" ? "/" : List_GC[i].EF.ToString();
  6645. gc.B_R_F = List_GC[i].B_R_F.ToString() == "0" ? "/" : List_GC[i].B_R_F.ToString();
  6646. gc.TE = List_GC[i].TE.ToString() == "0" ? "/" : List_GC[i].TE.ToString();
  6647. gc.TGTips = List_GC[i].TGTips.ToString() == "0" ? "/" : List_GC[i].TGTips.ToString();
  6648. gc.DRVTips = List_GC[i].DRVTips.ToString() == "0" ? "/" : List_GC[i].DRVTips.ToString();
  6649. gc.PC = List_GC[i].PC.ToString() == "0" ? "/" : List_GC[i].PC.ToString();
  6650. gc.TLF = List_GC[i].TLF.ToString() == "0" ? "/" : List_GC[i].TLF.ToString();
  6651. gc.ECT = List_GC[i].ECT.ToString() == "0" ? "/" : List_GC[i].ECT.ToString();
  6652. List_GC1.Add(gc);
  6653. }
  6654. var dt = CommonFun.GetDataTableFromIList(List_GC1);
  6655. dt.TableName = "TB";
  6656. //报表标题等不用dt的值
  6657. designer.SetDataSource("TeamName", dto.title.TeamName);
  6658. designer.SetDataSource("Pnumber", dto.title.GroupNumber);
  6659. designer.SetDataSource("Tax", dto.title.Tax);
  6660. //designer.SetDataSource("FFYS", lblHotelCB.Text);
  6661. designer.SetDataSource("Currency", dto.title.Currency);
  6662. //designer.SetDataSource("HotelXS", txtHotelXS.Text);
  6663. designer.SetDataSource("Rate", dto.title.Rate);
  6664. var hotels = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(dto.Diid);
  6665. var Aparams = hotels.Find(x => x.Type == "Default");
  6666. if (Aparams == null)
  6667. {
  6668. return Ok(jw);
  6669. }
  6670. //酒店数量
  6671. var txtSGRNumber = Aparams.SGR.ToString();
  6672. var txtTBRNumber = Aparams.TBR.ToString();
  6673. var txtJSESNumber = Aparams.JSES.ToString();
  6674. var txtSUITENumbe = Aparams.SUITE.ToString();
  6675. if (dto.costType == "B")
  6676. {
  6677. Aparams = hotels.Find(x => x.Type == "A");
  6678. var Bparams = hotels.Find(x => x.Type == "B");
  6679. if (Aparams == null || Bparams == null)
  6680. {
  6681. return Ok(jw);
  6682. }
  6683. txtSGRNumber = "A段人数:" + Aparams.SGR.ToString() + " B段人数:" + Bparams.SGR.ToString();
  6684. txtTBRNumber = "A段人数:" + Aparams.TBR.ToString() + " B段人数:" + Bparams.TBR.ToString();
  6685. txtJSESNumber = "A段人数:" + Aparams.JSES.ToString() + " B段人数:" + Bparams.JSES.ToString();
  6686. txtSUITENumbe = "A段人数:" + Aparams.SUITE.ToString() + " B段人数:" + Bparams.SUITE.ToString();
  6687. }
  6688. designer.SetDataSource("SGRNumber", txtSGRNumber);
  6689. designer.SetDataSource("TBRNumber", txtTBRNumber);
  6690. designer.SetDataSource("JSESNumber", txtJSESNumber);
  6691. designer.SetDataSource("SUITENumber", txtSUITENumbe);
  6692. var ws = designer.Workbook.Worksheets[0];
  6693. int Row = List_GC.Count;
  6694. int startIndex = 11;
  6695. int HideRows = 0;
  6696. List<int> hideRowsList = new List<int>();
  6697. decimal TzZCB2 = 0.00M, TzZLR2 = 0.00M, TzZBJ2 = 0.00M;
  6698. #region A段left数据
  6699. var left = dto.leftInfo.Find(x => x.Type == "A");
  6700. if (left == null)
  6701. {
  6702. return Ok(jw);
  6703. }
  6704. var leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("签证"));
  6705. if (leftBindData != null)
  6706. {
  6707. designer.SetDataSource("VisaDRCB", leftBindData.cb);
  6708. designer.SetDataSource("VisaRS", leftBindData.rs);
  6709. designer.SetDataSource("VisaXS", leftBindData.xs);
  6710. designer.SetDataSource("VisaZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6711. designer.SetDataSource("VisaDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6712. designer.SetDataSource("VisaZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6713. designer.SetDataSource("VisaDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6714. designer.SetDataSource("VisaZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6715. }
  6716. else
  6717. {
  6718. hideRowsList.Add(Row + startIndex + HideRows);
  6719. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6720. }
  6721. HideRows += 2;
  6722. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("保险"));
  6723. if (leftBindData != null)
  6724. {
  6725. designer.SetDataSource("BXDRCB", leftBindData.cb);
  6726. designer.SetDataSource("BXRS", leftBindData.rs);
  6727. designer.SetDataSource("BXXS", leftBindData.xs);
  6728. designer.SetDataSource("BXZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6729. designer.SetDataSource("BXDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6730. designer.SetDataSource("BXZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6731. designer.SetDataSource("BXDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6732. designer.SetDataSource("BXZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6733. }
  6734. else
  6735. {
  6736. hideRowsList.Add(Row + startIndex + HideRows);
  6737. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6738. }
  6739. HideRows += 2;
  6740. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  6741. if (leftBindData != null)
  6742. {
  6743. designer.SetDataSource("HSDRCB", leftBindData.cb);
  6744. designer.SetDataSource("HSRS", leftBindData.rs);
  6745. designer.SetDataSource("HSXS", leftBindData.xs);
  6746. designer.SetDataSource("HSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6747. designer.SetDataSource("HSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6748. designer.SetDataSource("HSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6749. designer.SetDataSource("HSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6750. designer.SetDataSource("HSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6751. }
  6752. else
  6753. {
  6754. hideRowsList.Add(Row + startIndex + HideRows);
  6755. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6756. }
  6757. HideRows += 2;
  6758. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  6759. if (leftBindData != null)
  6760. {
  6761. designer.SetDataSource("JPJJCCB", leftBindData.cb);
  6762. designer.SetDataSource("JPJJCPnum", leftBindData.rs);
  6763. designer.SetDataSource("JPJJCXS", leftBindData.xs);
  6764. designer.SetDataSource("JPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6765. designer.SetDataSource("JPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6766. designer.SetDataSource("JPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6767. designer.SetDataSource("JPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6768. designer.SetDataSource("JPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6769. }
  6770. else
  6771. {
  6772. hideRowsList.Add(Row + startIndex + HideRows);
  6773. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6774. }
  6775. HideRows += 2;
  6776. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  6777. if (leftBindData != null)
  6778. {
  6779. designer.SetDataSource("JPGWCCB", leftBindData.cb);
  6780. designer.SetDataSource("JPGWCPNum", leftBindData.rs);
  6781. designer.SetDataSource("JPGWCXS", leftBindData.xs);
  6782. designer.SetDataSource("JPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6783. designer.SetDataSource("JPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6784. designer.SetDataSource("JPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6785. designer.SetDataSource("JPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6786. designer.SetDataSource("JPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6787. }
  6788. else
  6789. {
  6790. hideRowsList.Add(Row + startIndex + HideRows);
  6791. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6792. }
  6793. HideRows += 2;
  6794. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  6795. if (leftBindData != null)
  6796. {
  6797. ////TBR
  6798. designer.SetDataSource("HotelTBRDRCB", leftBindData.cb);
  6799. designer.SetDataSource("HotelTBRRS", leftBindData.rs);
  6800. designer.SetDataSource("HotelTBRXS", leftBindData.xs);
  6801. designer.SetDataSource("HotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6802. designer.SetDataSource("HotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6803. designer.SetDataSource("HotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6804. designer.SetDataSource("HotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6805. designer.SetDataSource("HotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6806. }
  6807. else
  6808. {
  6809. hideRowsList.Add(Row + startIndex + HideRows);
  6810. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6811. }
  6812. HideRows += 2;
  6813. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  6814. if (leftBindData != null)
  6815. {
  6816. ////SGR
  6817. designer.SetDataSource("HotelSGRDRCB", leftBindData.cb);
  6818. designer.SetDataSource("HotelSGRRS", leftBindData.rs);
  6819. designer.SetDataSource("HotelSGRXS", leftBindData.xs);
  6820. designer.SetDataSource("HotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6821. designer.SetDataSource("HotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6822. designer.SetDataSource("HotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6823. designer.SetDataSource("HotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6824. designer.SetDataSource("HotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6825. }
  6826. else
  6827. {
  6828. hideRowsList.Add(Row + startIndex + HideRows);
  6829. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6830. }
  6831. HideRows += 2;
  6832. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  6833. if (leftBindData != null)
  6834. {
  6835. ////JS/ES
  6836. designer.SetDataSource("HotelJSESDRCB", leftBindData.cb);
  6837. designer.SetDataSource("HotelJSESRS", leftBindData.rs);
  6838. designer.SetDataSource("HotelJSESXS", leftBindData.xs);
  6839. designer.SetDataSource("HotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6840. designer.SetDataSource("HotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6841. designer.SetDataSource("HotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6842. designer.SetDataSource("HotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6843. designer.SetDataSource("HotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6844. }
  6845. else
  6846. {
  6847. hideRowsList.Add(Row + startIndex + HideRows);
  6848. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6849. }
  6850. HideRows += 2;
  6851. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  6852. if (leftBindData != null)
  6853. {
  6854. ////SUITE
  6855. designer.SetDataSource("HotelSUITEDRCB", leftBindData.cb);
  6856. designer.SetDataSource("HotelSUITERS", leftBindData.rs);
  6857. designer.SetDataSource("HotelSUITEXS", leftBindData.xs);
  6858. designer.SetDataSource("HotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6859. designer.SetDataSource("HotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6860. designer.SetDataSource("HotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6861. designer.SetDataSource("HotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6862. designer.SetDataSource("HotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6863. }
  6864. else
  6865. {
  6866. hideRowsList.Add(Row + startIndex + HideRows);
  6867. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6868. }
  6869. HideRows += 2;
  6870. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  6871. if (leftBindData != null)
  6872. {
  6873. designer.SetDataSource("DJDRCB", leftBindData.cb);
  6874. designer.SetDataSource("DJRS", leftBindData.rs);
  6875. designer.SetDataSource("DJXS", leftBindData.xs);
  6876. designer.SetDataSource("DJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6877. designer.SetDataSource("DJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6878. designer.SetDataSource("DJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6879. designer.SetDataSource("DJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6880. designer.SetDataSource("DJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6881. }
  6882. else
  6883. {
  6884. hideRowsList.Add(Row + startIndex + HideRows);
  6885. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6886. }
  6887. HideRows += 2;
  6888. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  6889. if (leftBindData != null)
  6890. {
  6891. designer.SetDataSource("HCPCB", leftBindData.cb);
  6892. designer.SetDataSource("HCPRS", leftBindData.rs);
  6893. designer.SetDataSource("HCPXS", leftBindData.xs);
  6894. designer.SetDataSource("HCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6895. designer.SetDataSource("HCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6896. designer.SetDataSource("HCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6897. designer.SetDataSource("HCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6898. designer.SetDataSource("HCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6899. }
  6900. else
  6901. {
  6902. hideRowsList.Add(Row + startIndex + HideRows);
  6903. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6904. }
  6905. HideRows += 2;
  6906. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  6907. if (leftBindData != null)
  6908. {
  6909. designer.SetDataSource("CPCB", leftBindData.cb);
  6910. designer.SetDataSource("CPRS", leftBindData.rs);
  6911. designer.SetDataSource("CPXS", leftBindData.xs);
  6912. designer.SetDataSource("CPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6913. designer.SetDataSource("CPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6914. designer.SetDataSource("CPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6915. designer.SetDataSource("CPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6916. designer.SetDataSource("CPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6917. }
  6918. else
  6919. {
  6920. hideRowsList.Add(Row + startIndex + HideRows);
  6921. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6922. }
  6923. HideRows += 2;
  6924. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  6925. if (leftBindData != null)
  6926. {
  6927. designer.SetDataSource("GWDRCD", leftBindData.cb);
  6928. designer.SetDataSource("GWRS", leftBindData.rs);
  6929. designer.SetDataSource("GWXS", leftBindData.xs);
  6930. designer.SetDataSource("GWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6931. designer.SetDataSource("GWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6932. designer.SetDataSource("GWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6933. designer.SetDataSource("GWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6934. designer.SetDataSource("GWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6935. }
  6936. else
  6937. {
  6938. hideRowsList.Add(Row + startIndex + HideRows);
  6939. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6940. }
  6941. HideRows += 2;
  6942. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  6943. if (leftBindData != null)
  6944. {
  6945. designer.SetDataSource("LYJDRCB", leftBindData.cb);
  6946. designer.SetDataSource("LYJRS", leftBindData.rs);
  6947. designer.SetDataSource("LYJXS", leftBindData.xs);
  6948. designer.SetDataSource("LYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6949. designer.SetDataSource("LYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6950. designer.SetDataSource("LYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6951. designer.SetDataSource("LYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6952. designer.SetDataSource("LYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6953. }
  6954. else
  6955. {
  6956. hideRowsList.Add(Row + startIndex + HideRows);
  6957. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6958. }
  6959. #endregion
  6960. #region A段Right信息
  6961. var right = dto.rightInfo.Find(x => x.Type == "A");
  6962. if (right == null)
  6963. {
  6964. return Ok(jw);
  6965. }
  6966. HideRows += 4;
  6967. var rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  6968. if (rightBindData != null)
  6969. {
  6970. //经济舱 + 双人间 TBR
  6971. designer.SetDataSource("lblJJCTBRDRCB", rightBindData.cb);
  6972. designer.SetDataSource("txtJJCTBRRS", rightBindData.rs);
  6973. designer.SetDataSource("lblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  6974. designer.SetDataSource("lblJJCTBRDRBJ", rightBindData.bj);
  6975. designer.SetDataSource("lblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  6976. designer.SetDataSource("lblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  6977. designer.SetDataSource("lblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  6978. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  6979. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  6980. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  6981. }
  6982. else
  6983. {
  6984. hideRowsList.Add(Row + startIndex + HideRows);
  6985. }
  6986. HideRows += 2;
  6987. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  6988. if (rightBindData != null)
  6989. {
  6990. //经济舱 + 单人间 SGR
  6991. designer.SetDataSource("lblJJCSGRDRCB", rightBindData.cb);
  6992. designer.SetDataSource("txtJJCSGRRS", rightBindData.rs);
  6993. designer.SetDataSource("lblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  6994. designer.SetDataSource("lblJJCSGRDRBJ", rightBindData.bj);
  6995. designer.SetDataSource("lblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  6996. designer.SetDataSource("lblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  6997. designer.SetDataSource("lblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  6998. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  6999. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7000. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7001. }
  7002. else
  7003. {
  7004. hideRowsList.Add(Row + startIndex + HideRows);
  7005. }
  7006. HideRows += 2;
  7007. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  7008. if (rightBindData != null)
  7009. {
  7010. //公务舱 + 单人间 SGR
  7011. designer.SetDataSource("lblGWCSGRCB", rightBindData.cb);
  7012. designer.SetDataSource("lblGWCSGRRS", rightBindData.rs);
  7013. designer.SetDataSource("lblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7014. designer.SetDataSource("lblGWCSGRDRBJ", rightBindData.bj);
  7015. designer.SetDataSource("lblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7016. designer.SetDataSource("lblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7017. designer.SetDataSource("lblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7018. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7019. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7020. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7021. }
  7022. else
  7023. {
  7024. hideRowsList.Add(Row + startIndex + HideRows);
  7025. }
  7026. HideRows += 2;
  7027. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7028. if (rightBindData != null)
  7029. {
  7030. //公务舱 + 小套房 JSES
  7031. designer.SetDataSource("lblGWCJSESDRCB", rightBindData.cb);
  7032. designer.SetDataSource("txtGWCJSESRS", rightBindData.rs);
  7033. designer.SetDataSource("lblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7034. designer.SetDataSource("lblGWCJSESDRBJ", rightBindData.bj);
  7035. designer.SetDataSource("lblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7036. designer.SetDataSource("lblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7037. designer.SetDataSource("lblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7038. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7039. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7040. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7041. }
  7042. else
  7043. {
  7044. hideRowsList.Add(Row + startIndex + HideRows);
  7045. }
  7046. HideRows += 2;
  7047. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  7048. if (rightBindData != null)
  7049. {
  7050. //公务舱 + 小套房 JSES
  7051. designer.SetDataSource("lblGWCSUITEDRCB", rightBindData.cb);
  7052. designer.SetDataSource("txtGWCSUITERS", rightBindData.rs);
  7053. designer.SetDataSource("lblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7054. designer.SetDataSource("lblGWCSUITEDRBJ", rightBindData.bj);
  7055. designer.SetDataSource("lblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7056. designer.SetDataSource("lblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7057. designer.SetDataSource("lblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7058. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7059. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7060. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7061. }
  7062. else
  7063. {
  7064. hideRowsList.Add(Row + startIndex + HideRows);
  7065. }
  7066. HideRows += 2;
  7067. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7068. if (rightBindData != null)
  7069. {
  7070. //经济舱 + 大套房
  7071. designer.SetDataSource("lblJJCSUITEDRCB", rightBindData.cb);
  7072. designer.SetDataSource("txtJJCSUITERS", rightBindData.rs);
  7073. designer.SetDataSource("lblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7074. designer.SetDataSource("lblJJCSUITEDRBJ", rightBindData.bj);
  7075. designer.SetDataSource("lblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7076. designer.SetDataSource("lblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7077. designer.SetDataSource("lblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7078. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7079. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7080. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7081. }
  7082. else
  7083. {
  7084. hideRowsList.Add(Row + startIndex + HideRows);
  7085. }
  7086. #endregion
  7087. #region B段标题清空
  7088. designer.SetDataSource("CostBDRCB", "");
  7089. designer.SetDataSource("CostBRS", "");
  7090. designer.SetDataSource("CostBXS", "");
  7091. designer.SetDataSource("CostBZCB", "");
  7092. designer.SetDataSource("CostBDRBJ", "");
  7093. designer.SetDataSource("CostBZBJ", "");
  7094. designer.SetDataSource("CostBDRLR", "");
  7095. designer.SetDataSource("CostBZLR", "");
  7096. designer.SetDataSource("CostBDRCBOM", "");
  7097. designer.SetDataSource("CostBRSOM", "");
  7098. designer.SetDataSource("CostBZCBOM", "");
  7099. designer.SetDataSource("CostBDRBJOM", "");
  7100. designer.SetDataSource("CostBZBJOM", "");
  7101. designer.SetDataSource("CostBDRLROM", "");
  7102. designer.SetDataSource("CostBZLROM", "");
  7103. #endregion
  7104. designer.SetDataSource("HotelTBRName", "酒店TBR单间成本(CNY)");
  7105. designer.SetDataSource("HotelSGRName", "酒店SGR单间成本(CNY)");
  7106. designer.SetDataSource("HotelJSESName", "酒店JSES单间成本(CNY)");
  7107. designer.SetDataSource("HotelSUITEName", "酒店SUITE单间成本(CNY)");
  7108. designer.SetDataSource("DJName", "地接(CNY)");
  7109. designer.SetDataSource("HCPName", "地接-火车票(CNY)");
  7110. designer.SetDataSource("CPName", "地接-船票(CNY)");
  7111. designer.SetDataSource("GWName", "公务(CNY)");
  7112. designer.SetDataSource("YQHName", "邀请函(CNY)");
  7113. designer.SetDataSource("LYJName", "零用金(CNY)");
  7114. designer.SetDataSource("HSName", "核酸检测(CNY)");
  7115. designer.SetDataSource("AirGWCName", "机票-公务舱(CNY)");
  7116. designer.SetDataSource("AirJJCName", "机票-经济舱(CNY)");
  7117. designer.SetDataSource("BXName", "保险(CNY)");
  7118. designer.SetDataSource("VisaName", "签证(CNY)");
  7119. #region B段基本数据
  7120. if (dto.costType == "B")
  7121. {
  7122. left = dto.leftInfo.Find(x => x.Type == "B");
  7123. if (left == null)
  7124. {
  7125. return Ok(jw);
  7126. }
  7127. #region B段left数据
  7128. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  7129. if (leftBindData != null)
  7130. {
  7131. designer.SetDataSource("BHSDRCB", leftBindData.cb);
  7132. designer.SetDataSource("BHSRS", leftBindData.rs);
  7133. designer.SetDataSource("BHSXS", leftBindData.xs);
  7134. designer.SetDataSource("BHSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7135. designer.SetDataSource("BHSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7136. designer.SetDataSource("BHSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7137. designer.SetDataSource("BHSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7138. designer.SetDataSource("BHSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7139. }
  7140. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  7141. if (leftBindData != null)
  7142. {
  7143. designer.SetDataSource("BJPJJCCB", leftBindData.cb);
  7144. designer.SetDataSource("BJPJJCPnum", leftBindData.rs);
  7145. designer.SetDataSource("BJPJJCXS", leftBindData.xs);
  7146. designer.SetDataSource("BJPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7147. designer.SetDataSource("BJPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7148. designer.SetDataSource("BJPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7149. designer.SetDataSource("BJPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7150. designer.SetDataSource("BJPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7151. }
  7152. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  7153. if (leftBindData != null)
  7154. {
  7155. designer.SetDataSource("BJPGWCCB", leftBindData.cb);
  7156. designer.SetDataSource("BJPGWCPNum", leftBindData.rs);
  7157. designer.SetDataSource("BJPGWCXS", leftBindData.xs);
  7158. designer.SetDataSource("BJPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7159. designer.SetDataSource("BJPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7160. designer.SetDataSource("BJPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7161. designer.SetDataSource("BJPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7162. designer.SetDataSource("BJPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7163. }
  7164. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  7165. if (leftBindData != null)
  7166. {
  7167. designer.SetDataSource("BHCPCB", leftBindData.cb);
  7168. designer.SetDataSource("BHCPRS", leftBindData.rs);
  7169. designer.SetDataSource("BHCPXS", leftBindData.xs);
  7170. designer.SetDataSource("BHCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7171. designer.SetDataSource("BHCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7172. designer.SetDataSource("BHCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7173. designer.SetDataSource("BHCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7174. designer.SetDataSource("BHCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7175. }
  7176. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  7177. if (leftBindData != null)
  7178. {
  7179. designer.SetDataSource("BCPCB", leftBindData.cb);
  7180. designer.SetDataSource("BCPRS", leftBindData.rs);
  7181. designer.SetDataSource("BCPXS", leftBindData.xs);
  7182. designer.SetDataSource("BCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7183. designer.SetDataSource("BCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7184. designer.SetDataSource("BCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7185. designer.SetDataSource("BCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7186. designer.SetDataSource("BCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7187. }
  7188. //TBR
  7189. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  7190. if (leftBindData != null)
  7191. {
  7192. designer.SetDataSource("BHotelTBRDRCB", leftBindData.cb);
  7193. designer.SetDataSource("BHotelTBRRS", leftBindData.rs);
  7194. designer.SetDataSource("BHotelTBRXS", leftBindData.xs);
  7195. designer.SetDataSource("BHotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7196. designer.SetDataSource("BHotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7197. designer.SetDataSource("BHotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7198. designer.SetDataSource("BHotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7199. designer.SetDataSource("BHotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7200. }
  7201. //SGR
  7202. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  7203. if (leftBindData != null)
  7204. {
  7205. designer.SetDataSource("BHotelSGRDRCB", leftBindData.cb);
  7206. designer.SetDataSource("BHotelSGRRS", leftBindData.rs);
  7207. designer.SetDataSource("BHotelSGRXS", leftBindData.xs);
  7208. designer.SetDataSource("BHotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7209. designer.SetDataSource("BHotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7210. designer.SetDataSource("BHotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7211. designer.SetDataSource("BHotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7212. designer.SetDataSource("BHotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7213. }
  7214. //JS/ES
  7215. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  7216. if (leftBindData != null)
  7217. {
  7218. designer.SetDataSource("BHotelJSESDRCB", leftBindData.cb);
  7219. designer.SetDataSource("BHotelJSESRS", leftBindData.rs);
  7220. designer.SetDataSource("BHotelJSESXS", leftBindData.xs);
  7221. designer.SetDataSource("BHotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7222. designer.SetDataSource("BHotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7223. designer.SetDataSource("BHotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7224. designer.SetDataSource("BHotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7225. designer.SetDataSource("BHotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7226. }
  7227. //SUITE
  7228. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  7229. if (leftBindData != null)
  7230. {
  7231. designer.SetDataSource("BHotelSUITEDRCB", leftBindData.cb);
  7232. designer.SetDataSource("BHotelSUITERS", leftBindData.rs);
  7233. designer.SetDataSource("BHotelSUITEXS", leftBindData.xs);
  7234. designer.SetDataSource("BHotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7235. designer.SetDataSource("BHotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7236. designer.SetDataSource("BHotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7237. designer.SetDataSource("BHotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7238. designer.SetDataSource("BHotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7239. }
  7240. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  7241. if (leftBindData != null)
  7242. {
  7243. designer.SetDataSource("BDJDRCB", leftBindData.cb);
  7244. designer.SetDataSource("BDJRS", leftBindData.rs);
  7245. designer.SetDataSource("BDJXS", leftBindData.xs);
  7246. designer.SetDataSource("BDJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7247. designer.SetDataSource("BDJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7248. designer.SetDataSource("BDJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7249. designer.SetDataSource("BDJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7250. designer.SetDataSource("BDJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7251. }
  7252. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  7253. if (leftBindData != null)
  7254. {
  7255. designer.SetDataSource("BGWDRCD", leftBindData.cb);
  7256. designer.SetDataSource("BGWRS", leftBindData.rs);
  7257. designer.SetDataSource("BGWXS", leftBindData.xs);
  7258. designer.SetDataSource("BGWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7259. designer.SetDataSource("BGWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7260. designer.SetDataSource("BGWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7261. designer.SetDataSource("BGWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7262. designer.SetDataSource("BGWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7263. }
  7264. #region 优化方案
  7265. //Dictionary<string, object> excelBind = new Dictionary<string, object>();
  7266. //excelBind.Add("零用金", new {
  7267. //cb="",
  7268. //rs="",
  7269. //xs ="",
  7270. //zcb = "",
  7271. //});
  7272. #endregion
  7273. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  7274. if (leftBindData != null)
  7275. {
  7276. designer.SetDataSource("BLYJDRCB", leftBindData.cb);
  7277. designer.SetDataSource("BLYJRS", leftBindData.rs);
  7278. designer.SetDataSource("BLYJXS", leftBindData.xs);
  7279. designer.SetDataSource("BLYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7280. designer.SetDataSource("BLYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7281. designer.SetDataSource("BLYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7282. designer.SetDataSource("BLYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7283. designer.SetDataSource("BLYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7284. }
  7285. #endregion
  7286. #region B段Right信息
  7287. right = dto.rightInfo.Find(x => x.Type == "B");
  7288. if (right == null)
  7289. {
  7290. return Ok(jw);
  7291. }
  7292. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  7293. if (rightBindData != null)
  7294. {
  7295. //经济舱 + 双人间 TBR
  7296. designer.SetDataSource("BlblJJCTBRDRCB", rightBindData.cb);
  7297. designer.SetDataSource("BtxtJJCTBRRS", rightBindData.rs);
  7298. designer.SetDataSource("BlblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7299. designer.SetDataSource("BlblJJCTBRDRBJ", rightBindData.bj);
  7300. designer.SetDataSource("BlblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7301. designer.SetDataSource("BlblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7302. designer.SetDataSource("BlblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7303. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7304. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7305. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7306. }
  7307. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  7308. if (rightBindData != null)
  7309. {
  7310. //经济舱 + 单人间 SGR
  7311. designer.SetDataSource("BlblJJCSGRDRCB", rightBindData.cb);
  7312. designer.SetDataSource("BtxtJJCSGRRS", rightBindData.rs);
  7313. designer.SetDataSource("BlblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7314. designer.SetDataSource("BlblJJCSGRDRBJ", rightBindData.bj);
  7315. designer.SetDataSource("BlblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7316. designer.SetDataSource("BlblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7317. designer.SetDataSource("BlblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7318. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7319. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7320. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7321. }
  7322. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  7323. if (rightBindData != null)
  7324. {
  7325. //公务舱 + 单人间 SGR
  7326. designer.SetDataSource("BlblGWCSGRCB", rightBindData.cb);
  7327. designer.SetDataSource("BlblGWCSGRRS", rightBindData.rs);
  7328. designer.SetDataSource("BlblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7329. designer.SetDataSource("BlblGWCSGRDRBJ", rightBindData.bj);
  7330. designer.SetDataSource("BlblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7331. designer.SetDataSource("BlblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7332. designer.SetDataSource("BlblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7333. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7334. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7335. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7336. }
  7337. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7338. if (rightBindData != null)
  7339. {
  7340. //公务舱 + 小套房 JSES
  7341. designer.SetDataSource("BlblGWCJSESDRCB", rightBindData.cb);
  7342. designer.SetDataSource("BtxtGWCJSESRS", rightBindData.rs);
  7343. designer.SetDataSource("BlblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7344. designer.SetDataSource("BlblGWCJSESDRBJ", rightBindData.bj);
  7345. designer.SetDataSource("BlblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7346. designer.SetDataSource("BlblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7347. designer.SetDataSource("BlblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7348. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7349. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7350. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7351. }
  7352. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  7353. if (rightBindData != null)
  7354. {
  7355. //公务舱 + 小套房 JSES
  7356. designer.SetDataSource("BlblGWCSUITEDRCB", rightBindData.cb);
  7357. designer.SetDataSource("BtxtGWCSUITERS", rightBindData.rs);
  7358. designer.SetDataSource("BlblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7359. designer.SetDataSource("BlblGWCSUITEDRBJ", rightBindData.bj);
  7360. designer.SetDataSource("BlblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7361. designer.SetDataSource("BlblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7362. designer.SetDataSource("BlblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7363. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7364. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7365. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7366. }
  7367. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7368. if (rightBindData != null)
  7369. {
  7370. //经济舱 + 大套房
  7371. designer.SetDataSource("BlblJJCSUITEDRCB", rightBindData.cb);
  7372. designer.SetDataSource("BtxtJJCSUITERS", rightBindData.rs);
  7373. designer.SetDataSource("BlblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7374. designer.SetDataSource("BlblJJCSUITEDRBJ", rightBindData.bj);
  7375. designer.SetDataSource("BlblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7376. designer.SetDataSource("BlblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7377. designer.SetDataSource("BlblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7378. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7379. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7380. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7381. }
  7382. #endregion
  7383. #region 标题
  7384. designer.SetDataSource("CostBDRCB", "单人成本");
  7385. designer.SetDataSource("CostBRS", "人数");
  7386. designer.SetDataSource("CostBXS", "系数");
  7387. designer.SetDataSource("CostBZCB", "总成本");
  7388. designer.SetDataSource("CostBDRBJ", "单人报价");
  7389. designer.SetDataSource("CostBZBJ", "总报价");
  7390. designer.SetDataSource("CostBDRLR", "单人利润");
  7391. designer.SetDataSource("CostBZLR", "总利润");
  7392. designer.SetDataSource("CostBDRCBOM", "单人成本");
  7393. designer.SetDataSource("CostBRSOM", "人数");
  7394. designer.SetDataSource("CostBZCBOM", "总成本");
  7395. designer.SetDataSource("CostBDRBJOM", "单人报价");
  7396. designer.SetDataSource("CostBZBJOM", "总报价");
  7397. designer.SetDataSource("CostBDRLROM", "单人利润");
  7398. designer.SetDataSource("CostBZLROM", "总利润");
  7399. #endregion
  7400. }
  7401. #endregion
  7402. designer.SetDataSource("TzZCB2", TzZCB2);
  7403. designer.SetDataSource("TzZBJ2", TzZBJ2);
  7404. designer.SetDataSource("TzZLR2", TzZLR2);
  7405. string[] dataSourceKeys = new string[]
  7406. {
  7407. "VF",
  7408. "TGS",
  7409. "TGOF",
  7410. "TGM",
  7411. "TGA",
  7412. "TGTF",
  7413. "TGEF",
  7414. "CFM",
  7415. "CFOF",
  7416. "B",
  7417. "L",
  7418. "D",
  7419. "TBR",
  7420. "SGR",
  7421. "JSES",
  7422. "Suite",
  7423. "TV",
  7424. "1L",
  7425. "IF",
  7426. "EF",
  7427. "BRF",
  7428. "TE",
  7429. "TGT",
  7430. "DRVT",
  7431. "PC",
  7432. "TLF",
  7433. "ECT"
  7434. };
  7435. foreach (var item in dataSourceKeys)
  7436. {
  7437. var find = dto.titleModel.FirstOrDefault(x => x.label.Replace(" ", "").Replace("/", "") == item);
  7438. if (find != null)
  7439. {
  7440. designer.SetDataSource(item, find.text);
  7441. }
  7442. else
  7443. {
  7444. designer.SetDataSource(item, 0);
  7445. }
  7446. }
  7447. designer.SetDataSource(dt);
  7448. //根据数据源处理生成报表内容
  7449. designer.Process();
  7450. designer.Workbook.Worksheets[0].Name = "清单";
  7451. Worksheet sheet = designer.Workbook.Worksheets[0];
  7452. foreach (var Rowindex in hideRowsList)
  7453. {
  7454. ws.Cells.HideRows(Rowindex, 2);
  7455. }
  7456. byte[] bytes = null;
  7457. string strFileName = di.TeamName + "-团组-成本.xls";
  7458. using (MemoryStream stream = new MemoryStream())
  7459. {
  7460. designer.Workbook.Save(stream, Aspose.Cells.SaveFormat.Xlsx);
  7461. bytes = stream.ToArray();
  7462. }
  7463. return Ok(JsonView(true, "", new
  7464. {
  7465. Data = bytes,
  7466. strFileName,
  7467. }));
  7468. }
  7469. /// <summary>
  7470. /// 导出客户报表
  7471. /// </summary>
  7472. /// <returns></returns>
  7473. [HttpPost]
  7474. public async Task<IActionResult> ExportClientWordFile(ExportClientWordFileDto dto)
  7475. {
  7476. var jw = JsonView(false);
  7477. if (dto.Diid == 0)
  7478. {
  7479. return Ok(JsonView(false, "请传递团组id"));
  7480. }
  7481. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  7482. if (deleInfo.Code != 0)
  7483. {
  7484. return Ok(JsonView(false, "团组信息查询失败!"));
  7485. }
  7486. var di = deleInfo.Data as DelegationInfoWebView;
  7487. if (di == null)
  7488. {
  7489. return Ok(JsonView(false, "团组信息查询失败!"));
  7490. }
  7491. //文件名
  7492. //string strFileName = di.TeamName + "-团组-客户报价.doc";
  7493. //获取模板
  7494. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/团组-客户报价.doc");
  7495. //载入模板
  7496. Document doc = new Document(tmppath);
  7497. Aspose.Words.DocumentBuilder builder = new Aspose.Words.DocumentBuilder(doc);
  7498. Dictionary<string, string> DickeyValue = new Dictionary<string, string>();
  7499. DickeyValue.Add("DickeyValue", di.TeamName); //团组名
  7500. var ParameterList = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(dto.Diid);
  7501. var AParameter = ParameterList.Find(x => x.CostType == "A");
  7502. var BParameter = ParameterList.Find(x => x.CostType == "B");
  7503. if (AParameter == null)
  7504. {
  7505. return Ok(JsonView(false, "系数不存在!"));
  7506. }
  7507. string CarGuides, TzNumber, CarGuides1, Meal, SubsidizedMeals, NightRepair, AttractionsTickets, MiscellaneousFees, ATip, TzHotelDesc, Offcial, PettyCash, Visa, TrainTicket, TicketPrice
  7508. , TzAirDesc, TzZCost;
  7509. CarGuides = TzNumber = CarGuides1 = Meal = SubsidizedMeals = NightRepair = AttractionsTickets = MiscellaneousFees = ATip = TzHotelDesc = Offcial = PettyCash = Visa = TrainTicket = TicketPrice
  7510. = TzAirDesc = TzZCost = string.Empty;
  7511. TzNumber = AParameter.CostTypenumber.ToString();
  7512. CarGuides = "RMB " + (AParameter.DJCB * AParameter.DJXS).ToString("#0.00");
  7513. CarGuides1 = dto.CarGuides1;
  7514. Meal = dto.Meal;
  7515. SubsidizedMeals = dto.SubsidizedMeals;
  7516. NightRepair = dto.NightRepair;
  7517. AttractionsTickets = dto.AttractionsTickets;
  7518. MiscellaneousFees = dto.MiscellaneousFees;
  7519. ATip = dto.ATip;
  7520. TzHotelDesc = "";
  7521. Offcial = "RMB " + (AParameter.GWCB * AParameter.GWXS).ToString("#0.00");
  7522. PettyCash = "RMB " + (AParameter.LYJCB * AParameter.LYJXS).ToString("#0.00");
  7523. Visa = "RMB " + (AParameter.VisaCB * AParameter.VisaXS + AParameter.HSCB * AParameter.HSXS + AParameter.BXCB * AParameter.BXXS).ToString("#0.00");
  7524. TrainTicket = "RMB " + (AParameter.HCPCB * AParameter.HCPXS).ToString("#0.00");
  7525. TicketPrice = "RMB " + (AParameter.CPCB * AParameter.CPXS).ToString("#0.00");
  7526. TzAirDesc = "";
  7527. TzZCost = dto.TzZCost;
  7528. var TzHotelDescArr = new string[] { "SGR", "JSES", "SUITE", "TBR" };
  7529. var TzAirDescArr = new string[] { "经济舱", "公务舱" };
  7530. var index = 1;
  7531. var AinfoArr = dto.leftInfo.Find(x => x.Type == "A");
  7532. foreach (var item in TzHotelDescArr)
  7533. {
  7534. if (AinfoArr != null)
  7535. {
  7536. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7537. if (Ainfo != null)
  7538. {
  7539. if (int.Parse(Ainfo.rs) <= 0)
  7540. {
  7541. continue;
  7542. }
  7543. var hotelText = string.Empty;
  7544. switch (item)
  7545. {
  7546. case "SGR":
  7547. hotelText = "单人间";
  7548. break;
  7549. case "JSES":
  7550. hotelText = "小套房";
  7551. break;
  7552. case "SUITE":
  7553. hotelText = "套房";
  7554. break;
  7555. case "TBR":
  7556. hotelText = "双人间";
  7557. break;
  7558. }
  7559. if (item != "TBR")
  7560. {
  7561. 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";
  7562. }
  7563. else
  7564. {
  7565. 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";
  7566. }
  7567. index++;
  7568. }
  7569. }
  7570. }
  7571. index = 1;
  7572. foreach (var item in TzAirDescArr)
  7573. {
  7574. if (AinfoArr != null)
  7575. {
  7576. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7577. if (Ainfo != null)
  7578. {
  7579. if (int.Parse(Ainfo.rs) <= 0)
  7580. {
  7581. continue;
  7582. }
  7583. 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";
  7584. index++;
  7585. }
  7586. }
  7587. }
  7588. if (dto.costType == "B")
  7589. {
  7590. if (BParameter == null)
  7591. {
  7592. return Ok(JsonView(false, "B段系数不存在!"));
  7593. }
  7594. CarGuides = CarGuides.Insert(0, "A段 ") + " B段 RMB" + (BParameter.DJCB * BParameter.DJXS).ToString("#0.00");
  7595. Offcial = Offcial.Insert(0, "A段 ") + " B段 RMB " + (BParameter.GWCB * BParameter.GWXS).ToString("#0.00");
  7596. PettyCash = PettyCash.Insert(0, "A段 ") + " B段 RMB " + (BParameter.LYJCB * BParameter.LYJXS).ToString("#0.00");
  7597. Visa = Visa.Insert(0, "A段 ") + " B段 RMB " + (BParameter.VisaCB * BParameter.VisaXS + BParameter.HSCB * BParameter.HSXS + BParameter.BXCB * BParameter.BXXS).ToString("#0.00");
  7598. TrainTicket = TrainTicket.Insert(0, "A段 ") + " B段 RMB " + (BParameter.HCPCB * BParameter.HCPXS).ToString("#0.00");
  7599. TicketPrice = TicketPrice.Insert(0, "A段 ") + " B段 RMB " + (BParameter.CPCB * BParameter.CPXS).ToString("#0.00");
  7600. AinfoArr = dto.leftInfo.Find(x => x.Type == "B");
  7601. foreach (var item in TzHotelDescArr)
  7602. {
  7603. if (AinfoArr != null)
  7604. {
  7605. TzHotelDesc += "B段信息 \r\n";
  7606. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7607. if (Ainfo != null)
  7608. {
  7609. if (int.Parse(Ainfo.rs) <= 0)
  7610. {
  7611. continue;
  7612. }
  7613. var hotelText = string.Empty;
  7614. switch (item)
  7615. {
  7616. case "SGR":
  7617. hotelText = "单人间";
  7618. break;
  7619. case "JSES":
  7620. hotelText = "小套房";
  7621. break;
  7622. case "SUITE":
  7623. hotelText = "套房";
  7624. break;
  7625. case "TBR":
  7626. hotelText = "双人间";
  7627. break;
  7628. }
  7629. if (item != "TBR")
  7630. {
  7631. 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";
  7632. }
  7633. else
  7634. {
  7635. 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";
  7636. }
  7637. index++;
  7638. }
  7639. TzHotelDesc = TzHotelDesc.Insert(0, "A段信息 \r\n");
  7640. }
  7641. }
  7642. index = 1;
  7643. foreach (var item in TzAirDescArr)
  7644. {
  7645. if (AinfoArr != null)
  7646. {
  7647. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7648. if (Ainfo != null)
  7649. {
  7650. if (int.Parse(Ainfo.rs) <= 0)
  7651. {
  7652. continue;
  7653. }
  7654. 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";
  7655. index++;
  7656. }
  7657. }
  7658. }
  7659. }
  7660. Visa = Visa.Insert(0, "签证及保险(含核酸检测): ");
  7661. DickeyValue.Add("TzNumber", TzNumber); //团组人数
  7662. DickeyValue.Add("CarGuides", CarGuides); //地接单人报价
  7663. DickeyValue.Add("CarGuides1", CarGuides1); // 地接 - 车导费
  7664. DickeyValue.Add("Meal", Meal); // 地接 - 餐费
  7665. DickeyValue.Add("SubsidizedMeals", SubsidizedMeals);// 地接 - 餐补
  7666. DickeyValue.Add("NightRepair", NightRepair); // 地接 - 宿补
  7667. DickeyValue.Add("AttractionsTickets", AttractionsTickets); // 地接 - 景点
  7668. DickeyValue.Add("MiscellaneousFees", MiscellaneousFees); // 地接 - 杂费
  7669. DickeyValue.Add("ATip", ATip); // 地接 - 小费
  7670. DickeyValue.Add("TzHotelDesc", TzHotelDesc); //酒店
  7671. DickeyValue.Add("Offcial", Offcial); // 公务单人报价
  7672. DickeyValue.Add("PettyCash", PettyCash); // 零用金单人报价
  7673. DickeyValue.Add("Visa", Visa); // 签证单人报价
  7674. DickeyValue.Add("TrainTicket", TrainTicket); //火车票
  7675. DickeyValue.Add("TicketPrice", TicketPrice); //船票
  7676. DickeyValue.Add("TzAirDesc", TzAirDesc); //机票
  7677. DickeyValue.Add("TzZCost", TzZCost);
  7678. foreach (var key in DickeyValue.Keys)
  7679. {
  7680. if (doc.Range.Bookmarks[key] != null)
  7681. {
  7682. Bookmark mark = doc.Range.Bookmarks[key];
  7683. mark.Text = DickeyValue[key];
  7684. }
  7685. }
  7686. byte[] bytes = null;
  7687. string strFileName = di.TeamName + "-客户报价.doc";
  7688. using (MemoryStream stream = new MemoryStream())
  7689. {
  7690. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  7691. bytes = stream.ToArray();
  7692. }
  7693. return Ok(JsonView(true, "", new
  7694. {
  7695. Data = bytes,
  7696. strFileName,
  7697. }));
  7698. }
  7699. /// <summary>
  7700. /// 团组成本 各模块(酒店,地接,机票)成本提示
  7701. /// </summary>
  7702. /// <param name="dto"></param>
  7703. /// <returns></returns>
  7704. [HttpPost]
  7705. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  7706. public async Task<IActionResult> PostGroupCostModulePrompt(GroupCostModulePromptDto dto)
  7707. {
  7708. try
  7709. {
  7710. #region 参数验证
  7711. if (dto.DiId < 0)
  7712. {
  7713. return Ok(JsonView(false, "请传入有效的DiId参数!"));
  7714. }
  7715. List<int> cTableIds = new List<int>() {
  7716. 76 ,//酒店预订
  7717. 77 ,//行程
  7718. 79 ,//车/导游地接
  7719. 80 ,//签证
  7720. 81 ,//邀请/公务活
  7721. 82 ,//团组客户保险
  7722. 85 ,//机票预订
  7723. 98 ,//其他款项
  7724. 285 ,//收款退还
  7725. 751 ,//酒店早餐
  7726. 1015 // 超支费用
  7727. };
  7728. if (dto.CTable < 0 && !cTableIds.Contains(dto.CTable))
  7729. {
  7730. return Ok(JsonView(false, "请传入有效的CTable参数!"));
  7731. }
  7732. #endregion
  7733. //Grp_GroupCostParameter 预算表 Grp_GroupCost 详细费用列表
  7734. var _GroupCostParameters = _usersRep._sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  7735. if (_GroupCostParameters.Count <= 0)
  7736. {
  7737. return Ok(JsonView(false, "暂无该团组成本信息!", new List<dynamic>()));
  7738. }
  7739. if (_GroupCostParameters[0].IsShare == 0)
  7740. {
  7741. return Ok(JsonView(false, "该团组成本未完成!", new List<dynamic>()));
  7742. }
  7743. var _GroupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  7744. //处理date为空问题
  7745. if (_GroupCosts.Count > 0)
  7746. {
  7747. for (int i = 0; i < _GroupCosts.Count; i++)
  7748. {
  7749. if (string.IsNullOrEmpty(_GroupCosts[i].Date))
  7750. {
  7751. if (i > 0)
  7752. {
  7753. _GroupCosts[i].Date = _GroupCosts[i - 1].Date;
  7754. }
  7755. }
  7756. }
  7757. }
  7758. GroupCostModulePromptView _view = new GroupCostModulePromptView();
  7759. List<GroupCostModulePromptInfo> _ModulePromptInfos = new List<GroupCostModulePromptInfo>(); //机票存储多段
  7760. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  7761. string currCode = "";
  7762. #region currCode 验证
  7763. bool isInt = int.TryParse(_GroupCostParameters[0].Currency, out int intCurrency);
  7764. if (isInt)
  7765. {
  7766. var currData = currDatas.Find(it => it.Id == intCurrency);
  7767. if (currData != null)
  7768. {
  7769. currCode = currData.Name;
  7770. }
  7771. }
  7772. else
  7773. {
  7774. currCode = _GroupCostParameters[0].Currency.Trim();
  7775. }
  7776. #endregion
  7777. //op,酒店单段模式存储
  7778. GroupCostModulePromptInfo _ModulePromptInfo = new GroupCostModulePromptInfo()
  7779. {
  7780. CurrencyCode = currCode,
  7781. Rate = _GroupCostParameters[0].Rate,
  7782. CostType = _GroupCostParameters[0].CostType,
  7783. CostTypeStartTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeStartTime).ToString("yyyy-MM-dd"),
  7784. CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeendTime).ToString("yyyy-MM-dd"),
  7785. CostTypeNumber = _GroupCostParameters[0].CostTypenumber
  7786. };
  7787. List<dynamic> _ModuleSubPromptInfo = new List<dynamic>(); // 存储CTbale != 85 的动态数据
  7788. if (_GroupCostParameters.Count == 2)
  7789. {
  7790. _ModulePromptInfo.CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[1].CostTypeendTime).ToString("yyyy-MM-dd");
  7791. }
  7792. foreach (var item in _GroupCostParameters)
  7793. {
  7794. decimal _rate = 1;
  7795. decimal _rate1 = item.Rate;
  7796. decimal _scale = 1;
  7797. //decimal _scale = 0.95M; 雷怡 2024-06-11 10:06:08 屏蔽
  7798. #region 处理地接价格比例 总经理 国交部经理 主管 不下调 其他人 下调 5%
  7799. //var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  7800. //if (userInfo != null)
  7801. //{
  7802. // if (userInfo.DepId == 1 || userInfo.DepId == 7)
  7803. // {
  7804. // if (userInfo.JobPostId == 1 || userInfo.JobPostId == 22 || userInfo.JobPostId == 32)
  7805. // {
  7806. // _scale = 1.00M;
  7807. // }
  7808. // }
  7809. //}
  7810. #endregion
  7811. GroupCostModulePromptInfo modulePromptInfo = new GroupCostModulePromptInfo()
  7812. {
  7813. CurrencyCode = currCode,
  7814. Rate = _rate1,
  7815. CostType = item.CostType,
  7816. CostTypeStartTime = Convert.ToDateTime(item.CostTypeStartTime).ToString("yyyy-MM-dd"),
  7817. CostTypeEndTime = Convert.ToDateTime(item.CostTypeendTime).ToString("yyyy-MM-dd"),
  7818. CostTypeNumber = item.CostTypenumber
  7819. };
  7820. if (_GroupCostParameters.Count > 1)
  7821. {
  7822. modulePromptInfo.CostTypeNumber = item.CostTypenumber;
  7823. }
  7824. else
  7825. {
  7826. modulePromptInfo.CostTypeNumber = item.LYJRS;
  7827. }
  7828. if (dto.CTable == 79)//
  7829. {
  7830. modulePromptInfo.IndividualCost = item.DJCB / modulePromptInfo.CostTypeNumber;
  7831. modulePromptInfo.TotalCost = item.DJCB;
  7832. }
  7833. List<string> costTypes = new List<string>() { "A", "B" };
  7834. List<Grp_GroupCost> _GroupCostsTypeData = new List<Grp_GroupCost>();
  7835. var _GroupCostsDuplicates = _GroupCostParameters.GroupBy(x => x.CostType).Select(y => y.FirstOrDefault());
  7836. if (_GroupCostsDuplicates.Count() == 1)
  7837. {
  7838. _GroupCostsTypeData = _GroupCosts;
  7839. }
  7840. else
  7841. {
  7842. _GroupCostsTypeData = _GroupCosts.Where(it => Convert.ToDateTime(it.Date) >= Convert.ToDateTime(item.CostTypeStartTime) &&
  7843. Convert.ToDateTime(it.Date) <= Convert.ToDateTime(item.CostTypeendTime)).ToList();
  7844. }
  7845. /*
  7846. * 76 酒店预订
  7847. * 77 行程
  7848. * 79 车/导游地接
  7849. * 80 签证
  7850. * 81 邀请/公务活动
  7851. * 82 团组客户保险
  7852. * 85 机票预订
  7853. * 98 其他款项
  7854. * 285 收款退还
  7855. * 751 酒店早餐
  7856. * 1015 超支费用
  7857. */
  7858. switch (dto.CTable)
  7859. {
  7860. case 76: // 酒店预订
  7861. _ModuleSubPromptInfo.AddRange(
  7862. _GroupCostsTypeData.Select(it => new
  7863. {
  7864. it.DAY,
  7865. it.Date,
  7866. it.ACCON,
  7867. it.ITIN,
  7868. it.SGR,
  7869. it.TBR,
  7870. it.JS_ES,
  7871. it.Suite
  7872. })
  7873. );
  7874. break;
  7875. case 79: // 车/导游地接
  7876. _ModuleSubPromptInfo.AddRange(
  7877. _GroupCostsTypeData.Select(it => new
  7878. {
  7879. Date = it.Date, //日期
  7880. CarFee = (it.CarCost + it.CFM + it.CFOF) * _rate * _scale, //车费用
  7881. GuideFee = (it.TGS + it.TGOF + it.TGM + it.TGA + it.TGTF + it.TGEF) * _rate * _scale, //导游费用
  7882. MealFee = (it.B + it.L + it.D) * _rate * _scale, //餐食费
  7883. TicketFee = it.EF * _rate * _scale, //门票费
  7884. TipFee = (it.TGTips + it.DRVTips) * _rate * _scale, //小费
  7885. AirportTransferFee = 0.00M,
  7886. DrinksSnacksFruitFee = it.B_R_F * _rate * _scale, //饮料零食水果
  7887. TravelSupplies = it.TE * _rate * _scale, //出行物资
  7888. LeadersFee = it.TLF * _rate * _scale, //领队费
  7889. CarFee1 = it.CarCost * _rate * _scale,
  7890. CarType = it.CarType, //车型
  7891. SpentCash = it.PC * _rate * _scale, //零用金
  7892. })
  7893. );
  7894. break;
  7895. case 85: // 机票
  7896. List<dynamic> datas = new List<dynamic>();
  7897. datas.Add(
  7898. new
  7899. {
  7900. AirType = "经济舱",
  7901. AirNum = item.JJCRS,
  7902. AirDRCB = item.JJCCB,
  7903. AirZCB = (item.JJCRS * item.JJCCB)
  7904. }
  7905. );
  7906. datas.Add(
  7907. new
  7908. {
  7909. AirType = "公务舱",
  7910. AirNum = item.GWCRS,
  7911. AirDRCB = item.GWCCB,
  7912. AirZCB = (item.GWCRS * item.GWCCB)
  7913. }
  7914. );
  7915. var groupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  7916. var initDatas = groupCosts.Select(it => new { date = it.Date, week = it.Date.GetWeek() == "" ? "-" : it.Date.GetWeek(), itinerary = it.ITIN }).ToList();
  7917. modulePromptInfo.Data = new {
  7918. airFeeData = datas,
  7919. airInitData = initDatas
  7920. };
  7921. _ModulePromptInfos.Add(modulePromptInfo);
  7922. break;
  7923. default:
  7924. break;
  7925. }
  7926. }
  7927. if (dto.CTable != 85)
  7928. {
  7929. _ModulePromptInfo.Data = _ModuleSubPromptInfo;
  7930. _ModulePromptInfos.Add(_ModulePromptInfo);
  7931. }
  7932. _view.ModulePromptInfos = _ModulePromptInfos;
  7933. return Ok(JsonView(true, "操作成功!", _view));
  7934. }
  7935. catch (Exception ex)
  7936. {
  7937. return Ok(JsonView(false, ex.Message));
  7938. }
  7939. }
  7940. /// <summary>
  7941. /// 根据黑屏代码重新生成行程
  7942. /// </summary>
  7943. /// <param name="dto"></param>
  7944. /// <returns></returns>
  7945. [HttpPost]
  7946. public IActionResult CraeteGroupCostTravel(GroupCostInItDto dto)
  7947. {
  7948. var jw = JsonView(false);
  7949. var Create =_GroupCostRepository.
  7950. CreateGroupCostByBlackCode(dto.Diid);
  7951. jw.Msg = Create.Msg;
  7952. if (Create.Code == 0)
  7953. {
  7954. jw.Code = 200;
  7955. jw.Data = new
  7956. {
  7957. groupCost = Create.Data,
  7958. blackCodeIsTrue = true
  7959. };
  7960. }
  7961. else
  7962. {
  7963. jw.Code = 400;
  7964. jw.Data = new
  7965. {
  7966. groupCost = Create.Data,
  7967. blackCodeIsTrue = false,
  7968. };
  7969. }
  7970. return Ok(jw);
  7971. }
  7972. [HttpPost]
  7973. public async Task<IActionResult> GetHistoryCarData(HistoryCarDataDto dto)
  7974. {
  7975. var jw = JsonView(false);
  7976. List<HistoryCarDataView> view = new List<HistoryCarDataView>();
  7977. //获取现有所有车的数据
  7978. if (dto.Param.IsNullOrWhiteSpace())
  7979. {
  7980. if (dto.Param.Contains("、")) //
  7981. {
  7982. }
  7983. else
  7984. {
  7985. view = await _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations, Grp_CarTouristGuideGroundReservationsContent, Sys_SetData, Grp_DelegationInfo>((c, cc, s, d) =>
  7986. cc.CTGGRId == c.Id && cc.SId == s.Id && c.DiId == d.Id
  7987. ).Where((c, cc, s) => s.Id == 91 && (c.Area.Contains(dto.Param) || c.PriceName.Contains(dto.Param))
  7988. && cc.Price != 0 && (c.Area.IndexOf("尾款") == -1))
  7989. .Select((c, cc, s, d) => new HistoryCarDataView
  7990. {
  7991. TeamName = d.TeamName,
  7992. Area = c.Area,
  7993. PriceName = c.PriceName,
  7994. Price = cc.Price,
  7995. Start = c.ServiceStartTime,
  7996. End = c.ServiceEndTime
  7997. }).ToListAsync();
  7998. view = view.Where(x =>
  7999. {
  8000. var a = DateTime.TryParse(x.Start, out DateTime startTime);
  8001. var b = DateTime.TryParse(x.End, out DateTime endTime);
  8002. if (a && b)
  8003. {
  8004. x.Start = startTime.ToString("yyyy-MM-dd");
  8005. x.End = endTime.ToString("yyyy-MM-dd");
  8006. }
  8007. return a && b;
  8008. }).ToList();
  8009. }
  8010. }
  8011. return Ok(jw);
  8012. }
  8013. #endregion
  8014. #region 酒店预定 保留
  8015. /// <summary>
  8016. /// 酒店预订页面初始化绑定
  8017. /// </summary>
  8018. /// <param name="dto"></param>
  8019. /// <returns></returns>
  8020. [HttpPost]
  8021. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8022. public async Task<IActionResult> HotelReservationsInitialize(HotelReservationsDto dto)
  8023. {
  8024. try
  8025. {
  8026. Result groupData = await _hotelPriceRep.HotelReservationsInitialize(dto);
  8027. if (groupData.Code != 0)
  8028. {
  8029. return Ok(JsonView(false, groupData.Msg));
  8030. }
  8031. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  8032. }
  8033. catch (Exception ex)
  8034. {
  8035. return Ok(JsonView(false, ex.Message));
  8036. }
  8037. }
  8038. /// <summary>
  8039. /// 根据团组Id查询酒店费用列表
  8040. /// </summary>
  8041. /// <param name="dto"></param>
  8042. /// <returns></returns>
  8043. [HttpPost]
  8044. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8045. public async Task<IActionResult> HotelReservationsByDiId(HotelReservationsByDiIdDto dto)
  8046. {
  8047. try
  8048. {
  8049. Result groupData = await _hotelPriceRep.HotelReservationsByDiId(dto);
  8050. if (groupData.Code != 0)
  8051. {
  8052. return Ok(JsonView(false, groupData.Msg));
  8053. }
  8054. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  8055. }
  8056. catch (Exception ex)
  8057. {
  8058. return Ok(JsonView(false, ex.Message));
  8059. }
  8060. }
  8061. /// <summary>
  8062. /// 根据酒店费用Id查询酒店费用详细
  8063. /// </summary>
  8064. /// <param name="dto"></param>
  8065. /// <returns></returns>
  8066. [HttpPost]
  8067. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8068. public async Task<IActionResult> HotelReservationsById(HotelReservationsByIdDto dto)
  8069. {
  8070. try
  8071. {
  8072. Result groupData = await _hotelPriceRep.HotelReservationsById(dto);
  8073. if (groupData.Code != 0)
  8074. {
  8075. return Ok(JsonView(false, groupData.Msg));
  8076. }
  8077. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  8078. }
  8079. catch (Exception ex)
  8080. {
  8081. return Ok(JsonView(false, ex.Message));
  8082. }
  8083. }
  8084. /// <summary>
  8085. /// 计算酒店付款总金额
  8086. /// </summary>
  8087. /// <param name="dto"></param>
  8088. /// <returns></returns>
  8089. [HttpPost]
  8090. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8091. public async Task<IActionResult> HotelConversionAmounts(HotelReservationsCNYDto dto)
  8092. {
  8093. try
  8094. {
  8095. Result groupData = await _hotelPriceRep.HotelConversionAmounts(dto);
  8096. if (groupData.Code != 0)
  8097. {
  8098. return Ok(JsonView(false, groupData.Msg));
  8099. }
  8100. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  8101. }
  8102. catch (Exception ex)
  8103. {
  8104. return Ok(JsonView(false, ex.Message));
  8105. }
  8106. }
  8107. /// <summary>
  8108. /// 酒店费用操作(Status:1.新增,2.修改)
  8109. /// </summary>
  8110. /// <param name="dto"></param>
  8111. /// <returns></returns>
  8112. [HttpPost]
  8113. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8114. public async Task<IActionResult> OpHotelReservations(OpHotelReservationsData dto)
  8115. {
  8116. try
  8117. {
  8118. Result groupData = await _hotelPriceRep.OpHotelReservations(dto);
  8119. if (groupData.Code != 0)
  8120. {
  8121. return Ok(JsonView(false, groupData.Msg));
  8122. }
  8123. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  8124. }
  8125. catch (Exception ex)
  8126. {
  8127. return Ok(JsonView(false, ex.Message));
  8128. }
  8129. }
  8130. /// <summary>
  8131. /// 文件上传
  8132. /// </summary>
  8133. /// <param name="file"></param>
  8134. /// <returns></returns>
  8135. [HttpPost]
  8136. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8137. public async Task<IActionResult> UploadHotel(IFormFile file)
  8138. {
  8139. try
  8140. {
  8141. if (file != null)
  8142. {
  8143. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  8144. //文件名称
  8145. string projectFileName = file.FileName;
  8146. //上传的文件的路径
  8147. string filePath = "";
  8148. if (!Directory.Exists(fileDir))
  8149. {
  8150. Directory.CreateDirectory(fileDir);
  8151. }
  8152. //上传的文件的路径
  8153. filePath = fileDir + $@"\酒店费用录入相关文件\{projectFileName}";
  8154. using (FileStream fs = System.IO.File.Create(filePath))
  8155. {
  8156. file.CopyTo(fs);
  8157. fs.Flush();
  8158. }
  8159. return Ok(JsonView(true, "上传成功!", projectFileName));
  8160. }
  8161. else
  8162. {
  8163. return Ok(JsonView(false, "上传失败!"));
  8164. }
  8165. }
  8166. catch (Exception ex)
  8167. {
  8168. return Ok(JsonView(false, "程序错误!"));
  8169. throw;
  8170. }
  8171. }
  8172. /// <summary>
  8173. /// 删除指定文件
  8174. /// </summary>
  8175. /// <param name="dto"></param>
  8176. /// <returns></returns>
  8177. [HttpPost]
  8178. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8179. public async Task<IActionResult> DelFileHotel(DelFileDto dto)
  8180. {
  8181. try
  8182. {
  8183. string filePath = "";
  8184. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  8185. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  8186. //int id = 0;
  8187. filePath = fileDir + "/酒店费用录入相关文件/" + dto.fileName;
  8188. // 删除该文件
  8189. try
  8190. {
  8191. System.IO.File.Delete(filePath);
  8192. var result = await _sqlSugar.Updateable<Grp_HotelReservations>().Where(a => a.Id == dto.Id && a.IsDel == 0).SetColumns(a => new Grp_HotelReservations()
  8193. {
  8194. Attachment = "",
  8195. }).ExecuteCommandAsync();
  8196. if (result != 0)
  8197. {
  8198. return Ok(JsonView(true, "成功!"));
  8199. }
  8200. else
  8201. {
  8202. return Ok(JsonView(false, "失败!"));
  8203. }
  8204. }
  8205. catch (Exception)
  8206. {
  8207. var result = await _sqlSugar.Updateable<Grp_HotelReservations>().Where(a => a.Id == dto.Id && a.IsDel == 0).SetColumns(a => new Grp_HotelReservations()
  8208. {
  8209. Attachment = "",
  8210. }).ExecuteCommandAsync();
  8211. if (result != 0)
  8212. {
  8213. return Ok(JsonView(true, "成功!"));
  8214. }
  8215. else
  8216. {
  8217. return Ok(JsonView(false, "失败!"));
  8218. }
  8219. throw;
  8220. }
  8221. }
  8222. catch (Exception ex)
  8223. {
  8224. return Ok(JsonView(false, "程序错误!"));
  8225. throw;
  8226. }
  8227. }
  8228. /// <summary>
  8229. /// 生成VOUCHER
  8230. /// </summary>
  8231. /// <param name="dto"></param>
  8232. /// <returns></returns>
  8233. [HttpPost]
  8234. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8235. public async Task<IActionResult> HotelGenerate(HotelReservationsByIdDto dto)
  8236. {
  8237. Grp_HotelReservations h = _sqlSugar.Queryable<Grp_HotelReservations>().First(a => a.Id == dto.Id && a.IsDel == 0);
  8238. //判断数据是否完整
  8239. if (h != null)
  8240. {
  8241. if (!string.IsNullOrEmpty(h.DetermineNo))
  8242. {
  8243. string strFileName = "HotelStatement/";
  8244. Grp_DelegationInfo dele = _sqlSugar.Queryable<Grp_DelegationInfo>().First(a => a.Id == h.DiId && a.IsDel == 0);
  8245. if (dele != null)
  8246. strFileName += dele.TourCode;
  8247. //载入模板
  8248. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/酒店预订模板.doc";
  8249. Document doc = new Document(sss);
  8250. DocumentBuilder builder = new DocumentBuilder(doc);
  8251. try
  8252. {
  8253. #region 替换Word模板书签内容
  8254. //这里可以创建个DataTable循环添加书签的值,这里提示一下就不多做修改了
  8255. //入住卷预定号码
  8256. if (doc.Range.Bookmarks["VNO"] != null)
  8257. {
  8258. Bookmark mark = doc.Range.Bookmarks["VNO"];
  8259. mark.Text = h.CheckNumber;
  8260. }
  8261. //酒店时间
  8262. if (doc.Range.Bookmarks["Date"] != null)
  8263. {
  8264. Bookmark mark = doc.Range.Bookmarks["Date"];
  8265. mark.Text = Convert.ToDateTime(h.CreateTime).ToString("yyyy-MM-dd");
  8266. }
  8267. //团号
  8268. if (doc.Range.Bookmarks["TNo"] != null)
  8269. {
  8270. Bookmark mark = doc.Range.Bookmarks["TNo"];
  8271. mark.Text = dele.TourCode;
  8272. }
  8273. //预定号码
  8274. if (doc.Range.Bookmarks["BookingId"] != null)
  8275. {
  8276. Bookmark mark = doc.Range.Bookmarks["BookingId"];
  8277. mark.Text = h.ReservationsNo;
  8278. }
  8279. if (doc.Range.Bookmarks["HotelConfirmNo"] != null)
  8280. {
  8281. Bookmark mark = doc.Range.Bookmarks["HotelConfirmNo"];
  8282. mark.Text = h.DetermineNo;
  8283. }
  8284. //酒店城市
  8285. if (doc.Range.Bookmarks["City"] != null)
  8286. {
  8287. Bookmark mark = doc.Range.Bookmarks["City"];
  8288. mark.Text = h.City;
  8289. }
  8290. //酒店名称
  8291. if (doc.Range.Bookmarks["HName"] != null)
  8292. {
  8293. Bookmark mark = doc.Range.Bookmarks["HName"];
  8294. mark.Text = h.HotelName;
  8295. }
  8296. //酒店地址
  8297. if (doc.Range.Bookmarks["Address"] != null)
  8298. {
  8299. Bookmark mark = doc.Range.Bookmarks["Address"];
  8300. mark.Text = h.HotelAddress;
  8301. }
  8302. //酒店电话
  8303. if (doc.Range.Bookmarks["Tel"] != null)
  8304. {
  8305. Bookmark mark = doc.Range.Bookmarks["Tel"];
  8306. mark.Text = h.HotelTel;
  8307. }
  8308. //酒店传真
  8309. if (doc.Range.Bookmarks["Fax"] != null)
  8310. {
  8311. Bookmark mark = doc.Range.Bookmarks["Fax"];
  8312. if (!string.IsNullOrWhiteSpace(h.HotelFax))
  8313. {
  8314. mark.Text = h.HotelFax;
  8315. }
  8316. }
  8317. //入住时间
  8318. if (doc.Range.Bookmarks["CIn"] != null)
  8319. {
  8320. DateTime dtCheckIn = Convert.ToDateTime(h.CheckInDate);
  8321. Bookmark mark = doc.Range.Bookmarks["CIn"];
  8322. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year;
  8323. }
  8324. //退房时间
  8325. if (doc.Range.Bookmarks["COut"] != null)
  8326. {
  8327. DateTime dtCheckOut = Convert.ToDateTime(h.CheckOutDate);
  8328. Bookmark mark = doc.Range.Bookmarks["COut"];
  8329. mark.Text = dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8330. }
  8331. //客户名称
  8332. if (doc.Range.Bookmarks["GName"] != null)
  8333. {
  8334. Bookmark mark = doc.Range.Bookmarks["GName"];
  8335. mark.Text = h.GuestName;
  8336. }
  8337. //房间介绍
  8338. if (doc.Range.Bookmarks["ROOM"] != null)
  8339. {
  8340. Bookmark mark = doc.Range.Bookmarks["ROOM"];
  8341. mark.Text = h.RoomExplanation;
  8342. }
  8343. //报价描述
  8344. if (doc.Range.Bookmarks["NOTE"] != null)
  8345. {
  8346. Bookmark mark = doc.Range.Bookmarks["NOTE"];
  8347. Sys_SetData ss = _sqlSugar.Queryable<Sys_SetData>().First(a => a.Id == h.ReservationsWebsite);
  8348. if (ss != null)
  8349. mark.Text = ss.Name;
  8350. }
  8351. //入住时间
  8352. if (doc.Range.Bookmarks["CheckIn"] != null)
  8353. {
  8354. DateTime dtCheckIn = Convert.ToDateTime(h.CheckInDate);
  8355. Bookmark mark = doc.Range.Bookmarks["CheckIn"];
  8356. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year + " ";
  8357. }
  8358. //退房时间
  8359. if (doc.Range.Bookmarks["CheckOut"] != null)
  8360. {
  8361. DateTime dtCheckOut = Convert.ToDateTime(h.CheckOutDate);
  8362. Bookmark mark = doc.Range.Bookmarks["CheckOut"];
  8363. mark.Text = " " + dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8364. }
  8365. //日期
  8366. if (doc.Range.Bookmarks["DT"] != null)
  8367. {
  8368. Bookmark mark = doc.Range.Bookmarks["DT"];
  8369. mark.Text = Convert.ToDateTime(h.CreateTime).ToString("yyyy-MM-dd");
  8370. }
  8371. //名称
  8372. if (doc.Range.Bookmarks["VName"] != null)
  8373. {
  8374. Bookmark mark = doc.Range.Bookmarks["VName"];
  8375. mark.Text = h.HotelName;
  8376. }
  8377. //号码
  8378. if (doc.Range.Bookmarks["VOUCHERNO"] != null)
  8379. {
  8380. Bookmark mark = doc.Range.Bookmarks["VOUCHERNO"];
  8381. mark.Text = h.CheckNumber;
  8382. }
  8383. #endregion
  8384. //string fileName = "HotelStatement/" + diName + "机票费用报表" + "_" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xlsx";
  8385. strFileName += "VOUCHER.doc";
  8386. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  8387. doc.Save(fileDir);
  8388. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  8389. return Ok(JsonView(true, "成功!", Url));
  8390. }
  8391. catch (Exception ex)
  8392. {
  8393. throw;
  8394. }
  8395. }
  8396. else
  8397. {
  8398. return Ok(JsonView(false, "酒店确定号码未填写,无法生成Voucher!"));
  8399. }
  8400. }
  8401. else
  8402. {
  8403. return Ok(JsonView(false, "酒店确定号码未填写,无法生成Voucher!"));
  8404. }
  8405. }
  8406. /// <summary>
  8407. /// 导出确认单
  8408. /// </summary>
  8409. /// <param name=""></param>
  8410. /// <returns></returns>
  8411. [HttpPost]
  8412. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8413. public async Task<IActionResult> ConfirmWord(HotelReservationsByIdDto dto)
  8414. {
  8415. //团组信息
  8416. Grp_DelegationInfo di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(a => a.Id == dto.Id);
  8417. //酒店数据
  8418. List<Grp_HotelReservations> listhoteldata = _sqlSugar.Queryable<Grp_HotelReservations>().Where(a => a.DiId == dto.Id && a.IsDel == 0).ToList();
  8419. //利datatable存储
  8420. DataTable dt = new DataTable();
  8421. dt.Columns.Add("CheckInDate", typeof(string));
  8422. dt.Columns.Add("City", typeof(string));
  8423. dt.Columns.Add("Hotel", typeof(string));
  8424. dt.Columns.Add("Room", typeof(string));
  8425. for (int i = 0; i < listhoteldata.Count; i++)
  8426. {
  8427. DateTime dayStart = Convert.ToDateTime(listhoteldata[i].CheckInDate);
  8428. DateTime dayEnd = Convert.ToDateTime(listhoteldata[i].CheckOutDate);
  8429. while (dayStart < dayEnd)
  8430. {
  8431. string temp = "";
  8432. DataRow row = dt.NewRow();
  8433. row["CheckInDate"] = dayStart.ToString("yyyy-MM-dd");
  8434. row["City"] = listhoteldata[i].City;
  8435. row["Hotel"] = listhoteldata[i].HotelName;
  8436. if (listhoteldata[i].SingleRoomCount > 0)
  8437. {
  8438. temp = listhoteldata[i].SingleRoomCount + "个单间" + "\r\n";
  8439. }
  8440. if (listhoteldata[i].DoubleRoomCount > 0)
  8441. {
  8442. temp = temp + listhoteldata[i].DoubleRoomCount + "个表间" + "\r\n";
  8443. }
  8444. if (listhoteldata[i].SuiteRoomCount > 0)
  8445. {
  8446. temp = temp + listhoteldata[i].SuiteRoomCount + "个套房" + "\r\n";
  8447. }
  8448. if (listhoteldata[i].OtherRoomCount > 0)
  8449. {
  8450. temp = temp + listhoteldata[i].OtherRoomCount + "个其他房型" + "\r\n";
  8451. }
  8452. row["Room"] = temp;
  8453. dt.Rows.Add(row);
  8454. dayStart = dayStart.AddDays(1);
  8455. }
  8456. }
  8457. Dictionary<string, string> dic = new Dictionary<string, string>();
  8458. dic.Add("Dele", di.TeamName);
  8459. dic.Add("City", di.VisitCountry);
  8460. //模板路径
  8461. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/酒店用房确认单-模板.doc";
  8462. //载入模板
  8463. Aspose.Words.Document doc = new Aspose.Words.Document(tempPath);
  8464. DocumentBuilder builder = new DocumentBuilder(doc);
  8465. foreach (var key in dic.Keys)
  8466. {
  8467. builder.MoveToBookmark(key);
  8468. builder.Write(dic[key]);
  8469. }
  8470. //获取word里所有表格
  8471. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  8472. //获取所填表格的序数
  8473. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  8474. var rowStart = tableOne.Rows[0]; //获取第1行
  8475. try
  8476. {
  8477. //循环赋值
  8478. for (int i = 0; i < dt.Rows.Count; i++)
  8479. {
  8480. builder.MoveToCell(0, i + 1, 0, 0);
  8481. builder.Write(dt.Rows[i]["CheckInDate"].ToString());
  8482. builder.MoveToCell(0, i + 1, 1, 0);
  8483. builder.Write(dt.Rows[i]["City"].ToString());
  8484. builder.MoveToCell(0, i + 1, 2, 0);
  8485. builder.Write(dt.Rows[i]["Hotel"].ToString());
  8486. builder.MoveToCell(0, i + 1, 3, 0);
  8487. builder.Write(dt.Rows[i]["Room"].ToString());
  8488. }
  8489. }
  8490. catch
  8491. {
  8492. }
  8493. //删除多余行
  8494. while (tableOne.Rows.Count > dt.Rows.Count + 1)
  8495. {
  8496. tableOne.Rows.RemoveAt(dt.Rows.Count + 1);
  8497. }
  8498. string strFileName = di.TeamName + "酒店确认单.doc";
  8499. try
  8500. {
  8501. doc.Save(AppSettingsHelper.Get("WordBasePath") + "HotelStatement/" + strFileName);
  8502. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/HotelStatement/" + strFileName;
  8503. return Ok(JsonView(true, "成功", Url));
  8504. }
  8505. catch (Exception)
  8506. {
  8507. return Ok(JsonView(false, "当前文档已打开,请先关闭!"));
  8508. throw;
  8509. }
  8510. }
  8511. /// <summary>
  8512. /// 酒店费用删除
  8513. /// </summary>
  8514. /// <param name="dto"></param>
  8515. /// <returns></returns>
  8516. [HttpPost]
  8517. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8518. public async Task<IActionResult> DelHotelPrice(DelBaseDto dto)
  8519. {
  8520. try
  8521. {
  8522. var res = await _hotelPriceRep.SoftDeleteByIdAsync<Grp_HotelReservations>(dto.Id.ToString(), dto.DeleteUserId);
  8523. if (!res)
  8524. {
  8525. return Ok(JsonView(false, "删除失败"));
  8526. }
  8527. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 76).SetColumns(a => new Grp_CreditCardPayment()
  8528. {
  8529. IsDel = 1,
  8530. DeleteUserId = dto.DeleteUserId,
  8531. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  8532. }).ExecuteCommandAsync();
  8533. return Ok(JsonView(true, "删除成功!"));
  8534. }
  8535. catch (Exception ex)
  8536. {
  8537. return Ok(JsonView(false, "程序错误!"));
  8538. throw;
  8539. }
  8540. }
  8541. #endregion
  8542. #region 酒店预订 新 雷怡 2023-12-28 17:45
  8543. /// <summary>
  8544. /// 酒店预订
  8545. /// 酒店费用列表 根据团组Id查询
  8546. /// </summary>
  8547. /// <param name="_dto"></param>
  8548. /// <returns></returns>
  8549. [HttpPost]
  8550. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8551. public async Task<IActionResult> PostHotelReservationsItemsByDiId(HotelReservationItemDto _dto)
  8552. {
  8553. try
  8554. {
  8555. #region 参数验证
  8556. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8557. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8558. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8559. #region 团组操作权限验证 76 酒店预定模块
  8560. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8561. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8562. #endregion
  8563. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8564. #region 页面操作权限验证
  8565. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8566. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8567. #endregion
  8568. #endregion
  8569. Result _view = await _hotelPriceRep._ItemsByDiId(_dto.PortType, _dto.DiId);
  8570. if (_view.Code != 0)
  8571. {
  8572. return Ok(JsonView(false, _view.Msg));
  8573. }
  8574. return Ok(JsonView(true, _view.Msg, _view.Data));
  8575. }
  8576. catch (Exception ex)
  8577. {
  8578. return Ok(JsonView(false, ex.Message));
  8579. }
  8580. }
  8581. /// <summary>
  8582. /// 酒店预订
  8583. /// 基础数据
  8584. /// </summary>
  8585. /// <param name="_dto"></param>
  8586. /// <returns></returns>
  8587. [HttpPost]
  8588. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8589. public async Task<IActionResult> PostHotelReservationsBasicsDataInit(HotelReservationBasicsDataInitDto _dto)
  8590. {
  8591. try
  8592. {
  8593. #region 参数验证
  8594. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8595. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8596. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8597. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8598. #region 页面操作权限验证
  8599. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8600. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8601. #endregion
  8602. #region 团组操作权限验证 76 酒店预定模块
  8603. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8604. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8605. #endregion
  8606. #endregion
  8607. Result data = await _hotelPriceRep._BasicsDataInit(_dto.PortType, _dto.DiId);
  8608. if (data.Code != 0)
  8609. {
  8610. return Ok(JsonView(false, data.Msg));
  8611. }
  8612. return Ok(JsonView(true, data.Msg, data.Data));
  8613. }
  8614. catch (Exception ex)
  8615. {
  8616. return Ok(JsonView(false, "Catch:" + ex.Message));
  8617. }
  8618. }
  8619. /// <summary>
  8620. /// 酒店预订
  8621. /// 创建 入住卷号码
  8622. /// </summary>
  8623. /// <param name="_dto"></param>
  8624. /// <returns></returns>
  8625. [HttpPost]
  8626. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8627. public async Task<IActionResult> PostHotelReservationsCreateCheckVolumeNo(HotelReservationBasicsDataInitDto _dto)
  8628. {
  8629. try
  8630. {
  8631. #region 参数验证
  8632. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8633. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8634. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8635. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8636. #region 页面操作权限验证
  8637. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8638. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8639. #endregion
  8640. #region 团组操作权限验证 76 酒店预定模块
  8641. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8642. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8643. #endregion
  8644. #endregion
  8645. Result data = await _hotelPriceRep._CreateCheckVolumeNo(_dto.DiId);
  8646. if (data.Code != 0)
  8647. {
  8648. return Ok(JsonView(false, data.Msg));
  8649. }
  8650. return Ok(JsonView(true, data.Msg, data.Data));
  8651. }
  8652. catch (Exception ex)
  8653. {
  8654. return Ok(JsonView(false, ex.Message));
  8655. }
  8656. }
  8657. /// <summary>
  8658. /// 酒店预订
  8659. /// 详情
  8660. /// </summary>
  8661. /// <param name="_dto"></param>
  8662. /// <returns></returns>
  8663. [HttpPost]
  8664. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8665. public async Task<IActionResult> PostHotelReservationsDetails(HotelReservationsDetailsDto _dto)
  8666. {
  8667. try
  8668. {
  8669. #region 参数验证
  8670. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8671. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8672. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8673. #region 团组操作权限验证 76 酒店预定模块
  8674. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8675. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8676. #endregion
  8677. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8678. #region 页面操作权限验证
  8679. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8680. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8681. #endregion
  8682. #endregion
  8683. Result data = await _hotelPriceRep._Details(_dto.PortType, _dto.Id);
  8684. if (data.Code != 0)
  8685. {
  8686. return Ok(JsonView(false, data.Msg));
  8687. }
  8688. return Ok(JsonView(true, data.Msg, data.Data));
  8689. }
  8690. catch (Exception ex)
  8691. {
  8692. return Ok(JsonView(false, ex.Message));
  8693. }
  8694. }
  8695. /// <summary>
  8696. /// 酒店预订
  8697. /// Add Or Edit
  8698. /// </summary>
  8699. /// <param name="_dto"></param>
  8700. /// <returns></returns>
  8701. [HttpPost]
  8702. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8703. public async Task<IActionResult> PostHotelReservationsAddOrEdit(HotelReservationsAddOrEditDto _dto)
  8704. {
  8705. try
  8706. {
  8707. #region 参数验证
  8708. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8709. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8710. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8711. #region 团组操作权限验证 76 酒店预定模块
  8712. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8713. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8714. #endregion
  8715. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8716. #region 页面操作权限验证
  8717. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8718. if (_dto.Id == 0) // Add
  8719. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  8720. else if (_dto.Id > 0) // Edit
  8721. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  8722. else return Ok(JsonView(false, "请输入正确的数据Id!"));
  8723. #endregion
  8724. #endregion
  8725. Result data = await _hotelPriceRep._AddOrEdit(_dto);
  8726. if (data.Code != 0)
  8727. {
  8728. return Ok(JsonView(false, data.Msg));
  8729. }
  8730. #region 应用推送
  8731. try
  8732. {
  8733. int ccpId = data.Data.GetType().GetProperty("ccpId").GetValue(data.Data, null);
  8734. int sign = data.Data.GetType().GetProperty("sign").GetValue(data.Data, null);
  8735. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  8736. }
  8737. catch (Exception ex)
  8738. {
  8739. }
  8740. #endregion
  8741. return Ok(JsonView(true, data.Msg, data.Data));
  8742. }
  8743. catch (Exception ex)
  8744. {
  8745. return Ok(JsonView(false, ex.Message));
  8746. }
  8747. }
  8748. /// <summary>
  8749. /// 酒店预订
  8750. /// Del
  8751. /// </summary>
  8752. /// <param name="_dto"></param>
  8753. /// <returns></returns>
  8754. [HttpPost]
  8755. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8756. public async Task<IActionResult> PostHotelReservationsDel(HotelReservationsDelDto _dto)
  8757. {
  8758. try
  8759. {
  8760. #region 参数验证
  8761. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8762. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8763. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8764. #region 团组操作权限验证 76 酒店预定模块
  8765. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8766. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8767. #endregion
  8768. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8769. #region 页面操作权限验证
  8770. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8771. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  8772. #endregion
  8773. #endregion
  8774. Result data = await _hotelPriceRep._Del(_dto.Id, _dto.UserId);
  8775. if (data.Code != 0)
  8776. {
  8777. return Ok(JsonView(false, data.Msg));
  8778. }
  8779. return Ok(JsonView(true, data.Msg, data.Data));
  8780. }
  8781. catch (Exception ex)
  8782. {
  8783. return Ok(JsonView(false, ex.Message));
  8784. }
  8785. }
  8786. /// <summary>
  8787. /// 酒店预订
  8788. /// 生成VOUCHER
  8789. /// 2024.05.06 之前版本
  8790. /// </summary>
  8791. /// <param name="_dto"></param>
  8792. /// <returns></returns>
  8793. [HttpPost]
  8794. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8795. public async Task<IActionResult> PostHotelReservationsCreateVoucher1(HotelReservationsCreateVoucherDto _dto)
  8796. {
  8797. try
  8798. {
  8799. #region 参数验证
  8800. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8801. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8802. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8803. #region 团组操作权限验证 76 酒店预定模块
  8804. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8805. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8806. #endregion
  8807. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8808. #region 页面操作权限验证
  8809. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8810. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8811. #endregion
  8812. #endregion
  8813. Grp_HotelReservations hr = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.Id == _dto.Id).FirstAsync();
  8814. //判断数据是否完整
  8815. if (hr != null)
  8816. {
  8817. if (!string.IsNullOrEmpty(hr.DetermineNo))
  8818. {
  8819. string strFileName = "HotelStatement/";
  8820. Grp_DelegationInfo dele = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == _dto.DiId).FirstAsync();
  8821. if (dele != null)
  8822. strFileName += dele.TourCode;
  8823. //载入模板
  8824. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/酒店预订模板.doc";
  8825. Document doc = new Document(sss);
  8826. DocumentBuilder builder = new DocumentBuilder(doc);
  8827. #region 替换Word模板书签内容
  8828. //这里可以创建个DataTable循环添加书签的值,这里提示一下就不多做修改了
  8829. //入住卷预定号码
  8830. if (doc.Range.Bookmarks["VNO"] != null)
  8831. {
  8832. Bookmark mark = doc.Range.Bookmarks["VNO"];
  8833. mark.Text = hr.CheckNumber;
  8834. }
  8835. //酒店时间
  8836. if (doc.Range.Bookmarks["Date"] != null)
  8837. {
  8838. Bookmark mark = doc.Range.Bookmarks["Date"];
  8839. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  8840. }
  8841. //团号
  8842. if (doc.Range.Bookmarks["TNo"] != null)
  8843. {
  8844. Bookmark mark = doc.Range.Bookmarks["TNo"];
  8845. mark.Text = dele.TourCode;
  8846. }
  8847. //预定号码
  8848. if (doc.Range.Bookmarks["BookingId"] != null)
  8849. {
  8850. Bookmark mark = doc.Range.Bookmarks["BookingId"];
  8851. mark.Text = hr.ReservationsNo;
  8852. }
  8853. if (doc.Range.Bookmarks["HotelConfirmNo"] != null)
  8854. {
  8855. Bookmark mark = doc.Range.Bookmarks["HotelConfirmNo"];
  8856. mark.Text = hr.DetermineNo;
  8857. }
  8858. //酒店城市
  8859. if (doc.Range.Bookmarks["City"] != null)
  8860. {
  8861. Bookmark mark = doc.Range.Bookmarks["City"];
  8862. mark.Text = hr.City;
  8863. }
  8864. //酒店名称
  8865. if (doc.Range.Bookmarks["HName"] != null)
  8866. {
  8867. Bookmark mark = doc.Range.Bookmarks["HName"];
  8868. mark.Text = hr.HotelName;
  8869. }
  8870. //酒店地址
  8871. if (doc.Range.Bookmarks["Address"] != null)
  8872. {
  8873. Bookmark mark = doc.Range.Bookmarks["Address"];
  8874. mark.Text = hr.HotelAddress;
  8875. }
  8876. //酒店电话
  8877. if (doc.Range.Bookmarks["Tel"] != null)
  8878. {
  8879. Bookmark mark = doc.Range.Bookmarks["Tel"];
  8880. mark.Text = hr.HotelTel;
  8881. }
  8882. //酒店传真
  8883. if (doc.Range.Bookmarks["Fax"] != null)
  8884. {
  8885. Bookmark mark = doc.Range.Bookmarks["Fax"];
  8886. if (!string.IsNullOrWhiteSpace(hr.HotelFax))
  8887. {
  8888. mark.Text = hr.HotelFax;
  8889. }
  8890. }
  8891. //入住时间
  8892. if (doc.Range.Bookmarks["CIn"] != null)
  8893. {
  8894. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  8895. Bookmark mark = doc.Range.Bookmarks["CIn"];
  8896. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year;
  8897. }
  8898. //退房时间
  8899. if (doc.Range.Bookmarks["COut"] != null)
  8900. {
  8901. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  8902. Bookmark mark = doc.Range.Bookmarks["COut"];
  8903. mark.Text = dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8904. }
  8905. //客户名称
  8906. if (doc.Range.Bookmarks["GName"] != null)
  8907. {
  8908. string guestName = "";
  8909. string[] clients = new string[] { };
  8910. if (hr.GuestName.Contains(","))
  8911. {
  8912. clients = hr.GuestName.Split(",");
  8913. }
  8914. else
  8915. {
  8916. clients = new string[] { hr.GuestName };
  8917. }
  8918. List<int> clientIds_int = new List<int>();
  8919. if (clients.Length > 0)
  8920. {
  8921. foreach (var item in clients)
  8922. {
  8923. if (item.IsNumeric())
  8924. {
  8925. clientIds_int.Add(int.Parse(item));
  8926. }
  8927. }
  8928. }
  8929. if (clientIds_int.Count > 0)
  8930. {
  8931. var _clientDatas = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && clientIds_int.Contains(it.Id)).ToList();
  8932. foreach (var client in _clientDatas)
  8933. {
  8934. //男
  8935. if (client.Sex == 0) guestName += $"Mr.";
  8936. //女
  8937. else if (client.Sex == 1) guestName += $"Ms.";
  8938. if (!String.IsNullOrEmpty(client.FirstName + client.LastName))
  8939. {
  8940. guestName += $"{string.Join("", client.FirstName.GetTotalPingYin()).ToUpper()} {string.Join("", client.LastName.GetTotalPingYin()).ToUpper()},";
  8941. }
  8942. //guestName += $"{client.Pinyin},";
  8943. }
  8944. if (guestName.Length > 0)
  8945. {
  8946. guestName = guestName.Substring(0, guestName.Length - 1);
  8947. }
  8948. }
  8949. else
  8950. {
  8951. guestName = hr.GuestName;
  8952. }
  8953. Bookmark mark = doc.Range.Bookmarks["GName"];
  8954. mark.Text = guestName;
  8955. }
  8956. //房间介绍
  8957. if (doc.Range.Bookmarks["ROOM"] != null)
  8958. {
  8959. Bookmark mark = doc.Range.Bookmarks["ROOM"];
  8960. mark.Text = hr.RoomExplanation;
  8961. }
  8962. //报价描述
  8963. if (doc.Range.Bookmarks["NOTE"] != null)
  8964. {
  8965. Bookmark mark = doc.Range.Bookmarks["NOTE"];
  8966. Sys_SetData ss = _sqlSugar.Queryable<Sys_SetData>().First(a => a.Id == hr.ReservationsWebsite);
  8967. if (ss != null)
  8968. mark.Text = ss.Name;
  8969. }
  8970. //入住时间
  8971. if (doc.Range.Bookmarks["CheckIn"] != null)
  8972. {
  8973. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  8974. Bookmark mark = doc.Range.Bookmarks["CheckIn"];
  8975. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year + " ";
  8976. }
  8977. //退房时间
  8978. if (doc.Range.Bookmarks["CheckOut"] != null)
  8979. {
  8980. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  8981. Bookmark mark = doc.Range.Bookmarks["CheckOut"];
  8982. mark.Text = " " + dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8983. }
  8984. //日期
  8985. if (doc.Range.Bookmarks["DT"] != null)
  8986. {
  8987. Bookmark mark = doc.Range.Bookmarks["DT"];
  8988. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  8989. }
  8990. //名称
  8991. if (doc.Range.Bookmarks["VName"] != null)
  8992. {
  8993. Bookmark mark = doc.Range.Bookmarks["VName"];
  8994. mark.Text = hr.HotelName;
  8995. }
  8996. //号码
  8997. if (doc.Range.Bookmarks["VOUCHERNO"] != null)
  8998. {
  8999. Bookmark mark = doc.Range.Bookmarks["VOUCHERNO"];
  9000. mark.Text = hr.CheckNumber;
  9001. }
  9002. #endregion
  9003. strFileName += "VOUCHER.doc";
  9004. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  9005. doc.Save(fileDir);
  9006. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  9007. return Ok(JsonView(true, "操作成功!", Url));
  9008. }
  9009. else
  9010. {
  9011. return Ok(JsonView(false, "酒店确定号码未填写,无法生成Voucher!"));
  9012. }
  9013. }
  9014. else
  9015. {
  9016. return Ok(JsonView(false, "该条数据已删除或不存在!"));
  9017. }
  9018. }
  9019. catch (Exception ex)
  9020. {
  9021. return Ok(JsonView(false, ex.Message));
  9022. }
  9023. }
  9024. /// <summary>
  9025. /// 酒店预订
  9026. /// 生成VOUCHER
  9027. /// 2024.05.06 之后版本
  9028. /// </summary>
  9029. /// <param name="_dto"></param>
  9030. /// <returns></returns>
  9031. [HttpPost]
  9032. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9033. public async Task<IActionResult> PostHotelReservationsCreateVoucher(HotelReservationsCreateVoucherDto _dto)
  9034. {
  9035. #region 参数验证
  9036. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  9037. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  9038. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  9039. #region 团组操作权限验证 76 酒店预定模块
  9040. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9041. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  9042. #endregion
  9043. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9044. #region 页面操作权限验证
  9045. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9046. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9047. #endregion
  9048. #endregion
  9049. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  9050. //判断数据是否完整
  9051. if (hrDtas.Count < 1) return Ok(JsonView(false, "请先录入酒店预订信息!"));
  9052. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  9053. string strFileName = "HotelStatement/";
  9054. string guestNames = ""; //格式Mr.xxx Ms.xxx
  9055. List<HotelVoucherInfoView> vouchers = new List<HotelVoucherInfoView>();
  9056. #region 数据处理
  9057. List<int> guestIds = new List<int>();
  9058. int index = 0;
  9059. foreach (var item in hrDtas)
  9060. {
  9061. if (item.GuestName.Contains(","))
  9062. {
  9063. string[] guestIdArr = item.GuestName.Split(',');
  9064. foreach (var guestIdStr in guestIdArr)
  9065. {
  9066. bool guestBool = int.TryParse(guestIdStr, out int guestId);
  9067. if (guestBool)
  9068. {
  9069. guestIds.Add(guestId);
  9070. }
  9071. }
  9072. }
  9073. else guestNames += item.GuestName;
  9074. var voucherInfo = new HotelVoucherInfoView()
  9075. {
  9076. HotelName = item.HotelName,
  9077. CheckInDate = item.CheckInDate,
  9078. CheckOutDate = item.CheckOutDate,
  9079. ConfirmationNumber = item.DetermineNo.Trim(),
  9080. RoomType = item.RoomExplanation
  9081. };
  9082. vouchers.Add(voucherInfo);
  9083. }
  9084. if (guestIds.Count > 0)
  9085. {
  9086. guestIds = guestIds.Distinct().ToList();
  9087. var guestDatas = await _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && guestIds.Contains(it.Id)).ToListAsync();
  9088. if (guestDatas.Count > 0)
  9089. {
  9090. guestNames = "";
  9091. foreach (var guest in guestDatas)
  9092. {
  9093. string guestName = "";
  9094. if (guest.Sex == 0) guestName += @"MR.";
  9095. else if (guest.Sex == 1) guestName += @"MS.";
  9096. if (guest.Pinyin == null) guestName += $"{string.Join("", guest.LastName.GetTotalPingYin()).ToUpper()}/{string.Join("", guest.FirstName.GetTotalPingYin()).ToUpper()}";
  9097. else guestName += @$"{guest.Pinyin.Replace(" ", "")}";
  9098. guestNames += @$"{guestName.Trim()}、";
  9099. }
  9100. if (guestNames.Length > 0)
  9101. {
  9102. guestNames = guestNames.Substring(0, guestNames.Length - 1);
  9103. }
  9104. }
  9105. }
  9106. #endregion
  9107. //载入模板
  9108. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/Voucher-2024Versions.docx";
  9109. Document doc = new Document(sss);
  9110. DocumentBuilder builder = new DocumentBuilder(doc);
  9111. if (doc.Range.Bookmarks["GuestName"] != null)
  9112. {
  9113. Bookmark mark = doc.Range.Bookmarks["GuestName"];
  9114. mark.Text = guestNames;
  9115. }
  9116. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  9117. Aspose.Words.Tables.Table table = allTables[0] as Aspose.Words.Tables.Table;
  9118. vouchers = vouchers.OrderBy(it => it.CheckInDate).ToList();
  9119. for (int i = 1; i <= vouchers.Count; i++)
  9120. {
  9121. HotelVoucherInfoView hviv = vouchers[i - 1];
  9122. builder.MoveToCell(0, i, 0, 0);
  9123. builder.Write(hviv.HotelName);
  9124. builder.MoveToCell(0, i, 1, 0);
  9125. builder.Write(hviv.CheckInDate);
  9126. builder.MoveToCell(0, i, 2, 0);
  9127. builder.Write(hviv.CheckOutDate);
  9128. builder.MoveToCell(0, i, 3, 0);
  9129. builder.Write(hviv.RoomType);
  9130. builder.MoveToCell(0, i, 4, 0);
  9131. builder.Write(hviv.ConfirmationNumber);
  9132. }
  9133. //删除多余行
  9134. int currRowIndex = vouchers.Count + 1;
  9135. int delRows = 21 - currRowIndex;
  9136. if (delRows > 0)
  9137. {
  9138. for (int i = 0; i < delRows; i++)
  9139. {
  9140. table.Rows.RemoveAt(currRowIndex);
  9141. //cultivateRowIndex++;
  9142. }
  9143. }
  9144. strFileName += "VOUCHER.docx";
  9145. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  9146. doc.Save(fileDir);
  9147. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  9148. return Ok(JsonView(true, "操作成功!", Url));
  9149. }
  9150. /// <summary>
  9151. /// 酒店预订
  9152. /// 生成 预定成本 Excel
  9153. /// </summary>
  9154. /// <param name="_dto"></param>
  9155. /// <returns></returns>
  9156. [HttpPost]
  9157. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9158. public async Task<IActionResult> PostHotelReservationsPredictedCostFileDownload(HotelReservations_PCFD_DTO _dto)
  9159. {
  9160. #region 参数验证
  9161. var vadalitor = new HotelReservations_PCFD_DTOFoalidator();
  9162. var vadalitorRes = await vadalitor.ValidateAsync(_dto);
  9163. if (!vadalitorRes.IsValid)
  9164. {
  9165. var errors = new StringBuilder();
  9166. foreach (var valid in vadalitorRes.Errors) errors.AppendLine(valid.ErrorMessage);
  9167. return Ok(JsonView(false, errors.ToString()));
  9168. }
  9169. #region 团组操作权限验证 76 酒店预定模块
  9170. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9171. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  9172. #endregion
  9173. //PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9174. //#region 页面操作权限验证
  9175. //pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9176. //if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9177. //#endregion
  9178. #endregion
  9179. decimal _rate = 1.00M;
  9180. string _currency = "";
  9181. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.STid == 66).ToList();
  9182. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  9183. if (hrDtas.Count < 1) return Ok(JsonView(false, "酒店预订费用未录入,不支持预定成本Excel导出"));
  9184. Grp_GroupCostParameter _GroupCostParameter = await _sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).FirstAsync();
  9185. if (_GroupCostParameter == null) return Ok(JsonView(false, "团组成本费用未录入,不支持预定成本Excel导出"));
  9186. if (string.IsNullOrEmpty(_GroupCostParameter.Currency))
  9187. {
  9188. return Ok(JsonView(false, "团组成本费用“币种为录入”未录入,不支持预定成本Excel导出"));
  9189. }
  9190. _currency = _GroupCostParameter.Currency;
  9191. bool isIntType = int.TryParse(_currency, out int currId);
  9192. if (isIntType)
  9193. {
  9194. _currency = currDatas.Find(it => it.Id == currId)?.Name ?? "";
  9195. }
  9196. var teamRate = await _teamRateRep.PostGroupTeamRateItemByDiIdAndCTableId(1, _dto.DiId, 76);
  9197. var currInfo = teamRate.Find(it => it.CurrencyCode.Equals(_currency));
  9198. if (currInfo == null)
  9199. {
  9200. return Ok(JsonView(false, $"团组汇率-->酒店模块 {_currency} 币种未设置汇率,不支持预定成本Excel导出"));
  9201. }
  9202. if (!_currency.ToUpper().Equals("CNY"))
  9203. {
  9204. _rate = _GroupCostParameter.Rate;
  9205. }
  9206. _rate = currInfo.Rate;
  9207. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  9208. string strFileName = "HotelStatement/";
  9209. string guestNames = ""; //格式Mr.xxx Ms.xxx
  9210. List<HotelReservations_PCFD_View> pcfds = new List<HotelReservations_PCFD_View>();
  9211. #region 数据处理
  9212. foreach (var item in hrDtas)
  9213. {
  9214. var ccpInfo = _sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.DIId == _dto.DiId && it.CId == item.Id).First();
  9215. string roomCurr = currDatas.Find(it => it.Id == ccpInfo.PaymentCurrency)?.Name ?? "";
  9216. string singleRoomFeeStr = string.Empty,
  9217. doubleRoomFeeStr = string.Empty,
  9218. suiteRoomFeeStr = string.Empty,
  9219. otherRoomFeeStr = string.Empty,
  9220. payMoneyStr = string.Empty,
  9221. cardPriceStr = string.Empty;
  9222. if (roomCurr.Equals(_currency))
  9223. {
  9224. singleRoomFeeStr = $"{item.SingleRoomPrice.ToString("#0.00")} {_currency}";
  9225. doubleRoomFeeStr = $"{item.DoubleRoomPrice.ToString("#0.00")} {_currency}";
  9226. suiteRoomFeeStr = $"{item.SuiteRoomPrice.ToString("#0.00")} {_currency}";
  9227. otherRoomFeeStr = $"{item.OtherRoomPrice.ToString("#0.00")} {_currency}";
  9228. payMoneyStr = $"{ccpInfo.PayMoney.ToString("#0.00")} {_currency}";
  9229. cardPriceStr = $"{item.CardPrice.ToString("#0.00")} {_currency}";
  9230. }
  9231. else
  9232. {
  9233. singleRoomFeeStr = $"{(item.SingleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SingleRoomPrice.ToString("#0.00")} {roomCurr}";
  9234. doubleRoomFeeStr = $"{(item.DoubleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.DoubleRoomPrice.ToString("#0.00")} {roomCurr}";
  9235. suiteRoomFeeStr = $"{(item.SuiteRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SuiteRoomPrice.ToString("#0.00")} {roomCurr}";
  9236. otherRoomFeeStr = $"{(item.OtherRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.OtherRoomPrice.ToString("#0.00")} {roomCurr}";
  9237. payMoneyStr = $"{(ccpInfo.PayMoney / _rate).ToString("#0.00")} {_currency}\r\n{ccpInfo.PayMoney.ToString("#0.00")} {roomCurr}";
  9238. cardPriceStr = $"{(item.CardPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.CardPrice.ToString("#0.00")} {roomCurr}";
  9239. }
  9240. string breakfastPriceStr = string.Empty,
  9241. breakfastCurrency = currDatas.Find(it => it.Id == item.BreakfastCurrency)?.Name ?? "",
  9242. governmentRentStr = string.Empty,
  9243. governmentRentCurrency = currDatas.Find(it => it.Id == item.GovernmentRentCurrency)?.Name ?? "",
  9244. cityTaxStrStr = string.Empty,
  9245. cityTaxStrCurrency = currDatas.Find(it => it.Id == item.CityTaxCurrency)?.Name ?? "";
  9246. //if (breakfastCurrency.Equals(_currency))
  9247. //{
  9248. // breakfastPriceStr = $"{item.BreakfastPrice.ToString("#0.00")} ({_currency})";
  9249. //}
  9250. //if (governmentRentCurrency.Equals(_currency))
  9251. //{
  9252. // governmentRentStr = $"{item.GovernmentRent.ToString("#0.00")} ({_currency})";
  9253. //}
  9254. //if (cityTaxStrCurrency.Equals(_currency))
  9255. //{
  9256. // cityTaxStrStr = $"{item.CityTax.ToString("#0.00")} ({_currency})";
  9257. //}
  9258. breakfastPriceStr = $"{item.BreakfastPrice.ToString("#0.00")} {_currency}";
  9259. governmentRentStr = $"{item.GovernmentRent.ToString("#0.00")} {_currency}";
  9260. cityTaxStrStr = $"{item.CityTax.ToString("#0.00")} {_currency}";
  9261. pcfds.Add(new HotelReservations_PCFD_View()
  9262. {
  9263. City = item.City,
  9264. HotelName = item.HotelName,
  9265. Date = $"{item.CheckInDate} - {item.CheckOutDate}",
  9266. // SingleRoomCount = item.SingleRoomCount,
  9267. SingleRoomPrice = singleRoomFeeStr,
  9268. // DoubleRoomCount = item.DoubleRoomCount,
  9269. DoubleRoomPrice = doubleRoomFeeStr,
  9270. //SuiteRoomCount = item.SuiteRoomCount,
  9271. SuiteRoomPrice = suiteRoomFeeStr,
  9272. OtherRoomPrice = otherRoomFeeStr,
  9273. //OtherRoomCount = item.OtherRoomCount,
  9274. BreakfastPrice = breakfastPriceStr,
  9275. GovernmentRent = governmentRentStr,
  9276. CityTax = cityTaxStrStr,
  9277. RoomExplanation = item.RoomExplanation,
  9278. PayTypeName = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.Id == ccpInfo.PayDId).First()?.Name ?? "",
  9279. PayTime = ccpInfo.ConsumptionDate,
  9280. BankNo = ccpInfo.BankNo,
  9281. PayMoney = payMoneyStr,
  9282. //PayMoneys = ccpInfo.PayMoney.ToString("#0.00"),
  9283. ConsumptionPatterns = ccpInfo.ConsumptionPatterns,
  9284. CardPrice = cardPriceStr,
  9285. Remark = ccpInfo.Remark
  9286. });
  9287. }
  9288. #endregion
  9289. //载入模板
  9290. WorkbookDesigner designer = new WorkbookDesigner();
  9291. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/酒店预订成本.xls");
  9292. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == _dto.DiId).First();
  9293. var userInfo = _sqlSugar.Queryable<Sys_Users>().Where(it => it.Id == hrDtas[0].CreateUserId).First();
  9294. designer.SetDataSource("TourNo", groupInfo.TourCode);
  9295. designer.SetDataSource("TeamName", $"{groupInfo.TeamName} 团组成本币种:{_currency} 团组汇率-->酒店模块汇率:{_rate.ToString("#0.0000")}");
  9296. designer.SetDataSource("Opertor", userInfo.CnName);
  9297. DataTable dt = CommonFun.GetDataTableFromIList<HotelReservations_PCFD_View>(pcfds);
  9298. dt.TableName = "ViewMyHotelReservations";
  9299. designer.SetDataSource(dt);
  9300. designer.Process();
  9301. string fileName = ($"HotelReservation/{groupInfo.TeamName}_酒店预订成本_" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xls").Replace(":", "");
  9302. string serverPath = AppSettingsHelper.Get("ExcelBasePath") + fileName;
  9303. designer.Workbook.Save(serverPath);
  9304. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  9305. #region 删除指定行
  9306. bool singleDel = true, doubleDel = true, suiteDel = true, otherDel = true, zcDel = true, dsDel = true, cssDel = true,cpDel=true, remarkDel = true;
  9307. int singleIndex = dt.Columns["SingleRoomPrice"].Ordinal,
  9308. doubleIndex = dt.Columns["DoubleRoomPrice"].Ordinal,
  9309. suiteIndex = dt.Columns["SuiteRoomPrice"].Ordinal,
  9310. otherIndex = dt.Columns["OtherRoomPrice"].Ordinal,
  9311. zcIndex = dt.Columns["BreakfastPrice"].Ordinal,
  9312. dsIndex = dt.Columns["GovernmentRent"].Ordinal,
  9313. cssIndex = dt.Columns["CityTax"].Ordinal,
  9314. cpIndex = dt.Columns["ConsumptionPatterns"].Ordinal,
  9315. remarkIndex = dt.Columns["Remark"].Ordinal;
  9316. //删除指定列
  9317. foreach (DataRow item in dt.Rows)
  9318. {
  9319. string singleStr = item["SingleRoomPrice"].ToString();
  9320. bool containsDigitButNotZero1 = !singleStr.StartsWith("0") && Regex.IsMatch(singleStr, @"[1-9]");
  9321. if (containsDigitButNotZero1) singleDel = false;
  9322. singleIndex = dt.Columns["SingleRoomPrice"].Ordinal;
  9323. string doubleStr = item["DoubleRoomPrice"].ToString();
  9324. bool containsDigitButNotZero2 = !doubleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  9325. if (containsDigitButNotZero2) doubleDel = false;
  9326. string suiteStr = item["SuiteRoomPrice"].ToString();
  9327. bool containsDigitButNotZero3 = !singleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  9328. if (containsDigitButNotZero3) suiteDel = false;
  9329. string otherStr = item["OtherRoomPrice"].ToString();
  9330. bool containsDigitButNotZero4 = !otherStr.StartsWith("0") && Regex.IsMatch(otherStr, @"[1-9]");
  9331. if (containsDigitButNotZero4) otherDel = false;
  9332. string zcStr = item["BreakfastPrice"].ToString();
  9333. bool containsDigitButNotZero5 = !zcStr.StartsWith("0") && Regex.IsMatch(zcStr, @"[1-9]");
  9334. if (containsDigitButNotZero5) zcDel = false;
  9335. string dsStr = item["GovernmentRent"].ToString();
  9336. bool containsDigitButNotZero6 = !dsStr.StartsWith("0") && Regex.IsMatch(dsStr, @"[1-9]");
  9337. if (containsDigitButNotZero6) dsDel = false;
  9338. string cssStr = item["CityTax"].ToString();
  9339. bool containsDigitButNotZero7 = !cssStr.StartsWith("0") && Regex.IsMatch(cssStr, @"[1-9]");
  9340. if (containsDigitButNotZero7) cssDel = false;
  9341. string cpStr = item["ConsumptionPatterns"].ToString();
  9342. if (!string.IsNullOrEmpty(cpStr)) cpDel = false;
  9343. string remarkStr = item["Remark"].ToString();
  9344. if (!string.IsNullOrEmpty(remarkStr)) remarkDel = false;
  9345. }
  9346. DeleteColumn(serverPath, remarkIndex, remarkDel);
  9347. DeleteColumn(serverPath, cpIndex, cpDel);
  9348. DeleteColumn(serverPath, dsIndex, dsDel);
  9349. DeleteColumn(serverPath, cssIndex, cssDel);
  9350. DeleteColumn(serverPath, zcIndex, zcDel);
  9351. DeleteColumn(serverPath, otherIndex, otherDel);
  9352. DeleteColumn(serverPath, suiteIndex, suiteDel);
  9353. DeleteColumn(serverPath, doubleIndex, doubleDel);
  9354. DeleteColumn(serverPath, singleIndex, singleDel);
  9355. #endregion
  9356. //只保留第一个表格
  9357. DeleteSheet(serverPath);
  9358. return Ok(JsonView(true, "操作成功", url = rst));
  9359. }
  9360. /// <summary>
  9361. /// 删除指定列
  9362. /// </summary>
  9363. /// <param name="file"></param>
  9364. /// <param name="columnIndex"></param>
  9365. /// <param name="isDel"></param>
  9366. private void DeleteColumn(string file, int columnIndex,bool isDel)
  9367. {
  9368. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  9369. //wb.Save(file);
  9370. Aspose.Cells.Worksheet sheet1 = wb.Worksheets[0];
  9371. if (sheet1 != null)
  9372. {
  9373. if (isDel)
  9374. {
  9375. Cells cells = sheet1.Cells;
  9376. cells.DeleteColumn(columnIndex);
  9377. }
  9378. }
  9379. wb.Save(file);
  9380. }
  9381. /// <summary>
  9382. /// 删除sheet
  9383. /// </summary>
  9384. /// <param name="file"></param>
  9385. /// <param name="sheetName"></param>
  9386. private void DeleteSheet(string file, string sheetName="")
  9387. {
  9388. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  9389. //wb.Save(file);
  9390. List<string> sheets = new List<string>();
  9391. foreach (var item in wb.Worksheets)
  9392. {
  9393. sheets.Add(item.Name);
  9394. }
  9395. if (sheets.Count > 0)
  9396. {
  9397. sheets.RemoveAt(0);//不删除第一个sheet
  9398. foreach (var item in sheets)
  9399. {
  9400. wb.Worksheets.RemoveAt(item);
  9401. }
  9402. }
  9403. wb.Save(file);
  9404. }
  9405. /// <summary>
  9406. /// 酒店预订
  9407. /// 确认单
  9408. /// </summary>
  9409. /// <param name="_dto"></param>
  9410. /// <returns></returns>
  9411. [HttpPost]
  9412. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9413. public async Task<IActionResult> PostHotelReservationsConfirmationSlip(HotelReservationsConfirmationSlipDto _dto)
  9414. {
  9415. try
  9416. {
  9417. #region 参数验证
  9418. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  9419. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  9420. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  9421. #region 团组操作权限验证 76 酒店预定模块
  9422. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9423. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  9424. #endregion
  9425. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9426. #region 页面操作权限验证
  9427. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9428. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9429. #endregion
  9430. #endregion
  9431. //团组信息
  9432. Grp_DelegationInfo di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(a => a.Id == _dto.DiId);
  9433. //酒店数据
  9434. List<Grp_HotelReservations> listhoteldata = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(a => a.DiId == _dto.DiId && a.IsDel == 0).ToListAsync();
  9435. if (listhoteldata.Count < 0)
  9436. {
  9437. return Ok(JsonView(false, "当前团组暂无酒店预订信息!"));
  9438. }
  9439. //利datatable存储
  9440. DataTable dt = new DataTable();
  9441. dt.Columns.Add("CheckInDate", typeof(string));
  9442. dt.Columns.Add("City", typeof(string));
  9443. dt.Columns.Add("Hotel", typeof(string));
  9444. dt.Columns.Add("Room", typeof(string));
  9445. for (int i = 0; i < listhoteldata.Count; i++)
  9446. {
  9447. DateTime dayStart = Convert.ToDateTime(listhoteldata[i].CheckInDate);
  9448. DateTime dayEnd = Convert.ToDateTime(listhoteldata[i].CheckOutDate);
  9449. while (dayStart < dayEnd)
  9450. {
  9451. string temp = "";
  9452. DataRow row = dt.NewRow();
  9453. row["CheckInDate"] = dayStart.ToString("yyyy-MM-dd");
  9454. row["City"] = listhoteldata[i].City;
  9455. row["Hotel"] = listhoteldata[i].HotelName;
  9456. if (listhoteldata[i].SingleRoomCount > 0)
  9457. {
  9458. temp = listhoteldata[i].SingleRoomCount + "个单间" + "\r\n";
  9459. }
  9460. if (listhoteldata[i].DoubleRoomCount > 0)
  9461. {
  9462. temp = temp + listhoteldata[i].DoubleRoomCount + "个标间" + "\r\n";
  9463. }
  9464. if (listhoteldata[i].SuiteRoomCount > 0)
  9465. {
  9466. temp = temp + listhoteldata[i].SuiteRoomCount + "个套房" + "\r\n";
  9467. }
  9468. if (listhoteldata[i].OtherRoomCount > 0)
  9469. {
  9470. temp = temp + listhoteldata[i].OtherRoomCount + "个其他房型" + "\r\n";
  9471. }
  9472. row["Room"] = temp;
  9473. dt.Rows.Add(row);
  9474. dayStart = dayStart.AddDays(1);
  9475. }
  9476. }
  9477. Dictionary<string, string> dic = new Dictionary<string, string>();
  9478. dic.Add("Dele", di.TeamName);
  9479. dic.Add("City", di.VisitCountry);
  9480. //模板路径
  9481. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/酒店用房确认单-模板.doc";
  9482. //载入模板
  9483. Aspose.Words.Document doc = new Aspose.Words.Document(tempPath);
  9484. DocumentBuilder builder = new DocumentBuilder(doc);
  9485. foreach (var key in dic.Keys)
  9486. {
  9487. builder.MoveToBookmark(key);
  9488. builder.Write(dic[key]);
  9489. }
  9490. //获取word里所有表格
  9491. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  9492. //获取所填表格的序数
  9493. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  9494. var rowStart = tableOne.Rows[0]; //获取第1行
  9495. //循环赋值
  9496. for (int i = 0; i < dt.Rows.Count; i++)
  9497. {
  9498. builder.MoveToCell(0, i + 1, 0, 0);
  9499. builder.Write(dt.Rows[i]["CheckInDate"].ToString());
  9500. builder.MoveToCell(0, i + 1, 1, 0);
  9501. builder.Write(dt.Rows[i]["City"].ToString());
  9502. builder.MoveToCell(0, i + 1, 2, 0);
  9503. builder.Write(dt.Rows[i]["Hotel"].ToString());
  9504. builder.MoveToCell(0, i + 1, 3, 0);
  9505. builder.Write(dt.Rows[i]["Room"].ToString());
  9506. }
  9507. //删除多余行
  9508. while (tableOne.Rows.Count > dt.Rows.Count + 1)
  9509. {
  9510. tableOne.Rows.RemoveAt(dt.Rows.Count + 1);
  9511. }
  9512. string strFileName = di.TeamName + "酒店确认单.doc";
  9513. doc.Save(AppSettingsHelper.Get("WordBasePath") + "HotelStatement/" + strFileName);
  9514. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/HotelStatement/" + strFileName;
  9515. return Ok(JsonView(true, "成功", url));
  9516. }
  9517. catch (Exception ex)
  9518. {
  9519. return Ok(JsonView(false, ex.Message));
  9520. }
  9521. }
  9522. #endregion
  9523. #region 团组状态
  9524. /// <summary>
  9525. /// 团组状态列表 Page
  9526. /// </summary>
  9527. /// <param name="dto">团组列表请求dto</param>
  9528. /// <returns></returns>
  9529. [HttpPost]
  9530. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9531. public async Task<IActionResult> PostGroupStatusPageList(GroupStatusListDto dto)
  9532. {
  9533. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  9534. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  9535. {
  9536. string sqlWhere = string.Empty;
  9537. if (dto.IsSure == 0) //未完成
  9538. {
  9539. sqlWhere += string.Format(@" And IsSure = 0");
  9540. }
  9541. else if (dto.IsSure == 1) //已完成
  9542. {
  9543. sqlWhere += string.Format(@" And IsSure = 1");
  9544. }
  9545. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  9546. {
  9547. string tj = dto.SearchCriteria;
  9548. 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}%')",
  9549. tj, tj, tj, tj, tj);
  9550. }
  9551. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  9552. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  9553. VisitDate,VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  9554. From (
  9555. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  9556. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  9557. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  9558. VisitDate,VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  9559. From Grp_DelegationInfo gdi
  9560. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  9561. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  9562. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  9563. Where gdi.IsDel = 0 {0}
  9564. ) temp ", sqlWhere);
  9565. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  9566. var _DelegationList = await _sqlSugar.SqlQueryable<GroupStatusView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  9567. return Ok(JsonView(true, "查询成功!", _DelegationList, total));
  9568. }
  9569. else
  9570. {
  9571. return Ok(JsonView(false, "查询失败"));
  9572. }
  9573. }
  9574. /// <summary>
  9575. /// 团组状态
  9576. /// 设置操作完成
  9577. /// </summary>
  9578. /// <param name="dto">团组列表请求dto</param>
  9579. /// <returns></returns>
  9580. [HttpPost]
  9581. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9582. public async Task<IActionResult> PostGroupStatusSetOperationComplete(GroupStatusSetOperationCompleteDto dto)
  9583. {
  9584. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  9585. Grp_DelegationInfo _DelegationInfo = new Grp_DelegationInfo()
  9586. {
  9587. Id = dto.Id,
  9588. IsSure = 1
  9589. };
  9590. var result = await _sqlSugar.Updateable(_DelegationInfo)
  9591. .UpdateColumns(it => new { it.IsSure })
  9592. .WhereColumns(it => new { it.Id })
  9593. .ExecuteCommandAsync();
  9594. if (result > 0)
  9595. {
  9596. return Ok(JsonView(true, "操作完成!"));
  9597. }
  9598. return Ok(JsonView(false, "操作失败!"));
  9599. }
  9600. #endregion
  9601. #region 保险费用录入
  9602. /// <summary>
  9603. /// 根据团组Id查询保险费用列表
  9604. /// </summary>
  9605. /// <param name="dto"></param>
  9606. /// <returns></returns>
  9607. [HttpPost]
  9608. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9609. public async Task<IActionResult> CustomersByDiId(CustomersByDiIdDto dto)
  9610. {
  9611. try
  9612. {
  9613. Result groupData = await _customersRep.CustomersByDiId(dto);
  9614. if (groupData.Code != 0)
  9615. {
  9616. return Ok(JsonView(false, groupData.Msg));
  9617. }
  9618. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9619. }
  9620. catch (Exception ex)
  9621. {
  9622. return Ok(JsonView(false, ex.Message));
  9623. }
  9624. }
  9625. /// <summary>
  9626. /// 根据保险费用Id查询保险费用详细
  9627. /// </summary>
  9628. /// <param name="dto"></param>
  9629. /// <returns></returns>
  9630. [HttpPost]
  9631. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9632. public async Task<IActionResult> CustomersById(CustomersByIdDto dto)
  9633. {
  9634. try
  9635. {
  9636. Result groupData = await _customersRep.CustomersById(dto);
  9637. if (groupData.Code != 0)
  9638. {
  9639. return Ok(JsonView(false, groupData.Msg));
  9640. }
  9641. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9642. }
  9643. catch (Exception ex)
  9644. {
  9645. return Ok(JsonView(false, ex.Message));
  9646. }
  9647. }
  9648. /// <summary>
  9649. /// 保险费用录入页面初始化绑定
  9650. /// </summary>
  9651. /// <param name="dto"></param>
  9652. /// <returns></returns>
  9653. [HttpPost]
  9654. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9655. public async Task<IActionResult> CustomersInitialize(CustomersInitializeDto dto)
  9656. {
  9657. try
  9658. {
  9659. Result groupData = await _customersRep.CustomersInitialize(dto);
  9660. if (groupData.Code != 0)
  9661. {
  9662. return Ok(JsonView(false, groupData.Msg));
  9663. }
  9664. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9665. }
  9666. catch (Exception ex)
  9667. {
  9668. return Ok(JsonView(false, ex.Message));
  9669. }
  9670. }
  9671. /// <summary>
  9672. /// 保险费用操作(Status:1.新增,2.修改)
  9673. /// </summary>
  9674. /// <param name="dto"></param>
  9675. /// <returns></returns>
  9676. [HttpPost]
  9677. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9678. public async Task<IActionResult> OpCustomers(OpCustomersDto dto)
  9679. {
  9680. try
  9681. {
  9682. Result groupData = await _customersRep.OpCustomers(dto);
  9683. if (groupData.Code != 0)
  9684. {
  9685. return Ok(JsonView(false, groupData.Msg));
  9686. }
  9687. #region 应用推送
  9688. try
  9689. {
  9690. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  9691. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  9692. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  9693. }
  9694. catch (Exception ex)
  9695. {
  9696. }
  9697. #endregion
  9698. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9699. }
  9700. catch (Exception ex)
  9701. {
  9702. return Ok(JsonView(false, ex.Message));
  9703. }
  9704. }
  9705. /// <summary>
  9706. /// 保险文件上传
  9707. /// </summary>
  9708. /// <param name="file"></param>
  9709. /// <returns></returns>
  9710. [HttpPost]
  9711. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9712. public async Task<IActionResult> UploadCus(IFormFile file)
  9713. {
  9714. try
  9715. {
  9716. if (file != null)
  9717. {
  9718. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  9719. //文件名称
  9720. string projectFileName = file.FileName;
  9721. //上传的文件的路径
  9722. string filePath = "";
  9723. if (!Directory.Exists(fileDir))
  9724. {
  9725. Directory.CreateDirectory(fileDir);
  9726. }
  9727. //上传的文件的路径
  9728. filePath = fileDir + $@"\保险费用文件上传\{projectFileName}";
  9729. using (FileStream fs = System.IO.File.Create(filePath))
  9730. {
  9731. file.CopyTo(fs);
  9732. fs.Flush();
  9733. }
  9734. return Ok(JsonView(true, "上传成功!", projectFileName));
  9735. }
  9736. else
  9737. {
  9738. return Ok(JsonView(false, "上传失败!"));
  9739. }
  9740. }
  9741. catch (Exception ex)
  9742. {
  9743. return Ok(JsonView(false, "程序错误!"));
  9744. throw;
  9745. }
  9746. }
  9747. /// <summary>
  9748. /// 保险删除指定文件
  9749. /// </summary>
  9750. /// <param name="dto"></param>
  9751. /// <returns></returns>
  9752. [HttpPost]
  9753. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9754. public async Task<IActionResult> DelFileCus(DelFileDto dto)
  9755. {
  9756. try
  9757. {
  9758. string filePath = "";
  9759. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  9760. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  9761. //int id = 0;
  9762. filePath = fileDir + "/保险费用文件上传/" + dto.fileName;
  9763. // 删除该文件
  9764. try
  9765. {
  9766. System.IO.File.Delete(filePath);
  9767. 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()
  9768. {
  9769. Attachment = "",
  9770. }).ExecuteCommandAsync();
  9771. if (result != 0)
  9772. {
  9773. return Ok(JsonView(true, "成功!"));
  9774. }
  9775. else
  9776. {
  9777. return Ok(JsonView(false, "失败!"));
  9778. }
  9779. }
  9780. catch (Exception)
  9781. {
  9782. 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()
  9783. {
  9784. Attachment = "",
  9785. }).ExecuteCommandAsync();
  9786. if (result != 0)
  9787. {
  9788. return Ok(JsonView(true, "成功!"));
  9789. }
  9790. else
  9791. {
  9792. return Ok(JsonView(false, "失败!"));
  9793. }
  9794. }
  9795. }
  9796. catch (Exception ex)
  9797. {
  9798. return Ok(JsonView(false, "程序错误!"));
  9799. throw;
  9800. }
  9801. }
  9802. /// <summary>
  9803. /// 保险费用操作(删除)
  9804. /// </summary>
  9805. /// <param name="dto"></param>
  9806. /// <returns></returns>
  9807. [HttpPost]
  9808. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9809. public async Task<IActionResult> DelCustomers(DelBaseDto dto)
  9810. {
  9811. try
  9812. {
  9813. var res = await _customersRep.SoftDeleteByIdAsync<Grp_Customers>(dto.Id.ToString(), dto.DeleteUserId);
  9814. if (!res)
  9815. {
  9816. return Ok(JsonView(false, "删除失败"));
  9817. }
  9818. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 82).SetColumns(a => new Grp_CreditCardPayment()
  9819. {
  9820. IsDel = 1,
  9821. DeleteUserId = dto.DeleteUserId,
  9822. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  9823. }).ExecuteCommandAsync();
  9824. return Ok(JsonView(true, "删除成功!"));
  9825. }
  9826. catch (Exception ex)
  9827. {
  9828. return Ok(JsonView(false, "程序错误!"));
  9829. throw;
  9830. }
  9831. }
  9832. #endregion
  9833. #region 接团客户名单 PageId 104
  9834. /// <summary>
  9835. /// 接团客户名单
  9836. /// 迁移数据(慎用!)
  9837. /// </summary>
  9838. /// <param name="dto"></param>
  9839. /// <returns></returns>
  9840. [HttpPost]
  9841. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9842. public async Task<IActionResult> PostTourClientListChange()
  9843. {
  9844. try
  9845. {
  9846. _sqlSugar.ChangeDatabase(DBEnum.OA2014DB);
  9847. //var groupClinetData1
  9848. string sql = string.Format($"Select * From DeleClient Where Isdel = 0");
  9849. var oldOAClientList = await _sqlSugar.SqlQueryable<OA2021_DeleClient>(sql).Where(it => it.Isdel == 0).ToListAsync();
  9850. int updateCount = 0;
  9851. if (oldOAClientList.Count > 0)
  9852. {
  9853. _sqlSugar.ChangeDatabase(DBEnum.OA2023DB);
  9854. _sqlSugar.BeginTran();
  9855. var clientComInfos = _sqlSugar.Queryable<Crm_CustomerCompany>().Where(it => it.IsDel == 0).ToList();
  9856. var clientInfos = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0).ToList();
  9857. foreach (var item in oldOAClientList)
  9858. {
  9859. int comId = 0;
  9860. string format = "yyyy-MM-dd HH:mm:ss";
  9861. string data11 = "1990-01-01 00:00";
  9862. var data1 = IsValidDate(item.OPdate, format);
  9863. if (data1) data11 = item.OPdate;
  9864. //客户公司验证
  9865. if (!string.IsNullOrEmpty(item.Company))
  9866. {
  9867. var clientComInfo = clientComInfos.Where(it => it.CompanyFullName.Equals(item.Company)).FirstOrDefault();
  9868. if (clientComInfo == null) // add
  9869. {
  9870. var addInfo = new Crm_CustomerCompany()
  9871. {
  9872. CompanyAbbreviation = "",
  9873. CompanyFullName = item.Company,
  9874. Address = "",
  9875. PostCodes = "",
  9876. LastedOpUserId = item.OPer,
  9877. LastedOpDt = Convert.ToDateTime(data11),
  9878. CreateUserId = item.OPer,
  9879. CreateTime = Convert.ToDateTime(data11),
  9880. IsDel = 0
  9881. };
  9882. var comId1 = _sqlSugar.Insertable<Crm_CustomerCompany>(addInfo).ExecuteReturnIdentity();
  9883. if (comId1 > 0) comId = comId1;
  9884. }
  9885. else comId = clientComInfo.Id;
  9886. }
  9887. //客户人员验证
  9888. int clientId = 0;
  9889. string name = item.LastName + item.Name;
  9890. if (!string.IsNullOrEmpty(name))
  9891. {
  9892. var clientInfo = clientInfos.Where(it => (it.LastName + it.FirstName).Equals(name)).FirstOrDefault();
  9893. if (clientInfo == null)
  9894. {
  9895. DateTime? dateTime = null;
  9896. var isDt = DateTime.TryParse(item.Birthday, out DateTime birthDayDt);
  9897. if (isDt) dateTime = birthDayDt;
  9898. var addInfo1 = new Crm_DeleClient()
  9899. {
  9900. CrmCompanyId = comId,
  9901. DiId = -1,
  9902. LastName = item.LastName,
  9903. FirstName = item.Name,
  9904. OldName = "",
  9905. Pinyin = item.Pinyin,
  9906. Sex = item.Sex == "男" ? 0 : item.Sex == "女" ? 1 : -1,
  9907. Marriage = 0,
  9908. Phone = item.Phone,
  9909. Job = item.Job,
  9910. BirthDay = dateTime
  9911. };
  9912. var clientId1 = _sqlSugar.Insertable<Crm_DeleClient>(addInfo1).ExecuteReturnIdentity();
  9913. if (clientId1 > 0) clientId = clientId1;
  9914. }
  9915. else clientId = clientInfo.Id;
  9916. }
  9917. if (clientId < 1)
  9918. {
  9919. continue;
  9920. }
  9921. int airType = 0;
  9922. if (item.AirType == "超经舱") airType = 459;
  9923. else if (item.AirType == "公务舱") airType = 458;
  9924. else if (item.AirType == "经济舱") airType = 460;
  9925. else if (item.AirType == "其他") airType = 565;
  9926. else if (item.AirType == "头等舱") airType = 457;
  9927. var _TourClientListEntity = new Grp_TourClientList()
  9928. {
  9929. DiId = item.Diid,
  9930. ClientId = clientId,
  9931. CreateUserId = item.OPer,
  9932. CreateTime = Convert.ToDateTime(data11),
  9933. Remark = item.Remark,
  9934. IsDel = item.Isdel,
  9935. ShippingSpaceTypeId = airType,
  9936. ShippingSpaceSpecialNeeds = item.AirRemark,
  9937. HotelSpecialNeeds = item.RoomType
  9938. };
  9939. var _TourClientList = _sqlSugar.Insertable<Grp_TourClientList>(_TourClientListEntity).ExecuteCommand();
  9940. if (_TourClientList > 0)
  9941. {
  9942. updateCount++;
  9943. }
  9944. }
  9945. _sqlSugar.CommitTran();
  9946. }
  9947. return Ok(JsonView(true, $"更新条数:{updateCount}条"));
  9948. }
  9949. catch (Exception ex)
  9950. {
  9951. _sqlSugar.RollbackTran();
  9952. return Ok(JsonView(false, ex.Message));
  9953. }
  9954. return Ok(JsonView(true));
  9955. }
  9956. private bool IsValidDate(string dateString, string format)
  9957. {
  9958. DateTime dateValue;
  9959. bool valid = DateTime.TryParseExact(dateString, format, CultureInfo.InvariantCulture, DateTimeStyles.None, out dateValue);
  9960. return valid;
  9961. }
  9962. /// <summary>
  9963. /// 接团客户名单
  9964. /// 根据团组Id查询List
  9965. /// </summary>
  9966. /// <param name="dto"></param>
  9967. /// <returns></returns>
  9968. [HttpPost]
  9969. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9970. public async Task<IActionResult> PostTourClientListByDiId(TourClientListByDiIdDto _dto)
  9971. {
  9972. #region 参数验证
  9973. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId"));
  9974. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9975. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId!"));
  9976. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9977. #region 页面操作权限验证
  9978. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9979. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9980. #endregion
  9981. #endregion
  9982. var viewData = await _tourClientListRep._ItemByDiId(_dto.PortType, _dto.DiId);
  9983. if (viewData.Code != 0)
  9984. {
  9985. return Ok(JsonView(false, viewData.Msg));
  9986. }
  9987. return Ok(JsonView(viewData.Data));
  9988. }
  9989. /// <summary>
  9990. /// 接团客户名单
  9991. /// 基础数据 Init
  9992. /// </summary>
  9993. /// <param name="_dto"></param>
  9994. /// <returns></returns>
  9995. [HttpPost]
  9996. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9997. public async Task<IActionResult> PostTourClientListBasicDataInit(TourClientListBasicDataInitDto _dto)
  9998. {
  9999. #region 参数验证
  10000. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10001. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10002. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10003. #region 页面操作权限验证
  10004. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10005. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  10006. #endregion
  10007. #endregion
  10008. var viewData = await _tourClientListRep._BasicDataInit(_dto.PortType);
  10009. if (viewData.Code != 0)
  10010. {
  10011. return Ok(JsonView(false, viewData.Msg));
  10012. }
  10013. return Ok(JsonView(viewData.Data));
  10014. }
  10015. /// <summary>
  10016. /// 接团客户名单
  10017. /// 根据 Id查询 Details
  10018. /// </summary>
  10019. /// <param name="_dto"></param>
  10020. /// <returns></returns>
  10021. [HttpPost]
  10022. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10023. public async Task<IActionResult> PostTourClientListDetails(TourClientListDetailsDto _dto)
  10024. {
  10025. #region 参数验证
  10026. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10027. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10028. if (_dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  10029. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10030. #region 页面操作权限验证
  10031. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10032. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  10033. #endregion
  10034. #endregion
  10035. var viewData = await _tourClientListRep._Details(_dto.PortType, _dto.Id);
  10036. if (viewData.Code != 0)
  10037. {
  10038. return Ok(JsonView(false, viewData.Msg));
  10039. }
  10040. return Ok(JsonView(viewData.Data));
  10041. }
  10042. /// <summary>
  10043. /// 接团客户名单
  10044. /// Add Or Edit
  10045. /// </summary>
  10046. /// <param name="_dto"></param>
  10047. /// <returns></returns>
  10048. [HttpPost]
  10049. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10050. public async Task<IActionResult> PostTourClientListAddOrEdit(TourClientListAddOrEditDto _dto)
  10051. {
  10052. #region 参数验证
  10053. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10054. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10055. if (_dto.Id < 0) return Ok(JsonView(false, "请传入有效的Id参数!"));
  10056. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10057. #region 页面操作权限验证
  10058. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10059. if (_dto.Id == 0) //添加
  10060. {
  10061. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  10062. }
  10063. else if (_dto.Id >= 0) //修改
  10064. {
  10065. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  10066. }
  10067. #endregion
  10068. #endregion
  10069. var viewData = await _tourClientListRep._AddOrEdit(_dto);
  10070. if (viewData.Code != 0)
  10071. {
  10072. return Ok(JsonView(false, viewData.Msg));
  10073. }
  10074. return Ok(JsonView(true));
  10075. }
  10076. /// <summary>
  10077. /// 接团客户名单
  10078. /// AddMultiple(添加多个)
  10079. /// </summary>
  10080. /// <param name="_dto"></param>
  10081. /// <returns></returns>
  10082. [HttpPost]
  10083. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10084. public async Task<IActionResult> PostTourClientListAddMultiple(TourClientListAddMultipleDto _dto)
  10085. {
  10086. #region 参数验证
  10087. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10088. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10089. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10090. #region 页面操作权限验证
  10091. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10092. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  10093. #endregion
  10094. #endregion
  10095. var viewData = await _tourClientListRep._AddMultiple(_dto);
  10096. if (viewData.Code != 0)
  10097. {
  10098. return Ok(JsonView(false, viewData.Msg));
  10099. }
  10100. return Ok(JsonView(true));
  10101. }
  10102. /// <summary>
  10103. /// 接团客户名单
  10104. /// Del
  10105. /// </summary>
  10106. /// <param name="_dto"></param>
  10107. /// <returns></returns>
  10108. [HttpPost]
  10109. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10110. public async Task<IActionResult> PostTourClientListDel(TourClientListDelDto _dto)
  10111. {
  10112. #region 参数验证
  10113. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10114. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10115. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10116. #region 页面操作权限验证
  10117. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10118. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  10119. #endregion
  10120. #endregion
  10121. var viewData = await _tourClientListRep._Del(_dto.Id, _dto.UserId);
  10122. if (viewData.Code != 0)
  10123. {
  10124. return Ok(JsonView(false, viewData.Msg));
  10125. }
  10126. return Ok(JsonView(true));
  10127. }
  10128. /// <summary>
  10129. /// 接团客户名单
  10130. /// 文件下载 客户名单
  10131. /// </summary>
  10132. /// <param name="_dto"></param>
  10133. /// <returns></returns>
  10134. [HttpPost]
  10135. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10136. public async Task<IActionResult> PostTourClientListDownloadFile(PostTourClientListDownloadFile _dto)
  10137. {
  10138. #region 参数验证
  10139. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10140. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10141. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数"));
  10142. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10143. #region 页面操作权限验证
  10144. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10145. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  10146. #endregion
  10147. #endregion
  10148. string clientSql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  10149. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  10150. From Grp_TourClientList tcl
  10151. Left Join
  10152. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  10153. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  10154. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  10155. From Crm_DeleClient dc
  10156. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  10157. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  10158. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  10159. Where dc.IsDel = 0) temp
  10160. On temp.DcId =tcl.ClientId
  10161. Where tcl.IsDel = 0 And tcl.DiId = {0}", _dto.DiId);
  10162. List<TourClientListDetailsView> DcList = await _sqlSugar.SqlQueryable<TourClientListDetailsView>(clientSql).ToListAsync();
  10163. if (DcList.Count < 0) return Ok(JsonView(false, "该团未录入客户名单!"));
  10164. //载入模板
  10165. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/dwon_团组人员列表模板.doc";
  10166. if (_dto.Language == 1)
  10167. {
  10168. tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/EN_Down_团组人员列表模板.doc";
  10169. }
  10170. //载入模板
  10171. var doc = new Document(tempPath);
  10172. DocumentBuilder builder = new DocumentBuilder(doc);
  10173. //获取word里所有表格
  10174. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  10175. //获取所填表格的序数
  10176. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  10177. var rowStart = tableOne.Rows[0]; //获取第1行
  10178. if (_dto.Language == 0)
  10179. {
  10180. //循环赋值
  10181. for (int i = 0; i < DcList.Count; i++)
  10182. {
  10183. builder.MoveToCell(0, i + 1, 0, 0);
  10184. builder.Write(DcList[i].LastName + DcList[i].FirstName);
  10185. builder.MoveToCell(0, i + 1, 1, 0);
  10186. int sex = DcList[i].Sex;
  10187. string sexStr = string.Empty;
  10188. if (sex == 0) sexStr = "男";
  10189. else if (sex == 1) sexStr = "女";
  10190. else sexStr = "未设置";
  10191. builder.Write(sexStr);
  10192. builder.MoveToCell(0, i + 1, 2, 0);
  10193. string birthDay = DcList[i].BirthDay;
  10194. string birthDayStr = string.Empty;
  10195. if (!string.IsNullOrEmpty(birthDay))
  10196. {
  10197. birthDayStr = Convert.ToDateTime(birthDay).ToString("yyyy-MM-dd");
  10198. }
  10199. builder.Write(birthDayStr);
  10200. builder.MoveToCell(0, i + 1, 3, 0);
  10201. string company = "";
  10202. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  10203. {
  10204. company = DcList[i].CompanyFullName.ToString();
  10205. }
  10206. builder.Write(company);
  10207. builder.MoveToCell(0, i + 1, 4, 0);
  10208. builder.Write(DcList[i].Job);
  10209. }
  10210. }
  10211. else if (_dto.Language == 1)
  10212. {
  10213. List<Res_PositionEnglishComparison> listPEC = _setDataRep.Query<Res_PositionEnglishComparison>(s => s.IsDel == 0).ToList();
  10214. List<Res_CompanyEnglishComparison> listCEC = _setDataRep.Query<Res_CompanyEnglishComparison>(s => s.IsDel == 0).ToList();
  10215. //循环赋值
  10216. for (int i = 0; i < DcList.Count; i++)
  10217. {
  10218. string PYName = "";
  10219. if (DcList[i].Pinyin.Length > 0 && DcList[i].Pinyin.IndexOf('/') > -1)
  10220. {
  10221. string PY_Last = DcList[i].Pinyin.Split('/')[0];
  10222. string PY_First = DcList[i].Pinyin.Split('/')[1];
  10223. PYName = PY_First + " " + PY_Last;
  10224. }
  10225. else
  10226. {
  10227. string PY_Last = DcList[i].LastName.GetTotalPingYin().Count > 0 ? DcList[i].LastName.GetTotalPingYin()[0].ToUpper() : "";
  10228. string PY_First = DcList[i].FirstName.GetTotalPingYin().Count > 0 ? DcList[i].FirstName.GetTotalPingYin()[0].ToUpper() : "";
  10229. PYName = PY_First + " " + PY_Last;
  10230. }
  10231. builder.MoveToCell(0, i + 1, 0, 0);
  10232. builder.Write(PYName);
  10233. string sex = DcList[i].Sex == 0 ? "Male" : DcList[i].Sex == 1 ? "Female" : "";
  10234. builder.MoveToCell(0, i + 1, 1, 0);
  10235. builder.Write(sex);
  10236. DateTime birthDt;
  10237. bool b_birth = DateTime.TryParse(DcList[i].BirthDay, out birthDt);
  10238. string birthday = b_birth ? birthDt.ToString("yyyy-MM-dd") : "";
  10239. builder.MoveToCell(0, i + 1, 2, 0);
  10240. builder.Write(birthday);
  10241. string company = "";
  10242. try
  10243. {
  10244. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  10245. {
  10246. //查询对照表
  10247. Res_CompanyEnglishComparison tempCec = listCEC.FirstOrDefault(s => s.zhName.Contains(DcList[i].CompanyFullName.ToString().Trim()));
  10248. if (tempCec != null)
  10249. {
  10250. company = tempCec.enName;
  10251. }
  10252. //翻译
  10253. else
  10254. {
  10255. company = await YouDaoApiTools.GetOCR_ReTrans(DcList[i].CompanyFullName.ToString().Trim());
  10256. }
  10257. }
  10258. }
  10259. catch (Exception)
  10260. {
  10261. }
  10262. builder.MoveToCell(0, i + 1, 3, 0);
  10263. builder.Write(company);
  10264. string job = "";
  10265. try
  10266. {
  10267. if (!string.IsNullOrEmpty(DcList[i].Job.ToString()))
  10268. {
  10269. //查询对照表
  10270. Res_PositionEnglishComparison tempPec = listPEC.FirstOrDefault(s => s.zhName == DcList[i].Job.ToString().Trim());
  10271. if (tempPec != null)
  10272. {
  10273. job = tempPec.enName;
  10274. }
  10275. //翻译
  10276. else
  10277. {
  10278. job = await YouDaoApiTools.GetOCR_ReTrans(DcList[i].Job.ToString().Trim());
  10279. }
  10280. }
  10281. }
  10282. catch (Exception ex)
  10283. {
  10284. }
  10285. builder.MoveToCell(0, i + 1, 4, 0);
  10286. builder.Write(job);
  10287. }
  10288. }
  10289. //删除多余行
  10290. while (tableOne.Rows.Count > DcList.Count + 1)
  10291. {
  10292. tableOne.Rows.RemoveAt(DcList.Count + 1);
  10293. }
  10294. string fileName = "组团人员名单(" + DateTime.Now.ToString("yyyyhhddHHmmss") + ").doc";
  10295. var fileDir = AppSettingsHelper.Get("WordBasePath") + "TourClientList/" + fileName;
  10296. doc.Save(fileDir);
  10297. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/TourClientList/" + fileName;
  10298. return Ok(JsonView(true, "操作成功!", Url));
  10299. }
  10300. #endregion
  10301. #region 团组倒推表
  10302. /// <summary>
  10303. /// 倒推表基础数据
  10304. /// Init
  10305. /// </summary>
  10306. /// <param name="dto"></param>
  10307. /// <returns></returns>
  10308. [HttpPost]
  10309. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10310. public async Task<IActionResult> PostInvertedListInit()
  10311. {
  10312. var viewData = await _invertedListRep._Init();
  10313. if (viewData.Code != 0)
  10314. {
  10315. return Ok(JsonView(false, viewData.Msg));
  10316. }
  10317. return Ok(JsonView(viewData.Data));
  10318. }
  10319. /// <summary>
  10320. /// 倒推表
  10321. /// Info
  10322. /// </summary>
  10323. /// <param name="dto"></param>
  10324. /// <returns></returns>
  10325. [HttpPost]
  10326. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10327. public async Task<IActionResult> PostInvertedListInfo(InvertedListCreateDto dto)
  10328. {
  10329. var viewData = await _invertedListRep._Info(dto.PortType, dto.DiId);
  10330. if (viewData.Code != 0)
  10331. {
  10332. return Ok(JsonView(false, viewData.Msg));
  10333. }
  10334. return Ok(JsonView(viewData.Data));
  10335. }
  10336. /// <summary>
  10337. /// 倒推表
  10338. /// Create
  10339. /// </summary>
  10340. /// <param name="dto"></param>
  10341. /// <returns></returns>
  10342. [HttpPost]
  10343. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10344. public async Task<IActionResult> PostInvertedListCreate(InvertedListCreateDto dto)
  10345. {
  10346. var viewData = await _invertedListRep._Create(dto.PortType, dto.DiId);
  10347. if (viewData.Code != 0)
  10348. {
  10349. return Ok(JsonView(false, viewData.Msg));
  10350. }
  10351. return Ok(JsonView(viewData.Data));
  10352. }
  10353. /// <summary>
  10354. /// 倒推表
  10355. /// Update
  10356. /// </summary>
  10357. /// <param name="dto"></param>
  10358. /// <returns></returns>
  10359. [HttpPost]
  10360. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10361. public async Task<IActionResult> PostInvertedListUpdate(InvertedListUpdateDto dto)
  10362. {
  10363. var viewData = await _invertedListRep._Update(dto);
  10364. if (viewData.Code != 0)
  10365. {
  10366. return Ok(JsonView(false, viewData.Msg));
  10367. }
  10368. return Ok(JsonView(viewData.Data));
  10369. }
  10370. /// <summary>
  10371. /// 倒推表
  10372. /// File Download
  10373. /// </summary>
  10374. /// <param name="dto"></param>
  10375. /// <returns></returns>
  10376. [HttpPost]
  10377. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10378. public async Task<IActionResult> PostInvertedListFileDownload(InvertedListFileDownloadDto dto)
  10379. {
  10380. var info2 = await _invertedListRep._Info(1, dto.DiId);
  10381. if (info2.Code != 0)
  10382. {
  10383. return Ok(JsonView(false, "倒推表数据未生成,请先生成倒退表数据!"));
  10384. }
  10385. var info1 = info2.Data as InvertedListInfoView;
  10386. var info = await _invertedListRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == dto.DiId).FirstAsync();
  10387. string teamName = "";
  10388. if (info != null) teamName = info.TeamName;
  10389. //载入模板
  10390. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/倒退表模板20200617.doc");
  10391. DocumentBuilder builder = new DocumentBuilder(doc);
  10392. //利用键值对存放数据
  10393. Dictionary<string, string> dic = new Dictionary<string, string>();
  10394. dic.Add("TeamName", teamName);
  10395. dic.Add("StartTime", info1.AirportdDropOffDt.ConvertToDatetime()); //开始时间
  10396. dic.Add("BPtime", info1.ApprovalDataDt.ConvertToDatetime());
  10397. dic.Add("BPRemark", info1.ApprovalDataRemark);
  10398. dic.Add("SQtime", info1.ApprovalDt.ConvertToDatetime());
  10399. dic.Add("SQRemark", info1.ApprovalRemark);
  10400. dic.Add("CPJtime", info1.IssueApprovalDt.ConvertToDatetime());
  10401. dic.Add("CPJRemark", info1.IssueApprovalRemark);
  10402. //dic.Add("HZtime", info1.ApplyPassportDt.ConvertToDatetime());
  10403. //dic.Add("HZRemark", info1.ApplyPassportRemark);
  10404. dic.Add("QZtime", info1.VisaInformationDt.ConvertToDatetime());
  10405. dic.Add("QZRemark", info1.VisaInformationRemark);
  10406. dic.Add("SQQZtime", info1.SendVisaDt.ConvertToDatetime());
  10407. dic.Add("SQQZRemark", info1.SendVisaRemark);
  10408. dic.Add("CQtime", info1.IssueVisaDt.ConvertToDatetime());
  10409. dic.Add("CQRemark", info1.IssueVisaRemark);
  10410. dic.Add("XQHtime", info1.PreTripMeetingDt.ConvertToDatetime());
  10411. dic.Add("XQHRemark", info1.PreTripMeetingRemark);
  10412. dic.Add("SJtime", info1.AirportdDropOffDt.ConvertToDatetime());
  10413. dic.Add("SJRemark", info1.AirportdDropOffRemark);
  10414. #region 填充word模板书签内容
  10415. foreach (var key in dic.Keys)
  10416. {
  10417. builder.MoveToBookmark(key);
  10418. builder.Write(dic[key]);
  10419. }
  10420. #endregion
  10421. var fileDir = AppSettingsHelper.Get("WordBasePath");
  10422. string fileName = $"{teamName}团出行准备流程表.doc";
  10423. string filePath = fileDir + $@"InvertedList/{fileName}";
  10424. doc.Save(filePath);
  10425. string Url = $@"{AppSettingsHelper.Get("WordBaseUrl")}Office/Word/InvertedList/{fileName}";
  10426. return Ok(JsonView(true, "操作成功!", Url));
  10427. }
  10428. #endregion
  10429. #region 三公签证费用(签证费、代办费)
  10430. /// <summary>
  10431. /// 三公签证费用(签证费、代办费)
  10432. /// List
  10433. /// </summary>
  10434. /// <returns></returns>
  10435. [HttpPost]
  10436. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10437. public async Task<IActionResult> PostVisaFeeList(VisaFeeListDto _dto)
  10438. {
  10439. var _view = await _visaFeeInfoRep._List(_dto.PortType, _dto.DiId);
  10440. if (_view.Code != 0)
  10441. {
  10442. return Ok(JsonView(false, _view.Msg));
  10443. }
  10444. return Ok(JsonView(true, "操作成功!", _view.Data));
  10445. }
  10446. /// <summary>
  10447. /// 三公签证费用(签证费、代办费)
  10448. /// Add Or Update
  10449. /// </summary>
  10450. /// <returns></returns>
  10451. [HttpPost]
  10452. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10453. public async Task<IActionResult> PostVisaFeeAddAndUpdate(VisaFeeAddAndUpdateDto _dto)
  10454. {
  10455. var _view = await _visaFeeInfoRep._Update(_dto);
  10456. if (_view.Code != 0)
  10457. {
  10458. return Ok(JsonView(false, _view.Msg));
  10459. }
  10460. return Ok(JsonView(true, _view.Msg));
  10461. }
  10462. #endregion
  10463. #region 酒店询价
  10464. /// <summary>
  10465. /// 酒店询价
  10466. /// Init
  10467. /// </summary>
  10468. /// <param name="dto"></param>
  10469. /// <returns></returns>
  10470. [HttpPost]
  10471. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10472. public async Task<IActionResult> PostHotelInquiryInit()
  10473. {
  10474. var res = await _hotelInquiryRep._Init();
  10475. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10476. return Ok(JsonView(true, res.Msg, res.Data));
  10477. }
  10478. /// <summary>
  10479. /// 酒店询价
  10480. /// page Item
  10481. /// </summary>
  10482. /// <param name="_dto"></param>
  10483. /// <returns></returns>
  10484. [HttpPost]
  10485. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10486. public async Task<IActionResult> PostHotelInquiryPageItem(HotelInquiryPageItemDto _dto)
  10487. {
  10488. var res = await _hotelInquiryRep._PageItem(_dto.PageIndex,_dto.PageSize,_dto.PortType,_dto.DiId);
  10489. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10490. var view = res.Data as PageDataViewBase;
  10491. return Ok(JsonView(true, res.Msg, view.Data, view.Total));
  10492. }
  10493. /// <summary>
  10494. /// 酒店询价
  10495. /// info
  10496. /// </summary>
  10497. /// <param name="_dto"></param>
  10498. /// <returns></returns>
  10499. [HttpPost]
  10500. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10501. public async Task<IActionResult> PostHotelInquiryInfo(HotelInquiryInfoDto _dto)
  10502. {
  10503. var res = await _hotelInquiryRep._Info(_dto.PortType, _dto.Id);
  10504. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10505. return Ok(JsonView(true, res.Msg, res.Data));
  10506. }
  10507. /// <summary>
  10508. /// 酒店询价
  10509. /// Add Or Edit
  10510. /// </summary>
  10511. /// <param name="_dto"></param>
  10512. /// <returns></returns>
  10513. [HttpPost]
  10514. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10515. public async Task<IActionResult> PostHotelInquiryAddOrEdit(HotelInquiryAddOrEditDto _dto)
  10516. {
  10517. var res = await _hotelInquiryRep._AddOrEdit(_dto);
  10518. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10519. return Ok(JsonView(true, res.Msg, res.Data));
  10520. }
  10521. /// <summary>
  10522. /// 酒店询价
  10523. /// Del
  10524. /// </summary>
  10525. /// <param name="_dto"></param>
  10526. /// <returns></returns>
  10527. [HttpPost]
  10528. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10529. public async Task<IActionResult> PostHotelInquiryDel(HotelInquiryDelDto _dto)
  10530. {
  10531. var res = await _hotelInquiryRep._Del(_dto.Id,_dto.DeleteUserId);
  10532. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10533. return Ok(JsonView(true, res.Msg, res.Data));
  10534. }
  10535. #endregion
  10536. // /// <summary>
  10537. // ///
  10538. // /// </summary>
  10539. // /// <param name="_dto"></param>
  10540. // /// <returns></returns>
  10541. // [HttpPost]
  10542. // [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10543. // public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  10544. // {
  10545. // _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  10546. // string sql = string.Format(@" Select * From Visa With(Nolock) ");
  10547. // List<OA2014_Visa> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_Visa>(sql).ToList();
  10548. // _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  10549. // Dictionary<string, int> dic_psg = new Dictionary<string, int>();
  10550. // dic_psg.Add("客人", 974);
  10551. // dic_psg.Add("司机", 975);
  10552. // dic_psg.Add("导游", 976);
  10553. // dic_psg.Add("公司内部人员", 977);
  10554. // dic_psg.Add("司机/导游/公司内部人员", 978);
  10555. // foreach (var item in list_visa)
  10556. // {
  10557. // Grp_VisaInfo temp = new Grp_VisaInfo();
  10558. // temp.Id = item.Id;
  10559. // temp.DIId = item.DIId;
  10560. // temp.VisaClient = item.VisaClient;
  10561. // temp.VisaPrice = Convert.ToDecimal(item.VisaPrice);
  10562. // temp.VisaCurrency = item.VisaCurrency;
  10563. // temp.IsThird = item.IsThird;
  10564. // if (dic_psg.ContainsKey(item.PassengerType))
  10565. // {
  10566. // temp.PassengerType = dic_psg[item.PassengerType];
  10567. // }
  10568. // else {
  10569. // temp.PassengerType = -1;
  10570. // }
  10571. // temp.VisaNumber = item.VisaNumber;
  10572. // temp.VisaFreeNumber = item.VisaFreeNumber;
  10573. // temp.CreateUserId = item.Operators;
  10574. // DateTime dt_ct;
  10575. // bool b_ct = DateTime.TryParse(item.OperatorsDate, out dt_ct);
  10576. // if (b_ct)
  10577. // {
  10578. // temp.CreateTime = dt_ct;
  10579. // }
  10580. // else
  10581. // {
  10582. // temp.CreateTime = DateTime.Now;
  10583. // }
  10584. // temp.DeleteTime = "";
  10585. // temp.DeleteUserId = 0;
  10586. // temp.Remark = item.Remark;
  10587. // if (string.IsNullOrEmpty(temp.Remark)) {
  10588. // temp.Remark = "";
  10589. // }
  10590. // temp.IsDel = item.IsDel;
  10591. // temp.VisaDescription = item.VisaAttachment;
  10592. // string sqlInsert = string.Format(@" INSERT INTO [dbo].[Grp_VisaInfo]
  10593. //([Id]
  10594. // ,[DIId]
  10595. // ,[VisaClient]
  10596. // ,[VisaPrice]
  10597. // ,[VisaCurrency]
  10598. // ,[IsThird]
  10599. // ,[PassengerType]
  10600. // ,[VisaNumber]
  10601. // ,[VisaFreeNumber]
  10602. // ,[CreateUserId]
  10603. // ,[CreateTime]
  10604. // ,[DeleteTime]
  10605. // ,[DeleteUserId]
  10606. // ,[Remark]
  10607. // ,[IsDel]
  10608. // ,[visaDescription])
  10609. // VALUES
  10610. // ({0},{1},'{2}',{3},{4}
  10611. //,{5},{6},{7},{8},{9}
  10612. //,'{10}','{11}',{12},'{13}',{14},'{15}') ",temp.Id,temp.DIId,temp.VisaClient,temp.VisaPrice,temp.VisaCurrency,
  10613. //temp.IsThird,temp.PassengerType,temp.VisaNumber,temp.VisaNumber,temp.CreateUserId,
  10614. //temp.CreateTime, temp.DeleteTime, temp.DeleteUserId, temp.Remark,temp.IsDel,temp.VisaDescription
  10615. //);
  10616. // await _airTicketResRep.ExecuteCommandAsync(sqlInsert);
  10617. // }
  10618. // return Ok(JsonView(true, "操作成功!"));
  10619. // }
  10620. /// <summary>
  10621. /// 123132123
  10622. /// </summary>
  10623. /// <param name="_dto"></param>
  10624. /// <returns></returns>
  10625. [HttpPost]
  10626. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10627. public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  10628. {
  10629. _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  10630. string sql = string.Format(@" Select * From grouopExceed where id > 20 And id not in (26,27) ");
  10631. List<OA2014_grouopExceed> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_grouopExceed>(sql).ToList();
  10632. _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  10633. Dictionary<int, int> dicDetail = new Dictionary<int, int>();
  10634. dicDetail.Add(789, 1034);
  10635. dicDetail.Add(790, 1035);
  10636. dicDetail.Add(791, 1036);
  10637. dicDetail.Add(792, 1037);
  10638. dicDetail.Add(793, 1038);
  10639. dicDetail.Add(794, 1039);
  10640. dicDetail.Add(795, 1040);
  10641. dicDetail.Add(796, 1041);
  10642. dicDetail.Add(797, 1042);
  10643. dicDetail.Add(798, 1043);
  10644. dicDetail.Add(801, 1044);
  10645. dicDetail.Add(802, 1045);
  10646. dicDetail.Add(803, 1046);
  10647. Dictionary<int, int> dic = new Dictionary<int, int>();
  10648. dic.Add(806, 1027);
  10649. dic.Add(807, 1028);
  10650. dic.Add(808, 1029);
  10651. dic.Add(809, 1030);
  10652. dic.Add(810, 1031);
  10653. dic.Add(811, 1032);
  10654. dic.Add(812, 1033);
  10655. foreach (var item in list_visa)
  10656. {
  10657. Fin_GroupExtraCost temp = new Fin_GroupExtraCost();
  10658. temp.Coefficient = item.coefficient;
  10659. DateTime dtCrt;
  10660. bool b1 = DateTime.TryParse(item.OperatorsDate, out dtCrt);
  10661. if (b1)
  10662. {
  10663. temp.CreateTime = dtCrt;
  10664. }
  10665. else
  10666. {
  10667. temp.CreateTime = DateTime.Now;
  10668. }
  10669. temp.CreateUserId = item.Operators;
  10670. temp.DeleteTime = "";
  10671. temp.DeleteUserId = 0;
  10672. temp.DiId = int.Parse(item.DIID);
  10673. temp.FilePath = item.FilePath;
  10674. temp.IsDel = item.IsDel;
  10675. temp.Price = item.Price;
  10676. temp.PriceCount = 1;
  10677. temp.PriceCurrency = item.Currency;
  10678. int detailId = 0;
  10679. if (dicDetail.ContainsKey(item.PriceTypeDetail))
  10680. {
  10681. detailId = dicDetail[item.PriceTypeDetail];
  10682. }
  10683. temp.PriceDetailType = detailId;
  10684. temp.PriceDt = DateTime.Now;
  10685. temp.PriceName = item.PriceName;
  10686. temp.PriceSum = item.Price;
  10687. int tid = 0;
  10688. if (dic.ContainsKey(item.PriceType))
  10689. {
  10690. tid = dic[item.PriceType];
  10691. }
  10692. temp.PriceType = tid;
  10693. temp.Remark = item.Remark;
  10694. await _airTicketResRep.AddAsync<Fin_GroupExtraCost>(temp);
  10695. }
  10696. return Ok(JsonView(true, "操作成功!"));
  10697. }
  10698. }
  10699. }