GroupsController.cs 650 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642136431364413645136461364713648136491365013651136521365313654136551365613657136581365913660136611366213663136641366513666136671366813669136701367113672136731367413675136761367713678136791368013681136821368313684136851368613687136881368913690136911369213693136941369513696136971369813699137001370113702137031370413705137061370713708137091371013711137121371313714137151371613717137181371913720137211372213723137241372513726137271372813729137301373113732137331373413735137361373713738137391374013741137421374313744137451374613747137481374913750137511375213753137541375513756137571375813759137601376113762137631376413765137661376713768137691377013771137721377313774137751377613777137781377913780137811378213783137841378513786137871378813789137901379113792137931379413795137961379713798137991380013801138021380313804138051380613807138081380913810138111381213813138141381513816138171381813819138201382113822138231382413825138261382713828138291383013831138321383313834138351383613837138381383913840138411384213843138441384513846138471384813849138501385113852138531385413855138561385713858138591386013861138621386313864138651386613867138681386913870138711387213873138741387513876138771387813879138801388113882138831388413885138861388713888138891389013891138921389313894138951389613897138981389913900139011390213903139041390513906139071390813909139101391113912139131391413915139161391713918139191392013921139221392313924139251392613927139281392913930139311393213933139341393513936139371393813939139401394113942139431394413945139461394713948139491395013951139521395313954139551395613957139581395913960139611396213963139641396513966139671396813969139701397113972139731397413975139761397713978139791398013981139821398313984139851398613987139881398913990139911399213993139941399513996139971399813999140001400114002140031400414005140061400714008140091401014011140121401314014140151401614017140181401914020140211402214023140241402514026140271402814029140301403114032140331403414035140361403714038140391404014041140421404314044140451404614047140481404914050140511405214053140541405514056140571405814059140601406114062140631406414065140661406714068140691407014071140721407314074140751407614077140781407914080140811408214083140841408514086140871408814089140901409114092140931409414095140961409714098140991410014101141021410314104141051410614107141081410914110141111411214113141141411514116141171411814119141201412114122141231412414125141261412714128141291413014131141321413314134141351413614137141381413914140141411414214143141441414514146141471414814149141501415114152
  1. using Aspose.Cells;
  2. using Aspose.Words;
  3. using Aspose.Words.Tables;
  4. using Microsoft.AspNetCore.SignalR;
  5. using NPOI.HSSF.UserModel;
  6. using NPOI.SS.UserModel;
  7. using NPOI.SS.Util;
  8. using NPOI.XSSF.UserModel;
  9. using OASystem.API.OAMethodLib;
  10. using OASystem.API.OAMethodLib.File;
  11. using OASystem.API.OAMethodLib.Hub.HubClients;
  12. using OASystem.API.OAMethodLib.Hub.Hubs;
  13. using OASystem.API.OAMethodLib.JuHeAPI;
  14. using OASystem.API.OAMethodLib.QiYeWeChatAPI.AppNotice;
  15. using OASystem.Domain.Dtos.CRM;
  16. using OASystem.Domain.Dtos.FileDto;
  17. using OASystem.Domain.Dtos.Groups;
  18. using OASystem.Domain.Entities.Customer;
  19. using OASystem.Domain.Entities.Financial;
  20. using OASystem.Domain.Entities.Groups;
  21. using OASystem.Domain.ViewModels.Groups;
  22. using OASystem.Infrastructure.Repositories.Groups;
  23. using Quartz.Util;
  24. using SqlSugar.Extensions;
  25. using System.Collections;
  26. using System.Data;
  27. using System.Diagnostics;
  28. using System.Globalization;
  29. using static OASystem.Infrastructure.Repositories.Groups.AirTicketResRepository;
  30. using Bookmark = Aspose.Words.Bookmark;
  31. using Cell = Aspose.Words.Tables.Cell;
  32. using Table = Aspose.Words.Tables.Table;
  33. namespace OASystem.API.Controllers
  34. {
  35. /// <summary>
  36. /// 团组相关
  37. /// </summary>
  38. //[Authorize]
  39. [Route("api/[controller]/[action]")]
  40. public class GroupsController : ControllerBase
  41. {
  42. private readonly ILogger<GroupsController> _logger;
  43. private readonly GrpScheduleRepository _grpScheduleRep;
  44. private readonly IMapper _mapper;
  45. private readonly DelegationInfoRepository _groupRepository;
  46. private readonly TaskAssignmentRepository _taskAssignmentRep;
  47. private readonly AirTicketResRepository _airTicketResRep;
  48. private readonly DecreasePaymentsRepository _decreasePaymentsRep;
  49. private readonly InvitationOfficialActivitiesRepository _InvitationOfficialActivitiesRep;
  50. private readonly DelegationEnDataRepository _delegationEnDataRep;
  51. private readonly DelegationVisaRepository _delegationVisaRep;
  52. private readonly VisaPriceRepository _visaPriceRep;
  53. private readonly CarTouristGuideGroundRepository _carTouristGuideGroundRep;
  54. private readonly HotelPriceRepository _hotelPriceRep;
  55. private readonly CustomersRepository _customersRep;
  56. private readonly MessageRepository _message;
  57. private readonly SqlSugarClient _sqlSugar;
  58. private readonly TourClientListRepository _tourClientListRep;
  59. private readonly TeamRateRepository _teamRateRep;
  60. #region 成本相关
  61. private readonly CheckBoxsRepository _checkBoxs;
  62. private readonly GroupCostRepository _GroupCostRepository;
  63. private readonly CostTypeHotelNumberRepository _CostTypeHotelNumberRepository;
  64. private readonly GroupCostParameterRepository _GroupCostParameterRepository;
  65. #endregion
  66. private readonly SetDataRepository _setDataRep;
  67. private string url;
  68. private string path;
  69. private readonly EnterExitCostRepository _enterExitCostRep;
  70. private readonly IHubContext<ChatHub, IChatClient> _hubContext;
  71. private readonly UsersRepository _usersRep;
  72. private readonly IJuHeApiService _juHeApi;
  73. private readonly InvertedListRepository _invertedListRep;
  74. private readonly VisaFeeInfoRepository _visaFeeInfoRep;
  75. private readonly TicketBlackCodeRepository _ticketBlackCodeRep;
  76. private readonly ThreeCodeRepository _threeCodeRepository;
  77. private readonly HotelInquiryRepository _hotelInquiryRep;
  78. private readonly FeeAuditRepository _feeAuditRep;
  79. public GroupsController(ILogger<GroupsController> logger, IMapper mapper, SqlSugarClient sqlSugar, GrpScheduleRepository grpScheduleRep, DelegationInfoRepository groupRepository,
  80. TaskAssignmentRepository taskAssignmentRep, AirTicketResRepository airTicketResRep, DecreasePaymentsRepository decreasePaymentsRep,
  81. InvitationOfficialActivitiesRepository InvitationOfficialActivitiesRep, DelegationEnDataRepository delegationEnDataRep, EnterExitCostRepository enterExitCostRep
  82. , DelegationVisaRepository delegationVisaRep, MessageRepository message, VisaPriceRepository visaPriceRep, CarTouristGuideGroundRepository carTouristGuideGroundRep,
  83. CheckBoxsRepository checkBoxs, GroupCostRepository GroupCostRepository, CostTypeHotelNumberRepository CostTypeHotelNumberRepository,
  84. GroupCostParameterRepository GroupCostParameterRepository, HotelPriceRepository hotelPriceRep, CustomersRepository customersRep, SetDataRepository setDataRep,
  85. TourClientListRepository tourClientListRep, TeamRateRepository teamRateRep, IHubContext<ChatHub, IChatClient> hubContext, UsersRepository usersRep, IJuHeApiService juHeApi,
  86. InvertedListRepository invertedListRep, VisaFeeInfoRepository visaFeeInfoRep, TicketBlackCodeRepository ticketBlackCodeRep, HotelInquiryRepository hotelInquiryRep,
  87. ThreeCodeRepository threeCodeRepository, FeeAuditRepository feeAuditRep)
  88. {
  89. _logger = logger;
  90. _mapper = mapper;
  91. _grpScheduleRep = grpScheduleRep;
  92. _groupRepository = groupRepository;
  93. _taskAssignmentRep = taskAssignmentRep;
  94. _airTicketResRep = airTicketResRep;
  95. _sqlSugar = sqlSugar;
  96. url = AppSettingsHelper.Get("ExcelBaseUrl");
  97. path = AppSettingsHelper.Get("ExcelBasePath");
  98. if (!System.IO.Directory.Exists(path))
  99. {
  100. System.IO.Directory.CreateDirectory(path);//不存在就创建文件夹
  101. }
  102. _decreasePaymentsRep = decreasePaymentsRep;
  103. _InvitationOfficialActivitiesRep = InvitationOfficialActivitiesRep;
  104. _delegationEnDataRep = delegationEnDataRep;
  105. _enterExitCostRep = enterExitCostRep;
  106. _delegationVisaRep = delegationVisaRep;
  107. _message = message;
  108. _visaPriceRep = visaPriceRep;
  109. _carTouristGuideGroundRep = carTouristGuideGroundRep;
  110. _checkBoxs = checkBoxs;
  111. _GroupCostRepository = GroupCostRepository;
  112. _CostTypeHotelNumberRepository = CostTypeHotelNumberRepository;
  113. _GroupCostParameterRepository = GroupCostParameterRepository;
  114. _hotelPriceRep = hotelPriceRep;
  115. _customersRep = customersRep;
  116. _setDataRep = setDataRep;
  117. _tourClientListRep = tourClientListRep;
  118. _teamRateRep = teamRateRep;
  119. _hubContext = hubContext;
  120. _usersRep = usersRep;
  121. _juHeApi = juHeApi;
  122. _invertedListRep = invertedListRep;
  123. _visaFeeInfoRep = visaFeeInfoRep;
  124. _ticketBlackCodeRep = ticketBlackCodeRep;
  125. _hotelInquiryRep = hotelInquiryRep;
  126. _threeCodeRepository = threeCodeRepository;
  127. _feeAuditRep = feeAuditRep;
  128. }
  129. #region 流程管控
  130. /// <summary>
  131. /// 获取团组流程管控信息
  132. /// </summary>
  133. /// <param name="paras">参数Json字符串</param>
  134. /// <returns></returns>
  135. [HttpPost]
  136. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  137. public async Task<IActionResult> PostSearchGrpSchedule(JsonDtoBase _jsonDto)
  138. {
  139. if (string.IsNullOrEmpty(_jsonDto.Paras))
  140. {
  141. return Ok(JsonView(false, "参数为空"));
  142. }
  143. Grp_ScheduleDto _ScheduleDto = JsonConvert.DeserializeObject<Grp_ScheduleDto>(_jsonDto.Paras);
  144. if (_ScheduleDto != null)
  145. {
  146. if (_ScheduleDto.SearchType == 2)//获取列表
  147. {
  148. List<Grp_ScheduleView> _grpScheduleViewList = await _grpScheduleRep.GetViewList_GrpSchedule(_ScheduleDto);
  149. return Ok(JsonView(_grpScheduleViewList));
  150. }
  151. else//获取对象
  152. {
  153. Grp_ScheduleCombinView _grpScheduleView = await _grpScheduleRep.GetView_GrpSchedule(_ScheduleDto);
  154. if (_grpScheduleView != null)
  155. {
  156. return Ok(JsonView(_grpScheduleView));
  157. }
  158. }
  159. }
  160. else
  161. {
  162. return Ok(JsonView(false, "参数反序列化失败"));
  163. }
  164. return Ok(JsonView(false, "暂无数据!"));
  165. }
  166. /// <summary>
  167. /// 修改团组流程管控详细表数据
  168. /// </summary>
  169. /// <param name="paras"></param>
  170. /// <returns></returns>
  171. [HttpPost]
  172. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  173. public async Task<IActionResult> PostUpdateGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  174. {
  175. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  176. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  177. .SetColumns(it => it.Duty == _detail.Duty)
  178. .SetColumns(it => it.ExpectBeginDt == _detail.ExpectBeginDt)
  179. .SetColumns(it => it.ExpectEndDt == _detail.ExpectEndDt)
  180. .SetColumns(it => it.JobContent == _detail.JobContent)
  181. .SetColumns(it => it.Remark == _detail.Remark)
  182. .SetColumns(it => it.StepStatus == _detail.StepStatus)
  183. .Where(s => s.Id == dto.Id)
  184. //.UpdateColumns(s => new { s.Duty, s.ExpectBeginDt, s.ExpectEndDt, s.JobContent, s.Remark, s.StepStatus })
  185. .ExecuteCommandAsync();
  186. if (result > 0)
  187. {
  188. return Ok(JsonView(true, "保存成功!"));
  189. }
  190. return Ok(JsonView(false, "保存失败!"));
  191. }
  192. /// <summary>
  193. /// 删除团组流程管控详细表数据,删除人Id请放在Duty
  194. /// </summary>
  195. /// <param name="dto"></param>
  196. /// <returns></returns>
  197. [HttpPost]
  198. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  199. public async Task<ActionResult> PostDeleteGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  200. {
  201. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  202. _detail.IsDel = 1;
  203. _detail.DeleteUserId = dto.Duty;
  204. _detail.DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  205. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  206. .SetColumns(it => it.IsDel == _detail.IsDel)
  207. .SetColumns(it => it.DeleteUserId == _detail.DeleteUserId)
  208. .SetColumns(it => it.DeleteTime == _detail.DeleteTime)
  209. .Where(it => it.Id == dto.Id)
  210. //.UpdateColumns(s => new { s.IsDel, s.DeleteUserId, s.DeleteTime })
  211. //.WhereColumns(s => s.Id == dto.Id)
  212. .ExecuteCommandAsync();
  213. if (result > 0)
  214. {
  215. return Ok(JsonView(true, "删除成功!"));
  216. }
  217. return Ok(JsonView(false, "删除失败!"));
  218. }
  219. /// <summary>
  220. /// 增加团组流程管控详细表数据
  221. /// </summary>
  222. /// <param name="dto"></param>
  223. /// <returns></returns>
  224. [HttpPost]
  225. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  226. public async Task<ActionResult> PostInsertGrpScheduleDetail(Grp_ScheduleDetailInsertDto dto)
  227. {
  228. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  229. if (DateTime.Now < _detail.ExpectBeginDt)
  230. {
  231. _detail.StepStatus = 0;
  232. }
  233. else
  234. {//若大于设置时间,不考虑设置的预计结束日期,统一视为进行中
  235. _detail.StepStatus = 1;
  236. }
  237. var result = await _grpScheduleRep._sqlSugar.Insertable(_detail).ExecuteReturnIdentityAsync();
  238. if (result > 0)
  239. {
  240. Grp_ScheduleDetailView _result = await _grpScheduleRep.GetInsertBackData(result);
  241. return Ok(JsonView(true, "添加成功!", _result));
  242. }
  243. return Ok(JsonView(false, "添加失败!"));
  244. }
  245. #endregion
  246. #region 团组基本信息
  247. /// <summary>
  248. /// 接团信息列表
  249. /// </summary>
  250. /// <param name="dto">团组列表请求dto</param>
  251. /// <returns></returns>
  252. [HttpPost]
  253. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  254. public async Task<IActionResult> GetGroupList(GroupListDto dto)
  255. {
  256. var groupData = await _groupRepository.GetGroupList(dto);
  257. if (groupData.Code != 0)
  258. {
  259. return Ok(JsonView(false, groupData.Msg));
  260. }
  261. return Ok(JsonView(groupData.Data));
  262. }
  263. /// <summary>
  264. /// 分页查询团组列表
  265. /// </summary>
  266. /// <param name="dto"></param>
  267. /// <returns></returns>
  268. [HttpPost]
  269. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  270. public async Task<IActionResult> QueryGroupListOffset(QueryGroupListOffsetDto dto)
  271. {
  272. var watch = new Stopwatch();
  273. watch.Start();
  274. RefAsync<int> total = 0;
  275. var countyDatas = await _sqlSugar.Queryable<Grp_DelegationInfo>()
  276. .Where((di) => di.IsDel == 0 && !string.IsNullOrWhiteSpace(di.TeamName))
  277. .WhereIF(!string.IsNullOrEmpty(dto.Search), (di) => di.TeamName.Contains(dto.Search))
  278. .OrderBy((di) => new { id = SqlFunc.Desc(di.Id) })
  279. .Select((di) => new { id = di.Id, name = di.TeamName, di.ClientName , di.VisitPNumber , di.VisitCountry, di.VisitDays, di.VisitStartDate , di.VisitEndDate, di.TourCode })
  280. .Distinct()
  281. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  282. watch.Stop();
  283. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", countyDatas, total));
  284. }
  285. /// <summary>
  286. /// 接团信息列表 Page
  287. /// </summary>
  288. /// <param name="dto">团组列表请求dto</param>
  289. /// <returns></returns>
  290. [HttpPost]
  291. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  292. public async Task<IActionResult> PostGroupPageList(GroupPageListDto dto)
  293. {
  294. #region 参数验证
  295. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  296. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  297. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  298. #region 页面操作权限验证
  299. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  300. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  301. #endregion
  302. #endregion
  303. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  304. {
  305. string sqlWhere = string.Empty;
  306. if (dto.IsSure == 0) //未完成
  307. {
  308. sqlWhere += string.Format(@" And IsSure = 0");
  309. }
  310. else if (dto.IsSure == 1) //已完成
  311. {
  312. sqlWhere += string.Format(@" And IsSure = 1");
  313. }
  314. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  315. {
  316. string tj = dto.SearchCriteria;
  317. 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}%')",
  318. tj, tj, tj, tj, tj);
  319. }
  320. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  321. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  322. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  323. JietuanOperator,IsSure,CreateTime,IsBid
  324. From (
  325. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  326. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  327. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  328. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  329. su.CnName JietuanOperator,IsSure,gdi.CreateTime,gdi.IsBid
  330. From Grp_DelegationInfo gdi
  331. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  332. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  333. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  334. Where gdi.IsDel = 0 {0}
  335. ) temp", sqlWhere);
  336. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  337. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  338. #region 处理所属部门
  339. /*
  340. * 1.sq 和 gyy 等显示 市场部
  341. * 2.王鸽和主管及张总还有管理员号统一国交部
  342. * 2-1. 4 管理员 ,21 张海麟
  343. */
  344. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  345. List<int> userIds1 = new List<int>() { 4, 21 };
  346. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  347. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  348. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  349. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  350. .ToList();
  351. foreach (var item in _DelegationList)
  352. {
  353. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  354. }
  355. #endregion
  356. var _view = new
  357. {
  358. PageFuncAuth = pageFunAuthView,
  359. Data = _DelegationList
  360. };
  361. return Ok(JsonView(true, "查询成功!", _view, total));
  362. }
  363. else
  364. {
  365. return Ok(JsonView(false, "查询失败"));
  366. }
  367. }
  368. /// <summary>
  369. /// 团组列表
  370. /// </summary>
  371. /// <returns></returns>
  372. [HttpPost]
  373. public async Task<IActionResult> GetGroupListByWhere(GroupListByWhere dto)
  374. {
  375. #region 参数验证
  376. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  377. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  378. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  379. #region 页面操作权限验证
  380. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  381. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  382. #endregion
  383. #endregion
  384. if (dto.PortType != 1 && dto.PortType != 2)
  385. {
  386. return Ok(JsonView(false, "查询失败!"));
  387. }
  388. string orderbyStr = "order by gdi.CreateTime Desc";
  389. string sqlWhere = string.Empty;
  390. if (dto.IsSure == 0) //未完成
  391. {
  392. sqlWhere += string.Format(@" And IsSure = 0");
  393. }
  394. else if (dto.IsSure == 1) //已完成
  395. {
  396. sqlWhere += string.Format(@" And IsSure = 1");
  397. }
  398. //团组类型
  399. if (dto.TeamDid > 0)
  400. {
  401. sqlWhere += string.Format(@"And TeamDid = {0} ", dto.TeamDid);
  402. }
  403. //团组名称
  404. if (!string.IsNullOrEmpty(dto.TeamName))
  405. {
  406. sqlWhere += string.Format(@"And TeamName Like '%{0}%'", dto.TeamName);
  407. }
  408. //客户名称
  409. if (!string.IsNullOrEmpty(dto.ClientName))
  410. {
  411. sqlWhere += string.Format(@"And ClientName Like '%{0}%'", dto.ClientName);
  412. }
  413. //客户单位
  414. if (!string.IsNullOrEmpty(dto.ClientUnit))
  415. {
  416. sqlWhere += string.Format(@"And ClientUnit Like '%{0}%'", dto.ClientUnit);
  417. }
  418. //出访时间
  419. if (!string.IsNullOrEmpty(dto.visitDataTime))
  420. {
  421. sqlWhere += string.Format(@"And VisitDate >= '{0}'", dto.visitDataTime);
  422. orderbyStr = "order by gdi.VisitDate";
  423. }
  424. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  425. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  426. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  427. JietuanOperator,IsSure,CreateTime
  428. From (
  429. Select row_number() over({0}) as Row_Number,
  430. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  431. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  432. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  433. su.CnName JietuanOperator,IsSure,gdi.CreateTime
  434. From Grp_DelegationInfo gdi
  435. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  436. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  437. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  438. Where gdi.IsDel = 0 {1}
  439. ) temp ", orderbyStr, sqlWhere);
  440. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  441. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  442. #region 处理所属部门
  443. /*
  444. * 1.sq 和 gyy 等显示 市场部
  445. * 2.王鸽和主管及张总还有管理员号统一国交部
  446. * 2-1. 4 管理员 ,21 张海麟
  447. */
  448. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  449. List<int> userIds1 = new List<int>() { 4, 21 };
  450. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  451. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  452. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  453. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  454. .ToList();
  455. foreach (var item in _DelegationList)
  456. {
  457. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  458. }
  459. #endregion
  460. var _view = new
  461. {
  462. PageFuncAuth = pageFunAuthView,
  463. Data = _DelegationList
  464. };
  465. return Ok(JsonView(true, "查询成功!", _view, total));
  466. }
  467. /// <summary>
  468. /// 接团信息详情
  469. /// </summary>
  470. /// <param name="dto">团组info请求dto</param>
  471. /// <returns></returns>
  472. [HttpPost]
  473. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  474. public async Task<IActionResult> GetGroupInfo(GroupInfoDto dto)
  475. {
  476. var groupData = await _groupRepository.GetGroupInfo(dto);
  477. if (groupData.Code != 0)
  478. {
  479. return Ok(JsonView(false, groupData.Msg));
  480. }
  481. return Ok(JsonView(groupData.Data));
  482. }
  483. /// <summary>
  484. /// 接团信息 编辑添加
  485. /// 基础信息数据源
  486. /// </summary>
  487. /// <param name="dto"></param>
  488. /// <returns></returns>
  489. [HttpPost]
  490. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  491. public async Task<IActionResult> GroupEditBasicSource(GroupListDto dto)
  492. {
  493. var groupData = await _groupRepository.GroupEditBasicSource(dto);
  494. if (groupData.Code != 0)
  495. {
  496. return Ok(JsonView(false, groupData.Msg));
  497. }
  498. return Ok(JsonView(groupData.Data));
  499. }
  500. /// <summary>
  501. /// 接团信息 操作(增改)
  502. /// </summary>
  503. /// <param name="dto"></param>
  504. /// <returns></returns>
  505. [HttpPost]
  506. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  507. public async Task<IActionResult> GroupOperation(GroupOperationDto dto)
  508. {
  509. try
  510. {
  511. var groupData = await _groupRepository.GroupOperation(dto);
  512. if (groupData.Code != 0)
  513. {
  514. return Ok(JsonView(false, groupData.Msg));
  515. }
  516. int diId = 0;
  517. //添加时 默认加入团组汇率
  518. if (dto.Status == 1) //添加
  519. {
  520. diId = groupData.Data;
  521. //添加默认币种
  522. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  523. //默认分配权限
  524. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  525. //消息提示 王鸽 主管号
  526. List<int> _managerIds = new List<int>() { 22, 32 };
  527. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  528. if (userIds.Count > 0)
  529. {
  530. userIds.Add(208);
  531. //创建团组管控
  532. GroupStepForDelegation.CreateWorkStep(diId);
  533. //发送消息
  534. string groupName = dto.TeamName;
  535. string createGroupUser = string.Empty;
  536. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  537. if (userInfo != null) createGroupUser = userInfo.CnName;
  538. string title = $"系统通知";
  539. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  540. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  541. }
  542. //默认创建倒推表
  543. await _invertedListRep._Create(dto.UserId, diId);
  544. }
  545. else if (dto.Status == 2)
  546. {
  547. diId = dto.Id;
  548. }
  549. return Ok(JsonView(true, "操作成功!", diId));
  550. }
  551. catch (Exception ex)
  552. {
  553. Logs("[response]" + JsonConvert.SerializeObject(dto));
  554. Logs(ex.Message);
  555. return Ok(JsonView(false, ex.Message));
  556. }
  557. }
  558. /// <summary>
  559. /// 接团流程操作(增改)
  560. /// 安卓端使用 建团时添加客户名单
  561. /// </summary>
  562. /// <param name="dto"></param>
  563. /// <returns></returns>
  564. [HttpPost]
  565. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  566. public async Task<IActionResult> GroupProcessOperation(GroupProcessOperationDto dto)
  567. {
  568. try
  569. {
  570. #region 参数验证
  571. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  572. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  573. #region 页面操作权限验证
  574. //pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 104);
  575. //if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "客户名单您没有添加权限!"));
  576. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 27);
  577. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "团组操作您没有添加权限!"));
  578. #endregion
  579. #endregion
  580. _sqlSugar.BeginTran();
  581. var _dto = new GroupOperationDto();
  582. _dto = _mapper.Map<GroupProcessOperationDto, GroupOperationDto>(dto);
  583. var groupData = await _groupRepository.GroupOperation(_dto);
  584. if (groupData.Code != 0)
  585. {
  586. return Ok(JsonView(false, "团组操作添加失败!" + groupData.Msg));
  587. }
  588. int diId = 0;
  589. //添加时 默认加入团组汇率
  590. if (dto.Status == 1) //添加
  591. {
  592. diId = groupData.Data;
  593. //添加默认币种
  594. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  595. //默认分配权限
  596. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  597. //消息提示 王鸽 主管号
  598. List<int> _managerIds = new List<int>() { 22, 32 };
  599. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  600. if (userIds.Count > 0)
  601. {
  602. userIds.Add(208);
  603. //创建团组管控
  604. GroupStepForDelegation.CreateWorkStep(diId);
  605. //发送消息
  606. string groupName = dto.TeamName;
  607. string createGroupUser = string.Empty;
  608. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  609. if (userInfo != null) createGroupUser = userInfo.CnName;
  610. string title = $"系统通知";
  611. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  612. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  613. }
  614. }
  615. if (dto.Status == 2)
  616. {
  617. diId = dto.Id;
  618. if (diId == 0)
  619. {
  620. return Ok(JsonView(false, "修改失败! 未添加团组id" + groupData.Msg));
  621. }
  622. }
  623. var viewData = await _tourClientListRep.OperMultiple(dto.TourClientListInfos, diId, dto.UserId);
  624. if (viewData.Code != 0)
  625. {
  626. _sqlSugar.RollbackTran();
  627. return Ok(JsonView(false, "客户名单添加失败!" + viewData.Msg));
  628. }
  629. _sqlSugar.CommitTran();
  630. return Ok(JsonView(true, "添加成功"));
  631. }
  632. catch (Exception ex)
  633. {
  634. _sqlSugar.RollbackTran();
  635. return Ok(JsonView(false, ex.Message));
  636. }
  637. }
  638. /// <summary>
  639. /// 接团信息 操作(删除)
  640. /// </summary>
  641. /// <param name="dto"></param>
  642. /// <returns></returns>
  643. [HttpPost]
  644. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  645. public async Task<IActionResult> GroupDel(GroupDelDto dto)
  646. {
  647. try
  648. {
  649. var groupData = await _groupRepository.GroupDel(dto);
  650. if (groupData.Code != 0)
  651. {
  652. return Ok(JsonView(false, groupData.Msg));
  653. }
  654. return Ok(JsonView(true));
  655. }
  656. catch (Exception ex)
  657. {
  658. Logs("[response]" + JsonConvert.SerializeObject(dto));
  659. Logs(ex.Message);
  660. return Ok(JsonView(false, ex.Message));
  661. }
  662. }
  663. /// <summary>
  664. /// 获取团组销售报价号
  665. /// 团组添加时 使用
  666. /// </summary>
  667. /// <returns></returns>
  668. [HttpPost]
  669. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  670. public async Task<IActionResult> GetGroupSalesQuoteNo()
  671. {
  672. var groupData = await _groupRepository.GetGroupSalesQuoteNo();
  673. if (groupData.Code != 0)
  674. {
  675. return Ok(JsonView(false, groupData.Msg));
  676. }
  677. object salesQuoteNo = new
  678. {
  679. SalesQuoteNo = groupData.Data
  680. };
  681. return Ok(JsonView(salesQuoteNo));
  682. }
  683. /// <summary>
  684. /// 设置确认出团
  685. /// </summary>
  686. /// <param name="dto"></param>
  687. /// <returns></returns>
  688. [HttpPost]
  689. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  690. public async Task<IActionResult> SetConfirmationGroup(ConfirmationGroupDto dto)
  691. {
  692. var groupData = await _groupRepository.ConfirmationGroup(dto);
  693. if (groupData.Code != 0)
  694. {
  695. return Ok(JsonView(false, groupData.Msg));
  696. }
  697. var groupInfo = _groupRepository.Query(s => s.Id == dto.GroupId).First();
  698. #region OA消息推送
  699. try
  700. {
  701. string groupName = groupInfo.TeamName;
  702. List<Sys_Users> listUser = _airTicketResRep.Query<Sys_Users>(s => s.DepId == 7 && s.IsDel == 0).ToList();
  703. List<int> userIds = new List<int>();
  704. listUser.ForEach(s => userIds.Add(s.Id));
  705. string title = $"系统通知";
  706. string content = $"团组[{groupName}]已确认出团!";
  707. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, dto.GroupId);
  708. }
  709. catch (Exception ex)
  710. {
  711. }
  712. #endregion
  713. #region 应用推送
  714. try
  715. {
  716. await AppNoticeLibrary.SendChatMsg_GroupStatus_Create(dto.GroupId, QiyeWeChatEnum.CompanyCRMChat);
  717. Sys_Users users = _airTicketResRep.Query<Sys_Users>(s => s.Id == groupInfo.JietuanOperator).First();
  718. Sys_Department department = _airTicketResRep.Query<Sys_Department>(s => s.Id == users.DepId).First();
  719. if (department.Id == 6 && !string.IsNullOrEmpty(users.QiyeChatUserId))
  720. {
  721. List<string> userList = new List<string>() { users.QiyeChatUserId };
  722. await AppNoticeLibrary.SendUserMsg_GroupStatus_Create(dto.GroupId, userList);
  723. }
  724. }
  725. catch (Exception ex)
  726. {
  727. }
  728. #endregion
  729. GroupStepForDelegation.CreateWorkStep(dto.GroupId); //创建管控流程
  730. return Ok(JsonView(true, "操作成功!", groupData.Data));
  731. }
  732. /// <summary>
  733. /// 获取团组名称data And 签证国别Data
  734. /// </summary>
  735. /// <param name="dto"></param>
  736. /// <returns></returns>
  737. [HttpPost]
  738. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  739. public async Task<IActionResult> GetGroupNameAndVisaNationality(GroupNameDto dto)
  740. {
  741. var groupData = await _groupRepository.GetGroupNameAndVisaNationality(dto);
  742. if (groupData.Code != 0)
  743. {
  744. return Ok(JsonView(false, groupData.Msg));
  745. }
  746. return Ok(JsonView(groupData.Data));
  747. }
  748. /// <summary>
  749. /// 根据CTable类型返回对应的团组名称及简单数据(APP端)
  750. /// </summary>
  751. /// <returns></returns>
  752. [HttpPost]
  753. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  754. public async Task<IActionResult> PostGroupNameAndEasy(DecreasePaymentsDto dto)
  755. {
  756. try
  757. {
  758. Result groupData = await _decreasePaymentsRep.PostGroupNameAndEasy(dto);
  759. if (groupData.Code != 0)
  760. {
  761. return Ok(JsonView(false, groupData.Msg));
  762. }
  763. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  764. }
  765. catch (Exception ex)
  766. {
  767. return Ok(JsonView(false, "程序错误!"));
  768. throw;
  769. }
  770. }
  771. #endregion
  772. #region 团组&签证
  773. /// <summary>
  774. /// 根据团组Id获取签证客户信息List
  775. /// </summary>
  776. /// <param name="dto">请求dto</param>
  777. /// <returns></returns>
  778. [HttpPost]
  779. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  780. public async Task<IActionResult> GetCrmByGroupId(ClientByGroupIdDto dto)
  781. {
  782. var groupData = await _groupRepository.GetCrmByGroupId(dto);
  783. if (groupData.Code != 0)
  784. {
  785. return Ok(JsonView(false, groupData.Msg));
  786. }
  787. return Ok(JsonView(groupData.Data));
  788. }
  789. /// <summary>
  790. /// IOS获取团组签证拍照上传进度01(团组列表)
  791. /// </summary>
  792. /// <param name="dto">请求dto</param>
  793. /// <returns></returns>
  794. [HttpPost]
  795. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  796. public async Task<IActionResult> PostIOSVisaProgress(IOS_VisaDto dto)
  797. {
  798. if (dto == null)
  799. {
  800. return Ok(JsonView(false, "参数为空"));
  801. }
  802. DelegationVisaViewList visaList = _delegationVisaRep.GetDelegationList(dto);
  803. return Ok(JsonView(visaList));
  804. }
  805. /// <summary>
  806. /// IOS获取团组签证拍照上传进度02(团组签证详情\人员列表\国家)
  807. /// </summary>
  808. /// <returns></returns>
  809. [HttpPost]
  810. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  811. public async Task<ActionResult> PostIOSVisaProgressContent(IOS_VisaCustomerListDto dto)
  812. {
  813. if (dto == null)
  814. {
  815. return Ok(JsonView(false, "请求错误:"));
  816. }
  817. List<DelegationVisaProgressView> list = _delegationVisaRep.GetDelegationProgressList(dto.diId);
  818. return Ok(JsonView(list));
  819. }
  820. /// <summary>
  821. /// IOS获取团组签证拍照上传进度03(相册)
  822. /// </summary>
  823. /// <returns></returns>
  824. [HttpPost]
  825. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  826. public async Task<ActionResult> PostIOSVisaProgressImageList(IOS_VisaImageListDto dto)
  827. {
  828. if (dto == null)
  829. {
  830. return Ok(JsonView(false, "请求错误:"));
  831. }
  832. List<VisaProgressImageView> list = _delegationVisaRep.GetVisaProgressImageList(dto.visaProgressCustomerId, dto.picType);
  833. string url = AppSettingsHelper.Get("VisaProgressImageBaseUrl") + AppSettingsHelper.Get("VisaProgressImageFtpPath");
  834. list.ForEach(s => s.url = url);
  835. return Ok(JsonView(list));
  836. }
  837. /// <summary>
  838. /// IOS获取团组签证拍照上传进度04(图片上传)
  839. /// </summary>
  840. /// <param name="dto"></param>
  841. /// <returns></returns>
  842. [HttpPost]
  843. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  844. public async Task<ActionResult> PostIOSVisaProgressUploadImage(IOS_VisaUploadImageDto dto)
  845. {
  846. //string result = decodeBase64ToImage(dto.base64DataURL, dto.imageName);
  847. //if (!string.IsNullOrEmpty(result))
  848. //{
  849. //}
  850. //else {
  851. // return Ok(JsonView(false, "上传失败"));
  852. //}
  853. DateTime dt1970 = new DateTime(1970, 1, 1, 0, 0, 0, 0);
  854. int sucNum = 0;
  855. try
  856. {
  857. foreach (var item in dto.base64DataList)
  858. {
  859. string imageName = dto.imageName + ((DateTime.Now.Ticks - dt1970.Ticks) / 10000).ToString();
  860. string result = decodeBase64ToImage(item, imageName);
  861. if (!string.IsNullOrEmpty(result))
  862. {
  863. Grp_VisaProgressCustomerPicture pic = new Grp_VisaProgressCustomerPicture();
  864. pic.CreateUserId = dto.CreateUserId;
  865. pic.PicName = imageName;
  866. pic.PicPath = result;
  867. pic.VisaProgressCustomerId = dto.visaProgressCustomerId;
  868. int insertResult = await _delegationVisaRep.AddAsync<Grp_VisaProgressCustomerPicture>(pic);
  869. if (insertResult > 0)
  870. {
  871. sucNum++;
  872. }
  873. }
  874. }
  875. }
  876. catch (Exception ex)
  877. {
  878. return Ok(JsonView(false, ex.Message));
  879. }
  880. string msg = string.Format(@"成功上传{0}张", sucNum);
  881. return Ok(JsonView(true, msg));
  882. }
  883. private string decodeBase64ToImage(string base64DataURL, string imgName)
  884. {
  885. string filename = "";//声明一个string类型的相对路径
  886. String base64 = base64DataURL.Substring(base64DataURL.IndexOf(",") + 1); //将‘,’以前的多余字符串删除
  887. System.Drawing.Bitmap bitmap = null;//定义一个Bitmap对象,接收转换完成的图片
  888. try//会有异常抛出,try,catch一下
  889. {
  890. byte[] arr = Convert.FromBase64String(base64);//将纯净资源Base64转换成等效的8位无符号整形数组
  891. System.IO.MemoryStream ms = new System.IO.MemoryStream(arr);//转换成无法调整大小的MemoryStream对象
  892. bitmap = new System.Drawing.Bitmap(ms);//将MemoryStream对象转换成Bitmap对象
  893. var fileDir = AppSettingsHelper.Get("VisaProgressImageBasePath");
  894. //文件名称
  895. filename = "VisaProgress_" + DateTime.Now.ToString("yyyyMMddHHmmss") + "_" + imgName + ".jpeg";//所要保存的相对路径及名字
  896. //上传的文件的路径
  897. string filePath = "";
  898. if (!Directory.Exists(fileDir))
  899. {
  900. Directory.CreateDirectory(fileDir);
  901. }
  902. //上传的文件的路径
  903. filePath = fileDir + filename;
  904. //string url = HttpRuntime.AppDomainAppPath.ToString();
  905. //string tmpRootDir = System.Web.HttpContext.Current.Server.MapPath(System.Web.HttpContext.Current.Request.ApplicationPath.ToString()); //获取程序根目录
  906. //string imagesurl2 = tmpRootDir + filename; //转换成绝对路径
  907. bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Jpeg);//保存到服务器路径
  908. //bitmap.Save(filePath + ".bmp", System.Drawing.Imaging.ImageFormat.Bmp);
  909. //bitmap.Save(filePath + ".gif", System.Drawing.Imaging.ImageFormat.Gif);
  910. //bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Png);
  911. ms.Close();//关闭当前流,并释放所有与之关联的资源
  912. bitmap.Dispose();
  913. }
  914. catch (Exception e)
  915. {
  916. string massage = e.Message;
  917. Logs("IOS图片上传Error:" + massage);
  918. //filename = e.Message;
  919. }
  920. return filename;//返回相对路径
  921. }
  922. /// <summary>
  923. /// IOS获取团组签证拍照上传进度05(修改签证状态/通知)
  924. /// </summary>
  925. /// <param name="dto"></param>
  926. /// <returns></returns>
  927. [HttpPost]
  928. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  929. public async Task<ActionResult> PostIOSVisaProgressChangeStatus(IOS_VisaChangeStatusDto dto)
  930. {
  931. if (dto == null)
  932. {
  933. return Ok(JsonView(false, "请求错误:"));
  934. }
  935. string msg = "参数错误";
  936. if (dto.diId > 0 && dto.visaStatus > 0 && dto.visaStatus < 4)
  937. {
  938. try
  939. {
  940. //_delegationVisaRep.BeginTran();
  941. var updCount = await _delegationVisaRep._sqlSugar.Updateable<Grp_VisaProgressCustomer>()
  942. .SetColumns(it => it.WorkStatus == dto.visaStatus)
  943. .Where(s => s.Id == dto.visaProgressCustomerId)
  944. .ExecuteCommandAsync();
  945. if (updCount > 0 && dto.publishCode == 1)
  946. {
  947. _delegationVisaRep.ChangeDataBase(DBEnum.OA2014DB); //切换到新OA后删除
  948. string sqlDelegation = string.Format(@" Select * From DelegationInfo With(Nolock) Where Id = {0} ", dto.diId);
  949. OA2021_DelegationInfo groupData = _sqlSugar.SqlQueryable<OA2021_DelegationInfo>(sqlDelegation).First();
  950. //GroupInfoDto grpDto = new GroupInfoDto() { Id = dto.diId };
  951. //var groupData = await _groupRepository.GetGroupInfo(grpDto);
  952. _delegationVisaRep.ChangeDataBase(DBEnum.OA2023DB); //切换到新OA后删除
  953. if (groupData == null)
  954. {
  955. _delegationVisaRep.RollbackTran();
  956. }
  957. string title = string.Format(@"[签证进度更新]");
  958. string content = string.Format(@"测试文本");
  959. bool rst = await _message.AddMsg(new MessageDto()
  960. {
  961. Type = MessageTypeEnum.GroupVisaProgressUpdate,
  962. IssuerId = dto.publisher,
  963. Title = title,
  964. Content = content,
  965. ReleaseTime = DateTime.Now,
  966. UIdList = new List<int> {
  967. 234
  968. }
  969. });
  970. if (rst)
  971. {
  972. return Ok(JsonView(true, "发送通知成功"));
  973. }
  974. }
  975. //_delegationVisaRep.CommitTran();
  976. }
  977. catch (Exception)
  978. {
  979. //_delegationVisaRep.RollbackTran();
  980. }
  981. }
  982. return Ok(JsonView(true, msg));
  983. }
  984. #endregion
  985. #region 团组任务分配
  986. /// <summary>
  987. /// 团组任务分配初始化
  988. /// </summary>
  989. /// <param name="dto"></param>
  990. /// <returns></returns>
  991. [HttpPost]
  992. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  993. public async Task<IActionResult> GetTaskAssignmen()
  994. {
  995. var groupData = await _taskAssignmentRep.GetTaskAssignmen();
  996. if (groupData.Code != 0)
  997. {
  998. return Ok(JsonView(false, groupData.Msg));
  999. }
  1000. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1001. }
  1002. /// <summary>
  1003. /// 团组任务分配查询
  1004. /// </summary>
  1005. /// <param name="dto"></param>
  1006. /// <returns></returns>
  1007. [HttpPost]
  1008. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1009. public async Task<IActionResult> TaskAssignmenQuery(TaskAssignmenQueryDto dto)
  1010. {
  1011. var groupData = await _taskAssignmentRep.TaskAssignmenQuery(dto);
  1012. if (groupData.Code != 0)
  1013. {
  1014. return Ok(JsonView(false, groupData.Msg));
  1015. }
  1016. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1017. }
  1018. /// <summary>
  1019. /// 团组任务分配操作
  1020. /// </summary>
  1021. /// <param name="dto"></param>
  1022. /// <returns></returns>
  1023. [HttpPost]
  1024. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1025. public async Task<IActionResult> GetTaskAssignmenOp(TaskAssignmenDto dto)
  1026. {
  1027. Result groupData = await _taskAssignmentRep.GetTaskAssignmenOp(dto);
  1028. if (groupData.Code != 0)
  1029. {
  1030. return Ok(JsonView(false, groupData.Msg));
  1031. }
  1032. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1033. }
  1034. #endregion
  1035. #region 团组费用审核
  1036. /// <summary>
  1037. /// 费用审核
  1038. /// 团组列表 Page
  1039. /// </summary>
  1040. /// <param name="_dto">团组列表请求dto</param>
  1041. /// <returns></returns>
  1042. [HttpPost]
  1043. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1044. public async Task<IActionResult> PostExpenseAuditGroupPageItems(ExpenseAuditGroupPageItemsDto _dto)
  1045. {
  1046. #region 参数验证
  1047. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1048. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1049. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1050. #region 页面操作权限验证
  1051. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1052. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1053. #endregion
  1054. #endregion
  1055. if (_dto.PortType == 1 || _dto.PortType == 2 || _dto.PortType == 2) // web/Android/IOS
  1056. {
  1057. string sqlWhere = string.Empty;
  1058. if (_dto.IsSure == 0) //未完成
  1059. {
  1060. sqlWhere += string.Format(@" And IsSure = 0");
  1061. }
  1062. else if (_dto.IsSure == 1) //已完成
  1063. {
  1064. sqlWhere += string.Format(@" And IsSure = 1");
  1065. }
  1066. if (!string.IsNullOrEmpty(_dto.SearchCriteria))
  1067. {
  1068. string tj = _dto.SearchCriteria;
  1069. 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}%')",
  1070. tj, tj, tj, tj, tj);
  1071. }
  1072. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  1073. TeamName,ClientName,ClientUnit, TeamLevId,TeamLev,VisitDate,
  1074. VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  1075. From (
  1076. Select row_number() over(order by gdi.VisitDate Desc) as Row_Number,
  1077. gdi.Id,SalesQuoteNo,TourCode,ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,
  1078. ClientName,ClientUnit,ssd.Id TeamTypeId, ssd.Name TeamType,VisitDate,
  1079. VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  1080. From Grp_DelegationInfo gdi
  1081. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  1082. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  1083. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  1084. Where gdi.IsDel = 0 {0}
  1085. ) temp ", sqlWhere);
  1086. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  1087. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(_dto.PageIndex, _dto.PageSize, total);//ToPageAsync
  1088. var _view = new
  1089. {
  1090. PageFuncAuth = pageFunAuthView,
  1091. Data = _DelegationList
  1092. };
  1093. return Ok(JsonView(true, "查询成功!", _view, total));
  1094. }
  1095. else
  1096. {
  1097. return Ok(JsonView(false, "查询失败"));
  1098. }
  1099. }
  1100. /// <summary>
  1101. /// 获取团组费用审核
  1102. /// </summary>
  1103. /// <param name="paras">参数Json字符串</param>
  1104. /// <returns></returns>
  1105. [HttpPost]
  1106. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1107. public async Task<IActionResult> PostSearchGrpCreditCardPayment(Search_GrpCreditCardPaymentDto _dto)
  1108. {
  1109. try
  1110. {
  1111. #region 参数验证
  1112. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1113. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1114. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  1115. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1116. #region 页面操作权限验证
  1117. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1118. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1119. #endregion
  1120. #endregion
  1121. Grp_CreditCardPaymentView _view = new Grp_CreditCardPaymentView();
  1122. List<SimplClientInfo> clientNameList = getSimplClientList(_dto.DiId);
  1123. #region 费用清单
  1124. var exp = Expressionable.Create<Grp_CreditCardPayment>();
  1125. exp.AndIF(_dto.AuditStatus != -1, it => it.IsAuditGM == _dto.AuditStatus);
  1126. exp.AndIF(_dto.Label != -1, it => it.CTable == _dto.Label);
  1127. List<Grp_CreditCardPayment> entityList = _groupRepository
  1128. .Query<Grp_CreditCardPayment>(s => s.DIId == _dto.DiId && s.IsDel == 0 && s.CreateUserId > 0)
  1129. .Where(exp.ToExpression())
  1130. .ToList();
  1131. List<Grp_CreditCardPaymentDetailView> detailList = new List<Grp_CreditCardPaymentDetailView>();
  1132. List<CreditCardPaymentCurrencyPriceItem> ccpCurrencyPrices = new List<CreditCardPaymentCurrencyPriceItem>();
  1133. /*
  1134. * 76://酒店预订
  1135. */
  1136. List<Grp_HotelReservations> _HotelReservations = await _groupRepository
  1137. .Query<Grp_HotelReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1138. .ToListAsync();
  1139. List<Grp_HotelReservationsContent> _HotelReservationsContents = await _groupRepository
  1140. .Query<Grp_HotelReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1141. .ToListAsync();
  1142. /*
  1143. * 79://车/导游地接
  1144. */
  1145. List<Grp_CarTouristGuideGroundReservations> _CarTouristGuideGroundReservations = await _groupRepository
  1146. .Query<Grp_CarTouristGuideGroundReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1147. .ToListAsync();
  1148. List<Grp_CarTouristGuideGroundReservationsContent> _CarTouristGuideGroundReservationsContent = await _groupRepository
  1149. .Query<Grp_CarTouristGuideGroundReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1150. .ToListAsync();
  1151. /*
  1152. * 80: //签证
  1153. */
  1154. List<Grp_VisaInfo> _VisaInfos = await _groupRepository
  1155. .Query<Grp_VisaInfo>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1156. .ToListAsync();
  1157. /*
  1158. *81: //邀请/公务活动
  1159. */
  1160. List<Grp_InvitationOfficialActivities> _InvitationOfficialActivities = await _groupRepository
  1161. .Query<Grp_InvitationOfficialActivities>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1162. .ToListAsync();
  1163. /*
  1164. * 82: //团组客户保险
  1165. */
  1166. List<Grp_Customers> _Customers = await _groupRepository.Query<Grp_Customers>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1167. /*
  1168. * Lable = 85 机票预订
  1169. */
  1170. List<Grp_AirTicketReservations> p_AirTicketReservations = await _groupRepository
  1171. .Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1172. .ToListAsync();
  1173. /*
  1174. * 85 机票预定
  1175. */
  1176. List<Grp_AirTicketReservations> _AirTicketReservations = await _groupRepository.Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1177. /*
  1178. * 98 其他款项
  1179. */
  1180. List<Grp_DecreasePayments> _DecreasePayments = await _groupRepository
  1181. .Query<Grp_DecreasePayments>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1182. .ToListAsync();
  1183. /*
  1184. * 285:收款退还
  1185. */
  1186. List<Fin_PaymentRefundAndOtherMoney> _PaymentRefundAndOtherMoneys = await _groupRepository
  1187. .Query<Fin_PaymentRefundAndOtherMoney>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1188. .ToListAsync();
  1189. /*
  1190. * 1015: //超支费用
  1191. */
  1192. List<Fin_GroupExtraCost> _GroupExtraCosts = await _groupRepository.Query<Fin_GroupExtraCost>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1193. /*
  1194. * 币种信息
  1195. */
  1196. var currencyItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 66 && s.IsDel == 0).ToListAsync();
  1197. /*
  1198. * 车/导游地接 费用类型
  1199. */
  1200. var carFeeTypeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 17 && s.IsDel == 0).ToListAsync();
  1201. /*
  1202. * 车/导游地接 费用类型
  1203. */
  1204. var carFeeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 83 && s.IsDel == 0).ToListAsync();
  1205. var initDatas = await _groupRepository.Query<Sys_SetData>(s => s.IsDel == 0).ToListAsync();
  1206. var cityData = await _groupRepository.Query<Grp_NationalTravelFee>(s => s.IsDel == 0).ToListAsync();
  1207. /*
  1208. * 用户信息
  1209. */
  1210. var userItems = await _groupRepository.Query<Sys_Users>(s => s.IsDel == 0).ToListAsync();
  1211. /*
  1212. * 费用模块
  1213. */
  1214. Sys_SetData sdPriceName = _groupRepository.Query<Sys_SetData>(s => s.Id == _dto.Label).First();
  1215. string priceModule = string.Empty;
  1216. if (sdPriceName != null)
  1217. {
  1218. priceModule = sdPriceName.Name;
  1219. }
  1220. /*
  1221. * 成本信息
  1222. */
  1223. var groupCost = _groupRepository.Query<Grp_GroupCostParameter>(s => s.DiId == _dto.DiId && s.IsDel == 0).First();
  1224. decimal _groupRate = 0.0000M;
  1225. string _groupCurrencyCode = "-";
  1226. if (groupCost != null)
  1227. {
  1228. _groupRate = groupCost.Rate;
  1229. if (int.TryParse(groupCost.Currency, out int _currency))
  1230. {
  1231. _groupCurrencyCode = currencyItems.Find(it => it.Id == _currency)?.Name ?? "-";
  1232. }
  1233. else _groupCurrencyCode = groupCost.Currency;
  1234. }
  1235. string costContentSql = $"Select * From Grp_GroupCost";
  1236. var groupCostDetails = _sqlSugar.SqlQueryable<GroupCostAuditView>(costContentSql).Where(x => x.IsDel == 0 && x.Diid == _dto.DiId).ToList();
  1237. //处理日期为空的天数
  1238. for (int i = 0; i < groupCostDetails.Count; i++)
  1239. if (i != 0)
  1240. if (string.IsNullOrEmpty(groupCostDetails[i].Date))
  1241. groupCostDetails[i].Date = groupCostDetails[i - 1].Date;
  1242. /*
  1243. * 处理详情数据
  1244. */
  1245. foreach (var entity in entityList)
  1246. {
  1247. Grp_CreditCardPaymentDetailView _detail = new Grp_CreditCardPaymentDetailView();
  1248. _detail.Id = entity.Id;
  1249. _detail.PriceName = priceModule;
  1250. _detail.PayType = initDatas.Find(it => it.Id == entity.PayDId)?.Name ?? "-";
  1251. if (_detail.PayType.Equals("现金")) _detail.CardType = "-";
  1252. else _detail.CardType = initDatas.Find(it => it.Id == entity.CTDId)?.Name ?? "-";
  1253. /*
  1254. * 应付款金额
  1255. */
  1256. Sys_SetData sdPaymentCurrency_WaitPay = currencyItems.Where(s => s.Id == entity.PaymentCurrency).FirstOrDefault();
  1257. string PaymentCurrency_WaitPay = "Unknown";
  1258. string hotelCurrncyCode = "Unknown";
  1259. string hotelCurrncyName = "Unknown";
  1260. if (sdPaymentCurrency_WaitPay != null)
  1261. {
  1262. PaymentCurrency_WaitPay = sdPaymentCurrency_WaitPay.Name;
  1263. hotelCurrncyCode = sdPaymentCurrency_WaitPay.Name;
  1264. hotelCurrncyName = sdPaymentCurrency_WaitPay.Remark;
  1265. if (hotelCurrncyCode.Equals("CNY"))
  1266. {
  1267. entity.DayRate = 1.0000M;
  1268. }
  1269. }
  1270. _detail.WaitPay = entity.PayMoney.ConvertToDecimal1().ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1271. /*
  1272. * 此次付款金额
  1273. */
  1274. decimal CurrPayStr = 0;
  1275. if (entity.PayPercentage == 0)
  1276. {
  1277. if (entity.PayThenMoney != 0)
  1278. CurrPayStr = (entity.PayThenMoney * entity.DayRate).ConvertToDecimal1();
  1279. }
  1280. else
  1281. {
  1282. if (entity.PayMoney != 0)
  1283. {
  1284. CurrPayStr = (entity.PayMoney * entity.PayPercentage / 100 * entity.DayRate).ConvertToDecimal1();
  1285. }
  1286. }
  1287. _detail.CurrPay = CurrPayStr.ToString("#0.00") + " CNY";
  1288. /*
  1289. * 剩余尾款
  1290. */
  1291. decimal BalanceStr = 0;
  1292. if (CurrPayStr != 0)
  1293. {
  1294. if (entity.PayMoney - (CurrPayStr / entity.DayRate) < 0.01M)
  1295. BalanceStr = 0;
  1296. else
  1297. BalanceStr = (entity.PayMoney - CurrPayStr / entity.DayRate).ConvertToDecimal1();
  1298. }
  1299. _detail.Balance = BalanceStr.ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1300. /*
  1301. * Bus名称
  1302. */
  1303. _detail.BusName = "待增加";
  1304. /*
  1305. *费用所属
  1306. */
  1307. switch (entity.CTable)
  1308. {
  1309. case 76://酒店预订
  1310. Grp_HotelReservations hotelReservations = _HotelReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1311. if (hotelReservations != null)
  1312. {
  1313. DateTime checkIn = Convert.ToDateTime(hotelReservations.CheckInDate),
  1314. checkOut = Convert.ToDateTime(hotelReservations.CheckOutDate);
  1315. int hotel_days = (int)(checkOut - checkIn).TotalDays;
  1316. string roomFeeStr = "", roomFeestr1 = "";
  1317. //是否比较房型价格
  1318. bool __isSingle = false, __isDouble = false, __isSuite = false, __isOther = false;
  1319. //roomFeeStr += $"<br/><span style='width:70px;display: inline-block;'></span>";
  1320. roomFeeStr += $"<br/>";
  1321. if (hotelReservations.SingleRoomPrice > 0)
  1322. {
  1323. roomFeestr1 += $"<span style='width:70px;display: inline-block;'></span>单间:{hotelReservations.SingleRoomPrice.ToString("#0.00")} * {hotelReservations.SingleRoomCount}<br/>";
  1324. __isSingle = true;
  1325. }
  1326. if (hotelReservations.DoubleRoomPrice > 0)
  1327. {
  1328. roomFeestr1 += $"<span style='width:70px;display: inline-block;'></span>双人间:{hotelReservations.DoubleRoomPrice.ToString("#0.00")} * {hotelReservations.DoubleRoomCount}<br/>";
  1329. __isDouble = true;
  1330. }
  1331. if (hotelReservations.SuiteRoomPrice > 0)
  1332. {
  1333. roomFeestr1 += $"<span style='width:70px;display: inline-block;'></span>套房:{hotelReservations.SuiteRoomPrice.ToString("#0.00")} * {hotelReservations.SuiteRoomCount}<br/>";
  1334. __isSuite = true;
  1335. }
  1336. if (hotelReservations.OtherRoomPrice > 0)
  1337. {
  1338. roomFeestr1 += $"<span style='width:70px;display: inline-block;'></span>其他:{hotelReservations.OtherRoomPrice.ToString("#0.00")} * {hotelReservations.OtherRoomCount}";
  1339. __isOther = true;
  1340. }
  1341. if (roomFeestr1.Length > 0) roomFeeStr += roomFeestr1;
  1342. else roomFeeStr += " 0.00 * 0";
  1343. decimal governmentRentFee = 0.00M, cityTaxFee = 0.00M, breakfastFee = 0.00M, roomFee = 0.00M;
  1344. string governmentRentBool = "否", cityTaxBool = "否", breakfastBool = "否", roomBool = "否";
  1345. string governmentRentCode = "", governmentRentName = "", cityTaxCode = "", cityTaxName = "", breakfastCode = "", breakfastName = "", roomCode = "", roomName = "";
  1346. var _HotelReservationsContents1 = _HotelReservationsContents.Where(it => it.HrId == hotelReservations.Id).ToList();
  1347. /*
  1348. * 费用类型
  1349. * 1:房费
  1350. * 2:早餐
  1351. * 3:地税
  1352. * 4:城市税
  1353. * </summary>
  1354. */
  1355. //地税
  1356. var governmentRentData = _HotelReservationsContents1.Find(it => it.PriceType == 3);
  1357. if (governmentRentData != null)
  1358. {
  1359. governmentRentBool = governmentRentData.IsOppay == 1 ? "是" : "否";
  1360. governmentRentFee = governmentRentData.Price;
  1361. var governmentRentCurrData = currencyItems.Find(s => s.Id == governmentRentData.Currency);
  1362. if (governmentRentCurrData != null)
  1363. {
  1364. governmentRentCode = governmentRentCurrData.Name;
  1365. governmentRentName = $"({governmentRentCurrData.Remark})";
  1366. }
  1367. }
  1368. //城市税
  1369. var cityTaxData = _HotelReservationsContents1.Find(it => it.PriceType == 4);
  1370. if (cityTaxData != null)
  1371. {
  1372. cityTaxBool = cityTaxData.IsOppay == 1 ? "是" : "否";
  1373. cityTaxFee = cityTaxData.Price;
  1374. var cityTaxCurrData = currencyItems.Find(s => s.Id == cityTaxData.Currency);
  1375. if (cityTaxCurrData != null)
  1376. {
  1377. cityTaxCode = cityTaxCurrData.Name;
  1378. cityTaxName = $"({cityTaxCurrData.Remark})";
  1379. }
  1380. }
  1381. //酒店早餐
  1382. var breakfastData = _HotelReservationsContents1.Find(it => it.PriceType == 2);
  1383. if (breakfastData != null)
  1384. {
  1385. breakfastBool = breakfastData.IsOppay == 1 ? "是" : "否";
  1386. breakfastFee = breakfastData.Price;
  1387. var breakfastCurrData = currencyItems.Find(s => s.Id == breakfastData.Currency);
  1388. if (breakfastCurrData != null)
  1389. {
  1390. breakfastCode = breakfastCurrData.Name;
  1391. breakfastName = $"({breakfastCurrData.Remark})";
  1392. }
  1393. }
  1394. //房间费用
  1395. var roomData = _HotelReservationsContents1.Find(it => it.PriceType == 1);
  1396. if (roomData != null)
  1397. {
  1398. _detail.PayType = initDatas.Find(it => it.Id == roomData.PayDId)?.Name ?? "-";
  1399. if (_detail.PayType.Equals("现金")) _detail.CardType = "-";
  1400. else _detail.CardType = initDatas.Find(it => it.Id == roomData.CTDId)?.Name ?? "-";
  1401. roomBool = roomData.IsOppay == 1 ? "是" : "否";
  1402. roomFee = roomData.Price;
  1403. var roomCurrData = currencyItems.Find(s => s.Id == roomData.Currency);
  1404. if (roomCurrData != null)
  1405. {
  1406. roomCode = roomCurrData.Name;
  1407. roomName = $"({roomCurrData.Remark})";
  1408. }
  1409. }
  1410. string hotelCostTitalStr = "<span style='font-weight:800;'>成本信息</span><br/>";
  1411. string hotelCostStr = "";
  1412. decimal hotelCsotTotal = 0.00M;
  1413. if (groupCost != null)
  1414. {
  1415. if (int.TryParse(groupCost.Currency, out int currencyId)) groupCost.Currency = currencyItems.Find(s => s.Id == currencyId)?.Name ?? "-";
  1416. hotelCostStr += $"{groupCost.Currency}(汇率:{groupCost.Rate.ToString("#0.0000")})<br/>";
  1417. }
  1418. if (checkOut > checkIn) checkOut = checkOut.AddDays(-1);
  1419. var hotelCostDetails = groupCostDetails.Where(x => Convert.ToDateTime(x.Date) >= checkIn && Convert.ToDateTime(x.Date) <= checkOut).ToList();
  1420. string hotelCost_day = "";
  1421. var hotelCostDetails1 = hotelCostDetails.GroupBy(x => x.Date);
  1422. foreach (var item in hotelCostDetails1)
  1423. {
  1424. hotelCsotTotal += item.Sum(x => x.HotelSingleRoomFee) + item.Sum(x => x.HotelDoubleRoomFee) + item.Sum(x => x.HotelSuiteRoomFee) + item.Sum(x => x.HotelSuiteFee);
  1425. hotelCost_day += @$"{item.First()?.Date ?? "-"}";
  1426. if (item.Sum(x => x.HotelSingleRoomFee) != 0) hotelCost_day += @$" 单间:{item.Sum(x => x.HotelSingleRoomFee).ToString("#0.00")}";
  1427. //else { if (__isSingle) hotelCost_day += @$" 单间:0.00"; }
  1428. if (item.Sum(x => x.HotelDoubleRoomFee) != 0) hotelCost_day += @$" 双人间:{item.Sum(x => x.HotelDoubleRoomFee).ToString("#0.00")}";
  1429. //else { if (__isDouble) hotelCost_day += @$" 双人间:0.00"; }
  1430. if (item.Sum(x => x.HotelSuiteRoomFee) != 0) hotelCost_day += @$" 小套房/豪华套房:{item.Sum(x => x.HotelSuiteRoomFee).ToString("#0.00")}";
  1431. //else { if (__isSuite) hotelCost_day += @$" 小套房/豪华套房:0.00"; }
  1432. if (item.Sum(x => x.HotelSuiteFee) != 0) hotelCost_day += @$" 套房:{item.Sum(x => x.HotelSuiteFee).ToString("#0.00")}";
  1433. //else { if (__isOther) hotelCost_day += @$" 套房:0.00"; }
  1434. hotelCost_day += @$"</br>";
  1435. }
  1436. string hotelBreakfastStr = "", hotelGovernmentRentStr = "", hotelCityTaxStr = "";
  1437. if (breakfastFee > 0) hotelBreakfastStr = $"酒店早餐: {breakfastFee.ToString("#0.00")} {breakfastCode} {breakfastName} 当时汇率 {breakfastData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{breakfastBool}<br/><br/>";
  1438. if (governmentRentFee > 0) hotelGovernmentRentStr = $"地税: {governmentRentFee.ToString("#0.00")} {governmentRentCode} {governmentRentName} 当时汇率 {governmentRentData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{governmentRentBool}<br/><br/>";
  1439. if (cityTaxFee > 0) hotelCityTaxStr = $"城市税: {cityTaxFee.ToString("#0.00")} {cityTaxCode} {cityTaxName} 当时汇率 {cityTaxData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{cityTaxBool}<br/>";
  1440. string hotelCostTotalStr = "";// $"&nbsp;&nbsp;成本合计:{hotelCsotTotal.ToString("#0.00")}<br/>";
  1441. _detail.PriceMsgContent = $"{hotelCostTitalStr}{hotelCostStr}{hotelCostTotalStr}{hotelCost_day}<br/>" +
  1442. $"<span style='font-weight:800;'>{hotelReservations.HotelName} [{hotelReservations.CheckInDate} - {hotelReservations.CheckOutDate}]</span><br/>" +
  1443. $"信用卡金额:{_detail.WaitPay} ({hotelCurrncyName})<br/>" +
  1444. $"房间说明: {hotelReservations.Remark} <br/>" +
  1445. $"房间费用: {roomCode} {roomName} 当时汇率:{roomData?.Rate.ToString("#0.0000")}{roomFeeStr} 是否由地接代付:{roomBool}<br/><br/>" +
  1446. $"{hotelBreakfastStr}" +
  1447. $"{hotelGovernmentRentStr}" +
  1448. $"{hotelCityTaxStr}";
  1449. _detail.PriceNameContent = hotelReservations.HotelName;
  1450. }
  1451. break;
  1452. case 79://车/导游地接
  1453. Grp_CarTouristGuideGroundReservations touristGuideGroundReservations = _CarTouristGuideGroundReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1454. if (touristGuideGroundReservations != null)
  1455. {
  1456. if (!string.IsNullOrEmpty(touristGuideGroundReservations.BusName))
  1457. {
  1458. _detail.BusName = touristGuideGroundReservations.BusName;
  1459. }
  1460. _detail.PriceNameContent = touristGuideGroundReservations.PriceName;
  1461. //bool isInt = int.TryParse(touristGuideGroundReservations.Area, out int cityId);
  1462. //if (isInt)
  1463. //{
  1464. // var cityInfo = cityData.Find(it => it.Id == cityId);
  1465. // if (cityInfo != null)
  1466. // {
  1467. // string nameContent = $@"{cityInfo.Country}-{cityInfo.City}";
  1468. // var carFeeItem = carFeeItems.Find(it => it.Id == touristGuideGroundReservations.PriceType);
  1469. // if (carFeeItem != null)
  1470. // {
  1471. // nameContent += $@"({carFeeItem.Name})";
  1472. // }
  1473. // _detail.PriceNameContent = nameContent;
  1474. // }
  1475. //}
  1476. //else
  1477. //{
  1478. // _detail.PriceNameContent = touristGuideGroundReservations.Area;
  1479. //}
  1480. var touristGuideGroundReservationsContents =
  1481. _CarTouristGuideGroundReservationsContent.Where(s => s.CTGGRId == touristGuideGroundReservations.Id && s.IsDel == 0 && s.Price != 0).ToList();
  1482. string priceMsg = $"<span style='font-weight:800;'>{touristGuideGroundReservations.PriceName}({touristGuideGroundReservations.ServiceStartTime} - {touristGuideGroundReservations.ServiceEndTime})</span><br/>";
  1483. foreach (var item in touristGuideGroundReservationsContents)
  1484. {
  1485. string typeName = "Unknown";
  1486. string carCurrencyCode = "Unknown";
  1487. string carCurrencyName = "Unknown";
  1488. var carTypeData = carFeeTypeItems.Where(s => s.Id == item.SId && s.IsDel == 0).FirstOrDefault();
  1489. if (carTypeData != null) typeName = carTypeData.Name;
  1490. var currencyData = currencyItems.Where(s => s.Id == item.Currency && s.IsDel == 0).FirstOrDefault();
  1491. if (currencyData != null)
  1492. {
  1493. carCurrencyCode = currencyData.Name;
  1494. carCurrencyName = currencyData.Remark;
  1495. }
  1496. string opCostStr = string.Empty;
  1497. decimal opCostTypePrice = 0.00M;
  1498. #region 处理成本各项费用
  1499. var opDate = item.DatePrice?.ToString("yyyy-MM-dd");
  1500. var opCost = groupCostDetails.Where(x => x.Date.Equals(opDate)).ToList();
  1501. if (opCost.Count > 0)
  1502. {
  1503. switch (item.SId)
  1504. {
  1505. case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //91车费
  1506. //case 982: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //982 车超时费 -- 暂无
  1507. case 92: opCostTypePrice = opCost.Sum(x => x.GuideFee); break; //92 导游费
  1508. case 94: opCostTypePrice = opCost.Sum(x => x.GuideScenicFee); break; //94 导游景点费
  1509. case 95: opCostTypePrice = opCost.Sum(x => x.GuideTipFee); break; //95 导游小费
  1510. case 983: opCostTypePrice = opCost.Sum(x => x.GuideMealFee); break; //983 导游餐补
  1511. case 984: opCostTypePrice = opCost.Sum(x => x.GuideMealFee); break; //984 导游房补
  1512. case 985: opCostTypePrice = opCost.Sum(x => x.GuideRoomFee); break; //985 导游交通
  1513. //case 96: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //96 接送机费 -- 暂无
  1514. //case 97: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //97 其他费用 -- 暂无
  1515. case 979: opCostTypePrice = opCost.Sum(x => x.DriverFee); break; //979 司机工资
  1516. case 980: opCostTypePrice = opCost.Sum(x => x.DriverTipFee); break; //980 司机小费
  1517. case 981: opCostTypePrice = opCost.Sum(x => x.DriverMealFee); break; //981 司机餐补
  1518. case 988: opCostTypePrice = opCost.Sum(x => x.ClientBreakfastFee); break; //988 客户早餐费用
  1519. case 93: opCostTypePrice = opCost.Sum(x => x.ClientDinnerFee); break; //93 客户午餐费用
  1520. case 989: opCostTypePrice = opCost.Sum(x => x.ClientLunchFee); break; //989 客户晚餐费用
  1521. case 990: opCostTypePrice = opCost.Sum(x => x.ScenicTicketFee); break; //990 景点门票费
  1522. case 991: opCostTypePrice = opCost.Sum(x => x.DrinkSnackFruitFee); break; //991 饮料/零食/水果
  1523. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //992 住补费用 -- 暂无
  1524. case 994: opCostTypePrice = opCost.Sum(x => x.TranslatorFee); break; //994 翻译费
  1525. case 1059: opCostTypePrice = opCost.Sum(x => x.GuideOverTimeFee); break; //1059 导游超时费用
  1526. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1070 尾款金额
  1527. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1071 其他额外费用
  1528. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1073 翻译超时费
  1529. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1074 早餐超支费用
  1530. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1075 午餐超支费用
  1531. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1076 晚餐超支费用
  1532. }
  1533. opCostStr = $"&nbsp;&nbsp;/&nbsp;&nbsp;成本:{opCostTypePrice.ToString("#0.00")} {_groupCurrencyCode}(汇率:{_groupRate.ToString("#0.0000")})";
  1534. }
  1535. #endregion
  1536. priceMsg += $"日期:{item.DatePrice?.ToString("yyyy-MM-dd") ?? "-"}<br/>" +
  1537. $"{typeName}:{item.Price.ToString("#0.00")} {carCurrencyCode}(汇率:{entity.DayRate.ToString("#0.0000")}) {opCostStr}<br/>" +
  1538. $"明细:{item.PriceContent ?? "-"}<br/>" +
  1539. $"备注:{item.Remark ?? "-"}<br/><br/>";
  1540. }
  1541. _detail.PriceMsgContent = priceMsg;
  1542. }
  1543. break;
  1544. case 80: //签证
  1545. Grp_VisaInfo visaInfo = _VisaInfos.Where(s => s.Id == entity.CId).FirstOrDefault();
  1546. if (visaInfo != null)
  1547. {
  1548. string visaName = getClientNameStr1(clientNameList, visaInfo.VisaClient);
  1549. _detail.PriceNameContent = visaInfo.VisaDescription ;
  1550. _detail.PriceMsgContent = $"签证描述:{visaName}<br/> 备注:{visaInfo.Remark}";
  1551. }
  1552. break;
  1553. case 81: //邀请/公务活动
  1554. Grp_InvitationOfficialActivities _ioa = _InvitationOfficialActivities.Where(s => s.Id == entity.CId).FirstOrDefault();
  1555. if (_ioa != null)
  1556. {
  1557. string inviteCurrName = "Unknown", //邀请费用币种 Name
  1558. inviteCurrCode = "Unknown", //邀请费用币种 Code
  1559. sendCurrName = "Unknown", //快递费用币种 Name
  1560. sendCurrCode = "Unknown", //快递费用币种 Code
  1561. eventsCurrName = "Unknown", //公务活动费币种 Name
  1562. eventsCurrCode = "Unknown", //公务活动费币种 Code
  1563. translateCurrName = "Unknown", //公务翻译费 Name
  1564. translateCurrCode = "Unknown"; //公务翻译费 Code
  1565. #region 处理费用币种
  1566. var inviteCurrData = currencyItems.Where(s => s.Id == _ioa.InviteCurrency && s.IsDel == 0).FirstOrDefault();
  1567. if (inviteCurrData != null)
  1568. {
  1569. inviteCurrName = inviteCurrData.Remark;
  1570. inviteCurrCode = inviteCurrData.Name;
  1571. }
  1572. var sendCurrData = currencyItems.Where(s => s.Id == _ioa.SendCurrency && s.IsDel == 0).FirstOrDefault();
  1573. if (sendCurrData != null)
  1574. {
  1575. sendCurrName = sendCurrData.Remark;
  1576. sendCurrCode = sendCurrData.Name;
  1577. }
  1578. var eventsCurrData = currencyItems.Where(s => s.Id == _ioa.EventsCurrency && s.IsDel == 0).FirstOrDefault();
  1579. if (eventsCurrData != null)
  1580. {
  1581. eventsCurrName = eventsCurrData.Remark;
  1582. eventsCurrCode = eventsCurrData.Name;
  1583. }
  1584. var translateCurrData = currencyItems.Where(s => s.Id == _ioa.TranslateCurrency && s.IsDel == 0).FirstOrDefault();
  1585. if (translateCurrData != null)
  1586. {
  1587. translateCurrName = translateCurrData.Remark;
  1588. translateCurrCode = translateCurrData.Name;
  1589. }
  1590. #endregion
  1591. _detail.PriceNameContent = _ioa.InviterArea;
  1592. _detail.PriceMsgContent = $@"邀请费用:{_ioa.InviteCost.ToString("#0.00")} {inviteCurrCode}({inviteCurrName})<br/>" +
  1593. $@"快递费用:{_ioa.SendCost.ToString("#0.00")} {sendCurrCode}({sendCurrName})<br/>" +
  1594. $@"公务活动费:{_ioa.EventsCost.ToString("#0.00")} {eventsCurrCode}({eventsCurrName})<br/>" +
  1595. $@"公务翻译费:{_ioa.TranslateCost.ToString("#0.00")} {translateCurrCode}({translateCurrName})<br/>" +
  1596. $@"备注:" + _ioa.Remark + "<br/>";
  1597. }
  1598. break;
  1599. case 82: //团组客户保险
  1600. Grp_Customers customers = _Customers.Where(s => s.Id == entity.CId && s.IsDel == 0).FirstOrDefault();
  1601. if (customers != null)
  1602. {
  1603. _detail.PriceNameContent = getClientNameStr(clientNameList, customers.ClientName);
  1604. _detail.PriceMsgContent = "备注:" + customers.Remark + "<br/>";
  1605. }
  1606. break;
  1607. case 85: //机票预订
  1608. Grp_AirTicketReservations jpRes = _AirTicketReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1609. if (jpRes != null)
  1610. {
  1611. string FlightsDescription = jpRes.FlightsDescription;
  1612. string PriceDescription = jpRes.PriceDescription;
  1613. _detail.PriceMsgContent = "航班号:" + jpRes.FlightsCode + "<br/>城市A-B:" + jpRes.FlightsCity + "<br/>航班描述:" + FlightsDescription.Replace("\r\n", "<br />") + "<br/>" + "价格描述:" + PriceDescription;
  1614. _detail.PriceNameContent = "(" + jpRes.FlightsCode + ")";
  1615. }
  1616. break;
  1617. case 98://其他款项
  1618. Grp_DecreasePayments gdpRes = _DecreasePayments.Where(s => s.Id == entity.CId).FirstOrDefault();
  1619. if (gdpRes != null)
  1620. {
  1621. _detail.PriceMsgContent = "备注:" + gdpRes.Remark;
  1622. _detail.PriceNameContent = gdpRes.PriceName;
  1623. }
  1624. break;
  1625. case 285://收款退还
  1626. Fin_PaymentRefundAndOtherMoney refundAndOtherMoney = _PaymentRefundAndOtherMoneys.Where(s => s.Id == entity.CId).FirstOrDefault();
  1627. if (refundAndOtherMoney != null)
  1628. {
  1629. _detail.PriceMsgContent = "备注:" + refundAndOtherMoney.Remark;
  1630. _detail.PriceNameContent = refundAndOtherMoney.PriceName;
  1631. }
  1632. break;
  1633. case 751://酒店早餐
  1634. break;
  1635. case 1015://超支费用
  1636. Fin_GroupExtraCost groupExtraCost = _GroupExtraCosts.Where(s => s.Id == entity.CId).FirstOrDefault();
  1637. if (groupExtraCost != null)
  1638. {
  1639. _detail.PriceNameContent = groupExtraCost.PriceName;
  1640. _detail.PriceMsgContent = "备注:" + groupExtraCost.Remark;
  1641. }
  1642. break;
  1643. default:
  1644. break;
  1645. }
  1646. /*
  1647. * 申请人
  1648. */
  1649. string operatorName = " - ";
  1650. Sys_Users _opUser = userItems.Where(s => s.Id == entity.CreateUserId).FirstOrDefault();
  1651. if (_opUser != null)
  1652. {
  1653. operatorName = _opUser.CnName;
  1654. }
  1655. _detail.OperatorName = operatorName;
  1656. /*
  1657. * 审核人
  1658. */
  1659. string auditOperatorName = "Unknown";
  1660. if (entity.AuditGMOperate == 0)
  1661. auditOperatorName = " - ";
  1662. else if (entity.AuditGMOperate == 4)
  1663. auditOperatorName = "自动审核";
  1664. else
  1665. {
  1666. Sys_Users _adUser = userItems.Where(s => s.Id == entity.AuditGMOperate).FirstOrDefault();
  1667. if (_adUser != null)
  1668. {
  1669. auditOperatorName = _adUser.CnName;
  1670. }
  1671. }
  1672. _detail.AuditOperatorName = auditOperatorName;
  1673. /*
  1674. * 超预算比例
  1675. */
  1676. string overBudgetStr = "";
  1677. if (entity.ExceedBudget == -1)
  1678. overBudgetStr = sdPriceName.Name + "尚无预算";
  1679. else if (entity.ExceedBudget == 0)
  1680. {
  1681. if (entity.CTable == 76 || entity.CTable == 79)
  1682. {
  1683. if (entity.IsAuditGM == 3) overBudgetStr = "未超预算";
  1684. else overBudgetStr = "超预算";
  1685. }
  1686. else
  1687. {
  1688. overBudgetStr = "未超预算";
  1689. }
  1690. }
  1691. else
  1692. overBudgetStr = entity.ExceedBudget.ToString("P");
  1693. _detail.OverBudget = overBudgetStr;
  1694. /*
  1695. * 费用总计
  1696. */
  1697. ccpCurrencyPrices.Add(new CreditCardPaymentCurrencyPriceItem()
  1698. {
  1699. CurrencyId = entity.PaymentCurrency,
  1700. CurrencyName = PaymentCurrency_WaitPay,
  1701. AmountPayable = entity.PayMoney,
  1702. ThisPayment = CurrPayStr,
  1703. BalancePayment = BalanceStr,
  1704. AuditedFunds = CurrPayStr
  1705. });
  1706. _detail.IsAuditGM = entity.IsAuditGM;
  1707. detailList.Add(_detail);
  1708. }
  1709. #endregion
  1710. _view.DetailList = new List<Grp_CreditCardPaymentDetailView>(detailList);
  1711. /*
  1712. * 下方描述处理
  1713. */
  1714. List<CreditCardPaymentCurrencyPriceItem> nonDuplicat = ccpCurrencyPrices.Where((x, i) => ccpCurrencyPrices.FindIndex(z => z.CurrencyId == x.CurrencyId) == i).ToList();//Lambda表达式去重
  1715. CreditCardPaymentCurrencyPriceItem ccpCurrencyPrice = nonDuplicat.Where(it => it.CurrencyId == 836).FirstOrDefault();
  1716. if (ccpCurrencyPrice != null)
  1717. {
  1718. int CNYIndex = nonDuplicat.IndexOf(ccpCurrencyPrice);
  1719. nonDuplicat.MoveItemAtIndexToFront(CNYIndex);
  1720. }
  1721. else
  1722. {
  1723. nonDuplicat.OrderBy(it => it.CurrencyId).ToList();
  1724. }
  1725. string amountPayableStr = string.Format(@"应付款总金额: ");
  1726. string thisPaymentStr = string.Format(@"此次付款总金额: ");
  1727. string balancePaymentStr = string.Format(@"目前剩余尾款总金额: ");
  1728. string auditedFundsStr = string.Format(@"已审费用总额: ");
  1729. foreach (var item in nonDuplicat)
  1730. {
  1731. var strs = ccpCurrencyPrices.Where(it => it.CurrencyId == item.CurrencyId).ToList();
  1732. if (strs.Count > 0)
  1733. {
  1734. decimal amountPayable = strs.Sum(it => it.AmountPayable);
  1735. decimal balancePayment = strs.Sum(it => it.BalancePayment);
  1736. amountPayableStr += string.Format(@"{0}{1}&nbsp;|", amountPayable.ToString("#0.00"), item.CurrencyName);
  1737. //单独处理此次付款金额
  1738. if (item.CurrencyId == 836) //人民币
  1739. {
  1740. decimal thisPayment = ccpCurrencyPrices.Sum(it => it.ThisPayment);
  1741. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", thisPayment.ToString("#0.00"), item.CurrencyName);
  1742. }
  1743. else
  1744. {
  1745. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1746. }
  1747. balancePaymentStr += string.Format(@"{0}{1}&nbsp;|", balancePayment.ToString("#0.00"), item.CurrencyName);
  1748. //单独处理已审核费用
  1749. if (item.CurrencyId == 836) //人民币
  1750. {
  1751. decimal auditedFunds = ccpCurrencyPrices.Sum(it => it.AuditedFunds);
  1752. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", auditedFunds.ToString("#0.00"), item.CurrencyName);
  1753. }
  1754. else
  1755. {
  1756. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1757. }
  1758. }
  1759. }
  1760. _view.TotalStr1 = amountPayableStr.Substring(0, amountPayableStr.Length - 1);
  1761. _view.TotalStr2 = thisPaymentStr.Substring(0, thisPaymentStr.Length - 1);
  1762. _view.TotalStr3 = balancePaymentStr.Substring(0, balancePaymentStr.Length - 1);
  1763. _view.TotalStr4 = auditedFundsStr.Substring(0, auditedFundsStr.Length - 1);
  1764. var _view1 = new
  1765. {
  1766. PageFuncAuth = pageFunAuthView,
  1767. Data = _view
  1768. };
  1769. return Ok(JsonView(_view1));
  1770. }
  1771. catch (Exception ex)
  1772. {
  1773. return Ok(JsonView(false, ex.Message));
  1774. }
  1775. }
  1776. /// <summary>
  1777. /// 费用审核
  1778. /// 修改团组费用审核状态
  1779. /// </summary>
  1780. /// <param name="_dto">参数Json字符串</param>
  1781. /// <returns></returns>
  1782. [HttpPost]
  1783. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1784. public async Task<IActionResult> PostAuditGrpCreditCardPayment(Edit_GrpCreditCardPaymentDto _dto)
  1785. {
  1786. #region 参数验证
  1787. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1788. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1789. #endregion
  1790. #region 页面操作权限验证
  1791. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1792. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1793. if (pageFunAuthView.AuditAuth == 0) return Ok(JsonView(false, "您没有审核权限"));
  1794. #endregion
  1795. List<string> idList = _dto.CreditIdStr.Split(',').ToList();
  1796. Grp_CreditCardPayment _detail = _mapper.Map<Grp_CreditCardPayment>(_dto);
  1797. DateTime dtNow = DateTime.Now;
  1798. _groupRepository.BeginTran();
  1799. int rst = 0;
  1800. var creditDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && idList.Contains(it.Id.ToString())).ToList();
  1801. var creditTypeDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 16).ToList();
  1802. var creditCurrencyDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  1803. var groupDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).ToList();
  1804. List<dynamic> msgDatas = new List<dynamic>();
  1805. Dictionary<int, int> dic_ccp_user = new Dictionary<int, int>() { };
  1806. foreach (var item in idList)
  1807. {
  1808. int CreditId = int.Parse(item);
  1809. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_CreditCardPayment>()
  1810. .SetColumns(it => it.IsAuditGM == _dto.AuditCode)
  1811. .SetColumns(it => it.AuditGMOperate == _dto.UserId)
  1812. .SetColumns(it => it.AuditGMDate == dtNow.ToString("yyyy-MM-dd HH:mm:ss"))
  1813. .Where(s => s.Id == CreditId)
  1814. .ExecuteCommandAsync();
  1815. if (result < 1)
  1816. {
  1817. rst = -1;
  1818. _groupRepository.RollbackTran();
  1819. return Ok(JsonView(false, "操作失败并回滚!"));
  1820. }
  1821. var creditData = creditDatas.Where(it => it.Id == CreditId).FirstOrDefault();
  1822. if (creditData != null)
  1823. {
  1824. #region 应用通知配置
  1825. try
  1826. {
  1827. dic_ccp_user.Add(creditData.Id, creditData.CreateUserId);
  1828. }
  1829. catch (Exception ex)
  1830. {
  1831. }
  1832. #endregion
  1833. string auditStr = _dto.AuditCode == 1 ? "已通过" : _dto.AuditCode == 2 ? "未通过" : "未审核";
  1834. string groupNameStr = string.Empty;
  1835. var groupData = groupDatas.Where(it => it.Id == creditData.DIId).FirstOrDefault();
  1836. if (groupData != null) groupNameStr = groupData.TeamName;
  1837. string creditTypeStr = string.Empty;
  1838. var creditTypeData = creditTypeDatas.Where(it => it.Id == creditData.CTable).FirstOrDefault();
  1839. if (creditTypeData != null) creditTypeStr = creditTypeData.Name;
  1840. string creditCurrency = string.Empty;
  1841. var creditCurrencyData = creditCurrencyDatas.Where(it => it.Id == creditData.PaymentCurrency).FirstOrDefault();
  1842. if (creditCurrencyData != null) creditCurrency = creditCurrencyData.Name;
  1843. if (creditCurrency.Equals("CNY"))
  1844. {
  1845. creditData.DayRate = 1.0000M;
  1846. }
  1847. if (creditData.PayPercentage == 0.00M)
  1848. {
  1849. creditData.PayPercentage = 100M;
  1850. }
  1851. decimal CNYPrice = (creditData.PayMoney * (creditData.PayPercentage / 100)) * creditData.DayRate;
  1852. string msgTitle = $"[{groupNameStr}({creditTypeStr})]的费用申请";
  1853. string msgContent = "";
  1854. if (creditCurrency.Equals("CNY"))
  1855. {
  1856. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY) {auditStr}!";
  1857. }
  1858. else
  1859. {
  1860. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY({creditData.PayMoney.ToString("0.00")} {creditCurrency})) {auditStr}!";
  1861. }
  1862. msgDatas.Add(new { DiId = creditData.DIId, UserId = creditData.CreateUserId, MsgTitle = msgTitle, MsgContent = msgContent });
  1863. }
  1864. }
  1865. if (rst == 0)
  1866. {
  1867. _groupRepository.CommitTran();
  1868. foreach (var item in msgDatas)
  1869. {
  1870. //发送消息
  1871. GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupExpenseAudit, item.MsgTitle, item.MsgContent, new List<int>() { item.UserId }, item.DiId);
  1872. }
  1873. #region 应用推送
  1874. try
  1875. {
  1876. foreach (var ccpId in dic_ccp_user.Keys)
  1877. {
  1878. List<string> templist = new List<string>() { dic_ccp_user[ccpId].ToString() };
  1879. await AppNoticeLibrary.SendUserMsg_GroupStatus_AuditFee(ccpId, templist, QiyeWeChatEnum.CaiWuChat);
  1880. }
  1881. }
  1882. catch (Exception)
  1883. {
  1884. }
  1885. #endregion
  1886. return Ok(JsonView(true, "操作成功!"));
  1887. }
  1888. return Ok(JsonView(false, "操作失败!"));
  1889. }
  1890. #endregion
  1891. #region 机票费用录入
  1892. /// <summary>
  1893. /// 机票录入当前登录人可操作团组
  1894. /// </summary>
  1895. /// <param name="dto"></param>
  1896. /// <returns></returns>
  1897. [HttpPost]
  1898. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1899. public async Task<IActionResult> AirTicketResSelect(AirTicketResDto dto)
  1900. {
  1901. try
  1902. {
  1903. Result groupData = await _airTicketResRep.AirTicketResSelect(dto);
  1904. if (groupData.Code != 0)
  1905. {
  1906. return Ok(JsonView(false, groupData.Msg));
  1907. }
  1908. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1909. }
  1910. catch (Exception ex)
  1911. {
  1912. return Ok(JsonView(false, "程序错误!"));
  1913. throw;
  1914. }
  1915. }
  1916. /// <summary>
  1917. /// 机票费用录入列表
  1918. /// </summary>
  1919. /// <param name="dto"></param>
  1920. /// <returns></returns>
  1921. [HttpPost]
  1922. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1923. public async Task<IActionResult> AirTicketResList(AirTicketResDto dto)
  1924. {
  1925. try
  1926. {
  1927. Result groupData = await _airTicketResRep.AirTicketResList(dto);
  1928. if (groupData.Code != 0)
  1929. {
  1930. return Ok(JsonView(false, groupData.Msg));
  1931. }
  1932. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1933. }
  1934. catch (Exception ex)
  1935. {
  1936. return Ok(JsonView(false, ex.Message));
  1937. throw;
  1938. }
  1939. }
  1940. /// <summary>
  1941. /// 根据id查询费用录入信息
  1942. /// </summary>
  1943. /// <param name="dto"></param>
  1944. /// <returns></returns>
  1945. [HttpPost]
  1946. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1947. public async Task<IActionResult> AirTicketResById(AirTicketResByIdDto dto)
  1948. {
  1949. try
  1950. {
  1951. Result groupData = await _airTicketResRep.AirTicketResById(dto);
  1952. if (groupData.Code != 0)
  1953. {
  1954. return Ok(JsonView(false, groupData.Msg));
  1955. }
  1956. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1957. }
  1958. catch (Exception ex)
  1959. {
  1960. return Ok(JsonView(false, "程序错误!"));
  1961. throw;
  1962. }
  1963. }
  1964. /// <summary>
  1965. /// 机票费用录入操作(Status:1.新增,2.修改)
  1966. /// </summary>
  1967. /// <param name="dto"></param>
  1968. /// <returns></returns>
  1969. [HttpPost]
  1970. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1971. public async Task<IActionResult> OpAirTicketRes(AirTicketResOpDto dto)
  1972. {
  1973. try
  1974. {
  1975. Result groupData = await _airTicketResRep.OpAirTicketRes(dto, _setDataRep.PostCurrencyByDiid);
  1976. if (groupData.Code != 0)
  1977. {
  1978. return Ok(JsonView(false, groupData.Msg));
  1979. }
  1980. #region 应用推送
  1981. try
  1982. {
  1983. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  1984. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  1985. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  1986. }
  1987. catch (Exception ex)
  1988. {
  1989. }
  1990. #endregion
  1991. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1992. }
  1993. catch (Exception ex)
  1994. {
  1995. return Ok(JsonView(false, "程序错误!"));
  1996. throw;
  1997. }
  1998. }
  1999. /// <summary>
  2000. /// 根据舱位类型查询接团客户名单信息
  2001. /// </summary>
  2002. /// <param name="dto"></param>
  2003. /// <returns></returns>
  2004. [HttpPost]
  2005. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2006. public async Task<IActionResult> tankType(AirTicketResByIdDto dto)
  2007. {
  2008. try
  2009. {
  2010. List<Crm_GroupCustomer> crm_Groups = _sqlSugar.Queryable<Crm_GroupCustomer>().Where(a => a.IsDel == 0 && a.AirType == dto.Id).ToList();
  2011. if (crm_Groups.Count != 0)
  2012. {
  2013. List<dynamic> Customer = new List<dynamic>();
  2014. foreach (var item in crm_Groups)
  2015. {
  2016. var data = new
  2017. {
  2018. Id = item.Id,
  2019. Pinyin = item.Pinyin,
  2020. Name = item.LastName + item.FirstName
  2021. };
  2022. Customer.Add(data);
  2023. }
  2024. return Ok(JsonView(true, "查询成功!", Customer));
  2025. }
  2026. return Ok(JsonView(true, "暂无数据", crm_Groups));
  2027. }
  2028. catch (Exception ex)
  2029. {
  2030. return Ok(JsonView(false, "程序错误!"));
  2031. throw;
  2032. }
  2033. }
  2034. /// <summary>
  2035. /// 根据团号获取客户信息
  2036. /// </summary>
  2037. /// <param name="dto"></param>
  2038. /// <returns></returns>
  2039. [HttpPost]
  2040. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2041. public IActionResult QueryClientInfoByDIID(QueryClientInfoByDIIDDto dto)
  2042. {
  2043. var jw = JsonView(false);
  2044. if (dto.DIID < 1)
  2045. {
  2046. jw.Msg += "请输入正确的diid";
  2047. return Ok(jw);
  2048. }
  2049. var arr = getSimplClientList(dto.DIID);
  2050. jw = JsonView(true, "获取成功!", arr);
  2051. return Ok(jw);
  2052. }
  2053. private List<SimplClientInfo> getSimplClientList(int diId)
  2054. {
  2055. 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);
  2056. List<SimplClientInfo> arr = _sqlSugar.SqlQueryable<SimplClientInfo>(sql).ToList();
  2057. return arr;
  2058. }
  2059. private string getClientNameStr(List<SimplClientInfo> list, string origin)
  2060. {
  2061. string result = origin;
  2062. if (Regex.Match(origin, @"\d+,?").Value.Length > 0)
  2063. {
  2064. string[] temparr = origin.Split(',');
  2065. string fistrStr = temparr[0];
  2066. int count = temparr.Count();
  2067. int tempId;
  2068. bool success = int.TryParse(fistrStr, out tempId);
  2069. if (success)
  2070. {
  2071. SimplClientInfo tempInfo = list.FirstOrDefault(s => s.Id == tempId);
  2072. if (tempInfo != null)
  2073. {
  2074. if (count > 1)
  2075. {
  2076. result = string.Format(@"{0}{1}等{2}人", tempInfo.LastName, tempInfo.FirstName, count);
  2077. }
  2078. else
  2079. {
  2080. result = string.Format(@"{0}{1}", tempInfo.LastName, tempInfo.FirstName);
  2081. }
  2082. }
  2083. }
  2084. }
  2085. return result;
  2086. }
  2087. private string getClientNameStr1(List<SimplClientInfo> list, string origin)
  2088. {
  2089. string result = origin;
  2090. if (Regex.Match(origin, @"\d+,?").Value.Length > 0)
  2091. {
  2092. string[] temparr = origin.Split(',');
  2093. result = "";
  2094. foreach (var item in temparr)
  2095. {
  2096. int tempId;
  2097. bool success = int.TryParse(item, out tempId);
  2098. if (success)
  2099. {
  2100. SimplClientInfo tempInfo = list.FirstOrDefault(s => s.Id == tempId);
  2101. if (tempInfo != null)
  2102. {
  2103. result += string.Format(@"{0}{1}、", tempInfo.LastName, tempInfo.FirstName);
  2104. }
  2105. }
  2106. }
  2107. }
  2108. if (result.Length > 0) result = result.Substring(0, result.Length - 1);
  2109. return result;
  2110. }
  2111. /// <summary>
  2112. /// 机票费用录入,删除
  2113. /// </summary>
  2114. /// <param name="dto"></param>
  2115. /// <returns></returns>
  2116. [HttpPost]
  2117. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2118. public async Task<IActionResult> DelAirTicketRes(DelBaseDto dto)
  2119. {
  2120. try
  2121. {
  2122. var res = await _airTicketResRep.SoftDeleteByIdAsync<Grp_AirTicketReservations>(dto.Id.ToString(), dto.DeleteUserId);
  2123. if (res)
  2124. {
  2125. var result = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.CTable == 85).SetColumns(a => new Grp_CreditCardPayment()
  2126. {
  2127. IsDel = 1,
  2128. DeleteUserId = dto.DeleteUserId,
  2129. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  2130. }).ExecuteCommandAsync();
  2131. return Ok(JsonView(true, "删除成功!"));
  2132. }
  2133. return Ok(JsonView(false, "删除失败!"));
  2134. }
  2135. catch (Exception ex)
  2136. {
  2137. return Ok(JsonView(false, "程序错误!"));
  2138. throw;
  2139. }
  2140. }
  2141. /// <summary>
  2142. /// 导出机票录入报表
  2143. /// </summary>
  2144. /// <param name="dto"></param>
  2145. /// <returns></returns>
  2146. [HttpPost]
  2147. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2148. public async Task<IActionResult> DeriveAirTicketRes(AirTicketResDto dto)
  2149. {
  2150. try
  2151. {
  2152. Result groupData = await _airTicketResRep.DeriveAirTicketRes(dto);
  2153. if (groupData.Code != 0)
  2154. {
  2155. return Ok(JsonView(StatusCodes.Status400BadRequest, groupData.Msg, ""));
  2156. }
  2157. else
  2158. {
  2159. List<AirTicketReservationsPayView> AirTicketReservations = groupData.Data.GetType().GetProperty("AirTicketRes").GetValue(groupData.Data);
  2160. if (AirTicketReservations.Count != 0)
  2161. {
  2162. Grp_DelegationInfo DelegationInfo = groupData.Data.GetType().GetProperty("Delegation").GetValue(groupData.Data);
  2163. Sys_Users _Users = groupData.Data.GetType().GetProperty("Users").GetValue(groupData.Data);
  2164. string diCode = DelegationInfo != null ? DelegationInfo.TourCode : "XXX";
  2165. string diName = DelegationInfo != null ? DelegationInfo.TeamName : "XXX";
  2166. WorkbookDesigner designer = new WorkbookDesigner();
  2167. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/机票预订费用报表模板.xlsx");
  2168. decimal countCost = 0;
  2169. foreach (var item in AirTicketReservations)
  2170. {
  2171. #region 处理客人姓名
  2172. string clientNames = _tourClientListRep._ResolveCustomerName(item.ClientName);
  2173. item.ClientName = clientNames;
  2174. #endregion
  2175. if (item.BankType == "其他")
  2176. {
  2177. item.BankNo = "--";
  2178. }
  2179. else
  2180. {
  2181. if (!string.IsNullOrEmpty(item.BankType))
  2182. {
  2183. item.BankNo = item.BankType + ":" + item.BankNo?.Substring(0, 3);
  2184. }
  2185. }
  2186. item.PrePrice = System.Decimal.Round(item.PrePrice, 2);
  2187. item.Price = System.Decimal.Round(item.Price, 2);
  2188. countCost += Convert.ToDecimal(item.Price);
  2189. }
  2190. designer.SetDataSource("Export", AirTicketReservations);
  2191. designer.SetDataSource("ExportDiCode", diCode);
  2192. designer.SetDataSource("ExportDiName", diName);
  2193. designer.SetDataSource("ExportOpUserName", _Users.CnName);
  2194. designer.SetDataSource("ExportCountCost", countCost + "(" + AirTicketReservations[0].CurrencyStr);
  2195. designer.Process();
  2196. string fileName = ("AirfareStatement/" + diName + "机票费用报表" + "_" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xlsx").Replace(":", "");
  2197. designer.Workbook.Save(AppSettingsHelper.Get("ExcelBasePath") + fileName);
  2198. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  2199. return Ok(JsonView(true, "成功", url = rst));
  2200. }
  2201. else
  2202. {
  2203. return Ok(JsonView(StatusCodes.Status400BadRequest, "暂无数据!", ""));
  2204. }
  2205. }
  2206. }
  2207. catch (Exception ex)
  2208. {
  2209. return Ok(JsonView(StatusCodes.Status400BadRequest, ex.Message, ""));
  2210. throw;
  2211. }
  2212. }
  2213. Dictionary<string, string> transDic = new Dictionary<string, string>();
  2214. /// <summary>
  2215. /// 行程单导出
  2216. /// </summary>
  2217. /// <param name="dto"></param>
  2218. /// <returns></returns>
  2219. [HttpPost]
  2220. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2221. public async Task<IActionResult> ItineraryAirTicketRes(ItineraryAirTicketResDto dto)
  2222. {
  2223. try
  2224. {
  2225. Result groupData = await _airTicketResRep.ItineraryAirTicketRes(dto);
  2226. if (groupData.Code != 0)
  2227. {
  2228. return Ok(JsonView(StatusCodes.Status400BadRequest, groupData.Msg, ""));
  2229. }
  2230. else
  2231. {
  2232. List<AirTicketReservationsView> _AirTicketReservations = groupData.Data;
  2233. if (dto.Language == "CN")
  2234. {
  2235. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_CN.docx");
  2236. DocumentBuilder builder = new DocumentBuilder(doc);
  2237. int tableIndex = 0;//表格索引
  2238. //得到文档中的第一个表格
  2239. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2240. foreach (var item in _AirTicketReservations)
  2241. {
  2242. #region 处理固定数据
  2243. string[] FlightsCode = item.FlightsCode.Split('/');
  2244. if (FlightsCode.Length != 0)
  2245. {
  2246. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2247. if (_AirCompany != null)
  2248. {
  2249. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2250. }
  2251. else
  2252. {
  2253. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2254. }
  2255. }
  2256. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2257. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2258. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2259. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2260. string name = "";
  2261. foreach (string clientName in nameArray)
  2262. {
  2263. if (!name.Contains(clientName))
  2264. {
  2265. name += clientName + ",";
  2266. }
  2267. }
  2268. if (!string.IsNullOrWhiteSpace(name))
  2269. {
  2270. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2271. }
  2272. else
  2273. {
  2274. table.Range.Bookmarks["ClientName"].Text = "--";
  2275. }
  2276. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2277. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2278. table.Range.Bookmarks["JointTicket"].Text = "--";
  2279. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2280. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2281. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2282. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2283. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2284. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2285. #endregion
  2286. #region 循环数据处理
  2287. List<AirInfo> airs = new List<AirInfo>();
  2288. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2289. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2290. for (int i = 0; i < FlightsCode.Length; i++)
  2291. {
  2292. AirInfo air = new AirInfo();
  2293. string[] tempstr = DayArray[i]
  2294. .Replace("\r\n", string.Empty)
  2295. .Replace("\\r\\n", string.Empty)
  2296. .TrimStart().TrimEnd()
  2297. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2298. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2299. string starCity = "";
  2300. if (star_Three != null)
  2301. {
  2302. starCity = star_Three.AirPort;
  2303. }
  2304. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2305. string EndCity = "";
  2306. if (End_Three != null)
  2307. {
  2308. EndCity = End_Three.AirPort;
  2309. }
  2310. air.Destination = starCity + "/" + EndCity;
  2311. air.Flight = FlightsCode[i];
  2312. air.SeatingClass = item.CTypeName;
  2313. string dateTime = tempstr[2];
  2314. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2315. air.FlightDate = DateTemp;
  2316. air.DepartureTime = tempstr[5];
  2317. air.LandingTime = tempstr[6];
  2318. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2319. air.TicketStatus = "--";
  2320. air.Luggage = "--";
  2321. air.DepartureTerminal = "--";
  2322. air.LandingTerminal = "--";
  2323. airs.Add(air);
  2324. }
  2325. int row = 13;
  2326. for (int i = 0; i < airs.Count; i++)
  2327. {
  2328. if (airs.Count > 2)
  2329. {
  2330. for (int j = 0; j < airs.Count - 2; j++)
  2331. {
  2332. var CopyRow = table.Rows[12].Clone(true);
  2333. table.Rows.Add(CopyRow);
  2334. }
  2335. }
  2336. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2337. int index = 0;
  2338. foreach (PropertyInfo property in properties)
  2339. {
  2340. string value = property.GetValue(airs[i]).ToString();
  2341. Cell ishcel0 = table.Rows[row].Cells[index];
  2342. Paragraph p = new Paragraph(doc);
  2343. string s = value;
  2344. p.AppendChild(new Run(doc, s));
  2345. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2346. ishcel0.AppendChild(p);
  2347. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2348. index++;
  2349. }
  2350. row++;
  2351. }
  2352. #endregion
  2353. Paragraph lastParagraph = new Paragraph(doc);
  2354. //第一个表格末尾加段落
  2355. table.ParentNode.InsertAfter(lastParagraph, table);
  2356. //复制第一个表格
  2357. Table cloneTable = (Table)table.Clone(true);
  2358. //在文档末尾段落后面加入复制的表格
  2359. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2360. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2361. {
  2362. int rownewsIndex = 13;
  2363. for (int i = 0; i < 2; i++)
  2364. {
  2365. var CopyRow = table.Rows[12].Clone(true);
  2366. table.Rows.RemoveAt(13);
  2367. table.Rows.Add(CopyRow);
  2368. rownewsIndex++;
  2369. }
  2370. }
  2371. else
  2372. {
  2373. table.Rows.RemoveAt(12);
  2374. }
  2375. cloneTable.Rows.RemoveAt(12);
  2376. }
  2377. if (_AirTicketReservations.Count != 0)
  2378. {
  2379. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2380. if (FlightsCode.Length != 0)
  2381. {
  2382. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2383. if (_AirCompany != null)
  2384. {
  2385. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2386. }
  2387. else
  2388. {
  2389. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2390. }
  2391. }
  2392. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2393. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2394. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2395. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2396. string name = "";
  2397. foreach (string clientName in nameArray)
  2398. {
  2399. if (!name.Contains(clientName))
  2400. {
  2401. name += clientName + ",";
  2402. }
  2403. }
  2404. if (!string.IsNullOrWhiteSpace(name))
  2405. {
  2406. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2407. }
  2408. else
  2409. {
  2410. table.Range.Bookmarks["ClientName"].Text = "--";
  2411. }
  2412. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2413. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2414. table.Range.Bookmarks["JointTicket"].Text = "--";
  2415. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2416. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2417. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2418. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2419. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2420. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2421. }
  2422. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2423. //保存合并后的文档
  2424. string fileName = "AirItinerary/电子客票中文行程单_CN.docx";
  2425. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2426. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2427. return Ok(JsonView(true, "成功!", rst));
  2428. }
  2429. else
  2430. {
  2431. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_EN.docx");
  2432. DocumentBuilder builder = new DocumentBuilder(doc);
  2433. int tableIndex = 0;//表格索引
  2434. //得到文档中的第一个表格
  2435. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2436. List<string> texts = new List<string>();
  2437. foreach (var item in _AirTicketReservations)
  2438. {
  2439. string[] FlightsCode = item.FlightsCode.Split('/');
  2440. if (FlightsCode.Length != 0)
  2441. {
  2442. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2443. if (_AirCompany != null)
  2444. {
  2445. if (!transDic.ContainsKey(_AirCompany.CnName))
  2446. {
  2447. transDic.Add(_AirCompany.CnName, _AirCompany.EnName);
  2448. }
  2449. }
  2450. else
  2451. {
  2452. if (!transDic.ContainsKey("--"))
  2453. {
  2454. transDic.Add("--", "--");
  2455. }
  2456. }
  2457. }
  2458. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2459. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2460. string name = "";
  2461. foreach (string clientName in nameArray)
  2462. {
  2463. name += clientName + ",";
  2464. }
  2465. if (!texts.Contains(name))
  2466. {
  2467. texts.Add(name);
  2468. }
  2469. List<AirInfo> airs = new List<AirInfo>();
  2470. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2471. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2472. for (int i = 0; i < FlightsCode.Length; i++)
  2473. {
  2474. AirInfo air = new AirInfo();
  2475. string[] tempstr = DayArray[i]
  2476. .Replace("\r\n", string.Empty)
  2477. .Replace("\\r\\n", string.Empty)
  2478. .TrimStart().TrimEnd()
  2479. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2480. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2481. if (star_Three != null)
  2482. {
  2483. if (!transDic.ContainsKey(star_Three.AirPort))
  2484. {
  2485. transDic.Add(star_Three.AirPort, star_Three.AirPort_En);
  2486. }
  2487. }
  2488. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2489. if (End_Three != null)
  2490. {
  2491. if (!transDic.ContainsKey(End_Three.AirPort))
  2492. {
  2493. transDic.Add(End_Three.AirPort, End_Three.AirPort_En);
  2494. }
  2495. }
  2496. if (!texts.Contains(item.CTypeName))
  2497. {
  2498. texts.Add(item.CTypeName);
  2499. }
  2500. }
  2501. }
  2502. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  2503. if (transData.Count > 0)
  2504. {
  2505. foreach (TranslateResult item in transData)
  2506. {
  2507. if (!transDic.ContainsKey(item.Query))
  2508. {
  2509. transDic.Add(item.Query, item.Translation);
  2510. }
  2511. }
  2512. }
  2513. foreach (var item in _AirTicketReservations)
  2514. {
  2515. #region 处理固定数据
  2516. string[] FlightsCode = item.FlightsCode.Split('/');
  2517. if (FlightsCode.Length != 0)
  2518. {
  2519. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2520. if (_AirCompany != null)
  2521. {
  2522. string str = "--";
  2523. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2524. if (!string.IsNullOrEmpty(translateResult))
  2525. {
  2526. str = translateResult;
  2527. str = _airTicketResRep.Processing(str);
  2528. }
  2529. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2530. }
  2531. else
  2532. {
  2533. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2534. }
  2535. }
  2536. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2537. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2538. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2539. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2540. string names = "";
  2541. foreach (string clientName in nameArray)
  2542. {
  2543. names += clientName + ",";
  2544. }
  2545. if (!string.IsNullOrWhiteSpace(names))
  2546. {
  2547. string str = "--";
  2548. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2549. if (!string.IsNullOrEmpty(translateResult))
  2550. {
  2551. str = translateResult;
  2552. str = _airTicketResRep.Processing(str);
  2553. }
  2554. table.Range.Bookmarks["ClientName"].Text = str;
  2555. }
  2556. else
  2557. {
  2558. table.Range.Bookmarks["ClientName"].Text = "--";
  2559. }
  2560. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2561. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2562. table.Range.Bookmarks["JointTicket"].Text = "--";
  2563. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2564. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2565. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2566. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2567. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2568. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2569. #endregion
  2570. #region 循环数据处理
  2571. List<AirInfo> airs = new List<AirInfo>();
  2572. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2573. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2574. for (int i = 0; i < FlightsCode.Length; i++)
  2575. {
  2576. AirInfo air = new AirInfo();
  2577. string[] tempstr = DayArray[i]
  2578. .Replace("\r\n", string.Empty)
  2579. .Replace("\\r\\n", string.Empty)
  2580. .TrimStart().TrimEnd()
  2581. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2582. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2583. string starCity = "";
  2584. if (star_Three != null)
  2585. {
  2586. string str2 = "--";
  2587. string translateResult2 = transDic.Where(s => s.Key == star_Three.AirPort).FirstOrDefault().Value;
  2588. if (!string.IsNullOrEmpty(translateResult2))
  2589. {
  2590. str2 = translateResult2;
  2591. str2 = _airTicketResRep.Processing(str2);
  2592. }
  2593. starCity = str2;
  2594. }
  2595. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2596. string EndCity = "";
  2597. if (End_Three != null)
  2598. {
  2599. string str1 = "--";
  2600. string translateResult1 = transDic.Where(s => s.Key == End_Three.AirPort).FirstOrDefault().Value;
  2601. if (!string.IsNullOrEmpty(translateResult1))
  2602. {
  2603. str1 = translateResult1;
  2604. str1 = _airTicketResRep.Processing(str1);
  2605. }
  2606. EndCity = str1;
  2607. }
  2608. air.Destination = starCity + "/" + EndCity;
  2609. air.Flight = FlightsCode[i];
  2610. string str = "--";
  2611. string translateResult = transDic.Where(s => s.Key == item.CTypeName).FirstOrDefault().Value;
  2612. if (!string.IsNullOrEmpty(translateResult))
  2613. {
  2614. str = translateResult;
  2615. str = _airTicketResRep.Processing(str);
  2616. }
  2617. air.SeatingClass = str;
  2618. string dateTime = tempstr[2];
  2619. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2620. air.FlightDate = DateTemp;
  2621. air.DepartureTime = tempstr[5];
  2622. air.LandingTime = tempstr[6];
  2623. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2624. air.TicketStatus = "--";
  2625. air.Luggage = "--";
  2626. air.DepartureTerminal = "--";
  2627. air.LandingTerminal = "--";
  2628. airs.Add(air);
  2629. }
  2630. int row = 13;
  2631. for (int i = 0; i < airs.Count; i++)
  2632. {
  2633. if (airs.Count > 2)
  2634. {
  2635. for (int j = 0; j < airs.Count - 2; j++)
  2636. {
  2637. var CopyRow = table.Rows[12].Clone(true);
  2638. table.Rows.Add(CopyRow);
  2639. }
  2640. }
  2641. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2642. int index = 0;
  2643. foreach (PropertyInfo property in properties)
  2644. {
  2645. string value = property.GetValue(airs[i]).ToString();
  2646. Cell ishcel0 = table.Rows[row].Cells[index];
  2647. Paragraph p = new Paragraph(doc);
  2648. string s = value;
  2649. p.AppendChild(new Run(doc, s));
  2650. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2651. ishcel0.AppendChild(p);
  2652. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2653. //ishcel0.CellFormat.VerticalAlignment=
  2654. index++;
  2655. }
  2656. row++;
  2657. }
  2658. #endregion
  2659. Paragraph lastParagraph = new Paragraph(doc);
  2660. //第一个表格末尾加段落
  2661. table.ParentNode.InsertAfter(lastParagraph, table);
  2662. //复制第一个表格
  2663. Table cloneTable = (Table)table.Clone(true);
  2664. //在文档末尾段落后面加入复制的表格
  2665. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2666. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2667. {
  2668. int rownewsIndex = 13;
  2669. for (int i = 0; i < 2; i++)
  2670. {
  2671. var CopyRow = table.Rows[12].Clone(true);
  2672. table.Rows.RemoveAt(13);
  2673. table.Rows.Add(CopyRow);
  2674. rownewsIndex++;
  2675. }
  2676. }
  2677. else
  2678. {
  2679. table.Rows.RemoveAt(12);
  2680. }
  2681. cloneTable.Rows.RemoveAt(12);
  2682. }
  2683. if (_AirTicketReservations.Count != 0)
  2684. {
  2685. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2686. if (FlightsCode.Length != 0)
  2687. {
  2688. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2689. if (_AirCompany != null)
  2690. {
  2691. string str = "--";
  2692. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2693. if (!string.IsNullOrEmpty(translateResult))
  2694. {
  2695. str = translateResult;
  2696. str = _airTicketResRep.Processing(str);
  2697. }
  2698. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2699. }
  2700. else
  2701. {
  2702. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2703. }
  2704. }
  2705. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2706. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2707. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2708. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2709. string names = "";
  2710. foreach (string clientName in nameArray)
  2711. {
  2712. names += clientName + ",";
  2713. }
  2714. if (!string.IsNullOrWhiteSpace(names))
  2715. {
  2716. string str = "--";
  2717. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2718. if (!string.IsNullOrEmpty(translateResult))
  2719. {
  2720. str = translateResult;
  2721. str = _airTicketResRep.Processing(str);
  2722. }
  2723. table.Range.Bookmarks["ClientName"].Text = str;
  2724. }
  2725. else
  2726. {
  2727. table.Range.Bookmarks["ClientName"].Text = "--";
  2728. }
  2729. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2730. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2731. table.Range.Bookmarks["JointTicket"].Text = "--";
  2732. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2733. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2734. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2735. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2736. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2737. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2738. }
  2739. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2740. //保存合并后的文档
  2741. string fileName = "AirItinerary/电子客票英文行程单_EN.docx";
  2742. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2743. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2744. return Ok(JsonView(true, "成功!", rst));
  2745. }
  2746. }
  2747. }
  2748. catch (Exception ex)
  2749. {
  2750. return Ok(JsonView(StatusCodes.Status400BadRequest, "程序错误!", ""));
  2751. throw;
  2752. }
  2753. }
  2754. #endregion
  2755. #region 团组增减款项 --> 其他款项
  2756. /// <summary>
  2757. /// 团组增减款项下拉框绑定
  2758. /// </summary>
  2759. /// <param name="dto"></param>
  2760. /// <returns></returns>
  2761. [HttpPost]
  2762. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2763. public async Task<IActionResult> DecreasePaymentsSelect(DecreasePaymentsDto dto)
  2764. {
  2765. #region 参数验证
  2766. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2767. if (dto.CTId < 1) return Ok(JsonView(false, "请传入有效的CTId参数!"));
  2768. #endregion
  2769. return Ok(await _decreasePaymentsRep.DecreasePaymentsSelect(dto));
  2770. }
  2771. /// <summary>
  2772. /// 根据团组Id查询团组增减款项
  2773. /// </summary>
  2774. /// <param name="dto"></param>
  2775. /// <returns></returns>
  2776. [HttpPost]
  2777. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2778. public async Task<IActionResult> DecreasePaymentsList(DecreasePaymentsListDto dto)
  2779. {
  2780. #region 参数验证
  2781. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2782. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  2783. #endregion
  2784. return Ok(await _decreasePaymentsRep.DecreasePaymentsList(dto));
  2785. }
  2786. /// <summary>
  2787. /// 团组增减款项操作(Status:1.新增,2.修改)
  2788. /// </summary>
  2789. /// <param name="dto"></param>
  2790. /// <returns></returns>
  2791. [HttpPost]
  2792. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2793. public async Task<IActionResult> OpDecreasePayments(DecreasePaymentsOpDto dto)
  2794. {
  2795. JsonView groupData = await _decreasePaymentsRep.OpDecreasePayments(dto);
  2796. if (groupData.Code != 200)
  2797. {
  2798. return Ok(JsonView(false, groupData.Msg));
  2799. }
  2800. #region 应用推送
  2801. int ccpId = (int)groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2802. int sign = (int)groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2803. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2804. #endregion
  2805. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2806. }
  2807. /// <summary>
  2808. /// 团组增减款项操作 删除
  2809. /// </summary>
  2810. /// <param name="dto"></param>
  2811. /// <returns></returns>
  2812. [HttpPost]
  2813. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2814. public async Task<IActionResult> DelDecreasePayments(DelBaseDto dto)
  2815. {
  2816. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  2817. if (dto.DeleteUserId < 1) return Ok(JsonView(false, "请传入有效的DeleteUserId参数!"));
  2818. var res = await _decreasePaymentsRep._Del(dto.Id, dto.DeleteUserId);
  2819. if (res.Code == 0)
  2820. {
  2821. return Ok(JsonView(true, "删除成功!"));
  2822. }
  2823. return Ok(JsonView(false, "删除失败!"));
  2824. }
  2825. /// <summary>
  2826. /// 根据团组增减款项Id查询
  2827. /// </summary>
  2828. /// <param name="dto"></param>
  2829. /// <returns></returns>
  2830. [HttpPost]
  2831. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2832. public async Task<IActionResult> QueryDecreasePaymentsById(DecreasePaymentsByIdDto dto)
  2833. {
  2834. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的数据Id!"));
  2835. return Ok(await _decreasePaymentsRep.QueryDecreasePaymentsById(dto));
  2836. }
  2837. /// <summary>
  2838. /// 查询供应商名称
  2839. /// </summary>
  2840. /// <param name="dto"></param>
  2841. /// <returns></returns>
  2842. [HttpPost]
  2843. public IActionResult QueryAssociateSupplier(AssociateSupplierDto dto)
  2844. {
  2845. var dbResult = _sqlSugar.Queryable<Grp_DecreasePayments>()
  2846. .Where(x => x.SupplierName.Contains(dto.param) && x.IsDel == 0).ToList()
  2847. ?? new List<Grp_DecreasePayments>();
  2848. dbResult = dbResult.Distinct(new
  2849. ProductComparer()).ToList();
  2850. var jw = JsonView(true, "success", dbResult.OrderByDescending(x => x.Id).Select(x => new
  2851. {
  2852. x.Id,
  2853. x.SupplierAddress,
  2854. x.SupplierArea,
  2855. x.SupplierContact,
  2856. x.SupplierContactNumber,
  2857. x.SupplierEmail,
  2858. x.SupplierName,
  2859. x.SupplierSocialAccount,
  2860. x.SupplierTypeId,
  2861. }).ToList());
  2862. return Ok(jw);
  2863. }
  2864. #endregion
  2865. #region 文件上传、删除
  2866. /// <summary>
  2867. /// region 文件上传 可以带参数
  2868. /// </summary>
  2869. /// <param name="file"></param>
  2870. /// <returns></returns>
  2871. [HttpPost]
  2872. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2873. public async Task<IActionResult> UploadProject(IFormFile file)
  2874. {
  2875. try
  2876. {
  2877. var TypeName = Request.Headers["TypeName"].ToString();
  2878. if (file != null)
  2879. {
  2880. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2881. //文件名称
  2882. string projectFileName = file.FileName;
  2883. //上传的文件的路径
  2884. string filePath = "";
  2885. if (TypeName == "A")//A代表团组增减款项
  2886. {
  2887. if (!Directory.Exists(fileDir))
  2888. {
  2889. Directory.CreateDirectory(fileDir);
  2890. }
  2891. //上传的文件的路径
  2892. filePath = fileDir + $@"\团组增减款项相关文件\{projectFileName}";
  2893. }
  2894. else if (TypeName == "B")//B代表商邀相关文件
  2895. {
  2896. if (!Directory.Exists(fileDir))
  2897. {
  2898. Directory.CreateDirectory(fileDir);
  2899. }
  2900. //上传的文件的路径
  2901. filePath = fileDir + $@"\商邀相关文件\{projectFileName}";
  2902. }
  2903. using (FileStream fs = System.IO.File.Create(filePath))
  2904. {
  2905. file.CopyTo(fs);
  2906. fs.Flush();
  2907. }
  2908. return Ok(JsonView(true, "上传成功!", projectFileName));
  2909. }
  2910. else
  2911. {
  2912. return Ok(JsonView(false, "上传失败!"));
  2913. }
  2914. }
  2915. catch (Exception ex)
  2916. {
  2917. return Ok(JsonView(false, "程序错误!"));
  2918. throw;
  2919. }
  2920. }
  2921. /// <summary>
  2922. /// 删除指定文件
  2923. /// </summary>
  2924. /// <param name="dto"></param>
  2925. /// <returns></returns>
  2926. [HttpPost]
  2927. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2928. public async Task<IActionResult> DelFile(DelFileDto dto)
  2929. {
  2930. try
  2931. {
  2932. var TypeName = Request.Headers["TypeName"].ToString();
  2933. string filePath = "";
  2934. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2935. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  2936. int id = 0;
  2937. if (TypeName == "A")
  2938. {
  2939. filePath = fileDir + "/团组增减款项相关文件/" + dto.fileName;
  2940. // 删除该文件
  2941. System.IO.File.Delete(filePath);
  2942. id = await _sqlSugar.Updateable<Grp_DecreasePayments>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_DecreasePayments { FilePath = "" }).ExecuteCommandAsync();
  2943. }
  2944. else if (TypeName == "B")
  2945. {
  2946. filePath = fileDir + "/商邀相关文件/" + dto.fileName;
  2947. // 删除该文件
  2948. System.IO.File.Delete(filePath);
  2949. id = await _sqlSugar.Updateable<Grp_InvitationOfficialActivities>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_InvitationOfficialActivities { Attachment = "" }).ExecuteCommandAsync();
  2950. }
  2951. if (id != 0)
  2952. {
  2953. return Ok(JsonView(true, "成功!"));
  2954. }
  2955. else
  2956. {
  2957. return Ok(JsonView(false, "失败!"));
  2958. }
  2959. }
  2960. catch (Exception ex)
  2961. {
  2962. return Ok(JsonView(false, "程序错误!"));
  2963. throw;
  2964. }
  2965. }
  2966. #endregion
  2967. #region 商邀费用录入
  2968. /// <summary>
  2969. /// 根据团组Id查询商邀费用列表
  2970. /// </summary>
  2971. /// <param name="dto"></param>
  2972. /// <returns></returns>
  2973. [HttpPost]
  2974. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2975. public async Task<IActionResult> InvitationOfficialActivitiesList(InvitationOfficialActivitiesListDto dto)
  2976. {
  2977. try
  2978. {
  2979. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesList(dto);
  2980. if (groupData.Code != 0)
  2981. {
  2982. return Ok(JsonView(false, groupData.Msg));
  2983. }
  2984. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2985. }
  2986. catch (Exception ex)
  2987. {
  2988. return Ok(JsonView(false, "程序错误!"));
  2989. throw;
  2990. }
  2991. }
  2992. //
  2993. /// <summary>
  2994. /// 商邀费用 Info Page 基础数据源
  2995. /// </summary>
  2996. /// <param name="dto"></param>
  2997. /// <returns></returns>
  2998. [HttpPost]
  2999. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3000. public async Task<IActionResult> InvitationOfficialActivityInitBasicData()
  3001. {
  3002. try
  3003. {
  3004. Result groupData = await _InvitationOfficialActivitiesRep._InitBasicData();
  3005. if (groupData.Code != 0)
  3006. {
  3007. return Ok(JsonView(false, groupData.Msg));
  3008. }
  3009. return Ok(JsonView(true, "操作成功", groupData.Data));
  3010. }
  3011. catch (Exception ex)
  3012. {
  3013. return Ok(JsonView(false, ex.Message));
  3014. throw;
  3015. }
  3016. }
  3017. /// <summary>
  3018. /// 根据商邀费用ID查询C表和商邀费用数据
  3019. /// </summary>
  3020. /// <param name="dto"></param>
  3021. /// <returns></returns>
  3022. [HttpPost]
  3023. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3024. public async Task<IActionResult> InvitationOfficialActivitiesById(InvitationOfficialActivitiesByIdDto dto)
  3025. {
  3026. try
  3027. {
  3028. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesById(dto);
  3029. if (groupData.Code != 0)
  3030. {
  3031. return Ok(JsonView(false, groupData.Msg));
  3032. }
  3033. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3034. }
  3035. catch (Exception ex)
  3036. {
  3037. return Ok(JsonView(false, ex.Message));
  3038. throw;
  3039. }
  3040. }
  3041. /// <summary>
  3042. /// 商邀费用录入操作(Status:1.新增,2.修改)
  3043. /// </summary>
  3044. /// <param name="dto"></param>
  3045. /// <returns></returns>
  3046. [HttpPost]
  3047. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3048. public async Task<IActionResult> OpInvitationOfficialActivities(OpInvitationOfficialActivitiesDto dto)
  3049. {
  3050. try
  3051. {
  3052. Result groupData = await _InvitationOfficialActivitiesRep.OpInvitationOfficialActivities(dto, _setDataRep.PostCurrencyByDiid);
  3053. if (groupData.Code != 0)
  3054. {
  3055. return Ok(JsonView(false, groupData.Msg));
  3056. }
  3057. #region 应用推送
  3058. try
  3059. {
  3060. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  3061. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  3062. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  3063. }
  3064. catch (Exception ex)
  3065. {
  3066. }
  3067. #endregion
  3068. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3069. }
  3070. catch (Exception ex)
  3071. {
  3072. return Ok(JsonView(false, "程序错误!"));
  3073. throw;
  3074. }
  3075. }
  3076. /// <summary>
  3077. /// 商邀删除
  3078. /// </summary>
  3079. /// <param name="dto"></param>
  3080. /// <returns></returns>
  3081. [HttpPost]
  3082. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3083. public async Task<IActionResult> DelInvitationOfficialActivities(DelBaseDto dto)
  3084. {
  3085. try
  3086. {
  3087. _sqlSugar.BeginTran();
  3088. var res1 = _sqlSugar.Updateable<Grp_InvitationOfficialActivities>()
  3089. .SetColumns(it => new Grp_InvitationOfficialActivities()
  3090. {
  3091. IsDel = 1,
  3092. DeleteUserId = dto.DeleteUserId,
  3093. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  3094. })
  3095. .Where(it => it.Id == dto.Id)
  3096. .ExecuteCommand();
  3097. if (res1 > 0)
  3098. {
  3099. int _diId = 0;
  3100. var _ioaInfo = _sqlSugar.Queryable<Grp_InvitationOfficialActivities>().Where(it => it.Id == dto.Id).First();
  3101. if (_ioaInfo != null)
  3102. {
  3103. _diId = _ioaInfo.DiId;
  3104. }
  3105. var res2 = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  3106. .SetColumns(a => new Grp_CreditCardPayment()
  3107. {
  3108. IsDel = 1,
  3109. DeleteUserId = dto.DeleteUserId,
  3110. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  3111. })
  3112. .Where(a => a.CId == dto.Id && a.DIId == _diId && a.CTable == 81)
  3113. .ExecuteCommand();
  3114. if (res2 > 0)
  3115. {
  3116. _sqlSugar.CommitTran();
  3117. return Ok(JsonView(true, "删除成功!"));
  3118. }
  3119. }
  3120. _sqlSugar.RollbackTran();
  3121. return Ok(JsonView(false, "删除失败"));
  3122. }
  3123. catch (Exception ex)
  3124. {
  3125. _sqlSugar.RollbackTran();
  3126. return Ok(JsonView(false, ex.Message));
  3127. }
  3128. }
  3129. /// <summary>
  3130. /// 团组模块文件上传
  3131. /// </summary>
  3132. /// <param name="dto"></param>
  3133. /// <returns></returns>
  3134. [HttpPost]
  3135. public IActionResult CommonSaveFile([FromForm] CommonSaveFileDto dto)
  3136. {
  3137. var jw = JsonView(false);
  3138. long M = 1024 * 1024;
  3139. if (dto.Files == null || dto.Files.Count == 0)
  3140. {
  3141. jw.Msg = "无文件信息!";
  3142. return Ok(jw);
  3143. }
  3144. if (dto.Files.Sum(x=>x.Length) > 20 * M)
  3145. {
  3146. jw.Msg = "文件大小超过20M!";
  3147. return Ok(jw);
  3148. }
  3149. //var nameSp = dto.File.FileName.Split(".");
  3150. //if (nameSp.Length < 2)
  3151. //{
  3152. // jw.Msg = "拓展名称有误!";
  3153. // return Ok(jw);
  3154. //}
  3155. //var existsName = new string[]{ "RAR", "ZIP", "ARJ","GZ","Z","7Z","TAR" };
  3156. //if (!existsName.Contains(nameSp[1].ToUpper()))
  3157. //{
  3158. // jw.Msg = $"请使用指定拓展名!({string.Join("-",existsName)})";
  3159. // return Ok(jw);
  3160. //}
  3161. var Ctable = _sqlSugar.Queryable<Sys_SetData>().First(x => x.STid == 16 && x.IsDel == 0 && x.Id == dto.Ctable);
  3162. if (Ctable == null)
  3163. {
  3164. jw.Msg = "Ctable指向有误!";
  3165. return Ok(jw);
  3166. }
  3167. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  3168. if (groupInfo == null)
  3169. {
  3170. jw.Msg = "团组信息不存在!";
  3171. return Ok(jw);
  3172. }
  3173. Ctable.Name = Regex.Replace(Ctable.Name, @"[^\w\.@-]", "",
  3174. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3175. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3176. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3177. var path = "\\GroupModelFiles\\" + groupInfo.TeamName + "\\" + Ctable.Name;
  3178. var fileBase = AppSettingsHelper.Get("GrpFileBasePath") + path;
  3179. try
  3180. {
  3181. if (!Directory.Exists(fileBase))
  3182. {
  3183. Directory.CreateDirectory(fileBase);
  3184. }
  3185. List<Grp_GroupModelFile> saveArr = new List<Grp_GroupModelFile>();
  3186. foreach (var fileStream in dto.Files)
  3187. {
  3188. var saveFilePath = fileBase + "\\" + fileStream.FileName;
  3189. Grp_GroupModelFile file = new Grp_GroupModelFile()
  3190. {
  3191. Cid = dto.Cid,
  3192. CreateTime = DateTime.Now,
  3193. CreateUserId = dto.Userid,
  3194. Ctable = dto.Ctable,
  3195. Diid = dto.Diid,
  3196. IsDel = 0,
  3197. FilePath = saveFilePath,
  3198. FileName = fileStream.FileName
  3199. };
  3200. using (FileStream fs = System.IO.File.Create(saveFilePath))
  3201. {
  3202. fileStream.CopyTo(fs);
  3203. fs.Flush();
  3204. }
  3205. saveArr.Add(file);
  3206. }
  3207. var addResult = _sqlSugar.Insertable<Grp_GroupModelFile>(saveArr).ExecuteCommand();
  3208. //url = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("GrpFileFtpPath") + path + "\\" + dto.File.FileName
  3209. jw = JsonView(true, "保存成功!", new
  3210. {
  3211. count = addResult,
  3212. filesName = saveArr.Select(x => x.FileName)
  3213. }) ;
  3214. }
  3215. catch (Exception ex)
  3216. {
  3217. jw = JsonView(false, $"保存失败! ({ex.Message}) ", new
  3218. {
  3219. count = 0,
  3220. filesName = new string[0],
  3221. }) ;
  3222. }
  3223. return Ok(jw);
  3224. }
  3225. /// <summary>
  3226. /// 查询各模块已保存文件
  3227. /// </summary>
  3228. /// <param name="dto"></param>
  3229. /// <returns></returns>
  3230. [HttpPost]
  3231. public IActionResult QueryGroupModelFile(QueryGroupModelFileDto dto)
  3232. {
  3233. var expression = Expressionable.Create<Grp_GroupModelFile>()
  3234. .AndIF(dto.UserId != -1 , x => x.CreateUserId == dto.UserId);
  3235. var visaIds = _sqlSugar.Queryable<Sys_Users>().Where(x => x.JobPostId == 26).Select(x=>x.Id).ToList();
  3236. if (visaIds.Contains(dto.UserId) && dto.Ctable == 80)
  3237. {
  3238. expression = Expressionable.Create<Grp_GroupModelFile>()
  3239. .And(x=>visaIds.Contains(x.CreateUserId));
  3240. }
  3241. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>()
  3242. .Where(x => x.IsDel == 0 && x.Cid == dto.Cid && x.Ctable == dto.Ctable && x.Diid == dto.Diid)
  3243. .Where(expression.ToExpression())
  3244. .ToList();
  3245. //.ToPageList(pagenumber, pageSize, ref totalCount, ref totalPage)
  3246. return Ok(JsonView(true, "success", dbQuery.Select(x => new
  3247. {
  3248. x.FileName,
  3249. x.Id,
  3250. Url = AppSettingsHelper.Get("GrpFileBaseUrl") + x.FilePath.Replace(AppSettingsHelper.Get("GrpFileBasePath"), AppSettingsHelper.Get("GrpFileFtpPath")),
  3251. CreateTime = x.CreateTime.ToString("yyyy-MM-dd HH-mm"),
  3252. })));
  3253. }
  3254. /// <summary>
  3255. /// 下载该团组下的所有文件
  3256. /// </summary>
  3257. /// <param name="dto"></param>
  3258. /// <returns></returns>
  3259. [HttpPost]
  3260. public IActionResult ExportGroupZip(ExportGroupZipDto dto)
  3261. {
  3262. var jw = JsonView(false);
  3263. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.IsDel == 0 && x.Id == dto.Diid);
  3264. if (groupInfo == null)
  3265. {
  3266. jw.Msg = "团组信息不存在!";
  3267. return Ok(jw);
  3268. }
  3269. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid).ToList();
  3270. var isModule = Convert.ToBoolean(dto.isModule);
  3271. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  3272. IOOperatorHelper io = new IOOperatorHelper();
  3273. if (isModule)
  3274. {
  3275. var moduleGroup = dbQuery.GroupBy(x => x.Ctable);
  3276. foreach (var moduleArr in moduleGroup)
  3277. {
  3278. var key = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == moduleArr.Key && x.IsDel == 0);
  3279. key.Name = Regex.Replace(key.Name, @"[^\w\.@-]", "",
  3280. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3281. Dictionary<string, Stream> chiZips = new Dictionary<string, Stream>();
  3282. foreach (var item in moduleArr)
  3283. {
  3284. if (System.IO.File.Exists(item.FilePath))
  3285. {
  3286. using (FileStream fileStream = new FileStream(item.FilePath, FileMode.Open, FileAccess.Read))
  3287. {
  3288. byte[] bytes = new byte[fileStream.Length];
  3289. fileStream.Read(bytes, 0, bytes.Length);
  3290. fileStream.Close();
  3291. Stream stream = new MemoryStream(bytes);
  3292. chiZips.Add(item.FileName, stream);
  3293. }
  3294. }
  3295. }
  3296. if (chiZips.Count > 0)
  3297. {
  3298. var byts = io.ConvertZipStream(chiZips);
  3299. Stream stream = new MemoryStream(byts);
  3300. Zips.Add(key.Name+"_.zip", stream);
  3301. }
  3302. }
  3303. }
  3304. else
  3305. {
  3306. foreach (var item in dbQuery)
  3307. {
  3308. using (FileStream fileStream = new FileStream(item.FilePath, FileMode.Open, FileAccess.Read))
  3309. {
  3310. byte[] bytes = new byte[fileStream.Length];
  3311. fileStream.Read(bytes, 0, bytes.Length);
  3312. fileStream.Close();
  3313. Stream stream = new MemoryStream(bytes);
  3314. while (Zips.Keys.Contains(item.FileName))
  3315. {
  3316. item.FileName = new Random().Next(100) + "_" + item.FileName;
  3317. }
  3318. Zips.Add(item.FileName, stream);
  3319. }
  3320. }
  3321. }
  3322. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3323. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3324. if (Zips.Count > 0)
  3325. {
  3326. var byts = io.ConvertZipStream(Zips);
  3327. var path = "\\GroupModelFiles\\" + groupInfo.TeamName;
  3328. io.ByteToFile(byts, AppSettingsHelper.Get("GrpFileBasePath") + $"{path}\\{groupInfo.TeamName}_.Zip");
  3329. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("GrpFileBaseUrl") + $"{AppSettingsHelper.Get("GrpFileFtpPath")}{path}\\{groupInfo.TeamName}_.zip" });
  3330. }
  3331. else
  3332. {
  3333. jw.Msg = "暂无生成文件!";
  3334. }
  3335. return Ok(jw);
  3336. }
  3337. /// <summary>
  3338. /// 下载该团组下此模块的所有文件
  3339. /// </summary>
  3340. /// <param name="dto"></param>
  3341. /// <returns></returns>
  3342. [HttpPost]
  3343. public IActionResult ExportGroupByModule(ExportGroupByModuleDto dto)
  3344. {
  3345. var jw = JsonView(false);
  3346. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.IsDel == 0 && x.Id == dto.Diid);
  3347. if (groupInfo == null)
  3348. {
  3349. jw.Msg = "团组信息不存在!";
  3350. return Ok(jw);
  3351. }
  3352. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid && x.Ctable == dto.Ctable).ToList();
  3353. var key = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == dto.Ctable
  3354. && x.IsDel == 0);
  3355. if (key == null)
  3356. {
  3357. jw.Msg = "Ctable指向错误!";
  3358. return Ok(jw);
  3359. }
  3360. key.Name = Regex.Replace(key.Name, @"[^\w\.@-]", "",
  3361. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3362. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3363. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3364. IOOperatorHelper io = new IOOperatorHelper();
  3365. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  3366. foreach (var item in dbQuery)
  3367. {
  3368. if (System.IO.File.Exists(item.FilePath))
  3369. {
  3370. using (FileStream fileStream = new FileStream(item.FilePath, FileMode.Open, FileAccess.Read))
  3371. {
  3372. byte[] bytes = new byte[fileStream.Length];
  3373. fileStream.Read(bytes, 0, bytes.Length);
  3374. fileStream.Close();
  3375. Stream stream = new MemoryStream(bytes);
  3376. while (Zips.Keys.Contains(item.FileName))
  3377. {
  3378. item.FileName = new Random().Next(100) + "_" + item.FileName;
  3379. }
  3380. Zips.Add(item.FileName, stream);
  3381. }
  3382. }
  3383. }
  3384. if (Zips.Count > 0)
  3385. {
  3386. var byts = io.ConvertZipStream(Zips);
  3387. var path = "\\GroupModelFiles\\" + groupInfo.TeamName;
  3388. io.ByteToFile(byts, AppSettingsHelper.Get("GrpFileBasePath") + $"{path}\\{groupInfo.TeamName}_{key.Name}_.Zip");
  3389. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("GrpFileBaseUrl") + $"{AppSettingsHelper.Get("GrpFileFtpPath")}{path}\\{groupInfo.TeamName}_{key.Name}_.Zip" });
  3390. }
  3391. else
  3392. {
  3393. jw.Msg = "暂无生成文件!";
  3394. }
  3395. return Ok(jw);
  3396. }
  3397. /// <summary>
  3398. /// 删除该团组下的指定文件
  3399. /// </summary>
  3400. /// <param name="dto"></param>
  3401. /// <returns></returns>
  3402. [HttpPost]
  3403. public IActionResult DeleteGroupFile(DeleteGroupFileDto dto)
  3404. {
  3405. var jw = JsonView(false);
  3406. var sing = _sqlSugar.Queryable<Grp_GroupModelFile>().First(x => x.Id == dto.Id && x.IsDel == 0);
  3407. if (sing == null)
  3408. {
  3409. jw.Msg = "暂无";
  3410. return Ok(jw);
  3411. }
  3412. if (System.IO.File.Exists(sing.FilePath))
  3413. {
  3414. try
  3415. {
  3416. System.IO.File.Delete(sing.FilePath);
  3417. }
  3418. catch (Exception ex)
  3419. {
  3420. jw.Msg = "删除失败!" + ex.Message;
  3421. return Ok(jw);
  3422. }
  3423. }
  3424. sing.IsDel = 1;
  3425. sing.DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  3426. sing.DeleteUserId = dto.UserId;
  3427. _sqlSugar.Updateable<Grp_GroupModelFile>(sing).ExecuteCommand();
  3428. jw = JsonView(true, "删除成功!");
  3429. return Ok(jw);
  3430. }
  3431. #endregion
  3432. #region 团组英文资料
  3433. /// <summary>
  3434. /// 查询团组英文所有资料
  3435. /// </summary>
  3436. /// <param name="dto"></param>
  3437. /// <returns></returns>
  3438. [HttpPost]
  3439. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3440. public async Task<IActionResult> QueryDelegationEnData(QueryDelegationEnDataDto dto)
  3441. {
  3442. try
  3443. {
  3444. Result groupData = await _delegationEnDataRep.QueryDelegationEnData(dto);
  3445. if (groupData.Code != 0)
  3446. {
  3447. return Ok(JsonView(false, groupData.Msg));
  3448. }
  3449. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3450. }
  3451. catch (Exception ex)
  3452. {
  3453. return Ok(JsonView(false, "程序错误!"));
  3454. throw;
  3455. }
  3456. }
  3457. /// <summary>
  3458. /// 团组英文资料操作(Status:1.新增,2.修改)
  3459. /// </summary>
  3460. /// <param name="dto"></param>
  3461. /// <returns></returns>
  3462. [HttpPost]
  3463. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3464. public async Task<IActionResult> OpDelegationEnData(OpDelegationEnDataDto dto)
  3465. {
  3466. try
  3467. {
  3468. Result groupData = await _delegationEnDataRep.OpDelegationEnData(dto);
  3469. if (groupData.Code != 0)
  3470. {
  3471. return Ok(JsonView(false, groupData.Msg));
  3472. }
  3473. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3474. }
  3475. catch (Exception ex)
  3476. {
  3477. return Ok(JsonView(false, "程序错误!"));
  3478. throw;
  3479. }
  3480. }
  3481. /// <summary>
  3482. /// 团组英文资料Id查询数据
  3483. /// </summary>
  3484. /// <param name="dto"></param>
  3485. /// <returns></returns>
  3486. [HttpPost]
  3487. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3488. public async Task<IActionResult> QueryDelegationEnDataById(QueryDelegationEnDataByIdDto dto)
  3489. {
  3490. try
  3491. {
  3492. Grp_DelegationEnData _DelegationEnData = await _sqlSugar.Queryable<Grp_DelegationEnData>().FirstAsync(it => it.Id == dto.Id && it.IsDel == 0);
  3493. if (_DelegationEnData != null)
  3494. {
  3495. return Ok(JsonView(true, "查询成功!", _DelegationEnData));
  3496. }
  3497. return Ok(JsonView(true, "暂无数据!", _DelegationEnData));
  3498. }
  3499. catch (Exception ex)
  3500. {
  3501. return Ok(JsonView(false, "程序错误!"));
  3502. throw;
  3503. }
  3504. }
  3505. /// <summary>
  3506. /// 团组英文资料删除
  3507. /// </summary>
  3508. /// <param name="dto"></param>
  3509. /// <returns></returns>
  3510. [HttpPost]
  3511. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3512. public async Task<IActionResult> DelDelegationEnData(DelBaseDto dto)
  3513. {
  3514. try
  3515. {
  3516. var res = await _delegationEnDataRep.SoftDeleteByIdAsync<Grp_DelegationEnData>(dto.Id.ToString(), dto.DeleteUserId);
  3517. if (!res)
  3518. {
  3519. return Ok(JsonView(false, "删除失败"));
  3520. }
  3521. return Ok(JsonView(true, "删除成功!"));
  3522. }
  3523. catch (Exception ex)
  3524. {
  3525. return Ok(JsonView(false, "程序错误!"));
  3526. throw;
  3527. }
  3528. }
  3529. #endregion
  3530. #region 导出邀请函
  3531. /// <summary>
  3532. /// 导出邀请函页面初始化
  3533. /// </summary>
  3534. /// <param name="dto"></param>
  3535. /// <returns></returns>
  3536. [HttpPost]
  3537. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3538. public async Task<IActionResult> QueryinvitationLetter(DecreasePaymentsListDto dto)
  3539. {
  3540. try
  3541. {
  3542. List<Grp_DelegationInfo> grp_Delegations = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(a => a.IsDel == 0).OrderBy(a => a.Id, OrderByType.Desc).ToList();
  3543. List<Crm_DeleClient> crm_Deles = new List<Crm_DeleClient>();
  3544. if (dto.DiId == 0)
  3545. {
  3546. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == grp_Delegations[0].Id && a.IsDel == 0).ToListAsync();
  3547. }
  3548. else
  3549. {
  3550. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == dto.DiId && a.IsDel == 0).ToListAsync();
  3551. }
  3552. return Ok(JsonView(true, "查询成功!", new
  3553. {
  3554. deleClient = crm_Deles,
  3555. delegations = grp_Delegations
  3556. }));
  3557. }
  3558. catch (Exception ex)
  3559. {
  3560. return Ok(JsonView(false, "程序错误!"));
  3561. throw;
  3562. }
  3563. }
  3564. /// <summary>
  3565. /// 导出邀请函
  3566. /// </summary>
  3567. /// <param name="dto"></param>
  3568. /// <returns></returns>
  3569. [HttpPost]
  3570. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3571. public async Task<IActionResult> invitationLetter(DecreasePaymentsListDto dto)
  3572. {
  3573. #region 参数验证
  3574. //if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  3575. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  3576. #endregion
  3577. try
  3578. {
  3579. Dictionary<string, string> transDic = new Dictionary<string, string>();
  3580. string sql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  3581. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  3582. From Grp_TourClientList tcl
  3583. Left Join
  3584. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  3585. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  3586. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  3587. From Crm_DeleClient dc
  3588. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  3589. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  3590. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  3591. Where dc.IsDel = 0) temp
  3592. On temp.DcId =tcl.ClientId
  3593. Where tcl.IsDel = 0 And tcl.DiId = {0}", dto.DiId);
  3594. var datas = _sqlSugar.SqlQueryable<TourClientListDetailsView>(sql).ToList();
  3595. List<string> texts = new List<string>();
  3596. if (datas.Count != 0)
  3597. {
  3598. foreach (TourClientListDetailsView item in datas)
  3599. {
  3600. if (!string.IsNullOrWhiteSpace(item.Pinyin))
  3601. {
  3602. transDic.Add(item.LastName + item.FirstName, item.Pinyin);
  3603. }
  3604. else
  3605. {
  3606. string name = item.LastName + item.FirstName;
  3607. texts.Add(name);
  3608. }
  3609. if (!string.IsNullOrEmpty(item.Job) && !texts.Contains(item.Job))
  3610. {
  3611. if (!transDic.ContainsKey(item.Job))
  3612. {
  3613. texts.Add(item.Job);
  3614. }
  3615. }
  3616. if (!string.IsNullOrEmpty(item.CompanyFullName))
  3617. {
  3618. texts.Add(item.CompanyFullName);
  3619. }
  3620. }
  3621. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  3622. if (transData.Count > 0)
  3623. {
  3624. foreach (TranslateResult item in transData)
  3625. {
  3626. if (!transDic.ContainsKey(item.Query))
  3627. {
  3628. transDic.Add(item.Query, item.Translation);
  3629. }
  3630. }
  3631. }
  3632. List<GuestList> list = new List<GuestList>();
  3633. foreach (TourClientListDetailsView dele in datas)
  3634. {
  3635. GuestList guestList = new GuestList();
  3636. if (!string.IsNullOrWhiteSpace(dele.Pinyin))
  3637. {
  3638. guestList.Name = dele.Pinyin;
  3639. }
  3640. else
  3641. {
  3642. string Name = transDic.Where(s => s.Key == dele.LastName + dele.FirstName).FirstOrDefault().Value;
  3643. guestList.Name = Name;
  3644. }
  3645. if (dele.Sex == 0)
  3646. {
  3647. guestList.Sex = "Male";
  3648. }
  3649. else if (dele.Sex == 1)
  3650. {
  3651. guestList.Sex = "Female";
  3652. }
  3653. guestList.DOB = dele.BirthDay.Replace('-', '.');
  3654. if (!string.IsNullOrEmpty(dele.Job))
  3655. {
  3656. guestList.Job = dele.Job;
  3657. }
  3658. list.Add(guestList);
  3659. }
  3660. //载入模板
  3661. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/邀请函模板0210.docx");
  3662. DocumentBuilder builder = new DocumentBuilder(doc);
  3663. //获取word里所有表格
  3664. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3665. //获取所填表格的序数
  3666. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  3667. var rowStart = tableOne.Rows[0]; //获取第1行
  3668. //循环赋值
  3669. for (int i = 0; i < list.Count; i++)
  3670. {
  3671. builder.MoveToCell(0, i + 1, 0, 0);
  3672. builder.Write(list[i].Name.ToString());
  3673. builder.MoveToCell(0, i + 1, 1, 0);
  3674. builder.Write(list[i].Sex.ToString());
  3675. builder.MoveToCell(0, i + 1, 2, 0);
  3676. builder.Write(list[i].DOB.ToString());
  3677. builder.MoveToCell(0, i + 1, 3, 0);
  3678. builder.Write(list[i].Job.ToString());
  3679. }
  3680. //删除多余行
  3681. while (tableOne.Rows.Count > list.Count + 1)
  3682. {
  3683. tableOne.Rows.RemoveAt(list.Count + 1);
  3684. }
  3685. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  3686. string fileName = "邀请函" + DateTime.Now.ToString("yyyy-MM-dd") + ".docx";
  3687. string filePath = fileDir + $@"商邀相关文件/{fileName}";
  3688. doc.Save(filePath);
  3689. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/GrpFile/商邀相关文件/" + fileName;
  3690. return Ok(JsonView(true, "操作成功!", Url));
  3691. }
  3692. else
  3693. {
  3694. return Ok(JsonView(false, "该团组客户名单暂未录入!"));
  3695. }
  3696. }
  3697. catch (Exception ex)
  3698. {
  3699. return Ok(JsonView(false, ex.Message));
  3700. throw;
  3701. }
  3702. }
  3703. #endregion
  3704. #region 团组经理模块 出入境费用
  3705. ///// <summary>
  3706. ///// 团组模块 - 出入境费用
  3707. ///// </summary>
  3708. ///// <returns></returns>
  3709. //[HttpPost]
  3710. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3711. //public async Task<IActionResult> SetEnterExitCostCurrencyChange()
  3712. //{
  3713. // try
  3714. // {
  3715. // var data = await _enterExitCostRep.SetEnterExitCostCurrencyChange();
  3716. // if (data.Code != 0)
  3717. // {
  3718. // return Ok(JsonView(false, data.Msg));
  3719. // }
  3720. // return Ok(JsonView(true, "查询成功!"));
  3721. // }
  3722. // catch (Exception ex)
  3723. // {
  3724. // return Ok(JsonView(false, ex.Message));
  3725. // throw;
  3726. // }
  3727. //}
  3728. /// <summary>
  3729. /// 团组模块 - 出入境费用 - 子项 地区更改为 nationalTravelFee 的id
  3730. /// </summary>
  3731. /// <returns></returns>
  3732. [HttpPost]
  3733. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3734. public async Task<IActionResult> SetDayAndCostAreaChange()
  3735. {
  3736. try
  3737. {
  3738. var nationalTravelFee = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  3739. var dayAndCost = await _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0).ToListAsync();
  3740. var unite = dayAndCost.Where(a => nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //交集
  3741. var merge = dayAndCost.Where(a => !nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //差集
  3742. foreach (var item in unite) //处理交集数据
  3743. {
  3744. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault().Id;
  3745. }
  3746. foreach (var item in merge) //处理差集数据
  3747. {
  3748. int nationalTravelFeeId = 0;
  3749. var cityData = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault();
  3750. if (cityData != null) nationalTravelFeeId = cityData.Id;
  3751. else
  3752. {
  3753. var countryData = nationalTravelFee.Where(it => it.Country.Trim() == item.Place.Trim()).FirstOrDefault();
  3754. if (countryData != null) nationalTravelFeeId = countryData.Id;
  3755. }
  3756. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFeeId;
  3757. }
  3758. //只更新dayAndCost 的 nationalTravelFeeId;
  3759. var result = _sqlSugar.Updateable(dayAndCost).UpdateColumns(it => new { it.NationalTravelFeeId }).ExecuteCommand();
  3760. if (result > 0) return Ok(JsonView(true, "nationalTravelFeeId列更新成功!"));
  3761. else return Ok(JsonView(false, "nationalTravelFeeId列更新失败!"));
  3762. }
  3763. catch (Exception ex)
  3764. {
  3765. return Ok(JsonView(false, ex.Message));
  3766. throw;
  3767. }
  3768. }
  3769. /// <summary>
  3770. /// 团组模块 - 出入境费用 - 基础数据源(团组名称/币种类型)
  3771. /// </summary>
  3772. /// <returns></returns>
  3773. [HttpPost]
  3774. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3775. public async Task<IActionResult> GetEnterExitCostDataSource(PortDtoBase dto)
  3776. {
  3777. try
  3778. {
  3779. var groupNameData = await _groupRepository.GetGroupNameList(new GroupNameDto { PortType = dto.PortType });
  3780. string sql = string.Format("Select * From Sys_SetData Where IsDel = 0");
  3781. //SetDataInfoView
  3782. var dataSource = await _sqlSugar.SqlQueryable<Sys_SetData>(sql).ToListAsync();
  3783. var currencyData = dataSource.Where(it => it.STid == 66).ToList(); //所有币种
  3784. List<SetDataInfoView> _CurrencyData = _mapper.Map<List<SetDataInfoView>>(currencyData);
  3785. var wordTypeData = dataSource.Where(it => it.STid == 72).ToList(); //三公费用-Word明细类型
  3786. List<SetDataInfoView> _WordTypeData = _mapper.Map<List<SetDataInfoView>>(wordTypeData);
  3787. var excelTypeData = dataSource.Where(it => it.STid == 73).ToList(); //三公费用-Excel明细类型
  3788. List<SetDataInfoView> _ExcelTypeData = _mapper.Map<List<SetDataInfoView>>(excelTypeData);
  3789. //默认币种显示
  3790. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3791. {
  3792. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 7.5000M },
  3793. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 8.0000M },
  3794. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 9.5000M },
  3795. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0500M },
  3796. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.9500M },
  3797. };
  3798. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3799. if (_currencyRate.Count > 0)
  3800. {
  3801. foreach (var item in _currencyInfos)
  3802. {
  3803. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3804. if (rateInfo != null)
  3805. {
  3806. decimal rate1 = Convert.ToDecimal(rateInfo.FSellPri) / 100.00M;
  3807. rate1 *= 1.035M;
  3808. item.Rate = Convert.ToDecimal(rate1.ToString("#0.00")) + 0.01M;
  3809. }
  3810. }
  3811. }
  3812. return Ok(JsonView(true, "查询成功!", new
  3813. {
  3814. GroupNameData = groupNameData.Data,
  3815. CurrencyData = _CurrencyData,
  3816. WordTypeData = _WordTypeData,
  3817. ExcelTypeData = _ExcelTypeData,
  3818. CurrencyInit = _currencyInfos
  3819. }));
  3820. }
  3821. catch (Exception ex)
  3822. {
  3823. return Ok(JsonView(false, ex.Message));
  3824. throw;
  3825. }
  3826. }
  3827. /// <summary>
  3828. /// 团组模块 - 出入境费用
  3829. /// 实时汇率 tips
  3830. /// 签证费用 tips
  3831. /// </summary>
  3832. /// <returns></returns>
  3833. [HttpPost]
  3834. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3835. public async Task<IActionResult> GetEnterExitCostCorrelationTips(EnterExitCostInfobyDiIdDto dto)
  3836. {
  3837. var groupInfo = await _sqlSugar.Queryable<Grp_DelegationInfo>().FirstAsync(it => it.Id == dto.DiId && it.IsDel == 0);
  3838. //默认币种显示
  3839. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3840. {
  3841. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 7.5000M },
  3842. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 8.0000M },
  3843. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 9.5000M },
  3844. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0500M },
  3845. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.9500M },
  3846. };
  3847. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3848. List<dynamic> reteInfos = new List<dynamic>();
  3849. if (_currencyRate.Count > 0)
  3850. {
  3851. foreach (var item in _currencyInfos)
  3852. {
  3853. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3854. if (rateInfo != null)
  3855. {
  3856. item.Rate = Convert.ToDecimal((Convert.ToDecimal(rateInfo.FSellPri == null ? 0.00M : rateInfo.FSellPri) / 100.00M).ToString("#0.0000"));
  3857. decimal rate1 = item.Rate;
  3858. rate1 *= 1.03M;
  3859. decimal rate2 = Convert.ToDecimal(rate1.ToString("#0.00")) + 0.01M;
  3860. reteInfos.Add(new
  3861. {
  3862. currCode = item.CurrencyCode,
  3863. currName = item.CurrencyName,
  3864. rate = rate2,
  3865. lastUpdateDt = rateInfo.Date + " " + rateInfo.Time
  3866. });
  3867. }
  3868. }
  3869. }
  3870. var visaData = await _visaFeeInfoRep.EntryAndExitTips(dto.DiId);
  3871. var airData = await _ticketBlackCodeRep.EntryAndExitTips(dto.DiId);
  3872. return Ok(JsonView(true, "查询成功!", new
  3873. {
  3874. //GroupNameData = groupNameData.Data,
  3875. visaData = visaData.Data,
  3876. airData = airData.Data,
  3877. reteInfos = reteInfos
  3878. }));
  3879. }
  3880. /// <summary>
  3881. /// 团组模块 - 出入境费用 - Info
  3882. /// </summary>
  3883. /// <returns></returns>
  3884. [HttpPost]
  3885. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3886. public async Task<IActionResult> GetEnterExitCostInfobyDiId(EnterExitCostInfobyDiIdDto dto)
  3887. {
  3888. try
  3889. {
  3890. var data = await _enterExitCostRep.GetEnterExitCostInfoByDiId(dto);
  3891. if (data.Code != 0)
  3892. {
  3893. return Ok(JsonView(false, data.Msg));
  3894. }
  3895. return Ok(JsonView(true, "查询成功!", data.Data));
  3896. }
  3897. catch (Exception ex)
  3898. {
  3899. return Ok(JsonView(false, ex.Message));
  3900. }
  3901. }
  3902. /// <summary>
  3903. /// 团组模块 - 出入境费用 - Add And Update
  3904. /// </summary>
  3905. /// <returns></returns>
  3906. [HttpPost]
  3907. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3908. public async Task<IActionResult> PostEnterExitCostOperate(EnterExitCostOperateDto dto)
  3909. {
  3910. try
  3911. {
  3912. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  3913. if (data.Code != 0)
  3914. {
  3915. return Ok(JsonView(false, data.Msg));
  3916. }
  3917. //生成默认文件pdf并且通知人员
  3918. var fileView = await GeneralMethod.EnterExitCostDownload(new EnterExitCostDownloadDto()
  3919. {
  3920. DiId = dto.DiId,
  3921. ExportType = 1,
  3922. SubTypeId = 1005
  3923. }, "pdf");
  3924. //发送通知
  3925. string fileUrl = (string)fileView.Data.GetType().GetProperty("Url").GetValue(fileView.Data, null);
  3926. int sign = (int)data.Data.GetType().GetProperty("sign").GetValue(data.Data, null);
  3927. string md5Sign = GeneralMethod.Encrypt($"{sign}&fileName={fileUrl}");
  3928. string url = string.Format("http://oa.pan-american-intl.com:4399/#/Sankunginfo?sign={0}&fileName={1}", sign,fileUrl);
  3929. await AppNoticeLibrary.SendUserMsg_GroupShare_ToGM(dto.DiId, new List<string>() { "208","233","21" }, dto.UserId, url);
  3930. return Ok(JsonView(true, data.Msg, data.Data));
  3931. }
  3932. catch (Exception ex)
  3933. {
  3934. return Ok(JsonView(false, ex.Message));
  3935. }
  3936. }
  3937. /// <summary>
  3938. /// 团组模块 - 出入境费用 - Confirm 费用
  3939. /// </summary>
  3940. /// <returns></returns>
  3941. [HttpPost]
  3942. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3943. public async Task<IActionResult> PostEnterExitCostIsConfirm(ConfirmCostDto dto)
  3944. {
  3945. //TODO:测试完毕需把对应的用户ID更改
  3946. //1、数据表添加字段
  3947. //2、更改字段接口()
  3948. var _view = await _enterExitCostRep.ConfirmCost(dto);
  3949. //3、确认成功 给财务发送消息
  3950. if (_view.Code == 200)
  3951. {
  3952. if (dto.Type == 1)
  3953. {
  3954. int diId = _enterExitCostRep._sqlSugar.Queryable<Grp_EnterExitCost>().Where(x => x.IsDel == 0 && x.Id == dto.Id).First()?.DiId ?? 0;
  3955. await AppNoticeLibrary.SendUserMsg_GroupShare_ToFinance(diId);
  3956. }
  3957. }
  3958. return Ok(_view);
  3959. }
  3960. /// <summary>
  3961. /// 团组模块 - 出入境费用 - File downlaod
  3962. /// </summary>
  3963. /// <param name="dto"></param>
  3964. /// <returns></returns>
  3965. [HttpPost]
  3966. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3967. public async Task<IActionResult> PostEnterExitCostDownload(EnterExitCostDownloadDto dto)
  3968. {
  3969. try
  3970. {
  3971. if (dto.DiId < 1)
  3972. {
  3973. return Ok(JsonView(false, "请传入有效的DiId参数;"));
  3974. }
  3975. if (dto.ExportType < 1)
  3976. {
  3977. return Ok(JsonView(false, "请传入有效的ExportType参数; 1 明细表 2 表格"));
  3978. }
  3979. if (dto.SubTypeId < 1)
  3980. {
  3981. return Ok(JsonView(false, @"请传入有效的SubTypeId参数;
  3982. 1 明细表 --> 1005(默认明细表) 1006(因公出国(境)经费测算明细表) 1007(四川省商务厅出国经费财政先行审核表)
  3983. 2 表格 --> 1008(派员单位出(境)任务和预算审批意见表) 1009(省级单位出(境)经费报销单)
  3984. 3 团组成员名单 1 团组成员名单"));
  3985. }
  3986. var _EnterExitCosts = _sqlSugar.Queryable<Grp_EnterExitCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  3987. var _DayAndCosts = _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  3988. if (_EnterExitCosts == null)
  3989. {
  3990. return Ok(JsonView(false, "该团组未填写出入境费用;"));
  3991. }
  3992. //数据源
  3993. List<Grp_DayAndCost> dac1 = _DayAndCosts.Where(it => it.Type == 1).ToList(); //住宿费
  3994. List<Grp_DayAndCost> dac2 = _DayAndCosts.Where(it => it.Type == 2).ToList(); //伙食费
  3995. List<Grp_DayAndCost> dac3 = _DayAndCosts.Where(it => it.Type == 3).ToList(); //公杂费
  3996. List<Grp_DayAndCost> dac4 = _DayAndCosts.Where(it => it.Type == 4).ToList(); //培训费
  3997. var _CurrDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  3998. var _DelegationInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == dto.DiId).First();
  3999. var DeleClientList = _sqlSugar.Queryable<Grp_TourClientList>()
  4000. .LeftJoin<Crm_DeleClient>((tcl, dc) => tcl.ClientId == dc.Id && dc.IsDel == 0)
  4001. .LeftJoin<Crm_CustomerCompany>((tcl, dc, cc) => dc.CrmCompanyId == cc.Id && dc.IsDel == 0)
  4002. .Where((tcl, dc, cc) => tcl.IsDel == 0 && tcl.DiId == dto.DiId)
  4003. .Select((tcl, dc, cc) => new
  4004. {
  4005. Name = dc.LastName + dc.FirstName,
  4006. Sex = dc.Sex,
  4007. Birthday = dc.BirthDay,
  4008. Company = cc.CompanyFullName,
  4009. Job = dc.Job
  4010. })
  4011. .ToList();
  4012. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  4013. var threeCodes = _sqlSugar.Queryable<Res_ThreeCode>().Where(it => it.IsDel == 0).ToList();
  4014. var placeData = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(it => it.IsDel == 0).ToList();
  4015. var rateDatas = await _EnterExitCosts.CurrencyRemark.SplitExchangeRate();
  4016. _DelegationInfo.VisitCountry = _DelegationInfo.VisitCountry.Replace("|", "、");
  4017. if (dto.ExportType == 1) //明细表
  4018. {
  4019. if (dto.SubTypeId == 1005) //1005(默认明细表)
  4020. {
  4021. //获取模板
  4022. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/出入境费用表模板.docx");
  4023. //载入模板
  4024. Document doc = new Document(tempPath);
  4025. DocumentBuilder builder = new DocumentBuilder(doc);
  4026. //利用键值对存放数据
  4027. Dictionary<string, string> dic = new Dictionary<string, string>();
  4028. decimal stayFeeTotal = _DayAndCosts.Where(it => it.Type == 1).Sum(it => it.SubTotal); // 住宿费
  4029. decimal mealsFeeTotal = _DayAndCosts.Where(it => it.Type == 2).Sum(it => it.SubTotal); // 伙食费费
  4030. decimal miscellaneousFeeTotal = _DayAndCosts.Where(it => it.Type == 3).Sum(it => it.SubTotal); // 公杂费
  4031. decimal tainFeeTotal = _DayAndCosts.Where(it => it.Type == 4).Sum(it => it.SubTotal); // 培训费
  4032. decimal insidePayTotal = _EnterExitCosts.InsidePay;
  4033. //境内费用(其他费用)
  4034. if (_EnterExitCosts.ChoiceOne == 1)
  4035. {
  4036. string row1_1 = "";
  4037. if (_EnterExitCosts.Visa > 0)
  4038. {
  4039. //insidePayTotal += _EnterExitCosts.Visa;
  4040. row1_1 = $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 人民币/人";
  4041. if (!string.IsNullOrEmpty(_EnterExitCosts.VisaRemark))
  4042. {
  4043. row1_1 += $"\t签证费用描述: : {_EnterExitCosts.VisaRemark} 人民币/人";
  4044. }
  4045. }
  4046. string row1_2 = "";
  4047. if (_EnterExitCosts.YiMiao > 0)
  4048. {
  4049. //insidePayTotal += _EnterExitCosts.YiMiao;
  4050. row1_2 += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")} 人民币/人";
  4051. }
  4052. if (_EnterExitCosts.HeSuan > 0)
  4053. {
  4054. //insidePayTotal += _EnterExitCosts.HeSuan;
  4055. row1_2 += $"核酸检测费:{_EnterExitCosts.HeSuan.ToString("#0.00")} 人民币/人";
  4056. }
  4057. if (_EnterExitCosts.Service > 0)
  4058. {
  4059. //insidePayTotal += _EnterExitCosts.Service;
  4060. row1_2 += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")} 人民币/人";
  4061. }
  4062. string row1_3 = "";
  4063. if (_EnterExitCosts.Safe > 0)
  4064. {
  4065. //insidePayTotal += _EnterExitCosts.Safe;
  4066. row1_3 += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")} 人民币/人";
  4067. }
  4068. if (_EnterExitCosts.Ticket > 0)
  4069. {
  4070. //insidePayTotal += _EnterExitCosts.Ticket;
  4071. row1_3 += $"参展门票:{_EnterExitCosts.Ticket.ToString("#0.00")} 人民币/人";
  4072. }
  4073. string row1 = "";
  4074. if (!string.IsNullOrEmpty(row1_1)) row1 += $"{row1_1}\r\n";
  4075. if (!string.IsNullOrEmpty(row1_2)) row1 += $"{row1_2}\r\n";
  4076. if (!string.IsNullOrEmpty(row1_3)) row1 += $"{row1_3}";
  4077. dic.Add("InsidePay", insidePayTotal.ToString("#0.00"));
  4078. dic.Add("Row1Str", row1);
  4079. }
  4080. string airTotalStr = string.Empty,
  4081. airPriceStr = string.Empty;
  4082. //经济舱
  4083. if (_EnterExitCosts.SumJJC == 1)
  4084. {
  4085. airTotalStr += $"{_EnterExitCosts.OutsideJJPay.ToString("#0.00")}元/人(经济舱)";
  4086. airPriceStr += $"{_EnterExitCosts.AirJJ.ToString("#0.00")}元/人(经济舱)";
  4087. }
  4088. //公务舱
  4089. if (_EnterExitCosts.SumGWC == 1)
  4090. {
  4091. airTotalStr += $" {_EnterExitCosts.OutsideGWPay.ToString("#0.00")} 元/人(公务舱)";
  4092. airPriceStr += $" {_EnterExitCosts.AirGW.ToString("#0.00")} 元/人(公务舱)";
  4093. }
  4094. //头等舱
  4095. if (_EnterExitCosts.SumTDC == 1)
  4096. {
  4097. airTotalStr += $" {_EnterExitCosts.OutsideTDPay.ToString("#0.00")} 元/人(头等舱)";
  4098. airPriceStr += $" {_EnterExitCosts.AirTD.ToString("#0.00")} 元/人(头等舱)";
  4099. }
  4100. dic.Add("AirTotalStr", airTotalStr);
  4101. dic.Add("AirPriceStr", airPriceStr);
  4102. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4103. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4104. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4105. int table1Row = 0,
  4106. table2Row = 0,
  4107. table3Row = 0,
  4108. table4Row = 0;
  4109. //住宿费
  4110. if (_EnterExitCosts.ChoiceThree == 1)
  4111. {
  4112. dic.Add("SubZS", stayFeeTotal.ToString("#0.00"));
  4113. table1Row = dac1.Count;
  4114. #region 填充word表格内容
  4115. for (int i = 0; i < dac1.Count; i++)
  4116. {
  4117. Grp_DayAndCost dac = dac1[i];
  4118. if (dac == null) continue;
  4119. builder.MoveToCell(0, i, 0, 0);
  4120. builder.Write("第" + dac.Days.ToString() + "晚:");
  4121. builder.MoveToCell(0, i, 1, 0);
  4122. //builder.Write(placeData.Find(it => it.Id == dac.NationalTravelFeeId)?.Country ?? "Unknown");
  4123. //builder.Write(dac.Place == null ? "" : dac.Place);
  4124. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4125. builder.MoveToCell(0, i, 2, 0);
  4126. builder.Write("费用标准:");
  4127. string curr = "";
  4128. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4129. if (currData != null)
  4130. {
  4131. curr = currData.Name;
  4132. }
  4133. builder.MoveToCell(0, i, 3, 0);
  4134. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4135. builder.MoveToCell(0, i, 4, 0);
  4136. builder.Write("费用小计:");
  4137. builder.MoveToCell(0, i, 5, 0);
  4138. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4139. }
  4140. #endregion
  4141. }else dic.Add("SubZS","0.00");
  4142. //删除多余行
  4143. while (table1.Rows.Count > table1Row)
  4144. {
  4145. table1.Rows.RemoveAt(table1Row);
  4146. }
  4147. //伙食费
  4148. Aspose.Words.Tables.Table table2 = allTables[1] as Aspose.Words.Tables.Table;
  4149. if (_EnterExitCosts.ChoiceFour == 1)
  4150. {
  4151. dic.Add("SubHS", mealsFeeTotal.ToString("#0.00"));
  4152. table2Row = dac2.Count;
  4153. #region 填充word表格内容
  4154. for (int i = 0; i < dac2.Count; i++)
  4155. {
  4156. Grp_DayAndCost dac = dac2[i];
  4157. if (dac == null) continue;
  4158. builder.MoveToCell(1, i, 0, 0);
  4159. builder.Write("第" + dac.Days.ToString() + "天:");
  4160. builder.MoveToCell(1, i, 1, 0);
  4161. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4162. builder.MoveToCell(1, i, 2, 0);
  4163. builder.Write("费用标准:");
  4164. string curr = "";
  4165. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4166. if (currData != null)
  4167. {
  4168. curr = currData.Name;
  4169. }
  4170. builder.MoveToCell(1, i, 3, 0);
  4171. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4172. builder.MoveToCell(1, i, 4, 0);
  4173. builder.Write("费用小计:");
  4174. builder.MoveToCell(1, i, 5, 0);
  4175. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4176. }
  4177. #endregion
  4178. }else dic.Add("SubHS","0.00");
  4179. //删除多余行
  4180. while (table2.Rows.Count > table2Row)
  4181. {
  4182. table2.Rows.RemoveAt(table2Row);
  4183. }
  4184. //公杂费
  4185. Aspose.Words.Tables.Table table3 = allTables[2] as Aspose.Words.Tables.Table;
  4186. if (_EnterExitCosts.ChoiceFive == 1)
  4187. {
  4188. dic.Add("SubGZF", miscellaneousFeeTotal.ToString("#0.00"));
  4189. table3Row = dac3.Count;
  4190. #region 填充word表格内容
  4191. for (int i = 0; i < dac3.Count; i++)
  4192. {
  4193. Grp_DayAndCost dac = dac3[i];
  4194. if (dac == null) continue;
  4195. builder.MoveToCell(2, i, 0, 0);
  4196. builder.Write("第" + dac.Days.ToString() + "天:");
  4197. builder.MoveToCell(2, i, 1, 0);
  4198. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4199. builder.MoveToCell(2, i, 2, 0);
  4200. builder.Write("费用标准:");
  4201. string curr = "";
  4202. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4203. if (currData != null)
  4204. {
  4205. curr = currData.Name;
  4206. }
  4207. builder.MoveToCell(2, i, 3, 0);
  4208. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4209. builder.MoveToCell(2, i, 4, 0);
  4210. builder.Write("费用小计:");
  4211. builder.MoveToCell(2, i, 5, 0);
  4212. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4213. }
  4214. //删除多余行
  4215. while (table3.Rows.Count > table3Row)
  4216. {
  4217. table3.Rows.RemoveAt(table3Row);
  4218. }
  4219. #endregion
  4220. }else dic.Add("SubGZF", "0.00");
  4221. //删除多余行
  4222. while (table3.Rows.Count > table3Row)
  4223. {
  4224. table3.Rows.RemoveAt(table3Row);
  4225. }
  4226. //培训费
  4227. Aspose.Words.Tables.Table table4 = allTables[3] as Aspose.Words.Tables.Table;
  4228. if (_EnterExitCosts.ChoiceSix == 1)
  4229. {
  4230. string pxStr = $"六、培训费合计: {tainFeeTotal.ToString("#0.00")} 元/人";
  4231. dic.Add("SubPX", pxStr);
  4232. table4Row = dac4.Count;
  4233. #region 填充word表格内容
  4234. for (int i = 0; i < dac4.Count; i++)
  4235. {
  4236. Grp_DayAndCost dac = dac4[i];
  4237. if (dac == null) continue;
  4238. builder.MoveToCell(3, i, 0, 0);
  4239. builder.Write("第" + dac.Days.ToString() + "天:");
  4240. builder.MoveToCell(3, i, 1, 0);
  4241. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4242. builder.MoveToCell(3, i, 2, 0);
  4243. builder.Write("费用标准:");
  4244. string curr = "";
  4245. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  4246. if (currData != null)
  4247. {
  4248. curr = currData.Name;
  4249. }
  4250. builder.MoveToCell(3, i, 3, 0);
  4251. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4252. builder.MoveToCell(3, i, 4, 0);
  4253. builder.Write("费用小计:");
  4254. builder.MoveToCell(3, i, 5, 0);
  4255. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4256. }
  4257. #endregion
  4258. }
  4259. //else dic.Add("SubPX","0.00");
  4260. //删除多余行
  4261. while (table4.Rows.Count > table4Row)
  4262. {
  4263. table4.Rows.RemoveAt(table4Row);
  4264. }
  4265. decimal otherFeeTotal = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal;
  4266. decimal subJJC = 0.00M,
  4267. subGWC = 0.00M,
  4268. subTDC = 0.00M;
  4269. //经济舱
  4270. if (_EnterExitCosts.SumJJC == 1) subJJC = otherFeeTotal + _EnterExitCosts.OutsideJJPay;
  4271. //公务舱
  4272. if (_EnterExitCosts.SumGWC == 1) subGWC = otherFeeTotal + _EnterExitCosts.OutsideGWPay;
  4273. //头等舱
  4274. if (_EnterExitCosts.SumTDC == 1) subTDC = otherFeeTotal + _EnterExitCosts.OutsideTDPay;
  4275. dic.Add("SubJJC", subJJC.ToString("#0.00"));
  4276. dic.Add("SubGWC", subGWC.ToString("#0.00"));
  4277. dic.Add("SubTDC", subTDC.ToString("#0.00"));
  4278. #region 填充word模板书签内容
  4279. foreach (var key in dic.Keys)
  4280. {
  4281. builder.MoveToBookmark(key);
  4282. builder.Write(dic[key]);
  4283. }
  4284. #endregion
  4285. //文件名
  4286. string strFileName = $"{_DelegationInfo.TeamName}出入境费用{Guid.NewGuid().ToString()}.docx";
  4287. AsposeHelper.removewatermark_v2180();
  4288. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4289. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4290. return Ok(JsonView(true, "成功", new { Url = url }));
  4291. }
  4292. else if (dto.SubTypeId == 1006)//1006(因公出国(境)经费测算明细表)
  4293. {
  4294. //获取模板
  4295. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/因公出国(境)经费测算明细表.docx");
  4296. //载入模板
  4297. Document doc = new Document(tempPath);
  4298. DocumentBuilder builder = new DocumentBuilder(doc);
  4299. Dictionary<string, string> dic = new Dictionary<string, string>();
  4300. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4301. {
  4302. List<string> list = new List<string>();
  4303. try
  4304. {
  4305. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4306. foreach (var item in spilitArr)
  4307. {
  4308. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4309. var depCode = spDotandEmpty[2].Substring(0, 3);
  4310. var arrCode = spDotandEmpty[2].Substring(3, 3);
  4311. string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  4312. arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  4313. list.Add(depName);
  4314. list.Add(arrName);
  4315. }
  4316. list = list.Distinct().ToList();
  4317. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4318. }
  4319. catch (Exception)
  4320. {
  4321. dic.Add("ReturnCode", "行程录入不正确!");
  4322. }
  4323. }
  4324. else
  4325. {
  4326. dic.Add("ReturnCode", "未录入行程!");
  4327. }
  4328. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4329. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4330. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4331. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4332. {
  4333. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4334. dic.Add("Day", sp.Days.ToString());
  4335. }
  4336. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4337. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4338. //var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  4339. //dic.Add("Names", Names);
  4340. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4341. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4342. decimal dac1totalPrice = 0.00M;
  4343. int accommodationStartIndex = 6, foodandotherStartIndex = 22;
  4344. foreach (var dac in dac1)
  4345. {
  4346. if (dac.SubTotal == 0.00M)
  4347. {
  4348. continue;
  4349. }
  4350. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  4351. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  4352. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4353. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4354. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  4355. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  4356. builder.Write(currency);//币种
  4357. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  4358. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4359. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  4360. builder.Write("");//人数
  4361. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  4362. builder.Write("");//天数
  4363. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  4364. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4365. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  4366. decimal rate = 0.00M;
  4367. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  4368. builder.Write(rate.ToString("#0.0000"));//汇率
  4369. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4370. decimal rbmPrice = dac.SubTotal;
  4371. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4372. accommodationStartIndex++;
  4373. dac1totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  4374. }
  4375. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4376. for (int i = 21; i > (dac1.Count == 0 ? 1 : dac1.Count) + 6; i--)
  4377. {
  4378. table1.Rows.RemoveAt(i - 1);
  4379. foodandotherStartIndex--;
  4380. }
  4381. if (dac2.Count == dac3.Count)//国家 币种 金额
  4382. {
  4383. for (int i = 0; i < dac2.Count; i++)
  4384. {
  4385. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4386. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4387. }
  4388. }
  4389. decimal dac2totalPrice = 0.00M;
  4390. foreach (var dac in dac2)
  4391. {
  4392. if (dac.SubTotal == 0)
  4393. {
  4394. continue;
  4395. }
  4396. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  4397. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4398. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  4399. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  4400. builder.Write(currency);//币种
  4401. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  4402. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4403. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  4404. builder.Write("");//人数
  4405. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  4406. builder.Write("");//天数
  4407. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  4408. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4409. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  4410. decimal rate = 0.00M;
  4411. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  4412. builder.Write(rate.ToString("#0.0000"));//汇率
  4413. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  4414. decimal rbmPrice = dac.SubTotal;
  4415. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4416. foodandotherStartIndex++;
  4417. dac2totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  4418. }
  4419. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  4420. for (int i = foodandotherStartIndex + (15 - dac2.Count); i > (dac2.Count == 0 ? 1 : 0) + foodandotherStartIndex; i--)
  4421. {
  4422. table1.Rows.RemoveAt(i - 1);
  4423. }
  4424. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4425. string otherFeeStr = "";
  4426. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  4427. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  4428. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  4429. if (otherFeeStr.Length > 0)
  4430. {
  4431. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  4432. otherFeeStr = $"({otherFeeStr})";
  4433. dic.Add("OtherFeeStr", otherFeeStr);
  4434. }
  4435. //总计
  4436. decimal allPrice = dac1totalPrice + dac2totalPrice + _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket;
  4437. //国际旅费
  4438. string outsideAir = string.Empty;
  4439. string allPriceAir = string.Empty;
  4440. if (_EnterExitCosts.SumJJC == 1)
  4441. {
  4442. outsideAir += string.Format(@"经济舱:{0} 元/人;", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4443. allPriceAir += string.Format(@"经济舱:{0} 元/人;", (allPrice + _EnterExitCosts.OutsideJJPay).ToString("#0.00"));
  4444. }
  4445. if (_EnterExitCosts.SumGWC == 1)
  4446. {
  4447. outsideAir += string.Format(@"公务舱:{0} 元/人;", _EnterExitCosts.AirGW.ToString("#0.00"));
  4448. allPriceAir += string.Format(@"公务舱:{0} 元/人;", (allPrice + _EnterExitCosts.OutsideGWPay).ToString("#0.00"));
  4449. }
  4450. if (_EnterExitCosts.SumTDC == 1)
  4451. {
  4452. outsideAir += string.Format(@"头等舱:{0} 元/人;", _EnterExitCosts.AirTD.ToString("#0.00"));
  4453. allPriceAir += string.Format(@"头等舱:{0} 元/人;", (allPrice + _EnterExitCosts.OutsideTDPay).ToString("#0.00"));
  4454. }
  4455. dic.Add("InTravelPrice", $"({outsideAir})");
  4456. dic.Add("FinalSumPrice", $"({allPriceAir})");
  4457. //dic.Add("VisaPay", _EnterExitCosts.Visa.ToString("#0.00"));
  4458. //dic.Add("SafePay", _EnterExitCosts.Safe.ToString("#0.00"));
  4459. //dic.Add("YiMiao", _EnterExitCosts.YiMiao.ToString("#0.00"));
  4460. foreach (var key in dic.Keys)
  4461. {
  4462. builder.MoveToBookmark(key);
  4463. builder.Write(dic[key]);
  4464. }
  4465. //模板文件名
  4466. string strFileName = $"{_DelegationInfo.TeamName}因公出国(境)经费测算明细表{DateTime.UtcNow.ToString("yyyyMMddHHmmss")}.docx";
  4467. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4468. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4469. return Ok(JsonView(true, "成功", new { Url = url }));
  4470. }
  4471. else if (dto.SubTypeId == 1007) //1007(四川省商务厅出国经费财政先行审核表)
  4472. {
  4473. //获取模板
  4474. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/四川省商务厅出国经费财政先行审核表.xls");
  4475. //载入模板
  4476. WorkbookDesigner designer = new WorkbookDesigner();
  4477. designer.Workbook = new Workbook(tempPath);
  4478. Dictionary<string, string> dic = new Dictionary<string, string>();
  4479. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4480. {
  4481. List<string> list = new List<string>();
  4482. try
  4483. {
  4484. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4485. foreach (var item in spilitArr)
  4486. {
  4487. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4488. var depCode = spDotandEmpty[2].Substring(0, 3);
  4489. var arrCode = spDotandEmpty[2].Substring(3, 3);
  4490. string depName = threeCodes.Find(it => it.Three.Equals(depCode))?.City ?? "Unknwon",
  4491. arrName = threeCodes.Find(it => it.Three.Equals(arrCode))?.City ?? "Unknown";
  4492. list.Add(depName);
  4493. list.Add(arrName);
  4494. }
  4495. list = list.Distinct().ToList();
  4496. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4497. }
  4498. catch (Exception)
  4499. {
  4500. dic.Add("ReturnCode", "行程录入不正确!");
  4501. }
  4502. }
  4503. else
  4504. {
  4505. dic.Add("ReturnCode", "未录入行程!");
  4506. }
  4507. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4508. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4509. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4510. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4511. {
  4512. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4513. dic.Add("Day", sp.Days.ToString());
  4514. }
  4515. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4516. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4517. var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  4518. designer.SetDataSource("ClientUnit", _DelegationInfo.ClientUnit);
  4519. designer.SetDataSource("VisitCountry", _DelegationInfo.VisitCountry);
  4520. designer.SetDataSource("Group", _DelegationInfo.TeamName);
  4521. designer.SetDataSource("ClientUnitTitle", _DelegationInfo.TeamName);
  4522. designer.SetDataSource("Name", Names);
  4523. designer.SetDataSource("VisitStartDate", dic["VisitStartDate"] + "-" + dic["VisitEndDate"]);
  4524. designer.SetDataSource("Day", dic["Day"] + "天");
  4525. designer.SetDataSource("ReturnCode", dic["ReturnCode"]);
  4526. designer.SetDataSource("ReturnCodeAir", dic["ReturnCodeAir"]);
  4527. int startIndex = 10;
  4528. const int startIndexcopy = 10;
  4529. if (dac2.Count == dac3.Count)//国家 币种 金额
  4530. {
  4531. for (int i = 0; i < dac2.Count; i++)
  4532. {
  4533. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4534. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4535. }
  4536. }
  4537. DataTable dtdac1 = new DataTable();
  4538. List<string> place = new List<string>();
  4539. dtdac1.Columns.AddRange(new DataColumn[] {
  4540. new DataColumn(){ ColumnName = "city"},
  4541. new DataColumn(){ ColumnName = "curr"},
  4542. new DataColumn(){ ColumnName = "criterion"},
  4543. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  4544. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  4545. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  4546. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  4547. new DataColumn(){ ColumnName = "costRMB", DataType = typeof(decimal) },
  4548. });
  4549. DataTable dtdac2 = new DataTable();
  4550. dtdac2.Columns.AddRange(new DataColumn[] {
  4551. new DataColumn(){ ColumnName = "city"},
  4552. new DataColumn(){ ColumnName = "curr"},
  4553. new DataColumn(){ ColumnName = "criterion"},
  4554. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  4555. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  4556. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  4557. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  4558. new DataColumn(){ ColumnName = "costRMB",DataType = typeof(decimal)},
  4559. });
  4560. dtdac1.TableName = "tb1";
  4561. dtdac2.TableName = "tb2";
  4562. decimal dac1totalPrice = 0.00M, dac2totalPrice = 0.00M;
  4563. foreach (var item in dac1)
  4564. {
  4565. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  4566. if (place.Contains(item.Place))
  4567. {
  4568. continue;
  4569. }
  4570. DataRow row = dtdac1.NewRow();
  4571. row["city"] = item.Place;
  4572. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  4573. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4574. row["curr"] = currency;
  4575. row["rate"] = rate.ToString("#0.0000");
  4576. row["criterion"] = item.Cost.ToString("#0.00");
  4577. row["number"] = 1;
  4578. row["day"] = dac1.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  4579. //row["costRMB"] = rbmPrice;
  4580. dtdac1.Rows.Add(row);
  4581. place.Add(item.Place);
  4582. }
  4583. place = new List<string>();
  4584. foreach (var item in dac2)
  4585. {
  4586. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  4587. if (place.Contains(item.Place))
  4588. {
  4589. continue;
  4590. }
  4591. DataRow row = dtdac2.NewRow();
  4592. row["city"] = item.Place;
  4593. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  4594. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4595. row["curr"] = currency;
  4596. row["rate"] = rate.ToString("#0.0000");
  4597. row["criterion"] = item.Cost.ToString("#0.00");
  4598. row["number"] = 1;
  4599. row["day"] = dac2.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  4600. //row["cost"] = item.SubTotal;
  4601. //row["costRMB"] = rbmPrice;
  4602. dtdac2.Rows.Add(row);
  4603. place.Add(item.Place);
  4604. //dac2totalPrice += rbmPrice;
  4605. }
  4606. dac1totalPrice = dac1.Sum(it => it.SubTotal);
  4607. dac2totalPrice = dac2.Sum(it => it.SubTotal);
  4608. designer.SetDataSource("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4609. designer.SetDataSource("dac2totalPrice", dac2totalPrice);
  4610. designer.SetDataSource("cityTranffic", @$"其中:国外城市间机票费: {_EnterExitCosts.CityTranffic.ToString("#0.00")} 元");
  4611. designer.SetDataSource("sumCityTranffic", @$"{_EnterExitCosts.CityTranffic.ToString("#0.00")} ");
  4612. string cell4Str1 = string.Empty;
  4613. if (_EnterExitCosts.SumJJC == 1) cell4Str1 += $"经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 元/人;";
  4614. if (_EnterExitCosts.SumGWC == 1) cell4Str1 += $"公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")} 元/人;";
  4615. if (_EnterExitCosts.SumTDC == 1) cell4Str1 += $"公务舱:{_EnterExitCosts.AirTD.ToString("#0.00")} 元/人;";
  4616. string cell4Str = $" 4.国际旅费:{cell4Str1}";
  4617. string cellStr = $" 5.其他费用(";
  4618. if (_EnterExitCosts.Visa > 0) cellStr += $"签证费:{_EnterExitCosts.Visa.ToString("#0.00")}元,";
  4619. if (_EnterExitCosts.YiMiao > 0) cellStr += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")}元,";
  4620. if (_EnterExitCosts.HeSuan > 0) cellStr += $"核酸费:{_EnterExitCosts.HeSuan.ToString("#0.00")}元,";
  4621. if (_EnterExitCosts.Safe > 0) cellStr += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")}元,";
  4622. if (_EnterExitCosts.Ticket > 0) cellStr += $"参展门票费:{_EnterExitCosts.Ticket.ToString("#0.00")}元,";
  4623. if (_EnterExitCosts.Service > 0) cellStr += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")}元,";
  4624. if (cellStr.Length > 8)
  4625. {
  4626. cellStr = cellStr.Substring(0, cellStr.Length - 1);
  4627. }
  4628. cellStr += ")";
  4629. decimal otherFee = _EnterExitCosts.Visa + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.Service;
  4630. decimal s = dac1totalPrice + dac2totalPrice + _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsideGWPay + otherFee;
  4631. decimal pxFee = dac4.Sum(it => it.Cost);
  4632. decimal glvFee = _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsideGWPay;
  4633. string celllastStr1 = "";
  4634. if (dac1totalPrice > 0) celllastStr1 += $"住宿费 {dac1totalPrice.ToString("#0.00")} 元";
  4635. if (dac2totalPrice > 0) celllastStr1 += $",伙食费和公杂费 {dac2totalPrice.ToString("#0.00")} 元";
  4636. if (pxFee > 0) celllastStr1 += $",培训费 {pxFee.ToString("#0.00")} 元";
  4637. celllastStr1 += $",国际旅费 元";
  4638. if (otherFee > 0) celllastStr1 += $",其他费用 {otherFee.ToString("#0.00")} 元";
  4639. string celllastStr = $" 经审核,{celllastStr1},本次出国经费预算合计为 元。其中:市本级安排 。";
  4640. designer.SetDataSource("cell4Str", cell4Str);
  4641. designer.SetDataSource("cellStr", cellStr);
  4642. designer.SetDataSource("cellSum", (_EnterExitCosts.Visa + _EnterExitCosts.Safe).ToString("#0.00"));
  4643. designer.SetDataSource("cellSum4", (_EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsideGWPay).ToString("#0.00"));
  4644. designer.SetDataSource("celllastStr", celllastStr);
  4645. Workbook wb = designer.Workbook;
  4646. var sheet = wb.Worksheets[0];
  4647. //绑定datatable数据集
  4648. designer.SetDataSource(dtdac1);
  4649. designer.SetDataSource(dtdac2);
  4650. designer.Process();
  4651. var rowStart = dtdac1.Rows.Count;
  4652. while (rowStart > 0)
  4653. {
  4654. sheet.Cells[startIndex, 8].Formula = $"=G{startIndex + 1} * H{startIndex + 1}";
  4655. sheet.Cells[startIndex, 6].Formula = $"=E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4656. startIndex++;
  4657. rowStart--;
  4658. }
  4659. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + 1}: I{startIndex})";
  4660. startIndex += 1; //总计行
  4661. rowStart = dtdac2.Rows.Count;
  4662. while (rowStart > 0)
  4663. {
  4664. sheet.Cells[startIndex, 8].Formula = $"= G{startIndex + 1} * H{startIndex + 1}";
  4665. sheet.Cells[startIndex, 6].Formula = $"= E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4666. startIndex++;
  4667. rowStart--;
  4668. }
  4669. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + dtdac1.Rows.Count + 2}: I{startIndex})";
  4670. wb.CalculateFormula(true);
  4671. //模板文件名
  4672. string strFileName = $"{_DelegationInfo.TeamName}-四川省商务厅出国经费财政先行审核表{DateTime.Now.ToString("yyyyMMddHHmmss")}.xls";
  4673. designer.Workbook.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4674. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4675. return Ok(JsonView(true, "成功", new { Url = url }));
  4676. }
  4677. else if (dto.SubTypeId == 1066) //成都市因公临时出国任务和预算审批意见表(外专培训团专用)
  4678. {
  4679. //获取模板
  4680. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/成都市因公临时出国任务和预算审批意见表.docx");
  4681. //载入模板
  4682. Document doc = new Document(tempPath);
  4683. DocumentBuilder builder = new DocumentBuilder(doc);
  4684. Dictionary<string, string> dic = new Dictionary<string, string>();
  4685. dic.Add("GroupName", _DelegationInfo.TeamName);
  4686. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4687. string missionLeader = ""; //团负责人默认接团客户名单第一个人
  4688. string missionLeaderJob = "";//负责人job
  4689. int groupNumber = 0; //团人数
  4690. if (DeleClientList.Count > 0)
  4691. {
  4692. missionLeader = DeleClientList[0]?.Name ?? "";
  4693. missionLeaderJob = DeleClientList[0]?.Job ?? "";
  4694. }
  4695. dic.Add("MissionLeader", missionLeader); //团负责人
  4696. dic.Add("MissionLeaderJob", missionLeaderJob); //团负责人job
  4697. dic.Add("GroupNumber", _DelegationInfo.VisitPNumber.ToString()); //团人数
  4698. #region MyRegion
  4699. //if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4700. //{
  4701. // List<string> list = new List<string>();
  4702. // try
  4703. // {
  4704. // var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4705. // foreach (var item in spilitArr)
  4706. // {
  4707. // var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4708. // var depCode = spDotandEmpty[2].Substring(0, 3);
  4709. // var arrCode = spDotandEmpty[2].Substring(3, 3);
  4710. // string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  4711. // arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  4712. // list.Add(depName);
  4713. // list.Add(arrName);
  4714. // }
  4715. // list = list.Distinct().ToList();
  4716. // dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4717. // }
  4718. // catch (Exception)
  4719. // {
  4720. // dic.Add("ReturnCode", "行程录入不正确!");
  4721. // }
  4722. //}
  4723. //else
  4724. //{
  4725. // dic.Add("ReturnCode", "未录入行程!");
  4726. //}
  4727. List<string> countrys = _groupRepository.GroupSplitCountry(_DelegationInfo.VisitCountry);
  4728. dic.Add("ReturnCode", string.Join("、", countrys));
  4729. #endregion
  4730. //dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4731. //dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4732. //dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4733. //if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4734. //{
  4735. // TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4736. // dic.Add("Day", sp.Days.ToString());
  4737. //}
  4738. dic.Add("Day", _DelegationInfo.VisitDays.ToString());
  4739. dic.Add("CultivateDay", dac4.Count.ToString()); //培训天数
  4740. // dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4741. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4742. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4743. //培训人员名单
  4744. int cultivateRowIndex = 7;
  4745. foreach (var item in DeleClientList)
  4746. {
  4747. builder.MoveToCell(0, cultivateRowIndex, 0, 0);
  4748. builder.Write(item.Name);
  4749. builder.MoveToCell(0, cultivateRowIndex, 1, 0);
  4750. builder.Write(item.Sex == 0 ? "男" : item.Sex == 1 ? "女" : "");
  4751. builder.MoveToCell(0, cultivateRowIndex, 2, 0);
  4752. string birthDay = "";
  4753. if (item.Birthday != null)
  4754. {
  4755. DateTime dt = Convert.ToDateTime(item.Birthday);
  4756. birthDay = $"{dt.Year}.{dt.Month}";
  4757. }
  4758. builder.Write(birthDay);
  4759. builder.MoveToCell(0, cultivateRowIndex, 3, 0);
  4760. builder.Write(item.Company);
  4761. builder.MoveToCell(0, cultivateRowIndex, 4, 0);
  4762. builder.Write(item.Job);
  4763. cultivateRowIndex++;
  4764. }
  4765. //删除多余行
  4766. //cultivateRowIndex -= 2;
  4767. int delRows = 10 + 7 - cultivateRowIndex;
  4768. if (delRows > 0)
  4769. {
  4770. for (int i = 0; i < delRows; i++)
  4771. {
  4772. table1.Rows.RemoveAt(cultivateRowIndex);
  4773. //cultivateRowIndex++;
  4774. }
  4775. }
  4776. decimal hotelFeeTotal = dac1.Sum(it => it.SubTotal);//住宿费
  4777. dic.Add("HotelFeeTotal", hotelFeeTotal.ToString("#0.00"));
  4778. decimal mealsFeeTotal = dac2.Sum(it => it.SubTotal);//伙食费
  4779. dic.Add("MealsFeeTotal", mealsFeeTotal.ToString("#0.00"));
  4780. decimal miscellaneousFeeTotal = dac3.Sum(it => it.SubTotal);//公杂费
  4781. dic.Add("MiscellaneousFeeTotal", miscellaneousFeeTotal.ToString("#0.00"));
  4782. decimal trainingFeeTotal = dac4.Sum(it => it.SubTotal);//培训费
  4783. dic.Add("TrainingFeeTotal", trainingFeeTotal.ToString("#0.00"));
  4784. decimal cityTranfficFeeToatal = _EnterExitCosts.CityTranffic; //城市区间交通费
  4785. dic.Add("CityTranfficFeeToatal", cityTranfficFeeToatal.ToString("#0.00"));//
  4786. //其他费用
  4787. decimal otherFeeTotal = _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Service;
  4788. dic.Add("OtherFeeTotal", otherFeeTotal.ToString("#0.00"));
  4789. //其他费用合计
  4790. decimal _otherFeeTotal = hotelFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + trainingFeeTotal + cityTranfficFeeToatal + otherFeeTotal;
  4791. decimal _jjcFeeToatal = _EnterExitCosts.AirJJ + _otherFeeTotal; //经济舱
  4792. decimal _gwcFeeToatal = _EnterExitCosts.AirGW + _otherFeeTotal; //公务舱
  4793. //公务舱合计
  4794. //国际旅费
  4795. string outsideJJ = "";
  4796. string allPriceJJ = "";
  4797. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 0)
  4798. {
  4799. dic.Add("AirFeeTotal", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4800. dic.Add("FeeTotal", _jjcFeeToatal.ToString("#0.00"));
  4801. }
  4802. if (_EnterExitCosts.SumGWC == 1 && _EnterExitCosts.SumJJC == 0)
  4803. {
  4804. dic.Add("AirFeeTotal", _EnterExitCosts.AirGW.ToString("#0.00"));
  4805. dic.Add("FeeTotal", _gwcFeeToatal.ToString("#0.00"));
  4806. }
  4807. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 1)
  4808. {
  4809. string airFeeTotalStr = string.Format(@$"经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")}");
  4810. dic.Add("AirFeeTotal", airFeeTotalStr);
  4811. string feeTotalStr = string.Format(@$"经济舱:{_jjcFeeToatal.ToString("#0.00")} 公务舱:{_gwcFeeToatal.ToString("#0.00")}");
  4812. dic.Add("FeeTotal", feeTotalStr);
  4813. }
  4814. foreach (var key in dic.Keys)
  4815. {
  4816. builder.MoveToBookmark(key);
  4817. builder.Write(dic[key]);
  4818. }
  4819. //模板文件名
  4820. string strFileName = $"{_DelegationInfo.TeamName}-成都市因公临时出国任务和预算审批意见表(外专培训团专用).docx";
  4821. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4822. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4823. return Ok(JsonView(true, "成功", new { Url = url }));
  4824. }
  4825. }
  4826. else if (dto.ExportType == 2) //表格
  4827. {
  4828. //利用键值对存放数据
  4829. Dictionary<string, string> dic = new Dictionary<string, string>();
  4830. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4831. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4832. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4833. dic.Add("Day", sp.Days.ToString());
  4834. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4835. if (dto.SubTypeId == 1008) //1008(派员单位出(境)任务和预算审批意见表)
  4836. {
  4837. //获取模板
  4838. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/派员单位出(境)任务和预算审批意见表.docx");
  4839. //载入模板
  4840. Document doc = new Document(tempPath);
  4841. DocumentBuilder builder = new DocumentBuilder(doc);
  4842. dic.Add("TeamName", _DelegationInfo.TeamName);
  4843. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4844. //dic.Add("TellPhone", _DelegationInfo.TellPhone);
  4845. string missionLeaderName = "",
  4846. missionLeaderJob = "";
  4847. if (DeleClientList.Count > 0)
  4848. {
  4849. missionLeaderName = DeleClientList[0].Name;
  4850. missionLeaderJob = DeleClientList[0].Job;
  4851. }
  4852. dic.Add("MissionLeaderName", missionLeaderName);
  4853. dic.Add("MissionLeaderJob", missionLeaderJob);
  4854. dic.Add("VisitPNumber", _DelegationInfo.VisitPNumber.ToString());
  4855. dic.Add("VisitPurpose", _DelegationInfo.VisitPurpose);
  4856. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4857. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4858. int rowCount = 10;//总人数行
  4859. int startRowIndex = 7; //起始行
  4860. for (int i = 0; i < DeleClientList.Count; i++)
  4861. {
  4862. builder.MoveToCell(0, startRowIndex, 0, 0);
  4863. builder.Write(DeleClientList[i].Name); //出国人员姓名
  4864. builder.MoveToCell(0, startRowIndex, 1, 0);
  4865. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  4866. builder.Write(sex);//性别
  4867. builder.MoveToCell(0, startRowIndex, 2, 0);
  4868. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));//出生年月
  4869. builder.MoveToCell(0, startRowIndex, 3, 0);
  4870. builder.Write(DeleClientList[i].Company);//工作单位
  4871. builder.MoveToCell(0, startRowIndex, 4, 0);
  4872. builder.Write(DeleClientList[i].Job);//职务及级别
  4873. builder.MoveToCell(0, startRowIndex, 5, 0);
  4874. builder.Write("");//人员属性
  4875. builder.MoveToCell(0, startRowIndex, 6, 0);
  4876. builder.Write("");//上次出国时间
  4877. startRowIndex++;
  4878. }
  4879. int nullRow = rowCount - DeleClientList.Count;//空行
  4880. for (int i = 0; i < nullRow; i++)
  4881. {
  4882. table1.Rows.Remove(table1.Rows[startRowIndex]);
  4883. }
  4884. foreach (var key in dic.Keys)
  4885. {
  4886. builder.MoveToBookmark(key);
  4887. builder.Write(dic[key]);
  4888. }
  4889. //模板文件名
  4890. string strFileName = $"派员单位出(境)任务和预算审批意见表.docx";
  4891. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4892. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4893. return Ok(JsonView(true, "成功", new { Url = url }));
  4894. }
  4895. else if (dto.SubTypeId == 1009)//1009(省级单位出(境)经费报销单)
  4896. {
  4897. //获取模板
  4898. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/省级单位出(境)经费报销单.docx");
  4899. //载入模板
  4900. Document doc = new Document(tempPath);
  4901. DocumentBuilder builder = new DocumentBuilder(doc);
  4902. dic.Add("GroupClient", _DelegationInfo.ClientUnit);
  4903. var Names = string.Join("、", DeleClientList.Select(x => x.Name)).TrimEnd('、');
  4904. dic.Add("Names", Names);
  4905. int accommodationRows = 12, foodandotherRows = 12;
  4906. var Dac1currCn = dac1.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4907. var Dac2currCn = dac2.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4908. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4909. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4910. int accommodationStartIndex = 6;
  4911. decimal dac1totalPrice = 0.00M;
  4912. foreach (var dac in dac1)
  4913. {
  4914. if (dac.SubTotal == 0)
  4915. {
  4916. continue;
  4917. }
  4918. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  4919. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  4920. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4921. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  4922. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  4923. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  4924. builder.Write(currency);//币种
  4925. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  4926. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4927. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  4928. builder.Write("");//人数
  4929. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  4930. builder.Write("");//天数
  4931. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  4932. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4933. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  4934. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4935. builder.Write(rate.ToString("#0.0000"));//汇率
  4936. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4937. decimal rbmPrice = rate * dac.SubTotal;
  4938. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4939. accommodationStartIndex++;
  4940. dac1totalPrice += rbmPrice;
  4941. }
  4942. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4943. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4944. builder.Write("小计");
  4945. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4946. builder.Write(dac1totalPrice.ToString("#0.00"));
  4947. accommodationStartIndex++;
  4948. int nullRow = accommodationRows - dac1.Count;
  4949. //删除空行
  4950. //if (nullRow > 0)
  4951. //{
  4952. // int rowIndex = accommodationStartIndex;
  4953. // for (int i = 0; i < nullRow; i++)
  4954. // {
  4955. // Aspose.Words.Tables.Row row = table1.Rows[rowIndex];
  4956. // row.Remove();
  4957. // rowIndex++;
  4958. // }
  4959. //}
  4960. if (dac2.Count == dac3.Count)//国家 币种 金额
  4961. {
  4962. for (int i = 0; i < dac2.Count; i++)
  4963. {
  4964. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4965. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4966. }
  4967. }
  4968. int foodandotherStartIndex = 19;//
  4969. decimal dac2totalPrice = 0.00M;
  4970. foreach (var dac in dac2)
  4971. {
  4972. if (dac.SubTotal == 0)
  4973. {
  4974. continue;
  4975. }
  4976. //foodandotherStartIndex = 12;
  4977. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  4978. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  4979. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  4980. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  4981. builder.Write(currency);//币种
  4982. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  4983. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4984. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  4985. builder.Write("");//人数
  4986. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  4987. builder.Write("");//天数
  4988. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  4989. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4990. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  4991. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4992. builder.Write(rate.ToString("#0.0000"));//汇率
  4993. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  4994. decimal rbmPrice = rate * dac.SubTotal;
  4995. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4996. foodandotherStartIndex++;
  4997. dac2totalPrice += rbmPrice;
  4998. }
  4999. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  5000. Aspose.Words.Tables.Table table2 = allTables[1] as Aspose.Words.Tables.Table;
  5001. //删除空行
  5002. //if (dac2.Count < foodandotherRows)
  5003. //{
  5004. // while (table2.Rows.Count > dac2.Count)
  5005. // {
  5006. // table2.Rows.RemoveAt(dac2.Count);
  5007. // }
  5008. //}
  5009. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  5010. string otherFeeStr = "";
  5011. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  5012. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  5013. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  5014. if (otherFeeStr.Length > 0)
  5015. {
  5016. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  5017. otherFeeStr = $"({otherFeeStr})";
  5018. dic.Add("OtherFeeStr", otherFeeStr);
  5019. }
  5020. foreach (var key in dic.Keys)
  5021. {
  5022. builder.MoveToBookmark(key);
  5023. builder.Write(dic[key]);
  5024. }
  5025. //模板文件名
  5026. string strFileName = $"省级单位出(境)经费报销单{DateTime.UtcNow.ToString("yyyyMMddHHmmss")}.docx";
  5027. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  5028. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  5029. return Ok(JsonView(true, "成功", new { Url = url }));
  5030. }
  5031. }
  5032. else if (dto.ExportType == 3)
  5033. {
  5034. if (dto.SubTypeId == 1) //团组成员名单
  5035. {
  5036. if (DeleClientList.Count < 1)
  5037. {
  5038. return Ok(JsonView(false, "团组成员暂未录入!!!"));
  5039. }
  5040. //获取模板
  5041. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/dwon_团组人员列表模板.doc");
  5042. //载入模板
  5043. Document doc = new Document(tempPath);
  5044. DocumentBuilder builder = new DocumentBuilder(doc);
  5045. //获取word里所有表格
  5046. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  5047. //获取所填表格的序数
  5048. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  5049. var rowStart = tableOne.Rows[0]; //获取第1行
  5050. //循环赋值
  5051. for (int i = 0; i < DeleClientList.Count; i++)
  5052. {
  5053. builder.MoveToCell(0, i + 1, 0, 0);
  5054. builder.Write(DeleClientList[i].Name);
  5055. builder.MoveToCell(0, i + 1, 1, 0);
  5056. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  5057. builder.Write(sex);
  5058. builder.MoveToCell(0, i + 1, 2, 0);
  5059. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));
  5060. builder.MoveToCell(0, i + 1, 3, 0);
  5061. builder.Write(DeleClientList[i].Company);
  5062. builder.MoveToCell(0, i + 1, 4, 0);
  5063. builder.Write(DeleClientList[i].Job);
  5064. }
  5065. //删除多余行
  5066. while (tableOne.Rows.Count > DeleClientList.Count + 1)
  5067. {
  5068. tableOne.Rows.RemoveAt(DeleClientList.Count + 1);
  5069. }
  5070. string strFileName = $"{_DelegationInfo.TeamName}组团人员名单({DateTime.Now.ToString("yyyyMMddHHmmss")}).doc";
  5071. //C:/Server/File/OA2023/Office/Word/EnterExitCost/File/
  5072. //C:\Server\File\OA2023\Office\Word\EnterExitCost\File\
  5073. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  5074. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  5075. return Ok(JsonView(true, "成功", new { Url = url }));
  5076. }
  5077. }
  5078. return Ok(JsonView(false, "操作失败!"));
  5079. }
  5080. catch (Exception ex)
  5081. {
  5082. return Ok(JsonView(false, ex.Message));
  5083. }
  5084. }
  5085. /// <summary>
  5086. /// 获取三公费用标准city
  5087. /// </summary>
  5088. /// <param name="placeData"></param>
  5089. /// <param name="nationalTravelFeeId"></param>
  5090. /// <returns></returns>
  5091. private string GetEnterExitCostExportCity(List<Grp_NationalTravelFee> placeData, int nationalTravelFeeId)
  5092. {
  5093. string _city = string.Empty;
  5094. if (placeData.Count < 1) return _city;
  5095. var data = placeData.Find(it => it.Id == nationalTravelFeeId);
  5096. if (data == null) return _city;
  5097. string country = data.Country;
  5098. string city = data.City;
  5099. if (city.Contains("其他城市") || city.Contains("所有城市")) _city = $"{country}-{city}";
  5100. else _city = city;
  5101. return _city;
  5102. }
  5103. /// <summary>
  5104. /// 团组模块 - 出入境费用 - 明细表导出
  5105. /// </summary>
  5106. /// <returns></returns>
  5107. [HttpPost]
  5108. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5109. public async Task<IActionResult> PostEnterExitCostExportDetailsList(EnterExitCostOperateDto dto)
  5110. {
  5111. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  5112. if (data.Code != 0)
  5113. {
  5114. return Ok(JsonView(false, data.Msg));
  5115. }
  5116. return Ok(JsonView(true, data.Msg, data.Data));
  5117. }
  5118. /// <summary>
  5119. /// 团组模块 - 出入境费用 - 一键清空
  5120. /// </summary>
  5121. /// <returns></returns>
  5122. [HttpPost]
  5123. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5124. public async Task<IActionResult> PostEnterExitCostOneClickClear(EnterExitCostOneClickClearDto dto)
  5125. {
  5126. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数;"));
  5127. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数;"));
  5128. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数;"));
  5129. var _view = await _enterExitCostRep._OneClickClear(dto.Id, dto.DiId, dto.UserId);
  5130. if (_view.Code == 0)
  5131. {
  5132. return Ok(JsonView(true, "操作成功"));
  5133. }
  5134. return Ok(JsonView(false, "操作失败"));
  5135. }
  5136. /// <summary>
  5137. /// 团组模块 - 出入境费用 - 子项删除
  5138. /// </summary>
  5139. /// <returns></returns>
  5140. [HttpPost]
  5141. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5142. public async Task<IActionResult> PostEnterExitCostSubItemDel(EnterExitCostSubItemDelDto dto)
  5143. {
  5144. try
  5145. {
  5146. var data = await _enterExitCostRep.PostEnterExitCostSubItemDel(dto);
  5147. if (data.Code != 0)
  5148. {
  5149. return Ok(JsonView(false, data.Msg));
  5150. }
  5151. return Ok(JsonView(true, "操作成功!", data.Data));
  5152. }
  5153. catch (Exception ex)
  5154. {
  5155. return Ok(JsonView(false, ex.Message));
  5156. }
  5157. }
  5158. /// <summary>
  5159. /// 团组模块 - 出入境国家费用标准 List
  5160. /// </summary>
  5161. /// <returns></returns>
  5162. [HttpPost]
  5163. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5164. public async Task<IActionResult> GetNationalTravelFeeData(PortDtoBase dto)
  5165. {
  5166. try
  5167. {
  5168. Stopwatch sw = new Stopwatch();
  5169. sw.Start();
  5170. string nationalTravelFeeSql = string.Format(@"Select ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.* From Grp_NationalTravelFee gntf
  5171. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5172. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5173. Where gntf.Isdel = 0");
  5174. var nationalTravelFeeData = _sqlSugar.SqlQueryable<NationalTravelFeeInfoView>(nationalTravelFeeSql).ToList();
  5175. //var nationalTravel = nationalTravelFeeData.GroupBy(it => it.Country).Select(it1 => it1.FirstOrDefault());
  5176. //List<dynamic> nationalTravelFeeData1 = new List<dynamic>();
  5177. //foreach (var item in nationalTravel)
  5178. //{
  5179. // var cityData = nationalTravelFeeData.Where(it => it.Country == item.Country).ToList();
  5180. // var otherData = cityData.Where(it => it.City.Contains("其他城市")).FirstOrDefault();
  5181. // if (otherData != null)
  5182. // {
  5183. // cityData.Remove(otherData);
  5184. // cityData.Add(otherData);
  5185. // }
  5186. // nationalTravelFeeData1.Add(new
  5187. // {
  5188. // Country = item.Country,
  5189. // CityData = cityData
  5190. // });
  5191. //}
  5192. sw.Stop();
  5193. return Ok(JsonView(true, "查询成功!耗时:" + sw.ElapsedMilliseconds + "ms", nationalTravelFeeData));
  5194. }
  5195. catch (Exception ex)
  5196. {
  5197. return Ok(JsonView(false, ex.Message));
  5198. throw;
  5199. }
  5200. }
  5201. /// <summary>
  5202. /// 团组模块 - 出入境国家费用标准 Page List Data Source
  5203. /// </summary>
  5204. /// <returns></returns>
  5205. [HttpPost]
  5206. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5207. public async Task<IActionResult> GetNationalTravelFeePageDataSource()
  5208. {
  5209. string sql = string.Format(@"Select * From Grp_NationalTravelFee Where Isdel = 0 ");
  5210. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<Grp_NationalTravelFee>(sql).ToListAsync();
  5211. List<string> countryData = new List<string>();
  5212. countryData.AddRange(nationalTravelFeeData.Select(it => it.Country).ToList());
  5213. countryData = countryData.Distinct().ToList();
  5214. List<dynamic> dataSource = new List<dynamic>();
  5215. foreach (var item in countryData)
  5216. {
  5217. List<string> cityData1 = new List<string>();
  5218. cityData1 = nationalTravelFeeData.Where(it => it.Country == item).Select(it => it.City).ToList();
  5219. var countryData2 = new
  5220. {
  5221. CountryName = item,
  5222. CityData = cityData1
  5223. };
  5224. dataSource.Add(countryData2);
  5225. }
  5226. return Ok(JsonView(true, "查询成功!", dataSource));
  5227. }
  5228. /// <summary>
  5229. /// 团组模块 - 出入境国家费用标准 Page List
  5230. /// </summary>
  5231. /// <returns></returns>
  5232. [HttpPost]
  5233. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5234. public async Task<IActionResult> PostNationalTravelFeePage(NationalTravelFeePageDto dto)
  5235. {
  5236. int portId = dto.PortType;
  5237. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  5238. if (dto.PageIndex == 0) return Ok(JsonView(false, "当前页码数不能为0!"));
  5239. if (dto.PageSize == 0) return Ok(JsonView(false, "每页条数不能0!"));
  5240. string whereSql = string.Empty;
  5241. if (!string.IsNullOrEmpty(dto.Country))
  5242. {
  5243. whereSql += string.Format(@" And gntf.Country ='{0}'", dto.Country);
  5244. }
  5245. if (!string.IsNullOrEmpty(dto.City))
  5246. {
  5247. whereSql += string.Format(@" And gntf.City='{0}'", dto.City);
  5248. }
  5249. string pageSql = string.Format(@"Select * From (
  5250. Select row_number() over(order by gntf.LastUpdateTime Desc) as RowNumber,
  5251. ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.*
  5252. From Grp_NationalTravelFee gntf
  5253. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5254. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5255. Where gntf.Isdel = 0 {0} ) temp ", whereSql);
  5256. RefAsync<int> total = 0;
  5257. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeePageInfoView>(pageSql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  5258. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData, (int)total));
  5259. }
  5260. /// <summary>
  5261. /// 团组模块 - 出入境国家费用标准 根据城市查询
  5262. /// </summary>
  5263. /// <returns></returns>
  5264. [HttpPost]
  5265. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5266. public async Task<IActionResult> PostNationalTravelFeeInfoByCountryAndCity(NationalTravelFeeByCountryAndCityDto dto)
  5267. {
  5268. if (dto == null) return Ok(JsonView(false, "请传入参数!"));
  5269. int portId = dto.PortType;
  5270. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  5271. string whereSql = string.Empty;
  5272. if (!string.IsNullOrEmpty(dto.Country))
  5273. {
  5274. whereSql = string.Format(@"And Country = '{0}' ", dto.Country);
  5275. }
  5276. if (!string.IsNullOrEmpty(dto.City))
  5277. {
  5278. whereSql = string.Format(@"And City = '{0}' ", dto.City);
  5279. }
  5280. string sql = string.Format(@"Select gntf.Country,gntf.City,gntf.Currency,ssd.Name as CurrencyCode,
  5281. ssd.Remark as CurrencyName,gntf.RoomCost,gntf.FoodCost,gntf.PublicCost,
  5282. gntf.LastUpdateUserId,su.CnName as LastUpdateUserName,gntf.LastUpdateTime
  5283. From Grp_NationalTravelFee gntf
  5284. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5285. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5286. Where gntf.Isdel = 0 {0} ", whereSql);
  5287. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeeInfoByCountryAndCityView>(sql).FirstAsync();
  5288. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData));
  5289. }
  5290. /// <summary>
  5291. /// 团组模块 - 出入境国家费用标准 - Add Or Update
  5292. /// </summary>
  5293. /// <returns></returns>
  5294. [HttpPost]
  5295. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5296. public async Task<IActionResult> PostNationalTravelFeeOperate(NationalTravelFeeOperateDto dto)
  5297. {
  5298. try
  5299. {
  5300. var data = await _enterExitCostRep.PostNationalTravelFeeOperate(dto);
  5301. if (data.Code != 0)
  5302. {
  5303. return Ok(JsonView(false, data.Msg));
  5304. }
  5305. return Ok(JsonView(true, "操作成功!", data.Data));
  5306. }
  5307. catch (Exception ex)
  5308. {
  5309. return Ok(JsonView(false, ex.Message));
  5310. }
  5311. }
  5312. /// <summary>
  5313. /// 团组模块 - 出入境国家费用标准 - Del
  5314. /// </summary>
  5315. /// <returns></returns>
  5316. [HttpPost]
  5317. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5318. public async Task<IActionResult> PostNationalTravelFeeDel(NationalTravelFeeDelDto dto)
  5319. {
  5320. try
  5321. {
  5322. Grp_NationalTravelFee _nationalTravelFee = new Grp_NationalTravelFee()
  5323. {
  5324. Id = dto.Id,
  5325. DeleteUserId = dto.DeleteUserId,
  5326. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  5327. IsDel = 1
  5328. };
  5329. var delStatus = await _enterExitCostRep._sqlSugar.Updateable<Grp_NationalTravelFee>(_nationalTravelFee)
  5330. .UpdateColumns(it => new { it.DeleteTime, it.DeleteUserId, it.IsDel })
  5331. .WhereColumns(it => new { it.Id })
  5332. .ExecuteCommandAsync();
  5333. if (delStatus <= 0)
  5334. {
  5335. return Ok(JsonView(false, "删除失败!"));
  5336. }
  5337. return Ok(JsonView(true, "操作成功!"));
  5338. }
  5339. catch (Exception ex)
  5340. {
  5341. return Ok(JsonView(false, ex.Message));
  5342. }
  5343. }
  5344. #endregion
  5345. #region 签证费用录入
  5346. /// <summary>
  5347. /// 根据diid查询签证费用列表
  5348. /// </summary>
  5349. /// <param name="dto"></param>
  5350. /// <returns></returns>
  5351. [HttpPost]
  5352. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5353. public async Task<IActionResult> QueryVisaByDiId(VisaPriceDto dto)
  5354. {
  5355. try
  5356. {
  5357. Result groupData = await _visaPriceRep.PostVisaByDiId(dto);
  5358. if (groupData.Code != 0)
  5359. {
  5360. return Ok(JsonView(false, groupData.Msg));
  5361. }
  5362. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5363. }
  5364. catch (Exception ex)
  5365. {
  5366. return Ok(JsonView(false, ex.Message));
  5367. }
  5368. }
  5369. /// <summary>
  5370. /// 根据签证费用Id查询单条数据及c表数据
  5371. /// </summary>
  5372. /// <param name="dto"></param>
  5373. /// <returns></returns>
  5374. [HttpPost]
  5375. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5376. public async Task<IActionResult> QueryVisaById(PostVisaByIdDto dto)
  5377. {
  5378. try
  5379. {
  5380. Result groupData = await _visaPriceRep.PostVisaById(dto);
  5381. if (groupData.Code != 0)
  5382. {
  5383. return Ok(JsonView(false, groupData.Msg));
  5384. }
  5385. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5386. }
  5387. catch (Exception ex)
  5388. {
  5389. return Ok(JsonView(false, ex.Message));
  5390. }
  5391. }
  5392. /// <summary>
  5393. /// 签证费用删除
  5394. /// </summary>
  5395. /// <param name="dto"></param>
  5396. /// <returns></returns>
  5397. [HttpPost]
  5398. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5399. public async Task<IActionResult> DelVisaPrice(DelBaseDto dto)
  5400. {
  5401. _sqlSugar.BeginTran();
  5402. var res = await _visaPriceRep.SoftDeleteByIdAsync<Grp_VisaInfo>(dto.Id.ToString(), dto.DeleteUserId);
  5403. if (!res)
  5404. {
  5405. _sqlSugar.RollbackTran();
  5406. return Ok(JsonView(false, "删除失败"));
  5407. }
  5408. var resSub = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  5409. .Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 80)
  5410. .SetColumns(a => new Grp_CreditCardPayment()
  5411. {
  5412. IsDel = 1,
  5413. DeleteUserId = dto.DeleteUserId,
  5414. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5415. }).ExecuteCommand();
  5416. if (resSub < 1)
  5417. {
  5418. _sqlSugar.RollbackTran();
  5419. return Ok(JsonView(false, "删除失败"));
  5420. }
  5421. _sqlSugar.CommitTran();
  5422. return Ok(JsonView(true, "删除成功!"));
  5423. }
  5424. /// <summary>
  5425. /// 签证费用录入下拉框初始化
  5426. /// </summary>
  5427. /// <returns></returns>
  5428. [HttpPost]
  5429. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5430. public async Task<IActionResult> VisaPriceAddSelect()
  5431. {
  5432. try
  5433. {
  5434. //支付方式
  5435. List<Sys_SetData> Payment = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 14 && a.IsDel == 0).ToList();
  5436. List<SetDataInfoView> _Payment = _mapper.Map<List<SetDataInfoView>>(Payment);
  5437. //币种
  5438. List<Sys_SetData> CurrencyList = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 66 && a.IsDel == 0).ToList();
  5439. List<SetDataInfoView> _CurrencyList = _mapper.Map<List<SetDataInfoView>>(CurrencyList);
  5440. //乘客类型
  5441. List<Sys_SetData> PassengerType = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 69 && a.IsDel == 0).ToList();
  5442. List<SetDataInfoView> _PassengerType = _mapper.Map<List<SetDataInfoView>>(PassengerType);
  5443. //卡类型
  5444. List<Sys_SetData> BankCard = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 15 && a.IsDel == 0).ToList();
  5445. List<SetDataInfoView> _BankCard = _mapper.Map<List<SetDataInfoView>>(BankCard);
  5446. var data = new
  5447. {
  5448. Payment = _Payment,
  5449. CurrencyList = _CurrencyList,
  5450. PassengerType = _PassengerType,
  5451. BankCard = _BankCard
  5452. };
  5453. return Ok(JsonView(true, "查询成功!", data));
  5454. }
  5455. catch (Exception ex)
  5456. {
  5457. return Ok(JsonView(false, "程序错误!"));
  5458. throw;
  5459. }
  5460. }
  5461. /// <summary>
  5462. /// 签证费用录入操作(Status:1.新增,2.修改)
  5463. /// </summary>
  5464. /// <param name="dto"></param>
  5465. /// <returns></returns>
  5466. [HttpPost]
  5467. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5468. public async Task<IActionResult> OpVisaPrice(OpVisaPriceDto dto)
  5469. {
  5470. try
  5471. {
  5472. Result groupData = await _visaPriceRep.OpVisaPrice(dto);
  5473. if (groupData.Code != 0)
  5474. {
  5475. return Ok(JsonView(false, groupData.Msg));
  5476. }
  5477. #region 应用推送
  5478. try
  5479. {
  5480. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  5481. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  5482. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  5483. }
  5484. catch (Exception ex)
  5485. {
  5486. }
  5487. #endregion
  5488. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5489. }
  5490. catch (Exception ex)
  5491. {
  5492. return Ok(JsonView(false, ex.Message));
  5493. }
  5494. }
  5495. #endregion
  5496. #region op费用录入
  5497. /// <summary>
  5498. /// 根据diid查询op费用列表
  5499. /// </summary>
  5500. /// <param name="dto"></param>
  5501. /// <returns></returns>
  5502. [HttpPost]
  5503. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5504. public async Task<IActionResult> QueryCarTouristGuideGroundByDiId(CarTouristGuideGroundDto dto)
  5505. {
  5506. try
  5507. {
  5508. Result groupData = await _carTouristGuideGroundRep.QueryCarTouristGuideGroundByDiId(dto);
  5509. if (groupData.Code != 0)
  5510. {
  5511. return Ok(JsonView(false, groupData.Msg));
  5512. }
  5513. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5514. }
  5515. catch (Exception ex)
  5516. {
  5517. return Ok(JsonView(false, ex.Message));
  5518. }
  5519. }
  5520. /// <summary>
  5521. /// 根据op费用Id查询单条数据及c表数据
  5522. /// </summary>
  5523. /// <param name="dto"></param>
  5524. /// <returns></returns>
  5525. [HttpPost]
  5526. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5527. public async Task<IActionResult> QueryCarTouristGuideGroundById(CarTouristGuideGroundIdDto dto)
  5528. {
  5529. try
  5530. {
  5531. Grp_CarTouristGuideGroundReservations _groupData = await _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().FirstAsync(a => a.Id == dto.Id && a.IsDel == 0);
  5532. Grp_CreditCardPayment _creditCardPayment = await _sqlSugar.Queryable<Grp_CreditCardPayment>().FirstAsync(a => a.CId == dto.Id && a.CTable == 79 && a.IsDel == 0);
  5533. var data = new
  5534. {
  5535. CarTouristGuideGround = _groupData,
  5536. CreditCardPayment = _creditCardPayment
  5537. };
  5538. return Ok(JsonView(true, "查询成功!", data));
  5539. }
  5540. catch (Exception ex)
  5541. {
  5542. return Ok(JsonView(false, "程序错误!"));
  5543. }
  5544. }
  5545. /// <summary>
  5546. /// op费用删除
  5547. /// </summary>
  5548. /// <param name="dto"></param>
  5549. /// <returns></returns>
  5550. [HttpPost]
  5551. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5552. public async Task<IActionResult> DelCarTouristGuideGround(DelBaseDto dto)
  5553. {
  5554. try
  5555. {
  5556. var res = await _carTouristGuideGroundRep.SoftDeleteByIdAsync<Grp_CarTouristGuideGroundReservations>(dto.Id.ToString(), dto.DeleteUserId);
  5557. if (!res)
  5558. {
  5559. return Ok(JsonView(false, "删除失败"));
  5560. }
  5561. var result = await _sqlSugar.Updateable<Grp_CarTouristGuideGroundReservationsContent>().Where(a => a.CTGGRId == dto.Id && a.IsDel == 0).SetColumns(a => new Grp_CarTouristGuideGroundReservationsContent()
  5562. {
  5563. IsDel = 1,
  5564. DeleteUserId = dto.DeleteUserId,
  5565. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5566. }).ExecuteCommandAsync();
  5567. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 79).SetColumns(a => new Grp_CreditCardPayment()
  5568. {
  5569. IsDel = 1,
  5570. DeleteUserId = dto.DeleteUserId,
  5571. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5572. }).ExecuteCommandAsync();
  5573. return Ok(JsonView(true, "删除成功!"));
  5574. }
  5575. catch (Exception ex)
  5576. {
  5577. return Ok(JsonView(false, "程序错误!"));
  5578. throw;
  5579. }
  5580. }
  5581. /// <summary>
  5582. /// op费用录入操作(Status:1.新增,2.修改)
  5583. /// </summary>
  5584. /// <param name="dto"></param>
  5585. /// <returns></returns>
  5586. [HttpPost]
  5587. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5588. public async Task<IActionResult> OpCarTouristGuideGround(OpCarTouristGuideGroundDto dto)
  5589. {
  5590. try
  5591. {
  5592. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGround(dto);
  5593. if (groupData.Code != 0)
  5594. {
  5595. return Ok(JsonView(false, groupData.Msg));
  5596. }
  5597. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5598. }
  5599. catch (Exception ex)
  5600. {
  5601. return Ok(JsonView(false, ex.Message));
  5602. }
  5603. }
  5604. /// <summary>
  5605. /// 填写费用详细页面初始化绑定
  5606. /// </summary>
  5607. /// <param name="dto"></param>
  5608. /// <returns></returns>
  5609. [HttpPost]
  5610. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5611. public IActionResult CarTouristGuideGroundContentInitialize(CarTouristGuideGroundContentDto dto)
  5612. {
  5613. try
  5614. {
  5615. Result groupData = _carTouristGuideGroundRep.CarTouristGuideGroundContent(dto);
  5616. if (groupData.Code != 0)
  5617. {
  5618. return Ok(JsonView(false, groupData.Msg));
  5619. }
  5620. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5621. }
  5622. catch (Exception ex)
  5623. {
  5624. return Ok(JsonView(false, ex.Message));
  5625. }
  5626. }
  5627. /// <summary>
  5628. /// 根据op费用Id查询详细数据
  5629. /// </summary>
  5630. /// <param name="dto"></param>
  5631. /// <returns></returns>
  5632. [HttpPost]
  5633. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5634. public IActionResult OpCarTouristGuideGroundContentById(CarTouristGuideGroundIdDto dto)
  5635. {
  5636. try
  5637. {
  5638. Result groupData = _carTouristGuideGroundRep.OpCarTouristGuideGroundContentById(dto);
  5639. if (groupData.Code != 0)
  5640. {
  5641. return Ok(JsonView(false, groupData.Msg));
  5642. }
  5643. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5644. }
  5645. catch (Exception ex)
  5646. {
  5647. return Ok(JsonView(false, ex.Message));
  5648. }
  5649. }
  5650. /// <summary>
  5651. /// OP费用录入填写详情
  5652. /// </summary>
  5653. /// <param name="dto"></param>
  5654. /// <returns></returns>
  5655. [HttpPost]
  5656. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5657. public async Task<IActionResult> OpCarTouristGuideGroundContent(OpCarTouristGuideGroundContentDto dto)
  5658. {
  5659. try
  5660. {
  5661. #region 参数校验
  5662. if (dto.Currency <= 0) return Ok(JsonView(false, "币种错误!"));
  5663. var di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.DiId && x.IsDel == 0);
  5664. if (di == null) return Ok(JsonView(false, "团组错误!"));
  5665. #endregion
  5666. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGroundContent(dto);
  5667. if (groupData.Code != 0)
  5668. {
  5669. return Ok(JsonView(false, groupData.Msg));
  5670. }
  5671. //自动审核
  5672. await _feeAuditRep.FeeAutomaticAudit(2, dto.DiId, dto.CTGGRId);
  5673. #region 应用推送
  5674. try
  5675. {
  5676. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  5677. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  5678. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  5679. }
  5680. catch (Exception ex)
  5681. {
  5682. }
  5683. #endregion
  5684. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5685. }
  5686. catch (Exception ex)
  5687. {
  5688. return Ok(JsonView(false, ex.Message));
  5689. }
  5690. }
  5691. /// <summary>
  5692. /// 获取三公详细所有城市
  5693. /// </summary>
  5694. /// <returns></returns>
  5695. [HttpGet]
  5696. public IActionResult OpCarCityResult()
  5697. {
  5698. var jw = JsonView(false);
  5699. var data = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(x => x.IsDel == 0).Select(x => new
  5700. {
  5701. x.Id,
  5702. x.Country,
  5703. x.City,
  5704. }).ToList();
  5705. if (data.Count > 0)
  5706. {
  5707. jw = JsonView(true, "获取成功!", data);
  5708. }
  5709. else
  5710. {
  5711. jw.Msg = "城市数据为空!";
  5712. jw.Data = new string[0];
  5713. }
  5714. return Ok(jw);
  5715. }
  5716. /// <summary>
  5717. /// 导出地接费用明细
  5718. /// </summary>
  5719. /// <param name="dto"></param>
  5720. /// <returns></returns>
  5721. [HttpPost]
  5722. public IActionResult ExportLocalGuidePriceDetail(ExportLocalGuidePriceDetailDto dto)
  5723. {
  5724. var jw = JsonView(false);
  5725. if (dto.Diid < 1)
  5726. {
  5727. jw.Msg = "请输入正确的diid!";
  5728. return Ok(jw);
  5729. }
  5730. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  5731. if (group == null)
  5732. {
  5733. jw.Msg = "未找到团组信息!";
  5734. return Ok(jw);
  5735. }
  5736. var localGuideArr = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).ToList();
  5737. if (localGuideArr.Count == 0)
  5738. {
  5739. jw.Msg = "该团组暂无地接信息!";
  5740. return Ok(jw);
  5741. }
  5742. var localGroup = localGuideArr.GroupBy(x => x.Area).ToList();
  5743. var overspendSoure = new Dictionary<int, int>
  5744. {
  5745. { 91, 982 }, //车
  5746. { 92 , 1059} ,//导游
  5747. { 994 , 1073}, //翻译
  5748. { 988 , 1074 }, //早餐
  5749. { 93 , 1075 }, //午餐
  5750. { 989 , 1076 }, //晚餐
  5751. };
  5752. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  5753. foreach (var groupArr in localGroup)
  5754. {
  5755. var keyValue = groupArr.Key;
  5756. if (int.TryParse(keyValue, out int cityid))
  5757. {
  5758. var city = _sqlSugar.Queryable<Grp_NationalTravelFee>().First(x => x.Id == cityid && x.IsDel == 0);
  5759. keyValue = city == null ? keyValue : city.Country + "-" + city.City;
  5760. }
  5761. List<List<Grp_CarTouristGuideGroundReservationsContentExtend>> contentArr = new List<List<Grp_CarTouristGuideGroundReservationsContentExtend>>();
  5762. foreach (var item in groupArr)
  5763. {
  5764. var content = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservationsContent, Sys_SetData>((a, b) => a.SId == b.Id
  5765. ).Where((a, b) => a.CTGGRId == item.Id && a.Price != 0M && a.IsDel == 0 && b.IsDel == 0).Select((a, b) =>
  5766. new Grp_CarTouristGuideGroundReservationsContentExtend
  5767. {
  5768. Count = a.Count,
  5769. CreateTime = a.CreateTime,
  5770. CreateUserId = a.CreateUserId,
  5771. CTGGRId = a.CTGGRId,
  5772. Currency = a.Currency,
  5773. DatePrice = a.DatePrice,
  5774. DeleteTime = a.DeleteTime,
  5775. DeleteUserId = a.DeleteUserId,
  5776. DiId = a.DiId,
  5777. Id = a.Id,
  5778. IsDel = a.IsDel,
  5779. Price = a.Price,
  5780. PriceContent = a.PriceContent,
  5781. Remark = a.Remark,
  5782. SId = a.SId,
  5783. SidName = b.Name,
  5784. Units = a.Units,
  5785. }
  5786. ).ToList();
  5787. if (content.Count > 0)
  5788. {
  5789. contentArr.Add(content);
  5790. }
  5791. }
  5792. //open excel
  5793. //set excel
  5794. //save excel
  5795. try
  5796. {
  5797. string filePath = AppSettingsHelper.Get("ExcelBasePath") + "\\Template\\地接费用明细.xlsx";
  5798. IWorkbook workbook;
  5799. if (Path.GetExtension(filePath).ToLower() == ".xls")
  5800. {
  5801. workbook = new HSSFWorkbook(new FileStream(filePath, FileMode.Open, FileAccess.Read));
  5802. }
  5803. else
  5804. {
  5805. workbook = new XSSFWorkbook(new FileStream(filePath, FileMode.Open, FileAccess.Read));
  5806. }
  5807. ISheet sheet = workbook.GetSheetAt(0);
  5808. var rowStartIndex = 2;
  5809. var clounmCount = 10;
  5810. var initStyleRow = sheet.GetRow(2);
  5811. var arr = contentArr.SelectMany(x => x).OrderBy(x => x.SId).ToList();
  5812. //var overspendArrDetail =
  5813. var existsId = new List<CarCompare>();
  5814. var lastElem = arr.Last();
  5815. var thisSid = -1;
  5816. var curr = arr.Count > 0 ? arr[0].Currency : -1;
  5817. var currObj = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == curr && x.IsDel == 0) ?? new Sys_SetData
  5818. {
  5819. Name = "未知币种!",
  5820. Remark = "未知币种!",
  5821. };
  5822. sheet.GetRow(0).GetCell(1).SetCellValue($"{keyValue}费用明细(货币:{currObj.Remark})");
  5823. Action cloneRowFn = () =>
  5824. {
  5825. rowStartIndex++;
  5826. var cloneRow = sheet.CreateRow(rowStartIndex);
  5827. // 复制样式
  5828. for (int i = initStyleRow.FirstCellNum; i < initStyleRow.LastCellNum; i++)
  5829. {
  5830. ICell sourceCell = initStyleRow.GetCell(i);
  5831. ICell targetCell = cloneRow.GetCell(i) ?? cloneRow.CreateCell(i);
  5832. // 确保单元格存在样式
  5833. if (sourceCell.CellStyle != null)
  5834. {
  5835. targetCell.CellStyle = sourceCell.CellStyle;
  5836. }
  5837. }
  5838. };
  5839. var mergeRow = () =>
  5840. {
  5841. for (int i = 2; i < sheet.LastRowNum; i++)
  5842. {
  5843. var row = sheet.GetRow(i);
  5844. var cellFirst = row.GetCell(0);
  5845. var thisIndex = i + 1;
  5846. while (thisIndex < sheet.LastRowNum)
  5847. {
  5848. var nextRow = sheet.GetRow(thisIndex);
  5849. var nextCellFirst = nextRow.GetCell(0);
  5850. if (cellFirst != null && nextCellFirst != null && cellFirst.ToString().Trim() == nextCellFirst.ToString().Trim())
  5851. {
  5852. thisIndex++;
  5853. }
  5854. else
  5855. {
  5856. break;
  5857. }
  5858. }
  5859. thisIndex--;
  5860. if (thisIndex != i)
  5861. {
  5862. //合并row
  5863. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5864. i, // 起始行索引(0-based)
  5865. thisIndex, // 结束行索引(0-based)
  5866. 0, // 起始列索引(0-based)
  5867. 0 // 结束列索引(0-based)
  5868. );
  5869. sheet.AddMergedRegion(cellRangeAddress);
  5870. i = thisIndex;
  5871. }
  5872. }
  5873. };
  5874. var chaoshiNumber = 0;
  5875. var totalNumber = 0.00M;
  5876. string lastStr = "";
  5877. var queryCarArrByCityAndDiid = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations, Grp_CreditCardPayment>((x, b) => x.Id == b.CId && b.IsDel == 0 && b.CTable == 79)
  5878. .Where(x => x.DiId == dto.Diid && x.Area == groupArr.Key).Select((x, b) => new
  5879. {
  5880. b.IsAuditGM,
  5881. x.Id,
  5882. x.Area,
  5883. b.PayPercentage,
  5884. b.PayMoney,
  5885. }).ToList();
  5886. string yesPayment = "", noPayment = "";
  5887. foreach (var item in queryCarArrByCityAndDiid)
  5888. {
  5889. if (item.IsAuditGM == 1)
  5890. {
  5891. yesPayment += $"已支付团款({(int)item.PayPercentage}%):{item.PayMoney} {currObj.Remark}(如有需要,请在此处填写明细)\r\n";
  5892. }
  5893. else
  5894. {
  5895. noPayment += $"剩余团款:{item.PayMoney}{currObj.Remark}(如有需要,请在此处填写明细)\r\n";
  5896. }
  5897. }
  5898. lastStr = yesPayment + noPayment;
  5899. foreach (var item in arr)
  5900. {
  5901. if (existsId.FirstOrDefault(x => x.Sid == item.SId && DateTime.Compare(x.DataPrice, item.DatePrice.ObjToDate()) == 0) == null && !overspendSoure.Values.Contains(item.SId))
  5902. {
  5903. if (thisSid != item.SId)
  5904. {
  5905. if (thisSid == -1)
  5906. {
  5907. thisSid = item.SId;
  5908. }
  5909. else
  5910. {
  5911. //合并小计行
  5912. //创建合并区域的实例
  5913. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5914. rowStartIndex, // 起始行索引(0-based)
  5915. rowStartIndex, // 结束行索引(0-based)
  5916. 0, // 起始列索引(0-based)
  5917. 3 // 结束列索引(0-based)
  5918. );
  5919. sheet.AddMergedRegion(cellRangeAddress);
  5920. var CellStyle = workbook.CreateCellStyle();
  5921. CellStyle.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5922. CellStyle.FillForegroundColor = IndexedColors.Yellow.Index; // 选择填充颜色
  5923. CellStyle.FillPattern = FillPattern.SolidForeground; // 填充方式
  5924. for (int i = 0; i <= clounmCount; i++)
  5925. {
  5926. if (i > 6)
  5927. {
  5928. var CellStyle1 = workbook.CreateCellStyle();
  5929. CellStyle1.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5930. IFont Font = workbook.CreateFont(); // 创建字体
  5931. Font.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(i).CellStyle.GetFont(workbook));
  5932. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  5933. CellStyle1.SetFont(Font);
  5934. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle1;
  5935. }
  5936. else
  5937. {
  5938. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle;
  5939. }
  5940. }
  5941. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue("合计:");
  5942. sheet.GetRow(rowStartIndex).GetCell(4).SetCellValue(arr.Where(x => x.SId == thisSid).Sum(x => x.Count * x.Price).ToString("F2"));
  5943. //超时合计
  5944. sheet.GetRow(rowStartIndex).GetCell(7).SetCellValue("超时合计:");
  5945. //超时数
  5946. sheet.GetRow(rowStartIndex).GetCell(8).SetCellValue(chaoshiNumber == 0 ? "" : chaoshiNumber.ToString());
  5947. //超时合计费用
  5948. sheet.GetRow(rowStartIndex).GetCell(9).SetCellValue(totalNumber == 0 ? "" : totalNumber.ToString());
  5949. thisSid = item.SId;
  5950. cloneRowFn();
  5951. chaoshiNumber = 0;
  5952. totalNumber = 0;
  5953. }
  5954. }
  5955. IRow row = sheet.GetRow(rowStartIndex);
  5956. var whereForResult = arr.Where(x => x.SId == item.SId && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5957. var isOpenOverspendSoure = overspendSoure.Keys.Contains(item.SId);
  5958. List<Grp_CarTouristGuideGroundReservationsContentExtend> overspendWhereForResult = null;
  5959. if (isOpenOverspendSoure)
  5960. {
  5961. overspendWhereForResult = arr.Where(x => x.SId == overspendSoure[item.SId] && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5962. chaoshiNumber += overspendWhereForResult.Sum(x => x.Count);
  5963. totalNumber += overspendWhereForResult.Sum(x => x.Count * x.Price);
  5964. }
  5965. for (int i = 0; i <= clounmCount; i++)
  5966. {
  5967. var cell = row.GetCell(i);
  5968. var setCellValue = InIndexOutFunction(i, whereForResult, overspendWhereForResult);
  5969. if (cell == null)
  5970. {
  5971. cell = row.CreateCell(i);
  5972. }
  5973. var fontRed = workbook.CreateCellStyle(); // 创建单元格样式
  5974. fontRed.CloneStyleFrom(cell.CellStyle);
  5975. IFont Font = workbook.CreateFont(); // 创建字体
  5976. Font.CloneStyleFrom(cell.CellStyle.GetFont(workbook));
  5977. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  5978. fontRed.SetFont(Font);
  5979. byte[] rgb = new byte[3] { 255, 242, 204 };
  5980. var BackgroundColor255_242_204 = workbook.CreateCellStyle();
  5981. BackgroundColor255_242_204.CloneStyleFrom(cell.CellStyle);
  5982. byte[] rgb1 = new byte[3] { 189, 215, 238 };
  5983. if (workbook is XSSFWorkbook)
  5984. {
  5985. BackgroundColor255_242_204.FillForegroundColor = 0;
  5986. ((XSSFColor)BackgroundColor255_242_204.FillForegroundColorColor).SetRgb(rgb);
  5987. BackgroundColor255_242_204.FillPattern = FillPattern.SolidForeground;
  5988. }
  5989. else
  5990. {
  5991. BackgroundColor255_242_204.FillForegroundColor = (((HSSFWorkbook)workbook).GetCustomPalette().FindSimilarColor(rgb[0], rgb[1], rgb[2])).Indexed;
  5992. }
  5993. if (i == 1 || i > 6)
  5994. {
  5995. if (i > 6)
  5996. {
  5997. fontRed.FillForegroundColor = 0;
  5998. ((XSSFColor)fontRed.FillForegroundColorColor).SetRgb(rgb1);
  5999. fontRed.FillPattern = FillPattern.SolidForeground;
  6000. }
  6001. cell.CellStyle = fontRed;
  6002. }
  6003. if (i > 2 && i < 7)
  6004. {
  6005. cell.CellStyle = BackgroundColor255_242_204;
  6006. }
  6007. cell.SetCellValue(setCellValue); //写入单元格
  6008. }
  6009. if (overspendSoure.ContainsKey(thisSid))
  6010. {
  6011. var overspendId = overspendSoure[thisSid];
  6012. whereForResult = arr.Where(x => x.SId == item.SId && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  6013. }
  6014. cloneRowFn();
  6015. existsId.Add(new CarCompare
  6016. {
  6017. DataPrice = item.DatePrice.ObjToDate(),
  6018. Sid = item.SId
  6019. });
  6020. }
  6021. if (item.Equals(lastElem))
  6022. {
  6023. //合并小计行
  6024. //创建合并区域的实例
  6025. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  6026. rowStartIndex, // 起始行索引(0-based)
  6027. rowStartIndex, // 结束行索引(0-based)
  6028. 0, // 起始列索引(0-based)
  6029. 3 // 结束列索引(0-based)
  6030. );
  6031. sheet.AddMergedRegion(cellRangeAddress);
  6032. var CellStyle = workbook.CreateCellStyle();
  6033. CellStyle.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  6034. CellStyle.FillForegroundColor = IndexedColors.Yellow.Index; // 选择填充颜色
  6035. CellStyle.FillPattern = FillPattern.SolidForeground; // 填充方式
  6036. for (int i = 0; i <= clounmCount; i++)
  6037. {
  6038. if (i > 6)
  6039. {
  6040. var CellStyle1 = workbook.CreateCellStyle();
  6041. CellStyle1.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  6042. IFont Font = workbook.CreateFont(); // 创建字体
  6043. Font.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(i).CellStyle.GetFont(workbook));
  6044. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  6045. CellStyle1.SetFont(Font);
  6046. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle1;
  6047. }
  6048. else
  6049. {
  6050. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle;
  6051. }
  6052. }
  6053. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue("合计:");
  6054. sheet.GetRow(rowStartIndex).GetCell(4).SetCellValue(arr.Where(x => x.SId == thisSid).Sum(x => x.Count * x.Price).ToString("F2"));
  6055. //超时合计
  6056. sheet.GetRow(rowStartIndex).GetCell(7).SetCellValue("超时合计:");
  6057. //超时数
  6058. sheet.GetRow(rowStartIndex).GetCell(8).SetCellValue(chaoshiNumber == 0 ? "" : chaoshiNumber.ToString());
  6059. //超时合计费用
  6060. sheet.GetRow(rowStartIndex).GetCell(9).SetCellValue(totalNumber == 0 ? "" : totalNumber.ToString());
  6061. cloneRowFn();
  6062. // 创建合并区域的实例
  6063. cellRangeAddress = new CellRangeAddress(
  6064. rowStartIndex, // 起始行索引(0-based)
  6065. rowStartIndex, // 结束行索引(0-based)
  6066. 0, // 起始列索引(0-based)
  6067. initStyleRow.LastCellNum - 1 // 结束列索引(0-based)
  6068. );
  6069. // 添加合并区域
  6070. sheet.AddMergedRegion(cellRangeAddress);
  6071. sheet.GetRow(rowStartIndex).Height = 30 * 30;
  6072. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue(lastStr);
  6073. }
  6074. }
  6075. mergeRow();
  6076. // 保存修改后的Excel文件到新文件
  6077. //string newFilePath = Path.Combine(Path.GetDirectoryName(filePath), keyValue +"_" + Path.GetFileName(filePath));
  6078. // new FileStream(newFilePath, FileMode.CreateNew)
  6079. using (var stream = new MemoryStream())
  6080. {
  6081. workbook.Write(stream, true);
  6082. stream.Flush();
  6083. stream.Seek(0, SeekOrigin.Begin);
  6084. MemoryStream memoryStream = new MemoryStream();
  6085. stream.CopyTo(memoryStream);
  6086. memoryStream.Seek(0, SeekOrigin.Begin);
  6087. Zips.Add(keyValue + "_" + "费用明细表.xlsx", memoryStream);
  6088. }
  6089. workbook.Close();
  6090. workbook.Dispose();
  6091. }
  6092. catch (Exception ex)
  6093. {
  6094. jw.Msg = "出现异常!" + ex.Message;
  6095. return Ok(jw);
  6096. }
  6097. }
  6098. if (Zips.Count > 0)
  6099. {
  6100. IOOperatorHelper io = new IOOperatorHelper();
  6101. var byts = io.ConvertZipStream(Zips);
  6102. io.ByteToFile(byts, AppSettingsHelper.Get("ExcelBasePath") + $"\\ExportLocalGuidePriceDetail\\{group.TeamName}_地接费用明细.zip");
  6103. //http://132.232.92.186:24/Office/Word/EnterExitCost/File/
  6104. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("OfficeBaseUrl") + $"\\Office\\Excel\\ExportLocalGuidePriceDetail\\{group.TeamName}_地接费用明细.zip" });
  6105. }
  6106. else
  6107. {
  6108. jw.Msg = "暂无生成文件!";
  6109. }
  6110. return Ok(jw);
  6111. }
  6112. private string InIndexOutFunction(int i, List<Grp_CarTouristGuideGroundReservationsContentExtend> arr, List<Grp_CarTouristGuideGroundReservationsContentExtend> arrOverspendSoure)
  6113. {
  6114. string outStr = string.Empty;
  6115. switch (i)
  6116. {
  6117. case 0:
  6118. outStr = arr[0].SidName;
  6119. break;
  6120. case 1:
  6121. outStr = arr[0].DataPriceStr;
  6122. break;
  6123. case 2:
  6124. outStr = string.Join("-", arr.Select(x => x.PriceContent));
  6125. break;
  6126. case 4:
  6127. outStr = arr.Sum(x => x.Subtotal).ToString("F2");
  6128. break;
  6129. case 7:
  6130. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6131. {
  6132. var curr = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == arrOverspendSoure[0].Currency && x.IsDel == 0);
  6133. var unit = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == arrOverspendSoure[0].Units && x.IsDel == 0);
  6134. outStr = arrOverspendSoure.Sum(x => x.Price).ToString("F2") + curr?.Remark + "/" + unit?.Name;
  6135. }
  6136. break;
  6137. case 8:
  6138. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6139. {
  6140. outStr = arrOverspendSoure.Sum(x => x.Count).ToString();
  6141. }
  6142. break;
  6143. case 9:
  6144. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6145. {
  6146. outStr = arrOverspendSoure.Sum(x => x.Count * x.Price).ToString();
  6147. }
  6148. break;
  6149. case 10:
  6150. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  6151. {
  6152. outStr = string.Join("-", arrOverspendSoure.Select(x => x.PriceContent));
  6153. }
  6154. break;
  6155. }
  6156. return outStr;
  6157. }
  6158. #region OP行程单
  6159. /// <summary>
  6160. /// OP行程单初始化
  6161. /// </summary>
  6162. /// <param name="dto"></param>
  6163. /// <returns></returns>
  6164. [HttpPost]
  6165. public IActionResult InitOpTravel(InitOpTravelDto dto)
  6166. {
  6167. var jw = JsonView(false);
  6168. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  6169. var group = groupList.First();
  6170. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  6171. if (group == null)
  6172. {
  6173. jw.Msg = "暂无团组!";
  6174. return Ok(jw);
  6175. }
  6176. group = groupList.Find(x => x.Id == diid);
  6177. if (group == null)
  6178. {
  6179. jw.Msg = "请输入正确的团组ID!";
  6180. return Ok(jw);
  6181. }
  6182. string city = string.Empty;
  6183. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(x => x.IsDel == 0 && x.DiId == diid).ToList();
  6184. if (blackCode.Count > 0)
  6185. {
  6186. var black = blackCode.First();
  6187. black.BlackCode = black.BlackCode == null ? "" : black.BlackCode;
  6188. var blackSp = Regex.Split(black.BlackCode, "\\d+\\.", RegexOptions.IgnoreCase).Where(x => !string.IsNullOrWhiteSpace(x)).ToArray();
  6189. if (blackSp.Length > 0)
  6190. {
  6191. try
  6192. {
  6193. var cityArrCode = new List<string>(20);
  6194. foreach (var item in blackSp)
  6195. {
  6196. var itemSp = item.Split(' ').Where(x => !string.IsNullOrWhiteSpace(x)).ToList();
  6197. var IndexSelect = itemSp[2];
  6198. var cityArrCodeLength = cityArrCode.Count - 1;
  6199. var startCity = IndexSelect.Substring(0, 3);
  6200. if (cityArrCodeLength > 0)
  6201. {
  6202. var arrEndCity = cityArrCode[cityArrCodeLength];
  6203. if (arrEndCity != startCity)
  6204. {
  6205. cityArrCode.Add(startCity.ToUpper());
  6206. }
  6207. }
  6208. else
  6209. {
  6210. cityArrCode.Add(startCity.ToUpper());
  6211. }
  6212. var endCity = IndexSelect.Substring(3, 3);
  6213. cityArrCode.Add(endCity.ToUpper());
  6214. }
  6215. var cityThree = string.Empty;
  6216. cityArrCode.ForEach(x => cityThree += "'" + x + "',");
  6217. cityThree = cityThree.TrimEnd(',');
  6218. if (string.IsNullOrWhiteSpace(cityThree))
  6219. {
  6220. throw new
  6221. Exception("error");
  6222. }
  6223. string sql = $"SELECT * FROM Res_ThreeCode rtc WHERE UPPER(rtc.Three) in ({cityThree}) ";
  6224. var cityArr = _sqlSugar.SqlQueryable<Res_ThreeCode>(sql).ToList();
  6225. foreach (var item in cityArrCode)
  6226. {
  6227. var find = cityArr.Find(x => x.Three.ToUpper() == item.ToUpper());
  6228. if (find != null)
  6229. {
  6230. city += find.City + "/";
  6231. }
  6232. else
  6233. {
  6234. city += item + "三字码未收入/";
  6235. }
  6236. }
  6237. city = city.TrimEnd('/');
  6238. }
  6239. catch (Exception e)
  6240. {
  6241. city = "黑屏代码格式不正确!";
  6242. }
  6243. }
  6244. }
  6245. else
  6246. {
  6247. city = "未录入黑屏代码";
  6248. }
  6249. var OpTravelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0).OrderBy(x => x.Days).Select(x => new TravelArrView
  6250. {
  6251. Date = x.Date,
  6252. Days = x.Days,
  6253. Diffgroup = x.Diffgroup,
  6254. Diid = x.Diid,
  6255. Traffic_First = x.Traffic_First,
  6256. Traffic_Second = x.Traffic_Second,
  6257. Trip = x.Trip,
  6258. WeekDay = x.WeekDay,
  6259. Id = x.Id
  6260. }).ToList();
  6261. jw.Data = new
  6262. {
  6263. groupList = groupList.Select(x => new
  6264. {
  6265. x.Id,
  6266. x.TeamName,
  6267. x.TourCode
  6268. }).ToList(),
  6269. groupInfo = new
  6270. {
  6271. group.VisitDays,
  6272. group.TourCode,
  6273. group.VisitPNumber,
  6274. group.TeamName,
  6275. city
  6276. },
  6277. OpTravelList
  6278. };
  6279. jw.Code = 200;
  6280. jw.Msg = "操作成功!";
  6281. return Ok(jw);
  6282. }
  6283. /// <summary>
  6284. /// 删除团组行程单
  6285. /// </summary>
  6286. /// <returns></returns>
  6287. [HttpPost]
  6288. public IActionResult DelTravel(DelOpTravelDto dto)
  6289. {
  6290. var jw = JsonView(false);
  6291. if (dto.UserId <= 0 || dto.Diid <= 0)
  6292. {
  6293. jw.Msg = "请输入正确的参数!";
  6294. return Ok(jw);
  6295. }
  6296. var isTrue = _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Diid == dto.Diid && x.IsDel == 0)
  6297. .SetColumns(x => new Grp_TravelList
  6298. {
  6299. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  6300. DeleteUserId = dto.UserId,
  6301. IsDel = 1,
  6302. }).ExecuteCommand();
  6303. jw = JsonView(true);
  6304. return Ok(jw);
  6305. }
  6306. /// <summary>
  6307. /// 行程单保存
  6308. /// </summary>
  6309. /// <returns></returns>
  6310. [HttpPost]
  6311. public IActionResult TravelSave(TravelSaveDto dto)
  6312. {
  6313. var jw = JsonView(false);
  6314. if (dto.Arr.Count > 0)
  6315. {
  6316. try
  6317. {
  6318. _sqlSugar.BeginTran();
  6319. foreach (var item in dto.Arr)
  6320. {
  6321. if (item.Id == 0)
  6322. {
  6323. throw new Exception("请传入正确的Id");
  6324. }
  6325. _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Id == item.Id)
  6326. .SetColumns(x => new Grp_TravelList
  6327. {
  6328. Trip = item.Trip
  6329. }).ExecuteCommand();
  6330. }
  6331. _sqlSugar.CommitTran();
  6332. jw = JsonView(true);
  6333. }
  6334. catch (Exception ex)
  6335. {
  6336. _sqlSugar.RollbackTran();
  6337. jw.Msg = "程序异常!" + ex.Message;
  6338. }
  6339. }
  6340. else
  6341. {
  6342. jw.Msg = "请传入正确的参数!";
  6343. }
  6344. return Ok(jw);
  6345. }
  6346. /// <summary>
  6347. /// 导出行程单
  6348. /// </summary>
  6349. /// <param name="dto"></param>
  6350. /// <returns></returns>
  6351. [HttpPost]
  6352. public IActionResult ExportTravel(ExportTravelDto dto)
  6353. {
  6354. var jw = JsonView(false);
  6355. jw.Data = "";
  6356. int diid = 0;
  6357. var Find = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid);
  6358. if (Find == null)
  6359. {
  6360. jw.Msg = "请选择正确的团组!";
  6361. return Ok(jw);
  6362. }
  6363. else
  6364. {
  6365. diid = Find.Id;
  6366. }
  6367. //数据源
  6368. List<Grp_TravelList> _travelList = new List<Grp_TravelList>();
  6369. DataTable dtBlack = null;
  6370. try
  6371. {
  6372. dtBlack = GeneralMethod.GetTableByBlackCode(diid);
  6373. }
  6374. catch (Exception)
  6375. {
  6376. jw.Msg = "机票黑屏代码有误!";
  6377. return Ok(jw);
  6378. }
  6379. string CityStr = string.Empty;
  6380. if (dtBlack.Rows.Count == 0)
  6381. {
  6382. jw.Msg = "机票黑屏代码有误!";
  6383. return Ok(jw);
  6384. }
  6385. else
  6386. {
  6387. foreach (DataRow row in dtBlack.Rows)
  6388. {
  6389. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  6390. {
  6391. jw.Msg = "机票黑屏代码有误!" + row["Error"].ToString();
  6392. return Ok(jw);
  6393. }
  6394. }
  6395. CityStr = GeneralMethod.GetGroupCityLine(diid, "/");
  6396. _travelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0 && x.Issel == 1).ToList();
  6397. }
  6398. //创建数据源Table
  6399. DataTable dtSource = new DataTable();
  6400. dtSource.Columns.Add("Days", typeof(string));
  6401. dtSource.Columns.Add("Date", typeof(string));
  6402. dtSource.Columns.Add("Week", typeof(string));
  6403. dtSource.Columns.Add("Traffic", typeof(string));
  6404. dtSource.Columns.Add("Trip", typeof(string));
  6405. //获取数据,放到datatable
  6406. foreach (var item in _travelList)
  6407. {
  6408. DataRow dr = dtSource.NewRow();
  6409. dr["Days"] = item.Days;
  6410. dr["Date"] = item.Date;
  6411. dr["Week"] = item.WeekDay;
  6412. dr["Traffic"] = item.Traffic_First
  6413. + "\r\n"
  6414. + item.Traffic_Second;
  6415. dr["Trip"] = item.Trip;
  6416. dtSource.Rows.Add(dr);
  6417. }
  6418. Dictionary<string, string> dic = new Dictionary<string, string>();
  6419. dic.Add("Dele", Find.TeamName.ToString() + GetNum(Find.VisitDays.ToString()));
  6420. dic.Add("City", CityStr);
  6421. dic.Add("Days", Find.VisitDays.ToString());
  6422. dic.Add("DeleCode", Find.TourCode);
  6423. dic.Add("Pnum", Find.VisitPNumber.ToString());
  6424. //模板路径
  6425. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Travel/日行程3.docx";
  6426. //载入模板
  6427. Document doc = null;
  6428. DocumentBuilder builder = null;
  6429. try
  6430. {
  6431. //载入模板
  6432. doc = new Document(tempPath);
  6433. builder = new DocumentBuilder(doc);
  6434. }
  6435. catch (Exception)
  6436. {
  6437. jw.Msg = "模板位置不存在!";
  6438. return Ok(jw);
  6439. }
  6440. foreach (var key in dic.Keys)
  6441. {
  6442. Bookmark bookmark = doc.Range.Bookmarks[key];
  6443. if (bookmark != null)
  6444. {
  6445. builder.MoveToBookmark(key);
  6446. builder.Write(dic[key]);
  6447. }
  6448. }
  6449. //获取word里所有表格
  6450. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  6451. //获取所填表格的序数
  6452. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  6453. try
  6454. {
  6455. //循环赋值
  6456. for (int i = 0; i < dtSource.Rows.Count; i++)
  6457. {
  6458. builder.MoveToCell(0, i + 1, 0, 0);
  6459. builder.Write(dtSource.Rows[i]["Days"].ToString());
  6460. builder.MoveToCell(0, i + 1, 1, 0);
  6461. builder.Write(dtSource.Rows[i]["Date"].ToString() + "\r\n" + dtSource.Rows[i]["Week"].ToString());
  6462. builder.MoveToCell(0, i + 1, 2, 0);
  6463. builder.Write(dtSource.Rows[i]["Traffic"].ToString());
  6464. var trip = dtSource.Rows[i]["Trip"].ToString();
  6465. builder.MoveToCell(0, i + 1, 3, 0);
  6466. builder.Write(trip);
  6467. var cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 1, true);
  6468. var paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  6469. // 获取特定索引的段落
  6470. Paragraph paragraph = (Paragraph)paragraphs[0];
  6471. Run run = paragraph.Runs[0];
  6472. Aspose.Words.Font font = run.Font;
  6473. font.Name = "黑体";
  6474. //设置双休红色
  6475. cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 3, true);
  6476. paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  6477. paragraph = (Paragraph)paragraphs[1];
  6478. if (paragraph.GetText().Contains("星期六") || paragraph.GetText().Contains("星期日"))
  6479. {
  6480. run = paragraph.Runs[0];
  6481. font = run.Font;
  6482. font.Color = Color.Red;
  6483. }
  6484. }
  6485. }
  6486. catch (Exception ex)
  6487. {
  6488. }
  6489. //删除多余行
  6490. while (tableOne.Rows.Count > 1 + dtSource.Rows.Count)
  6491. {
  6492. tableOne.Rows.RemoveAt(1 + dtSource.Rows.Count);//(1+dtSource.Rows.Count + 1)-1
  6493. }
  6494. string savePath = AppSettingsHelper.Get("WordBasePath") + "Travel/export/";
  6495. if (!Directory.Exists(savePath))
  6496. {
  6497. try
  6498. {
  6499. Directory.CreateDirectory(savePath);
  6500. }
  6501. catch
  6502. {
  6503. }
  6504. }
  6505. string path = savePath + Find.TeamName + "出访日程";
  6506. string ftpPath = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + "Travel/export/" + Find.TeamName + "出访日程";
  6507. try
  6508. {
  6509. Aspose.Words.SaveFormat saveFormat = Aspose.Words.SaveFormat.Doc;
  6510. string postfix = ".docx";
  6511. if (dto.IsPDF == 1)
  6512. {
  6513. saveFormat = Aspose.Words.SaveFormat.Pdf;
  6514. postfix = ".pdf";
  6515. }
  6516. doc.Save(path + postfix, saveFormat);
  6517. jw = JsonView(true, "导出成功", ftpPath + postfix);
  6518. }
  6519. catch (Exception)
  6520. {
  6521. jw = JsonView(false);
  6522. }
  6523. return Ok(jw);
  6524. }
  6525. /// <summary>
  6526. /// 根据大写数字返回小写数字或根据小写数字返回大写数字
  6527. /// </summary>
  6528. /// <param name="num"></param>
  6529. /// <returns></returns>
  6530. string GetNum(string num)
  6531. {
  6532. string str = "";
  6533. switch (num)
  6534. {
  6535. case "1":
  6536. str = "一";
  6537. break;
  6538. case "2":
  6539. str = "二";
  6540. break;
  6541. case "3":
  6542. str = "三";
  6543. break;
  6544. case "4":
  6545. str = "四";
  6546. break;
  6547. case "5":
  6548. str = "五";
  6549. break;
  6550. case "6":
  6551. str = "六";
  6552. break;
  6553. case "7":
  6554. str = "七";
  6555. break;
  6556. case "8":
  6557. str = "八";
  6558. break;
  6559. case "9":
  6560. str = "九";
  6561. break;
  6562. case "10":
  6563. str = "十";
  6564. break;
  6565. case "11":
  6566. str = "十一";
  6567. break;
  6568. case "12":
  6569. str = "十二";
  6570. break;
  6571. case "一":
  6572. str = "1";
  6573. break;
  6574. case "二":
  6575. str = "2";
  6576. break;
  6577. case "三":
  6578. str = "3";
  6579. break;
  6580. case "四":
  6581. str = "4";
  6582. break;
  6583. case "五":
  6584. str = "5";
  6585. break;
  6586. case "六":
  6587. str = "6";
  6588. break;
  6589. case "七":
  6590. str = "7";
  6591. break;
  6592. case "八":
  6593. str = "8";
  6594. break;
  6595. case "九":
  6596. str = "9";
  6597. break;
  6598. case "十":
  6599. str = "10";
  6600. break;
  6601. case "十一":
  6602. str = "11";
  6603. break;
  6604. case "十二":
  6605. str = "12";
  6606. break;
  6607. }
  6608. return str;
  6609. }
  6610. #endregion
  6611. #endregion
  6612. #region 团组成本
  6613. /// <summary>
  6614. /// 团组成本数据初始化
  6615. /// </summary>
  6616. /// <param name="dto"></param>
  6617. /// <returns></returns>
  6618. [HttpPost]
  6619. public async Task<IActionResult> GroupCostInit(GroupCostInItDto dto)
  6620. {
  6621. var groupList = _sqlSugar.SqlQueryable<DelegationInfoAndIsTrueView>($@"
  6622. Select a.Id,TeamName GroupName,b.isTrue From Grp_DelegationInfo a left join (select top 100 percent Diid, CASE
  6623. WHEN COUNT(*) >= 0 THEN 'True'
  6624. ELSE 'False' END as isTrue from Grp_GroupCost where Isdel = 0 and date != '' group by Diid) b on a.Id = b.Diid
  6625. Where TeamName != '' And IsDel = 0 Order By a.Id Desc
  6626. ").ToList(); //团组列表
  6627. int diid = dto.Diid == -1 ? groupList.First().Id : dto.Diid;
  6628. var groupInfo = await _groupRepository.PostShareGroupInfo(new ShareGroupInfoDto { PortType = 1, Id = diid }); //团组信息
  6629. List<Res_CountryFeeCost> visaCountryInfoArr = new List<Res_CountryFeeCost>();
  6630. var groupinfoValue = (groupInfo.Data as Web_ShareGroupInfoView);
  6631. if (groupinfoValue != null)
  6632. {
  6633. var countryArr = groupinfoValue.VisitCountry ??= string.Empty;
  6634. var spArr = new string[1] { countryArr };
  6635. if (countryArr.Contains("|"))
  6636. {
  6637. spArr = countryArr.Split("|");
  6638. }
  6639. else if (countryArr.Contains("、"))
  6640. {
  6641. spArr = countryArr.Split("、");
  6642. }
  6643. foreach (var item in spArr.Where(x => !string.IsNullOrWhiteSpace(x)).ToList())
  6644. {
  6645. var dbQueryCountry = _sqlSugar.Queryable<Res_CountryFeeCost>().First(x => x.VisaCountry.Contains(item));
  6646. if (dbQueryCountry != null)
  6647. {
  6648. visaCountryInfoArr.Add(dbQueryCountry);
  6649. }
  6650. }
  6651. }
  6652. var groupChecks = _checkBoxs.GetCheckBoxsByDiid(diid); //团组选中信息 可枚举
  6653. var groupCost = _GroupCostRepository.GetAllByDiid(diid); //团组列表信息
  6654. var create = _GroupCostRepository.
  6655. CreateGroupCostByBlackCode(dto.Diid);
  6656. if (groupCost.Count == 0 && create.Code == 0)
  6657. {
  6658. groupCost = (create.Data as List<Grp_GroupCost>) ?? new List<Grp_GroupCost>();
  6659. }
  6660. var groupCostMap = _mapper.Map<List<Grp_GroupCostDto>>(groupCost);
  6661. var hotelNumber = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(diid); //酒店数量 可枚举
  6662. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(diid); //成本系数 可枚举
  6663. groupCostMap = groupCostMap.Select(x =>
  6664. {
  6665. if (DateTime.TryParse(x.Date, out DateTime dataForamt))
  6666. {
  6667. x.Date = dataForamt.ToString("yyyy-MM-dd");
  6668. }
  6669. return x;
  6670. }).ToList();
  6671. //GroupCostParameter.Add(new
  6672. // Grp_GroupCostParameter());
  6673. var GroupCostParameterMap = _mapper.Map<List<Grp_GroupCostParameterDto>>(GroupCostParameter);
  6674. bool hotelIsTrue = _sqlSugar.Queryable<Grp_HotelInquiry>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).Count() > 0;
  6675. return Ok(JsonView(new
  6676. {
  6677. groupList,
  6678. groupInfo,
  6679. groupChecks,
  6680. groupCost = groupCostMap,
  6681. hotelNumber,
  6682. GroupCostParameter = GroupCostParameterMap,
  6683. visaCountryInfoArr = visaCountryInfoArr.Select(x => new
  6684. {
  6685. x.VisaCountry,
  6686. x.VisaPrice,
  6687. x.Id,
  6688. }).ToList(),
  6689. baoPi = _GroupCostParameterRepository.GetBaoPi(diid),
  6690. blackCodeIsTrue = create.Code == 0 ? true : false,
  6691. hotelIsTrue = hotelIsTrue,
  6692. }));
  6693. }
  6694. /// <summary>
  6695. /// 团组成本信息保存
  6696. /// </summary>
  6697. /// <param name="dto"></param>
  6698. /// <returns></returns>
  6699. [HttpPost]
  6700. public async Task<IActionResult> SaveGroupCost(GroupCostSavaDto dto)
  6701. {
  6702. if (dto.Diid <= 0 || dto.Userid <= 0)
  6703. {
  6704. return Ok(JsonView(false));
  6705. }
  6706. JsonView jw = null;
  6707. bool isTrue = false;
  6708. #region 复制团组成本
  6709. //if (dto.Diid == 2581)
  6710. //{
  6711. // dto.Diid = 2599;
  6712. // dto.CheckBoxs.ForEach(x =>
  6713. // {
  6714. // x.Diid = 2599;
  6715. // });
  6716. // dto.GroupCosts.ForEach(x =>
  6717. // {
  6718. // x.Diid = 2599;
  6719. // });
  6720. // dto.CostTypeHotelNumbers.ForEach(x =>
  6721. // {
  6722. // x.Diid = 2599;
  6723. // });
  6724. // dto.GroupCostParameters.ForEach(x =>
  6725. // {
  6726. // x.DiId = 2599;
  6727. // });
  6728. //}
  6729. #endregion
  6730. var Grp_groups = _mapper.Map<List<Grp_GroupCost>>(dto.GroupCosts);
  6731. Grp_groups.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; }); //.ToString("yyyy-MM-dd HH:mm:ss")
  6732. var Grp_CheckBoxs = _mapper.Map<List<Grp_CheckBoxs>>(dto.CheckBoxs);
  6733. Grp_CheckBoxs.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; });
  6734. var Grp_HotelNumber = _mapper.Map<List<Grp_CostTypeHotelNumber>>(dto.CostTypeHotelNumbers);
  6735. var Grp_CostParameters = _mapper.Map<List<Grp_GroupCostParameter>>(dto.GroupCostParameters);
  6736. try
  6737. {
  6738. _sqlSugar.BeginTran();
  6739. isTrue = await _GroupCostRepository.
  6740. SaveGroupCostList(Grp_groups, dto.Diid, dto.Userid); //列表
  6741. isTrue = await _checkBoxs.SaveCheckBoxs(Grp_CheckBoxs, dto.Diid); //选中项
  6742. isTrue = await _CostTypeHotelNumberRepository.SaveHotelNumber(Grp_HotelNumber, dto.Userid, dto.Diid); //酒店房间数量
  6743. isTrue = await _GroupCostParameterRepository.SaveAsync(Grp_CostParameters, dto.Userid, dto.Diid); //系数
  6744. _sqlSugar.CommitTran();
  6745. jw = JsonView(true, "保存成功!", isTrue);
  6746. }
  6747. catch (Exception)
  6748. {
  6749. _sqlSugar.RollbackTran();
  6750. jw = JsonView(false);
  6751. }
  6752. return Ok(jw);
  6753. }
  6754. /// <summary>
  6755. /// 司兼导数据
  6756. /// </summary>
  6757. /// <param name="dto"></param>
  6758. /// <returns></returns>
  6759. [HttpPost]
  6760. public IActionResult GetCarGuides(CarGuidesDto dto)
  6761. {
  6762. JsonView jw = null;
  6763. var Data = _sqlSugar.SqlQueryable<Grp_CarGuides>($@" select * from Grp_CarGuides where isdel = 0 ").ToList();
  6764. jw = JsonView(true, "获取成功!", Data);
  6765. return Ok(jw);
  6766. }
  6767. /// <summary>
  6768. /// 导游数据
  6769. /// </summary>
  6770. /// <param name="dto"></param>
  6771. /// <returns></returns>
  6772. [HttpPost]
  6773. public IActionResult GetGuidesInfo(CarGuidesDto dto)
  6774. {
  6775. JsonView jw = null;
  6776. //var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" SELECT* FROM (
  6777. // 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
  6778. // where RowNumber BETWEEN {(dto.Page - 1) * dto.Size + 1} and {(dto.Page) * dto.Size}").ToList();
  6779. var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" select * from Grp_GuidesInfo where isdel = 0 ").ToList();
  6780. jw = JsonView(true, "获取成功!", Data);
  6781. return Ok(jw);
  6782. }
  6783. /// <summary>
  6784. /// 成本车数据
  6785. /// </summary>
  6786. /// <param name="dto"></param>
  6787. /// <returns></returns>
  6788. [HttpPost]
  6789. public IActionResult GetCarInfo(CarGuidesDto dto)
  6790. {
  6791. JsonView jw = null;
  6792. var Data = _sqlSugar.SqlQueryable<Grp_CarInfo>($@" select * from Grp_CarInfo where isdel = 0 ").ToList();
  6793. jw = JsonView(true, "获取成功!", Data);
  6794. return Ok(jw);
  6795. }
  6796. /// <summary>
  6797. /// 景点数据
  6798. /// </summary>
  6799. /// <param name="dto"></param>
  6800. /// <returns></returns>
  6801. [HttpPost]
  6802. public IActionResult GetScenicSpotInfo(CarGuidesDto dto)
  6803. {
  6804. var Data = _sqlSugar.SqlQueryable<Grp_ScenicSpotInfo>($@" select * from Grp_ScenicSpotInfo where isdel = 0 ").ToList();
  6805. return Ok(JsonView(true, "获取成功!", Data));
  6806. }
  6807. /// <summary>
  6808. /// 成本通知
  6809. /// </summary>
  6810. /// <param name="dto"></param>
  6811. /// <returns></returns>
  6812. [HttpPost]
  6813. public async Task<IActionResult> GroupIsShare(GroupIsShareDto dto)
  6814. {
  6815. if (dto.Diid < 0)
  6816. {
  6817. return Ok(JsonView(false));
  6818. }
  6819. JsonView jw = null;
  6820. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterMainByDiid(dto.Diid);
  6821. if (GroupCostParameter != null)
  6822. {
  6823. int IsShare = 0;
  6824. if (GroupCostParameter.IsShare == 0) IsShare = 1;
  6825. else if (GroupCostParameter.IsShare == 1) IsShare = 0;
  6826. bool isTrue = await _GroupCostParameterRepository.UpdateIsShareById(GroupCostParameter.Id, IsShare);
  6827. string msg = string.Empty;
  6828. if (isTrue)
  6829. {
  6830. if (IsShare == 0)
  6831. {
  6832. msg = "禁止通知,其他模块操作人员不可见此成本信息!";
  6833. }
  6834. else
  6835. {
  6836. #region 企微通知对应岗位用户
  6837. try
  6838. {
  6839. AppNoticeLibrary.SendUserMsg_GroupShare_ToJob(dto.Diid);
  6840. }
  6841. catch (Exception ex)
  6842. {
  6843. }
  6844. #endregion
  6845. msg = "通知成功,其他模块操作人员可见此成本信息!";
  6846. }
  6847. jw = JsonView(isTrue, msg, new { IsShare });
  6848. }
  6849. else
  6850. {
  6851. msg = "修改失败!";
  6852. jw = JsonView(isTrue, msg);
  6853. }
  6854. }
  6855. else
  6856. {
  6857. jw = JsonView(false, "该团没有数据,请添加数据,保存后再操作!");
  6858. }
  6859. return Ok(jw);
  6860. }
  6861. /// <summary>
  6862. /// 导出报价单
  6863. /// </summary>
  6864. /// <param name="dto"></param>
  6865. /// <returns></returns>
  6866. [HttpPost]
  6867. public async Task<IActionResult> ExportPriceCheckWordFile(GroupCostExportWordFile dto)
  6868. {
  6869. if (dto.Diid == 0)
  6870. {
  6871. return Ok(JsonView(false, "请传递团组id"));
  6872. }
  6873. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  6874. if (deleInfo.Code != 0)
  6875. {
  6876. return Ok(JsonView(false, "团组信息查询失败!"));
  6877. }
  6878. var di = deleInfo.Data as DelegationInfoWebView;
  6879. if (di != null)
  6880. {
  6881. di.TeamName = di.TeamName.Replace("|","、");
  6882. di.VisitCountry = di.VisitCountry.Replace("|", "、");
  6883. //文件名
  6884. string strFileName = di.TeamName + "-收款账单.doc";
  6885. //获取模板
  6886. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/收款账单(四川)模板.doc");
  6887. //载入模板
  6888. Document doc = new Document(tmppath);
  6889. decimal TotalPrice = 0.00M;
  6890. string itemStr = string.Empty;
  6891. Dictionary<string, string> airSouer = new Dictionary<string, string>();
  6892. //airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  6893. airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  6894. airSouer.Add("JJCSGR", "经济舱及酒店单人间");
  6895. airSouer.Add("GWCSGR", "公务舱及酒店单人间");
  6896. airSouer.Add("GWCJSES", "公务舱及酒店小套房");
  6897. airSouer.Add("GWCSUITE", "公务舱及酒店套房");
  6898. airSouer.Add("JJCSUITE", "经济舱及酒店套房");
  6899. var groupCostType = dto.airs.GroupBy(x => x.costType).OrderBy(x => x.Key);
  6900. foreach (var cost in groupCostType)
  6901. {
  6902. var List = cost.ToList();
  6903. if (cost.Key == "A")
  6904. {
  6905. foreach (var ListItem in List)
  6906. {
  6907. if (ListItem.number > 0)
  6908. {
  6909. if (ListItem.code.Contains("TBR"))
  6910. {
  6911. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6912. }
  6913. else
  6914. {
  6915. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6916. }
  6917. TotalPrice += (ListItem.number * ListItem.price);
  6918. }
  6919. }
  6920. }
  6921. else
  6922. {
  6923. itemStr = itemStr.Insert(0, "A段\r\n");
  6924. itemStr += "B段\r\n";
  6925. foreach (var ListItem in List)
  6926. {
  6927. if (ListItem.number > 0)
  6928. {
  6929. if (ListItem.code.Contains("TBR"))
  6930. {
  6931. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6932. }
  6933. else
  6934. {
  6935. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6936. }
  6937. TotalPrice += (ListItem.number * ListItem.price);
  6938. }
  6939. }
  6940. }
  6941. }
  6942. #region 替换Word模板书签内容
  6943. Dictionary<string, string> marks = new Dictionary<string, string>();
  6944. marks.Add("To", di.ClientUnit);//付款方
  6945. marks.Add("ToTel", di.TellPhone);//付款方电话
  6946. marks.Add("Date", DateTime.Now.ToString("yyyy-MM-dd"));//导出时间
  6947. marks.Add("Team", di.VisitCountry.Replace(" ", "、"));//团队名称
  6948. marks.Add("TontractTime", (di.VisitDate).ToString("yyyy年MM月dd日"));//付款日期
  6949. marks.Add("PayDay", (di.PayDay).ToString());//付款预期
  6950. marks.Add("PaymentMoney", (di.PaymentMoney).ToString("#0.00"));//付款金额
  6951. marks.Add("WeChat", di.WeChatNo ?? "");//微信号
  6952. marks.Add("PayItemContent", itemStr);//详细信息
  6953. marks.Add("Total", TotalPrice.ToString("F2"));//合计
  6954. #endregion
  6955. ////注
  6956. //if (doc.Range.Bookmarks["Attention"] != null)
  6957. //{
  6958. // Bookmark mark = doc.Range.Bookmarks["Attention"];
  6959. // mark.Text = frList[0].Attention;
  6960. //}
  6961. foreach (var item in marks.Keys)
  6962. {
  6963. if (doc.Range.Bookmarks[item] != null)
  6964. {
  6965. Bookmark mark = doc.Range.Bookmarks[item];
  6966. mark.Text = marks[item];
  6967. }
  6968. }
  6969. byte[] bytes = null;
  6970. using (MemoryStream stream = new MemoryStream())
  6971. {
  6972. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  6973. bytes = stream.ToArray();
  6974. }
  6975. //doc.Save((AppSettingsHelper.Get("WordBasePath") + "Template/") + strFileName);
  6976. return Ok(JsonView(true, "", new
  6977. {
  6978. Data = bytes,
  6979. strFileName,
  6980. }));
  6981. }
  6982. else
  6983. {
  6984. return Ok(JsonView(false, "团组信息不存在!"));
  6985. }
  6986. }
  6987. /// <summary>
  6988. /// 导出团组成本
  6989. /// </summary>
  6990. /// <param name="dto"></param>
  6991. /// <returns></returns>
  6992. [HttpPost]
  6993. public async Task<IActionResult> ExportGroupCostExcelFile(GroupCostExportExcelFile dto)
  6994. {
  6995. var jw = JsonView(false);
  6996. if (dto.Diid == 0)
  6997. {
  6998. return Ok(JsonView(false, "请传递团组id"));
  6999. }
  7000. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  7001. if (deleInfo.Code != 0)
  7002. {
  7003. return Ok(JsonView(false, "团组信息查询失败!"));
  7004. }
  7005. var di = deleInfo.Data as DelegationInfoWebView;
  7006. if (di == null)
  7007. {
  7008. return Ok(JsonView(false, "团组信息查询失败!"));
  7009. }
  7010. List<GroupCost_Excel> List_GC1 = new List<GroupCost_Excel>();
  7011. WorkbookDesigner designer = new WorkbookDesigner();
  7012. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + ("Template/团组-成本.xls"));
  7013. var List_GC = _GroupCostRepository.GetAllByDiid(dto.Diid);
  7014. for (int i = 0; i < List_GC.Count; i++)
  7015. {
  7016. GroupCost_Excel gc = new GroupCost_Excel();
  7017. gc.Id = List_GC[i].Id;
  7018. gc.Diid = List_GC[i].Diid.ToString();
  7019. gc.DAY = List_GC[i].DAY;
  7020. string week = "";
  7021. if (!string.IsNullOrEmpty(List_GC[i].Date.Trim()))
  7022. week = CultureInfo.CurrentCulture.DateTimeFormat.GetDayName(Convert.ToDateTime(List_GC[i].Date).DayOfWeek);
  7023. gc.Date = (List_GC[i].Date + "\n" + week).ToString();
  7024. gc.ITIN = List_GC[i].ITIN;
  7025. gc.CarType = List_GC[i].CarType;
  7026. gc.CarTiming = List_GC[i].CarTiming.ToString() == "0" ? "/" : List_GC[i].CarTiming.ToString();
  7027. gc.CarCost = List_GC[i].CarCost.ToString() == "0" ? "/" : List_GC[i].CarCost.ToString();
  7028. gc.CarNumber = List_GC[i].CarNumber.ToString() == "0" ? "/" : List_GC[i].CarNumber.ToString();
  7029. gc.TGS = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGS.ToString();
  7030. gc.TGWH = List_GC[i].TGWH.ToString() == "0" ? "/" : List_GC[i].TGWH.ToString();
  7031. gc.TGN = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGN.ToString();
  7032. gc.TGOF = List_GC[i].TGOF.ToString() == "0" ? "/" : List_GC[i].TGOF.ToString();
  7033. gc.TGM = List_GC[i].TGM.ToString() == "0" ? "/" : List_GC[i].TGM.ToString();
  7034. gc.TGA = List_GC[i].TGA.ToString() == "0" ? "/" : List_GC[i].TGA.ToString();
  7035. gc.TGTF = List_GC[i].TGTF.ToString() == "0" ? "/" : List_GC[i].TGTF.ToString();
  7036. gc.TGEF = List_GC[i].TGEF.ToString() == "0" ? "/" : List_GC[i].TGEF.ToString();
  7037. gc.CFS = List_GC[i].CFS.ToString() == "0" ? "/" : List_GC[i].CFS.ToString();
  7038. gc.CFM = List_GC[i].CFM.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  7039. gc.CFOF = List_GC[i].CFOF.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  7040. gc.B = List_GC[i].B.ToString() == "0" ? "/" : List_GC[i].B.ToString();
  7041. gc.L = List_GC[i].L.ToString() == "0" ? "/" : List_GC[i].L.ToString();
  7042. gc.D = List_GC[i].D.ToString() == "0" ? "/" : List_GC[i].D.ToString();
  7043. gc.TBR = List_GC[i].TBR.ToString() == "0" ? "/" : List_GC[i].TBR.ToString();
  7044. gc.SGR = List_GC[i].SGR.ToString() == "0" ? "/" : List_GC[i].SGR.ToString();
  7045. gc.JS_ES = List_GC[i].JS_ES.ToString() == "0" ? "/" : List_GC[i].JS_ES.ToString();
  7046. gc.Suite = List_GC[i].Suite.ToString() == "0" ? "/" : List_GC[i].Suite.ToString();
  7047. gc.ACCON = List_GC[i].ACCON.ToString() == "0" ? "/" : List_GC[i].ACCON.ToString();
  7048. gc.TV = List_GC[i].TV.ToString() == "0" ? "/" : List_GC[i].TV.ToString();
  7049. gc.iL = List_GC[i].iL.ToString() == "0" ? "/" : List_GC[i].iL.ToString();
  7050. gc.IF = List_GC[i].IF.ToString() == "0" ? "/" : List_GC[i].IF.ToString();
  7051. gc.EF = List_GC[i].EF.ToString() == "0" ? "/" : List_GC[i].EF.ToString();
  7052. gc.B_R_F = List_GC[i].B_R_F.ToString() == "0" ? "/" : List_GC[i].B_R_F.ToString();
  7053. gc.TE = List_GC[i].TE.ToString() == "0" ? "/" : List_GC[i].TE.ToString();
  7054. gc.TGTips = List_GC[i].TGTips.ToString() == "0" ? "/" : List_GC[i].TGTips.ToString();
  7055. gc.DRVTips = List_GC[i].DRVTips.ToString() == "0" ? "/" : List_GC[i].DRVTips.ToString();
  7056. gc.PC = List_GC[i].PC.ToString() == "0" ? "/" : List_GC[i].PC.ToString();
  7057. gc.TLF = List_GC[i].TLF.ToString() == "0" ? "/" : List_GC[i].TLF.ToString();
  7058. gc.ECT = List_GC[i].ECT.ToString() == "0" ? "/" : List_GC[i].ECT.ToString();
  7059. List_GC1.Add(gc);
  7060. }
  7061. var dt = CommonFun.GetDataTableFromIList(List_GC1);
  7062. dt.TableName = "TB";
  7063. //报表标题等不用dt的值
  7064. designer.SetDataSource("TeamName", dto.title.TeamName);
  7065. designer.SetDataSource("Pnumber", dto.title.GroupNumber);
  7066. designer.SetDataSource("Tax", dto.title.Tax);
  7067. //designer.SetDataSource("FFYS", lblHotelCB.Text);
  7068. designer.SetDataSource("Currency", dto.title.Currency);
  7069. //designer.SetDataSource("HotelXS", txtHotelXS.Text);
  7070. designer.SetDataSource("Rate", dto.title.Rate);
  7071. var hotels = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(dto.Diid);
  7072. var Aparams = hotels.Find(x => x.Type == "Default");
  7073. if (Aparams == null)
  7074. {
  7075. return Ok(jw);
  7076. }
  7077. //酒店数量
  7078. var txtSGRNumber = Aparams.SGR.ToString();
  7079. var txtTBRNumber = Aparams.TBR.ToString();
  7080. var txtJSESNumber = Aparams.JSES.ToString();
  7081. var txtSUITENumbe = Aparams.SUITE.ToString();
  7082. if (dto.costType == "B")
  7083. {
  7084. Aparams = hotels.Find(x => x.Type == "A");
  7085. var Bparams = hotels.Find(x => x.Type == "B");
  7086. if (Aparams == null || Bparams == null)
  7087. {
  7088. return Ok(jw);
  7089. }
  7090. txtSGRNumber = "A段人数:" + Aparams.SGR.ToString() + " B段人数:" + Bparams.SGR.ToString();
  7091. txtTBRNumber = "A段人数:" + Aparams.TBR.ToString() + " B段人数:" + Bparams.TBR.ToString();
  7092. txtJSESNumber = "A段人数:" + Aparams.JSES.ToString() + " B段人数:" + Bparams.JSES.ToString();
  7093. txtSUITENumbe = "A段人数:" + Aparams.SUITE.ToString() + " B段人数:" + Bparams.SUITE.ToString();
  7094. }
  7095. designer.SetDataSource("SGRNumber", txtSGRNumber);
  7096. designer.SetDataSource("TBRNumber", txtTBRNumber);
  7097. designer.SetDataSource("JSESNumber", txtJSESNumber);
  7098. designer.SetDataSource("SUITENumber", txtSUITENumbe);
  7099. var ws = designer.Workbook.Worksheets[0];
  7100. int Row = List_GC.Count;
  7101. int startIndex = 11;
  7102. int HideRows = 0;
  7103. List<int> hideRowsList = new List<int>();
  7104. decimal TzZCB2 = 0.00M, TzZLR2 = 0.00M, TzZBJ2 = 0.00M;
  7105. #region A段left数据
  7106. var left = dto.leftInfo.Find(x => x.Type == "A");
  7107. if (left == null)
  7108. {
  7109. return Ok(jw);
  7110. }
  7111. var leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("签证"));
  7112. if (leftBindData != null)
  7113. {
  7114. designer.SetDataSource("VisaDRCB", leftBindData.cb);
  7115. designer.SetDataSource("VisaRS", leftBindData.rs);
  7116. designer.SetDataSource("VisaXS", leftBindData.xs);
  7117. designer.SetDataSource("VisaZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7118. designer.SetDataSource("VisaDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7119. designer.SetDataSource("VisaZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7120. designer.SetDataSource("VisaDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7121. designer.SetDataSource("VisaZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7122. }
  7123. else
  7124. {
  7125. hideRowsList.Add(Row + startIndex + HideRows);
  7126. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7127. }
  7128. HideRows += 2;
  7129. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("保险"));
  7130. if (leftBindData != null)
  7131. {
  7132. designer.SetDataSource("BXDRCB", leftBindData.cb);
  7133. designer.SetDataSource("BXRS", leftBindData.rs);
  7134. designer.SetDataSource("BXXS", leftBindData.xs);
  7135. designer.SetDataSource("BXZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7136. designer.SetDataSource("BXDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7137. designer.SetDataSource("BXZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7138. designer.SetDataSource("BXDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7139. designer.SetDataSource("BXZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7140. }
  7141. else
  7142. {
  7143. hideRowsList.Add(Row + startIndex + HideRows);
  7144. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7145. }
  7146. HideRows += 2;
  7147. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  7148. if (leftBindData != null)
  7149. {
  7150. designer.SetDataSource("HSDRCB", leftBindData.cb);
  7151. designer.SetDataSource("HSRS", leftBindData.rs);
  7152. designer.SetDataSource("HSXS", leftBindData.xs);
  7153. designer.SetDataSource("HSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7154. designer.SetDataSource("HSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7155. designer.SetDataSource("HSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7156. designer.SetDataSource("HSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7157. designer.SetDataSource("HSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7158. }
  7159. else
  7160. {
  7161. hideRowsList.Add(Row + startIndex + HideRows);
  7162. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7163. }
  7164. HideRows += 2;
  7165. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  7166. if (leftBindData != null)
  7167. {
  7168. designer.SetDataSource("JPJJCCB", leftBindData.cb);
  7169. designer.SetDataSource("JPJJCPnum", leftBindData.rs);
  7170. designer.SetDataSource("JPJJCXS", leftBindData.xs);
  7171. designer.SetDataSource("JPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7172. designer.SetDataSource("JPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7173. designer.SetDataSource("JPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7174. designer.SetDataSource("JPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7175. designer.SetDataSource("JPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7176. }
  7177. else
  7178. {
  7179. hideRowsList.Add(Row + startIndex + HideRows);
  7180. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7181. }
  7182. HideRows += 2;
  7183. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  7184. if (leftBindData != null)
  7185. {
  7186. designer.SetDataSource("JPGWCCB", leftBindData.cb);
  7187. designer.SetDataSource("JPGWCPNum", leftBindData.rs);
  7188. designer.SetDataSource("JPGWCXS", leftBindData.xs);
  7189. designer.SetDataSource("JPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7190. designer.SetDataSource("JPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7191. designer.SetDataSource("JPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7192. designer.SetDataSource("JPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7193. designer.SetDataSource("JPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7194. }
  7195. else
  7196. {
  7197. hideRowsList.Add(Row + startIndex + HideRows);
  7198. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7199. }
  7200. HideRows += 2;
  7201. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("头等舱"));
  7202. if (leftBindData != null)
  7203. {
  7204. designer.SetDataSource("JPTDCCB", leftBindData.cb);
  7205. designer.SetDataSource("JPTDCPNum", leftBindData.rs);
  7206. designer.SetDataSource("JPTDCXS", leftBindData.xs);
  7207. designer.SetDataSource("JPTDCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7208. designer.SetDataSource("JPTDCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7209. designer.SetDataSource("JPTDCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7210. designer.SetDataSource("JPTDCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7211. designer.SetDataSource("JPTDCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7212. }
  7213. else
  7214. {
  7215. hideRowsList.Add(Row + startIndex + HideRows);
  7216. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7217. }
  7218. HideRows += 2;
  7219. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  7220. if (leftBindData != null)
  7221. {
  7222. ////TBR
  7223. designer.SetDataSource("HotelTBRDRCB", leftBindData.cb);
  7224. designer.SetDataSource("HotelTBRRS", leftBindData.rs);
  7225. designer.SetDataSource("HotelTBRXS", leftBindData.xs);
  7226. designer.SetDataSource("HotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7227. designer.SetDataSource("HotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7228. designer.SetDataSource("HotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7229. designer.SetDataSource("HotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7230. designer.SetDataSource("HotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7231. }
  7232. else
  7233. {
  7234. hideRowsList.Add(Row + startIndex + HideRows);
  7235. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7236. }
  7237. HideRows += 2;
  7238. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  7239. if (leftBindData != null)
  7240. {
  7241. ////SGR
  7242. designer.SetDataSource("HotelSGRDRCB", leftBindData.cb);
  7243. designer.SetDataSource("HotelSGRRS", leftBindData.rs);
  7244. designer.SetDataSource("HotelSGRXS", leftBindData.xs);
  7245. designer.SetDataSource("HotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7246. designer.SetDataSource("HotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7247. designer.SetDataSource("HotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7248. designer.SetDataSource("HotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7249. designer.SetDataSource("HotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7250. }
  7251. else
  7252. {
  7253. hideRowsList.Add(Row + startIndex + HideRows);
  7254. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7255. }
  7256. HideRows += 2;
  7257. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  7258. if (leftBindData != null)
  7259. {
  7260. ////JS/ES
  7261. designer.SetDataSource("HotelJSESDRCB", leftBindData.cb);
  7262. designer.SetDataSource("HotelJSESRS", leftBindData.rs);
  7263. designer.SetDataSource("HotelJSESXS", leftBindData.xs);
  7264. designer.SetDataSource("HotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7265. designer.SetDataSource("HotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7266. designer.SetDataSource("HotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7267. designer.SetDataSource("HotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7268. designer.SetDataSource("HotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7269. }
  7270. else
  7271. {
  7272. hideRowsList.Add(Row + startIndex + HideRows);
  7273. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7274. }
  7275. HideRows += 2;
  7276. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  7277. if (leftBindData != null)
  7278. {
  7279. ////SUITE
  7280. designer.SetDataSource("HotelSUITEDRCB", leftBindData.cb);
  7281. designer.SetDataSource("HotelSUITERS", leftBindData.rs);
  7282. designer.SetDataSource("HotelSUITEXS", leftBindData.xs);
  7283. designer.SetDataSource("HotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7284. designer.SetDataSource("HotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7285. designer.SetDataSource("HotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7286. designer.SetDataSource("HotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7287. designer.SetDataSource("HotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7288. }
  7289. else
  7290. {
  7291. hideRowsList.Add(Row + startIndex + HideRows);
  7292. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7293. }
  7294. HideRows += 2;
  7295. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  7296. if (leftBindData != null)
  7297. {
  7298. designer.SetDataSource("DJDRCB", leftBindData.cb);
  7299. designer.SetDataSource("DJRS", leftBindData.rs);
  7300. designer.SetDataSource("DJXS", leftBindData.xs);
  7301. designer.SetDataSource("DJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7302. designer.SetDataSource("DJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7303. designer.SetDataSource("DJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7304. designer.SetDataSource("DJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7305. designer.SetDataSource("DJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7306. }
  7307. else
  7308. {
  7309. hideRowsList.Add(Row + startIndex + HideRows);
  7310. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7311. }
  7312. HideRows += 2;
  7313. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  7314. if (leftBindData != null)
  7315. {
  7316. designer.SetDataSource("HCPCB", leftBindData.cb);
  7317. designer.SetDataSource("HCPRS", leftBindData.rs);
  7318. designer.SetDataSource("HCPXS", leftBindData.xs);
  7319. designer.SetDataSource("HCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7320. designer.SetDataSource("HCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7321. designer.SetDataSource("HCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7322. designer.SetDataSource("HCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7323. designer.SetDataSource("HCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7324. }
  7325. else
  7326. {
  7327. hideRowsList.Add(Row + startIndex + HideRows);
  7328. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7329. }
  7330. HideRows += 2;
  7331. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  7332. if (leftBindData != null)
  7333. {
  7334. designer.SetDataSource("CPCB", leftBindData.cb);
  7335. designer.SetDataSource("CPRS", leftBindData.rs);
  7336. designer.SetDataSource("CPXS", leftBindData.xs);
  7337. designer.SetDataSource("CPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7338. designer.SetDataSource("CPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7339. designer.SetDataSource("CPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7340. designer.SetDataSource("CPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7341. designer.SetDataSource("CPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7342. }
  7343. else
  7344. {
  7345. hideRowsList.Add(Row + startIndex + HideRows);
  7346. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7347. }
  7348. HideRows += 2;
  7349. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  7350. if (leftBindData != null)
  7351. {
  7352. designer.SetDataSource("GWDRCD", leftBindData.cb);
  7353. designer.SetDataSource("GWRS", leftBindData.rs);
  7354. designer.SetDataSource("GWXS", leftBindData.xs);
  7355. designer.SetDataSource("GWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7356. designer.SetDataSource("GWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7357. designer.SetDataSource("GWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7358. designer.SetDataSource("GWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7359. designer.SetDataSource("GWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7360. }
  7361. else
  7362. {
  7363. hideRowsList.Add(Row + startIndex + HideRows);
  7364. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7365. }
  7366. HideRows += 2;
  7367. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  7368. if (leftBindData != null)
  7369. {
  7370. designer.SetDataSource("LYJDRCB", leftBindData.cb);
  7371. designer.SetDataSource("LYJRS", leftBindData.rs);
  7372. designer.SetDataSource("LYJXS", leftBindData.xs);
  7373. designer.SetDataSource("LYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7374. designer.SetDataSource("LYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7375. designer.SetDataSource("LYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7376. designer.SetDataSource("LYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7377. designer.SetDataSource("LYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7378. }
  7379. else
  7380. {
  7381. hideRowsList.Add(Row + startIndex + HideRows);
  7382. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7383. }
  7384. #endregion
  7385. #region A段Right信息
  7386. var right = dto.rightInfo.Find(x => x.Type == "A");
  7387. if (right == null)
  7388. {
  7389. return Ok(jw);
  7390. }
  7391. HideRows += 4;
  7392. var rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  7393. if (rightBindData != null)
  7394. {
  7395. //经济舱 + 双人间 TBR
  7396. designer.SetDataSource("lblJJCTBRDRCB", rightBindData.cb);
  7397. designer.SetDataSource("txtJJCTBRRS", rightBindData.rs);
  7398. designer.SetDataSource("lblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7399. designer.SetDataSource("lblJJCTBRDRBJ", rightBindData.bj);
  7400. designer.SetDataSource("lblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7401. designer.SetDataSource("lblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7402. designer.SetDataSource("lblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7403. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7404. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7405. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7406. }
  7407. else
  7408. {
  7409. hideRowsList.Add(Row + startIndex + HideRows);
  7410. }
  7411. HideRows += 2;
  7412. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  7413. if (rightBindData != null)
  7414. {
  7415. //经济舱 + 单人间 SGR
  7416. designer.SetDataSource("lblJJCSGRDRCB", rightBindData.cb);
  7417. designer.SetDataSource("txtJJCSGRRS", rightBindData.rs);
  7418. designer.SetDataSource("lblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7419. designer.SetDataSource("lblJJCSGRDRBJ", rightBindData.bj);
  7420. designer.SetDataSource("lblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7421. designer.SetDataSource("lblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7422. designer.SetDataSource("lblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7423. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7424. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7425. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7426. }
  7427. else
  7428. {
  7429. hideRowsList.Add(Row + startIndex + HideRows);
  7430. }
  7431. HideRows += 2;
  7432. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  7433. if (rightBindData != null)
  7434. {
  7435. //公务舱 + 单人间 SGR
  7436. designer.SetDataSource("lblGWCSGRCB", rightBindData.cb);
  7437. designer.SetDataSource("lblGWCSGRRS", rightBindData.rs);
  7438. designer.SetDataSource("lblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7439. designer.SetDataSource("lblGWCSGRDRBJ", rightBindData.bj);
  7440. designer.SetDataSource("lblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7441. designer.SetDataSource("lblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7442. designer.SetDataSource("lblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7443. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7444. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7445. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7446. }
  7447. else
  7448. {
  7449. hideRowsList.Add(Row + startIndex + HideRows);
  7450. }
  7451. HideRows += 2;
  7452. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7453. if (rightBindData != null)
  7454. {
  7455. //公务舱 + 小套房 JSES
  7456. designer.SetDataSource("lblGWCJSESDRCB", rightBindData.cb);
  7457. designer.SetDataSource("txtGWCJSESRS", rightBindData.rs);
  7458. designer.SetDataSource("lblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7459. designer.SetDataSource("lblGWCJSESDRBJ", rightBindData.bj);
  7460. designer.SetDataSource("lblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7461. designer.SetDataSource("lblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7462. designer.SetDataSource("lblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7463. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7464. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7465. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7466. }
  7467. else
  7468. {
  7469. hideRowsList.Add(Row + startIndex + HideRows);
  7470. }
  7471. HideRows += 2;
  7472. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  7473. if (rightBindData != null)
  7474. {
  7475. //公务舱 + 小套房 JSES
  7476. designer.SetDataSource("lblGWCSUITEDRCB", rightBindData.cb);
  7477. designer.SetDataSource("txtGWCSUITERS", rightBindData.rs);
  7478. designer.SetDataSource("lblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7479. designer.SetDataSource("lblGWCSUITEDRBJ", rightBindData.bj);
  7480. designer.SetDataSource("lblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7481. designer.SetDataSource("lblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7482. designer.SetDataSource("lblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7483. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7484. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7485. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7486. }
  7487. else
  7488. {
  7489. hideRowsList.Add(Row + startIndex + HideRows);
  7490. }
  7491. HideRows += 2;
  7492. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7493. if (rightBindData != null)
  7494. {
  7495. //经济舱 + 大套房
  7496. designer.SetDataSource("lblJJCSUITEDRCB", rightBindData.cb);
  7497. designer.SetDataSource("txtJJCSUITERS", rightBindData.rs);
  7498. designer.SetDataSource("lblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7499. designer.SetDataSource("lblJJCSUITEDRBJ", rightBindData.bj);
  7500. designer.SetDataSource("lblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7501. designer.SetDataSource("lblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7502. designer.SetDataSource("lblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7503. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7504. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7505. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7506. }
  7507. else
  7508. {
  7509. hideRowsList.Add(Row + startIndex + HideRows);
  7510. }
  7511. HideRows += 2;
  7512. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("头等舱 JS/ES"));
  7513. if (rightBindData != null)
  7514. {
  7515. //头等舱 + 小套房 JSES
  7516. designer.SetDataSource("lblTDCJSESDRCB", rightBindData.cb);
  7517. designer.SetDataSource("txtTDCJSESRS", rightBindData.rs);
  7518. designer.SetDataSource("lblTDCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7519. designer.SetDataSource("lblTDCJSESDRBJ", rightBindData.bj);
  7520. designer.SetDataSource("lblTDCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7521. designer.SetDataSource("lblTDCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7522. designer.SetDataSource("lblTDCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7523. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7524. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7525. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7526. }
  7527. else
  7528. {
  7529. hideRowsList.Add(Row + startIndex + HideRows);
  7530. }
  7531. HideRows += 2;
  7532. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("头等舱 SUITE"));
  7533. if (rightBindData != null)
  7534. {
  7535. //头等舱 + 大套房
  7536. designer.SetDataSource("lblTDCSUITEDRCB", rightBindData.cb);
  7537. designer.SetDataSource("txtTDCSUITERS", rightBindData.rs);
  7538. designer.SetDataSource("lblTDCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7539. designer.SetDataSource("lblTDCSUITEDRBJ", rightBindData.bj);
  7540. designer.SetDataSource("lblTDCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7541. designer.SetDataSource("lblTDCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7542. designer.SetDataSource("lblTDCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7543. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7544. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7545. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7546. }
  7547. else
  7548. {
  7549. hideRowsList.Add(Row + startIndex + HideRows);
  7550. }
  7551. #endregion
  7552. #region B段标题清空
  7553. designer.SetDataSource("CostBDRCB", "");
  7554. designer.SetDataSource("CostBRS", "");
  7555. designer.SetDataSource("CostBXS", "");
  7556. designer.SetDataSource("CostBZCB", "");
  7557. designer.SetDataSource("CostBDRBJ", "");
  7558. designer.SetDataSource("CostBZBJ", "");
  7559. designer.SetDataSource("CostBDRLR", "");
  7560. designer.SetDataSource("CostBZLR", "");
  7561. designer.SetDataSource("CostBDRCBOM", "");
  7562. designer.SetDataSource("CostBRSOM", "");
  7563. designer.SetDataSource("CostBZCBOM", "");
  7564. designer.SetDataSource("CostBDRBJOM", "");
  7565. designer.SetDataSource("CostBZBJOM", "");
  7566. designer.SetDataSource("CostBDRLROM", "");
  7567. designer.SetDataSource("CostBZLROM", "");
  7568. #endregion
  7569. designer.SetDataSource("HotelTBRName", "酒店TBR单间成本(CNY)");
  7570. designer.SetDataSource("HotelSGRName", "酒店SGR单间成本(CNY)");
  7571. designer.SetDataSource("HotelJSESName", "酒店JSES单间成本(CNY)");
  7572. designer.SetDataSource("HotelSUITEName", "酒店SUITE单间成本(CNY)");
  7573. designer.SetDataSource("DJName", "地接(CNY)");
  7574. designer.SetDataSource("HCPName", "地接-火车票(CNY)");
  7575. designer.SetDataSource("CPName", "地接-船票(CNY)");
  7576. designer.SetDataSource("GWName", "公务(CNY)");
  7577. designer.SetDataSource("YQHName", "邀请函(CNY)");
  7578. designer.SetDataSource("LYJName", "零用金(CNY)");
  7579. designer.SetDataSource("HSName", "核酸检测(CNY)");
  7580. designer.SetDataSource("AirGWCName", "机票-公务舱(CNY)");
  7581. designer.SetDataSource("AirJJCName", "机票-经济舱(CNY)");
  7582. designer.SetDataSource("AirTDCName", "机票-头等舱(CNY)");
  7583. designer.SetDataSource("BXName", "保险(CNY)");
  7584. designer.SetDataSource("VisaName", "签证(CNY)");
  7585. #region B段基本数据
  7586. if (dto.costType == "B")
  7587. {
  7588. left = dto.leftInfo.Find(x => x.Type == "B");
  7589. if (left == null)
  7590. {
  7591. return Ok(jw);
  7592. }
  7593. #region B段left数据
  7594. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  7595. if (leftBindData != null)
  7596. {
  7597. designer.SetDataSource("BHSDRCB", leftBindData.cb);
  7598. designer.SetDataSource("BHSRS", leftBindData.rs);
  7599. designer.SetDataSource("BHSXS", leftBindData.xs);
  7600. designer.SetDataSource("BHSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7601. designer.SetDataSource("BHSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7602. designer.SetDataSource("BHSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7603. designer.SetDataSource("BHSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7604. designer.SetDataSource("BHSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7605. }
  7606. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  7607. if (leftBindData != null)
  7608. {
  7609. designer.SetDataSource("BJPJJCCB", leftBindData.cb);
  7610. designer.SetDataSource("BJPJJCPnum", leftBindData.rs);
  7611. designer.SetDataSource("BJPJJCXS", leftBindData.xs);
  7612. designer.SetDataSource("BJPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7613. designer.SetDataSource("BJPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7614. designer.SetDataSource("BJPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7615. designer.SetDataSource("BJPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7616. designer.SetDataSource("BJPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7617. }
  7618. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  7619. if (leftBindData != null)
  7620. {
  7621. designer.SetDataSource("BJPGWCCB", leftBindData.cb);
  7622. designer.SetDataSource("BJPGWCPNum", leftBindData.rs);
  7623. designer.SetDataSource("BJPGWCXS", leftBindData.xs);
  7624. designer.SetDataSource("BJPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7625. designer.SetDataSource("BJPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7626. designer.SetDataSource("BJPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7627. designer.SetDataSource("BJPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7628. designer.SetDataSource("BJPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7629. }
  7630. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("头等舱"));
  7631. if (leftBindData != null)
  7632. {
  7633. designer.SetDataSource("BJPTDCCB", leftBindData.cb);
  7634. designer.SetDataSource("BJPTDCPNum", leftBindData.rs);
  7635. designer.SetDataSource("BJPTDCXS", leftBindData.xs);
  7636. designer.SetDataSource("BJPTDCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7637. designer.SetDataSource("BJPTDCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7638. designer.SetDataSource("BJPTDCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7639. designer.SetDataSource("BJPTDCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7640. designer.SetDataSource("BJPTDCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7641. }
  7642. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  7643. if (leftBindData != null)
  7644. {
  7645. designer.SetDataSource("BHCPCB", leftBindData.cb);
  7646. designer.SetDataSource("BHCPRS", leftBindData.rs);
  7647. designer.SetDataSource("BHCPXS", leftBindData.xs);
  7648. designer.SetDataSource("BHCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7649. designer.SetDataSource("BHCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7650. designer.SetDataSource("BHCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7651. designer.SetDataSource("BHCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7652. designer.SetDataSource("BHCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7653. }
  7654. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  7655. if (leftBindData != null)
  7656. {
  7657. designer.SetDataSource("BCPCB", leftBindData.cb);
  7658. designer.SetDataSource("BCPRS", leftBindData.rs);
  7659. designer.SetDataSource("BCPXS", leftBindData.xs);
  7660. designer.SetDataSource("BCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7661. designer.SetDataSource("BCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7662. designer.SetDataSource("BCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7663. designer.SetDataSource("BCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7664. designer.SetDataSource("BCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7665. }
  7666. //TBR
  7667. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  7668. if (leftBindData != null)
  7669. {
  7670. designer.SetDataSource("BHotelTBRDRCB", leftBindData.cb);
  7671. designer.SetDataSource("BHotelTBRRS", leftBindData.rs);
  7672. designer.SetDataSource("BHotelTBRXS", leftBindData.xs);
  7673. designer.SetDataSource("BHotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7674. designer.SetDataSource("BHotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7675. designer.SetDataSource("BHotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7676. designer.SetDataSource("BHotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7677. designer.SetDataSource("BHotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7678. }
  7679. //SGR
  7680. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  7681. if (leftBindData != null)
  7682. {
  7683. designer.SetDataSource("BHotelSGRDRCB", leftBindData.cb);
  7684. designer.SetDataSource("BHotelSGRRS", leftBindData.rs);
  7685. designer.SetDataSource("BHotelSGRXS", leftBindData.xs);
  7686. designer.SetDataSource("BHotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7687. designer.SetDataSource("BHotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7688. designer.SetDataSource("BHotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7689. designer.SetDataSource("BHotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7690. designer.SetDataSource("BHotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7691. }
  7692. //JS/ES
  7693. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  7694. if (leftBindData != null)
  7695. {
  7696. designer.SetDataSource("BHotelJSESDRCB", leftBindData.cb);
  7697. designer.SetDataSource("BHotelJSESRS", leftBindData.rs);
  7698. designer.SetDataSource("BHotelJSESXS", leftBindData.xs);
  7699. designer.SetDataSource("BHotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7700. designer.SetDataSource("BHotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7701. designer.SetDataSource("BHotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7702. designer.SetDataSource("BHotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7703. designer.SetDataSource("BHotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7704. }
  7705. //SUITE
  7706. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  7707. if (leftBindData != null)
  7708. {
  7709. designer.SetDataSource("BHotelSUITEDRCB", leftBindData.cb);
  7710. designer.SetDataSource("BHotelSUITERS", leftBindData.rs);
  7711. designer.SetDataSource("BHotelSUITEXS", leftBindData.xs);
  7712. designer.SetDataSource("BHotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7713. designer.SetDataSource("BHotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7714. designer.SetDataSource("BHotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7715. designer.SetDataSource("BHotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7716. designer.SetDataSource("BHotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7717. }
  7718. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  7719. if (leftBindData != null)
  7720. {
  7721. designer.SetDataSource("BDJDRCB", leftBindData.cb);
  7722. designer.SetDataSource("BDJRS", leftBindData.rs);
  7723. designer.SetDataSource("BDJXS", leftBindData.xs);
  7724. designer.SetDataSource("BDJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7725. designer.SetDataSource("BDJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7726. designer.SetDataSource("BDJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7727. designer.SetDataSource("BDJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7728. designer.SetDataSource("BDJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7729. }
  7730. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  7731. if (leftBindData != null)
  7732. {
  7733. designer.SetDataSource("BGWDRCD", leftBindData.cb);
  7734. designer.SetDataSource("BGWRS", leftBindData.rs);
  7735. designer.SetDataSource("BGWXS", leftBindData.xs);
  7736. designer.SetDataSource("BGWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7737. designer.SetDataSource("BGWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7738. designer.SetDataSource("BGWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7739. designer.SetDataSource("BGWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7740. designer.SetDataSource("BGWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7741. }
  7742. #region 优化方案
  7743. //Dictionary<string, object> excelBind = new Dictionary<string, object>();
  7744. //excelBind.Add("零用金", new {
  7745. //cb="",
  7746. //rs="",
  7747. //xs ="",
  7748. //zcb = "",
  7749. //});
  7750. #endregion
  7751. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  7752. if (leftBindData != null)
  7753. {
  7754. designer.SetDataSource("BLYJDRCB", leftBindData.cb);
  7755. designer.SetDataSource("BLYJRS", leftBindData.rs);
  7756. designer.SetDataSource("BLYJXS", leftBindData.xs);
  7757. designer.SetDataSource("BLYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7758. designer.SetDataSource("BLYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7759. designer.SetDataSource("BLYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7760. designer.SetDataSource("BLYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7761. designer.SetDataSource("BLYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7762. }
  7763. #endregion
  7764. #region B段Right信息
  7765. right = dto.rightInfo.Find(x => x.Type == "B");
  7766. if (right == null)
  7767. {
  7768. return Ok(jw);
  7769. }
  7770. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  7771. if (rightBindData != null)
  7772. {
  7773. //经济舱 + 双人间 TBR
  7774. designer.SetDataSource("BlblJJCTBRDRCB", rightBindData.cb);
  7775. designer.SetDataSource("BtxtJJCTBRRS", rightBindData.rs);
  7776. designer.SetDataSource("BlblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7777. designer.SetDataSource("BlblJJCTBRDRBJ", rightBindData.bj);
  7778. designer.SetDataSource("BlblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7779. designer.SetDataSource("BlblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7780. designer.SetDataSource("BlblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7781. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7782. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7783. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7784. }
  7785. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  7786. if (rightBindData != null)
  7787. {
  7788. //经济舱 + 单人间 SGR
  7789. designer.SetDataSource("BlblJJCSGRDRCB", rightBindData.cb);
  7790. designer.SetDataSource("BtxtJJCSGRRS", rightBindData.rs);
  7791. designer.SetDataSource("BlblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7792. designer.SetDataSource("BlblJJCSGRDRBJ", rightBindData.bj);
  7793. designer.SetDataSource("BlblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7794. designer.SetDataSource("BlblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7795. designer.SetDataSource("BlblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7796. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7797. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7798. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7799. }
  7800. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  7801. if (rightBindData != null)
  7802. {
  7803. //公务舱 + 单人间 SGR
  7804. designer.SetDataSource("BlblGWCSGRCB", rightBindData.cb);
  7805. designer.SetDataSource("BlblGWCSGRRS", rightBindData.rs);
  7806. designer.SetDataSource("BlblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7807. designer.SetDataSource("BlblGWCSGRDRBJ", rightBindData.bj);
  7808. designer.SetDataSource("BlblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7809. designer.SetDataSource("BlblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7810. designer.SetDataSource("BlblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7811. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7812. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7813. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7814. }
  7815. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7816. if (rightBindData != null)
  7817. {
  7818. //公务舱 + 小套房 JSES
  7819. designer.SetDataSource("BlblGWCJSESDRCB", rightBindData.cb);
  7820. designer.SetDataSource("BtxtGWCJSESRS", rightBindData.rs);
  7821. designer.SetDataSource("BlblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7822. designer.SetDataSource("BlblGWCJSESDRBJ", rightBindData.bj);
  7823. designer.SetDataSource("BlblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7824. designer.SetDataSource("BlblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7825. designer.SetDataSource("BlblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7826. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7827. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7828. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7829. }
  7830. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  7831. if (rightBindData != null)
  7832. {
  7833. //公务舱 + 小套房 JSES
  7834. designer.SetDataSource("BlblGWCSUITEDRCB", rightBindData.cb);
  7835. designer.SetDataSource("BtxtGWCSUITERS", rightBindData.rs);
  7836. designer.SetDataSource("BlblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7837. designer.SetDataSource("BlblGWCSUITEDRBJ", rightBindData.bj);
  7838. designer.SetDataSource("BlblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7839. designer.SetDataSource("BlblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7840. designer.SetDataSource("BlblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7841. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7842. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7843. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7844. }
  7845. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7846. if (rightBindData != null)
  7847. {
  7848. //经济舱 + 大套房
  7849. designer.SetDataSource("BlblJJCSUITEDRCB", rightBindData.cb);
  7850. designer.SetDataSource("BtxtJJCSUITERS", rightBindData.rs);
  7851. designer.SetDataSource("BlblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7852. designer.SetDataSource("BlblJJCSUITEDRBJ", rightBindData.bj);
  7853. designer.SetDataSource("BlblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7854. designer.SetDataSource("BlblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7855. designer.SetDataSource("BlblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7856. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7857. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7858. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7859. }
  7860. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("头等舱 JS/ES"));
  7861. if (rightBindData != null)
  7862. {
  7863. //头等舱 + 小套房 JSES
  7864. designer.SetDataSource("BlblTDCJSESDRCB", rightBindData.cb);
  7865. designer.SetDataSource("BtxtTDCJSESRS", rightBindData.rs);
  7866. designer.SetDataSource("BlblTDCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7867. designer.SetDataSource("BlblTDCJSESDRBJ", rightBindData.bj);
  7868. designer.SetDataSource("BlblTDCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7869. designer.SetDataSource("BlblTDCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7870. designer.SetDataSource("BlblTDCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7871. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7872. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7873. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7874. }
  7875. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("头等舱 SUITE"));
  7876. if (rightBindData != null)
  7877. {
  7878. //头等舱 + 大套房
  7879. designer.SetDataSource("BlblTDCSUITEDRCB", rightBindData.cb);
  7880. designer.SetDataSource("BtxtTDCSUITERS", rightBindData.rs);
  7881. designer.SetDataSource("BlblTDCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7882. designer.SetDataSource("BlblTDCSUITEDRBJ", rightBindData.bj);
  7883. designer.SetDataSource("BlblTDCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7884. designer.SetDataSource("BlblTDCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7885. designer.SetDataSource("BlblTDCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7886. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7887. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7888. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7889. }
  7890. #endregion
  7891. #region 标题
  7892. designer.SetDataSource("CostBDRCB", "单人成本");
  7893. designer.SetDataSource("CostBRS", "人数");
  7894. designer.SetDataSource("CostBXS", "系数");
  7895. designer.SetDataSource("CostBZCB", "总成本");
  7896. designer.SetDataSource("CostBDRBJ", "单人报价");
  7897. designer.SetDataSource("CostBZBJ", "总报价");
  7898. designer.SetDataSource("CostBDRLR", "单人利润");
  7899. designer.SetDataSource("CostBZLR", "总利润");
  7900. designer.SetDataSource("CostBDRCBOM", "单人成本");
  7901. designer.SetDataSource("CostBRSOM", "人数");
  7902. designer.SetDataSource("CostBZCBOM", "总成本");
  7903. designer.SetDataSource("CostBDRBJOM", "单人报价");
  7904. designer.SetDataSource("CostBZBJOM", "总报价");
  7905. designer.SetDataSource("CostBDRLROM", "单人利润");
  7906. designer.SetDataSource("CostBZLROM", "总利润");
  7907. #endregion
  7908. }
  7909. #endregion
  7910. designer.SetDataSource("TzZCB2", TzZCB2);
  7911. designer.SetDataSource("TzZBJ2", TzZBJ2);
  7912. designer.SetDataSource("TzZLR2", TzZLR2);
  7913. string[] dataSourceKeys = new string[]
  7914. {
  7915. "VF",
  7916. "TGS",
  7917. "TGOF",
  7918. "TGM",
  7919. "TGA",
  7920. "TGTF",
  7921. "TGEF",
  7922. "CFM",
  7923. "CFOF",
  7924. "B",
  7925. "L",
  7926. "D",
  7927. "TBR",
  7928. "SGR",
  7929. "JSES",
  7930. "Suite",
  7931. "TV",
  7932. "1L",
  7933. "IF",
  7934. "EF",
  7935. "BRF",
  7936. "TE",
  7937. "TGT",
  7938. "DRVT",
  7939. "PC",
  7940. "TLF",
  7941. "ECT"
  7942. };
  7943. foreach (var item in dataSourceKeys)
  7944. {
  7945. var find = dto.titleModel.FirstOrDefault(x => x.label.Replace(" ", "").Replace("/", "") == item);
  7946. if (find != null)
  7947. {
  7948. designer.SetDataSource(item, find.text);
  7949. }
  7950. else
  7951. {
  7952. designer.SetDataSource(item, 0);
  7953. }
  7954. }
  7955. designer.SetDataSource(dt);
  7956. //根据数据源处理生成报表内容
  7957. designer.Process();
  7958. designer.Workbook.Worksheets[0].Name = "清单";
  7959. Worksheet sheet = designer.Workbook.Worksheets[0];
  7960. foreach (var Rowindex in hideRowsList)
  7961. {
  7962. ws.Cells.HideRows(Rowindex, 2);
  7963. }
  7964. byte[] bytes = null;
  7965. string strFileName = di.TeamName + "-团组-成本.xls";
  7966. using (MemoryStream stream = new MemoryStream())
  7967. {
  7968. designer.Workbook.Save(stream, Aspose.Cells.SaveFormat.Xlsx);
  7969. bytes = stream.ToArray();
  7970. }
  7971. return Ok(JsonView(true, "", new
  7972. {
  7973. Data = bytes,
  7974. strFileName,
  7975. }));
  7976. }
  7977. /// <summary>
  7978. /// 导出客户报表
  7979. /// </summary>
  7980. /// <returns></returns>
  7981. [HttpPost]
  7982. public async Task<IActionResult> ExportClientWordFile(ExportClientWordFileDto dto)
  7983. {
  7984. var jw = JsonView(false);
  7985. if (dto.Diid == 0)
  7986. {
  7987. return Ok(JsonView(false, "请传递团组id"));
  7988. }
  7989. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  7990. if (deleInfo.Code != 0)
  7991. {
  7992. return Ok(JsonView(false, "团组信息查询失败!"));
  7993. }
  7994. var di = deleInfo.Data as DelegationInfoWebView;
  7995. if (di == null)
  7996. {
  7997. return Ok(JsonView(false, "团组信息查询失败!"));
  7998. }
  7999. //文件名
  8000. //string strFileName = di.TeamName + "-团组-客户报价.doc";
  8001. //获取模板
  8002. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/团组-客户报价.doc");
  8003. //载入模板
  8004. Document doc = new Document(tmppath);
  8005. Aspose.Words.DocumentBuilder builder = new Aspose.Words.DocumentBuilder(doc);
  8006. Dictionary<string, string> DickeyValue = new Dictionary<string, string>();
  8007. DickeyValue.Add("DickeyValue", di.TeamName); //团组名
  8008. var ParameterList = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(dto.Diid);
  8009. var AParameter = ParameterList.Find(x => x.CostType == "A");
  8010. var BParameter = ParameterList.Find(x => x.CostType == "B");
  8011. if (AParameter == null)
  8012. {
  8013. return Ok(JsonView(false, "系数不存在!"));
  8014. }
  8015. string CarGuides, TzNumber, CarGuides1, Meal, SubsidizedMeals, NightRepair, AttractionsTickets, MiscellaneousFees, ATip, TzHotelDesc, Offcial, PettyCash, Visa, TrainTicket, TicketPrice
  8016. , TzAirDesc, TzZCost;
  8017. CarGuides = TzNumber = CarGuides1 = Meal = SubsidizedMeals = NightRepair = AttractionsTickets = MiscellaneousFees = ATip = TzHotelDesc = Offcial = PettyCash = Visa = TrainTicket = TicketPrice
  8018. = TzAirDesc = TzZCost = string.Empty;
  8019. TzNumber = AParameter.CostTypenumber.ToString();
  8020. CarGuides = "RMB " + (AParameter.DJCB * AParameter.DJXS).ToString("#0.00");
  8021. CarGuides1 = dto.CarGuides1;
  8022. Meal = dto.Meal;
  8023. SubsidizedMeals = dto.SubsidizedMeals;
  8024. NightRepair = dto.NightRepair;
  8025. AttractionsTickets = dto.AttractionsTickets;
  8026. MiscellaneousFees = dto.MiscellaneousFees;
  8027. ATip = dto.ATip;
  8028. TzHotelDesc = "";
  8029. Offcial = "RMB " + (AParameter.GWCB * AParameter.GWXS).ToString("#0.00");
  8030. PettyCash = "RMB " + (AParameter.LYJCB * AParameter.LYJXS).ToString("#0.00");
  8031. Visa = "RMB " + (AParameter.VisaCB * AParameter.VisaXS + AParameter.HSCB * AParameter.HSXS + AParameter.BXCB * AParameter.BXXS).ToString("#0.00");
  8032. TrainTicket = "RMB " + (AParameter.HCPCB * AParameter.HCPXS).ToString("#0.00");
  8033. TicketPrice = "RMB " + (AParameter.CPCB * AParameter.CPXS).ToString("#0.00");
  8034. TzAirDesc = "";
  8035. TzZCost = dto.TzZCost;
  8036. var TzHotelDescArr = new string[] { "SGR", "JSES", "SUITE", "TBR" };
  8037. var TzAirDescArr = new string[] { "经济舱", "公务舱" };
  8038. var index = 1;
  8039. var AinfoArr = dto.leftInfo.Find(x => x.Type == "A");
  8040. foreach (var item in TzHotelDescArr)
  8041. {
  8042. if (AinfoArr != null)
  8043. {
  8044. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  8045. if (Ainfo != null)
  8046. {
  8047. if (int.Parse(Ainfo.rs) <= 0)
  8048. {
  8049. continue;
  8050. }
  8051. var hotelText = string.Empty;
  8052. switch (item)
  8053. {
  8054. case "SGR":
  8055. hotelText = "单人间";
  8056. break;
  8057. case "JSES":
  8058. hotelText = "小套房";
  8059. break;
  8060. case "SUITE":
  8061. hotelText = "套房";
  8062. break;
  8063. case "TBR":
  8064. hotelText = "双人间";
  8065. break;
  8066. }
  8067. if (item != "TBR")
  8068. {
  8069. 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";
  8070. }
  8071. else
  8072. {
  8073. 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";
  8074. }
  8075. index++;
  8076. }
  8077. }
  8078. }
  8079. index = 1;
  8080. foreach (var item in TzAirDescArr)
  8081. {
  8082. if (AinfoArr != null)
  8083. {
  8084. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  8085. if (Ainfo != null)
  8086. {
  8087. if (int.Parse(Ainfo.rs) <= 0)
  8088. {
  8089. continue;
  8090. }
  8091. 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";
  8092. index++;
  8093. }
  8094. }
  8095. }
  8096. if (dto.costType == "B")
  8097. {
  8098. if (BParameter == null)
  8099. {
  8100. return Ok(JsonView(false, "B段系数不存在!"));
  8101. }
  8102. CarGuides = CarGuides.Insert(0, "A段 ") + " B段 RMB" + (BParameter.DJCB * BParameter.DJXS).ToString("#0.00");
  8103. Offcial = Offcial.Insert(0, "A段 ") + " B段 RMB " + (BParameter.GWCB * BParameter.GWXS).ToString("#0.00");
  8104. PettyCash = PettyCash.Insert(0, "A段 ") + " B段 RMB " + (BParameter.LYJCB * BParameter.LYJXS).ToString("#0.00");
  8105. Visa = Visa.Insert(0, "A段 ") + " B段 RMB " + (BParameter.VisaCB * BParameter.VisaXS + BParameter.HSCB * BParameter.HSXS + BParameter.BXCB * BParameter.BXXS).ToString("#0.00");
  8106. TrainTicket = TrainTicket.Insert(0, "A段 ") + " B段 RMB " + (BParameter.HCPCB * BParameter.HCPXS).ToString("#0.00");
  8107. TicketPrice = TicketPrice.Insert(0, "A段 ") + " B段 RMB " + (BParameter.CPCB * BParameter.CPXS).ToString("#0.00");
  8108. AinfoArr = dto.leftInfo.Find(x => x.Type == "B");
  8109. foreach (var item in TzHotelDescArr)
  8110. {
  8111. if (AinfoArr != null)
  8112. {
  8113. TzHotelDesc += "B段信息 \r\n";
  8114. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  8115. if (Ainfo != null)
  8116. {
  8117. if (int.Parse(Ainfo.rs) <= 0)
  8118. {
  8119. continue;
  8120. }
  8121. var hotelText = string.Empty;
  8122. switch (item)
  8123. {
  8124. case "SGR":
  8125. hotelText = "单人间";
  8126. break;
  8127. case "JSES":
  8128. hotelText = "小套房";
  8129. break;
  8130. case "SUITE":
  8131. hotelText = "套房";
  8132. break;
  8133. case "TBR":
  8134. hotelText = "双人间";
  8135. break;
  8136. }
  8137. if (item != "TBR")
  8138. {
  8139. 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";
  8140. }
  8141. else
  8142. {
  8143. 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";
  8144. }
  8145. index++;
  8146. }
  8147. TzHotelDesc = TzHotelDesc.Insert(0, "A段信息 \r\n");
  8148. }
  8149. }
  8150. index = 1;
  8151. foreach (var item in TzAirDescArr)
  8152. {
  8153. if (AinfoArr != null)
  8154. {
  8155. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  8156. if (Ainfo != null)
  8157. {
  8158. if (int.Parse(Ainfo.rs) <= 0)
  8159. {
  8160. continue;
  8161. }
  8162. 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";
  8163. index++;
  8164. }
  8165. }
  8166. }
  8167. }
  8168. Visa = Visa.Insert(0, "签证及保险(含核酸检测): ");
  8169. DickeyValue.Add("TzNumber", TzNumber); //团组人数
  8170. DickeyValue.Add("CarGuides", CarGuides); //地接单人报价
  8171. DickeyValue.Add("CarGuides1", CarGuides1); // 地接 - 车导费
  8172. DickeyValue.Add("Meal", Meal); // 地接 - 餐费
  8173. DickeyValue.Add("SubsidizedMeals", SubsidizedMeals);// 地接 - 餐补
  8174. DickeyValue.Add("NightRepair", NightRepair); // 地接 - 宿补
  8175. DickeyValue.Add("AttractionsTickets", AttractionsTickets); // 地接 - 景点
  8176. DickeyValue.Add("MiscellaneousFees", MiscellaneousFees); // 地接 - 杂费
  8177. DickeyValue.Add("ATip", ATip); // 地接 - 小费
  8178. DickeyValue.Add("TzHotelDesc", TzHotelDesc); //酒店
  8179. DickeyValue.Add("Offcial", Offcial); // 公务单人报价
  8180. DickeyValue.Add("PettyCash", PettyCash); // 零用金单人报价
  8181. DickeyValue.Add("Visa", Visa); // 签证单人报价
  8182. DickeyValue.Add("TrainTicket", TrainTicket); //火车票
  8183. DickeyValue.Add("TicketPrice", TicketPrice); //船票
  8184. DickeyValue.Add("TzAirDesc", TzAirDesc); //机票
  8185. DickeyValue.Add("TzZCost", TzZCost);
  8186. foreach (var key in DickeyValue.Keys)
  8187. {
  8188. if (doc.Range.Bookmarks[key] != null)
  8189. {
  8190. Bookmark mark = doc.Range.Bookmarks[key];
  8191. mark.Text = DickeyValue[key];
  8192. }
  8193. }
  8194. byte[] bytes = null;
  8195. string strFileName = di.TeamName + "-客户报价.doc";
  8196. using (MemoryStream stream = new MemoryStream())
  8197. {
  8198. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  8199. bytes = stream.ToArray();
  8200. }
  8201. return Ok(JsonView(true, "", new
  8202. {
  8203. Data = bytes,
  8204. strFileName,
  8205. }));
  8206. }
  8207. /// <summary>
  8208. /// 团组成本 各模块(酒店,地接,机票)成本提示
  8209. /// </summary>
  8210. /// <param name="dto"></param>
  8211. /// <returns></returns>
  8212. [HttpPost]
  8213. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8214. public async Task<IActionResult> PostGroupCostModulePrompt(GroupCostModulePromptDto dto)
  8215. {
  8216. try
  8217. {
  8218. #region 参数验证
  8219. if (dto.DiId < 0)
  8220. {
  8221. return Ok(JsonView(false, "请传入有效的DiId参数!"));
  8222. }
  8223. List<int> cTableIds = new List<int>() {
  8224. 76 ,//酒店预订
  8225. 77 ,//行程
  8226. 79 ,//车/导游地接
  8227. 80 ,//签证
  8228. 81 ,//邀请/公务活
  8229. 82 ,//团组客户保险
  8230. 85 ,//机票预订
  8231. 98 ,//其他款项
  8232. 285 ,//收款退还
  8233. 751 ,//酒店早餐
  8234. 1015 // 超支费用
  8235. };
  8236. if (dto.CTable < 0 && !cTableIds.Contains(dto.CTable))
  8237. {
  8238. return Ok(JsonView(false, "请传入有效的CTable参数!"));
  8239. }
  8240. #endregion
  8241. //Grp_GroupCostParameter 预算表 Grp_GroupCost 详细费用列表
  8242. var _GroupCostParameters = _usersRep._sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  8243. if (_GroupCostParameters.Count <= 0)
  8244. {
  8245. return Ok(JsonView(false, "暂无该团组成本信息!", new List<dynamic>()));
  8246. }
  8247. if (_GroupCostParameters[0].IsShare == 0)
  8248. {
  8249. return Ok(JsonView(false, "该团组成本未完成!", new List<dynamic>()));
  8250. }
  8251. var _GroupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  8252. //处理date为空问题
  8253. if (_GroupCosts.Count > 0)
  8254. {
  8255. for (int i = 0; i < _GroupCosts.Count; i++)
  8256. {
  8257. if (string.IsNullOrEmpty(_GroupCosts[i].Date))
  8258. {
  8259. if (i > 0)
  8260. {
  8261. _GroupCosts[i].Date = _GroupCosts[i - 1].Date;
  8262. }
  8263. }
  8264. }
  8265. }
  8266. GroupCostModulePromptView _view = new GroupCostModulePromptView();
  8267. List<GroupCostModulePromptInfo> _ModulePromptInfos = new List<GroupCostModulePromptInfo>(); //机票存储多段
  8268. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  8269. string currCode = "";
  8270. #region currCode 验证
  8271. bool isInt = int.TryParse(_GroupCostParameters[0].Currency, out int intCurrency);
  8272. if (isInt)
  8273. {
  8274. var currData = currDatas.Find(it => it.Id == intCurrency);
  8275. if (currData != null)
  8276. {
  8277. currCode = currData.Name;
  8278. }
  8279. }
  8280. else
  8281. {
  8282. currCode = _GroupCostParameters[0].Currency.Trim();
  8283. }
  8284. #endregion
  8285. //op,酒店单段模式存储
  8286. GroupCostModulePromptInfo _ModulePromptInfo = new GroupCostModulePromptInfo()
  8287. {
  8288. CurrencyCode = currCode,
  8289. Rate = _GroupCostParameters[0].Rate,
  8290. CostType = _GroupCostParameters[0].CostType,
  8291. CostTypeStartTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeStartTime).ToString("yyyy-MM-dd"),
  8292. CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeendTime).ToString("yyyy-MM-dd"),
  8293. CostTypeNumber = _GroupCostParameters[0].CostTypenumber
  8294. };
  8295. List<dynamic> _ModuleSubPromptInfo = new List<dynamic>(); // 存储CTbale != 85 的动态数据
  8296. if (_GroupCostParameters.Count == 2)
  8297. {
  8298. _ModulePromptInfo.CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[1].CostTypeendTime).ToString("yyyy-MM-dd");
  8299. }
  8300. foreach (var item in _GroupCostParameters)
  8301. {
  8302. decimal _rate = 1;
  8303. decimal _rate1 = item.Rate;
  8304. decimal _scale = 1;
  8305. //decimal _scale = 0.95M; 雷怡 2024-06-11 10:06:08 屏蔽
  8306. #region 处理地接价格比例 总经理 国交部经理 主管 不下调 其他人 下调 5%
  8307. //var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  8308. //if (userInfo != null)
  8309. //{
  8310. // if (userInfo.DepId == 1 || userInfo.DepId == 7)
  8311. // {
  8312. // if (userInfo.JobPostId == 1 || userInfo.JobPostId == 22 || userInfo.JobPostId == 32)
  8313. // {
  8314. // _scale = 1.00M;
  8315. // }
  8316. // }
  8317. //}
  8318. #endregion
  8319. GroupCostModulePromptInfo modulePromptInfo = new GroupCostModulePromptInfo()
  8320. {
  8321. CurrencyCode = currCode,
  8322. Rate = _rate1,
  8323. CostType = item.CostType,
  8324. CostTypeStartTime = Convert.ToDateTime(item.CostTypeStartTime).ToString("yyyy-MM-dd"),
  8325. CostTypeEndTime = Convert.ToDateTime(item.CostTypeendTime).ToString("yyyy-MM-dd"),
  8326. CostTypeNumber = item.CostTypenumber
  8327. };
  8328. if (_GroupCostParameters.Count > 1)
  8329. {
  8330. modulePromptInfo.CostTypeNumber = item.CostTypenumber;
  8331. }
  8332. else
  8333. {
  8334. modulePromptInfo.CostTypeNumber = item.LYJRS;
  8335. }
  8336. if (dto.CTable == 79)//
  8337. {
  8338. modulePromptInfo.IndividualCost = item.DJCB / modulePromptInfo.CostTypeNumber;
  8339. modulePromptInfo.TotalCost = item.DJCB;
  8340. }
  8341. List<string> costTypes = new List<string>() { "A", "B" };
  8342. List<Grp_GroupCost> _GroupCostsTypeData = new List<Grp_GroupCost>();
  8343. var _GroupCostsDuplicates = _GroupCostParameters.GroupBy(x => x.CostType).Select(y => y.FirstOrDefault());
  8344. if (_GroupCostsDuplicates.Count() == 1)
  8345. {
  8346. _GroupCostsTypeData = _GroupCosts;
  8347. }
  8348. else
  8349. {
  8350. _GroupCostsTypeData = _GroupCosts.Where(it => Convert.ToDateTime(it.Date) >= Convert.ToDateTime(item.CostTypeStartTime) &&
  8351. Convert.ToDateTime(it.Date) <= Convert.ToDateTime(item.CostTypeendTime)).ToList();
  8352. }
  8353. /*
  8354. * 76 酒店预订
  8355. * 77 行程
  8356. * 79 车/导游地接
  8357. * 80 签证
  8358. * 81 邀请/公务活动
  8359. * 82 团组客户保险
  8360. * 85 机票预订
  8361. * 98 其他款项
  8362. * 285 收款退还
  8363. * 751 酒店早餐
  8364. * 1015 超支费用
  8365. */
  8366. switch (dto.CTable)
  8367. {
  8368. case 76: // 酒店预订
  8369. _ModuleSubPromptInfo.AddRange(
  8370. _GroupCostsTypeData.Select(it => new
  8371. {
  8372. it.DAY,
  8373. it.Date,
  8374. it.ACCON,
  8375. it.ITIN,
  8376. it.SGR,
  8377. it.TBR,
  8378. it.JS_ES,
  8379. it.Suite
  8380. })
  8381. );
  8382. break;
  8383. case 79: // 车/导游地接
  8384. _ModuleSubPromptInfo.AddRange(
  8385. _GroupCostsTypeData.Select(it => new
  8386. {
  8387. Date = it.Date, //日期
  8388. CarFee = it.CarCost * _rate * _scale, //车费用
  8389. CarType = it.CarType, //车型
  8390. DriverFee = it.CFS * _rate * _scale, //司机工资
  8391. DriverTipsFee = it.DRVTips * _rate * _scale, //司机小费
  8392. DriverMealSubsidy = it.CFM * _rate * _scale, //司机餐补
  8393. DriverOvertimeFee = it.CFOF * _rate * _scale, //司机超时费用
  8394. GuideFee = it.TGS * _rate * _scale, //导游费用
  8395. GuideOvertimeFee = it.TGOF * _rate * _scale, //导游超时费用
  8396. GuideMealSubsidy = it.TGM * _rate * _scale, //导游餐补
  8397. GuideRoomSubsidy = it.TGA * _rate * _scale, //导游房补
  8398. GuideCarFare = it.TGTF * _rate * _scale, //导游交通费
  8399. GuideSpotFee = it.TGEF * _rate * _scale, //导游景点费
  8400. GuideTipsFee = it.TGTips * _rate * _scale, //导游小费
  8401. Breakfast = it.B * _rate * _scale, //早餐费
  8402. Lunch = it.L * _rate * _scale, //午餐费
  8403. Dinner = it.D * _rate * _scale, //晚餐费
  8404. OfficialActivitiesFee = it.TV * _rate * _scale,//会务活动费 --新加
  8405. OfficialTransFee = it.IF * _rate * _scale, //公务翻译费 --新加
  8406. InvitationFee = it.iL * _rate * _scale, //邀请函费用 --新加
  8407. TicketFee = it.EF * _rate * _scale, //门票费
  8408. TicketRemark = it.EFR, //门票费描述
  8409. DrinksSnacksFruitFee = it.B_R_F * _rate * _scale, //饮料零食水果
  8410. TravelSupplies = it.TE * _rate * _scale, //出行物资
  8411. SpentCash = it.PC * _rate * _scale, //零用金
  8412. LeadersFee = it.TLF * _rate * _scale, //领队费
  8413. ActivitiesFee = it.ECT * _rate * _scale, //会务费 --新加
  8414. })
  8415. );
  8416. break;
  8417. case 85: // 机票
  8418. List<dynamic> datas = new List<dynamic>();
  8419. datas.Add(
  8420. new
  8421. {
  8422. AirType = "经济舱",
  8423. AirNum = item.JJCRS,
  8424. AirDRCB = item.JJCCB,
  8425. AirZCB = (item.JJCRS * item.JJCCB)
  8426. }
  8427. );
  8428. datas.Add(
  8429. new
  8430. {
  8431. AirType = "公务舱",
  8432. AirNum = item.GWCRS,
  8433. AirDRCB = item.GWCCB,
  8434. AirZCB = (item.GWCRS * item.GWCCB)
  8435. }
  8436. );
  8437. var groupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  8438. var initDatas = groupCosts.Select(it => new { date = it.Date, week = it.Date.GetWeek() == "" ? "-" : it.Date.GetWeek(), itinerary = it.ITIN }).ToList();
  8439. modulePromptInfo.Data = new
  8440. {
  8441. airFeeData = datas,
  8442. airInitData = initDatas
  8443. };
  8444. _ModulePromptInfos.Add(modulePromptInfo);
  8445. break;
  8446. default:
  8447. break;
  8448. }
  8449. }
  8450. if (dto.CTable != 85)
  8451. {
  8452. _ModulePromptInfo.Data = _ModuleSubPromptInfo;
  8453. _ModulePromptInfos.Add(_ModulePromptInfo);
  8454. }
  8455. _view.ModulePromptInfos = _ModulePromptInfos;
  8456. return Ok(JsonView(true, "操作成功!", _view));
  8457. }
  8458. catch (Exception ex)
  8459. {
  8460. return Ok(JsonView(false, ex.Message));
  8461. }
  8462. }
  8463. /// <summary>
  8464. /// 根据黑屏代码重新生成行程
  8465. /// </summary>
  8466. /// <param name="dto"></param>
  8467. /// <returns></returns>
  8468. [HttpPost]
  8469. public IActionResult CraeteGroupCostTravel(GroupCostInItDto dto)
  8470. {
  8471. var jw = JsonView(false);
  8472. var Create = _GroupCostRepository.
  8473. CreateGroupCostByBlackCode(dto.Diid);
  8474. jw.Msg = Create.Msg;
  8475. if (Create.Code == 0)
  8476. {
  8477. jw.Code = 200;
  8478. jw.Data = new
  8479. {
  8480. groupCost = Create.Data,
  8481. blackCodeIsTrue = true
  8482. };
  8483. }
  8484. else
  8485. {
  8486. jw.Code = 400;
  8487. jw.Data = new
  8488. {
  8489. groupCost = Create.Data,
  8490. blackCodeIsTrue = false,
  8491. };
  8492. }
  8493. return Ok(jw);
  8494. }
  8495. /// <summary>
  8496. /// 成本获取OP历史车费用
  8497. /// </summary>
  8498. /// <param name="dto"></param>
  8499. /// <returns></returns>
  8500. [HttpPost]
  8501. public async Task<IActionResult> GetHistoryCarData(HistoryCarDataDto dto)
  8502. {
  8503. var jw = JsonView(false);
  8504. try
  8505. {
  8506. List<HistoryCarDataView> dbResult = new List<HistoryCarDataView>();
  8507. //获取现有所有车的数据
  8508. if (!dto.Param.IsNullOrWhiteSpace())
  8509. {
  8510. string sql = $@"
  8511. SELECT gdi.TeamName , gctggr.Area, gctggr.PriceName , gctggrc.Id ,gctggrc.Price , gctggrc.DatePrice , gctggrc.PriceContent , gctggrc.Currency , gctggr.ServiceStartTime , gctggr.ServiceEndTime
  8512. FROM Grp_CarTouristGuideGroundReservationsContent gctggrc inner join Grp_CarTouristGuideGroundReservations gctggr on
  8513. gctggrc.CTGGRId = gctggr.Id inner JOIN Grp_DelegationInfo gdi on gctggr.DiId = gdi.Id LEFT JOIN Sys_SetData ssd on ssd.Id = gctggr.PriceType
  8514. WHERE gctggr.IsDel = 0 and gctggrc.SId = 91 AND gdi.IsDel = 0 AND gctggrc.Price != 0 AND (ssd.Id in (1061,1069) or ssd.Id is NULL) AND gctggr.ServiceStartTime is not null
  8515. AND gctggr.ServiceEndTime is not NULL
  8516. ORDER by gctggrc.id DESC
  8517. ";
  8518. dbResult = await _sqlSugar.SqlQueryable<HistoryCarDataView>(sql).ToListAsync();
  8519. var numeberResult = await Task.Run(() =>
  8520. {
  8521. var numberArr = dbResult.Where(x => int.TryParse(x.Area, out int number)).ToList();
  8522. _ = dbResult.RemoveAll(x => int.TryParse(x.Area, out int number));
  8523. return numberArr;
  8524. });
  8525. var cityArr = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  8526. foreach (var item in numeberResult)
  8527. {
  8528. var find = cityArr.Find(x => x.Id == int.Parse(item.Area)) ?? new Grp_NationalTravelFee
  8529. {
  8530. Country = "数据异常!",
  8531. City = string.Empty,
  8532. };
  8533. item.Area = find.Country + " " + find.City;
  8534. }
  8535. dbResult.AddRange(numeberResult);
  8536. if (dto.Param.Contains("、"))
  8537. {
  8538. var sp = dto.Param.Split("、");
  8539. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  8540. .Where(x =>
  8541. {
  8542. return System.Array.Exists(sp, e =>
  8543. {
  8544. bool where = false;
  8545. if (x.Area != null)
  8546. {
  8547. where = x.Area.Contains(e);
  8548. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  8549. {
  8550. return false;
  8551. }
  8552. }
  8553. if (x.PriceName != null && !where)
  8554. {
  8555. where = x.PriceName.Contains(e);
  8556. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  8557. {
  8558. return false;
  8559. }
  8560. }
  8561. return where;
  8562. });
  8563. }).ToList();
  8564. }
  8565. else
  8566. {
  8567. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  8568. .Where(x =>
  8569. {
  8570. bool where = false;
  8571. if (x.Area != null)
  8572. {
  8573. where = x.Area.Contains(dto.Param);
  8574. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  8575. {
  8576. return false;
  8577. }
  8578. }
  8579. if (x.PriceName != null && !where)
  8580. {
  8581. where = x.PriceName.Contains(dto.Param);
  8582. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  8583. {
  8584. return false;
  8585. }
  8586. }
  8587. return where;
  8588. }
  8589. )
  8590. .ToList();
  8591. }
  8592. }
  8593. var view = dbResult.Select(x =>
  8594. {
  8595. decimal dp = 0.00M;
  8596. var startB = DateTime.TryParse(x.Start.ToString(), out DateTime startD);
  8597. var endB = DateTime.TryParse(x.End.ToString(), out DateTime endD);
  8598. if (string.IsNullOrWhiteSpace(x.DatePrice))
  8599. {
  8600. if (startB && endB)
  8601. {
  8602. var timesp = endD.Subtract(startD);
  8603. if ((timesp.Days + 1) != 0)
  8604. {
  8605. dp = x.Price / (timesp.Days + 1);
  8606. }
  8607. }
  8608. }
  8609. else
  8610. {
  8611. dp = x.Price;
  8612. }
  8613. return new
  8614. {
  8615. start = startB ? startD.ToString("yyyy-MM-dd") : "",
  8616. end = endB ? endD.ToString("yyyy-MM-dd") : "",
  8617. x.Area,
  8618. x.id,
  8619. price = x.Price.ToString("F2"),
  8620. x.PriceName,
  8621. x.PriceContent,
  8622. x.TeamName,
  8623. x.DatePrice,
  8624. dayPrice = dp.ToString("F2"),
  8625. };
  8626. }).OrderByDescending(x => x.id).ToList();
  8627. jw = JsonView(true, "获取成功!", view);
  8628. }
  8629. catch (Exception e)
  8630. {
  8631. jw = JsonView(false, e.Message);
  8632. }
  8633. return Ok(jw);
  8634. }
  8635. #endregion
  8636. #region 酒店预订 新 雷怡 2023-12-28 17:45
  8637. /// <summary>
  8638. /// 酒店预订
  8639. /// 酒店费用列表 根据团组Id查询
  8640. /// </summary>
  8641. /// <param name="_dto"></param>
  8642. /// <returns></returns>
  8643. [HttpPost]
  8644. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8645. public async Task<IActionResult> PostHotelReservationsItemsByDiId(HotelReservationItemDto _dto)
  8646. {
  8647. #region 参数验证
  8648. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8649. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8650. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8651. #region 团组操作权限验证 76 酒店预定模块
  8652. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8653. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8654. #endregion
  8655. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8656. #region 页面操作权限验证
  8657. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8658. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8659. #endregion
  8660. #endregion
  8661. return Ok(await _hotelPriceRep._ItemsByDiId(_dto.PortType, _dto.DiId));
  8662. }
  8663. /// <summary>
  8664. /// 酒店预订
  8665. /// 基础数据
  8666. /// </summary>
  8667. /// <param name="_dto"></param>
  8668. /// <returns></returns>
  8669. [HttpPost]
  8670. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8671. public async Task<IActionResult> PostHotelReservationsBasicsDataInit(HotelReservationBasicsDataInitDto _dto)
  8672. {
  8673. #region 参数验证
  8674. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8675. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8676. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  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. #region 团组操作权限验证 76 酒店预定模块
  8683. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8684. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8685. #endregion
  8686. #endregion
  8687. return Ok(await _hotelPriceRep._BasicsDataInit(_dto.PortType, _dto.DiId));
  8688. }
  8689. /// <summary>
  8690. /// 酒店预订
  8691. /// 创建 入住卷号码
  8692. /// </summary>
  8693. /// <param name="_dto"></param>
  8694. /// <returns></returns>
  8695. [HttpPost]
  8696. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8697. public async Task<IActionResult> PostHotelReservationsCreateCheckVolumeNo(HotelReservationBasicsDataInitDto _dto)
  8698. {
  8699. try
  8700. {
  8701. #region 参数验证
  8702. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8703. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8704. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8705. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8706. #region 页面操作权限验证
  8707. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8708. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8709. #endregion
  8710. #region 团组操作权限验证 76 酒店预定模块
  8711. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8712. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8713. #endregion
  8714. #endregion
  8715. Result data = await _hotelPriceRep._CreateCheckVolumeNo(_dto.DiId);
  8716. if (data.Code != 0)
  8717. {
  8718. return Ok(JsonView(false, data.Msg));
  8719. }
  8720. return Ok(JsonView(true, data.Msg, data.Data));
  8721. }
  8722. catch (Exception ex)
  8723. {
  8724. return Ok(JsonView(false, ex.Message));
  8725. }
  8726. }
  8727. /// <summary>
  8728. /// 酒店预订
  8729. /// 详情
  8730. /// </summary>
  8731. /// <param name="_dto"></param>
  8732. /// <returns></returns>
  8733. [HttpPost]
  8734. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8735. public async Task<IActionResult> PostHotelReservationsDetails(HotelReservationsDetailsDto _dto)
  8736. {
  8737. #region 参数验证
  8738. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入正确的UserId参数"));
  8739. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8740. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入正确的DiId参数"));
  8741. #region 团组操作权限验证 76 酒店预定模块
  8742. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8743. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8744. #endregion
  8745. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8746. #region 页面操作权限验证
  8747. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8748. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8749. #endregion
  8750. #endregion
  8751. return Ok(await _hotelPriceRep._Details(_dto.PortType, _dto.Id));
  8752. }
  8753. /// <summary>
  8754. /// 酒店预订
  8755. /// Add Or Edit
  8756. /// </summary>
  8757. /// <param name="_dto"></param>
  8758. /// <returns></returns>
  8759. [HttpPost]
  8760. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8761. public async Task<IActionResult> PostHotelReservationsAddOrEdit(HotelReservationsAddOrEditDto _dto)
  8762. {
  8763. #region 参数验证
  8764. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8765. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8766. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8767. #region 团组操作权限验证 76 酒店预定模块
  8768. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8769. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8770. #endregion
  8771. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8772. #region 页面操作权限验证
  8773. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8774. if (_dto.Id == 0) // Add
  8775. {
  8776. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  8777. }
  8778. else if (_dto.Id > 1) // Edit
  8779. {
  8780. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  8781. }
  8782. else return Ok(JsonView(false, "请输入正确的数据Id!"));
  8783. #endregion
  8784. #endregion
  8785. JsonView _view = await _hotelPriceRep._AddOrEdit(_dto);
  8786. if (_view.Code != 200)
  8787. {
  8788. return Ok(_view);
  8789. }
  8790. #region 应用推送
  8791. try
  8792. {
  8793. int ccpId = (int)_view.Data.GetType().GetProperty("ccpId").GetValue(_view.Data, null);
  8794. int sign = (int)_view.Data.GetType().GetProperty("sign").GetValue(_view.Data, null);
  8795. int hotelId = (int)_view.Data.GetType().GetProperty("hotelId").GetValue(_view.Data, null);
  8796. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  8797. //自动审核
  8798. var autoAdit = await _feeAuditRep.FeeAutomaticAudit(1, _dto.DiId, hotelId);
  8799. _logger.LogInformation($"【酒店自动审核】【{DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")}】执行调用 调用结果:{JsonConvert.SerializeObject(autoAdit)}");
  8800. }
  8801. catch (Exception ex)
  8802. {
  8803. }
  8804. #endregion
  8805. return Ok(_view);
  8806. }
  8807. /// <summary>
  8808. /// 酒店自动审核测试
  8809. /// Add Or Edit
  8810. /// </summary>
  8811. /// <param name="_dto"></param>
  8812. /// <returns></returns>
  8813. [HttpPost]
  8814. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8815. public async Task<IActionResult> PostHotelAutoAuditTest(int diid,int dataId)
  8816. {
  8817. #region 应用推送
  8818. try
  8819. {
  8820. //自动审核
  8821. await _feeAuditRep.FeeAutomaticAudit(1, diid, dataId);
  8822. }
  8823. catch (Exception ex)
  8824. {
  8825. return Ok(JsonView(false, "操作失败"));
  8826. }
  8827. #endregion
  8828. return Ok(JsonView(false,"操作成功"));
  8829. }
  8830. /// <summary>
  8831. /// 酒店预订
  8832. /// Del
  8833. /// </summary>
  8834. /// <param name="_dto"></param>
  8835. /// <returns></returns>
  8836. [HttpPost]
  8837. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8838. public async Task<IActionResult> PostHotelReservationsDel(HotelReservationsDelDto _dto)
  8839. {
  8840. #region 参数验证
  8841. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8842. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8843. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8844. #region 团组操作权限验证 76 酒店预定模块
  8845. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8846. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8847. #endregion
  8848. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8849. #region 页面操作权限验证
  8850. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8851. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  8852. #endregion
  8853. #endregion
  8854. return Ok(await _hotelPriceRep._Del(_dto.Id, _dto.UserId));
  8855. }
  8856. /// <summary>
  8857. /// 酒店预订
  8858. /// 生成VOUCHER
  8859. /// 2024.05.06 之前版本
  8860. /// </summary>
  8861. /// <param name="_dto"></param>
  8862. /// <returns></returns>
  8863. [HttpPost]
  8864. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8865. public async Task<IActionResult> PostHotelReservationsCreateVoucher1(HotelReservationsCreateVoucherDto _dto)
  8866. {
  8867. try
  8868. {
  8869. #region 参数验证
  8870. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8871. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8872. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8873. #region 团组操作权限验证 76 酒店预定模块
  8874. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8875. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8876. #endregion
  8877. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8878. #region 页面操作权限验证
  8879. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8880. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8881. #endregion
  8882. #endregion
  8883. Grp_HotelReservations hr = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.Id == _dto.Id).FirstAsync();
  8884. //判断数据是否完整
  8885. if (hr != null)
  8886. {
  8887. if (!string.IsNullOrEmpty(hr.DetermineNo))
  8888. {
  8889. string strFileName = "HotelStatement/";
  8890. Grp_DelegationInfo dele = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == _dto.DiId).FirstAsync();
  8891. if (dele != null)
  8892. strFileName += dele.TourCode;
  8893. //载入模板
  8894. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/酒店预订模板.doc";
  8895. Document doc = new Document(sss);
  8896. DocumentBuilder builder = new DocumentBuilder(doc);
  8897. #region 替换Word模板书签内容
  8898. //这里可以创建个DataTable循环添加书签的值,这里提示一下就不多做修改了
  8899. //入住卷预定号码
  8900. if (doc.Range.Bookmarks["VNO"] != null)
  8901. {
  8902. Bookmark mark = doc.Range.Bookmarks["VNO"];
  8903. mark.Text = hr.CheckNumber;
  8904. }
  8905. //酒店时间
  8906. if (doc.Range.Bookmarks["Date"] != null)
  8907. {
  8908. Bookmark mark = doc.Range.Bookmarks["Date"];
  8909. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  8910. }
  8911. //团号
  8912. if (doc.Range.Bookmarks["TNo"] != null)
  8913. {
  8914. Bookmark mark = doc.Range.Bookmarks["TNo"];
  8915. mark.Text = dele.TourCode;
  8916. }
  8917. //预定号码
  8918. if (doc.Range.Bookmarks["BookingId"] != null)
  8919. {
  8920. Bookmark mark = doc.Range.Bookmarks["BookingId"];
  8921. mark.Text = hr.ReservationsNo;
  8922. }
  8923. if (doc.Range.Bookmarks["HotelConfirmNo"] != null)
  8924. {
  8925. Bookmark mark = doc.Range.Bookmarks["HotelConfirmNo"];
  8926. mark.Text = hr.DetermineNo;
  8927. }
  8928. //酒店城市
  8929. if (doc.Range.Bookmarks["City"] != null)
  8930. {
  8931. Bookmark mark = doc.Range.Bookmarks["City"];
  8932. mark.Text = hr.City;
  8933. }
  8934. //酒店名称
  8935. if (doc.Range.Bookmarks["HName"] != null)
  8936. {
  8937. Bookmark mark = doc.Range.Bookmarks["HName"];
  8938. mark.Text = hr.HotelName;
  8939. }
  8940. //酒店地址
  8941. if (doc.Range.Bookmarks["Address"] != null)
  8942. {
  8943. Bookmark mark = doc.Range.Bookmarks["Address"];
  8944. mark.Text = hr.HotelAddress;
  8945. }
  8946. //酒店电话
  8947. if (doc.Range.Bookmarks["Tel"] != null)
  8948. {
  8949. Bookmark mark = doc.Range.Bookmarks["Tel"];
  8950. mark.Text = hr.HotelTel;
  8951. }
  8952. //酒店传真
  8953. if (doc.Range.Bookmarks["Fax"] != null)
  8954. {
  8955. Bookmark mark = doc.Range.Bookmarks["Fax"];
  8956. if (!string.IsNullOrWhiteSpace(hr.HotelFax))
  8957. {
  8958. mark.Text = hr.HotelFax;
  8959. }
  8960. }
  8961. //入住时间
  8962. if (doc.Range.Bookmarks["CIn"] != null)
  8963. {
  8964. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  8965. Bookmark mark = doc.Range.Bookmarks["CIn"];
  8966. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year;
  8967. }
  8968. //退房时间
  8969. if (doc.Range.Bookmarks["COut"] != null)
  8970. {
  8971. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  8972. Bookmark mark = doc.Range.Bookmarks["COut"];
  8973. mark.Text = dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8974. }
  8975. //客户名称
  8976. if (doc.Range.Bookmarks["GName"] != null)
  8977. {
  8978. string guestName = "";
  8979. string[] clients = new string[] { };
  8980. if (hr.GuestName.Contains(","))
  8981. {
  8982. clients = hr.GuestName.Split(",");
  8983. }
  8984. else
  8985. {
  8986. clients = new string[] { hr.GuestName };
  8987. }
  8988. List<int> clientIds_int = new List<int>();
  8989. if (clients.Length > 0)
  8990. {
  8991. foreach (var item in clients)
  8992. {
  8993. if (item.IsNumeric())
  8994. {
  8995. clientIds_int.Add(int.Parse(item));
  8996. }
  8997. }
  8998. }
  8999. if (clientIds_int.Count > 0)
  9000. {
  9001. var _clientDatas = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && clientIds_int.Contains(it.Id)).ToList();
  9002. foreach (var client in _clientDatas)
  9003. {
  9004. //男
  9005. if (client.Sex == 0) guestName += $"Mr.";
  9006. //女
  9007. else if (client.Sex == 1) guestName += $"Ms.";
  9008. if (!String.IsNullOrEmpty(client.FirstName + client.LastName))
  9009. {
  9010. guestName += $"{string.Join("", client.FirstName.GetTotalPingYin()).ToUpper()} {string.Join("", client.LastName.GetTotalPingYin()).ToUpper()},";
  9011. }
  9012. //guestName += $"{client.Pinyin},";
  9013. }
  9014. if (guestName.Length > 0)
  9015. {
  9016. guestName = guestName.Substring(0, guestName.Length - 1);
  9017. }
  9018. }
  9019. else
  9020. {
  9021. guestName = hr.GuestName;
  9022. }
  9023. Bookmark mark = doc.Range.Bookmarks["GName"];
  9024. mark.Text = guestName;
  9025. }
  9026. //房间介绍
  9027. if (doc.Range.Bookmarks["ROOM"] != null)
  9028. {
  9029. Bookmark mark = doc.Range.Bookmarks["ROOM"];
  9030. mark.Text = hr.RoomExplanation;
  9031. }
  9032. //报价描述
  9033. if (doc.Range.Bookmarks["NOTE"] != null)
  9034. {
  9035. Bookmark mark = doc.Range.Bookmarks["NOTE"];
  9036. Sys_SetData ss = _sqlSugar.Queryable<Sys_SetData>().First(a => a.Id == hr.ReservationsWebsite);
  9037. if (ss != null)
  9038. mark.Text = ss.Name;
  9039. }
  9040. //入住时间
  9041. if (doc.Range.Bookmarks["CheckIn"] != null)
  9042. {
  9043. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  9044. Bookmark mark = doc.Range.Bookmarks["CheckIn"];
  9045. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year + " ";
  9046. }
  9047. //退房时间
  9048. if (doc.Range.Bookmarks["CheckOut"] != null)
  9049. {
  9050. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  9051. Bookmark mark = doc.Range.Bookmarks["CheckOut"];
  9052. mark.Text = " " + dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  9053. }
  9054. //日期
  9055. if (doc.Range.Bookmarks["DT"] != null)
  9056. {
  9057. Bookmark mark = doc.Range.Bookmarks["DT"];
  9058. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  9059. }
  9060. //名称
  9061. if (doc.Range.Bookmarks["VName"] != null)
  9062. {
  9063. Bookmark mark = doc.Range.Bookmarks["VName"];
  9064. mark.Text = hr.HotelName;
  9065. }
  9066. //号码
  9067. if (doc.Range.Bookmarks["VOUCHERNO"] != null)
  9068. {
  9069. Bookmark mark = doc.Range.Bookmarks["VOUCHERNO"];
  9070. mark.Text = hr.CheckNumber;
  9071. }
  9072. #endregion
  9073. strFileName += "VOUCHER.doc";
  9074. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  9075. doc.Save(fileDir);
  9076. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  9077. return Ok(JsonView(true, "操作成功!", Url));
  9078. }
  9079. else
  9080. {
  9081. return Ok(JsonView(false, "酒店确定号码未填写,无法生成Voucher!"));
  9082. }
  9083. }
  9084. else
  9085. {
  9086. return Ok(JsonView(false, "该条数据已删除或不存在!"));
  9087. }
  9088. }
  9089. catch (Exception ex)
  9090. {
  9091. return Ok(JsonView(false, ex.Message));
  9092. }
  9093. }
  9094. /// <summary>
  9095. /// 酒店预订
  9096. /// 生成VOUCHER
  9097. /// 2024.05.06 之后版本
  9098. /// </summary>
  9099. /// <param name="_dto"></param>
  9100. /// <returns></returns>
  9101. [HttpPost]
  9102. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9103. public async Task<IActionResult> PostHotelReservationsCreateVoucher(HotelReservationsCreateVoucherDto _dto)
  9104. {
  9105. #region 参数验证
  9106. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  9107. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  9108. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  9109. #region 团组操作权限验证 76 酒店预定模块
  9110. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9111. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  9112. #endregion
  9113. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9114. #region 页面操作权限验证
  9115. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9116. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9117. #endregion
  9118. #endregion
  9119. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  9120. //判断数据是否完整
  9121. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "请先录入酒店预订信息!", ""));
  9122. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  9123. string strFileName = "HotelStatement/";
  9124. string guestNames = ""; //格式Mr.xxx Ms.xxx
  9125. List<HotelVoucherInfoView> vouchers = new List<HotelVoucherInfoView>();
  9126. #region 数据处理
  9127. List<int> guestIds = new List<int>();
  9128. int index = 0;
  9129. foreach (var item in hrDtas)
  9130. {
  9131. if (item.GuestName.Contains(","))
  9132. {
  9133. string[] guestIdArr = item.GuestName.Split(',');
  9134. foreach (var guestIdStr in guestIdArr)
  9135. {
  9136. bool guestBool = int.TryParse(guestIdStr, out int guestId);
  9137. if (guestBool)
  9138. {
  9139. guestIds.Add(guestId);
  9140. }
  9141. }
  9142. }
  9143. else guestNames += item.GuestName;
  9144. var voucherInfo = new HotelVoucherInfoView()
  9145. {
  9146. HotelName = item.HotelName,
  9147. CheckInDate = item.CheckInDate,
  9148. CheckOutDate = item.CheckOutDate,
  9149. ConfirmationNumber = item.DetermineNo.Trim(),
  9150. RoomType = item.RoomExplanation
  9151. };
  9152. vouchers.Add(voucherInfo);
  9153. }
  9154. if (guestIds.Count > 0)
  9155. {
  9156. guestIds = guestIds.Distinct().ToList();
  9157. var guestDatas = await _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && guestIds.Contains(it.Id)).ToListAsync();
  9158. if (guestDatas.Count > 0)
  9159. {
  9160. guestNames = "";
  9161. foreach (var guest in guestDatas)
  9162. {
  9163. string guestName = "";
  9164. if (guest.Sex == 0) guestName += @"MR.";
  9165. else if (guest.Sex == 1) guestName += @"MS.";
  9166. if (guest.Pinyin == null) guestName += $"{string.Join("", guest.LastName.GetTotalPingYin()).ToUpper()}/{string.Join("", guest.FirstName.GetTotalPingYin()).ToUpper()}";
  9167. else guestName += @$"{guest.Pinyin.Replace(" ", "")}";
  9168. guestNames += @$"{guestName.Trim()}、";
  9169. }
  9170. if (guestNames.Length > 0)
  9171. {
  9172. guestNames = guestNames.Substring(0, guestNames.Length - 1);
  9173. }
  9174. }
  9175. }
  9176. #endregion
  9177. //载入模板
  9178. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/Voucher-2024Versions.docx";
  9179. Document doc = new Document(sss);
  9180. DocumentBuilder builder = new DocumentBuilder(doc);
  9181. if (doc.Range.Bookmarks["GuestName"] != null)
  9182. {
  9183. Bookmark mark = doc.Range.Bookmarks["GuestName"];
  9184. mark.Text = guestNames;
  9185. }
  9186. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  9187. Aspose.Words.Tables.Table table = allTables[0] as Aspose.Words.Tables.Table;
  9188. vouchers = vouchers.OrderBy(it => it.CheckInDate).ToList();
  9189. for (int i = 1; i <= vouchers.Count; i++)
  9190. {
  9191. HotelVoucherInfoView hviv = vouchers[i - 1];
  9192. builder.MoveToCell(0, i, 0, 0);
  9193. builder.Write(hviv.HotelName);
  9194. builder.MoveToCell(0, i, 1, 0);
  9195. builder.Write(hviv.CheckInDate);
  9196. builder.MoveToCell(0, i, 2, 0);
  9197. builder.Write(hviv.CheckOutDate);
  9198. builder.MoveToCell(0, i, 3, 0);
  9199. builder.Write(hviv.RoomType);
  9200. builder.MoveToCell(0, i, 4, 0);
  9201. builder.Write(hviv.ConfirmationNumber);
  9202. }
  9203. //删除多余行
  9204. int currRowIndex = vouchers.Count + 1;
  9205. int delRows = 21 - currRowIndex;
  9206. if (delRows > 0)
  9207. {
  9208. for (int i = 0; i < delRows; i++)
  9209. {
  9210. table.Rows.RemoveAt(currRowIndex);
  9211. //cultivateRowIndex++;
  9212. }
  9213. }
  9214. strFileName += "VOUCHER.docx";
  9215. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  9216. doc.Save(fileDir);
  9217. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  9218. return Ok(JsonView(true, "操作成功!", Url));
  9219. }
  9220. /// <summary>
  9221. /// 酒店预订
  9222. /// 生成 预定成本 Excel
  9223. /// </summary>
  9224. /// <param name="_dto"></param>
  9225. /// <returns></returns>
  9226. [HttpPost]
  9227. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9228. public async Task<IActionResult> PostHotelReservationsPredictedCostFileDownload(HotelReservations_PCFD_DTO _dto)
  9229. {
  9230. #region 参数验证
  9231. var vadalitor = new HotelReservations_PCFD_DTOFoalidator();
  9232. var vadalitorRes = await vadalitor.ValidateAsync(_dto);
  9233. if (!vadalitorRes.IsValid)
  9234. {
  9235. var errors = new StringBuilder();
  9236. foreach (var valid in vadalitorRes.Errors) errors.AppendLine(valid.ErrorMessage);
  9237. return Ok(JsonView(StatusCodes.Status400BadRequest, errors.ToString(), ""));
  9238. }
  9239. #region 团组操作权限验证 76 酒店预定模块
  9240. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9241. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  9242. #endregion
  9243. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9244. #region 页面操作权限验证
  9245. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9246. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9247. #endregion
  9248. #endregion
  9249. decimal _rate = 1.00M;
  9250. string _currency = "";
  9251. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.STid == 66).ToList();
  9252. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  9253. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "酒店预订费用未录入,不支持预定成本Excel导出", ""));
  9254. Grp_GroupCostParameter _GroupCostParameter = await _sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).FirstAsync();
  9255. if (_GroupCostParameter == null) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用未录入,不支持预定成本Excel导出", ""));
  9256. if (string.IsNullOrEmpty(_GroupCostParameter.Currency))
  9257. {
  9258. return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用“币种为录入”未录入,不支持预定成本Excel导出", ""));
  9259. }
  9260. _currency = _GroupCostParameter.Currency;
  9261. bool isIntType = int.TryParse(_currency, out int currId);
  9262. if (isIntType)
  9263. {
  9264. _currency = currDatas.Find(it => it.Id == currId)?.Name ?? "";
  9265. }
  9266. var teamRate = await _teamRateRep.PostGroupTeamRateItemByDiIdAndCTableId(1, _dto.DiId, 76);
  9267. var currInfo = teamRate.Find(it => it.CurrencyCode.Equals(_currency));
  9268. if (currInfo == null)
  9269. {
  9270. return Ok(JsonView(StatusCodes.Status400BadRequest, $"团组汇率-->酒店模块 {_currency} 币种未设置汇率,不支持预定成本Excel导出", ""));
  9271. }
  9272. if (!_currency.ToUpper().Equals("CNY"))
  9273. {
  9274. _rate = _GroupCostParameter.Rate;
  9275. }
  9276. _rate = currInfo.Rate;
  9277. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  9278. string strFileName = "HotelStatement/";
  9279. string guestNames = ""; //格式Mr.xxx Ms.xxx
  9280. List<HotelReservations_PCFD_View> pcfds = new List<HotelReservations_PCFD_View>();
  9281. var hotelSubData = _sqlSugar.Queryable<Grp_HotelReservationsContent>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToList();
  9282. var ccpData = _sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && it.DIId == _dto.DiId && it.CTable == 76).ToList();
  9283. #region 数据处理
  9284. foreach (var item in hrDtas)
  9285. {
  9286. var ccpInfo = ccpData.Where(it => it.DIId == _dto.DiId && it.CId == item.Id).First();
  9287. var roomInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 1).FirstOrDefault(); //房费
  9288. var breakfastInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 2).FirstOrDefault(); //早餐
  9289. var governmentRentInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 3).FirstOrDefault(); //地税
  9290. var cityTaxInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 4).FirstOrDefault(); //城市税
  9291. string roomCurr = currDatas.Find(it => it.Id == roomInfo?.Currency)?.Name ?? "";
  9292. string singleRoomFeeStr = string.Empty,
  9293. doubleRoomFeeStr = string.Empty,
  9294. suiteRoomFeeStr = string.Empty,
  9295. otherRoomFeeStr = string.Empty,
  9296. payMoneyStr = string.Empty,
  9297. cardPriceStr = string.Empty;
  9298. if (roomCurr.Equals(_currency))
  9299. {
  9300. singleRoomFeeStr = $"{item.SingleRoomPrice.ToString("#0.00")} {_currency}";
  9301. doubleRoomFeeStr = $"{item.DoubleRoomPrice.ToString("#0.00")} {_currency}";
  9302. suiteRoomFeeStr = $"{item.SuiteRoomPrice.ToString("#0.00")} {_currency}";
  9303. otherRoomFeeStr = $"{item.OtherRoomPrice.ToString("#0.00")} {_currency}";
  9304. payMoneyStr = $"{ccpInfo.PayMoney.ToString("#0.00")} {_currency}";
  9305. cardPriceStr = $"{item.CardPrice.ToString("#0.00")} {_currency}";
  9306. }
  9307. else
  9308. {
  9309. singleRoomFeeStr = $"{(item.SingleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SingleRoomPrice.ToString("#0.00")} {roomCurr}";
  9310. doubleRoomFeeStr = $"{(item.DoubleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.DoubleRoomPrice.ToString("#0.00")} {roomCurr}";
  9311. suiteRoomFeeStr = $"{(item.SuiteRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SuiteRoomPrice.ToString("#0.00")} {roomCurr}";
  9312. otherRoomFeeStr = $"{(item.OtherRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.OtherRoomPrice.ToString("#0.00")} {roomCurr}";
  9313. payMoneyStr = $"{(ccpInfo.PayMoney / _rate).ToString("#0.00")} {_currency}\r\n{ccpInfo.PayMoney.ToString("#0.00")} {roomCurr}";
  9314. cardPriceStr = $"{(item.CardPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.CardPrice.ToString("#0.00")} {roomCurr}";
  9315. }
  9316. string breakfastPriceStr = string.Empty,
  9317. breakfastCurrency = currDatas.Find(it => it.Id == item.BreakfastCurrency)?.Name ?? "",
  9318. governmentRentStr = string.Empty,
  9319. governmentRentCurrency = currDatas.Find(it => it.Id == item.GovernmentRentCurrency)?.Name ?? "",
  9320. cityTaxStrStr = string.Empty,
  9321. cityTaxStrCurrency = currDatas.Find(it => it.Id == item.CityTaxCurrency)?.Name ?? "";
  9322. breakfastPriceStr = $"{breakfastInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == breakfastInfo?.Currency)?.Name}";
  9323. governmentRentStr = $"{governmentRentInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == governmentRentInfo?.Currency)?.Name}";
  9324. cityTaxStrStr = $"{cityTaxInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == cityTaxInfo?.Currency)?.Name}";
  9325. int payDId = roomInfo?.PayDId ?? 0;
  9326. pcfds.Add(new HotelReservations_PCFD_View()
  9327. {
  9328. City = item.City,
  9329. HotelName = item.HotelName,
  9330. Date = $"{item.CheckInDate} - {item.CheckOutDate}",
  9331. // SingleRoomCount = item.SingleRoomCount,
  9332. SingleRoomPrice = singleRoomFeeStr,
  9333. // DoubleRoomCount = item.DoubleRoomCount,
  9334. DoubleRoomPrice = doubleRoomFeeStr,
  9335. //SuiteRoomCount = item.SuiteRoomCount,
  9336. SuiteRoomPrice = suiteRoomFeeStr,
  9337. OtherRoomPrice = otherRoomFeeStr,
  9338. //OtherRoomCount = item.OtherRoomCount,
  9339. BreakfastPrice = breakfastPriceStr,
  9340. GovernmentRent = governmentRentStr,
  9341. CityTax = cityTaxStrStr,
  9342. RoomExplanation = item.RoomExplanation,
  9343. PayTypeName = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.Id == payDId).First()?.Name ?? "",
  9344. PayTime = roomInfo?.ConsumptionDate,
  9345. BankNo = roomInfo?.BankNo,
  9346. PayMoney = payMoneyStr,
  9347. //PayMoneys = ccpInfo.PayMoney.ToString("#0.00"),
  9348. ConsumptionPatterns = roomInfo?.ConsumptionPatterns,
  9349. CardPrice = cardPriceStr,
  9350. Remark = ccpInfo.Remark
  9351. });
  9352. }
  9353. #endregion
  9354. //载入模板
  9355. WorkbookDesigner designer = new WorkbookDesigner();
  9356. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/酒店预订成本.xls");
  9357. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == _dto.DiId).First();
  9358. var userInfo = _sqlSugar.Queryable<Sys_Users>().Where(it => it.Id == hrDtas[0].CreateUserId).First();
  9359. designer.SetDataSource("TourNo", groupInfo.TourCode);
  9360. designer.SetDataSource("TeamName", $"{groupInfo.TeamName} 团组成本币种:{_currency} 团组汇率-->酒店模块汇率:{_rate.ToString("#0.0000")}");
  9361. designer.SetDataSource("Opertor", userInfo.CnName);
  9362. DataTable dt = CommonFun.GetDataTableFromIList<HotelReservations_PCFD_View>(pcfds);
  9363. dt.TableName = "ViewMyHotelReservations";
  9364. designer.SetDataSource(dt);
  9365. designer.Process();
  9366. string fileName = $"HotelReservation/{groupInfo.TeamName.Replace("/","").Replace(@"\", "").Trim()}_酒店预订成本_{ DateTime.Now.ToString("yyyyMMddHHmmss")}.xls";
  9367. string serverPath = AppSettingsHelper.Get("ExcelBasePath") + fileName;
  9368. designer.Workbook.Save(serverPath);
  9369. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  9370. #region 删除指定行
  9371. bool singleDel = true, doubleDel = true, suiteDel = true, otherDel = true, zcDel = true, dsDel = true, cssDel = true, cpDel = true, remarkDel = true;
  9372. int singleIndex = dt.Columns["SingleRoomPrice"].Ordinal,
  9373. doubleIndex = dt.Columns["DoubleRoomPrice"].Ordinal,
  9374. suiteIndex = dt.Columns["SuiteRoomPrice"].Ordinal,
  9375. otherIndex = dt.Columns["OtherRoomPrice"].Ordinal,
  9376. zcIndex = dt.Columns["BreakfastPrice"].Ordinal,
  9377. dsIndex = dt.Columns["GovernmentRent"].Ordinal,
  9378. cssIndex = dt.Columns["CityTax"].Ordinal,
  9379. cpIndex = dt.Columns["ConsumptionPatterns"].Ordinal,
  9380. remarkIndex = dt.Columns["Remark"].Ordinal;
  9381. //删除指定列
  9382. foreach (DataRow item in dt.Rows)
  9383. {
  9384. string singleStr = item["SingleRoomPrice"].ToString();
  9385. bool containsDigitButNotZero1 = !singleStr.StartsWith("0") && Regex.IsMatch(singleStr, @"[1-9]");
  9386. if (containsDigitButNotZero1) singleDel = false;
  9387. singleIndex = dt.Columns["SingleRoomPrice"].Ordinal;
  9388. string doubleStr = item["DoubleRoomPrice"].ToString();
  9389. bool containsDigitButNotZero2 = !doubleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  9390. if (containsDigitButNotZero2) doubleDel = false;
  9391. string suiteStr = item["SuiteRoomPrice"].ToString();
  9392. bool containsDigitButNotZero3 = !singleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  9393. if (containsDigitButNotZero3) suiteDel = false;
  9394. string otherStr = item["OtherRoomPrice"].ToString();
  9395. bool containsDigitButNotZero4 = !otherStr.StartsWith("0") && Regex.IsMatch(otherStr, @"[1-9]");
  9396. if (containsDigitButNotZero4) otherDel = false;
  9397. string zcStr = item["BreakfastPrice"].ToString();
  9398. bool containsDigitButNotZero5 = !zcStr.StartsWith("0") && Regex.IsMatch(zcStr, @"[1-9]");
  9399. if (containsDigitButNotZero5) zcDel = false;
  9400. string dsStr = item["GovernmentRent"].ToString();
  9401. bool containsDigitButNotZero6 = !dsStr.StartsWith("0") && Regex.IsMatch(dsStr, @"[1-9]");
  9402. if (containsDigitButNotZero6) dsDel = false;
  9403. string cssStr = item["CityTax"].ToString();
  9404. bool containsDigitButNotZero7 = !cssStr.StartsWith("0") && Regex.IsMatch(cssStr, @"[1-9]");
  9405. if (containsDigitButNotZero7) cssDel = false;
  9406. string cpStr = item["ConsumptionPatterns"].ToString();
  9407. if (!string.IsNullOrEmpty(cpStr)) cpDel = false;
  9408. string remarkStr = item["Remark"].ToString();
  9409. if (!string.IsNullOrEmpty(remarkStr)) remarkDel = false;
  9410. }
  9411. DeleteColumn(serverPath, remarkIndex, remarkDel);
  9412. DeleteColumn(serverPath, cpIndex, cpDel);
  9413. DeleteColumn(serverPath, dsIndex, dsDel);
  9414. DeleteColumn(serverPath, cssIndex, cssDel);
  9415. DeleteColumn(serverPath, zcIndex, zcDel);
  9416. DeleteColumn(serverPath, otherIndex, otherDel);
  9417. DeleteColumn(serverPath, suiteIndex, suiteDel);
  9418. DeleteColumn(serverPath, doubleIndex, doubleDel);
  9419. DeleteColumn(serverPath, singleIndex, singleDel);
  9420. #endregion
  9421. //只保留第一个表格
  9422. DeleteSheet(serverPath);
  9423. return Ok(JsonView(true, "操作成功", url = rst));
  9424. }
  9425. /// <summary>
  9426. /// 删除指定列
  9427. /// </summary>
  9428. /// <param name="file"></param>
  9429. /// <param name="columnIndex"></param>
  9430. /// <param name="isDel"></param>
  9431. private void DeleteColumn(string file, int columnIndex, bool isDel)
  9432. {
  9433. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  9434. //wb.Save(file);
  9435. Aspose.Cells.Worksheet sheet1 = wb.Worksheets[0];
  9436. if (sheet1 != null)
  9437. {
  9438. if (isDel)
  9439. {
  9440. Cells cells = sheet1.Cells;
  9441. cells.DeleteColumn(columnIndex);
  9442. }
  9443. }
  9444. wb.Save(file);
  9445. }
  9446. /// <summary>
  9447. /// 删除sheet
  9448. /// </summary>
  9449. /// <param name="file"></param>
  9450. /// <param name="sheetName"></param>
  9451. private void DeleteSheet(string file, string sheetName = "")
  9452. {
  9453. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  9454. //wb.Save(file);
  9455. List<string> sheets = new List<string>();
  9456. foreach (var item in wb.Worksheets)
  9457. {
  9458. sheets.Add(item.Name);
  9459. }
  9460. if (sheets.Count > 0)
  9461. {
  9462. sheets.RemoveAt(0);//不删除第一个sheet
  9463. foreach (var item in sheets)
  9464. {
  9465. wb.Worksheets.RemoveAt(item);
  9466. }
  9467. }
  9468. wb.Save(file);
  9469. }
  9470. /// <summary>
  9471. /// 酒店预订
  9472. /// 确认单
  9473. /// </summary>
  9474. /// <param name="_dto"></param>
  9475. /// <returns></returns>
  9476. [HttpPost]
  9477. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9478. public async Task<IActionResult> PostHotelReservationsConfirmationSlip(HotelReservationsConfirmationSlipDto _dto)
  9479. {
  9480. try
  9481. {
  9482. #region 参数验证
  9483. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  9484. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  9485. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  9486. #region 团组操作权限验证 76 酒店预定模块
  9487. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9488. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  9489. #endregion
  9490. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9491. #region 页面操作权限验证
  9492. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9493. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9494. #endregion
  9495. #endregion
  9496. //团组信息
  9497. Grp_DelegationInfo di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(a => a.Id == _dto.DiId);
  9498. //酒店数据
  9499. List<Grp_HotelReservations> listhoteldata = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(a => a.DiId == _dto.DiId && a.IsDel == 0).ToListAsync();
  9500. if (listhoteldata.Count < 0)
  9501. {
  9502. return Ok(JsonView(StatusCodes.Status400BadRequest, "当前团组暂无酒店预订信息!", ""));
  9503. }
  9504. //利datatable存储
  9505. DataTable dt = new DataTable();
  9506. dt.Columns.Add("CheckInDate", typeof(string));
  9507. dt.Columns.Add("City", typeof(string));
  9508. dt.Columns.Add("Hotel", typeof(string));
  9509. dt.Columns.Add("Room", typeof(string));
  9510. for (int i = 0; i < listhoteldata.Count; i++)
  9511. {
  9512. DateTime dayStart = Convert.ToDateTime(listhoteldata[i].CheckInDate);
  9513. DateTime dayEnd = Convert.ToDateTime(listhoteldata[i].CheckOutDate);
  9514. while (dayStart < dayEnd)
  9515. {
  9516. string temp = "";
  9517. DataRow row = dt.NewRow();
  9518. row["CheckInDate"] = dayStart.ToString("yyyy-MM-dd");
  9519. row["City"] = listhoteldata[i].City;
  9520. row["Hotel"] = listhoteldata[i].HotelName;
  9521. if (listhoteldata[i].SingleRoomCount > 0)
  9522. {
  9523. temp = listhoteldata[i].SingleRoomCount + "个单间" + "\r\n";
  9524. }
  9525. if (listhoteldata[i].DoubleRoomCount > 0)
  9526. {
  9527. temp = temp + listhoteldata[i].DoubleRoomCount + "个标间" + "\r\n";
  9528. }
  9529. if (listhoteldata[i].SuiteRoomCount > 0)
  9530. {
  9531. temp = temp + listhoteldata[i].SuiteRoomCount + "个套房" + "\r\n";
  9532. }
  9533. if (listhoteldata[i].OtherRoomCount > 0)
  9534. {
  9535. temp = temp + listhoteldata[i].OtherRoomCount + "个其他房型" + "\r\n";
  9536. }
  9537. row["Room"] = temp;
  9538. dt.Rows.Add(row);
  9539. dayStart = dayStart.AddDays(1);
  9540. }
  9541. }
  9542. Dictionary<string, string> dic = new Dictionary<string, string>();
  9543. dic.Add("Dele", di.TeamName);
  9544. dic.Add("City", di.VisitCountry);
  9545. //模板路径
  9546. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/酒店用房确认单-模板.doc";
  9547. //载入模板
  9548. Aspose.Words.Document doc = new Aspose.Words.Document(tempPath);
  9549. DocumentBuilder builder = new DocumentBuilder(doc);
  9550. foreach (var key in dic.Keys)
  9551. {
  9552. builder.MoveToBookmark(key);
  9553. builder.Write(dic[key]);
  9554. }
  9555. //获取word里所有表格
  9556. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  9557. //获取所填表格的序数
  9558. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  9559. var rowStart = tableOne.Rows[0]; //获取第1行
  9560. //循环赋值
  9561. for (int i = 0; i < dt.Rows.Count; i++)
  9562. {
  9563. builder.MoveToCell(0, i + 1, 0, 0);
  9564. builder.Write(dt.Rows[i]["CheckInDate"].ToString());
  9565. builder.MoveToCell(0, i + 1, 1, 0);
  9566. builder.Write(dt.Rows[i]["City"].ToString());
  9567. builder.MoveToCell(0, i + 1, 2, 0);
  9568. builder.Write(dt.Rows[i]["Hotel"].ToString());
  9569. builder.MoveToCell(0, i + 1, 3, 0);
  9570. builder.Write(dt.Rows[i]["Room"].ToString());
  9571. }
  9572. //删除多余行
  9573. while (tableOne.Rows.Count > dt.Rows.Count + 1)
  9574. {
  9575. tableOne.Rows.RemoveAt(dt.Rows.Count + 1);
  9576. }
  9577. string strFileName = di.TeamName + "酒店确认单.doc";
  9578. doc.Save(AppSettingsHelper.Get("WordBasePath") + "HotelStatement/" + strFileName);
  9579. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/HotelStatement/" + strFileName;
  9580. return Ok(JsonView(true, "成功", url));
  9581. }
  9582. catch (Exception ex)
  9583. {
  9584. return Ok(JsonView(StatusCodes.Status400BadRequest, ex.Message, ""));
  9585. }
  9586. }
  9587. #endregion
  9588. #region 团组状态
  9589. /// <summary>
  9590. /// 团组状态列表 Page
  9591. /// </summary>
  9592. /// <param name="dto">团组列表请求dto</param>
  9593. /// <returns></returns>
  9594. [HttpPost]
  9595. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9596. public async Task<IActionResult> PostGroupStatusPageList(GroupStatusListDto dto)
  9597. {
  9598. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  9599. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  9600. {
  9601. string sqlWhere = string.Empty;
  9602. if (dto.IsSure == 0) //未完成
  9603. {
  9604. sqlWhere += string.Format(@" And IsSure = 0");
  9605. }
  9606. else if (dto.IsSure == 1) //已完成
  9607. {
  9608. sqlWhere += string.Format(@" And IsSure = 1");
  9609. }
  9610. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  9611. {
  9612. string tj = dto.SearchCriteria;
  9613. 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}%')",
  9614. tj, tj, tj, tj, tj);
  9615. }
  9616. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  9617. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  9618. VisitDate,VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  9619. From (
  9620. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  9621. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  9622. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  9623. VisitDate,VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  9624. From Grp_DelegationInfo gdi
  9625. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  9626. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  9627. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  9628. Where gdi.IsDel = 0 {0}
  9629. ) temp ", sqlWhere);
  9630. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  9631. var _DelegationList = await _sqlSugar.SqlQueryable<GroupStatusView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  9632. return Ok(JsonView(true, "查询成功!", _DelegationList, total));
  9633. }
  9634. else
  9635. {
  9636. return Ok(JsonView(false, "查询失败"));
  9637. }
  9638. }
  9639. /// <summary>
  9640. /// 团组状态
  9641. /// 设置操作完成
  9642. /// </summary>
  9643. /// <param name="dto">团组列表请求dto</param>
  9644. /// <returns></returns>
  9645. [HttpPost]
  9646. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9647. public async Task<IActionResult> PostGroupStatusSetOperationComplete(GroupStatusSetOperationCompleteDto dto)
  9648. {
  9649. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  9650. Grp_DelegationInfo _DelegationInfo = new Grp_DelegationInfo()
  9651. {
  9652. Id = dto.Id,
  9653. IsSure = 1
  9654. };
  9655. var result = await _sqlSugar.Updateable(_DelegationInfo)
  9656. .UpdateColumns(it => new { it.IsSure })
  9657. .WhereColumns(it => new { it.Id })
  9658. .ExecuteCommandAsync();
  9659. if (result > 0)
  9660. {
  9661. return Ok(JsonView(true, "操作完成!"));
  9662. }
  9663. return Ok(JsonView(false, "操作失败!"));
  9664. }
  9665. #endregion
  9666. #region 保险费用录入
  9667. /// <summary>
  9668. /// 根据团组Id查询保险费用列表
  9669. /// </summary>
  9670. /// <param name="dto"></param>
  9671. /// <returns></returns>
  9672. [HttpPost]
  9673. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9674. public async Task<IActionResult> CustomersByDiId(CustomersByDiIdDto dto)
  9675. {
  9676. try
  9677. {
  9678. Result groupData = await _customersRep.CustomersByDiId(dto);
  9679. if (groupData.Code != 0)
  9680. {
  9681. return Ok(JsonView(false, groupData.Msg));
  9682. }
  9683. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9684. }
  9685. catch (Exception ex)
  9686. {
  9687. return Ok(JsonView(false, ex.Message));
  9688. }
  9689. }
  9690. /// <summary>
  9691. /// 根据保险费用Id查询保险费用详细
  9692. /// </summary>
  9693. /// <param name="dto"></param>
  9694. /// <returns></returns>
  9695. [HttpPost]
  9696. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9697. public async Task<IActionResult> CustomersById(CustomersByIdDto dto)
  9698. {
  9699. try
  9700. {
  9701. Result groupData = await _customersRep.CustomersById(dto);
  9702. if (groupData.Code != 0)
  9703. {
  9704. return Ok(JsonView(false, groupData.Msg));
  9705. }
  9706. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9707. }
  9708. catch (Exception ex)
  9709. {
  9710. return Ok(JsonView(false, ex.Message));
  9711. }
  9712. }
  9713. /// <summary>
  9714. /// 保险费用录入页面初始化绑定
  9715. /// </summary>
  9716. /// <param name="dto"></param>
  9717. /// <returns></returns>
  9718. [HttpPost]
  9719. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9720. public async Task<IActionResult> CustomersInitialize(CustomersInitializeDto dto)
  9721. {
  9722. try
  9723. {
  9724. Result groupData = await _customersRep.CustomersInitialize(dto);
  9725. if (groupData.Code != 0)
  9726. {
  9727. return Ok(JsonView(false, groupData.Msg));
  9728. }
  9729. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9730. }
  9731. catch (Exception ex)
  9732. {
  9733. return Ok(JsonView(false, ex.Message));
  9734. }
  9735. }
  9736. /// <summary>
  9737. /// 保险费用操作(Status:1.新增,2.修改)
  9738. /// </summary>
  9739. /// <param name="dto"></param>
  9740. /// <returns></returns>
  9741. [HttpPost]
  9742. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9743. public async Task<IActionResult> OpCustomers(OpCustomersDto dto)
  9744. {
  9745. try
  9746. {
  9747. Result groupData = await _customersRep.OpCustomers(dto);
  9748. if (groupData.Code != 0)
  9749. {
  9750. return Ok(JsonView(false, groupData.Msg));
  9751. }
  9752. #region 应用推送
  9753. try
  9754. {
  9755. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  9756. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  9757. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  9758. }
  9759. catch (Exception ex)
  9760. {
  9761. }
  9762. #endregion
  9763. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9764. }
  9765. catch (Exception ex)
  9766. {
  9767. return Ok(JsonView(false, ex.Message));
  9768. }
  9769. }
  9770. /// <summary>
  9771. /// 保险文件上传
  9772. /// </summary>
  9773. /// <param name="file"></param>
  9774. /// <returns></returns>
  9775. [HttpPost]
  9776. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9777. public async Task<IActionResult> UploadCus(IFormFile file)
  9778. {
  9779. try
  9780. {
  9781. if (file != null)
  9782. {
  9783. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  9784. //文件名称
  9785. string projectFileName = file.FileName;
  9786. //上传的文件的路径
  9787. string filePath = "";
  9788. if (!Directory.Exists(fileDir))
  9789. {
  9790. Directory.CreateDirectory(fileDir);
  9791. }
  9792. //上传的文件的路径
  9793. filePath = fileDir + $@"\保险费用文件上传\{projectFileName}";
  9794. using (FileStream fs = System.IO.File.Create(filePath))
  9795. {
  9796. file.CopyTo(fs);
  9797. fs.Flush();
  9798. }
  9799. return Ok(JsonView(true, "上传成功!", projectFileName));
  9800. }
  9801. else
  9802. {
  9803. return Ok(JsonView(false, "上传失败!"));
  9804. }
  9805. }
  9806. catch (Exception ex)
  9807. {
  9808. return Ok(JsonView(false, "程序错误!"));
  9809. throw;
  9810. }
  9811. }
  9812. /// <summary>
  9813. /// 保险删除指定文件
  9814. /// </summary>
  9815. /// <param name="dto"></param>
  9816. /// <returns></returns>
  9817. [HttpPost]
  9818. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9819. public async Task<IActionResult> DelFileCus(DelFileDto dto)
  9820. {
  9821. try
  9822. {
  9823. string filePath = "";
  9824. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  9825. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  9826. //int id = 0;
  9827. filePath = fileDir + "/保险费用文件上传/" + dto.fileName;
  9828. // 删除该文件
  9829. try
  9830. {
  9831. System.IO.File.Delete(filePath);
  9832. 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()
  9833. {
  9834. Attachment = "",
  9835. }).ExecuteCommandAsync();
  9836. if (result != 0)
  9837. {
  9838. return Ok(JsonView(true, "成功!"));
  9839. }
  9840. else
  9841. {
  9842. return Ok(JsonView(false, "失败!"));
  9843. }
  9844. }
  9845. catch (Exception)
  9846. {
  9847. 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()
  9848. {
  9849. Attachment = "",
  9850. }).ExecuteCommandAsync();
  9851. if (result != 0)
  9852. {
  9853. return Ok(JsonView(true, "成功!"));
  9854. }
  9855. else
  9856. {
  9857. return Ok(JsonView(false, "失败!"));
  9858. }
  9859. }
  9860. }
  9861. catch (Exception ex)
  9862. {
  9863. return Ok(JsonView(false, "程序错误!"));
  9864. throw;
  9865. }
  9866. }
  9867. /// <summary>
  9868. /// 保险费用操作(删除)
  9869. /// </summary>
  9870. /// <param name="dto"></param>
  9871. /// <returns></returns>
  9872. [HttpPost]
  9873. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9874. public async Task<IActionResult> DelCustomers(DelBaseDto dto)
  9875. {
  9876. try
  9877. {
  9878. var res = await _customersRep.SoftDeleteByIdAsync<Grp_Customers>(dto.Id.ToString(), dto.DeleteUserId);
  9879. if (!res)
  9880. {
  9881. return Ok(JsonView(false, "删除失败"));
  9882. }
  9883. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 82).SetColumns(a => new Grp_CreditCardPayment()
  9884. {
  9885. IsDel = 1,
  9886. DeleteUserId = dto.DeleteUserId,
  9887. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  9888. }).ExecuteCommandAsync();
  9889. return Ok(JsonView(true, "删除成功!"));
  9890. }
  9891. catch (Exception ex)
  9892. {
  9893. return Ok(JsonView(false, "程序错误!"));
  9894. throw;
  9895. }
  9896. }
  9897. #endregion
  9898. #region 接团客户名单 PageId 104
  9899. /// <summary>
  9900. /// 接团客户名单
  9901. /// 迁移数据(慎用!)
  9902. /// </summary>
  9903. /// <param name="dto"></param>
  9904. /// <returns></returns>
  9905. [HttpPost]
  9906. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9907. public async Task<IActionResult> PostTourClientListChange()
  9908. {
  9909. try
  9910. {
  9911. _sqlSugar.ChangeDatabase(DBEnum.OA2014DB);
  9912. //var groupClinetData1
  9913. string sql = string.Format($"Select * From DeleClient Where Isdel = 0");
  9914. var oldOAClientList = await _sqlSugar.SqlQueryable<OA2021_DeleClient>(sql).Where(it => it.Isdel == 0).ToListAsync();
  9915. int updateCount = 0;
  9916. if (oldOAClientList.Count > 0)
  9917. {
  9918. _sqlSugar.ChangeDatabase(DBEnum.OA2023DB);
  9919. _sqlSugar.BeginTran();
  9920. var clientComInfos = _sqlSugar.Queryable<Crm_CustomerCompany>().Where(it => it.IsDel == 0).ToList();
  9921. var clientInfos = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0).ToList();
  9922. foreach (var item in oldOAClientList)
  9923. {
  9924. int comId = 0;
  9925. string format = "yyyy-MM-dd HH:mm:ss";
  9926. string data11 = "1990-01-01 00:00";
  9927. var data1 = IsValidDate(item.OPdate, format);
  9928. if (data1) data11 = item.OPdate;
  9929. //客户公司验证
  9930. if (!string.IsNullOrEmpty(item.Company))
  9931. {
  9932. var clientComInfo = clientComInfos.Where(it => it.CompanyFullName.Equals(item.Company)).FirstOrDefault();
  9933. if (clientComInfo == null) // add
  9934. {
  9935. var addInfo = new Crm_CustomerCompany()
  9936. {
  9937. CompanyAbbreviation = "",
  9938. CompanyFullName = item.Company,
  9939. Address = "",
  9940. PostCodes = "",
  9941. LastedOpUserId = item.OPer,
  9942. LastedOpDt = Convert.ToDateTime(data11),
  9943. CreateUserId = item.OPer,
  9944. CreateTime = Convert.ToDateTime(data11),
  9945. IsDel = 0
  9946. };
  9947. var comId1 = _sqlSugar.Insertable<Crm_CustomerCompany>(addInfo).ExecuteReturnIdentity();
  9948. if (comId1 > 0) comId = comId1;
  9949. }
  9950. else comId = clientComInfo.Id;
  9951. }
  9952. //客户人员验证
  9953. int clientId = 0;
  9954. string name = item.LastName + item.Name;
  9955. if (!string.IsNullOrEmpty(name))
  9956. {
  9957. var clientInfo = clientInfos.Where(it => (it.LastName + it.FirstName).Equals(name)).FirstOrDefault();
  9958. if (clientInfo == null)
  9959. {
  9960. DateTime? dateTime = null;
  9961. var isDt = DateTime.TryParse(item.Birthday, out DateTime birthDayDt);
  9962. if (isDt) dateTime = birthDayDt;
  9963. var addInfo1 = new Crm_DeleClient()
  9964. {
  9965. CrmCompanyId = comId,
  9966. DiId = -1,
  9967. LastName = item.LastName,
  9968. FirstName = item.Name,
  9969. OldName = "",
  9970. Pinyin = item.Pinyin,
  9971. Sex = item.Sex == "男" ? 0 : item.Sex == "女" ? 1 : -1,
  9972. Marriage = 0,
  9973. Phone = item.Phone,
  9974. Job = item.Job,
  9975. BirthDay = dateTime
  9976. };
  9977. var clientId1 = _sqlSugar.Insertable<Crm_DeleClient>(addInfo1).ExecuteReturnIdentity();
  9978. if (clientId1 > 0) clientId = clientId1;
  9979. }
  9980. else clientId = clientInfo.Id;
  9981. }
  9982. if (clientId < 1)
  9983. {
  9984. continue;
  9985. }
  9986. int airType = 0;
  9987. if (item.AirType == "超经舱") airType = 459;
  9988. else if (item.AirType == "公务舱") airType = 458;
  9989. else if (item.AirType == "经济舱") airType = 460;
  9990. else if (item.AirType == "其他") airType = 565;
  9991. else if (item.AirType == "头等舱") airType = 457;
  9992. var _TourClientListEntity = new Grp_TourClientList()
  9993. {
  9994. DiId = item.Diid,
  9995. ClientId = clientId,
  9996. CreateUserId = item.OPer,
  9997. CreateTime = Convert.ToDateTime(data11),
  9998. Remark = item.Remark,
  9999. IsDel = item.Isdel,
  10000. ShippingSpaceTypeId = airType,
  10001. ShippingSpaceSpecialNeeds = item.AirRemark,
  10002. HotelSpecialNeeds = item.RoomType
  10003. };
  10004. var _TourClientList = _sqlSugar.Insertable<Grp_TourClientList>(_TourClientListEntity).ExecuteCommand();
  10005. if (_TourClientList > 0)
  10006. {
  10007. updateCount++;
  10008. }
  10009. }
  10010. _sqlSugar.CommitTran();
  10011. }
  10012. return Ok(JsonView(true, $"更新条数:{updateCount}条"));
  10013. }
  10014. catch (Exception ex)
  10015. {
  10016. _sqlSugar.RollbackTran();
  10017. return Ok(JsonView(false, ex.Message));
  10018. }
  10019. return Ok(JsonView(true));
  10020. }
  10021. private bool IsValidDate(string dateString, string format)
  10022. {
  10023. DateTime dateValue;
  10024. bool valid = DateTime.TryParseExact(dateString, format, CultureInfo.InvariantCulture, DateTimeStyles.None, out dateValue);
  10025. return valid;
  10026. }
  10027. /// <summary>
  10028. /// 接团客户名单
  10029. /// 根据团组Id查询List
  10030. /// </summary>
  10031. /// <param name="dto"></param>
  10032. /// <returns></returns>
  10033. [HttpPost]
  10034. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10035. public async Task<IActionResult> PostTourClientListByDiId(TourClientListByDiIdDto _dto)
  10036. {
  10037. #region 参数验证
  10038. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId"));
  10039. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10040. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId!"));
  10041. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10042. #region 页面操作权限验证
  10043. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10044. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  10045. #endregion
  10046. #endregion
  10047. var viewData = await _tourClientListRep._ItemByDiId(_dto.PortType, _dto.DiId);
  10048. if (viewData.Code != 0)
  10049. {
  10050. return Ok(JsonView(false, viewData.Msg));
  10051. }
  10052. return Ok(JsonView(viewData.Data));
  10053. }
  10054. /// <summary>
  10055. /// 接团客户名单
  10056. /// 基础数据 Init
  10057. /// </summary>
  10058. /// <param name="_dto"></param>
  10059. /// <returns></returns>
  10060. [HttpPost]
  10061. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10062. public async Task<IActionResult> PostTourClientListBasicDataInit(TourClientListBasicDataInitDto _dto)
  10063. {
  10064. #region 参数验证
  10065. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10066. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10067. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10068. #region 页面操作权限验证
  10069. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10070. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  10071. #endregion
  10072. #endregion
  10073. var viewData = await _tourClientListRep._BasicDataInit(_dto.PortType);
  10074. if (viewData.Code != 0)
  10075. {
  10076. return Ok(JsonView(false, viewData.Msg));
  10077. }
  10078. return Ok(JsonView(viewData.Data));
  10079. }
  10080. /// <summary>
  10081. /// 接团客户名单
  10082. /// 根据 Id查询 Details
  10083. /// </summary>
  10084. /// <param name="_dto"></param>
  10085. /// <returns></returns>
  10086. [HttpPost]
  10087. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10088. public async Task<IActionResult> PostTourClientListDetails(TourClientListDetailsDto _dto)
  10089. {
  10090. #region 参数验证
  10091. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10092. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10093. if (_dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  10094. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10095. #region 页面操作权限验证
  10096. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10097. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  10098. #endregion
  10099. #endregion
  10100. var viewData = await _tourClientListRep._Details(_dto.PortType, _dto.Id);
  10101. if (viewData.Code != 0)
  10102. {
  10103. return Ok(JsonView(false, viewData.Msg));
  10104. }
  10105. return Ok(JsonView(viewData.Data));
  10106. }
  10107. /// <summary>
  10108. /// 接团客户名单
  10109. /// Add Or Edit
  10110. /// </summary>
  10111. /// <param name="_dto"></param>
  10112. /// <returns></returns>
  10113. [HttpPost]
  10114. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10115. public async Task<IActionResult> PostTourClientListAddOrEdit(TourClientListAddOrEditDto _dto)
  10116. {
  10117. #region 参数验证
  10118. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10119. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10120. if (_dto.Id < 0) return Ok(JsonView(false, "请传入有效的Id参数!"));
  10121. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10122. #region 页面操作权限验证
  10123. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10124. if (_dto.Id == 0) //添加
  10125. {
  10126. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  10127. }
  10128. else if (_dto.Id >= 0) //修改
  10129. {
  10130. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  10131. }
  10132. #endregion
  10133. #endregion
  10134. var viewData = await _tourClientListRep._AddOrEdit(_dto);
  10135. if (viewData.Code != 0)
  10136. {
  10137. return Ok(JsonView(false, viewData.Msg));
  10138. }
  10139. return Ok(JsonView(true));
  10140. }
  10141. /// <summary>
  10142. /// 接团客户名单
  10143. /// AddMultiple(添加多个)
  10144. /// </summary>
  10145. /// <param name="_dto"></param>
  10146. /// <returns></returns>
  10147. [HttpPost]
  10148. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10149. public async Task<IActionResult> PostTourClientListAddMultiple(TourClientListAddMultipleDto _dto)
  10150. {
  10151. #region 参数验证
  10152. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10153. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10154. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10155. #region 页面操作权限验证
  10156. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10157. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  10158. #endregion
  10159. #endregion
  10160. var viewData = await _tourClientListRep._AddMultiple(_dto);
  10161. if (viewData.Code != 0)
  10162. {
  10163. return Ok(JsonView(false, viewData.Msg));
  10164. }
  10165. return Ok(JsonView(true));
  10166. }
  10167. /// <summary>
  10168. /// 接团客户名单
  10169. /// Del
  10170. /// </summary>
  10171. /// <param name="_dto"></param>
  10172. /// <returns></returns>
  10173. [HttpPost]
  10174. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10175. public async Task<IActionResult> PostTourClientListDel(TourClientListDelDto _dto)
  10176. {
  10177. #region 参数验证
  10178. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10179. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10180. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10181. #region 页面操作权限验证
  10182. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10183. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  10184. #endregion
  10185. #endregion
  10186. var viewData = await _tourClientListRep._Del(_dto.Id, _dto.UserId);
  10187. if (viewData.Code != 0)
  10188. {
  10189. return Ok(JsonView(false, viewData.Msg));
  10190. }
  10191. return Ok(JsonView(true));
  10192. }
  10193. /// <summary>
  10194. /// 接团客户名单
  10195. /// 文件下载 客户名单
  10196. /// </summary>
  10197. /// <param name="_dto"></param>
  10198. /// <returns></returns>
  10199. [HttpPost]
  10200. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10201. public async Task<IActionResult> PostTourClientListDownloadFile(PostTourClientListDownloadFile _dto)
  10202. {
  10203. #region 参数验证
  10204. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  10205. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  10206. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数"));
  10207. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10208. #region 页面操作权限验证
  10209. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  10210. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  10211. #endregion
  10212. #endregion
  10213. string clientSql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  10214. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  10215. From Grp_TourClientList tcl
  10216. Left Join
  10217. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  10218. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  10219. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  10220. From Crm_DeleClient dc
  10221. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  10222. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  10223. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  10224. Where dc.IsDel = 0) temp
  10225. On temp.DcId =tcl.ClientId
  10226. Where tcl.IsDel = 0 And tcl.DiId = {0}", _dto.DiId);
  10227. List<TourClientListDetailsView> DcList = await _sqlSugar.SqlQueryable<TourClientListDetailsView>(clientSql).ToListAsync();
  10228. if (DcList.Count < 0) return Ok(JsonView(false, "该团未录入客户名单!"));
  10229. //载入模板
  10230. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/dwon_团组人员列表模板.doc";
  10231. if (_dto.Language == 1)
  10232. {
  10233. tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/EN_Down_团组人员列表模板.doc";
  10234. }
  10235. //载入模板
  10236. var doc = new Document(tempPath);
  10237. DocumentBuilder builder = new DocumentBuilder(doc);
  10238. //获取word里所有表格
  10239. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  10240. //获取所填表格的序数
  10241. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  10242. var rowStart = tableOne.Rows[0]; //获取第1行
  10243. if (_dto.Language == 0)
  10244. {
  10245. //循环赋值
  10246. for (int i = 0; i < DcList.Count; i++)
  10247. {
  10248. builder.MoveToCell(0, i + 1, 0, 0);
  10249. builder.Write(DcList[i].LastName + DcList[i].FirstName);
  10250. builder.MoveToCell(0, i + 1, 1, 0);
  10251. int sex = DcList[i].Sex;
  10252. string sexStr = string.Empty;
  10253. if (sex == 0) sexStr = "男";
  10254. else if (sex == 1) sexStr = "女";
  10255. else sexStr = "未设置";
  10256. builder.Write(sexStr);
  10257. builder.MoveToCell(0, i + 1, 2, 0);
  10258. string birthDay = DcList[i].BirthDay;
  10259. string birthDayStr = string.Empty;
  10260. if (!string.IsNullOrEmpty(birthDay))
  10261. {
  10262. birthDayStr = Convert.ToDateTime(birthDay).ToString("yyyy-MM-dd");
  10263. }
  10264. builder.Write(birthDayStr);
  10265. builder.MoveToCell(0, i + 1, 3, 0);
  10266. string company = "";
  10267. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  10268. {
  10269. company = DcList[i].CompanyFullName.ToString();
  10270. }
  10271. builder.Write(company);
  10272. builder.MoveToCell(0, i + 1, 4, 0);
  10273. builder.Write(DcList[i].Job);
  10274. }
  10275. }
  10276. else if (_dto.Language == 1)
  10277. {
  10278. List<Res_PositionEnglishComparison> listPEC = _setDataRep.Query<Res_PositionEnglishComparison>(s => s.IsDel == 0).ToList();
  10279. List<Res_CompanyEnglishComparison> listCEC = _setDataRep.Query<Res_CompanyEnglishComparison>(s => s.IsDel == 0).ToList();
  10280. List<string> transArrayStr = new List<string>();
  10281. string transStrRes1 = "";
  10282. for (int i = 0; i < DcList.Count; i++)
  10283. {
  10284. var dc = DcList[i];
  10285. if (dc.CompanyFullName.Equals("暂无")) dc.CompanyFullName = "-";
  10286. if (dc.Job.Equals("暂无")) dc.Job = "-";
  10287. string str1 = $"{i}&{dc.CompanyFullName}&{dc.Job}";
  10288. if (DcList.Count - 1 == i) transStrRes1 += str1;
  10289. else transStrRes1 += $"{str1}|";
  10290. }
  10291. //string transStrRes = "0 & Provincial Health & Health Commission Deputy Director | 1 & Provincial People's Hospital & Provincial People's Hospital Chief Accountant | 2 & Secretary of the Party Committee of the Affiliated Hospital of North Sichuan Medical College & North Sichuan Medical College | 3 & Provincial Health Commission Planning & Provincial Health Commission Planning and Information Division Director | 4 &-& Deputy Director | 5 & Provincial Health Commission population and Family Division & Provincial Health Commission population and Family Division Director";
  10292. string transStrRes = "";
  10293. if (transStrRes1.Length > 0 )
  10294. {
  10295. transStrRes = await _juHeApi.GetTextTranslateAsync(transStrRes1);
  10296. }
  10297. //0、 Deputy Director of the Provincial Health and Health Commission | 1、 Chief Accountant of the provincial People's Hospital | 2、 Secretary of the Party Committee of the Affiliated Hospital of North Sichuan Medical College | 3、 Director of the Planning and Information Department of the Provincial Health and Health Commission | 4、 Deputy Director | 5、 Director of the population and Family Department of the Provincial Health and Health Commission | 3、 Secretary of the Party Committee of the Affiliated Hospital of North Sichuan Medical College | 4、 Deputy Director of the Planning and Information Department of the Provincial Health and Health Commission | 4、 Deputy Director of the population and Family Department of the Provincial Health and Health Commission | 5、 Director of the population and Family Department of the Provincial Health and Health Commission
  10298. //await _juHeApi.GetTextTranslateAsync(DcList[i].CompanyFullName.ToString().Trim()) ?? "";
  10299. //List<string> transArray = new List<string> { };
  10300. List<TranslateInfo> transArray = new List<TranslateInfo>();
  10301. if (transStrRes.Contains("|"))
  10302. {
  10303. string[] transArray1 = transStrRes.Split('|');
  10304. if (transArray1.Length > 0)
  10305. {
  10306. foreach (var item in transArray1)
  10307. {
  10308. if (item.Contains("&"))
  10309. {
  10310. string[] transArray2 = item.Split('&');
  10311. int index = 0;
  10312. string companyName = "", job = "";
  10313. if (transArray2.Length > 0)
  10314. {
  10315. bool success = int.TryParse(transArray2[0].Trim(), out index);
  10316. if (1 < transArray2.Length) companyName = transArray2[1];
  10317. if (2 < transArray2.Length) job = transArray2[2];
  10318. }
  10319. transArray.Add(new TranslateInfo { Index = index, CompanyName = companyName, Job = job });
  10320. }
  10321. }
  10322. }
  10323. }
  10324. //循环赋值
  10325. for (int i = 0; i < DcList.Count; i++)
  10326. {
  10327. string PYName = "";
  10328. if (DcList[i].Pinyin.Length > 0 && DcList[i].Pinyin.IndexOf('/') > -1)
  10329. {
  10330. string PY_Last = DcList[i].Pinyin.Split('/')[0];
  10331. string PY_First = DcList[i].Pinyin.Split('/')[1];
  10332. PYName = PY_First + " " + PY_Last;
  10333. }
  10334. else
  10335. {
  10336. string PY_Last = DcList[i].LastName.GetTotalPingYin().Count > 0 ? DcList[i].LastName.GetTotalPingYin()[0].ToUpper() : "";
  10337. string PY_First = DcList[i].FirstName.GetTotalPingYin().Count > 0 ? DcList[i].FirstName.GetTotalPingYin()[0].ToUpper() : "";
  10338. PYName = PY_First + " " + PY_Last;
  10339. }
  10340. builder.MoveToCell(0, i + 1, 0, 0);
  10341. builder.Write(PYName);
  10342. string sex = DcList[i].Sex == 0 ? "Male" : DcList[i].Sex == 1 ? "Female" : "";
  10343. builder.MoveToCell(0, i + 1, 1, 0);
  10344. builder.Write(sex);
  10345. DateTime birthDt;
  10346. bool b_birth = DateTime.TryParse(DcList[i].BirthDay, out birthDt);
  10347. string birthday = b_birth ? birthDt.ToString("yyyy-MM-dd") : " ";
  10348. builder.MoveToCell(0, i + 1, 2, 0);
  10349. builder.Write(birthday);
  10350. string company = string.Empty,job = string.Empty;
  10351. var dcTransInfo = transArray.FirstOrDefault(s => s.Index == i);
  10352. if (dcTransInfo != null)
  10353. {
  10354. company = dcTransInfo.CompanyName;
  10355. job = dcTransInfo.Job;
  10356. }
  10357. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  10358. {
  10359. //查询对照表
  10360. Res_CompanyEnglishComparison tempCec = listCEC.FirstOrDefault(s => s.zhName.Contains(DcList[i].CompanyFullName.ToString().Trim()));
  10361. if (tempCec != null)
  10362. {
  10363. company = tempCec.enName;
  10364. }
  10365. //翻译
  10366. else
  10367. {
  10368. }
  10369. }
  10370. builder.MoveToCell(0, i + 1, 3, 0);
  10371. builder.Write(company);
  10372. if (!string.IsNullOrEmpty(DcList[i].Job.ToString()))
  10373. {
  10374. //查询对照表
  10375. Res_PositionEnglishComparison tempPec = listPEC.FirstOrDefault(s => s.zhName == DcList[i].Job.ToString().Trim());
  10376. if (tempPec != null)
  10377. {
  10378. job = tempPec.enName;
  10379. }
  10380. //翻译
  10381. else
  10382. {
  10383. }
  10384. }
  10385. builder.MoveToCell(0, i + 1, 4, 0);
  10386. builder.Write(job);
  10387. }
  10388. }
  10389. //删除多余行
  10390. while (tableOne.Rows.Count > DcList.Count + 1)
  10391. {
  10392. tableOne.Rows.RemoveAt(DcList.Count + 1);
  10393. }
  10394. string fileName = "组团人员名单(" + DateTime.Now.ToString("yyyyhhddHHmmss") + ").doc";
  10395. var fileDir = AppSettingsHelper.Get("WordBasePath") + "TourClientList/" + fileName;
  10396. doc.Save(fileDir);
  10397. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/TourClientList/" + fileName;
  10398. return Ok(JsonView(true, "操作成功!", Url));
  10399. }
  10400. private class TranslateInfo
  10401. {
  10402. public int Index { get; set; }
  10403. public string CompanyName { get; set; }
  10404. public string Job { get; set; }
  10405. }
  10406. #endregion
  10407. #region 团组倒推表
  10408. /// <summary>
  10409. /// 倒推表基础数据
  10410. /// Init
  10411. /// </summary>
  10412. /// <param name="dto"></param>
  10413. /// <returns></returns>
  10414. [HttpPost]
  10415. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10416. public async Task<IActionResult> PostInvertedListInit()
  10417. {
  10418. var viewData = await _invertedListRep._Init();
  10419. if (viewData.Code != 0)
  10420. {
  10421. return Ok(JsonView(false, viewData.Msg));
  10422. }
  10423. return Ok(JsonView(viewData.Data));
  10424. }
  10425. /// <summary>
  10426. /// 倒推表
  10427. /// Info
  10428. /// </summary>
  10429. /// <param name="dto"></param>
  10430. /// <returns></returns>
  10431. [HttpPost]
  10432. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10433. public async Task<IActionResult> PostInvertedListInfo(InvertedListCreateDto dto)
  10434. {
  10435. var viewData = await _invertedListRep._Info(dto.PortType, dto.DiId);
  10436. if (viewData.Code != 0)
  10437. {
  10438. return Ok(JsonView(false, viewData.Msg));
  10439. }
  10440. return Ok(JsonView(viewData.Data));
  10441. }
  10442. /// <summary>
  10443. /// 倒推表
  10444. /// Create
  10445. /// </summary>
  10446. /// <param name="dto"></param>
  10447. /// <returns></returns>
  10448. [HttpPost]
  10449. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10450. public async Task<IActionResult> PostInvertedListCreate(InvertedListCreateDto dto)
  10451. {
  10452. var viewData = await _invertedListRep._Create(dto.PortType, dto.DiId);
  10453. if (viewData.Code != 0)
  10454. {
  10455. return Ok(JsonView(false, viewData.Msg));
  10456. }
  10457. return Ok(JsonView(viewData.Data));
  10458. }
  10459. /// <summary>
  10460. /// 倒推表
  10461. /// Update
  10462. /// </summary>
  10463. /// <param name="dto"></param>
  10464. /// <returns></returns>
  10465. [HttpPost]
  10466. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10467. public async Task<IActionResult> PostInvertedListUpdate(InvertedListUpdateDto dto)
  10468. {
  10469. var viewData = await _invertedListRep._Update(dto);
  10470. if (viewData.Code != 0)
  10471. {
  10472. return Ok(JsonView(false, viewData.Msg));
  10473. }
  10474. return Ok(JsonView(viewData.Data));
  10475. }
  10476. /// <summary>
  10477. /// 倒推表
  10478. /// File Download
  10479. /// </summary>
  10480. /// <param name="dto"></param>
  10481. /// <returns></returns>
  10482. [HttpPost]
  10483. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10484. public async Task<IActionResult> PostInvertedListFileDownload(InvertedListFileDownloadDto dto)
  10485. {
  10486. var info2 = await _invertedListRep._Info(1, dto.DiId);
  10487. if (info2.Code != 0)
  10488. {
  10489. return Ok(JsonView(false, "倒推表数据未生成,请先生成倒退表数据!"));
  10490. }
  10491. var info1 = info2.Data as InvertedListInfoView;
  10492. var info = await _invertedListRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == dto.DiId).FirstAsync();
  10493. string teamName = "";
  10494. if (info != null) teamName = info.TeamName;
  10495. //载入模板
  10496. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/倒退表模板20200617.doc");
  10497. DocumentBuilder builder = new DocumentBuilder(doc);
  10498. //利用键值对存放数据
  10499. Dictionary<string, string> dic = new Dictionary<string, string>();
  10500. dic.Add("TeamName", teamName);
  10501. dic.Add("StartTime", info1.AirportdDropOffDt.ConvertToDatetime()); //开始时间
  10502. dic.Add("BPtime", info1.ApprovalDataDt.ConvertToDatetime());
  10503. dic.Add("BPRemark", info1.ApprovalDataRemark);
  10504. dic.Add("SQtime", info1.ApprovalDt.ConvertToDatetime());
  10505. dic.Add("SQRemark", info1.ApprovalRemark);
  10506. dic.Add("CPJtime", info1.IssueApprovalDt.ConvertToDatetime());
  10507. dic.Add("CPJRemark", info1.IssueApprovalRemark);
  10508. //dic.Add("HZtime", info1.ApplyPassportDt.ConvertToDatetime());
  10509. //dic.Add("HZRemark", info1.ApplyPassportRemark);
  10510. dic.Add("QZtime", info1.VisaInformationDt.ConvertToDatetime());
  10511. dic.Add("QZRemark", info1.VisaInformationRemark);
  10512. dic.Add("SQQZtime", info1.SendVisaDt.ConvertToDatetime());
  10513. dic.Add("SQQZRemark", info1.SendVisaRemark);
  10514. dic.Add("CQtime", info1.IssueVisaDt.ConvertToDatetime());
  10515. dic.Add("CQRemark", info1.IssueVisaRemark);
  10516. dic.Add("XQHtime", info1.PreTripMeetingDt.ConvertToDatetime());
  10517. dic.Add("XQHRemark", info1.PreTripMeetingRemark);
  10518. dic.Add("SJtime", info1.AirportdDropOffDt.ConvertToDatetime());
  10519. dic.Add("SJRemark", info1.AirportdDropOffRemark);
  10520. #region 填充word模板书签内容
  10521. foreach (var key in dic.Keys)
  10522. {
  10523. builder.MoveToBookmark(key);
  10524. builder.Write(dic[key]);
  10525. }
  10526. #endregion
  10527. var fileDir = AppSettingsHelper.Get("WordBasePath");
  10528. string fileName = $"{teamName}团出行准备流程表.doc";
  10529. string filePath = fileDir + $@"InvertedList/{fileName}";
  10530. doc.Save(filePath);
  10531. string Url = $@"{AppSettingsHelper.Get("WordBaseUrl")}Office/Word/InvertedList/{fileName}";
  10532. return Ok(JsonView(true, "操作成功!", Url));
  10533. }
  10534. #endregion
  10535. #region 三公签证费用(签证费、代办费)
  10536. /// <summary>
  10537. /// 三公签证费用(签证费、代办费)
  10538. /// List
  10539. /// </summary>
  10540. /// <returns></returns>
  10541. [HttpPost]
  10542. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10543. public async Task<IActionResult> PostVisaFeeList(VisaFeeListDto _dto)
  10544. {
  10545. var _view = await _visaFeeInfoRep._List(_dto.PortType, _dto.DiId);
  10546. if (_view.Code != 0)
  10547. {
  10548. return Ok(JsonView(false, _view.Msg));
  10549. }
  10550. return Ok(JsonView(true, "操作成功!", _view.Data));
  10551. }
  10552. /// <summary>
  10553. /// 三公签证费用(签证费、代办费)
  10554. /// Add Or Update
  10555. /// </summary>
  10556. /// <returns></returns>
  10557. [HttpPost]
  10558. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10559. public async Task<IActionResult> PostVisaFeeAddAndUpdate(VisaFeeAddAndUpdateDto _dto)
  10560. {
  10561. var _view = await _visaFeeInfoRep._Update(_dto);
  10562. if (_view.Code != 0)
  10563. {
  10564. return Ok(JsonView(false, _view.Msg));
  10565. }
  10566. return Ok(JsonView(true, _view.Msg));
  10567. }
  10568. #endregion
  10569. #region 酒店询价
  10570. /// <summary>
  10571. /// 酒店询价
  10572. /// Init
  10573. /// </summary>
  10574. /// <param name="dto"></param>
  10575. /// <returns></returns>
  10576. [HttpPost]
  10577. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10578. public async Task<IActionResult> PostHotelInquiryInit()
  10579. {
  10580. var res = await _hotelInquiryRep._Init();
  10581. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10582. return Ok(JsonView(true, res.Msg, res.Data));
  10583. }
  10584. /// <summary>
  10585. /// 酒店询价
  10586. /// page Item
  10587. /// </summary>
  10588. /// <param name="_dto"></param>
  10589. /// <returns></returns>
  10590. [HttpPost]
  10591. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10592. public async Task<IActionResult> PostHotelInquiryPageItem(HotelInquiryPageItemDto _dto)
  10593. {
  10594. var res = await _hotelInquiryRep._PageItem(_dto.PageIndex, _dto.PageSize, _dto.PortType, _dto.DiId);
  10595. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10596. var view = res.Data as PageDataViewBase;
  10597. return Ok(JsonView(true, res.Msg, view.Data, view.Total));
  10598. }
  10599. /// <summary>
  10600. /// 酒店询价
  10601. /// info
  10602. /// </summary>
  10603. /// <param name="_dto"></param>
  10604. /// <returns></returns>
  10605. [HttpPost]
  10606. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10607. public async Task<IActionResult> PostHotelInquiryInfo(HotelInquiryInfoDto _dto)
  10608. {
  10609. var res = await _hotelInquiryRep._Info(_dto.PortType, _dto.Id);
  10610. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10611. return Ok(JsonView(true, res.Msg, res.Data));
  10612. }
  10613. /// <summary>
  10614. /// 酒店询价
  10615. /// Add Or Edit
  10616. /// </summary>
  10617. /// <param name="_dto"></param>
  10618. /// <returns></returns>
  10619. [HttpPost]
  10620. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10621. public async Task<IActionResult> PostHotelInquiryAddOrEdit(HotelInquiryAddOrEditDto _dto)
  10622. {
  10623. var res = await _hotelInquiryRep._AddOrEdit(_dto);
  10624. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10625. return Ok(JsonView(true, res.Msg, res.Data));
  10626. }
  10627. /// <summary>
  10628. /// 酒店询价
  10629. /// Del
  10630. /// </summary>
  10631. /// <param name="_dto"></param>
  10632. /// <returns></returns>
  10633. [HttpPost]
  10634. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10635. public async Task<IActionResult> PostHotelInquiryDel(HotelInquiryDelDto _dto)
  10636. {
  10637. var res = await _hotelInquiryRep._Del(_dto.Id, _dto.DeleteUserId);
  10638. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10639. return Ok(JsonView(true, res.Msg, res.Data));
  10640. }
  10641. #endregion
  10642. #region 下载匹配op行程单
  10643. /// <summary>
  10644. /// 匹配op行程单
  10645. /// Init
  10646. /// </summary>
  10647. /// <param name="dto">团组列表请求dto</param>
  10648. /// <returns></returns>
  10649. [HttpPost]
  10650. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10651. public async Task<IActionResult> PostMateOpGroupInit(MateOpGroupInitDto dto)
  10652. {
  10653. Stopwatch stopwatch = Stopwatch.StartNew(); // 创建并启动Stopwatch
  10654. if (dto.CurrUserId < 1) return Ok(JsonView(false, MsgTips.UserId));
  10655. bool isDepStatus = await GeneralMethod.IsMarketingStaff(dto.CurrUserId);
  10656. List<Grp_DelegationInfo> groupInfos = new List<Grp_DelegationInfo>();
  10657. groupInfos = _sqlSugar.Queryable<Grp_DelegationInfo>()
  10658. .Where(it => it.IsDel == 0)
  10659. .WhereIF(isDepStatus, it => it.JietuanOperator == dto.CurrUserId)
  10660. .OrderByDescending(it => it.CreateUserId)
  10661. .ToList();
  10662. if (groupInfos.Count < 1) return Ok(JsonView(false, "暂无和你相关的团组信息!"));
  10663. var country = groupInfos.Select(it => it.VisitCountry).ToList();
  10664. var diids = groupInfos.Select(it => it.Id).ToList();
  10665. List<string> countrys = new List<string>();
  10666. foreach (var item in country)
  10667. {
  10668. var data = _groupRepository.FormartTeamName(item);
  10669. var dataArray = _groupRepository.GroupSplitCountry(data);
  10670. if (dataArray.Count > 0) countrys.AddRange(dataArray);
  10671. }
  10672. countrys = countrys.Where(it => !string.IsNullOrEmpty(it)).Distinct().ToList();
  10673. List<string> areaArray = new List<string>(); //GetGroupCityLine
  10674. var areaItem = GeneralMethod.GetGroupCityLineItem(diids, "-");
  10675. foreach (var item in areaItem)
  10676. {
  10677. string areaStr = item.Value;
  10678. if (!string.IsNullOrEmpty(areaStr))
  10679. {
  10680. string[] str1 = areaStr.Split("-");
  10681. if (str1.Length > 0)
  10682. {
  10683. areaArray.AddRange(str1);
  10684. }
  10685. }
  10686. }
  10687. if (areaArray.Count > 0) areaArray = areaArray.Distinct().ToList();
  10688. var cityDatas = _sqlSugar.Queryable<Sys_Cities>()
  10689. .Where(it => it.IsDel == 0 && areaArray.Contains(it.Name_CN))
  10690. .Select(it => new { id = it.Id, parentId = it.CountriesId, name = it.Name_CN })
  10691. .ToList();
  10692. List<int> countriesIds = cityDatas.Select(it => it.parentId).ToList();
  10693. var countriesDatas = _sqlSugar.Queryable<Sys_Countries>()
  10694. .Where(it => countriesIds.Contains(it.Id))
  10695. .Select(it => new { it.Id, Name = it.Name_CN })
  10696. .ToList();
  10697. var teamNames = groupInfos.Where(it => !string.IsNullOrEmpty(it.TeamName))
  10698. .Select(it => it.TeamName).ToList();
  10699. stopwatch.Stop();
  10700. return Ok(JsonView(true, $"操作成功,耗时{stopwatch.ElapsedMilliseconds} ms", new { teamNames, countriesDatas, citiesDatas = cityDatas }));
  10701. }
  10702. ///// <summary>
  10703. ///// 匹配op行程单
  10704. ///// Init 查询区域数据
  10705. ///// </summary>
  10706. ///// <param name="dto">团组列表请求dto</param>
  10707. ///// <returns></returns>
  10708. //[HttpPost]
  10709. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10710. //public async Task<IActionResult> PostMateOpGroupCountryChangeData(MateOpGroupCountryChangeDataDto dto)
  10711. //{
  10712. // Stopwatch stopwatch = Stopwatch.StartNew(); // 创建并启动Stopwatch
  10713. // List<Sys_Cities> cityDatas = new List<Sys_Cities>();
  10714. // string countriesDataStr = await RedisRepository.RedisFactory.CreateRedisRepository().StringGetAsync<string>("CityDatas");//string 取
  10715. // if (string.IsNullOrEmpty(countriesDataStr))
  10716. // {
  10717. // cityDatas = await _sqlSugar.Queryable<Sys_Cities>().Where(it => it.IsDel == 0).ToListAsync();
  10718. // TimeSpan ts = DateTime.Now.AddHours(2).TimeOfDay; //设置redis 过期时间 2
  10719. // await RedisRepository.RedisFactory.CreateRedisRepository().StringSetAsync<string>("CountriesDatas", JsonConvert.SerializeObject(cityDatas), ts);//string 存
  10720. // }
  10721. // else
  10722. // {
  10723. // cityDatas = JsonConvert.DeserializeObject<List<Sys_Cities>>(countriesDataStr);
  10724. // }
  10725. // var provinceData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 1).ToList();
  10726. // var citiesData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 2).ToList();
  10727. // var countiesData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 3).ToList();
  10728. // List<dynamic> childList = new List<dynamic>();
  10729. // int parentId = dto.CountriesId;
  10730. // if (provinceData.Count > 1)
  10731. // {
  10732. // foreach (var item1 in provinceData)
  10733. // {
  10734. // List<dynamic> childList1 = new List<dynamic>();
  10735. // var citiesData1 = citiesData.Where(it => it.ParentId == item1.Id).ToList();
  10736. // foreach (var item2 in citiesData1)
  10737. // {
  10738. // List<dynamic> childList2 = new List<dynamic>();
  10739. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10740. // foreach (var item3 in countiesData1)
  10741. // {
  10742. // childList2.Add(new
  10743. // {
  10744. // id = item3.Id,
  10745. // parentId = item2.Id,
  10746. // level = "district",
  10747. // name = item3.Name_CN,
  10748. // });
  10749. // }
  10750. // childList1.Add(new
  10751. // {
  10752. // id = item2.Id,
  10753. // parentId = item1.Id,
  10754. // level = "city",
  10755. // name = item2.Name_CN,
  10756. // childList = childList2
  10757. // });
  10758. // }
  10759. // childList.Add(new
  10760. // {
  10761. // id = item1.Id,
  10762. // parentId = parentId,
  10763. // level = "province",
  10764. // name = item1.Name_CN,
  10765. // childList = childList1
  10766. // });
  10767. // }
  10768. // //城市
  10769. // var citiesData2 = citiesData.Where(it => it.ParentId == 0).ToList();
  10770. // foreach (var item2 in citiesData2)
  10771. // {
  10772. // List<dynamic> childList22 = new List<dynamic>();
  10773. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10774. // foreach (var item3 in countiesData1)
  10775. // {
  10776. // childList22.Add(new
  10777. // {
  10778. // id = item3.Id,
  10779. // parentId = item2.Id,
  10780. // level = "district",
  10781. // name = item3.Name_CN,
  10782. // });
  10783. // }
  10784. // childList.Add(new
  10785. // {
  10786. // id = item2.Id,
  10787. // parentId = parentId,
  10788. // level = "city",
  10789. // name = item2.Name_CN,
  10790. // childList = childList22
  10791. // });
  10792. // }
  10793. // }
  10794. // else
  10795. // {
  10796. // foreach (var item2 in citiesData)
  10797. // {
  10798. // string cname = item2.Name_CN;
  10799. // List<dynamic> childList1 = new List<dynamic>();
  10800. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10801. // foreach (var item3 in countiesData1)
  10802. // {
  10803. // childList1.Add(new
  10804. // {
  10805. // Id = item3.Id,
  10806. // parentId = item2.Id,
  10807. // level = "district",
  10808. // name = item3.Name_CN
  10809. // });
  10810. // }
  10811. // childList.Add(new
  10812. // {
  10813. // id = item2.Id,
  10814. // parentId = parentId,
  10815. // level = "city",
  10816. // name = item2.Name_CN,
  10817. // childList = childList1
  10818. // });
  10819. // }
  10820. // }
  10821. // stopwatch.Stop();
  10822. // return Ok(JsonView(true, $"操作成功,耗时{stopwatch.ElapsedMilliseconds} ms", childList));
  10823. //}
  10824. /// <summary>
  10825. /// 匹配op行程单
  10826. /// 接团信息列表 Page
  10827. /// </summary>
  10828. /// <param name="dto">团组列表请求dto</param>
  10829. /// <returns></returns>
  10830. [HttpPost]
  10831. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10832. public async Task<IActionResult> PostMateOpGroupPageList(MateOpGroupPageListDto dto)
  10833. {
  10834. var swatch = new Stopwatch();
  10835. swatch.Start();
  10836. #region 参数验证
  10837. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  10838. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  10839. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10840. #region 页面操作权限验证
  10841. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  10842. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  10843. #endregion
  10844. #endregion
  10845. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) // web/Android
  10846. {
  10847. var _view = await GeneralMethod.MateOpGroupPageListRedis();
  10848. string sqlWhere = "";
  10849. if (!string.IsNullOrEmpty(dto.Country))
  10850. {
  10851. _view = _view.Where(x => !string.IsNullOrEmpty(x.VisitCountry) && x.VisitCountry.Contains(dto.Country)).ToList();
  10852. }
  10853. if (!string.IsNullOrEmpty(dto.Area))
  10854. {
  10855. _view = _view.Where(x => !string.IsNullOrEmpty(x.RouteCity) && x.RouteCity.Contains(dto.Area)).ToList();
  10856. }
  10857. if (!string.IsNullOrEmpty(dto.TeamName))
  10858. {
  10859. _view = _view.Where(x => !string.IsNullOrEmpty(x.TeamName) && x.TeamName.Contains(dto.TeamName)).ToList();
  10860. }
  10861. int startIndex = (dto.PageIndex - 1) * dto.PageSize; // 计算开始的索引
  10862. int endIndex = startIndex + dto.PageSize - 1; // 计算结束的索引
  10863. var _view1 = _view.Skip(startIndex).Take(endIndex).ToList();
  10864. swatch.Stop();
  10865. return Ok(JsonView(true, $"查询成功!耗时 {swatch.ElapsedMilliseconds} ms", _view1, _view.Count));
  10866. }
  10867. else
  10868. {
  10869. return Ok(JsonView(false, "查询失败"));
  10870. }
  10871. }
  10872. /// <summary>
  10873. /// 匹配op行程单
  10874. /// 行程单下载
  10875. /// </summary>
  10876. /// <param name="dto">团组列表请求dto</param>
  10877. /// <returns></returns>
  10878. [HttpPost]
  10879. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10880. public async Task<IActionResult> PostMateOpGroupDownload(MateOpGroupDownloadDto dto)
  10881. {
  10882. #region 参数验证
  10883. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  10884. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  10885. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10886. #region 页面操作权限验证
  10887. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  10888. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限"));
  10889. #endregion
  10890. #endregion
  10891. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) // web/Android
  10892. {
  10893. var res = ExportTravel(new ExportTravelDto() { Diid = dto.diId });
  10894. return Ok(res.GetType().GetProperty("Value").GetValue(res, null));
  10895. }
  10896. else
  10897. {
  10898. return Ok(JsonView(false, "下载失败!"));
  10899. }
  10900. }
  10901. #endregion
  10902. #region 国家信息 数据 注释
  10903. //[HttpPost]
  10904. //public async Task<IActionResult> LoadCitiesInitData(List<int> dto)
  10905. //{
  10906. // List<Grp_GroupsTaskAssignment> infos = new List<Grp_GroupsTaskAssignment>();
  10907. // foreach (var item in dto)
  10908. // {
  10909. // infos.Add(new Grp_GroupsTaskAssignment()
  10910. // {
  10911. // DIId = item,
  10912. // CTId = 82,
  10913. // UId = 248,
  10914. // IsEnable = 1,
  10915. // CreateUserId = 233,
  10916. // CreateTime = DateTime.Now,
  10917. // IsDel = 0
  10918. // });
  10919. // infos.Add(new Grp_GroupsTaskAssignment()
  10920. // {
  10921. // DIId = item,
  10922. // CTId = 82,
  10923. // UId = 286,
  10924. // IsEnable = 1,
  10925. // CreateUserId = 233,
  10926. // CreateTime = DateTime.Now,
  10927. // IsDel = 0
  10928. // });
  10929. // }
  10930. // int add = _sqlSugar.Insertable<Grp_GroupsTaskAssignment>(infos).ExecuteCommand();
  10931. // return Ok("操作成功");
  10932. //}
  10933. //public class paramJsonDto
  10934. //{
  10935. // public List<CountriesInfo> str { get; set; }
  10936. //}
  10937. //[HttpPost]
  10938. //public async Task<IActionResult> LoadCitiesInitData(paramJsonDto dto)
  10939. //{
  10940. // //List<CountriesInfo> infos = new List<CountriesInfo>();
  10941. // //infos = JsonConvert.DeserializeObject<List<CountriesInfo>>(dto.str);
  10942. // List<Sys_Cities> cities = new List<Sys_Cities>();
  10943. // List<Sys_Cities> districts = new List<Sys_Cities>();
  10944. // var counties = _sqlSugar.Queryable<Sys_Countries>().Where(it => it.IsDel == 0).ToList();
  10945. // _sqlSugar.BeginTran();
  10946. // int countitiesIndex = 0;
  10947. // foreach (var item in dto.str)
  10948. // {
  10949. // dynamic data = item.c;
  10950. // int countriesId = counties.Find(it => it.Name_CN.Equals(item.cn))?.Id ?? 0;
  10951. // if (data != null)
  10952. // {
  10953. // countitiesIndex++;
  10954. // foreach (var item1 in data)
  10955. // {
  10956. // string cnname = item1.cn;
  10957. // string enname = item1.en;
  10958. // Sys_Cities provinceInfo = new Sys_Cities()
  10959. // {
  10960. // CountriesId = countriesId,
  10961. // Name_CN = cnname,
  10962. // Name_EN = enname,
  10963. // ParentId = 0,
  10964. // IsCapital = 1,
  10965. // CreateUserId = 208,
  10966. // CreateTime = DateTime.Now,
  10967. // IsDel = 0
  10968. // };
  10969. // if (item1.lv == "province") //省份
  10970. // {
  10971. // provinceInfo.Level = 1;
  10972. // int provinceId = 0;
  10973. // var provinceInfo1 = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 1 && it.Name_CN.Equals(cnname)).First();
  10974. // if (provinceInfo1 != null) provinceId = provinceInfo1.Id;
  10975. // else provinceId = _sqlSugar.Insertable<Sys_Cities>(provinceInfo).ExecuteReturnIdentity();
  10976. // var data1 = item1.c;
  10977. // foreach (var item2 in data1)
  10978. // {
  10979. // if (item2.lv == "city")
  10980. // {
  10981. // string citycnname = item2.cn;
  10982. // string cityenname = item2.en;
  10983. // Sys_Cities cityInfo = new Sys_Cities()
  10984. // {
  10985. // CountriesId = countriesId,
  10986. // ParentId = provinceId,
  10987. // Level = 2,
  10988. // Name_CN = citycnname,
  10989. // Name_EN = cityenname,
  10990. // IsCapital = 1,
  10991. // CreateUserId = 208,
  10992. // CreateTime = DateTime.Now,
  10993. // IsDel = 0
  10994. // };
  10995. // if (item2.c != null)
  10996. // {
  10997. // int cityId = 0;
  10998. // var citiesInfo = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 2 && it.Name_CN.Equals(citycnname)).First();
  10999. // if (citiesInfo != null) cityId = citiesInfo.Id;
  11000. // else cityId = _sqlSugar.Insertable<Sys_Cities>(cityInfo).ExecuteReturnIdentity();
  11001. // foreach (var item3 in item2.c)
  11002. // {
  11003. // if (item3.lv == "district")
  11004. // {
  11005. // var districtInfo = new Sys_Cities()
  11006. // {
  11007. // CountriesId = countriesId,
  11008. // Name_CN = item3.cn,
  11009. // Name_EN = item3.en,
  11010. // Level = 3,
  11011. // ParentId = cityId,
  11012. // IsCapital = 1,
  11013. // CreateUserId = 208,
  11014. // CreateTime = DateTime.Now,
  11015. // IsDel = 0
  11016. // };
  11017. // //if (districts.Find(it => it.CountriesId == countriesId && it.ParentId == cityId && it.Name_CN.Equals(districtInfo.Name_CN)) == null)
  11018. // //{
  11019. // districts.Add(districtInfo);
  11020. // //}
  11021. // }
  11022. // }
  11023. // }
  11024. // else
  11025. // {
  11026. // //if (cities.Find(it => it.CountriesId == countriesId && it.ParentId == provinceId && it.Name_CN.Equals(citycnname)) == null)
  11027. // //{
  11028. // cities.Add(cityInfo);
  11029. // //}
  11030. // }
  11031. // }
  11032. // }
  11033. // }
  11034. // else if (item1.lv == "city")//城市
  11035. // {
  11036. // provinceInfo.Level = 2;
  11037. // if (item1.c != null)
  11038. // {
  11039. // int cityId = 0;
  11040. // var citiesInfo = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 1 && it.Name_CN.Equals(provinceInfo.Name_CN)).First();
  11041. // if (citiesInfo != null) cityId = citiesInfo.Id;
  11042. // else cityId = _sqlSugar.Insertable<Sys_Cities>(provinceInfo).ExecuteReturnIdentity();
  11043. // foreach (var item3 in item1.c)
  11044. // {
  11045. // if (item3.lv == "district")
  11046. // {
  11047. // var districtInfo = new Sys_Cities()
  11048. // {
  11049. // CountriesId = countriesId,
  11050. // Name_CN = item3.cn,
  11051. // Name_EN = item3.en,
  11052. // Level = 3,
  11053. // ParentId = cityId,
  11054. // IsCapital = 1,
  11055. // CreateUserId = 208,
  11056. // CreateTime = DateTime.Now,
  11057. // IsDel = 0
  11058. // };
  11059. // //if (districts.Find(it => it.CountriesId == countriesId && it.ParentId == cityId && it.Name_CN.Equals(districtInfo.Name_CN)) == null)
  11060. // //{
  11061. // districts.Add(districtInfo);
  11062. // //}
  11063. // }
  11064. // }
  11065. // }
  11066. // else
  11067. // {
  11068. // //if (cities.Find(it => it.CountriesId == countriesId && it.Name_CN.Equals(provinceInfo.Name_CN)) == null)
  11069. // //{
  11070. // cities.Add(provinceInfo);
  11071. // //}
  11072. // }
  11073. // }
  11074. // }
  11075. // }
  11076. // }
  11077. // var procinceDatas = _sqlSugar.Queryable<Sys_Cities>().ToList();
  11078. // cities = cities.Distinct().ToList();
  11079. // districts = districts.Distinct().ToList();
  11080. // var citiesDatas = cities.Where(it => it.Level == 2).ToList();
  11081. // //var districtDatas = cities.Where(it => it.Level == 3).ToList();
  11082. // cities.AddRange(districts);
  11083. // var citiesAdd = _sqlSugar.Insertable<Sys_Cities>(cities).ExecuteReturnIdentity();
  11084. // //_sqlSugar.RollbackTran();
  11085. // _sqlSugar.CommitTran();
  11086. // return Ok(JsonView(false, "操作成功!"));
  11087. //}
  11088. //[HttpPost]
  11089. //public async Task<IActionResult> LoadCitiesInitInfo(CounrtiesDto dto)
  11090. //{
  11091. // List<CountitiesInfo> infos = dto.MyProperty;
  11092. // List<Sys_Cities> cityInfos = new List<Sys_Cities>();
  11093. // _sqlSugar.BeginTran();
  11094. // var countities = _sqlSugar.Queryable<Sys_Countries>().Where(it => it.IsDel == 0).ToList();
  11095. // var citities = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.IsDel == 0 && it.Level == 2).ToList();
  11096. // foreach (var item in infos)
  11097. // {
  11098. // var countryInfo = countities.Where(it => it.ThreeCode.Equals(item.country_code3)).FirstOrDefault();
  11099. // if (countryInfo != null)
  11100. // {
  11101. // var cityInfo = citities.Where(it => it.CountriesId == countryInfo.Id).ToList();
  11102. // var cityInfo1 = cityInfo.Where(it => item.capital_name_chinese.Contains(it.Name_CN)).FirstOrDefault();
  11103. // if (cityInfo1 != null)
  11104. // {
  11105. // cityInfo1.IsCapital = 0;
  11106. // cityInfos.Add(cityInfo1);
  11107. // }
  11108. // }
  11109. // }
  11110. // var update = _sqlSugar.Updateable<Sys_Cities>(cityInfos)
  11111. // .UpdateColumns(it => it.IsCapital)
  11112. // .WhereColumns(it => it.Id)
  11113. // .ExecuteCommand();
  11114. // //_sqlSugar.RollbackTran();
  11115. // _sqlSugar.CommitTran();
  11116. // return Ok(JsonView(false, "操作成功!"));
  11117. //}
  11118. //public class CounrtiesDto
  11119. //{
  11120. // public List<CountitiesInfo> MyProperty { get; set; }
  11121. //}
  11122. //public class CountitiesInfo
  11123. //{
  11124. // /// <summary>
  11125. // /// 圣约翰
  11126. // /// </summary>
  11127. // public string capital_name_chinese { get; set; }
  11128. // /// <summary>
  11129. // ///
  11130. // /// </summary>
  11131. // public string capital_name { get; set; }
  11132. // /// <summary>
  11133. // ///
  11134. // /// </summary>
  11135. // public string country_type { get; set; }
  11136. // /// <summary>
  11137. // /// 安提瓜和巴布达
  11138. // /// </summary>
  11139. // public string country_name_chinese { get; set; }
  11140. // /// <summary>
  11141. // /// 安提瓜和巴布达
  11142. // /// </summary>
  11143. // public string country_name_chinese_short { get; set; }
  11144. // /// <summary>
  11145. // /// 安提瓜和巴布达
  11146. // /// </summary>
  11147. // public string country_name_chinese_UN { get; set; }
  11148. // /// <summary>
  11149. // ///
  11150. // /// </summary>
  11151. // public string country_name_english_abbreviation { get; set; }
  11152. // /// <summary>
  11153. // ///
  11154. // /// </summary>
  11155. // public string country_name_english_formal { get; set; }
  11156. // /// <summary>
  11157. // ///
  11158. // /// </summary>
  11159. // public string country_name_english_UN { get; set; }
  11160. // /// <summary>
  11161. // ///
  11162. // /// </summary>
  11163. // public string continent_name { get; set; }
  11164. // /// <summary>
  11165. // ///
  11166. // /// </summary>
  11167. // public string subregion_name { get; set; }
  11168. // /// <summary>
  11169. // ///
  11170. // /// </summary>
  11171. // public string country_code2 { get; set; }
  11172. // /// <summary>
  11173. // ///
  11174. // /// </summary>
  11175. // public string country_code3 { get; set; }
  11176. // /// <summary>
  11177. // ///
  11178. // /// </summary>
  11179. // public string phone_code { get; set; }
  11180. //}
  11181. //public class CountriesInfo : BasicInfo
  11182. //{
  11183. // public List<CitiesInfo> c { get; set; }
  11184. //}
  11185. //public class CitiesInfo : BasicInfo
  11186. //{
  11187. // public List<AreaInfo> c { get; set; }
  11188. //}
  11189. //public class AreaInfo : BasicInfo
  11190. //{
  11191. // public List<AreaInfo> c { get; set; }
  11192. //}
  11193. //public class BasicInfo
  11194. //{
  11195. // public string code { get; set; }
  11196. // public string cn { get; set; }
  11197. // public string lv { get; set; }
  11198. // public string en { get; set; }
  11199. //}
  11200. #endregion
  11201. #region 查看邀请方
  11202. /// <summary>
  11203. /// 查看邀请方
  11204. /// 邀请方信息 Init
  11205. /// </summary>
  11206. /// <param name="dto"></param>
  11207. /// <returns></returns>
  11208. [HttpPost]
  11209. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11210. public async Task<IActionResult> PostGroupLinkInvitingUnitNameInit(GroupLinkInvitingUnitNameInitDto dto)
  11211. {
  11212. string sqlWhere = string.Empty;
  11213. if (!string.IsNullOrEmpty(dto.Search))
  11214. {
  11215. sqlWhere = string.Format($@" And UnitName Like '%{dto.Search}%'");
  11216. }
  11217. string sql = string.Format($@"Select
  11218. ROW_NUMBER() Over(Order By Id desc) As Row_Number,
  11219. Id,
  11220. UnitName
  11221. From Res_InvitationOfficialActivityData
  11222. Where IsDel = 0
  11223. And (UnitName != '' Or UnitName != null) {sqlWhere}");
  11224. RefAsync<int> total = 0;
  11225. var _views = await _sqlSugar.SqlQueryable<GroupLinkInvitingUnitNameInitView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11226. return Ok(JsonView(true, MsgTips.Succeed, _views, total));
  11227. }
  11228. /// <summary>
  11229. /// 查看邀请方
  11230. /// 国家信息 Init
  11231. /// </summary>
  11232. /// <param name="dto"></param>
  11233. /// <returns></returns>
  11234. [HttpPost]
  11235. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11236. public async Task<IActionResult> PostGroupLinkInvitingCountryInit(GroupLinkInvitingUnitNameInitDto dto)
  11237. {
  11238. var groupInfos = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).OrderByDescending(it => it.CreateUserId).ToListAsync();
  11239. var country = groupInfos.Select(it => it.VisitCountry).ToList();
  11240. var diids = groupInfos.Select(it => it.Id).ToList();
  11241. List<string> countrys = new List<string>();
  11242. foreach (var item in country)
  11243. {
  11244. var data = _groupRepository.FormartTeamName(item);
  11245. var dataArray = _groupRepository.GroupSplitCountry(data);
  11246. if (dataArray.Count > 0) countrys.AddRange(dataArray);
  11247. }
  11248. countrys = countrys.Distinct().ToList();
  11249. for (int i = 0; i < countrys.Count; i++)
  11250. {
  11251. string item = countrys[i];
  11252. if (string.IsNullOrEmpty(item) || item.Contains("-"))
  11253. {
  11254. countrys.Remove(item);
  11255. i--;
  11256. }
  11257. }
  11258. RefAsync<int> total = 0;
  11259. var countyDatas = await _sqlSugar.Queryable<Sys_Countries>()
  11260. .Where(it => countrys.Contains(it.Name_CN))
  11261. .WhereIF(!string.IsNullOrEmpty(dto.Search), it => it.Name_CN.Contains(dto.Search))
  11262. .Select(it => new { id = it.Id, name = it.Name_CN })
  11263. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11264. return Ok(JsonView(true, MsgTips.Succeed, countyDatas, total));
  11265. }
  11266. /// <summary>
  11267. /// 查看邀请方
  11268. /// 城市信息 Init
  11269. /// </summary>
  11270. /// <param name="dto"></param>
  11271. /// <returns></returns>
  11272. [HttpPost]
  11273. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11274. public async Task<IActionResult> PostGroupLinkInvitingCityInit(GroupLinkInvitingCityInitDto dto)
  11275. {
  11276. if (dto.CountiesId < 1) return Ok(JsonView(false, "请传入有效的国家Id"));
  11277. RefAsync<int> total = 0;
  11278. var countyDatas = await _sqlSugar.Queryable<Sys_Cities>()
  11279. .Where(it => it.CountriesId == dto.CountiesId)
  11280. .WhereIF(!string.IsNullOrEmpty(dto.Search), it => it.Name_CN.Contains(dto.Search))
  11281. .OrderBy(it => new { IsCapital = SqlFunc.Asc(it.IsCapital), Id = SqlFunc.Asc(it.Id) })
  11282. .Select(it => new { id = it.Id, name = it.Name_CN })
  11283. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11284. return Ok(JsonView(true, MsgTips.Succeed, countyDatas, total));
  11285. }
  11286. /// <summary>
  11287. /// 查看邀请方
  11288. /// 团组名称 Init
  11289. /// </summary>
  11290. /// <param name="dto"></param>
  11291. /// <returns></returns>
  11292. [HttpPost]
  11293. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11294. public async Task<IActionResult> PostGroupLinkInvitingGroupInit(GroupLinkInvitingDto dto)
  11295. {
  11296. var watch = new Stopwatch();
  11297. watch.Start();
  11298. RefAsync<int> total = 0;
  11299. var countyDatas = await _sqlSugar.Queryable<Res_OfficialActivities>()
  11300. .InnerJoin<Grp_DelegationInfo>((oa, di) => oa.DiId == di.Id)
  11301. .Where((oa, di) => oa.IsDel == 0)
  11302. .WhereIF(!string.IsNullOrEmpty(dto.Search), (oa, di) => di.TeamName.Contains(dto.Search))
  11303. .OrderBy((oa, di) => new { id = SqlFunc.Desc(di.Id) })
  11304. .Select((oa, di) => new { id = di.Id, name = di.TeamName })
  11305. .Distinct()
  11306. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11307. watch.Stop();
  11308. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", countyDatas, total));
  11309. }
  11310. /// <summary>
  11311. /// 查看邀请方
  11312. /// 团组 & 邀请方信息
  11313. /// </summary>
  11314. /// <param name="dto"></param>
  11315. /// <returns></returns>
  11316. [HttpPost]
  11317. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11318. public async Task<IActionResult> PostGroupLinkInvitingPageList(GroupLinkInvitingPageListDto dto)
  11319. {
  11320. var watch = new Stopwatch();
  11321. watch.Start();
  11322. RefAsync<int> total = 0;
  11323. var infos = await _sqlSugar.Queryable<GroupLinkInvitingPageListView>()
  11324. .AS("Grp_DelegationInfo")
  11325. .Includes(x => x.InvitingInfos)
  11326. .Where(x => x.IsDel == 0 && x.InvitingInfos.Any(z => z.IsDel == 0))
  11327. .WhereIF(!string.IsNullOrEmpty(dto.Counrty), x => x.VisitCountry.Contains(dto.Counrty))
  11328. .WhereIF(!string.IsNullOrEmpty(dto.Area), x => x.InvitingInfos.Any(z => z.Area.Contains(dto.Area))) //
  11329. .WhereIF(!string.IsNullOrEmpty(dto.TeamName), x => x.TeamName.Contains(dto.TeamName)) //
  11330. .WhereIF(!string.IsNullOrEmpty(dto.UnitName), x => x.InvitingInfos.Any(z => z.Client.Contains(dto.UnitName)))
  11331. .OrderBy(x => new { JietuanTime = SqlFunc.Desc(x.VisitStartDate) })
  11332. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  11333. var userDatas = _sqlSugar.Queryable<Sys_Users>().Where(x => x.IsDel == 0).ToList();
  11334. var setDatas = _sqlSugar.Queryable<Sys_SetData>().Where(x => x.IsDel == 0).ToList();
  11335. infos.ForEach(x =>
  11336. {
  11337. x.TeamDid = setDatas.Find(y => int.Parse(x.TeamDid) == y.Id)?.Name ?? "-";
  11338. x.JietuanOperator = userDatas.Find(y => int.Parse(x.JietuanOperator) == y.Id)?.CnName ?? "-";
  11339. x.TeamLevSId = setDatas.Find(y => int.Parse(x.TeamLevSId) == y.Id)?.Name ?? "-";
  11340. x.InvitingInfos = x.InvitingInfos.Where(it => it.IsDel == 0).ToList();
  11341. });
  11342. watch.Stop();
  11343. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", infos, total));
  11344. }
  11345. #endregion
  11346. #region 报批行程
  11347. /// <summary>
  11348. /// 报批行程初始化
  11349. /// </summary>
  11350. /// <param name="dto"></param>
  11351. /// <returns></returns>
  11352. [HttpPost]
  11353. public IActionResult ApprovalJourneyInit(ApprovalJourneyDto dto)
  11354. {
  11355. const int chiNumber = 5;
  11356. var jw = JsonView(false);
  11357. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  11358. var group = groupList.First();
  11359. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  11360. group = groupList.First(x => x.Id == diid);
  11361. if (group == null)
  11362. {
  11363. jw.Msg = "暂无团组!";
  11364. return Ok(jw);
  11365. }
  11366. var data = new
  11367. {
  11368. groupList = groupList.Select(x => new
  11369. {
  11370. x.TeamName,
  11371. x.Id
  11372. }),
  11373. content = new ArrayList(),
  11374. groupInfo = new
  11375. {
  11376. group.VisitDays,
  11377. group.TourCode,
  11378. group.VisitPNumber,
  11379. group.TeamName,
  11380. group.Id,
  11381. visitStartDate = group.VisitStartDate.ToString("yyyy-MM-dd"),
  11382. visitEndDate = group.VisitEndDate.ToString("yyyy-MM-dd")
  11383. },
  11384. };
  11385. var resultArr = new ArrayList();
  11386. var content = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.Diid == diid && x.IsDel == 0).ToList();
  11387. if (content.Count == 0)
  11388. {
  11389. var stay = "-";
  11390. var cityPath = "-";
  11391. //添加城市路径以及住宿地
  11392. //黑屏代码数据
  11393. DataTable dtBlack = GeneralMethod.GetTableByBlackCode(group.Id);
  11394. if (dtBlack.Rows.Count == 0 || string.IsNullOrWhiteSpace(dtBlack.Rows[0][1].ToString()))
  11395. {
  11396. jw = JsonView(true, "黑屏代码有误!", data);
  11397. return Ok(jw);
  11398. }
  11399. foreach (DataRow row in dtBlack.Rows)
  11400. {
  11401. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  11402. {
  11403. jw = JsonView(true, "黑屏代码有误!" + row["Error"].ToString(), data);
  11404. return Ok(jw);
  11405. }
  11406. }
  11407. //黑屏代码获取时间区间
  11408. var timeArr = GeneralMethod.GetTimeListByDataTable(dtBlack);
  11409. string[] Day = new string[] { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" };
  11410. _sqlSugar.BeginTran();
  11411. for (int i = 0; i < timeArr.Count; i++)
  11412. {
  11413. stay = "-";
  11414. cityPath = "-";
  11415. DateTime NewData = DateTime.Parse(timeArr[i]);
  11416. string week = Day[Convert.ToInt32(NewData.DayOfWeek.ToString("d"))].ToString();
  11417. Grp_ApprovalTravel appro = new Grp_ApprovalTravel();
  11418. var tbSelect = dtBlack.Select(string.Format("Day = '{0}'", NewData.ToString("yyyy-MM-dd")));
  11419. if (tbSelect.Length > 0)
  11420. {
  11421. List<string> threeCodeStr = new List<string>();
  11422. foreach (var item in tbSelect)
  11423. {
  11424. var threeCode = item["Three"].ToString() ?? "";
  11425. if (threeCode.Length == 6)
  11426. {
  11427. var start = threeCode.Substring(0, 3);
  11428. var end = threeCode.Substring(3, 3);
  11429. if (threeCodeStr.Count == 0)
  11430. {
  11431. threeCodeStr.Add(start);
  11432. threeCodeStr.Add(end);
  11433. }
  11434. else
  11435. {
  11436. if (threeCodeStr[threeCodeStr.Count - 1] == start)
  11437. {
  11438. threeCodeStr.Add(end);
  11439. }
  11440. else
  11441. {
  11442. threeCodeStr.Add(start);
  11443. threeCodeStr.Add(end);
  11444. }
  11445. }
  11446. }
  11447. }
  11448. var threeCodeList = _threeCodeRepository.QueryThreeCodeArray(threeCodeStr);
  11449. var last = threeCodeStr.Last();
  11450. foreach (var item in threeCodeStr)
  11451. {
  11452. cityPath += (threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】") + "-";
  11453. if (item.Equals(last))
  11454. {
  11455. stay = threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】";
  11456. }
  11457. }
  11458. cityPath = cityPath.Trim('-');
  11459. }
  11460. appro.Date = "第" + intToString(i + 1) + "天 " + NewData.Month + "月" + NewData.Day + "日(" + week + ") " + cityPath + " 宿:" + stay;
  11461. appro.Diid = diid ?? -1;
  11462. var thisId = _sqlSugar.Insertable<Grp_ApprovalTravel>(appro).ExecuteReturnIdentity();
  11463. appro.Id = thisId;
  11464. appro.CreateUserId = dto.UserId;
  11465. appro.CreateTime = DateTime.Now;
  11466. content.Add(appro);
  11467. }
  11468. _sqlSugar.CommitTran();
  11469. }
  11470. foreach (var x in content)
  11471. {
  11472. var chiList = _sqlSugar.Queryable<Grp_ApprovalTravelDetails>().Where(x1 => x1.ParentId == x.Id && x1.IsDel == 0).ToList();
  11473. if (chiList.Count < chiNumber)
  11474. {
  11475. for (int i = chiList.Count; i < chiNumber; i++)
  11476. {
  11477. chiList.Add(new Grp_ApprovalTravelDetails());
  11478. }
  11479. }
  11480. resultArr.Add(new
  11481. {
  11482. x.Id,
  11483. x.Date,
  11484. x.Diid,
  11485. chiList = chiList.Select(x1 => new
  11486. {
  11487. timeInterval = x1.Time == null ? new string[1] : x1.Time.Split('-'),
  11488. x1.Details,
  11489. x1.ParentId,
  11490. x1.Id
  11491. })
  11492. });
  11493. }
  11494. data = data with
  11495. {
  11496. content = resultArr,
  11497. };
  11498. jw = JsonView(true, "获取成功!", data);
  11499. return Ok(jw);
  11500. }
  11501. /// <summary>
  11502. /// 报批行程删除
  11503. /// </summary>
  11504. /// <param name="dto"></param>
  11505. /// <returns></returns>
  11506. [HttpPost]
  11507. public IActionResult DeleteApprovalJourney(DeleteApprovalJourney dto)
  11508. {
  11509. var jw = JsonView(false);
  11510. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  11511. if (group == null)
  11512. {
  11513. jw.Msg = "团组参数有误!";
  11514. return Ok(jw);
  11515. }
  11516. try
  11517. {
  11518. _sqlSugar.BeginTran();
  11519. var arr = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.Diid == dto.Diid && x.IsDel == 0).Select(x => x.Id).ToList();
  11520. _ = _sqlSugar.Updateable<Grp_ApprovalTravelDetails>().SetColumns(x => new Grp_ApprovalTravelDetails
  11521. {
  11522. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  11523. DeleteUserId = dto.uesrId,
  11524. IsDel = 1
  11525. }).Where(x => arr.Contains(x.ParentId) && x.IsDel == 0).ExecuteCommand();
  11526. _ = _sqlSugar.Updateable<Grp_ApprovalTravel>().SetColumns(x => new Grp_ApprovalTravel
  11527. {
  11528. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  11529. DeleteUserId = dto.uesrId,
  11530. IsDel = 1
  11531. }).Where(x => arr.Contains(x.Id)).ExecuteCommand();
  11532. _sqlSugar.CommitTran();
  11533. jw = JsonView(true, "删除成功");
  11534. }
  11535. catch (Exception ex)
  11536. {
  11537. jw = JsonView(false, ex.Message);
  11538. }
  11539. return Ok(jw);
  11540. }
  11541. /// <summary>
  11542. /// 报批行程保存
  11543. /// </summary>
  11544. /// <param name="dto"></param>
  11545. /// <returns></returns>
  11546. [HttpPost]
  11547. public IActionResult SaveApprovalJourney(SaveApprovalJourney dto)
  11548. {
  11549. var jw = JsonView(false);
  11550. var Find = dto.Arr.Find(x => x.id == 0);
  11551. if (Find != null)
  11552. {
  11553. jw.Msg = "生成的ID为0!";
  11554. return Ok(jw);
  11555. }
  11556. foreach (var item in dto.Arr)
  11557. {
  11558. foreach (var chi in item.chiList)
  11559. {
  11560. if (chi.parentId == 0)
  11561. {
  11562. chi.parentId = item.id;
  11563. }
  11564. }
  11565. }
  11566. var chiArr = dto.Arr.SelectMany(x => x.chiList).ToList();
  11567. _sqlSugar.BeginTran();
  11568. if (chiArr.Where(x => x.id == 0).Count() == chiArr.Count)
  11569. {
  11570. var parentIds = dto.Arr.Select(x => x.id).ToList();
  11571. _sqlSugar.Updateable<Grp_ApprovalTravelDetails>().Where(x => parentIds.Contains(x.ParentId) && x.IsDel == 0).SetColumns(x => new Grp_ApprovalTravelDetails
  11572. {
  11573. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  11574. DeleteUserId = dto.UserId,
  11575. IsDel = 1
  11576. }).ExecuteCommand();
  11577. }
  11578. try
  11579. {
  11580. _ = _sqlSugar.Insertable<Grp_ApprovalTravelDetails>(chiArr.Where(x => x.id == 0).Select(x => new Grp_ApprovalTravelDetails
  11581. {
  11582. CreateTime = DateTime.Now,
  11583. CreateUserId = dto.UserId,
  11584. Details = x.details,
  11585. ParentId = x.parentId,
  11586. Time = x.timeInterval.Where(x => !string.IsNullOrWhiteSpace(x)).Count() > 1 ? x.timeInterval[0] + "-" + x.timeInterval[1] : "",
  11587. Remark = "",
  11588. IsDel = 0
  11589. }).ToList()).ExecuteCommand();
  11590. _ = _sqlSugar.Updateable<Grp_ApprovalTravelDetails>(chiArr.Where(x => x.id != 0).Select(x => new Grp_ApprovalTravelDetails
  11591. {
  11592. Id = x.id,
  11593. Details = x.details,
  11594. ParentId = x.parentId,
  11595. Time = x.timeInterval.Where(x => !string.IsNullOrWhiteSpace(x)).Count() > 1 ? x.timeInterval[0] + "-" + x.timeInterval[1] : "",
  11596. }).ToList()).UpdateColumns(x => new Grp_ApprovalTravelDetails
  11597. {
  11598. Details = x.Details,
  11599. ParentId = x.ParentId,
  11600. Time = x.Time
  11601. }).ExecuteCommand();
  11602. _ = _sqlSugar.Updateable<Grp_ApprovalTravel>(dto.Arr.Where(x => x.id != 0).Select(x => new Grp_ApprovalTravel
  11603. {
  11604. Id = x.id,
  11605. Date = x.date,
  11606. }).ToList()).UpdateColumns(x => new Grp_ApprovalTravel
  11607. {
  11608. Date = x.Date
  11609. }).ExecuteCommand();
  11610. _sqlSugar.CommitTran();
  11611. jw = JsonView(true, "保存成功!");
  11612. }
  11613. catch (Exception ex)
  11614. {
  11615. _sqlSugar.RollbackTran();
  11616. jw = JsonView(false, "保存失败!" + ex.Message);
  11617. }
  11618. return Ok(jw);
  11619. }
  11620. /// <summary>
  11621. /// 报批行程生成
  11622. /// </summary>
  11623. /// <param name="dto"></param>
  11624. /// <returns></returns>
  11625. [HttpPost]
  11626. public IActionResult CreateApprovalJourney(CreateApprovalJourneyDto dto)
  11627. {
  11628. var jw = JsonView(false);
  11629. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  11630. if (group == null)
  11631. {
  11632. jw.Msg = "暂无该团组!";
  11633. return Ok(jw);
  11634. }
  11635. //黑屏代码数据
  11636. DataTable dtBlack = GeneralMethod.GetTableByBlackCode(group.Id);
  11637. if (dtBlack.Rows.Count == 0 || string.IsNullOrWhiteSpace(dtBlack.Rows[0][1].ToString()))
  11638. {
  11639. jw.Msg = "黑屏代码有误!";
  11640. return Ok(jw);
  11641. }
  11642. foreach (DataRow row in dtBlack.Rows)
  11643. {
  11644. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  11645. {
  11646. jw.Msg = "黑屏代码有误!" + row["Error"].ToString();
  11647. return Ok(jw);
  11648. }
  11649. }
  11650. var officialActivitiesArr = _sqlSugar.Queryable<Res_OfficialActivities>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).ToList();
  11651. var resultArr = new ArrayList();
  11652. if (officialActivitiesArr.Count == 0)
  11653. {
  11654. jw.Msg = "暂无公务出访信息!";
  11655. return Ok(jw);
  11656. }
  11657. try
  11658. {
  11659. _sqlSugar.BeginTran();
  11660. DeleteApprovalJourney(new
  11661. Domain.Dtos.Groups.DeleteApprovalJourney
  11662. {
  11663. Diid = dto.Diid,
  11664. uesrId = dto.Userid
  11665. });
  11666. var stay = "-";
  11667. var cityPath = "-";
  11668. //添加城市路径以及住宿地
  11669. //黑屏代码获取时间区间
  11670. var timeArr = GeneralMethod.GetTimeListByDataTable(dtBlack);
  11671. var empty = "【未收入该三字码!请机票同事录入】";
  11672. string[] Day = new string[] { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" };
  11673. for (int i = 0; i < timeArr.Count; i++)
  11674. {
  11675. stay = "-";
  11676. cityPath = "-";
  11677. var chiarr = new List<Grp_ApprovalTravelDetails>();
  11678. DateTime NewData = DateTime.Parse(timeArr[i]);
  11679. var gwinfo = officialActivitiesArr.Where(x => DateTime.TryParse(x.Date, out DateTime gwData) && gwData.ToString("yyyy-MM-dd") == NewData.ToString("yyyy-MM-dd")).OrderBy(x => x.Time).ToList();
  11680. var tbSelect = dtBlack.Select(string.Format("Day = '{0}'", NewData.ToString("yyyy-MM-dd")));
  11681. if (tbSelect.Length > 0)
  11682. {
  11683. List<string> threeCodeStr = new List<string>();
  11684. bool isTrade = false;
  11685. string trip = string.Empty;
  11686. var rowLast = tbSelect.Last();
  11687. var rowFirst = tbSelect.First();
  11688. var airStartTime = rowFirst["StartTime"].ToString() ?? "0000";
  11689. var airEndTime = rowLast["EndTime"].ToString() ?? "0000";
  11690. var takeOffTime = DateTime.Parse(timeArr[i]);
  11691. var fallToTime = DateTime.Parse(timeArr[i]);
  11692. takeOffTime = takeOffTime.AddHours(int.Parse(airStartTime.Substring(0, 2)));
  11693. takeOffTime = takeOffTime.AddMinutes(int.Parse(airStartTime.Substring(2, 2)));
  11694. fallToTime = fallToTime.AddHours(int.Parse(airEndTime.Substring(0, 2)));
  11695. fallToTime = fallToTime.AddMinutes(int.Parse(airEndTime.Substring(2, 2)));
  11696. foreach (var item in tbSelect)
  11697. {
  11698. var start = string.Empty;
  11699. var end = string.Empty;
  11700. var threeCode = item["Three"].ToString() ?? "";
  11701. if (threeCode.Length == 6)
  11702. {
  11703. start = threeCode.Substring(0, 3);
  11704. end = threeCode.Substring(3, 3);
  11705. if (threeCodeStr.Count == 0)
  11706. {
  11707. threeCodeStr.Add(start);
  11708. threeCodeStr.Add(end);
  11709. }
  11710. else
  11711. {
  11712. if (threeCodeStr[threeCodeStr.Count - 1] == start)
  11713. {
  11714. threeCodeStr.Add(end);
  11715. }
  11716. else
  11717. {
  11718. threeCodeStr.Add(start);
  11719. threeCodeStr.Add(end);
  11720. }
  11721. }
  11722. }
  11723. //处理机票信息
  11724. var start_Object = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three.ToUpper() == start.ToUpper());
  11725. var end_Object = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three.ToUpper() == end.ToUpper());
  11726. if (start_Object == null)
  11727. {
  11728. start_Object = new Res_ThreeCode()
  11729. {
  11730. AirPort = empty,
  11731. AirPort_En = empty,
  11732. City = empty,
  11733. Country = empty,
  11734. Four = empty,
  11735. Three = empty,
  11736. };
  11737. }
  11738. if (end_Object == null)
  11739. {
  11740. end_Object = new Res_ThreeCode()
  11741. {
  11742. AirPort = empty,
  11743. AirPort_En = empty,
  11744. City = empty,
  11745. Country = empty,
  11746. Four = empty,
  11747. Three = empty,
  11748. };
  11749. }
  11750. //机型判断
  11751. string airModel = item["AirModel"].ToString();
  11752. airModel = GeneralMethod.GetLonger(airModel!.Substring(0, 1)) + airModel;
  11753. string flightTime = item["FlightTime"].ToString();
  11754. if (flightTime!.Contains(":"))
  11755. {
  11756. flightTime = flightTime.Replace(":", "小时");
  11757. flightTime += "分钟";
  11758. }
  11759. if (flightTime.Contains("H"))
  11760. {
  11761. flightTime = flightTime.Replace("H", "小时");
  11762. }
  11763. if (flightTime.Contains("M"))
  11764. {
  11765. flightTime = flightTime.Replace("M", "分钟");
  11766. }
  11767. IFormatProvider ifp = new CultureInfo("zh-CN", true);
  11768. if (DateTime.TryParseExact(flightTime, "HH小时mm分钟", ifp, DateTimeStyles.None, out DateTime flightDataTime))
  11769. {
  11770. flightTime = flightDataTime.Hour > 0
  11771. ? flightDataTime.Hour.ToString() + "小时" + (flightDataTime.Minute > 0
  11772. ? flightDataTime.Minute.ToString() + "分钟" : "") : flightDataTime.Minute > 0
  11773. ? flightDataTime.Minute.ToString() + "分钟" : "";
  11774. }
  11775. //航班号
  11776. string flightcode = item["Fliagtcode"].ToString();
  11777. var aircompany = _sqlSugar.Queryable<Res_AirCompany>().First(x => x.ShortCode.ToUpper() == flightcode!.Substring(0, 2).ToUpper() && x.IsDel == 0);
  11778. var hsEmpty = "【此航司" + flightcode!.Substring(0, 2).ToUpper() + "未收录,请机票同事录入】";
  11779. if (aircompany == null)
  11780. {
  11781. aircompany = new Res_AirCompany
  11782. {
  11783. CnName = hsEmpty,
  11784. EnName = hsEmpty,
  11785. ShortCode = hsEmpty,
  11786. };
  11787. }
  11788. //从成都天府国际机场搭乘四川航空公司3U3961飞往东京
  11789. trip += $"从{start_Object.AirPort}搭乘{aircompany.CnName} {flightcode} 飞往 {end_Object.City};\r\n({start_Object.AirPort}/{end_Object.AirPort} 机型:{airModel} 飞行时间{flightTime});\r\n";
  11790. isTrade = Convert.ToBoolean(item["isTransitShipment"]);
  11791. if (isTrade)
  11792. {
  11793. trip += $"抵达{end_Object.AirPort}{item["EndBuilding"].ToString().Trim()}航站楼(中转 行李直达)\r\n";
  11794. }
  11795. else
  11796. {
  11797. trip += "\r\n"; //$"抵达{end_Object.AirPort}{item["EndBuilding"].ToString().Trim()}航站楼,办理入境手续,之后前往提取行李\r\n";
  11798. }
  11799. }
  11800. chiarr.Add(new Grp_ApprovalTravelDetails
  11801. {
  11802. Time = takeOffTime.ToString("HH:mm") + "-" + fallToTime.ToString("HH:mm"),
  11803. CreateTime = DateTime.Now,
  11804. CreateUserId = dto.Userid,
  11805. ParentId = 0,
  11806. Details = trip
  11807. });
  11808. var threeCodeList = _threeCodeRepository.QueryThreeCodeArray(threeCodeStr);
  11809. var last = threeCodeStr.Last();
  11810. foreach (var item in threeCodeStr)
  11811. {
  11812. cityPath += (threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】") + "-";
  11813. if (item.Equals(last))
  11814. {
  11815. stay = threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】";
  11816. }
  11817. }
  11818. cityPath = cityPath.Trim('-');
  11819. }
  11820. string week = Day[Convert.ToInt32(NewData.DayOfWeek.ToString("d"))].ToString();
  11821. Grp_ApprovalTravel appro = new Grp_ApprovalTravel();
  11822. appro.Date = "第" + intToString(i + 1) + "天 " + NewData.Month + "月" + NewData.Day + "日(" + week + ") " + cityPath + " 宿:" + stay;
  11823. appro.Diid = dto.Diid;
  11824. var thisId = _sqlSugar.Insertable<Grp_ApprovalTravel>(appro).ExecuteReturnIdentity();
  11825. appro.Id = thisId;
  11826. appro.CreateUserId = dto.Userid;
  11827. appro.CreateTime = DateTime.Now;
  11828. foreach (var item in gwinfo)
  11829. {
  11830. Grp_ApprovalTravelDetails chi = new Grp_ApprovalTravelDetails();
  11831. chi.Details = "拜访" + item.Client;
  11832. if (!string.IsNullOrWhiteSpace(item.ReqSample))
  11833. {
  11834. chi.Details += "," + item.ReqSample;
  11835. }
  11836. chi.ParentId = thisId;
  11837. chi.Time = item.Time;
  11838. chiarr.Add(chi);
  11839. }
  11840. if (chiarr.Count < 5)
  11841. {
  11842. for (int j = chiarr.Count; j < 5; j++)
  11843. {
  11844. chiarr.Add(new
  11845. Grp_ApprovalTravelDetails());
  11846. }
  11847. }
  11848. resultArr.Add(new
  11849. {
  11850. appro.Id,
  11851. appro.Date,
  11852. appro.Diid,
  11853. chiList = chiarr.Select(x1 => new
  11854. {
  11855. timeInterval = x1.Time == null ? new string[1] : x1.Time.Split('-'),
  11856. x1.Details,
  11857. x1.ParentId,
  11858. x1.Id
  11859. })
  11860. });
  11861. }
  11862. _sqlSugar.CommitTran();
  11863. jw = JsonView(true, "生成成功!", resultArr);
  11864. }
  11865. catch (Exception ex)
  11866. {
  11867. jw.Code = 400;
  11868. jw.Msg = "生成失败!" + ex.Message;
  11869. }
  11870. return Ok(jw);
  11871. }
  11872. /// <summary>
  11873. /// 报批行程word导出
  11874. /// </summary>
  11875. /// <param name="dto"></param>
  11876. /// <returns></returns>
  11877. [HttpPost]
  11878. public IActionResult ExportApprovalJourneyWord(ExportApprovalJourneyWord dto)
  11879. {
  11880. var jw = JsonView(false);
  11881. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  11882. if (group == null)
  11883. {
  11884. jw.Msg = "暂无该团组!";
  11885. return Ok(jw);
  11886. }
  11887. //模板路径
  11888. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "Template/公务行程导出模板.docx"); //"C:\\Server\\File\\OA2023\\Office\\Word\\Template/公务行程导出模板.docx"
  11889. //载入模板
  11890. Document doc = new Document(tempPath);
  11891. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  11892. //获取所填表格的序数
  11893. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  11894. Aspose.Words.Tables.Row titleRowClone = null;
  11895. Aspose.Words.Tables.Row CenterRowClone = null;
  11896. int index = 0;
  11897. int indexChi = 0;
  11898. int SetIndex = 0;
  11899. var ApprovalTravelArr = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid).ToList();
  11900. //获取数据,放到datatable
  11901. foreach (var item in ApprovalTravelArr)
  11902. {
  11903. if (index > 0)
  11904. {
  11905. titleRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[0].Clone(true);
  11906. tableOne.AppendChild(titleRowClone);
  11907. }
  11908. var textTime = item.Date;
  11909. var ChiRep = _sqlSugar.Queryable<Grp_ApprovalTravelDetails>().Where(x => x.IsDel == 0 && x.ParentId == item.Id).ToList();
  11910. SetCells(tableOne, doc, SetIndex, 0, textTime);
  11911. SetIndex++;
  11912. if (ChiRep.Count > 0)
  11913. {
  11914. foreach (var itemChi in ChiRep)
  11915. {
  11916. var txtTime = itemChi.Time;
  11917. var txtDetail = itemChi.Details;
  11918. if (indexChi > 0)
  11919. {
  11920. CenterRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[1].Clone(true);
  11921. tableOne.AppendChild(CenterRowClone);
  11922. }
  11923. if (string.IsNullOrEmpty(txtTime) && string.IsNullOrEmpty(txtDetail))
  11924. {
  11925. SetCells(tableOne, doc, SetIndex, 0, "");
  11926. SetCells(tableOne, doc, SetIndex, 1, "");
  11927. indexChi++;
  11928. SetIndex++;
  11929. break;
  11930. }
  11931. SetCells(tableOne, doc, SetIndex, 0, txtTime);
  11932. SetCells(tableOne, doc, SetIndex, 1, txtDetail);
  11933. indexChi++;
  11934. SetIndex++;
  11935. }
  11936. }
  11937. else
  11938. {
  11939. if (indexChi > 0)
  11940. {
  11941. CenterRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[1].Clone(true);
  11942. tableOne.AppendChild(CenterRowClone);
  11943. }
  11944. SetCells(tableOne, doc, SetIndex, 0, "");
  11945. SetCells(tableOne, doc, SetIndex, 1, "");
  11946. indexChi++;
  11947. SetIndex++;
  11948. }
  11949. index++;
  11950. }
  11951. string strFileName = "/Travel/ExportApprovalJourneyWord/" + group.TeamName + "商邀出访日程.doc";
  11952. doc.Save(AppSettingsHelper.Get("WordBasePath") + strFileName); //"C:\\Server\\File\\OA2023\\Office\\Word" + strFileName
  11953. jw.Data = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + strFileName; //"C:\\Server\\File\\OA2023\\Office\\Word" + strFileName
  11954. jw.Code = 200;
  11955. jw.Msg = "";
  11956. return Ok(jw);
  11957. }
  11958. private string intToString(int numberVal)
  11959. {
  11960. string numberval = numberVal.ToString();
  11961. Dictionary<char, string> Number = new Dictionary<char, string>();
  11962. Number.Add('1', "一");
  11963. Number.Add('2', "二");
  11964. Number.Add('3', "三");
  11965. Number.Add('4', "四");
  11966. Number.Add('5', "五");
  11967. Number.Add('6', "六");
  11968. Number.Add('7', "七");
  11969. Number.Add('8', "八");
  11970. Number.Add('9', "九");
  11971. string stringNumberVal = string.Empty;
  11972. for (int i = 0; i < numberval.Length; i++)
  11973. {
  11974. if (i == 0)
  11975. {
  11976. stringNumberVal += Number[numberval[i]];
  11977. }
  11978. else if (i >= 1)
  11979. {
  11980. if (numberval[i] == '0')
  11981. {
  11982. stringNumberVal = "十";
  11983. }
  11984. else
  11985. {
  11986. stringNumberVal += "十" + Number[numberval[i]];
  11987. }
  11988. }
  11989. }
  11990. return stringNumberVal;
  11991. }
  11992. private void SetCells(Aspose.Words.Tables.Table table, Document doc, int rows, int cells, string val)
  11993. {
  11994. //获取table中的某个单元格,从0开始
  11995. Cell lshCell = table.Rows[rows].Cells[cells];
  11996. //将单元格中段落移除
  11997. foreach (Node item in lshCell.Paragraphs)
  11998. {
  11999. lshCell.Paragraphs.Remove(item);
  12000. }
  12001. if (val.Contains("\r\n"))
  12002. {
  12003. var spArr = val.Split("\r\n").Where(x => !string.IsNullOrWhiteSpace(x));
  12004. foreach (var item in spArr)
  12005. {
  12006. //新建一个段落
  12007. Paragraph p = new Paragraph(doc);
  12008. var r = new Run(doc, item);
  12009. //把设置的值赋给之前新建的段落
  12010. p.AppendChild(r);
  12011. //将此段落加到单元格内
  12012. lshCell.AppendChild(p);
  12013. }
  12014. }
  12015. else
  12016. {
  12017. //新建一个段落
  12018. Paragraph p = new Paragraph(doc);
  12019. var r = new Run(doc, val);
  12020. //把设置的值赋给之前新建的段落
  12021. p.AppendChild(r);
  12022. //将此段落加到单元格内
  12023. lshCell.AppendChild(p);
  12024. }
  12025. }
  12026. [HttpPost]
  12027. public async Task<IActionResult> ServerHttp(string paramStr)
  12028. {
  12029. paramStr = paramStr.TrimEnd('\'');
  12030. paramStr = paramStr.TrimStart('\'');
  12031. JsonView jw = JsonView(false);
  12032. JObject param = JObject.Parse(paramStr);
  12033. if (!param.ContainsKey("url"))
  12034. {
  12035. jw.Msg = "url null";
  12036. return Ok(jw);
  12037. }
  12038. string url = param["url"]!.ToString();
  12039. var methon = "get";
  12040. Dictionary<string, string> bodyValues = null;
  12041. Dictionary<string, string> headValues = null;
  12042. if (param.ContainsKey("methon"))
  12043. {
  12044. methon = param["methon"]!.ToString();
  12045. }
  12046. if (param.ContainsKey("header"))
  12047. {
  12048. var header = param["header"]!.ToString();
  12049. JObject headerJobject = JObject.Parse(header);
  12050. headValues = new Dictionary<string, string>();
  12051. foreach (JProperty item in headerJobject.Properties())
  12052. {
  12053. var value = item.Value.ToString();
  12054. var head = item.Path;
  12055. headValues.Add(head, value);
  12056. }
  12057. }
  12058. if (param.ContainsKey("body"))
  12059. {
  12060. var body = param["body"]!.ToString();
  12061. bodyValues = new Dictionary<string, string>();
  12062. JObject bodyJobject = JObject.Parse(body);
  12063. foreach (JProperty item in bodyJobject.Properties())
  12064. {
  12065. var value = item.Value.ToString();
  12066. var head = item.Path;
  12067. bodyValues.Add(head, value);
  12068. }
  12069. }
  12070. HttpClient client = new HttpClient();
  12071. string responseString = string.Empty;
  12072. if (param.ContainsKey("isJson"))
  12073. {
  12074. }
  12075. if (headValues != null)
  12076. {
  12077. foreach (var item in headValues.Keys)
  12078. {
  12079. client.DefaultRequestHeaders.Add(item, headValues[item]);
  12080. }
  12081. }
  12082. try
  12083. {
  12084. if (methon == "get")
  12085. {
  12086. responseString = await client.GetStringAsync(url);
  12087. }
  12088. else if (methon == "post")
  12089. {
  12090. if (bodyValues == null)
  12091. {
  12092. jw.Msg = "methon post body null";
  12093. return Ok(jw);
  12094. }
  12095. // 数据转化为 key=val 格式
  12096. var content = new FormUrlEncodedContent(bodyValues);
  12097. var response = await client.PostAsync(url, content);
  12098. // 获取数据
  12099. responseString = await response.Content.ReadAsStringAsync();
  12100. }
  12101. else
  12102. {
  12103. jw.Msg = "methon error";
  12104. }
  12105. jw = JsonView(true, "success", responseString);
  12106. }
  12107. catch (Exception ex)
  12108. {
  12109. jw.Msg = "error " + ex.Message;
  12110. jw.Data = ex.StackTrace;
  12111. }
  12112. finally
  12113. {
  12114. client.Dispose();
  12115. }
  12116. return Ok(jw);
  12117. }
  12118. #endregion
  12119. // /// <summary>
  12120. // ///
  12121. // /// </summary>
  12122. // /// <param name="_dto"></param>
  12123. // /// <returns></returns>
  12124. // [HttpPost]
  12125. // [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  12126. // public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  12127. // {
  12128. // _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  12129. // string sql = string.Format(@" Select * From Visa With(Nolock) ");
  12130. // List<OA2014_Visa> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_Visa>(sql).ToList();
  12131. // _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  12132. // Dictionary<string, int> dic_psg = new Dictionary<string, int>();
  12133. // dic_psg.Add("客人", 974);
  12134. // dic_psg.Add("司机", 975);
  12135. // dic_psg.Add("导游", 976);
  12136. // dic_psg.Add("公司内部人员", 977);
  12137. // dic_psg.Add("司机/导游/公司内部人员", 978);
  12138. // foreach (var item in list_visa)
  12139. // {
  12140. // Grp_VisaInfo temp = new Grp_VisaInfo();
  12141. // temp.Id = item.Id;
  12142. // temp.DIId = item.DIId;
  12143. // temp.VisaClient = item.VisaClient;
  12144. // temp.VisaPrice = Convert.ToDecimal(item.VisaPrice);
  12145. // temp.VisaCurrency = item.VisaCurrency;
  12146. // temp.IsThird = item.IsThird;
  12147. // if (dic_psg.ContainsKey(item.PassengerType))
  12148. // {
  12149. // temp.PassengerType = dic_psg[item.PassengerType];
  12150. // }
  12151. // else {
  12152. // temp.PassengerType = -1;
  12153. // }
  12154. // temp.VisaNumber = item.VisaNumber;
  12155. // temp.VisaFreeNumber = item.VisaFreeNumber;
  12156. // temp.CreateUserId = item.Operators;
  12157. // DateTime dt_ct;
  12158. // bool b_ct = DateTime.TryParse(item.OperatorsDate, out dt_ct);
  12159. // if (b_ct)
  12160. // {
  12161. // temp.CreateTime = dt_ct;
  12162. // }
  12163. // else
  12164. // {
  12165. // temp.CreateTime = DateTime.Now;
  12166. // }
  12167. // temp.DeleteTime = "";
  12168. // temp.DeleteUserId = 0;
  12169. // temp.Remark = item.Remark;
  12170. // if (string.IsNullOrEmpty(temp.Remark)) {
  12171. // temp.Remark = "";
  12172. // }
  12173. // temp.IsDel = item.IsDel;
  12174. // temp.VisaDescription = item.VisaAttachment;
  12175. // string sqlInsert = string.Format(@" INSERT INTO [dbo].[Grp_VisaInfo]
  12176. //([Id]
  12177. // ,[DIId]
  12178. // ,[VisaClient]
  12179. // ,[VisaPrice]
  12180. // ,[VisaCurrency]
  12181. // ,[IsThird]
  12182. // ,[PassengerType]
  12183. // ,[VisaNumber]
  12184. // ,[VisaFreeNumber]
  12185. // ,[CreateUserId]
  12186. // ,[CreateTime]
  12187. // ,[DeleteTime]
  12188. // ,[DeleteUserId]
  12189. // ,[Remark]
  12190. // ,[IsDel]
  12191. // ,[visaDescription])
  12192. // VALUES
  12193. // ({0},{1},'{2}',{3},{4}
  12194. //,{5},{6},{7},{8},{9}
  12195. //,'{10}','{11}',{12},'{13}',{14},'{15}') ",temp.Id,temp.DIId,temp.VisaClient,temp.VisaPrice,temp.VisaCurrency,
  12196. //temp.IsThird,temp.PassengerType,temp.VisaNumber,temp.VisaNumber,temp.CreateUserId,
  12197. //temp.CreateTime, temp.DeleteTime, temp.DeleteUserId, temp.Remark,temp.IsDel,temp.VisaDescription
  12198. //);
  12199. // await _airTicketResRep.ExecuteCommandAsync(sqlInsert);
  12200. // }
  12201. // return Ok(JsonView(true, "操作成功!"));
  12202. // }
  12203. /// <summary>
  12204. /// 123132123
  12205. /// </summary>
  12206. /// <param name="_dto"></param>
  12207. /// <returns></returns>
  12208. [HttpPost]
  12209. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  12210. public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  12211. {
  12212. _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  12213. string sql = string.Format(@" Select * From grouopExceed where id > 20 And id not in (26,27) ");
  12214. List<OA2014_grouopExceed> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_grouopExceed>(sql).ToList();
  12215. _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  12216. Dictionary<int, int> dicDetail = new Dictionary<int, int>();
  12217. dicDetail.Add(789, 1034);
  12218. dicDetail.Add(790, 1035);
  12219. dicDetail.Add(791, 1036);
  12220. dicDetail.Add(792, 1037);
  12221. dicDetail.Add(793, 1038);
  12222. dicDetail.Add(794, 1039);
  12223. dicDetail.Add(795, 1040);
  12224. dicDetail.Add(796, 1041);
  12225. dicDetail.Add(797, 1042);
  12226. dicDetail.Add(798, 1043);
  12227. dicDetail.Add(801, 1044);
  12228. dicDetail.Add(802, 1045);
  12229. dicDetail.Add(803, 1046);
  12230. Dictionary<int, int> dic = new Dictionary<int, int>();
  12231. dic.Add(806, 1027);
  12232. dic.Add(807, 1028);
  12233. dic.Add(808, 1029);
  12234. dic.Add(809, 1030);
  12235. dic.Add(810, 1031);
  12236. dic.Add(811, 1032);
  12237. dic.Add(812, 1033);
  12238. foreach (var item in list_visa)
  12239. {
  12240. Fin_GroupExtraCost temp = new Fin_GroupExtraCost();
  12241. temp.Coefficient = item.coefficient;
  12242. DateTime dtCrt;
  12243. bool b1 = DateTime.TryParse(item.OperatorsDate, out dtCrt);
  12244. if (b1)
  12245. {
  12246. temp.CreateTime = dtCrt;
  12247. }
  12248. else
  12249. {
  12250. temp.CreateTime = DateTime.Now;
  12251. }
  12252. temp.CreateUserId = item.Operators;
  12253. temp.DeleteTime = "";
  12254. temp.DeleteUserId = 0;
  12255. temp.DiId = int.Parse(item.DIID);
  12256. temp.FilePath = item.FilePath;
  12257. temp.IsDel = item.IsDel;
  12258. temp.Price = item.Price;
  12259. temp.PriceCount = 1;
  12260. temp.PriceCurrency = item.Currency;
  12261. int detailId = 0;
  12262. if (dicDetail.ContainsKey(item.PriceTypeDetail))
  12263. {
  12264. detailId = dicDetail[item.PriceTypeDetail];
  12265. }
  12266. temp.PriceDetailType = detailId;
  12267. temp.PriceDt = DateTime.Now;
  12268. temp.PriceName = item.PriceName;
  12269. temp.PriceSum = item.Price;
  12270. int tid = 0;
  12271. if (dic.ContainsKey(item.PriceType))
  12272. {
  12273. tid = dic[item.PriceType];
  12274. }
  12275. temp.PriceType = tid;
  12276. temp.Remark = item.Remark;
  12277. await _airTicketResRep.AddAsync<Fin_GroupExtraCost>(temp);
  12278. }
  12279. return Ok(JsonView(true, "操作成功!"));
  12280. }
  12281. }
  12282. }