GroupsController.cs 622 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642136431364413645136461364713648
  1. using Aspose.Cells;
  2. using Aspose.Cells.Drawing.Texts;
  3. using Aspose.Words;
  4. using Aspose.Words.Tables;
  5. using NPOI.Util;
  6. using OASystem.API.OAMethodLib;
  7. using OASystem.API.OAMethodLib.File;
  8. using OASystem.Domain.Dtos.Groups;
  9. using OASystem.Domain.Entities.Groups;
  10. using OASystem.Domain.ViewModels.Groups;
  11. using OASystem.Infrastructure.Repositories.Groups;
  12. using TencentCloud.Ocr.V20181119.Models;
  13. using OASystem.Infrastructure.Tools;
  14. using System.Web;
  15. using System.Data;
  16. using static OASystem.Infrastructure.Repositories.Groups.AirTicketResRepository;
  17. using static OpenAI.GPT3.ObjectModels.SharedModels.IOpenAiModels;
  18. using Cell = Aspose.Words.Tables.Cell;
  19. using Row = Aspose.Words.Tables.Row;
  20. using System.Runtime.Intrinsics.Arm;
  21. using Microsoft.AspNetCore.Mvc.Filters;
  22. using OASystem.Domain.Entities.Customer;
  23. using NPOI.SS.Formula.Functions;
  24. using OASystem.Domain.Dtos.CRM;
  25. using System.Diagnostics;
  26. using MathNet.Numerics.Statistics.Mcmc;
  27. using AlibabaCloud.OpenApiClient.Models;
  28. using System;
  29. using NPOI.HPSF;
  30. using SqlSugar;
  31. using System.Collections;
  32. using Org.BouncyCastle.Ocsp;
  33. using System.Globalization;
  34. using static QRCoder.PayloadGenerator;
  35. using Bookmark = Aspose.Words.Bookmark;
  36. using Aspose.Words.Fields;
  37. using NPOI.POIFS.FileSystem;
  38. using Microsoft.AspNetCore.Mvc.ViewEngines;
  39. using OASystem.Domain.ViewModels.QiYeWeChat;
  40. using OASystem.Domain.Entities.Financial;
  41. using NPOI.POIFS.Crypt.Dsig;
  42. using System.Diagnostics.Eventing.Reader;
  43. using System.IO;
  44. using StackExchange.Redis;
  45. using Org.BouncyCastle.Utilities;
  46. using Aspose.Words.Drawing;
  47. using Aspose.Cells.Charts;
  48. using static NPOI.HSSF.Util.HSSFColor;
  49. using Quartz.Util;
  50. using Google.Protobuf.WellKnownTypes;
  51. using Microsoft.AspNetCore.SignalR;
  52. using OASystem.API.OAMethodLib.Hub.HubClients;
  53. using OASystem.API.OAMethodLib.Hub.Hubs;
  54. using System.Collections.Generic;
  55. using OASystem.API.OAMethodLib.JuHeAPI;
  56. using static Microsoft.EntityFrameworkCore.DbLoggerCategory;
  57. using SixLabors.Fonts.Tables.AdvancedTypographic;
  58. using Microsoft.EntityFrameworkCore;
  59. using System.Security.Cryptography.Xml;
  60. using MathNet.Numerics;
  61. using System.Security.Policy;
  62. using System.Xml;
  63. using OASystem.Domain.Dtos.QiYeWeChat;
  64. using static NPOI.POIFS.Crypt.CryptoFunctions;
  65. using Aspose.Words.Lists;
  66. using OASystem.API.OAMethodLib.YouDaoAPI;
  67. using NPOI.XSSF.Streaming.Values;
  68. using OASystem.API.OAMethodLib.Quartz.Business;
  69. using System.Linq;
  70. using NPOI.POIFS.NIO;
  71. using OASystem.API.OAMethodLib.QiYeWeChatAPI.AppNotice;
  72. using OASystem.Domain.ViewModels.Statistics;
  73. using NPOI.XSSF.Model;
  74. using NetTaste;
  75. using Microsoft.AspNetCore.Http;
  76. using EyeSoft.Collections.Generic;
  77. using NPOI.HSSF.Util;
  78. using NPOI.HSSF.UserModel;
  79. using NPOI.SS.UserModel;
  80. using NPOI.XSSF.UserModel;
  81. using MySqlX.XDevAPI.Relational;
  82. using SqlSugar.Extensions;
  83. using Table = Aspose.Words.Tables.Table;
  84. using Aspose.Cells.Tables;
  85. using NPOI.SS.Util;
  86. using RestSharp.Extensions;
  87. using Microsoft.AspNetCore.WebUtilities;
  88. using K4os.Compression.LZ4.Internal;
  89. using static Pipelines.Sockets.Unofficial.SocketConnection;
  90. using System.Diagnostics.PerformanceData;
  91. using System.Drawing.Printing;
  92. using OASystem.Domain.Dtos.FileDto;
  93. using Microsoft.VisualBasic;
  94. using Microsoft.EntityFrameworkCore.Query.Internal;
  95. namespace OASystem.API.Controllers
  96. {
  97. /// <summary>
  98. /// 团组相关
  99. /// </summary>
  100. //[Authorize]
  101. [Route("api/[controller]/[action]")]
  102. public class GroupsController : ControllerBase
  103. {
  104. private readonly GrpScheduleRepository _grpScheduleRep;
  105. private readonly IMapper _mapper;
  106. private readonly DelegationInfoRepository _groupRepository;
  107. private readonly TaskAssignmentRepository _taskAssignmentRep;
  108. private readonly AirTicketResRepository _airTicketResRep;
  109. private readonly DecreasePaymentsRepository _decreasePaymentsRep;
  110. private readonly InvitationOfficialActivitiesRepository _InvitationOfficialActivitiesRep;
  111. private readonly DelegationEnDataRepository _delegationEnDataRep;
  112. private readonly DelegationVisaRepository _delegationVisaRep;
  113. private readonly VisaPriceRepository _visaPriceRep;
  114. private readonly CarTouristGuideGroundRepository _carTouristGuideGroundRep;
  115. private readonly HotelPriceRepository _hotelPriceRep;
  116. private readonly CustomersRepository _customersRep;
  117. private readonly MessageRepository _message;
  118. private readonly SqlSugarClient _sqlSugar;
  119. private readonly TourClientListRepository _tourClientListRep;
  120. private readonly TeamRateRepository _teamRateRep;
  121. #region 成本相关
  122. private readonly CheckBoxsRepository _checkBoxs;
  123. private readonly GroupCostRepository _GroupCostRepository;
  124. private readonly CostTypeHotelNumberRepository _CostTypeHotelNumberRepository;
  125. private readonly GroupCostParameterRepository _GroupCostParameterRepository;
  126. #endregion
  127. private readonly SetDataRepository _setDataRep;
  128. private string url;
  129. private string path;
  130. private readonly EnterExitCostRepository _enterExitCostRep;
  131. private readonly IHubContext<ChatHub, IChatClient> _hubContext;
  132. private readonly UsersRepository _usersRep;
  133. private readonly IJuHeApiService _juHeApi;
  134. private readonly InvertedListRepository _invertedListRep;
  135. private readonly VisaFeeInfoRepository _visaFeeInfoRep;
  136. private readonly TicketBlackCodeRepository _ticketBlackCodeRep;
  137. private readonly ThreeCodeRepository _threeCodeRepository;
  138. private readonly HotelInquiryRepository _hotelInquiryRep;
  139. private readonly FeeAuditRepository _feeAuditRep;
  140. public GroupsController(IMapper mapper, SqlSugarClient sqlSugar, GrpScheduleRepository grpScheduleRep, DelegationInfoRepository groupRepository,
  141. TaskAssignmentRepository taskAssignmentRep, AirTicketResRepository airTicketResRep, DecreasePaymentsRepository decreasePaymentsRep,
  142. InvitationOfficialActivitiesRepository InvitationOfficialActivitiesRep, DelegationEnDataRepository delegationEnDataRep, EnterExitCostRepository enterExitCostRep
  143. , DelegationVisaRepository delegationVisaRep, MessageRepository message, VisaPriceRepository visaPriceRep, CarTouristGuideGroundRepository carTouristGuideGroundRep,
  144. CheckBoxsRepository checkBoxs, GroupCostRepository GroupCostRepository, CostTypeHotelNumberRepository CostTypeHotelNumberRepository,
  145. GroupCostParameterRepository GroupCostParameterRepository, HotelPriceRepository hotelPriceRep, CustomersRepository customersRep, SetDataRepository setDataRep,
  146. TourClientListRepository tourClientListRep, TeamRateRepository teamRateRep, IHubContext<ChatHub, IChatClient> hubContext, UsersRepository usersRep, IJuHeApiService juHeApi,
  147. InvertedListRepository invertedListRep, VisaFeeInfoRepository visaFeeInfoRep, TicketBlackCodeRepository ticketBlackCodeRep, HotelInquiryRepository hotelInquiryRep,
  148. ThreeCodeRepository threeCodeRepository, FeeAuditRepository feeAuditRep)
  149. {
  150. _mapper = mapper;
  151. _grpScheduleRep = grpScheduleRep;
  152. _groupRepository = groupRepository;
  153. _taskAssignmentRep = taskAssignmentRep;
  154. _airTicketResRep = airTicketResRep;
  155. _sqlSugar = sqlSugar;
  156. url = AppSettingsHelper.Get("ExcelBaseUrl");
  157. path = AppSettingsHelper.Get("ExcelBasePath");
  158. if (!System.IO.Directory.Exists(path))
  159. {
  160. System.IO.Directory.CreateDirectory(path);//不存在就创建文件夹
  161. }
  162. _decreasePaymentsRep = decreasePaymentsRep;
  163. _InvitationOfficialActivitiesRep = InvitationOfficialActivitiesRep;
  164. _delegationEnDataRep = delegationEnDataRep;
  165. _enterExitCostRep = enterExitCostRep;
  166. _delegationVisaRep = delegationVisaRep;
  167. _message = message;
  168. _visaPriceRep = visaPriceRep;
  169. _carTouristGuideGroundRep = carTouristGuideGroundRep;
  170. _checkBoxs = checkBoxs;
  171. _GroupCostRepository = GroupCostRepository;
  172. _CostTypeHotelNumberRepository = CostTypeHotelNumberRepository;
  173. _GroupCostParameterRepository = GroupCostParameterRepository;
  174. _hotelPriceRep = hotelPriceRep;
  175. _customersRep = customersRep;
  176. _setDataRep = setDataRep;
  177. _tourClientListRep = tourClientListRep;
  178. _teamRateRep = teamRateRep;
  179. _hubContext = hubContext;
  180. _usersRep = usersRep;
  181. _juHeApi = juHeApi;
  182. _invertedListRep = invertedListRep;
  183. _visaFeeInfoRep = visaFeeInfoRep;
  184. _ticketBlackCodeRep = ticketBlackCodeRep;
  185. _hotelInquiryRep = hotelInquiryRep;
  186. _threeCodeRepository = threeCodeRepository;
  187. _feeAuditRep = feeAuditRep;
  188. }
  189. #region 流程管控
  190. /// <summary>
  191. /// 获取团组流程管控信息
  192. /// </summary>
  193. /// <param name="paras">参数Json字符串</param>
  194. /// <returns></returns>
  195. [HttpPost]
  196. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  197. public async Task<IActionResult> PostSearchGrpSchedule(JsonDtoBase _jsonDto)
  198. {
  199. if (string.IsNullOrEmpty(_jsonDto.Paras))
  200. {
  201. return Ok(JsonView(false, "参数为空"));
  202. }
  203. Grp_ScheduleDto _ScheduleDto = JsonConvert.DeserializeObject<Grp_ScheduleDto>(_jsonDto.Paras);
  204. if (_ScheduleDto != null)
  205. {
  206. if (_ScheduleDto.SearchType == 2)//获取列表
  207. {
  208. List<Grp_ScheduleView> _grpScheduleViewList = await _grpScheduleRep.GetViewList_GrpSchedule(_ScheduleDto);
  209. return Ok(JsonView(_grpScheduleViewList));
  210. }
  211. else//获取对象
  212. {
  213. Grp_ScheduleCombinView _grpScheduleView = await _grpScheduleRep.GetView_GrpSchedule(_ScheduleDto);
  214. if (_grpScheduleView != null)
  215. {
  216. return Ok(JsonView(_grpScheduleView));
  217. }
  218. }
  219. }
  220. else
  221. {
  222. return Ok(JsonView(false, "参数反序列化失败"));
  223. }
  224. return Ok(JsonView(false, "暂无数据!"));
  225. }
  226. /// <summary>
  227. /// 修改团组流程管控详细表数据
  228. /// </summary>
  229. /// <param name="paras"></param>
  230. /// <returns></returns>
  231. [HttpPost]
  232. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  233. public async Task<IActionResult> PostUpdateGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  234. {
  235. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  236. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  237. .SetColumns(it => it.Duty == _detail.Duty)
  238. .SetColumns(it => it.ExpectBeginDt == _detail.ExpectBeginDt)
  239. .SetColumns(it => it.ExpectEndDt == _detail.ExpectEndDt)
  240. .SetColumns(it => it.JobContent == _detail.JobContent)
  241. .SetColumns(it => it.Remark == _detail.Remark)
  242. .SetColumns(it => it.StepStatus == _detail.StepStatus)
  243. .Where(s => s.Id == dto.Id)
  244. //.UpdateColumns(s => new { s.Duty, s.ExpectBeginDt, s.ExpectEndDt, s.JobContent, s.Remark, s.StepStatus })
  245. .ExecuteCommandAsync();
  246. if (result > 0)
  247. {
  248. return Ok(JsonView(true, "保存成功!"));
  249. }
  250. return Ok(JsonView(false, "保存失败!"));
  251. }
  252. /// <summary>
  253. /// 删除团组流程管控详细表数据,删除人Id请放在Duty
  254. /// </summary>
  255. /// <param name="dto"></param>
  256. /// <returns></returns>
  257. [HttpPost]
  258. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  259. public async Task<ActionResult> PostDeleteGrpScheduleDetail(Grp_ScheduleDetailUpdDto dto)
  260. {
  261. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  262. _detail.IsDel = 1;
  263. _detail.DeleteUserId = dto.Duty;
  264. _detail.DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  265. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_ScheduleDetailInfo>()
  266. .SetColumns(it => it.IsDel == _detail.IsDel)
  267. .SetColumns(it => it.DeleteUserId == _detail.DeleteUserId)
  268. .SetColumns(it => it.DeleteTime == _detail.DeleteTime)
  269. .Where(it => it.Id == dto.Id)
  270. //.UpdateColumns(s => new { s.IsDel, s.DeleteUserId, s.DeleteTime })
  271. //.WhereColumns(s => s.Id == dto.Id)
  272. .ExecuteCommandAsync();
  273. if (result > 0)
  274. {
  275. return Ok(JsonView(true, "删除成功!"));
  276. }
  277. return Ok(JsonView(false, "删除失败!"));
  278. }
  279. /// <summary>
  280. /// 增加团组流程管控详细表数据
  281. /// </summary>
  282. /// <param name="dto"></param>
  283. /// <returns></returns>
  284. [HttpPost]
  285. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  286. public async Task<ActionResult> PostInsertGrpScheduleDetail(Grp_ScheduleDetailInsertDto dto)
  287. {
  288. Grp_ScheduleDetailInfo _detail = _mapper.Map<Grp_ScheduleDetailInfo>(dto);
  289. if (DateTime.Now < _detail.ExpectBeginDt)
  290. {
  291. _detail.StepStatus = 0;
  292. }
  293. else
  294. {//若大于设置时间,不考虑设置的预计结束日期,统一视为进行中
  295. _detail.StepStatus = 1;
  296. }
  297. var result = await _grpScheduleRep._sqlSugar.Insertable(_detail).ExecuteReturnIdentityAsync();
  298. if (result > 0)
  299. {
  300. Grp_ScheduleDetailView _result = await _grpScheduleRep.GetInsertBackData(result);
  301. return Ok(JsonView(true, "添加成功!", _result));
  302. }
  303. return Ok(JsonView(false, "添加失败!"));
  304. }
  305. #endregion
  306. #region 团组基本信息
  307. /// <summary>
  308. /// 接团信息列表
  309. /// </summary>
  310. /// <param name="dto">团组列表请求dto</param>
  311. /// <returns></returns>
  312. [HttpPost]
  313. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  314. public async Task<IActionResult> GetGroupList(GroupListDto dto)
  315. {
  316. var groupData = await _groupRepository.GetGroupList(dto);
  317. if (groupData.Code != 0)
  318. {
  319. return Ok(JsonView(false, groupData.Msg));
  320. }
  321. return Ok(JsonView(groupData.Data));
  322. }
  323. /// <summary>
  324. /// 接团信息列表 Page
  325. /// </summary>
  326. /// <param name="dto">团组列表请求dto</param>
  327. /// <returns></returns>
  328. [HttpPost]
  329. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  330. public async Task<IActionResult> PostGroupPageList(GroupPageListDto dto)
  331. {
  332. #region 参数验证
  333. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  334. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  335. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  336. #region 页面操作权限验证
  337. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  338. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  339. #endregion
  340. #endregion
  341. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  342. {
  343. string sqlWhere = string.Empty;
  344. if (dto.IsSure == 0) //未完成
  345. {
  346. sqlWhere += string.Format(@" And IsSure = 0");
  347. }
  348. else if (dto.IsSure == 1) //已完成
  349. {
  350. sqlWhere += string.Format(@" And IsSure = 1");
  351. }
  352. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  353. {
  354. string tj = dto.SearchCriteria;
  355. 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}%')",
  356. tj, tj, tj, tj, tj);
  357. }
  358. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  359. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  360. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  361. JietuanOperator,IsSure,CreateTime
  362. From (
  363. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  364. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  365. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  366. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  367. su.CnName JietuanOperator,IsSure,gdi.CreateTime
  368. From Grp_DelegationInfo gdi
  369. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  370. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  371. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  372. Where gdi.IsDel = 0 {0}
  373. ) temp", sqlWhere);
  374. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  375. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  376. #region 处理所属部门
  377. /*
  378. * 1.sq 和 gyy 等显示 市场部
  379. * 2.王鸽和主管及张总还有管理员号统一国交部
  380. * 2-1. 4 管理员 ,21 张海麟
  381. */
  382. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  383. List<int> userIds1 = new List<int>() { 4, 21 };
  384. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  385. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  386. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  387. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  388. .ToList();
  389. foreach (var item in _DelegationList)
  390. {
  391. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  392. }
  393. #endregion
  394. var _view = new
  395. {
  396. PageFuncAuth = pageFunAuthView,
  397. Data = _DelegationList
  398. };
  399. return Ok(JsonView(true, "查询成功!", _view, total));
  400. }
  401. else
  402. {
  403. return Ok(JsonView(false, "查询失败"));
  404. }
  405. }
  406. /// <summary>
  407. /// 团组列表
  408. /// </summary>
  409. /// <returns></returns>
  410. [HttpPost]
  411. public async Task<IActionResult> GetGroupListByWhere(GroupListByWhere dto)
  412. {
  413. #region 参数验证
  414. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  415. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  416. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  417. #region 页面操作权限验证
  418. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  419. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  420. #endregion
  421. #endregion
  422. if (dto.PortType != 1 && dto.PortType != 2)
  423. {
  424. return Ok(JsonView(false, "查询失败!"));
  425. }
  426. string orderbyStr = "order by gdi.CreateTime Desc";
  427. string sqlWhere = string.Empty;
  428. if (dto.IsSure == 0) //未完成
  429. {
  430. sqlWhere += string.Format(@" And IsSure = 0");
  431. }
  432. else if (dto.IsSure == 1) //已完成
  433. {
  434. sqlWhere += string.Format(@" And IsSure = 1");
  435. }
  436. //团组类型
  437. if (dto.TeamDid > 0)
  438. {
  439. sqlWhere += string.Format(@"And TeamDid = {0} ", dto.TeamDid);
  440. }
  441. //团组名称
  442. if (!string.IsNullOrEmpty(dto.TeamName))
  443. {
  444. sqlWhere += string.Format(@"And TeamName Like '%{0}%'", dto.TeamName);
  445. }
  446. //客户名称
  447. if (!string.IsNullOrEmpty(dto.ClientName))
  448. {
  449. sqlWhere += string.Format(@"And ClientName Like '%{0}%'", dto.ClientName);
  450. }
  451. //客户单位
  452. if (!string.IsNullOrEmpty(dto.ClientUnit))
  453. {
  454. sqlWhere += string.Format(@"And ClientUnit Like '%{0}%'", dto.ClientUnit);
  455. }
  456. //出访时间
  457. if (!string.IsNullOrEmpty(dto.visitDataTime))
  458. {
  459. sqlWhere += string.Format(@"And VisitDate >= '{0}'", dto.visitDataTime);
  460. orderbyStr = "order by gdi.VisitDate";
  461. }
  462. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  463. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  464. VisitDate,VisitDays,VisitPNumber,JietuanOperatorId,
  465. JietuanOperator,IsSure,CreateTime
  466. From (
  467. Select row_number() over({0}) as Row_Number,
  468. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  469. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  470. VisitDate,VisitDays,VisitPNumber,JietuanOperator JietuanOperatorId,
  471. su.CnName JietuanOperator,IsSure,gdi.CreateTime
  472. From Grp_DelegationInfo gdi
  473. Left Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  474. Left Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  475. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  476. Where gdi.IsDel = 0 {1}
  477. ) temp ", orderbyStr, sqlWhere);
  478. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  479. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  480. #region 处理所属部门
  481. /*
  482. * 1.sq 和 gyy 等显示 市场部
  483. * 2.王鸽和主管及张总还有管理员号统一国交部
  484. * 2-1. 4 管理员 ,21 张海麟
  485. */
  486. List<int> userIds = _DelegationList.Select(it => it.JietuanOperatorId).ToList();
  487. List<int> userIds1 = new List<int>() { 4, 21 };
  488. var UserDepDatas = _sqlSugar.Queryable<Sys_Users>()
  489. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  490. .Where(u => u.IsDel == 0 && userIds.Contains(u.Id))
  491. .Select((u, d) => new { UserId = u.Id, DepName = userIds1.Contains(u.Id) ? "国交部" : d.DepName })
  492. .ToList();
  493. foreach (var item in _DelegationList)
  494. {
  495. item.Department = UserDepDatas.Find(it => item.JietuanOperatorId == it.UserId)?.DepName ?? "Unknown";
  496. }
  497. #endregion
  498. var _view = new
  499. {
  500. PageFuncAuth = pageFunAuthView,
  501. Data = _DelegationList
  502. };
  503. return Ok(JsonView(true, "查询成功!", _view, total));
  504. }
  505. /// <summary>
  506. /// 接团信息详情
  507. /// </summary>
  508. /// <param name="dto">团组info请求dto</param>
  509. /// <returns></returns>
  510. [HttpPost]
  511. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  512. public async Task<IActionResult> GetGroupInfo(GroupInfoDto dto)
  513. {
  514. var groupData = await _groupRepository.GetGroupInfo(dto);
  515. if (groupData.Code != 0)
  516. {
  517. return Ok(JsonView(false, groupData.Msg));
  518. }
  519. return Ok(JsonView(groupData.Data));
  520. }
  521. /// <summary>
  522. /// 接团信息 编辑添加
  523. /// 基础信息数据源
  524. /// </summary>
  525. /// <param name="dto"></param>
  526. /// <returns></returns>
  527. [HttpPost]
  528. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  529. public async Task<IActionResult> GroupEditBasicSource(GroupListDto dto)
  530. {
  531. var groupData = await _groupRepository.GroupEditBasicSource(dto);
  532. if (groupData.Code != 0)
  533. {
  534. return Ok(JsonView(false, groupData.Msg));
  535. }
  536. return Ok(JsonView(groupData.Data));
  537. }
  538. /// <summary>
  539. /// 接团信息 操作(增改)
  540. /// </summary>
  541. /// <param name="dto"></param>
  542. /// <returns></returns>
  543. [HttpPost]
  544. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  545. public async Task<IActionResult> GroupOperation(GroupOperationDto dto)
  546. {
  547. try
  548. {
  549. var groupData = await _groupRepository.GroupOperation(dto);
  550. if (groupData.Code != 0)
  551. {
  552. return Ok(JsonView(false, groupData.Msg));
  553. }
  554. int diId = 0;
  555. //添加时 默认加入团组汇率
  556. if (dto.Status == 1) //添加
  557. {
  558. diId = groupData.Data;
  559. //添加默认币种
  560. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  561. //默认分配权限
  562. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  563. //消息提示 王鸽 主管号
  564. List<int> _managerIds = new List<int>() { 22, 32 };
  565. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  566. if (userIds.Count > 0)
  567. {
  568. userIds.Add(208);
  569. //创建团组管控
  570. GroupStepForDelegation.CreateWorkStep(diId);
  571. //发送消息
  572. string groupName = dto.TeamName;
  573. string createGroupUser = string.Empty;
  574. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  575. if (userInfo != null) createGroupUser = userInfo.CnName;
  576. string title = $"系统通知";
  577. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  578. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  579. }
  580. //默认创建倒推表
  581. await _invertedListRep._Create(dto.UserId, diId);
  582. }
  583. else if (dto.Status == 2)
  584. {
  585. diId = dto.Id;
  586. }
  587. return Ok(JsonView(true, "操作成功!", diId));
  588. }
  589. catch (Exception ex)
  590. {
  591. Logs("[response]" + JsonConvert.SerializeObject(dto));
  592. Logs(ex.Message);
  593. return Ok(JsonView(false, ex.Message));
  594. }
  595. }
  596. /// <summary>
  597. /// 接团流程操作(增改)
  598. /// 安卓端使用 建团时添加客户名单
  599. /// </summary>
  600. /// <param name="dto"></param>
  601. /// <returns></returns>
  602. [HttpPost]
  603. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  604. public async Task<IActionResult> GroupProcessOperation(GroupProcessOperationDto dto)
  605. {
  606. try
  607. {
  608. #region 参数验证
  609. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  610. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  611. #region 页面操作权限验证
  612. //pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 104);
  613. //if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "客户名单您没有添加权限!"));
  614. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, 27);
  615. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "团组操作您没有添加权限!"));
  616. #endregion
  617. #endregion
  618. _sqlSugar.BeginTran();
  619. var _dto = new GroupOperationDto();
  620. _dto = _mapper.Map<GroupProcessOperationDto, GroupOperationDto>(dto);
  621. var groupData = await _groupRepository.GroupOperation(_dto);
  622. if (groupData.Code != 0)
  623. {
  624. return Ok(JsonView(false, "团组操作添加失败!" + groupData.Msg));
  625. }
  626. int diId = 0;
  627. //添加时 默认加入团组汇率
  628. if (dto.Status == 1) //添加
  629. {
  630. diId = groupData.Data;
  631. //添加默认币种
  632. await GeneralMethod.PostGroupRateAddInit(dto.UserId, diId);
  633. //默认分配权限
  634. await GeneralMethod.PostGroupAuthAddInit(dto.UserId, diId);
  635. //消息提示 王鸽 主管号
  636. List<int> _managerIds = new List<int>() { 22, 32 };
  637. var userIds = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && _managerIds.Contains(it.JobPostId)).Select(it => it.Id).ToList();
  638. if (userIds.Count > 0)
  639. {
  640. userIds.Add(208);
  641. //创建团组管控
  642. GroupStepForDelegation.CreateWorkStep(diId);
  643. //发送消息
  644. string groupName = dto.TeamName;
  645. string createGroupUser = string.Empty;
  646. var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  647. if (userInfo != null) createGroupUser = userInfo.CnName;
  648. string title = $"系统通知";
  649. string content = $"团组[{groupName}(创建人:{createGroupUser})]创建成功,请前往页面进行下一步操作!";
  650. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, diId);
  651. }
  652. }
  653. if (dto.Status == 2)
  654. {
  655. diId = dto.Id;
  656. if (diId == 0)
  657. {
  658. return Ok(JsonView(false, "修改失败! 未添加团组id" + groupData.Msg));
  659. }
  660. }
  661. var viewData = await _tourClientListRep.OperMultiple(dto.TourClientListInfos, diId, dto.UserId);
  662. if (viewData.Code != 0)
  663. {
  664. _sqlSugar.RollbackTran();
  665. return Ok(JsonView(false, "客户名单添加失败!" + viewData.Msg));
  666. }
  667. _sqlSugar.CommitTran();
  668. return Ok(JsonView(true, "添加成功"));
  669. }
  670. catch (Exception ex)
  671. {
  672. _sqlSugar.RollbackTran();
  673. return Ok(JsonView(false, ex.Message));
  674. }
  675. }
  676. /// <summary>
  677. /// 接团信息 操作(删除)
  678. /// </summary>
  679. /// <param name="dto"></param>
  680. /// <returns></returns>
  681. [HttpPost]
  682. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  683. public async Task<IActionResult> GroupDel(GroupDelDto dto)
  684. {
  685. try
  686. {
  687. var groupData = await _groupRepository.GroupDel(dto);
  688. if (groupData.Code != 0)
  689. {
  690. return Ok(JsonView(false, groupData.Msg));
  691. }
  692. return Ok(JsonView(true));
  693. }
  694. catch (Exception ex)
  695. {
  696. Logs("[response]" + JsonConvert.SerializeObject(dto));
  697. Logs(ex.Message);
  698. return Ok(JsonView(false, ex.Message));
  699. }
  700. }
  701. /// <summary>
  702. /// 获取团组销售报价号
  703. /// 团组添加时 使用
  704. /// </summary>
  705. /// <returns></returns>
  706. [HttpPost]
  707. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  708. public async Task<IActionResult> GetGroupSalesQuoteNo()
  709. {
  710. var groupData = await _groupRepository.GetGroupSalesQuoteNo();
  711. if (groupData.Code != 0)
  712. {
  713. return Ok(JsonView(false, groupData.Msg));
  714. }
  715. object salesQuoteNo = new
  716. {
  717. SalesQuoteNo = groupData.Data
  718. };
  719. return Ok(JsonView(salesQuoteNo));
  720. }
  721. /// <summary>
  722. /// 设置确认出团
  723. /// </summary>
  724. /// <param name="dto"></param>
  725. /// <returns></returns>
  726. [HttpPost]
  727. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  728. public async Task<IActionResult> SetConfirmationGroup(ConfirmationGroupDto dto)
  729. {
  730. var groupData = await _groupRepository.ConfirmationGroup(dto);
  731. if (groupData.Code != 0)
  732. {
  733. return Ok(JsonView(false, groupData.Msg));
  734. }
  735. var groupInfo = _groupRepository.Query(s => s.Id == dto.GroupId).First();
  736. #region OA消息推送
  737. try
  738. {
  739. string groupName = groupInfo.TeamName;
  740. List<Sys_Users> listUser = _airTicketResRep.Query<Sys_Users>(s => s.DepId == 7 && s.IsDel == 0).ToList();
  741. List<int> userIds = new List<int>();
  742. listUser.ForEach(s => userIds.Add(s.Id));
  743. string title = $"系统通知";
  744. string content = $"团组[{groupName}]已确认出团!";
  745. await GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupBusinessOperations, title, content, userIds, dto.GroupId);
  746. }
  747. catch (Exception ex)
  748. {
  749. }
  750. #endregion
  751. #region 应用推送
  752. try
  753. {
  754. await AppNoticeLibrary.SendChatMsg_GroupStatus_Create(dto.GroupId, QiyeWeChatEnum.CompanyCRMChat);
  755. Sys_Users users = _airTicketResRep.Query<Sys_Users>(s => s.Id == groupInfo.JietuanOperator).First();
  756. Sys_Department department = _airTicketResRep.Query<Sys_Department>(s => s.Id == users.DepId).First();
  757. if (department.Id == 6 && !string.IsNullOrEmpty(users.QiyeChatUserId))
  758. {
  759. List<string> userList = new List<string>() { users.QiyeChatUserId };
  760. await AppNoticeLibrary.SendUserMsg_GroupStatus_Create(dto.GroupId, userList);
  761. }
  762. }
  763. catch (Exception ex)
  764. {
  765. }
  766. #endregion
  767. GroupStepForDelegation.CreateWorkStep(dto.GroupId); //创建管控流程
  768. return Ok(JsonView(true, "操作成功!", groupData.Data));
  769. }
  770. /// <summary>
  771. /// 获取团组名称data And 签证国别Data
  772. /// </summary>
  773. /// <param name="dto"></param>
  774. /// <returns></returns>
  775. [HttpPost]
  776. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  777. public async Task<IActionResult> GetGroupNameAndVisaNationality(GroupNameDto dto)
  778. {
  779. var groupData = await _groupRepository.GetGroupNameAndVisaNationality(dto);
  780. if (groupData.Code != 0)
  781. {
  782. return Ok(JsonView(false, groupData.Msg));
  783. }
  784. return Ok(JsonView(groupData.Data));
  785. }
  786. /// <summary>
  787. /// 根据CTable类型返回对应的团组名称及简单数据(APP端)
  788. /// </summary>
  789. /// <returns></returns>
  790. [HttpPost]
  791. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  792. public async Task<IActionResult> PostGroupNameAndEasy(DecreasePaymentsDto dto)
  793. {
  794. try
  795. {
  796. Result groupData = await _decreasePaymentsRep.PostGroupNameAndEasy(dto);
  797. if (groupData.Code != 0)
  798. {
  799. return Ok(JsonView(false, groupData.Msg));
  800. }
  801. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  802. }
  803. catch (Exception ex)
  804. {
  805. return Ok(JsonView(false, "程序错误!"));
  806. throw;
  807. }
  808. }
  809. #endregion
  810. #region 团组&签证
  811. /// <summary>
  812. /// 根据团组Id获取签证客户信息List
  813. /// </summary>
  814. /// <param name="dto">请求dto</param>
  815. /// <returns></returns>
  816. [HttpPost]
  817. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  818. public async Task<IActionResult> GetCrmByGroupId(ClientByGroupIdDto dto)
  819. {
  820. var groupData = await _groupRepository.GetCrmByGroupId(dto);
  821. if (groupData.Code != 0)
  822. {
  823. return Ok(JsonView(false, groupData.Msg));
  824. }
  825. return Ok(JsonView(groupData.Data));
  826. }
  827. /// <summary>
  828. /// IOS获取团组签证拍照上传进度01(团组列表)
  829. /// </summary>
  830. /// <param name="dto">请求dto</param>
  831. /// <returns></returns>
  832. [HttpPost]
  833. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  834. public async Task<IActionResult> PostIOSVisaProgress(IOS_VisaDto dto)
  835. {
  836. if (dto == null)
  837. {
  838. return Ok(JsonView(false, "参数为空"));
  839. }
  840. DelegationVisaViewList visaList = _delegationVisaRep.GetDelegationList(dto);
  841. return Ok(JsonView(visaList));
  842. }
  843. /// <summary>
  844. /// IOS获取团组签证拍照上传进度02(团组签证详情\人员列表\国家)
  845. /// </summary>
  846. /// <returns></returns>
  847. [HttpPost]
  848. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  849. public async Task<ActionResult> PostIOSVisaProgressContent(IOS_VisaCustomerListDto dto)
  850. {
  851. if (dto == null)
  852. {
  853. return Ok(JsonView(false, "请求错误:"));
  854. }
  855. List<DelegationVisaProgressView> list = _delegationVisaRep.GetDelegationProgressList(dto.diId);
  856. return Ok(JsonView(list));
  857. }
  858. /// <summary>
  859. /// IOS获取团组签证拍照上传进度03(相册)
  860. /// </summary>
  861. /// <returns></returns>
  862. [HttpPost]
  863. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  864. public async Task<ActionResult> PostIOSVisaProgressImageList(IOS_VisaImageListDto dto)
  865. {
  866. if (dto == null)
  867. {
  868. return Ok(JsonView(false, "请求错误:"));
  869. }
  870. List<VisaProgressImageView> list = _delegationVisaRep.GetVisaProgressImageList(dto.visaProgressCustomerId, dto.picType);
  871. string url = AppSettingsHelper.Get("VisaProgressImageBaseUrl") + AppSettingsHelper.Get("VisaProgressImageFtpPath");
  872. list.ForEach(s => s.url = url);
  873. return Ok(JsonView(list));
  874. }
  875. /// <summary>
  876. /// IOS获取团组签证拍照上传进度04(图片上传)
  877. /// </summary>
  878. /// <param name="dto"></param>
  879. /// <returns></returns>
  880. [HttpPost]
  881. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  882. public async Task<ActionResult> PostIOSVisaProgressUploadImage(IOS_VisaUploadImageDto dto)
  883. {
  884. //string result = decodeBase64ToImage(dto.base64DataURL, dto.imageName);
  885. //if (!string.IsNullOrEmpty(result))
  886. //{
  887. //}
  888. //else {
  889. // return Ok(JsonView(false, "上传失败"));
  890. //}
  891. DateTime dt1970 = new DateTime(1970, 1, 1, 0, 0, 0, 0);
  892. int sucNum = 0;
  893. try
  894. {
  895. foreach (var item in dto.base64DataList)
  896. {
  897. string imageName = dto.imageName + ((DateTime.Now.Ticks - dt1970.Ticks) / 10000).ToString();
  898. string result = decodeBase64ToImage(item, imageName);
  899. if (!string.IsNullOrEmpty(result))
  900. {
  901. Grp_VisaProgressCustomerPicture pic = new Grp_VisaProgressCustomerPicture();
  902. pic.CreateUserId = dto.CreateUserId;
  903. pic.PicName = imageName;
  904. pic.PicPath = result;
  905. pic.VisaProgressCustomerId = dto.visaProgressCustomerId;
  906. int insertResult = await _delegationVisaRep.AddAsync<Grp_VisaProgressCustomerPicture>(pic);
  907. if (insertResult > 0)
  908. {
  909. sucNum++;
  910. }
  911. }
  912. }
  913. }
  914. catch (Exception ex)
  915. {
  916. return Ok(JsonView(false, ex.Message));
  917. }
  918. string msg = string.Format(@"成功上传{0}张", sucNum);
  919. return Ok(JsonView(true, msg));
  920. }
  921. private string decodeBase64ToImage(string base64DataURL, string imgName)
  922. {
  923. string filename = "";//声明一个string类型的相对路径
  924. String base64 = base64DataURL.Substring(base64DataURL.IndexOf(",") + 1); //将‘,’以前的多余字符串删除
  925. System.Drawing.Bitmap bitmap = null;//定义一个Bitmap对象,接收转换完成的图片
  926. try//会有异常抛出,try,catch一下
  927. {
  928. byte[] arr = Convert.FromBase64String(base64);//将纯净资源Base64转换成等效的8位无符号整形数组
  929. System.IO.MemoryStream ms = new System.IO.MemoryStream(arr);//转换成无法调整大小的MemoryStream对象
  930. bitmap = new System.Drawing.Bitmap(ms);//将MemoryStream对象转换成Bitmap对象
  931. var fileDir = AppSettingsHelper.Get("VisaProgressImageBasePath");
  932. //文件名称
  933. filename = "VisaProgress_" + DateTime.Now.ToString("yyyyMMddHHmmss") + "_" + imgName + ".jpeg";//所要保存的相对路径及名字
  934. //上传的文件的路径
  935. string filePath = "";
  936. if (!Directory.Exists(fileDir))
  937. {
  938. Directory.CreateDirectory(fileDir);
  939. }
  940. //上传的文件的路径
  941. filePath = fileDir + filename;
  942. //string url = HttpRuntime.AppDomainAppPath.ToString();
  943. //string tmpRootDir = System.Web.HttpContext.Current.Server.MapPath(System.Web.HttpContext.Current.Request.ApplicationPath.ToString()); //获取程序根目录
  944. //string imagesurl2 = tmpRootDir + filename; //转换成绝对路径
  945. bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Jpeg);//保存到服务器路径
  946. //bitmap.Save(filePath + ".bmp", System.Drawing.Imaging.ImageFormat.Bmp);
  947. //bitmap.Save(filePath + ".gif", System.Drawing.Imaging.ImageFormat.Gif);
  948. //bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Png);
  949. ms.Close();//关闭当前流,并释放所有与之关联的资源
  950. bitmap.Dispose();
  951. }
  952. catch (Exception e)
  953. {
  954. string massage = e.Message;
  955. Logs("IOS图片上传Error:" + massage);
  956. //filename = e.Message;
  957. }
  958. return filename;//返回相对路径
  959. }
  960. /// <summary>
  961. /// IOS获取团组签证拍照上传进度05(修改签证状态/通知)
  962. /// </summary>
  963. /// <param name="dto"></param>
  964. /// <returns></returns>
  965. [HttpPost]
  966. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  967. public async Task<ActionResult> PostIOSVisaProgressChangeStatus(IOS_VisaChangeStatusDto dto)
  968. {
  969. if (dto == null)
  970. {
  971. return Ok(JsonView(false, "请求错误:"));
  972. }
  973. string msg = "参数错误";
  974. if (dto.diId > 0 && dto.visaStatus > 0 && dto.visaStatus < 4)
  975. {
  976. try
  977. {
  978. //_delegationVisaRep.BeginTran();
  979. var updCount = await _delegationVisaRep._sqlSugar.Updateable<Grp_VisaProgressCustomer>()
  980. .SetColumns(it => it.WorkStatus == dto.visaStatus)
  981. .Where(s => s.Id == dto.visaProgressCustomerId)
  982. .ExecuteCommandAsync();
  983. if (updCount > 0 && dto.publishCode == 1)
  984. {
  985. _delegationVisaRep.ChangeDataBase(DBEnum.OA2014DB); //切换到新OA后删除
  986. string sqlDelegation = string.Format(@" Select * From DelegationInfo With(Nolock) Where Id = {0} ", dto.diId);
  987. OA2021_DelegationInfo groupData = _sqlSugar.SqlQueryable<OA2021_DelegationInfo>(sqlDelegation).First();
  988. //GroupInfoDto grpDto = new GroupInfoDto() { Id = dto.diId };
  989. //var groupData = await _groupRepository.GetGroupInfo(grpDto);
  990. _delegationVisaRep.ChangeDataBase(DBEnum.OA2023DB); //切换到新OA后删除
  991. if (groupData == null)
  992. {
  993. _delegationVisaRep.RollbackTran();
  994. }
  995. string title = string.Format(@"[签证进度更新]");
  996. string content = string.Format(@"测试文本");
  997. bool rst = await _message.AddMsg(new MessageDto()
  998. {
  999. Type = MessageTypeEnum.GroupVisaProgressUpdate,
  1000. IssuerId = dto.publisher,
  1001. Title = title,
  1002. Content = content,
  1003. ReleaseTime = DateTime.Now,
  1004. UIdList = new List<int> {
  1005. 234
  1006. }
  1007. });
  1008. if (rst)
  1009. {
  1010. return Ok(JsonView(true, "发送通知成功"));
  1011. }
  1012. }
  1013. //_delegationVisaRep.CommitTran();
  1014. }
  1015. catch (Exception)
  1016. {
  1017. //_delegationVisaRep.RollbackTran();
  1018. }
  1019. }
  1020. return Ok(JsonView(true, msg));
  1021. }
  1022. #endregion
  1023. #region 团组任务分配
  1024. /// <summary>
  1025. /// 团组任务分配初始化
  1026. /// </summary>
  1027. /// <param name="dto"></param>
  1028. /// <returns></returns>
  1029. [HttpPost]
  1030. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1031. public async Task<IActionResult> GetTaskAssignmen()
  1032. {
  1033. var groupData = await _taskAssignmentRep.GetTaskAssignmen();
  1034. if (groupData.Code != 0)
  1035. {
  1036. return Ok(JsonView(false, groupData.Msg));
  1037. }
  1038. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1039. }
  1040. /// <summary>
  1041. /// 团组任务分配查询
  1042. /// </summary>
  1043. /// <param name="dto"></param>
  1044. /// <returns></returns>
  1045. [HttpPost]
  1046. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1047. public async Task<IActionResult> TaskAssignmenQuery(TaskAssignmenQueryDto dto)
  1048. {
  1049. var groupData = await _taskAssignmentRep.TaskAssignmenQuery(dto);
  1050. if (groupData.Code != 0)
  1051. {
  1052. return Ok(JsonView(false, groupData.Msg));
  1053. }
  1054. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1055. }
  1056. /// <summary>
  1057. /// 团组任务分配操作
  1058. /// </summary>
  1059. /// <param name="dto"></param>
  1060. /// <returns></returns>
  1061. [HttpPost]
  1062. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1063. public async Task<IActionResult> GetTaskAssignmenOp(TaskAssignmenDto dto)
  1064. {
  1065. Result groupData = await _taskAssignmentRep.GetTaskAssignmenOp(dto);
  1066. if (groupData.Code != 0)
  1067. {
  1068. return Ok(JsonView(false, groupData.Msg));
  1069. }
  1070. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1071. }
  1072. #endregion
  1073. #region 团组费用审核
  1074. /// <summary>
  1075. /// 费用审核
  1076. /// 团组列表 Page
  1077. /// </summary>
  1078. /// <param name="_dto">团组列表请求dto</param>
  1079. /// <returns></returns>
  1080. [HttpPost]
  1081. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1082. public async Task<IActionResult> PostExpenseAuditGroupPageItems(ExpenseAuditGroupPageItemsDto _dto)
  1083. {
  1084. #region 参数验证
  1085. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1086. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1087. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1088. #region 页面操作权限验证
  1089. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1090. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1091. #endregion
  1092. #endregion
  1093. if (_dto.PortType == 1 || _dto.PortType == 2 || _dto.PortType == 2) // web/Android/IOS
  1094. {
  1095. string sqlWhere = string.Empty;
  1096. if (_dto.IsSure == 0) //未完成
  1097. {
  1098. sqlWhere += string.Format(@" And IsSure = 0");
  1099. }
  1100. else if (_dto.IsSure == 1) //已完成
  1101. {
  1102. sqlWhere += string.Format(@" And IsSure = 1");
  1103. }
  1104. if (!string.IsNullOrEmpty(_dto.SearchCriteria))
  1105. {
  1106. string tj = _dto.SearchCriteria;
  1107. 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}%')",
  1108. tj, tj, tj, tj, tj);
  1109. }
  1110. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  1111. TeamName,ClientName,ClientUnit, TeamLevId,TeamLev,VisitDate,
  1112. VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  1113. From (
  1114. Select row_number() over(order by gdi.VisitDate Desc) as Row_Number,
  1115. gdi.Id,SalesQuoteNo,TourCode,ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,
  1116. ClientName,ClientUnit,ssd.Id TeamTypeId, ssd.Name TeamType,VisitDate,
  1117. VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  1118. From Grp_DelegationInfo gdi
  1119. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  1120. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  1121. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  1122. Where gdi.IsDel = 0 {0}
  1123. ) temp ", sqlWhere);
  1124. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  1125. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToPageListAsync(_dto.PageIndex, _dto.PageSize, total);//ToPageAsync
  1126. var _view = new
  1127. {
  1128. PageFuncAuth = pageFunAuthView,
  1129. Data = _DelegationList
  1130. };
  1131. return Ok(JsonView(true, "查询成功!", _view, total));
  1132. }
  1133. else
  1134. {
  1135. return Ok(JsonView(false, "查询失败"));
  1136. }
  1137. }
  1138. /// <summary>
  1139. /// 获取团组费用审核
  1140. /// </summary>
  1141. /// <param name="paras">参数Json字符串</param>
  1142. /// <returns></returns>
  1143. [HttpPost]
  1144. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1145. public async Task<IActionResult> PostSearchGrpCreditCardPayment(Search_GrpCreditCardPaymentDto _dto)
  1146. {
  1147. try
  1148. {
  1149. #region 参数验证
  1150. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1151. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1152. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  1153. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1154. #region 页面操作权限验证
  1155. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1156. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  1157. #endregion
  1158. #endregion
  1159. Grp_CreditCardPaymentView _view = new Grp_CreditCardPaymentView();
  1160. List<SimplClientInfo> clientNameList = getSimplClientList(_dto.DiId);
  1161. #region 费用清单
  1162. var exp = Expressionable.Create<Grp_CreditCardPayment>();
  1163. exp.AndIF(_dto.AuditStatus != -1, it => it.IsAuditGM == _dto.AuditStatus);
  1164. exp.AndIF(_dto.Label != -1, it => it.CTable == _dto.Label);
  1165. List<Grp_CreditCardPayment> entityList = _groupRepository
  1166. .Query<Grp_CreditCardPayment>(s => s.DIId == _dto.DiId && s.IsDel == 0 && s.CreateUserId > 0)
  1167. .Where(exp.ToExpression())
  1168. .ToList();
  1169. List<Grp_CreditCardPaymentDetailView> detailList = new List<Grp_CreditCardPaymentDetailView>();
  1170. List<CreditCardPaymentCurrencyPriceItem> ccpCurrencyPrices = new List<CreditCardPaymentCurrencyPriceItem>();
  1171. /*
  1172. * 76://酒店预订
  1173. */
  1174. List<Grp_HotelReservations> _HotelReservations = await _groupRepository
  1175. .Query<Grp_HotelReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1176. .ToListAsync();
  1177. List<Grp_HotelReservationsContent> _HotelReservationsContents = await _groupRepository
  1178. .Query<Grp_HotelReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1179. .ToListAsync();
  1180. /*
  1181. * 79://车/导游地接
  1182. */
  1183. List<Grp_CarTouristGuideGroundReservations> _CarTouristGuideGroundReservations = await _groupRepository
  1184. .Query<Grp_CarTouristGuideGroundReservations>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1185. .ToListAsync();
  1186. List<Grp_CarTouristGuideGroundReservationsContent> _CarTouristGuideGroundReservationsContent = await _groupRepository
  1187. .Query<Grp_CarTouristGuideGroundReservationsContent>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1188. .ToListAsync();
  1189. /*
  1190. * 80: //签证
  1191. */
  1192. List<Grp_VisaInfo> _VisaInfos = await _groupRepository
  1193. .Query<Grp_VisaInfo>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1194. .ToListAsync();
  1195. /*
  1196. *81: //邀请/公务活动
  1197. */
  1198. List<Grp_InvitationOfficialActivities> _InvitationOfficialActivities = await _groupRepository
  1199. .Query<Grp_InvitationOfficialActivities>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1200. .ToListAsync();
  1201. /*
  1202. * 82: //团组客户保险
  1203. */
  1204. List<Grp_Customers> _Customers = await _groupRepository.Query<Grp_Customers>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1205. /*
  1206. * Lable = 85 机票预订
  1207. */
  1208. List<Grp_AirTicketReservations> p_AirTicketReservations = await _groupRepository
  1209. .Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0)
  1210. .ToListAsync();
  1211. /*
  1212. * 85 机票预定
  1213. */
  1214. List<Grp_AirTicketReservations> _AirTicketReservations = await _groupRepository.Query<Grp_AirTicketReservations>(s => s.DIId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1215. /*
  1216. * 98 其他款项
  1217. */
  1218. List<Grp_DecreasePayments> _DecreasePayments = await _groupRepository
  1219. .Query<Grp_DecreasePayments>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1220. .ToListAsync();
  1221. /*
  1222. * 285:收款退还
  1223. */
  1224. List<Fin_PaymentRefundAndOtherMoney> _PaymentRefundAndOtherMoneys = await _groupRepository
  1225. .Query<Fin_PaymentRefundAndOtherMoney>(s => s.DiId == _dto.DiId && s.IsDel == 0)
  1226. .ToListAsync();
  1227. /*
  1228. * 1015: //超支费用
  1229. */
  1230. List<Fin_GroupExtraCost> _GroupExtraCosts = await _groupRepository.Query<Fin_GroupExtraCost>(s => s.DiId == _dto.DiId && s.IsDel == 0).ToListAsync();
  1231. /*
  1232. * 币种信息
  1233. */
  1234. var currencyItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 66 && s.IsDel == 0).ToListAsync();
  1235. /*
  1236. * 车/导游地接 费用类型
  1237. */
  1238. var carFeeTypeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 17 && s.IsDel == 0).ToListAsync();
  1239. /*
  1240. * 车/导游地接 费用类型
  1241. */
  1242. var carFeeItems = await _groupRepository.Query<Sys_SetData>(s => s.STid == 83 && s.IsDel == 0).ToListAsync();
  1243. var initDatas = await _groupRepository.Query<Sys_SetData>(s => s.IsDel == 0).ToListAsync();
  1244. var cityData = await _groupRepository.Query<Grp_NationalTravelFee>(s => s.IsDel == 0).ToListAsync();
  1245. /*
  1246. * 用户信息
  1247. */
  1248. var userItems = await _groupRepository.Query<Sys_Users>(s => s.IsDel == 0).ToListAsync();
  1249. /*
  1250. * 费用模块
  1251. */
  1252. Sys_SetData sdPriceName = _groupRepository.Query<Sys_SetData>(s => s.Id == _dto.Label).First();
  1253. string priceModule = string.Empty;
  1254. if (sdPriceName != null)
  1255. {
  1256. priceModule = sdPriceName.Name;
  1257. }
  1258. /*
  1259. * 成本信息
  1260. */
  1261. var groupCost = _groupRepository.Query<Grp_GroupCostParameter>(s => s.DiId == _dto.DiId && s.IsDel == 0).First();
  1262. decimal _groupRate = 0.0000M;
  1263. string _groupCurrencyCode = "-";
  1264. if (groupCost != null)
  1265. {
  1266. _groupRate = groupCost.Rate;
  1267. if (int.TryParse(groupCost.Currency, out int _currency))
  1268. {
  1269. _groupCurrencyCode = currencyItems.Find(it => it.Id == _currency)?.Name ?? "-";
  1270. }
  1271. else _groupCurrencyCode = groupCost.Currency;
  1272. }
  1273. string costContentSql = $"Select * From Grp_GroupCost";
  1274. var groupCostDetails = _sqlSugar.SqlQueryable<GroupCostAuditView>(costContentSql).Where(x => x.IsDel == 0 && x.Diid == _dto.DiId).ToList();
  1275. //处理日期为空的天数
  1276. for (int i = 0; i < groupCostDetails.Count; i++)
  1277. if (i != 0)
  1278. if (string.IsNullOrEmpty(groupCostDetails[i].Date))
  1279. groupCostDetails[i].Date = groupCostDetails[i - 1].Date;
  1280. /*
  1281. * 处理详情数据
  1282. */
  1283. foreach (var entity in entityList)
  1284. {
  1285. Grp_CreditCardPaymentDetailView _detail = new Grp_CreditCardPaymentDetailView();
  1286. _detail.Id = entity.Id;
  1287. _detail.PriceName = priceModule;
  1288. _detail.PayType = initDatas.Find(it => it.Id == entity.PayDId)?.Name ?? "-";
  1289. _detail.CardType = initDatas.Find(it => it.Id == entity.CTDId)?.Name ?? "-";
  1290. /*
  1291. * 应付款金额
  1292. */
  1293. Sys_SetData sdPaymentCurrency_WaitPay = currencyItems.Where(s => s.Id == entity.PaymentCurrency).FirstOrDefault();
  1294. string PaymentCurrency_WaitPay = "Unknown";
  1295. string hotelCurrncyCode = "Unknown";
  1296. string hotelCurrncyName = "Unknown";
  1297. if (sdPaymentCurrency_WaitPay != null)
  1298. {
  1299. PaymentCurrency_WaitPay = sdPaymentCurrency_WaitPay.Name;
  1300. hotelCurrncyCode = sdPaymentCurrency_WaitPay.Name;
  1301. hotelCurrncyName = sdPaymentCurrency_WaitPay.Remark;
  1302. if (hotelCurrncyCode.Equals("CNY"))
  1303. {
  1304. entity.DayRate = 1.0000M;
  1305. }
  1306. }
  1307. _detail.WaitPay = entity.PayMoney.ConvertToDecimal1().ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1308. /*
  1309. * 此次付款金额
  1310. */
  1311. decimal CurrPayStr = 0;
  1312. if (entity.PayPercentage == 0)
  1313. {
  1314. if (entity.PayThenMoney != 0)
  1315. CurrPayStr = (entity.PayThenMoney * entity.DayRate).ConvertToDecimal1();
  1316. }
  1317. else
  1318. {
  1319. if (entity.PayMoney != 0)
  1320. {
  1321. CurrPayStr = (entity.PayMoney * entity.PayPercentage / 100 * entity.DayRate).ConvertToDecimal1();
  1322. }
  1323. }
  1324. _detail.CurrPay = CurrPayStr.ToString("#0.00") + " CNY";
  1325. /*
  1326. * 剩余尾款
  1327. */
  1328. decimal BalanceStr = 0;
  1329. if (CurrPayStr != 0)
  1330. {
  1331. if (entity.PayMoney - (CurrPayStr / entity.DayRate) < 0.01M)
  1332. BalanceStr = 0;
  1333. else
  1334. BalanceStr = (entity.PayMoney - CurrPayStr / entity.DayRate).ConvertToDecimal1();
  1335. }
  1336. _detail.Balance = BalanceStr.ToString("#0.00") + " " + PaymentCurrency_WaitPay;
  1337. /*
  1338. * Bus名称
  1339. */
  1340. _detail.BusName = "待增加";
  1341. /*
  1342. *费用所属
  1343. */
  1344. switch (entity.CTable)
  1345. {
  1346. case 76://酒店预订
  1347. Grp_HotelReservations hotelReservations = _HotelReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1348. if (hotelReservations != null)
  1349. {
  1350. DateTime checkIn = Convert.ToDateTime(hotelReservations.CheckInDate),
  1351. checkOut = Convert.ToDateTime(hotelReservations.CheckOutDate);
  1352. int hotel_days = (int)(checkOut - checkIn).TotalDays;
  1353. string roomFeeStr = "", roomFeestr1 = "";
  1354. //是否比较房型价格
  1355. bool __isSingle = false, __isDouble = false, __isSuite = false, __isOther = false;
  1356. roomFeeStr += $"<br/><span style='width:70px;display: inline-block;'></span>";
  1357. if (hotelReservations.SingleRoomPrice > 0)
  1358. { roomFeestr1 += $"单间:{hotelReservations.SingleRoomPrice.ToString("#0.00")} * {hotelReservations.SingleRoomCount}"; __isSingle = true; }
  1359. if (hotelReservations.DoubleRoomPrice > 0)
  1360. { roomFeestr1 += $"双人间:{hotelReservations.DoubleRoomPrice.ToString("#0.00")} * {hotelReservations.DoubleRoomCount}"; __isDouble = true; }
  1361. if (hotelReservations.SuiteRoomPrice > 0)
  1362. { roomFeestr1 += $"套房:{hotelReservations.SuiteRoomPrice.ToString("#0.00")} * {hotelReservations.SuiteRoomCount}"; __isSuite = true; }
  1363. if (hotelReservations.OtherRoomPrice > 0)
  1364. { roomFeestr1 += $"其他:{hotelReservations.OtherRoomPrice.ToString("#0.00")} * {hotelReservations.OtherRoomCount}"; __isOther = true; }
  1365. if (roomFeestr1.Length > 0) roomFeeStr += roomFeestr1;
  1366. else roomFeeStr += " 0.00 * 0";
  1367. decimal governmentRentFee = 0.00M, cityTaxFee = 0.00M, breakfastFee = 0.00M, roomFee = 0.00M;
  1368. string governmentRentBool = "否", cityTaxBool = "否", breakfastBool = "否", roomBool = "否";
  1369. string governmentRentCode = "", governmentRentName = "", cityTaxCode = "", cityTaxName = "", breakfastCode = "", breakfastName = "", roomCode = "", roomName = "";
  1370. var _HotelReservationsContents1 = _HotelReservationsContents.Where(it => it.HrId == hotelReservations.Id).ToList();
  1371. /*
  1372. * 费用类型
  1373. * 1:房费
  1374. * 2:早餐
  1375. * 3:地税
  1376. * 4:城市税
  1377. * </summary>
  1378. */
  1379. //地税
  1380. var governmentRentData = _HotelReservationsContents1.Find(it => it.PriceType == 3);
  1381. if (governmentRentData != null)
  1382. {
  1383. governmentRentBool = governmentRentData.IsOppay == 1 ? "是" : "否";
  1384. governmentRentFee = governmentRentData.Price;
  1385. var governmentRentCurrData = currencyItems.Find(s => s.Id == governmentRentData.Currency);
  1386. if (governmentRentCurrData != null)
  1387. {
  1388. governmentRentCode = governmentRentCurrData.Name;
  1389. governmentRentName = $"({governmentRentCurrData.Remark})";
  1390. }
  1391. }
  1392. //城市税
  1393. var cityTaxData = _HotelReservationsContents1.Find(it => it.PriceType == 4);
  1394. if (cityTaxData != null)
  1395. {
  1396. cityTaxBool = cityTaxData.IsOppay == 1 ? "是" : "否";
  1397. cityTaxFee = cityTaxData.Price;
  1398. var cityTaxCurrData = currencyItems.Find(s => s.Id == cityTaxData.Currency);
  1399. if (cityTaxCurrData != null)
  1400. {
  1401. cityTaxCode = cityTaxCurrData.Name;
  1402. cityTaxName = $"({cityTaxCurrData.Remark})";
  1403. }
  1404. }
  1405. //酒店早餐
  1406. var breakfastData = _HotelReservationsContents1.Find(it => it.PriceType == 2);
  1407. if (breakfastData != null)
  1408. {
  1409. breakfastBool = breakfastData.IsOppay == 1 ? "是" : "否";
  1410. breakfastFee = breakfastData.Price;
  1411. var breakfastCurrData = currencyItems.Find(s => s.Id == breakfastData.Currency);
  1412. if (breakfastCurrData != null)
  1413. {
  1414. breakfastCode = breakfastCurrData.Name;
  1415. breakfastName = $"({breakfastCurrData.Remark})";
  1416. }
  1417. }
  1418. //房间费用
  1419. var roomData = _HotelReservationsContents1.Find(it => it.PriceType == 1);
  1420. if (roomData != null)
  1421. {
  1422. _detail.PayType = initDatas.Find(it => it.Id == roomData.PayDId)?.Name ?? "-";
  1423. _detail.CardType = initDatas.Find(it => it.Id == roomData.CTDId)?.Name ?? "-";
  1424. roomBool = roomData.IsOppay == 1 ? "是" : "否";
  1425. roomFee = roomData.Price;
  1426. var roomCurrData = currencyItems.Find(s => s.Id == roomData.Currency);
  1427. if (roomCurrData != null)
  1428. {
  1429. roomCode = roomCurrData.Name;
  1430. roomName = $"({roomCurrData.Remark})";
  1431. }
  1432. }
  1433. string hotelCostTitalStr = "<span style='font-weight:800;'>成本信息</span><br/>";
  1434. string hotelCostStr = "";
  1435. decimal hotelCsotTotal = 0.00M;
  1436. if (groupCost != null)
  1437. {
  1438. if (int.TryParse(groupCost.Currency, out int currencyId)) groupCost.Currency = currencyItems.Find(s => s.Id == currencyId)?.Name ?? "-";
  1439. hotelCostStr += $"{groupCost.Currency}(汇率:{groupCost.Rate.ToString("#0.0000")})<br/>";
  1440. }
  1441. if (checkOut > checkIn) checkOut = checkOut.AddDays(-1);
  1442. var hotelCostDetails = groupCostDetails.Where(x => Convert.ToDateTime(x.Date) >= checkIn && Convert.ToDateTime(x.Date) <= checkOut).ToList();
  1443. string hotelCost_day = "";
  1444. var hotelCostDetails1 = hotelCostDetails.GroupBy(x => x.Date);
  1445. foreach (var item in hotelCostDetails1)
  1446. {
  1447. hotelCsotTotal += item.Sum(x => x.HotelSingleRoomFee) + item.Sum(x => x.HotelDoubleRoomFee) + item.Sum(x => x.HotelSuiteRoomFee) + item.Sum(x => x.HotelSuiteFee);
  1448. hotelCost_day += @$"{item.First()?.Date ?? "-"}";
  1449. if (item.Sum(x => x.HotelSingleRoomFee) != 0) hotelCost_day += @$" 单间:{item.Sum(x => x.HotelSingleRoomFee).ToString("#0.00")}";
  1450. else { if (__isSingle) hotelCost_day += @$" 单间:0.00"; }
  1451. if (item.Sum(x => x.HotelDoubleRoomFee) != 0) hotelCost_day += @$" 双人间:{item.Sum(x => x.HotelDoubleRoomFee).ToString("#0.00")}";
  1452. else { if (__isDouble) hotelCost_day += @$" 双人间:0.00"; }
  1453. if (item.Sum(x => x.HotelSuiteRoomFee) != 0) hotelCost_day += @$" 小套房/豪华套房:{item.Sum(x => x.HotelSuiteRoomFee).ToString("#0.00")}";
  1454. else { if (__isSuite) hotelCost_day += @$" 小套房/豪华套房:0.00"; }
  1455. if (item.Sum(x => x.HotelSuiteFee) != 0) hotelCost_day += @$" 套房:{item.Sum(x => x.HotelSuiteFee).ToString("#0.00")}";
  1456. else { if (__isOther) hotelCost_day += @$" 套房:0.00"; }
  1457. hotelCost_day += @$"</br>";
  1458. }
  1459. string hotelBreakfastStr = "", hotelGovernmentRentStr = "", hotelCityTaxStr = "";
  1460. if (breakfastFee > 0) hotelBreakfastStr = $"酒店早餐: {breakfastFee.ToString("#0.00")} {breakfastCode} {breakfastName} 当时汇率 {breakfastData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{breakfastBool}<br/><br/>";
  1461. if (governmentRentFee > 0) hotelGovernmentRentStr = $"地税: {governmentRentFee.ToString("#0.00")} {governmentRentCode} {governmentRentName} 当时汇率 {governmentRentData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{governmentRentBool}<br/><br/>";
  1462. if (cityTaxFee > 0) hotelCityTaxStr = $"城市税: {cityTaxFee.ToString("#0.00")} {cityTaxCode} {cityTaxName} 当时汇率 {cityTaxData?.Rate.ToString("#0.0000")} <br/>是否由地接代付:{cityTaxBool}<br/>";
  1463. string hotelCostTotalStr = "";// $"&nbsp;&nbsp;成本合计:{hotelCsotTotal.ToString("#0.00")}<br/>";
  1464. _detail.PriceMsgContent = $"{hotelCostTitalStr}{hotelCostStr}{hotelCostTotalStr}{hotelCost_day}<br/>" +
  1465. $"<span style='font-weight:800;'>{hotelReservations.HotelName} [{hotelReservations.CheckInDate} - {hotelReservations.CheckOutDate}]</span><br/>" +
  1466. $"信用卡金额:{_detail.WaitPay} ({hotelCurrncyName})<br/>" +
  1467. $"房间说明: {hotelReservations.Remark} <br/>" +
  1468. $"房间费用: {roomCode} {roomName} 当时汇率 {roomData?.Rate.ToString("#0.0000")}{roomFeeStr} <br/>是否由地接代付:{roomBool}<br/><br/>" +
  1469. $"{hotelBreakfastStr}" +
  1470. $"{hotelGovernmentRentStr}" +
  1471. $"{hotelCityTaxStr}";
  1472. _detail.PriceNameContent = hotelReservations.HotelName;
  1473. }
  1474. break;
  1475. case 79://车/导游地接
  1476. Grp_CarTouristGuideGroundReservations touristGuideGroundReservations = _CarTouristGuideGroundReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1477. if (touristGuideGroundReservations != null)
  1478. {
  1479. if (!string.IsNullOrEmpty(touristGuideGroundReservations.BusName))
  1480. {
  1481. _detail.BusName = touristGuideGroundReservations.BusName;
  1482. }
  1483. _detail.PriceNameContent = touristGuideGroundReservations.PriceName;
  1484. //bool isInt = int.TryParse(touristGuideGroundReservations.Area, out int cityId);
  1485. //if (isInt)
  1486. //{
  1487. // var cityInfo = cityData.Find(it => it.Id == cityId);
  1488. // if (cityInfo != null)
  1489. // {
  1490. // string nameContent = $@"{cityInfo.Country}-{cityInfo.City}";
  1491. // var carFeeItem = carFeeItems.Find(it => it.Id == touristGuideGroundReservations.PriceType);
  1492. // if (carFeeItem != null)
  1493. // {
  1494. // nameContent += $@"({carFeeItem.Name})";
  1495. // }
  1496. // _detail.PriceNameContent = nameContent;
  1497. // }
  1498. //}
  1499. //else
  1500. //{
  1501. // _detail.PriceNameContent = touristGuideGroundReservations.Area;
  1502. //}
  1503. var touristGuideGroundReservationsContents =
  1504. _CarTouristGuideGroundReservationsContent.Where(s => s.CTGGRId == touristGuideGroundReservations.Id && s.IsDel == 0 && s.Price != 0).ToList();
  1505. string priceMsg = $"<span style='font-weight:800;'>{touristGuideGroundReservations.PriceName}({touristGuideGroundReservations.ServiceStartTime} - {touristGuideGroundReservations.ServiceEndTime})</span><br/>";
  1506. foreach (var item in touristGuideGroundReservationsContents)
  1507. {
  1508. string typeName = "Unknown";
  1509. string carCurrencyCode = "Unknown";
  1510. string carCurrencyName = "Unknown";
  1511. var carTypeData = carFeeTypeItems.Where(s => s.Id == item.SId && s.IsDel == 0).FirstOrDefault();
  1512. if (carTypeData != null) typeName = carTypeData.Name;
  1513. var currencyData = currencyItems.Where(s => s.Id == item.Currency && s.IsDel == 0).FirstOrDefault();
  1514. if (currencyData != null)
  1515. {
  1516. carCurrencyCode = currencyData.Name;
  1517. carCurrencyName = currencyData.Remark;
  1518. }
  1519. string opCostStr = string.Empty;
  1520. decimal opCostTypePrice = 0.00M;
  1521. #region 处理成本各项费用
  1522. var opDate = item.DatePrice?.ToString("yyyy-MM-dd");
  1523. var opCost = groupCostDetails.Where(x => x.Date.Equals(opDate)).ToList();
  1524. if (opCost.Count > 0)
  1525. {
  1526. switch (item.SId)
  1527. {
  1528. case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //91车费
  1529. //case 982: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //982 车超时费 -- 暂无
  1530. case 92: opCostTypePrice = opCost.Sum(x => x.GuideFee); break; //92 导游费
  1531. case 94: opCostTypePrice = opCost.Sum(x => x.GuideScenicFee); break; //94 导游景点费
  1532. case 95: opCostTypePrice = opCost.Sum(x => x.GuideTipFee); break; //95 导游小费
  1533. case 983: opCostTypePrice = opCost.Sum(x => x.GuideMealFee); break; //983 导游餐补
  1534. case 984: opCostTypePrice = opCost.Sum(x => x.GuideMealFee); break; //984 导游房补
  1535. case 985: opCostTypePrice = opCost.Sum(x => x.GuideRoomFee); break; //985 导游交通
  1536. //case 96: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //96 接送机费 -- 暂无
  1537. //case 97: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //97 其他费用 -- 暂无
  1538. case 979: opCostTypePrice = opCost.Sum(x => x.DriverFee); break; //979 司机工资
  1539. case 980: opCostTypePrice = opCost.Sum(x => x.DriverTipFee); break; //980 司机小费
  1540. case 981: opCostTypePrice = opCost.Sum(x => x.DriverMealFee); break; //981 司机餐补
  1541. case 988: opCostTypePrice = opCost.Sum(x => x.ClientBreakfastFee); break; //988 客户早餐费用
  1542. case 93: opCostTypePrice = opCost.Sum(x => x.ClientDinnerFee); break; //93 客户午餐费用
  1543. case 989: opCostTypePrice = opCost.Sum(x => x.ClientLunchFee); break; //989 客户晚餐费用
  1544. case 990: opCostTypePrice = opCost.Sum(x => x.ScenicTicketFee); break; //990 景点门票费
  1545. case 991: opCostTypePrice = opCost.Sum(x => x.DrinkSnackFruitFee); break; //991 饮料/零食/水果
  1546. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //992 住补费用 -- 暂无
  1547. case 994: opCostTypePrice = opCost.Sum(x => x.TranslatorFee); break; //994 翻译费
  1548. case 1059: opCostTypePrice = opCost.Sum(x => x.GuideOverTimeFee); break; //1059 导游超时费用
  1549. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1070 尾款金额
  1550. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1071 其他额外费用
  1551. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1073 翻译超时费
  1552. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1074 早餐超支费用
  1553. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1075 午餐超支费用
  1554. //case 91: opCostTypePrice = opCost.Sum(x => x.CarFee); break; //1076 晚餐超支费用
  1555. }
  1556. opCostStr = $"&nbsp;&nbsp;/&nbsp;&nbsp;成本:{opCostTypePrice.ToString("#0.00")} {_groupCurrencyCode}(汇率:{_groupRate.ToString("#0.0000")})";
  1557. }
  1558. #endregion
  1559. priceMsg += $"日期:{item.DatePrice?.ToString("yyyy-MM-dd") ?? "-"}<br/>" +
  1560. $"{typeName}:{item.Price.ToString("#0.00")} {carCurrencyCode}(汇率:{entity.DayRate.ToString("#0.0000")}) {opCostStr}<br/>" +
  1561. $"明细:{item.PriceContent ?? "-"}<br/>" +
  1562. $"备注:{item.Remark ?? "-"}<br/><br/>";
  1563. }
  1564. _detail.PriceMsgContent = priceMsg;
  1565. }
  1566. break;
  1567. case 80: //签证
  1568. Grp_VisaInfo visaInfo = _VisaInfos.Where(s => s.Id == entity.CId).FirstOrDefault();
  1569. if (visaInfo != null)
  1570. {
  1571. _detail.PriceNameContent = getClientNameStr(clientNameList, visaInfo.VisaClient);
  1572. _detail.PriceMsgContent = $"签证描述:{visaInfo.VisaDescription}<br/> 备注:{visaInfo.Remark}";
  1573. }
  1574. break;
  1575. case 81: //邀请/公务活动
  1576. Grp_InvitationOfficialActivities _ioa = _InvitationOfficialActivities.Where(s => s.Id == entity.CId).FirstOrDefault();
  1577. if (_ioa != null)
  1578. {
  1579. string inviteCurrName = "Unknown", //邀请费用币种 Name
  1580. inviteCurrCode = "Unknown", //邀请费用币种 Code
  1581. sendCurrName = "Unknown", //快递费用币种 Name
  1582. sendCurrCode = "Unknown", //快递费用币种 Code
  1583. eventsCurrName = "Unknown", //公务活动费币种 Name
  1584. eventsCurrCode = "Unknown", //公务活动费币种 Code
  1585. translateCurrName = "Unknown", //公务翻译费 Name
  1586. translateCurrCode = "Unknown"; //公务翻译费 Code
  1587. #region 处理费用币种
  1588. var inviteCurrData = currencyItems.Where(s => s.Id == _ioa.InviteCurrency && s.IsDel == 0).FirstOrDefault();
  1589. if (inviteCurrData != null)
  1590. {
  1591. inviteCurrName = inviteCurrData.Remark;
  1592. inviteCurrCode = inviteCurrData.Name;
  1593. }
  1594. var sendCurrData = currencyItems.Where(s => s.Id == _ioa.SendCurrency && s.IsDel == 0).FirstOrDefault();
  1595. if (sendCurrData != null)
  1596. {
  1597. sendCurrName = sendCurrData.Remark;
  1598. sendCurrCode = sendCurrData.Name;
  1599. }
  1600. var eventsCurrData = currencyItems.Where(s => s.Id == _ioa.EventsCurrency && s.IsDel == 0).FirstOrDefault();
  1601. if (eventsCurrData != null)
  1602. {
  1603. eventsCurrName = eventsCurrData.Remark;
  1604. eventsCurrCode = eventsCurrData.Name;
  1605. }
  1606. var translateCurrData = currencyItems.Where(s => s.Id == _ioa.TranslateCurrency && s.IsDel == 0).FirstOrDefault();
  1607. if (translateCurrData != null)
  1608. {
  1609. translateCurrName = translateCurrData.Remark;
  1610. translateCurrCode = translateCurrData.Name;
  1611. }
  1612. #endregion
  1613. _detail.PriceNameContent = _ioa.InviterArea;
  1614. _detail.PriceMsgContent = $@"邀请费用:{_ioa.InviteCost.ToString("#0.00")} {inviteCurrCode}({inviteCurrName})<br/>" +
  1615. $@"快递费用:{_ioa.SendCost.ToString("#0.00")} {sendCurrCode}({sendCurrName})<br/>" +
  1616. $@"公务活动费:{_ioa.EventsCost.ToString("#0.00")} {eventsCurrCode}({eventsCurrName})<br/>" +
  1617. $@"公务翻译费:{_ioa.TranslateCost.ToString("#0.00")} {translateCurrCode}({translateCurrName})<br/>" +
  1618. $@"备注:" + _ioa.Remark + "<br/>";
  1619. }
  1620. break;
  1621. case 82: //团组客户保险
  1622. Grp_Customers customers = _Customers.Where(s => s.Id == entity.CId && s.IsDel == 0).FirstOrDefault();
  1623. if (customers != null)
  1624. {
  1625. _detail.PriceNameContent = getClientNameStr(clientNameList, customers.ClientName);
  1626. _detail.PriceMsgContent = "备注:" + customers.Remark + "<br/>";
  1627. }
  1628. break;
  1629. case 85: //机票预订
  1630. Grp_AirTicketReservations jpRes = _AirTicketReservations.Where(s => s.Id == entity.CId).FirstOrDefault();
  1631. if (jpRes != null)
  1632. {
  1633. string FlightsDescription = jpRes.FlightsDescription;
  1634. string PriceDescription = jpRes.PriceDescription;
  1635. _detail.PriceMsgContent = "航班号:" + jpRes.FlightsCode + "<br/>城市A-B:" + jpRes.FlightsCity + "<br/>航班描述:" + FlightsDescription.Replace("\r\n", "<br />") + "<br/>" + "价格描述:" + PriceDescription;
  1636. _detail.PriceNameContent = "(" + jpRes.FlightsCode + ")";
  1637. }
  1638. break;
  1639. case 98://其他款项
  1640. Grp_DecreasePayments gdpRes = _DecreasePayments.Where(s => s.Id == entity.CId).FirstOrDefault();
  1641. if (gdpRes != null)
  1642. {
  1643. _detail.PriceMsgContent = "备注:" + gdpRes.Remark;
  1644. _detail.PriceNameContent = gdpRes.PriceName;
  1645. }
  1646. break;
  1647. case 285://收款退还
  1648. Fin_PaymentRefundAndOtherMoney refundAndOtherMoney = _PaymentRefundAndOtherMoneys.Where(s => s.Id == entity.CId).FirstOrDefault();
  1649. if (refundAndOtherMoney != null)
  1650. {
  1651. _detail.PriceMsgContent = "备注:" + refundAndOtherMoney.Remark;
  1652. _detail.PriceNameContent = refundAndOtherMoney.PriceName;
  1653. }
  1654. break;
  1655. case 751://酒店早餐
  1656. break;
  1657. case 1015://超支费用
  1658. Fin_GroupExtraCost groupExtraCost = _GroupExtraCosts.Where(s => s.Id == entity.CId).FirstOrDefault();
  1659. if (groupExtraCost != null)
  1660. {
  1661. _detail.PriceNameContent = groupExtraCost.PriceName;
  1662. _detail.PriceMsgContent = "备注:" + groupExtraCost.Remark;
  1663. }
  1664. break;
  1665. default:
  1666. break;
  1667. }
  1668. /*
  1669. * 申请人
  1670. */
  1671. string operatorName = " - ";
  1672. Sys_Users _opUser = userItems.Where(s => s.Id == entity.CreateUserId).FirstOrDefault();
  1673. if (_opUser != null)
  1674. {
  1675. operatorName = _opUser.CnName;
  1676. }
  1677. _detail.OperatorName = operatorName;
  1678. /*
  1679. * 审核人
  1680. */
  1681. string auditOperatorName = "Unknown";
  1682. if (entity.AuditGMOperate == 0)
  1683. auditOperatorName = " - ";
  1684. else if (entity.AuditGMOperate == 4)
  1685. auditOperatorName = "自动审核";
  1686. else
  1687. {
  1688. Sys_Users _adUser = userItems.Where(s => s.Id == entity.AuditGMOperate).FirstOrDefault();
  1689. if (_adUser != null)
  1690. {
  1691. auditOperatorName = _adUser.CnName;
  1692. }
  1693. }
  1694. _detail.AuditOperatorName = auditOperatorName;
  1695. /*
  1696. * 超预算比例
  1697. */
  1698. string overBudgetStr = "";
  1699. if (entity.ExceedBudget == -1)
  1700. overBudgetStr = sdPriceName.Name + "尚无预算";
  1701. else if (entity.ExceedBudget == 0)
  1702. {
  1703. if (entity.CTable == 76 || entity.CTable == 79)
  1704. {
  1705. if (entity.IsAuditGM == 3) overBudgetStr = "未超预算";
  1706. else overBudgetStr = "超预算";
  1707. }
  1708. else
  1709. {
  1710. overBudgetStr = "未超预算";
  1711. }
  1712. }
  1713. else
  1714. overBudgetStr = entity.ExceedBudget.ToString("P");
  1715. _detail.OverBudget = overBudgetStr;
  1716. /*
  1717. * 费用总计
  1718. */
  1719. ccpCurrencyPrices.Add(new CreditCardPaymentCurrencyPriceItem()
  1720. {
  1721. CurrencyId = entity.PaymentCurrency,
  1722. CurrencyName = PaymentCurrency_WaitPay,
  1723. AmountPayable = entity.PayMoney,
  1724. ThisPayment = CurrPayStr,
  1725. BalancePayment = BalanceStr,
  1726. AuditedFunds = CurrPayStr
  1727. });
  1728. _detail.IsAuditGM = entity.IsAuditGM;
  1729. detailList.Add(_detail);
  1730. }
  1731. #endregion
  1732. _view.DetailList = new List<Grp_CreditCardPaymentDetailView>(detailList);
  1733. /*
  1734. * 下方描述处理
  1735. */
  1736. List<CreditCardPaymentCurrencyPriceItem> nonDuplicat = ccpCurrencyPrices.Where((x, i) => ccpCurrencyPrices.FindIndex(z => z.CurrencyId == x.CurrencyId) == i).ToList();//Lambda表达式去重
  1737. CreditCardPaymentCurrencyPriceItem ccpCurrencyPrice = nonDuplicat.Where(it => it.CurrencyId == 836).FirstOrDefault();
  1738. if (ccpCurrencyPrice != null)
  1739. {
  1740. int CNYIndex = nonDuplicat.IndexOf(ccpCurrencyPrice);
  1741. nonDuplicat.MoveItemAtIndexToFront(CNYIndex);
  1742. }
  1743. else
  1744. {
  1745. nonDuplicat.OrderBy(it => it.CurrencyId).ToList();
  1746. }
  1747. string amountPayableStr = string.Format(@"应付款总金额: ");
  1748. string thisPaymentStr = string.Format(@"此次付款总金额: ");
  1749. string balancePaymentStr = string.Format(@"目前剩余尾款总金额: ");
  1750. string auditedFundsStr = string.Format(@"已审费用总额: ");
  1751. foreach (var item in nonDuplicat)
  1752. {
  1753. var strs = ccpCurrencyPrices.Where(it => it.CurrencyId == item.CurrencyId).ToList();
  1754. if (strs.Count > 0)
  1755. {
  1756. decimal amountPayable = strs.Sum(it => it.AmountPayable);
  1757. decimal balancePayment = strs.Sum(it => it.BalancePayment);
  1758. amountPayableStr += string.Format(@"{0}{1}&nbsp;|", amountPayable.ToString("#0.00"), item.CurrencyName);
  1759. //单独处理此次付款金额
  1760. if (item.CurrencyId == 836) //人民币
  1761. {
  1762. decimal thisPayment = ccpCurrencyPrices.Sum(it => it.ThisPayment);
  1763. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", thisPayment.ToString("#0.00"), item.CurrencyName);
  1764. }
  1765. else
  1766. {
  1767. thisPaymentStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1768. }
  1769. balancePaymentStr += string.Format(@"{0}{1}&nbsp;|", balancePayment.ToString("#0.00"), item.CurrencyName);
  1770. //单独处理已审核费用
  1771. if (item.CurrencyId == 836) //人民币
  1772. {
  1773. decimal auditedFunds = ccpCurrencyPrices.Sum(it => it.AuditedFunds);
  1774. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", auditedFunds.ToString("#0.00"), item.CurrencyName);
  1775. }
  1776. else
  1777. {
  1778. auditedFundsStr += string.Format(@"{0}{1}&nbsp;|", "0.00", item.CurrencyName);
  1779. }
  1780. }
  1781. }
  1782. _view.TotalStr1 = amountPayableStr.Substring(0, amountPayableStr.Length - 1);
  1783. _view.TotalStr2 = thisPaymentStr.Substring(0, thisPaymentStr.Length - 1);
  1784. _view.TotalStr3 = balancePaymentStr.Substring(0, balancePaymentStr.Length - 1);
  1785. _view.TotalStr4 = auditedFundsStr.Substring(0, auditedFundsStr.Length - 1);
  1786. var _view1 = new
  1787. {
  1788. PageFuncAuth = pageFunAuthView,
  1789. Data = _view
  1790. };
  1791. return Ok(JsonView(_view1));
  1792. }
  1793. catch (Exception ex)
  1794. {
  1795. return Ok(JsonView(false, ex.Message));
  1796. }
  1797. }
  1798. /// <summary>
  1799. /// 费用审核
  1800. /// 修改团组费用审核状态
  1801. /// </summary>
  1802. /// <param name="_dto">参数Json字符串</param>
  1803. /// <returns></returns>
  1804. [HttpPost]
  1805. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1806. public async Task<IActionResult> PostAuditGrpCreditCardPayment(Edit_GrpCreditCardPaymentDto _dto)
  1807. {
  1808. #region 参数验证
  1809. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  1810. if (_dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  1811. #endregion
  1812. #region 页面操作权限验证
  1813. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1814. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  1815. if (pageFunAuthView.AuditAuth == 0) return Ok(JsonView(false, "您没有审核权限"));
  1816. #endregion
  1817. List<string> idList = _dto.CreditIdStr.Split(',').ToList();
  1818. Grp_CreditCardPayment _detail = _mapper.Map<Grp_CreditCardPayment>(_dto);
  1819. DateTime dtNow = DateTime.Now;
  1820. _groupRepository.BeginTran();
  1821. int rst = 0;
  1822. var creditDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && idList.Contains(it.Id.ToString())).ToList();
  1823. var creditTypeDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 16).ToList();
  1824. var creditCurrencyDatas = _grpScheduleRep._sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  1825. var groupDatas = _grpScheduleRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).ToList();
  1826. List<dynamic> msgDatas = new List<dynamic>();
  1827. Dictionary<int, int> dic_ccp_user = new Dictionary<int, int>() { };
  1828. foreach (var item in idList)
  1829. {
  1830. int CreditId = int.Parse(item);
  1831. var result = await _grpScheduleRep._sqlSugar.Updateable<Grp_CreditCardPayment>()
  1832. .SetColumns(it => it.IsAuditGM == _dto.AuditCode)
  1833. .SetColumns(it => it.AuditGMOperate == _dto.UserId)
  1834. .SetColumns(it => it.AuditGMDate == dtNow.ToString("yyyy-MM-dd HH:mm:ss"))
  1835. .Where(s => s.Id == CreditId)
  1836. .ExecuteCommandAsync();
  1837. if (result < 1)
  1838. {
  1839. rst = -1;
  1840. _groupRepository.RollbackTran();
  1841. return Ok(JsonView(false, "操作失败并回滚!"));
  1842. }
  1843. var creditData = creditDatas.Where(it => it.Id == CreditId).FirstOrDefault();
  1844. if (creditData != null)
  1845. {
  1846. #region 应用通知配置
  1847. try
  1848. {
  1849. dic_ccp_user.Add(creditData.Id, creditData.CreateUserId);
  1850. }
  1851. catch (Exception ex)
  1852. {
  1853. }
  1854. #endregion
  1855. string auditStr = _dto.AuditCode == 1 ? "已通过" : _dto.AuditCode == 2 ? "未通过" : "未审核";
  1856. string groupNameStr = string.Empty;
  1857. var groupData = groupDatas.Where(it => it.Id == creditData.DIId).FirstOrDefault();
  1858. if (groupData != null) groupNameStr = groupData.TeamName;
  1859. string creditTypeStr = string.Empty;
  1860. var creditTypeData = creditTypeDatas.Where(it => it.Id == creditData.CTable).FirstOrDefault();
  1861. if (creditTypeData != null) creditTypeStr = creditTypeData.Name;
  1862. string creditCurrency = string.Empty;
  1863. var creditCurrencyData = creditCurrencyDatas.Where(it => it.Id == creditData.PaymentCurrency).FirstOrDefault();
  1864. if (creditCurrencyData != null) creditCurrency = creditCurrencyData.Name;
  1865. if (creditCurrency.Equals("CNY"))
  1866. {
  1867. creditData.DayRate = 1.0000M;
  1868. }
  1869. if (creditData.PayPercentage == 0.00M)
  1870. {
  1871. creditData.PayPercentage = 100M;
  1872. }
  1873. decimal CNYPrice = (creditData.PayMoney * (creditData.PayPercentage / 100)) * creditData.DayRate;
  1874. string msgTitle = $"[{groupNameStr}({creditTypeStr})]的费用申请";
  1875. string msgContent = "";
  1876. if (creditCurrency.Equals("CNY"))
  1877. {
  1878. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY) {auditStr}!";
  1879. }
  1880. else
  1881. {
  1882. msgContent = $"[{groupNameStr}({creditTypeStr})]费用申请(金额:{CNYPrice.ToString("0.00")} CNY({creditData.PayMoney.ToString("0.00")} {creditCurrency})) {auditStr}!";
  1883. }
  1884. msgDatas.Add(new { DiId = creditData.DIId, UserId = creditData.CreateUserId, MsgTitle = msgTitle, MsgContent = msgContent });
  1885. }
  1886. }
  1887. if (rst == 0)
  1888. {
  1889. _groupRepository.CommitTran();
  1890. foreach (var item in msgDatas)
  1891. {
  1892. //发送消息
  1893. GeneralMethod.MessageIssueAndNotification(MessageTypeEnum.GroupExpenseAudit, item.MsgTitle, item.MsgContent, new List<int>() { item.UserId }, item.DiId);
  1894. }
  1895. #region 应用推送
  1896. try
  1897. {
  1898. foreach (var ccpId in dic_ccp_user.Keys)
  1899. {
  1900. List<string> templist = new List<string>() { dic_ccp_user[ccpId].ToString() };
  1901. await AppNoticeLibrary.SendUserMsg_GroupStatus_AuditFee(ccpId, templist, QiyeWeChatEnum.CaiWuChat);
  1902. }
  1903. }
  1904. catch (Exception)
  1905. {
  1906. }
  1907. #endregion
  1908. return Ok(JsonView(true, "操作成功!"));
  1909. }
  1910. return Ok(JsonView(false, "操作失败!"));
  1911. }
  1912. #endregion
  1913. #region 机票费用录入
  1914. /// <summary>
  1915. /// 机票录入当前登录人可操作团组
  1916. /// </summary>
  1917. /// <param name="dto"></param>
  1918. /// <returns></returns>
  1919. [HttpPost]
  1920. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1921. public async Task<IActionResult> AirTicketResSelect(AirTicketResDto dto)
  1922. {
  1923. try
  1924. {
  1925. Result groupData = await _airTicketResRep.AirTicketResSelect(dto);
  1926. if (groupData.Code != 0)
  1927. {
  1928. return Ok(JsonView(false, groupData.Msg));
  1929. }
  1930. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1931. }
  1932. catch (Exception ex)
  1933. {
  1934. return Ok(JsonView(false, "程序错误!"));
  1935. throw;
  1936. }
  1937. }
  1938. /// <summary>
  1939. /// 机票费用录入列表
  1940. /// </summary>
  1941. /// <param name="dto"></param>
  1942. /// <returns></returns>
  1943. [HttpPost]
  1944. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1945. public async Task<IActionResult> AirTicketResList(AirTicketResDto dto)
  1946. {
  1947. try
  1948. {
  1949. Result groupData = await _airTicketResRep.AirTicketResList(dto);
  1950. if (groupData.Code != 0)
  1951. {
  1952. return Ok(JsonView(false, groupData.Msg));
  1953. }
  1954. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1955. }
  1956. catch (Exception ex)
  1957. {
  1958. return Ok(JsonView(false, ex.Message));
  1959. throw;
  1960. }
  1961. }
  1962. /// <summary>
  1963. /// 根据id查询费用录入信息
  1964. /// </summary>
  1965. /// <param name="dto"></param>
  1966. /// <returns></returns>
  1967. [HttpPost]
  1968. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1969. public async Task<IActionResult> AirTicketResById(AirTicketResByIdDto dto)
  1970. {
  1971. try
  1972. {
  1973. Result groupData = await _airTicketResRep.AirTicketResById(dto);
  1974. if (groupData.Code != 0)
  1975. {
  1976. return Ok(JsonView(false, groupData.Msg));
  1977. }
  1978. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  1979. }
  1980. catch (Exception ex)
  1981. {
  1982. return Ok(JsonView(false, "程序错误!"));
  1983. throw;
  1984. }
  1985. }
  1986. /// <summary>
  1987. /// 机票费用录入操作(Status:1.新增,2.修改)
  1988. /// </summary>
  1989. /// <param name="dto"></param>
  1990. /// <returns></returns>
  1991. [HttpPost]
  1992. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1993. public async Task<IActionResult> OpAirTicketRes(AirTicketResOpDto dto)
  1994. {
  1995. try
  1996. {
  1997. Result groupData = await _airTicketResRep.OpAirTicketRes(dto, _setDataRep.PostCurrencyByDiid);
  1998. if (groupData.Code != 0)
  1999. {
  2000. return Ok(JsonView(false, groupData.Msg));
  2001. }
  2002. #region 应用推送
  2003. try
  2004. {
  2005. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2006. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2007. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2008. }
  2009. catch (Exception ex)
  2010. {
  2011. }
  2012. #endregion
  2013. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2014. }
  2015. catch (Exception ex)
  2016. {
  2017. return Ok(JsonView(false, "程序错误!"));
  2018. throw;
  2019. }
  2020. }
  2021. /// <summary>
  2022. /// 根据舱位类型查询接团客户名单信息
  2023. /// </summary>
  2024. /// <param name="dto"></param>
  2025. /// <returns></returns>
  2026. [HttpPost]
  2027. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2028. public async Task<IActionResult> tankType(AirTicketResByIdDto dto)
  2029. {
  2030. try
  2031. {
  2032. List<Crm_GroupCustomer> crm_Groups = _sqlSugar.Queryable<Crm_GroupCustomer>().Where(a => a.IsDel == 0 && a.AirType == dto.Id).ToList();
  2033. if (crm_Groups.Count != 0)
  2034. {
  2035. List<dynamic> Customer = new List<dynamic>();
  2036. foreach (var item in crm_Groups)
  2037. {
  2038. var data = new
  2039. {
  2040. Id = item.Id,
  2041. Pinyin = item.Pinyin,
  2042. Name = item.LastName + item.FirstName
  2043. };
  2044. Customer.Add(data);
  2045. }
  2046. return Ok(JsonView(true, "查询成功!", Customer));
  2047. }
  2048. return Ok(JsonView(true, "暂无数据", crm_Groups));
  2049. }
  2050. catch (Exception ex)
  2051. {
  2052. return Ok(JsonView(false, "程序错误!"));
  2053. throw;
  2054. }
  2055. }
  2056. /// <summary>
  2057. /// 根据团号获取客户信息
  2058. /// </summary>
  2059. /// <param name="dto"></param>
  2060. /// <returns></returns>
  2061. [HttpPost]
  2062. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2063. public IActionResult QueryClientInfoByDIID(QueryClientInfoByDIIDDto dto)
  2064. {
  2065. var jw = JsonView(false);
  2066. if (dto.DIID < 1)
  2067. {
  2068. jw.Msg += "请输入正确的diid";
  2069. return Ok(jw);
  2070. }
  2071. var arr = getSimplClientList(dto.DIID);
  2072. jw = JsonView(true, "获取成功!", arr);
  2073. return Ok(jw);
  2074. }
  2075. private List<SimplClientInfo> getSimplClientList(int diId)
  2076. {
  2077. 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);
  2078. List<SimplClientInfo> arr = _sqlSugar.SqlQueryable<SimplClientInfo>(sql).ToList();
  2079. return arr;
  2080. }
  2081. private string getClientNameStr(List<SimplClientInfo> list, string origin)
  2082. {
  2083. string result = origin;
  2084. if (Regex.Match(origin, @"\d+,?").Value.Length > 0)
  2085. {
  2086. string[] temparr = origin.Split(',');
  2087. string fistrStr = temparr[0];
  2088. int count = temparr.Count();
  2089. int tempId;
  2090. bool success = int.TryParse(fistrStr, out tempId);
  2091. if (success)
  2092. {
  2093. SimplClientInfo tempInfo = list.FirstOrDefault(s => s.Id == tempId);
  2094. if (tempInfo != null)
  2095. {
  2096. if (count > 1)
  2097. {
  2098. result = string.Format(@"{0}{1}等{2}人", tempInfo.LastName, tempInfo.FirstName, count);
  2099. }
  2100. else
  2101. {
  2102. result = string.Format(@"{0}{1}", tempInfo.LastName, tempInfo.FirstName);
  2103. }
  2104. }
  2105. }
  2106. }
  2107. return result;
  2108. }
  2109. /// <summary>
  2110. /// 机票费用录入,删除
  2111. /// </summary>
  2112. /// <param name="dto"></param>
  2113. /// <returns></returns>
  2114. [HttpPost]
  2115. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2116. public async Task<IActionResult> DelAirTicketRes(DelBaseDto dto)
  2117. {
  2118. try
  2119. {
  2120. var res = await _airTicketResRep.SoftDeleteByIdAsync<Grp_AirTicketReservations>(dto.Id.ToString(), dto.DeleteUserId);
  2121. if (res)
  2122. {
  2123. var result = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.CTable == 85).SetColumns(a => new Grp_CreditCardPayment()
  2124. {
  2125. IsDel = 1,
  2126. DeleteUserId = dto.DeleteUserId,
  2127. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  2128. }).ExecuteCommandAsync();
  2129. return Ok(JsonView(true, "删除成功!"));
  2130. }
  2131. return Ok(JsonView(false, "删除失败!"));
  2132. }
  2133. catch (Exception ex)
  2134. {
  2135. return Ok(JsonView(false, "程序错误!"));
  2136. throw;
  2137. }
  2138. }
  2139. /// <summary>
  2140. /// 导出机票录入报表
  2141. /// </summary>
  2142. /// <param name="dto"></param>
  2143. /// <returns></returns>
  2144. [HttpPost]
  2145. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2146. public async Task<IActionResult> DeriveAirTicketRes(AirTicketResDto dto)
  2147. {
  2148. try
  2149. {
  2150. Result groupData = await _airTicketResRep.DeriveAirTicketRes(dto);
  2151. if (groupData.Code != 0)
  2152. {
  2153. return Ok(JsonView(StatusCodes.Status400BadRequest, groupData.Msg, ""));
  2154. }
  2155. else
  2156. {
  2157. List<AirTicketReservationsPayView> AirTicketReservations = groupData.Data.GetType().GetProperty("AirTicketRes").GetValue(groupData.Data);
  2158. if (AirTicketReservations.Count != 0)
  2159. {
  2160. Grp_DelegationInfo DelegationInfo = groupData.Data.GetType().GetProperty("Delegation").GetValue(groupData.Data);
  2161. Sys_Users _Users = groupData.Data.GetType().GetProperty("Users").GetValue(groupData.Data);
  2162. string diCode = DelegationInfo != null ? DelegationInfo.TourCode : "XXX";
  2163. string diName = DelegationInfo != null ? DelegationInfo.TeamName : "XXX";
  2164. WorkbookDesigner designer = new WorkbookDesigner();
  2165. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/机票预订费用报表模板.xlsx");
  2166. decimal countCost = 0;
  2167. foreach (var item in AirTicketReservations)
  2168. {
  2169. #region 处理客人姓名
  2170. string clientNames = _tourClientListRep._ResolveCustomerName(item.ClientName);
  2171. item.ClientName = clientNames;
  2172. #endregion
  2173. if (item.BankType == "其他")
  2174. {
  2175. item.BankNo = "--";
  2176. }
  2177. else
  2178. {
  2179. if (!string.IsNullOrEmpty(item.BankType))
  2180. {
  2181. item.BankNo = item.BankType + ":" + item.BankNo?.Substring(0, 3);
  2182. }
  2183. }
  2184. item.PrePrice = System.Decimal.Round(item.PrePrice, 2);
  2185. item.Price = System.Decimal.Round(item.Price, 2);
  2186. countCost += Convert.ToDecimal(item.Price);
  2187. }
  2188. designer.SetDataSource("Export", AirTicketReservations);
  2189. designer.SetDataSource("ExportDiCode", diCode);
  2190. designer.SetDataSource("ExportDiName", diName);
  2191. designer.SetDataSource("ExportOpUserName", _Users.CnName);
  2192. designer.SetDataSource("ExportCountCost", countCost + "(" + AirTicketReservations[0].CurrencyStr);
  2193. designer.Process();
  2194. string fileName = ("AirfareStatement/" + diName + "机票费用报表" + "_" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xlsx").Replace(":", "");
  2195. designer.Workbook.Save(AppSettingsHelper.Get("ExcelBasePath") + fileName);
  2196. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  2197. return Ok(JsonView(true, "成功", url = rst));
  2198. }
  2199. else
  2200. {
  2201. return Ok(JsonView(StatusCodes.Status400BadRequest, "暂无数据!", ""));
  2202. }
  2203. }
  2204. }
  2205. catch (Exception ex)
  2206. {
  2207. return Ok(JsonView(StatusCodes.Status400BadRequest, ex.Message, ""));
  2208. throw;
  2209. }
  2210. }
  2211. Dictionary<string, string> transDic = new Dictionary<string, string>();
  2212. /// <summary>
  2213. /// 行程单导出
  2214. /// </summary>
  2215. /// <param name="dto"></param>
  2216. /// <returns></returns>
  2217. [HttpPost]
  2218. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2219. public async Task<IActionResult> ItineraryAirTicketRes(ItineraryAirTicketResDto dto)
  2220. {
  2221. try
  2222. {
  2223. Result groupData = await _airTicketResRep.ItineraryAirTicketRes(dto);
  2224. if (groupData.Code != 0)
  2225. {
  2226. return Ok(JsonView(StatusCodes.Status400BadRequest, groupData.Msg, ""));
  2227. }
  2228. else
  2229. {
  2230. List<AirTicketReservationsView> _AirTicketReservations = groupData.Data;
  2231. if (dto.Language == "CN")
  2232. {
  2233. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_CN.docx");
  2234. DocumentBuilder builder = new DocumentBuilder(doc);
  2235. int tableIndex = 0;//表格索引
  2236. //得到文档中的第一个表格
  2237. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2238. foreach (var item in _AirTicketReservations)
  2239. {
  2240. #region 处理固定数据
  2241. string[] FlightsCode = item.FlightsCode.Split('/');
  2242. if (FlightsCode.Length != 0)
  2243. {
  2244. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2245. if (_AirCompany != null)
  2246. {
  2247. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2248. }
  2249. else
  2250. {
  2251. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2252. }
  2253. }
  2254. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2255. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2256. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2257. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2258. string name = "";
  2259. foreach (string clientName in nameArray)
  2260. {
  2261. if (!name.Contains(clientName))
  2262. {
  2263. name += clientName + ",";
  2264. }
  2265. }
  2266. if (!string.IsNullOrWhiteSpace(name))
  2267. {
  2268. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2269. }
  2270. else
  2271. {
  2272. table.Range.Bookmarks["ClientName"].Text = "--";
  2273. }
  2274. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2275. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2276. table.Range.Bookmarks["JointTicket"].Text = "--";
  2277. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2278. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2279. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2280. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2281. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2282. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2283. #endregion
  2284. #region 循环数据处理
  2285. List<AirInfo> airs = new List<AirInfo>();
  2286. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2287. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2288. for (int i = 0; i < FlightsCode.Length; i++)
  2289. {
  2290. AirInfo air = new AirInfo();
  2291. string[] tempstr = DayArray[i]
  2292. .Replace("\r\n", string.Empty)
  2293. .Replace("\\r\\n", string.Empty)
  2294. .TrimStart().TrimEnd()
  2295. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2296. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2297. string starCity = "";
  2298. if (star_Three != null)
  2299. {
  2300. starCity = star_Three.AirPort;
  2301. }
  2302. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2303. string EndCity = "";
  2304. if (End_Three != null)
  2305. {
  2306. EndCity = End_Three.AirPort;
  2307. }
  2308. air.Destination = starCity + "/" + EndCity;
  2309. air.Flight = FlightsCode[i];
  2310. air.SeatingClass = item.CTypeName;
  2311. string dateTime = tempstr[2];
  2312. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2313. air.FlightDate = DateTemp;
  2314. air.DepartureTime = tempstr[5];
  2315. air.LandingTime = tempstr[6];
  2316. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2317. air.TicketStatus = "--";
  2318. air.Luggage = "--";
  2319. air.DepartureTerminal = "--";
  2320. air.LandingTerminal = "--";
  2321. airs.Add(air);
  2322. }
  2323. int row = 13;
  2324. for (int i = 0; i < airs.Count; i++)
  2325. {
  2326. if (airs.Count > 2)
  2327. {
  2328. for (int j = 0; j < airs.Count - 2; j++)
  2329. {
  2330. var CopyRow = table.Rows[12].Clone(true);
  2331. table.Rows.Add(CopyRow);
  2332. }
  2333. }
  2334. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2335. int index = 0;
  2336. foreach (PropertyInfo property in properties)
  2337. {
  2338. string value = property.GetValue(airs[i]).ToString();
  2339. Cell ishcel0 = table.Rows[row].Cells[index];
  2340. Paragraph p = new Paragraph(doc);
  2341. string s = value;
  2342. p.AppendChild(new Run(doc, s));
  2343. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2344. ishcel0.AppendChild(p);
  2345. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2346. index++;
  2347. }
  2348. row++;
  2349. }
  2350. #endregion
  2351. Paragraph lastParagraph = new Paragraph(doc);
  2352. //第一个表格末尾加段落
  2353. table.ParentNode.InsertAfter(lastParagraph, table);
  2354. //复制第一个表格
  2355. Table cloneTable = (Table)table.Clone(true);
  2356. //在文档末尾段落后面加入复制的表格
  2357. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2358. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2359. {
  2360. int rownewsIndex = 13;
  2361. for (int i = 0; i < 2; i++)
  2362. {
  2363. var CopyRow = table.Rows[12].Clone(true);
  2364. table.Rows.RemoveAt(13);
  2365. table.Rows.Add(CopyRow);
  2366. rownewsIndex++;
  2367. }
  2368. }
  2369. else
  2370. {
  2371. table.Rows.RemoveAt(12);
  2372. }
  2373. cloneTable.Rows.RemoveAt(12);
  2374. }
  2375. if (_AirTicketReservations.Count != 0)
  2376. {
  2377. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2378. if (FlightsCode.Length != 0)
  2379. {
  2380. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2381. if (_AirCompany != null)
  2382. {
  2383. table.Range.Bookmarks["AirlineCompany"].Text = _AirCompany.CnName;
  2384. }
  2385. else
  2386. {
  2387. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2388. }
  2389. }
  2390. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2391. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2392. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2393. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2394. string name = "";
  2395. foreach (string clientName in nameArray)
  2396. {
  2397. if (!name.Contains(clientName))
  2398. {
  2399. name += clientName + ",";
  2400. }
  2401. }
  2402. if (!string.IsNullOrWhiteSpace(name))
  2403. {
  2404. table.Range.Bookmarks["ClientName"].Text = name.Substring(0, name.Length - 1);
  2405. }
  2406. else
  2407. {
  2408. table.Range.Bookmarks["ClientName"].Text = "--";
  2409. }
  2410. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2411. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2412. table.Range.Bookmarks["JointTicket"].Text = "--";
  2413. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2414. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2415. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2416. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2417. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2418. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2419. }
  2420. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2421. //保存合并后的文档
  2422. string fileName = "AirItinerary/电子客票中文行程单_CN.docx";
  2423. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2424. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2425. return Ok(JsonView(true, "成功!", rst));
  2426. }
  2427. else
  2428. {
  2429. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/电子客票行程单模板_EN.docx");
  2430. DocumentBuilder builder = new DocumentBuilder(doc);
  2431. int tableIndex = 0;//表格索引
  2432. //得到文档中的第一个表格
  2433. Table table = (Table)doc.GetChild(NodeType.Table, tableIndex, true);
  2434. List<string> texts = new List<string>();
  2435. foreach (var item in _AirTicketReservations)
  2436. {
  2437. string[] FlightsCode = item.FlightsCode.Split('/');
  2438. if (FlightsCode.Length != 0)
  2439. {
  2440. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2441. if (_AirCompany != null)
  2442. {
  2443. if (!transDic.ContainsKey(_AirCompany.CnName))
  2444. {
  2445. transDic.Add(_AirCompany.CnName, _AirCompany.EnName);
  2446. }
  2447. }
  2448. else
  2449. {
  2450. if (!transDic.ContainsKey("--"))
  2451. {
  2452. transDic.Add("--", "--");
  2453. }
  2454. }
  2455. }
  2456. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2457. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2458. string name = "";
  2459. foreach (string clientName in nameArray)
  2460. {
  2461. name += clientName + ",";
  2462. }
  2463. if (!texts.Contains(name))
  2464. {
  2465. texts.Add(name);
  2466. }
  2467. List<AirInfo> airs = new List<AirInfo>();
  2468. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2469. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2470. for (int i = 0; i < FlightsCode.Length; i++)
  2471. {
  2472. AirInfo air = new AirInfo();
  2473. string[] tempstr = DayArray[i]
  2474. .Replace("\r\n", string.Empty)
  2475. .Replace("\\r\\n", string.Empty)
  2476. .TrimStart().TrimEnd()
  2477. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2478. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2479. if (star_Three != null)
  2480. {
  2481. if (!transDic.ContainsKey(star_Three.AirPort))
  2482. {
  2483. transDic.Add(star_Three.AirPort, star_Three.AirPort_En);
  2484. }
  2485. }
  2486. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2487. if (End_Three != null)
  2488. {
  2489. if (!transDic.ContainsKey(End_Three.AirPort))
  2490. {
  2491. transDic.Add(End_Three.AirPort, End_Three.AirPort_En);
  2492. }
  2493. }
  2494. if (!texts.Contains(item.CTypeName))
  2495. {
  2496. texts.Add(item.CTypeName);
  2497. }
  2498. }
  2499. }
  2500. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  2501. if (transData.Count > 0)
  2502. {
  2503. foreach (TranslateResult item in transData)
  2504. {
  2505. if (!transDic.ContainsKey(item.Query))
  2506. {
  2507. transDic.Add(item.Query, item.Translation);
  2508. }
  2509. }
  2510. }
  2511. foreach (var item in _AirTicketReservations)
  2512. {
  2513. #region 处理固定数据
  2514. string[] FlightsCode = item.FlightsCode.Split('/');
  2515. if (FlightsCode.Length != 0)
  2516. {
  2517. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2518. if (_AirCompany != null)
  2519. {
  2520. string str = "--";
  2521. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2522. if (!string.IsNullOrEmpty(translateResult))
  2523. {
  2524. str = translateResult;
  2525. str = _airTicketResRep.Processing(str);
  2526. }
  2527. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2528. }
  2529. else
  2530. {
  2531. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2532. }
  2533. }
  2534. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2535. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2536. string[] nameArray = Regex.Split(item.ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2537. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2538. string names = "";
  2539. foreach (string clientName in nameArray)
  2540. {
  2541. names += clientName + ",";
  2542. }
  2543. if (!string.IsNullOrWhiteSpace(names))
  2544. {
  2545. string str = "--";
  2546. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2547. if (!string.IsNullOrEmpty(translateResult))
  2548. {
  2549. str = translateResult;
  2550. str = _airTicketResRep.Processing(str);
  2551. }
  2552. table.Range.Bookmarks["ClientName"].Text = str;
  2553. }
  2554. else
  2555. {
  2556. table.Range.Bookmarks["ClientName"].Text = "--";
  2557. }
  2558. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2559. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2560. table.Range.Bookmarks["JointTicket"].Text = "--";
  2561. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2562. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2563. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2564. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2565. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2566. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2567. #endregion
  2568. #region 循环数据处理
  2569. List<AirInfo> airs = new List<AirInfo>();
  2570. string[] DayArray = Regex.Split(item.FlightsDescription, "\\d+\\.", RegexOptions.IgnoreCase);
  2571. DayArray = DayArray.Where(s => s != " " && s != "" && !string.IsNullOrEmpty(s)).ToArray();
  2572. for (int i = 0; i < FlightsCode.Length; i++)
  2573. {
  2574. AirInfo air = new AirInfo();
  2575. string[] tempstr = DayArray[i]
  2576. .Replace("\r\n", string.Empty)
  2577. .Replace("\\r\\n", string.Empty)
  2578. .TrimStart().TrimEnd()
  2579. .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  2580. Res_ThreeCode star_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(0, 3));
  2581. string starCity = "";
  2582. if (star_Three != null)
  2583. {
  2584. string str2 = "--";
  2585. string translateResult2 = transDic.Where(s => s.Key == star_Three.AirPort).FirstOrDefault().Value;
  2586. if (!string.IsNullOrEmpty(translateResult2))
  2587. {
  2588. str2 = translateResult2;
  2589. str2 = _airTicketResRep.Processing(str2);
  2590. }
  2591. starCity = str2;
  2592. }
  2593. Res_ThreeCode End_Three = _sqlSugar.Queryable<Res_ThreeCode>().First(a => a.Three == tempstr[3].Substring(3, 3));
  2594. string EndCity = "";
  2595. if (End_Three != null)
  2596. {
  2597. string str1 = "--";
  2598. string translateResult1 = transDic.Where(s => s.Key == End_Three.AirPort).FirstOrDefault().Value;
  2599. if (!string.IsNullOrEmpty(translateResult1))
  2600. {
  2601. str1 = translateResult1;
  2602. str1 = _airTicketResRep.Processing(str1);
  2603. }
  2604. EndCity = str1;
  2605. }
  2606. air.Destination = starCity + "/" + EndCity;
  2607. air.Flight = FlightsCode[i];
  2608. string str = "--";
  2609. string translateResult = transDic.Where(s => s.Key == item.CTypeName).FirstOrDefault().Value;
  2610. if (!string.IsNullOrEmpty(translateResult))
  2611. {
  2612. str = translateResult;
  2613. str = _airTicketResRep.Processing(str);
  2614. }
  2615. air.SeatingClass = str;
  2616. string dateTime = tempstr[2];
  2617. string DateTemp = dateTime.Substring(2, 5).ToUpper();
  2618. air.FlightDate = DateTemp;
  2619. air.DepartureTime = tempstr[5];
  2620. air.LandingTime = tempstr[6];
  2621. air.ValidityPeriod = DateTemp + "/" + DateTemp;
  2622. air.TicketStatus = "--";
  2623. air.Luggage = "--";
  2624. air.DepartureTerminal = "--";
  2625. air.LandingTerminal = "--";
  2626. airs.Add(air);
  2627. }
  2628. int row = 13;
  2629. for (int i = 0; i < airs.Count; i++)
  2630. {
  2631. if (airs.Count > 2)
  2632. {
  2633. for (int j = 0; j < airs.Count - 2; j++)
  2634. {
  2635. var CopyRow = table.Rows[12].Clone(true);
  2636. table.Rows.Add(CopyRow);
  2637. }
  2638. }
  2639. PropertyInfo[] properties = airs[i].GetType().GetProperties();
  2640. int index = 0;
  2641. foreach (PropertyInfo property in properties)
  2642. {
  2643. string value = property.GetValue(airs[i]).ToString();
  2644. Cell ishcel0 = table.Rows[row].Cells[index];
  2645. Paragraph p = new Paragraph(doc);
  2646. string s = value;
  2647. p.AppendChild(new Run(doc, s));
  2648. p.ParagraphFormat.Alignment = ParagraphAlignment.Center;//水平居中对齐
  2649. ishcel0.AppendChild(p);
  2650. ishcel0.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//垂直居中对齐
  2651. //ishcel0.CellFormat.VerticalAlignment=
  2652. index++;
  2653. }
  2654. row++;
  2655. }
  2656. #endregion
  2657. Paragraph lastParagraph = new Paragraph(doc);
  2658. //第一个表格末尾加段落
  2659. table.ParentNode.InsertAfter(lastParagraph, table);
  2660. //复制第一个表格
  2661. Table cloneTable = (Table)table.Clone(true);
  2662. //在文档末尾段落后面加入复制的表格
  2663. table.ParentNode.InsertAfter(cloneTable, lastParagraph);
  2664. if (item != _AirTicketReservations[_AirTicketReservations.Count - 1])
  2665. {
  2666. int rownewsIndex = 13;
  2667. for (int i = 0; i < 2; i++)
  2668. {
  2669. var CopyRow = table.Rows[12].Clone(true);
  2670. table.Rows.RemoveAt(13);
  2671. table.Rows.Add(CopyRow);
  2672. rownewsIndex++;
  2673. }
  2674. }
  2675. else
  2676. {
  2677. table.Rows.RemoveAt(12);
  2678. }
  2679. cloneTable.Rows.RemoveAt(12);
  2680. }
  2681. if (_AirTicketReservations.Count != 0)
  2682. {
  2683. string[] FlightsCode = _AirTicketReservations[0].FlightsCode.Split('/');
  2684. if (FlightsCode.Length != 0)
  2685. {
  2686. Res_AirCompany _AirCompany = _sqlSugar.Queryable<Res_AirCompany>().First(a => a.ShortCode == FlightsCode[0].Substring(0, 2));
  2687. if (_AirCompany != null)
  2688. {
  2689. string str = "--";
  2690. string translateResult = transDic.Where(s => s.Key == _AirCompany.CnName).FirstOrDefault().Value;
  2691. if (!string.IsNullOrEmpty(translateResult))
  2692. {
  2693. str = translateResult;
  2694. str = _airTicketResRep.Processing(str);
  2695. }
  2696. table.Range.Bookmarks["AirlineCompany"].Text = str;
  2697. }
  2698. else
  2699. {
  2700. table.Range.Bookmarks["AirlineCompany"].Text = "--";
  2701. }
  2702. }
  2703. table.Range.Bookmarks["AirlineRecordCode"].Text = "--";
  2704. table.Range.Bookmarks["ReservationRecordCode"].Text = "--";
  2705. string[] nameArray = Regex.Split(_AirTicketReservations[0].ClientName, "\\d+\\.", RegexOptions.IgnoreCase);
  2706. nameArray = nameArray.Where(str => str != "" && str != " " && !string.IsNullOrEmpty(str)).ToArray();
  2707. string names = "";
  2708. foreach (string clientName in nameArray)
  2709. {
  2710. names += clientName + ",";
  2711. }
  2712. if (!string.IsNullOrWhiteSpace(names))
  2713. {
  2714. string str = "--";
  2715. string translateResult = transDic.Where(s => s.Key == names).FirstOrDefault().Value;
  2716. if (!string.IsNullOrEmpty(translateResult))
  2717. {
  2718. str = translateResult;
  2719. str = _airTicketResRep.Processing(str);
  2720. }
  2721. table.Range.Bookmarks["ClientName"].Text = str;
  2722. }
  2723. else
  2724. {
  2725. table.Range.Bookmarks["ClientName"].Text = "--";
  2726. }
  2727. table.Range.Bookmarks["TicketNumber"].Text = "--";
  2728. table.Range.Bookmarks["IdentificationCode"].Text = "--";
  2729. table.Range.Bookmarks["JointTicket"].Text = "--";
  2730. table.Range.Bookmarks["TimeIssue"].Text = "--";
  2731. table.Range.Bookmarks["DrawingAgent"].Text = "--";
  2732. table.Range.Bookmarks["NavigationCode"].Text = "--";
  2733. table.Range.Bookmarks["AgentsAddress"].Text = "--";
  2734. table.Range.Bookmarks["AgentPhone"].Text = "--";
  2735. table.Range.Bookmarks["AgentFacsimile"].Text = "--";
  2736. }
  2737. doc.MailMerge.Execute(new[] { "PageCount" }, new object[] { doc.PageCount });
  2738. //保存合并后的文档
  2739. string fileName = "AirItinerary/电子客票英文行程单_EN.docx";
  2740. string rst = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + fileName;
  2741. doc.Save(AppSettingsHelper.Get("WordBasePath") + fileName);
  2742. return Ok(JsonView(true, "成功!", rst));
  2743. }
  2744. }
  2745. }
  2746. catch (Exception ex)
  2747. {
  2748. return Ok(JsonView(StatusCodes.Status400BadRequest, "程序错误!", ""));
  2749. throw;
  2750. }
  2751. }
  2752. #endregion
  2753. #region 团组增减款项 --> 其他款项
  2754. /// <summary>
  2755. /// 团组增减款项下拉框绑定
  2756. /// </summary>
  2757. /// <param name="dto"></param>
  2758. /// <returns></returns>
  2759. [HttpPost]
  2760. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2761. public async Task<IActionResult> DecreasePaymentsSelect(DecreasePaymentsDto dto)
  2762. {
  2763. #region 参数验证
  2764. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2765. if (dto.CTId < 1) return Ok(JsonView(false, "请传入有效的CTId参数!"));
  2766. #endregion
  2767. return Ok(await _decreasePaymentsRep.DecreasePaymentsSelect(dto));
  2768. }
  2769. /// <summary>
  2770. /// 根据团组Id查询团组增减款项
  2771. /// </summary>
  2772. /// <param name="dto"></param>
  2773. /// <returns></returns>
  2774. [HttpPost]
  2775. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2776. public async Task<IActionResult> DecreasePaymentsList(DecreasePaymentsListDto dto)
  2777. {
  2778. #region 参数验证
  2779. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2780. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  2781. #endregion
  2782. return Ok(await _decreasePaymentsRep.DecreasePaymentsList(dto));
  2783. }
  2784. /// <summary>
  2785. /// 团组增减款项操作(Status:1.新增,2.修改)
  2786. /// </summary>
  2787. /// <param name="dto"></param>
  2788. /// <returns></returns>
  2789. [HttpPost]
  2790. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2791. public async Task<IActionResult> OpDecreasePayments(DecreasePaymentsOpDto dto)
  2792. {
  2793. JsonView groupData = await _decreasePaymentsRep.OpDecreasePayments(dto);
  2794. if (groupData.Code != 200)
  2795. {
  2796. return Ok(JsonView(false, groupData.Msg));
  2797. }
  2798. #region 应用推送
  2799. int ccpId = (int)groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  2800. int sign = (int)groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  2801. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  2802. #endregion
  2803. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2804. }
  2805. /// <summary>
  2806. /// 团组增减款项操作 删除
  2807. /// </summary>
  2808. /// <param name="dto"></param>
  2809. /// <returns></returns>
  2810. [HttpPost]
  2811. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2812. public async Task<IActionResult> DelDecreasePayments(DelBaseDto dto)
  2813. {
  2814. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  2815. if (dto.DeleteUserId < 1) return Ok(JsonView(false, "请传入有效的DeleteUserId参数!"));
  2816. var res = await _decreasePaymentsRep._Del(dto.Id, dto.DeleteUserId);
  2817. if (res.Code == 0)
  2818. {
  2819. return Ok(JsonView(true, "删除成功!"));
  2820. }
  2821. return Ok(JsonView(false, "删除失败!"));
  2822. }
  2823. /// <summary>
  2824. /// 根据团组增减款项Id查询
  2825. /// </summary>
  2826. /// <param name="dto"></param>
  2827. /// <returns></returns>
  2828. [HttpPost]
  2829. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2830. public async Task<IActionResult> QueryDecreasePaymentsById(DecreasePaymentsByIdDto dto)
  2831. {
  2832. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的数据Id!"));
  2833. return Ok(await _decreasePaymentsRep.QueryDecreasePaymentsById(dto));
  2834. }
  2835. /// <summary>
  2836. /// 查询供应商名称
  2837. /// </summary>
  2838. /// <param name="dto"></param>
  2839. /// <returns></returns>
  2840. [HttpPost]
  2841. public IActionResult QueryAssociateSupplier(AssociateSupplierDto dto)
  2842. {
  2843. var dbResult = _sqlSugar.Queryable<Grp_DecreasePayments>()
  2844. .Where(x => x.SupplierName.Contains(dto.param) && x.IsDel == 0).ToList()
  2845. ?? new List<Grp_DecreasePayments>();
  2846. dbResult = dbResult.Distinct(new
  2847. ProductComparer()).ToList();
  2848. var jw = JsonView(true, "success", dbResult.OrderByDescending(x => x.Id).Select(x => new
  2849. {
  2850. x.Id,
  2851. x.SupplierAddress,
  2852. x.SupplierArea,
  2853. x.SupplierContact,
  2854. x.SupplierContactNumber,
  2855. x.SupplierEmail,
  2856. x.SupplierName,
  2857. x.SupplierSocialAccount,
  2858. x.SupplierTypeId,
  2859. }).ToList());
  2860. return Ok(jw);
  2861. }
  2862. #endregion
  2863. #region 文件上传、删除
  2864. /// <summary>
  2865. /// region 文件上传 可以带参数
  2866. /// </summary>
  2867. /// <param name="file"></param>
  2868. /// <returns></returns>
  2869. [HttpPost]
  2870. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2871. public async Task<IActionResult> UploadProject(IFormFile file)
  2872. {
  2873. try
  2874. {
  2875. var TypeName = Request.Headers["TypeName"].ToString();
  2876. if (file != null)
  2877. {
  2878. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2879. //文件名称
  2880. string projectFileName = file.FileName;
  2881. //上传的文件的路径
  2882. string filePath = "";
  2883. if (TypeName == "A")//A代表团组增减款项
  2884. {
  2885. if (!Directory.Exists(fileDir))
  2886. {
  2887. Directory.CreateDirectory(fileDir);
  2888. }
  2889. //上传的文件的路径
  2890. filePath = fileDir + $@"\团组增减款项相关文件\{projectFileName}";
  2891. }
  2892. else if (TypeName == "B")//B代表商邀相关文件
  2893. {
  2894. if (!Directory.Exists(fileDir))
  2895. {
  2896. Directory.CreateDirectory(fileDir);
  2897. }
  2898. //上传的文件的路径
  2899. filePath = fileDir + $@"\商邀相关文件\{projectFileName}";
  2900. }
  2901. using (FileStream fs = System.IO.File.Create(filePath))
  2902. {
  2903. file.CopyTo(fs);
  2904. fs.Flush();
  2905. }
  2906. return Ok(JsonView(true, "上传成功!", projectFileName));
  2907. }
  2908. else
  2909. {
  2910. return Ok(JsonView(false, "上传失败!"));
  2911. }
  2912. }
  2913. catch (Exception ex)
  2914. {
  2915. return Ok(JsonView(false, "程序错误!"));
  2916. throw;
  2917. }
  2918. }
  2919. /// <summary>
  2920. /// 删除指定文件
  2921. /// </summary>
  2922. /// <param name="dto"></param>
  2923. /// <returns></returns>
  2924. [HttpPost]
  2925. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2926. public async Task<IActionResult> DelFile(DelFileDto dto)
  2927. {
  2928. try
  2929. {
  2930. var TypeName = Request.Headers["TypeName"].ToString();
  2931. string filePath = "";
  2932. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  2933. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  2934. int id = 0;
  2935. if (TypeName == "A")
  2936. {
  2937. filePath = fileDir + "/团组增减款项相关文件/" + dto.fileName;
  2938. // 删除该文件
  2939. System.IO.File.Delete(filePath);
  2940. id = await _sqlSugar.Updateable<Grp_DecreasePayments>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_DecreasePayments { FilePath = "" }).ExecuteCommandAsync();
  2941. }
  2942. else if (TypeName == "B")
  2943. {
  2944. filePath = fileDir + "/商邀相关文件/" + dto.fileName;
  2945. // 删除该文件
  2946. System.IO.File.Delete(filePath);
  2947. id = await _sqlSugar.Updateable<Grp_InvitationOfficialActivities>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_InvitationOfficialActivities { Attachment = "" }).ExecuteCommandAsync();
  2948. }
  2949. if (id != 0)
  2950. {
  2951. return Ok(JsonView(true, "成功!"));
  2952. }
  2953. else
  2954. {
  2955. return Ok(JsonView(false, "失败!"));
  2956. }
  2957. }
  2958. catch (Exception ex)
  2959. {
  2960. return Ok(JsonView(false, "程序错误!"));
  2961. throw;
  2962. }
  2963. }
  2964. #endregion
  2965. #region 商邀费用录入
  2966. /// <summary>
  2967. /// 根据团组Id查询商邀费用列表
  2968. /// </summary>
  2969. /// <param name="dto"></param>
  2970. /// <returns></returns>
  2971. [HttpPost]
  2972. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2973. public async Task<IActionResult> InvitationOfficialActivitiesList(InvitationOfficialActivitiesListDto dto)
  2974. {
  2975. try
  2976. {
  2977. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesList(dto);
  2978. if (groupData.Code != 0)
  2979. {
  2980. return Ok(JsonView(false, groupData.Msg));
  2981. }
  2982. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  2983. }
  2984. catch (Exception ex)
  2985. {
  2986. return Ok(JsonView(false, "程序错误!"));
  2987. throw;
  2988. }
  2989. }
  2990. //
  2991. /// <summary>
  2992. /// 商邀费用 Info Page 基础数据源
  2993. /// </summary>
  2994. /// <param name="dto"></param>
  2995. /// <returns></returns>
  2996. [HttpPost]
  2997. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2998. public async Task<IActionResult> InvitationOfficialActivityInitBasicData()
  2999. {
  3000. try
  3001. {
  3002. Result groupData = await _InvitationOfficialActivitiesRep._InitBasicData();
  3003. if (groupData.Code != 0)
  3004. {
  3005. return Ok(JsonView(false, groupData.Msg));
  3006. }
  3007. return Ok(JsonView(true, "操作成功", groupData.Data));
  3008. }
  3009. catch (Exception ex)
  3010. {
  3011. return Ok(JsonView(false, ex.Message));
  3012. throw;
  3013. }
  3014. }
  3015. /// <summary>
  3016. /// 根据商邀费用ID查询C表和商邀费用数据
  3017. /// </summary>
  3018. /// <param name="dto"></param>
  3019. /// <returns></returns>
  3020. [HttpPost]
  3021. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3022. public async Task<IActionResult> InvitationOfficialActivitiesById(InvitationOfficialActivitiesByIdDto dto)
  3023. {
  3024. try
  3025. {
  3026. Result groupData = await _InvitationOfficialActivitiesRep.InvitationOfficialActivitiesById(dto);
  3027. if (groupData.Code != 0)
  3028. {
  3029. return Ok(JsonView(false, groupData.Msg));
  3030. }
  3031. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3032. }
  3033. catch (Exception ex)
  3034. {
  3035. return Ok(JsonView(false, ex.Message));
  3036. throw;
  3037. }
  3038. }
  3039. /// <summary>
  3040. /// 商邀费用录入操作(Status:1.新增,2.修改)
  3041. /// </summary>
  3042. /// <param name="dto"></param>
  3043. /// <returns></returns>
  3044. [HttpPost]
  3045. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3046. public async Task<IActionResult> OpInvitationOfficialActivities(OpInvitationOfficialActivitiesDto dto)
  3047. {
  3048. try
  3049. {
  3050. Result groupData = await _InvitationOfficialActivitiesRep.OpInvitationOfficialActivities(dto, _setDataRep.PostCurrencyByDiid);
  3051. if (groupData.Code != 0)
  3052. {
  3053. return Ok(JsonView(false, groupData.Msg));
  3054. }
  3055. #region 应用推送
  3056. try
  3057. {
  3058. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  3059. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  3060. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  3061. }
  3062. catch (Exception ex)
  3063. {
  3064. }
  3065. #endregion
  3066. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3067. }
  3068. catch (Exception ex)
  3069. {
  3070. return Ok(JsonView(false, "程序错误!"));
  3071. throw;
  3072. }
  3073. }
  3074. /// <summary>
  3075. /// 商邀删除
  3076. /// </summary>
  3077. /// <param name="dto"></param>
  3078. /// <returns></returns>
  3079. [HttpPost]
  3080. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3081. public async Task<IActionResult> DelInvitationOfficialActivities(DelBaseDto dto)
  3082. {
  3083. try
  3084. {
  3085. _sqlSugar.BeginTran();
  3086. var res1 = _sqlSugar.Updateable<Grp_InvitationOfficialActivities>()
  3087. .SetColumns(it => new Grp_InvitationOfficialActivities()
  3088. {
  3089. IsDel = 1,
  3090. DeleteUserId = dto.DeleteUserId,
  3091. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  3092. })
  3093. .Where(it => it.Id == dto.Id)
  3094. .ExecuteCommand();
  3095. if (res1 > 0)
  3096. {
  3097. int _diId = 0;
  3098. var _ioaInfo = _sqlSugar.Queryable<Grp_InvitationOfficialActivities>().Where(it => it.Id == dto.Id).First();
  3099. if (_ioaInfo != null)
  3100. {
  3101. _diId = _ioaInfo.DiId;
  3102. }
  3103. var res2 = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  3104. .SetColumns(a => new Grp_CreditCardPayment()
  3105. {
  3106. IsDel = 1,
  3107. DeleteUserId = dto.DeleteUserId,
  3108. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  3109. })
  3110. .Where(a => a.CId == dto.Id && a.DIId == _diId && a.CTable == 81)
  3111. .ExecuteCommand();
  3112. if (res2 > 0)
  3113. {
  3114. _sqlSugar.CommitTran();
  3115. return Ok(JsonView(true, "删除成功!"));
  3116. }
  3117. }
  3118. _sqlSugar.RollbackTran();
  3119. return Ok(JsonView(false, "删除失败"));
  3120. }
  3121. catch (Exception ex)
  3122. {
  3123. _sqlSugar.RollbackTran();
  3124. return Ok(JsonView(false, ex.Message));
  3125. }
  3126. }
  3127. /// <summary>
  3128. /// 团组模块文件上传
  3129. /// </summary>
  3130. /// <param name="dto"></param>
  3131. /// <returns></returns>
  3132. [HttpPost]
  3133. public IActionResult CommonSaveFile([FromForm] CommonSaveFileDto dto)
  3134. {
  3135. var jw = JsonView(false);
  3136. if (dto.File == null)
  3137. {
  3138. jw.Msg = "无文件信息!";
  3139. return Ok(jw);
  3140. }
  3141. var nameSp = dto.File.FileName.Split(".");
  3142. if (nameSp.Length < 2)
  3143. {
  3144. jw.Msg = "拓展名称有误!";
  3145. return Ok(jw);
  3146. }
  3147. var existsName = new string[]{ "RAR", "ZIP", "ARJ","GZ","Z","7Z","TAR" };
  3148. if (!existsName.Contains(nameSp[1].ToUpper()))
  3149. {
  3150. jw.Msg = $"请使用指定拓展名!({string.Join("-",existsName)})";
  3151. return Ok(jw);
  3152. }
  3153. var Ctable = _sqlSugar.Queryable<Sys_SetData>().First(x => x.STid == 16 && x.IsDel == 0 && x.Id == dto.Ctable);
  3154. if (Ctable == null)
  3155. {
  3156. jw.Msg = "Ctable指向有误!";
  3157. return Ok(jw);
  3158. }
  3159. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  3160. if (groupInfo == null)
  3161. {
  3162. jw.Msg = "团组信息不存在!";
  3163. return Ok(jw);
  3164. }
  3165. Ctable.Name = Regex.Replace(Ctable.Name, @"[^\w\.@-]", "",
  3166. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3167. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3168. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3169. var path = "\\GroupModelFiles\\" + groupInfo.TeamName + "\\" + Ctable.Name;
  3170. var fileBase = AppSettingsHelper.Get("GrpFileBasePath") + path;
  3171. try
  3172. {
  3173. if (!Directory.Exists(fileBase))
  3174. {
  3175. Directory.CreateDirectory(fileBase);
  3176. }
  3177. var saveFilePath = fileBase +"\\"+ dto.File.FileName;
  3178. Grp_GroupModelFile file = new Grp_GroupModelFile()
  3179. {
  3180. Cid = dto.Cid,
  3181. CreateTime = DateTime.Now,
  3182. CreateUserId = dto.Userid,
  3183. Ctable = dto.Ctable,
  3184. Diid = dto.Diid,
  3185. IsDel = 0,
  3186. FilePath = saveFilePath,
  3187. FileName = nameSp[0]
  3188. };
  3189. using (FileStream fs = System.IO.File.Create(saveFilePath))
  3190. {
  3191. dto.File.CopyTo(fs);
  3192. fs.Flush();
  3193. }
  3194. var addResult = _sqlSugar.Insertable<Grp_GroupModelFile>(file).ExecuteCommand();
  3195. jw = JsonView(true, "保存成功!", new
  3196. {
  3197. url = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("GrpFileFtpPath") + path + "\\" + dto.File.FileName
  3198. });
  3199. }
  3200. catch (Exception ex)
  3201. {
  3202. jw = JsonView(false, $"保存失败! ({ex.Message}) ", new
  3203. {
  3204. url = ""
  3205. }) ;
  3206. }
  3207. return Ok(jw);
  3208. }
  3209. [HttpPost]
  3210. public IActionResult QueryGroupModelFile(QueryGroupModelFileDto dto)
  3211. {
  3212. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>().Where(x => x.IsDel == 0 && x.Cid == dto.Cid && x.Ctable == dto.Ctable && x.Diid == dto.Diid).ToList();
  3213. return Ok(JsonView(true, "success", dbQuery.Select(x => x.FileName)));
  3214. }
  3215. [HttpPost]
  3216. public IActionResult ExportGroupZip(ExportGroupZipDto dto)
  3217. {
  3218. var jw = JsonView(false);
  3219. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.IsDel == 0 && x.Id == dto.Diid);
  3220. if (groupInfo == null)
  3221. {
  3222. jw.Msg = "团组信息不存在!";
  3223. return Ok(jw);
  3224. }
  3225. var dbQuery = _sqlSugar.Queryable<Grp_GroupModelFile>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid).ToList();
  3226. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  3227. foreach (var item in dbQuery)
  3228. {
  3229. using (FileStream fileStream = new FileStream(item.FilePath, FileMode.Open, FileAccess.Read))
  3230. {
  3231. byte[] bytes = new byte[fileStream.Length];
  3232. fileStream.Read(bytes, 0, bytes.Length);
  3233. fileStream.Close();
  3234. Stream stream = new MemoryStream(bytes);
  3235. Zips.Add(item.FileName, stream);
  3236. }
  3237. }
  3238. groupInfo.TeamName = Regex.Replace(groupInfo.TeamName, @"[^\w\.@-]", "",
  3239. RegexOptions.None, TimeSpan.FromSeconds(1.5));
  3240. if (Zips.Count > 0)
  3241. {
  3242. IOOperatorHelper io = new IOOperatorHelper();
  3243. var byts = io.ConvertZipStream(Zips);
  3244. var path = "\\GroupModelFiles\\" + groupInfo.TeamName;
  3245. io.ByteToFile(byts, AppSettingsHelper.Get("GrpFileBasePath") + $"{path}\\{groupInfo.TeamName}_.Zip");
  3246. //http://132.232.92.186:24/Office/Word/EnterExitCost/File/
  3247. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("GrpFileBasePath") + $"\\Office\\Excel\\ExportLocalGuidePriceDetail\\{groupInfo.TeamName}_地接费用明细.zip" });
  3248. }
  3249. else
  3250. {
  3251. jw.Msg = "暂无生成文件!";
  3252. }
  3253. return Ok(jw);
  3254. }
  3255. #endregion
  3256. #region 团组英文资料
  3257. /// <summary>
  3258. /// 查询团组英文所有资料
  3259. /// </summary>
  3260. /// <param name="dto"></param>
  3261. /// <returns></returns>
  3262. [HttpPost]
  3263. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3264. public async Task<IActionResult> QueryDelegationEnData(QueryDelegationEnDataDto dto)
  3265. {
  3266. try
  3267. {
  3268. Result groupData = await _delegationEnDataRep.QueryDelegationEnData(dto);
  3269. if (groupData.Code != 0)
  3270. {
  3271. return Ok(JsonView(false, groupData.Msg));
  3272. }
  3273. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3274. }
  3275. catch (Exception ex)
  3276. {
  3277. return Ok(JsonView(false, "程序错误!"));
  3278. throw;
  3279. }
  3280. }
  3281. /// <summary>
  3282. /// 团组英文资料操作(Status:1.新增,2.修改)
  3283. /// </summary>
  3284. /// <param name="dto"></param>
  3285. /// <returns></returns>
  3286. [HttpPost]
  3287. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3288. public async Task<IActionResult> OpDelegationEnData(OpDelegationEnDataDto dto)
  3289. {
  3290. try
  3291. {
  3292. Result groupData = await _delegationEnDataRep.OpDelegationEnData(dto);
  3293. if (groupData.Code != 0)
  3294. {
  3295. return Ok(JsonView(false, groupData.Msg));
  3296. }
  3297. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  3298. }
  3299. catch (Exception ex)
  3300. {
  3301. return Ok(JsonView(false, "程序错误!"));
  3302. throw;
  3303. }
  3304. }
  3305. /// <summary>
  3306. /// 团组英文资料Id查询数据
  3307. /// </summary>
  3308. /// <param name="dto"></param>
  3309. /// <returns></returns>
  3310. [HttpPost]
  3311. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3312. public async Task<IActionResult> QueryDelegationEnDataById(QueryDelegationEnDataByIdDto dto)
  3313. {
  3314. try
  3315. {
  3316. Grp_DelegationEnData _DelegationEnData = await _sqlSugar.Queryable<Grp_DelegationEnData>().FirstAsync(it => it.Id == dto.Id && it.IsDel == 0);
  3317. if (_DelegationEnData != null)
  3318. {
  3319. return Ok(JsonView(true, "查询成功!", _DelegationEnData));
  3320. }
  3321. return Ok(JsonView(true, "暂无数据!", _DelegationEnData));
  3322. }
  3323. catch (Exception ex)
  3324. {
  3325. return Ok(JsonView(false, "程序错误!"));
  3326. throw;
  3327. }
  3328. }
  3329. /// <summary>
  3330. /// 团组英文资料删除
  3331. /// </summary>
  3332. /// <param name="dto"></param>
  3333. /// <returns></returns>
  3334. [HttpPost]
  3335. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3336. public async Task<IActionResult> DelDelegationEnData(DelBaseDto dto)
  3337. {
  3338. try
  3339. {
  3340. var res = await _delegationEnDataRep.SoftDeleteByIdAsync<Grp_DelegationEnData>(dto.Id.ToString(), dto.DeleteUserId);
  3341. if (!res)
  3342. {
  3343. return Ok(JsonView(false, "删除失败"));
  3344. }
  3345. return Ok(JsonView(true, "删除成功!"));
  3346. }
  3347. catch (Exception ex)
  3348. {
  3349. return Ok(JsonView(false, "程序错误!"));
  3350. throw;
  3351. }
  3352. }
  3353. #endregion
  3354. #region 导出邀请函
  3355. /// <summary>
  3356. /// 导出邀请函页面初始化
  3357. /// </summary>
  3358. /// <param name="dto"></param>
  3359. /// <returns></returns>
  3360. [HttpPost]
  3361. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3362. public async Task<IActionResult> QueryinvitationLetter(DecreasePaymentsListDto dto)
  3363. {
  3364. try
  3365. {
  3366. List<Grp_DelegationInfo> grp_Delegations = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(a => a.IsDel == 0).OrderBy(a => a.Id, OrderByType.Desc).ToList();
  3367. List<Crm_DeleClient> crm_Deles = new List<Crm_DeleClient>();
  3368. if (dto.DiId == 0)
  3369. {
  3370. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == grp_Delegations[0].Id && a.IsDel == 0).ToListAsync();
  3371. }
  3372. else
  3373. {
  3374. crm_Deles = await _sqlSugar.Queryable<Crm_DeleClient>().Where(a => a.DiId == dto.DiId && a.IsDel == 0).ToListAsync();
  3375. }
  3376. return Ok(JsonView(true, "查询成功!", new
  3377. {
  3378. deleClient = crm_Deles,
  3379. delegations = grp_Delegations
  3380. }));
  3381. }
  3382. catch (Exception ex)
  3383. {
  3384. return Ok(JsonView(false, "程序错误!"));
  3385. throw;
  3386. }
  3387. }
  3388. /// <summary>
  3389. /// 导出邀请函
  3390. /// </summary>
  3391. /// <param name="dto"></param>
  3392. /// <returns></returns>
  3393. [HttpPost]
  3394. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3395. public async Task<IActionResult> invitationLetter(DecreasePaymentsListDto dto)
  3396. {
  3397. #region 参数验证
  3398. //if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数!"));
  3399. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数!"));
  3400. #endregion
  3401. try
  3402. {
  3403. Dictionary<string, string> transDic = new Dictionary<string, string>();
  3404. string sql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  3405. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  3406. From Grp_TourClientList tcl
  3407. Left Join
  3408. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  3409. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  3410. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  3411. From Crm_DeleClient dc
  3412. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  3413. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  3414. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  3415. Where dc.IsDel = 0) temp
  3416. On temp.DcId =tcl.ClientId
  3417. Where tcl.IsDel = 0 And tcl.DiId = {0}", dto.DiId);
  3418. var datas = _sqlSugar.SqlQueryable<TourClientListDetailsView>(sql).ToList();
  3419. List<string> texts = new List<string>();
  3420. if (datas.Count != 0)
  3421. {
  3422. foreach (TourClientListDetailsView item in datas)
  3423. {
  3424. if (!string.IsNullOrWhiteSpace(item.Pinyin))
  3425. {
  3426. transDic.Add(item.LastName + item.FirstName, item.Pinyin);
  3427. }
  3428. else
  3429. {
  3430. string name = item.LastName + item.FirstName;
  3431. texts.Add(name);
  3432. }
  3433. if (!string.IsNullOrEmpty(item.Job) && !texts.Contains(item.Job))
  3434. {
  3435. if (!transDic.ContainsKey(item.Job))
  3436. {
  3437. texts.Add(item.Job);
  3438. }
  3439. }
  3440. if (!string.IsNullOrEmpty(item.CompanyFullName))
  3441. {
  3442. texts.Add(item.CompanyFullName);
  3443. }
  3444. }
  3445. List<TranslateResult> transData = _airTicketResRep.ReTransBatch(texts, "en");
  3446. if (transData.Count > 0)
  3447. {
  3448. foreach (TranslateResult item in transData)
  3449. {
  3450. if (!transDic.ContainsKey(item.Query))
  3451. {
  3452. transDic.Add(item.Query, item.Translation);
  3453. }
  3454. }
  3455. }
  3456. List<GuestList> list = new List<GuestList>();
  3457. foreach (TourClientListDetailsView dele in datas)
  3458. {
  3459. GuestList guestList = new GuestList();
  3460. if (!string.IsNullOrWhiteSpace(dele.Pinyin))
  3461. {
  3462. guestList.Name = dele.Pinyin;
  3463. }
  3464. else
  3465. {
  3466. string Name = transDic.Where(s => s.Key == dele.LastName + dele.FirstName).FirstOrDefault().Value;
  3467. guestList.Name = Name;
  3468. }
  3469. if (dele.Sex == 0)
  3470. {
  3471. guestList.Sex = "Male";
  3472. }
  3473. else if (dele.Sex == 1)
  3474. {
  3475. guestList.Sex = "Female";
  3476. }
  3477. guestList.DOB = dele.BirthDay.Replace('-', '.');
  3478. if (!string.IsNullOrEmpty(dele.Job))
  3479. {
  3480. guestList.Job = dele.Job;
  3481. }
  3482. list.Add(guestList);
  3483. }
  3484. //载入模板
  3485. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/邀请函模板0210.docx");
  3486. DocumentBuilder builder = new DocumentBuilder(doc);
  3487. //获取word里所有表格
  3488. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3489. //获取所填表格的序数
  3490. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  3491. var rowStart = tableOne.Rows[0]; //获取第1行
  3492. //循环赋值
  3493. for (int i = 0; i < list.Count; i++)
  3494. {
  3495. builder.MoveToCell(0, i + 1, 0, 0);
  3496. builder.Write(list[i].Name.ToString());
  3497. builder.MoveToCell(0, i + 1, 1, 0);
  3498. builder.Write(list[i].Sex.ToString());
  3499. builder.MoveToCell(0, i + 1, 2, 0);
  3500. builder.Write(list[i].DOB.ToString());
  3501. builder.MoveToCell(0, i + 1, 3, 0);
  3502. builder.Write(list[i].Job.ToString());
  3503. }
  3504. //删除多余行
  3505. while (tableOne.Rows.Count > list.Count + 1)
  3506. {
  3507. tableOne.Rows.RemoveAt(list.Count + 1);
  3508. }
  3509. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  3510. string fileName = "邀请函" + DateTime.Now.ToString("yyyy-MM-dd") + ".docx";
  3511. string filePath = fileDir + $@"商邀相关文件/{fileName}";
  3512. doc.Save(filePath);
  3513. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/GrpFile/商邀相关文件/" + fileName;
  3514. return Ok(JsonView(true, "操作成功!", Url));
  3515. }
  3516. else
  3517. {
  3518. return Ok(JsonView(false, "该团组客户名单暂未录入!"));
  3519. }
  3520. }
  3521. catch (Exception ex)
  3522. {
  3523. return Ok(JsonView(false, ex.Message));
  3524. throw;
  3525. }
  3526. }
  3527. #endregion
  3528. #region 团组经理模块 出入境费用
  3529. ///// <summary>
  3530. ///// 团组模块 - 出入境费用
  3531. ///// </summary>
  3532. ///// <returns></returns>
  3533. //[HttpPost]
  3534. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3535. //public async Task<IActionResult> SetEnterExitCostCurrencyChange()
  3536. //{
  3537. // try
  3538. // {
  3539. // var data = await _enterExitCostRep.SetEnterExitCostCurrencyChange();
  3540. // if (data.Code != 0)
  3541. // {
  3542. // return Ok(JsonView(false, data.Msg));
  3543. // }
  3544. // return Ok(JsonView(true, "查询成功!"));
  3545. // }
  3546. // catch (Exception ex)
  3547. // {
  3548. // return Ok(JsonView(false, ex.Message));
  3549. // throw;
  3550. // }
  3551. //}
  3552. /// <summary>
  3553. /// 团组模块 - 出入境费用 - 子项 地区更改为 nationalTravelFee 的id
  3554. /// </summary>
  3555. /// <returns></returns>
  3556. [HttpPost]
  3557. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3558. public async Task<IActionResult> SetDayAndCostAreaChange()
  3559. {
  3560. try
  3561. {
  3562. var nationalTravelFee = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  3563. var dayAndCost = await _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0).ToListAsync();
  3564. var unite = dayAndCost.Where(a => nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //交集
  3565. var merge = dayAndCost.Where(a => !nationalTravelFee.Any(b => a.Place.Trim() == b.City)).ToList(); //差集
  3566. foreach (var item in unite) //处理交集数据
  3567. {
  3568. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault().Id;
  3569. }
  3570. foreach (var item in merge) //处理差集数据
  3571. {
  3572. int nationalTravelFeeId = 0;
  3573. var cityData = nationalTravelFee.Where(it => it.City.Trim() == item.Place.Trim()).FirstOrDefault();
  3574. if (cityData != null) nationalTravelFeeId = cityData.Id;
  3575. else
  3576. {
  3577. var countryData = nationalTravelFee.Where(it => it.Country.Trim() == item.Place.Trim()).FirstOrDefault();
  3578. if (countryData != null) nationalTravelFeeId = countryData.Id;
  3579. }
  3580. dayAndCost.Where(it => it.Id == item.Id).FirstOrDefault().NationalTravelFeeId = nationalTravelFeeId;
  3581. }
  3582. //只更新dayAndCost 的 nationalTravelFeeId;
  3583. var result = _sqlSugar.Updateable(dayAndCost).UpdateColumns(it => new { it.NationalTravelFeeId }).ExecuteCommand();
  3584. if (result > 0) return Ok(JsonView(true, "nationalTravelFeeId列更新成功!"));
  3585. else return Ok(JsonView(false, "nationalTravelFeeId列更新失败!"));
  3586. }
  3587. catch (Exception ex)
  3588. {
  3589. return Ok(JsonView(false, ex.Message));
  3590. throw;
  3591. }
  3592. }
  3593. /// <summary>
  3594. /// 团组模块 - 出入境费用 - 基础数据源(团组名称/币种类型)
  3595. /// </summary>
  3596. /// <returns></returns>
  3597. [HttpPost]
  3598. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3599. public async Task<IActionResult> GetEnterExitCostDataSource(PortDtoBase dto)
  3600. {
  3601. try
  3602. {
  3603. var groupNameData = await _groupRepository.GetGroupNameList(new GroupNameDto { PortType = dto.PortType });
  3604. string sql = string.Format("Select * From Sys_SetData Where IsDel = 0");
  3605. //SetDataInfoView
  3606. var dataSource = await _sqlSugar.SqlQueryable<Sys_SetData>(sql).ToListAsync();
  3607. var currencyData = dataSource.Where(it => it.STid == 66).ToList(); //所有币种
  3608. List<SetDataInfoView> _CurrencyData = _mapper.Map<List<SetDataInfoView>>(currencyData);
  3609. var wordTypeData = dataSource.Where(it => it.STid == 72).ToList(); //三公费用-Word明细类型
  3610. List<SetDataInfoView> _WordTypeData = _mapper.Map<List<SetDataInfoView>>(wordTypeData);
  3611. var excelTypeData = dataSource.Where(it => it.STid == 73).ToList(); //三公费用-Excel明细类型
  3612. List<SetDataInfoView> _ExcelTypeData = _mapper.Map<List<SetDataInfoView>>(excelTypeData);
  3613. //默认币种显示
  3614. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3615. {
  3616. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 7.5000M },
  3617. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 8.0000M },
  3618. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 9.5000M },
  3619. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0500M },
  3620. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.9500M },
  3621. };
  3622. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3623. if (_currencyRate.Count > 0)
  3624. {
  3625. foreach (var item in _currencyInfos)
  3626. {
  3627. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3628. if (rateInfo != null)
  3629. {
  3630. decimal rate1 = Convert.ToDecimal(rateInfo.FSellPri) / 100.00M;
  3631. rate1 *= 1.035M;
  3632. item.Rate = Convert.ToDecimal(rate1.ToString("#0.00")) + 0.01M;
  3633. }
  3634. }
  3635. }
  3636. return Ok(JsonView(true, "查询成功!", new
  3637. {
  3638. GroupNameData = groupNameData.Data,
  3639. CurrencyData = _CurrencyData,
  3640. WordTypeData = _WordTypeData,
  3641. ExcelTypeData = _ExcelTypeData,
  3642. CurrencyInit = _currencyInfos
  3643. }));
  3644. }
  3645. catch (Exception ex)
  3646. {
  3647. return Ok(JsonView(false, ex.Message));
  3648. throw;
  3649. }
  3650. }
  3651. /// <summary>
  3652. /// 团组模块 - 出入境费用
  3653. /// 实时汇率 tips
  3654. /// 签证费用 tips
  3655. /// </summary>
  3656. /// <returns></returns>
  3657. [HttpPost]
  3658. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3659. public async Task<IActionResult> GetEnterExitCostCorrelationTips(EnterExitCostInfobyDiIdDto dto)
  3660. {
  3661. var groupInfo = await _sqlSugar.Queryable<Grp_DelegationInfo>().FirstAsync(it => it.Id == dto.DiId && it.IsDel == 0);
  3662. //默认币种显示
  3663. List<CurrencyInfo> _currencyInfos = new List<CurrencyInfo>()
  3664. {
  3665. new CurrencyInfo (){ CurrencyCode="USD",CurrencyName = "美元",Rate = 7.5000M },
  3666. new CurrencyInfo (){ CurrencyCode="EUR",CurrencyName = "欧元",Rate = 8.0000M },
  3667. new CurrencyInfo (){ CurrencyCode="GBP",CurrencyName = "英镑",Rate = 9.5000M },
  3668. new CurrencyInfo (){ CurrencyCode="JPY",CurrencyName = "日元",Rate = 0.0500M },
  3669. new CurrencyInfo (){ CurrencyCode="HKD",CurrencyName = "港币",Rate = 0.9500M },
  3670. };
  3671. var _currencyRate = await _juHeApi.PostItemRateAsync(_currencyInfos.Select(it => it.CurrencyCode).ToArray());
  3672. List<dynamic> reteInfos = new List<dynamic>();
  3673. if (_currencyRate.Count > 0)
  3674. {
  3675. foreach (var item in _currencyInfos)
  3676. {
  3677. var rateInfo = _currencyRate.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  3678. if (rateInfo != null)
  3679. {
  3680. item.Rate = Convert.ToDecimal((Convert.ToDecimal(rateInfo.FSellPri == null ? 0.00M : rateInfo.FSellPri) / 100.00M).ToString("#0.0000"));
  3681. decimal rate1 = item.Rate;
  3682. rate1 *= 1.03M;
  3683. decimal rate2 = Convert.ToDecimal(rate1.ToString("#0.00")) + 0.01M;
  3684. reteInfos.Add(new
  3685. {
  3686. currCode = item.CurrencyCode,
  3687. currName = item.CurrencyName,
  3688. rate = rate2,
  3689. lastUpdateDt = rateInfo.Date + " " + rateInfo.Time
  3690. });
  3691. }
  3692. }
  3693. }
  3694. var visaData = await _visaFeeInfoRep.EntryAndExitTips(dto.DiId);
  3695. var airData = await _ticketBlackCodeRep.EntryAndExitTips(dto.DiId);
  3696. return Ok(JsonView(true, "查询成功!", new
  3697. {
  3698. //GroupNameData = groupNameData.Data,
  3699. visaData = visaData.Data,
  3700. airData = airData.Data,
  3701. reteInfos = reteInfos
  3702. }));
  3703. }
  3704. /// <summary>
  3705. /// 团组模块 - 出入境费用 - Info
  3706. /// </summary>
  3707. /// <returns></returns>
  3708. [HttpPost]
  3709. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3710. public async Task<IActionResult> GetEnterExitCostInfobyDiId(EnterExitCostInfobyDiIdDto dto)
  3711. {
  3712. try
  3713. {
  3714. var data = await _enterExitCostRep.GetEnterExitCostInfoByDiId(dto);
  3715. if (data.Code != 0)
  3716. {
  3717. return Ok(JsonView(false, data.Msg));
  3718. }
  3719. return Ok(JsonView(true, "查询成功!", data.Data));
  3720. }
  3721. catch (Exception ex)
  3722. {
  3723. return Ok(JsonView(false, ex.Message));
  3724. }
  3725. }
  3726. /// <summary>
  3727. /// 团组模块 - 出入境费用 - Add And Update
  3728. /// </summary>
  3729. /// <returns></returns>
  3730. [HttpPost]
  3731. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3732. public async Task<IActionResult> PostEnterExitCostOperate(EnterExitCostOperateDto dto)
  3733. {
  3734. try
  3735. {
  3736. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  3737. if (data.Code != 0)
  3738. {
  3739. return Ok(JsonView(false, data.Msg));
  3740. }
  3741. //生成默认文件pdf并且通知人员
  3742. var fileView = await GeneralMethod.EnterExitCostDownload(new EnterExitCostDownloadDto()
  3743. {
  3744. DiId = dto.DiId,
  3745. ExportType = 1,
  3746. SubTypeId = 1005
  3747. }, "pdf");
  3748. //发送通知
  3749. string fileUrl = (string)fileView.Data.GetType().GetProperty("Url").GetValue(fileView.Data, null);
  3750. int sign = (int)data.Data.GetType().GetProperty("sign").GetValue(data.Data, null);
  3751. string md5Sign = GeneralMethod.Encrypt($"{sign}&fileName={fileUrl}");
  3752. string url = string.Format("http://oa.pan-american-intl.com:4399/#/Sankunginfo?sign={0}&fileName={1}", sign,fileUrl);
  3753. await AppNoticeLibrary.SendUserMsg_GroupShare_ToGM(dto.DiId, new List<string>() { "208","233","21" }, dto.UserId, url);
  3754. return Ok(JsonView(true, data.Msg, data.Data));
  3755. }
  3756. catch (Exception ex)
  3757. {
  3758. return Ok(JsonView(false, ex.Message));
  3759. }
  3760. }
  3761. /// <summary>
  3762. /// 团组模块 - 出入境费用 - Confirm 费用
  3763. /// </summary>
  3764. /// <returns></returns>
  3765. [HttpPost]
  3766. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3767. public async Task<IActionResult> PostEnterExitCostIsConfirm(ConfirmCostDto dto)
  3768. {
  3769. //TODO:测试完毕需把对应的用户ID更改
  3770. //1、数据表添加字段
  3771. //2、更改字段接口()
  3772. var _view = await _enterExitCostRep.ConfirmCost(dto);
  3773. //3、确认成功 给财务发送消息
  3774. if (_view.Code == 200)
  3775. {
  3776. if (dto.Type == 1)
  3777. {
  3778. int diId = _enterExitCostRep._sqlSugar.Queryable<Grp_EnterExitCost>().Where(x => x.IsDel == 0 && x.Id == dto.Id).First()?.DiId ?? 0;
  3779. await AppNoticeLibrary.SendUserMsg_GroupShare_ToFinance(diId);
  3780. }
  3781. }
  3782. return Ok(_view);
  3783. }
  3784. /// <summary>
  3785. /// 团组模块 - 出入境费用 - File downlaod
  3786. /// </summary>
  3787. /// <param name="dto"></param>
  3788. /// <returns></returns>
  3789. [HttpPost]
  3790. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  3791. public async Task<IActionResult> PostEnterExitCostDownload(EnterExitCostDownloadDto dto)
  3792. {
  3793. try
  3794. {
  3795. if (dto.DiId < 1)
  3796. {
  3797. return Ok(JsonView(false, "请传入有效的DiId参数;"));
  3798. }
  3799. if (dto.ExportType < 1)
  3800. {
  3801. return Ok(JsonView(false, "请传入有效的ExportType参数; 1 明细表 2 表格"));
  3802. }
  3803. if (dto.SubTypeId < 1)
  3804. {
  3805. return Ok(JsonView(false, @"请传入有效的SubTypeId参数;
  3806. 1 明细表 --> 1005(默认明细表) 1006(因公出国(境)经费测算明细表) 1007(四川省商务厅出国经费财政先行审核表)
  3807. 2 表格 --> 1008(派员单位出(境)任务和预算审批意见表) 1009(省级单位出(境)经费报销单)
  3808. 3 团组成员名单 1 团组成员名单"));
  3809. }
  3810. var _EnterExitCosts = _sqlSugar.Queryable<Grp_EnterExitCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  3811. var _DayAndCosts = _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  3812. if (_EnterExitCosts == null)
  3813. {
  3814. return Ok(JsonView(false, "该团组未填写出入境费用;"));
  3815. }
  3816. //数据源
  3817. List<Grp_DayAndCost> dac1 = _DayAndCosts.Where(it => it.Type == 1).ToList(); //住宿费
  3818. List<Grp_DayAndCost> dac2 = _DayAndCosts.Where(it => it.Type == 2).ToList(); //伙食费
  3819. List<Grp_DayAndCost> dac3 = _DayAndCosts.Where(it => it.Type == 3).ToList(); //公杂费
  3820. List<Grp_DayAndCost> dac4 = _DayAndCosts.Where(it => it.Type == 4).ToList(); //培训费
  3821. var _CurrDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  3822. var _DelegationInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == dto.DiId).First();
  3823. var DeleClientList = _sqlSugar.Queryable<Grp_TourClientList>()
  3824. .LeftJoin<Crm_DeleClient>((tcl, dc) => tcl.ClientId == dc.Id && dc.IsDel == 0)
  3825. .LeftJoin<Crm_CustomerCompany>((tcl, dc, cc) => dc.CrmCompanyId == cc.Id && dc.IsDel == 0)
  3826. .Where((tcl, dc, cc) => tcl.IsDel == 0 && tcl.DiId == dto.DiId)
  3827. .Select((tcl, dc, cc) => new
  3828. {
  3829. Name = dc.LastName + dc.FirstName,
  3830. Sex = dc.Sex,
  3831. Birthday = dc.BirthDay,
  3832. Company = cc.CompanyFullName,
  3833. Job = dc.Job
  3834. })
  3835. .ToList();
  3836. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  3837. var threeCodes = _sqlSugar.Queryable<Res_ThreeCode>().Where(it => it.IsDel == 0).ToList();
  3838. var placeData = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(it => it.IsDel == 0).ToList();
  3839. var rateDatas = await _EnterExitCosts.CurrencyRemark.SplitExchangeRate();
  3840. _DelegationInfo.VisitCountry = _DelegationInfo.VisitCountry.Replace("|", "、");
  3841. if (dto.ExportType == 1) //明细表
  3842. {
  3843. if (dto.SubTypeId == 1005) //1005(默认明细表)
  3844. {
  3845. //获取模板
  3846. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/出入境费用表模板.docx");
  3847. //载入模板
  3848. Document doc = new Document(tempPath);
  3849. DocumentBuilder builder = new DocumentBuilder(doc);
  3850. //利用键值对存放数据
  3851. Dictionary<string, string> dic = new Dictionary<string, string>();
  3852. decimal stayFeeTotal = _DayAndCosts.Where(it => it.Type == 1).Sum(it => it.SubTotal); // 住宿费
  3853. decimal mealsFeeTotal = _DayAndCosts.Where(it => it.Type == 2).Sum(it => it.SubTotal); // 伙食费费
  3854. decimal miscellaneousFeeTotal = _DayAndCosts.Where(it => it.Type == 3).Sum(it => it.SubTotal); // 公杂费
  3855. decimal tainFeeTotal = _DayAndCosts.Where(it => it.Type == 4).Sum(it => it.SubTotal); // 培训费
  3856. decimal insidePayTotal = _EnterExitCosts.InsidePay;
  3857. string row1_1 = "";
  3858. if (_EnterExitCosts.Visa > 0)
  3859. {
  3860. //insidePayTotal += _EnterExitCosts.Visa;
  3861. row1_1 = $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 人民币/人";
  3862. if (!string.IsNullOrEmpty(_EnterExitCosts.VisaRemark))
  3863. {
  3864. row1_1 += $"\t签证费用描述: : {_EnterExitCosts.VisaRemark} 人民币/人";
  3865. }
  3866. }
  3867. string row1_2 = "";
  3868. if (_EnterExitCosts.YiMiao > 0)
  3869. {
  3870. //insidePayTotal += _EnterExitCosts.YiMiao;
  3871. row1_2 += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")} 人民币/人";
  3872. }
  3873. if (_EnterExitCosts.HeSuan > 0)
  3874. {
  3875. //insidePayTotal += _EnterExitCosts.HeSuan;
  3876. row1_2 += $"核酸检测费:{_EnterExitCosts.HeSuan.ToString("#0.00")} 人民币/人";
  3877. }
  3878. if (_EnterExitCosts.Service > 0)
  3879. {
  3880. //insidePayTotal += _EnterExitCosts.Service;
  3881. row1_2 += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")} 人民币/人";
  3882. }
  3883. string row1_3 = "";
  3884. if (_EnterExitCosts.Safe > 0)
  3885. {
  3886. //insidePayTotal += _EnterExitCosts.Safe;
  3887. row1_3 += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")} 人民币/人";
  3888. }
  3889. if (_EnterExitCosts.Ticket > 0)
  3890. {
  3891. //insidePayTotal += _EnterExitCosts.Ticket;
  3892. row1_3 += $"参展门票:{_EnterExitCosts.Ticket.ToString("#0.00")} 人民币/人";
  3893. }
  3894. string row1 = "";
  3895. if (!string.IsNullOrEmpty(row1_1)) row1 += $"{row1_1}\r\n";
  3896. if (!string.IsNullOrEmpty(row1_2)) row1 += $"{row1_2}\r\n";
  3897. if (!string.IsNullOrEmpty(row1_3)) row1 += $"{row1_3}";
  3898. dic.Add("InsidePay", insidePayTotal.ToString("#0.00"));
  3899. dic.Add("Row1Str", row1);
  3900. dic.Add("OutsideJJ", _EnterExitCosts.OutsideJJPay.ToString("#0.00"));
  3901. dic.Add("OutsaideGW", _EnterExitCosts.OutsaideGWPay.ToString("#0.00"));
  3902. dic.Add("AirJJ", _EnterExitCosts.AirJJ.ToString("#0.00"));
  3903. dic.Add("AirGW", _EnterExitCosts.AirGW.ToString("#0.00"));
  3904. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  3905. dic.Add("SubZS", stayFeeTotal.ToString("#0.00"));
  3906. dic.Add("SubHS", mealsFeeTotal.ToString("#0.00"));
  3907. string miscellaneousFeeTotalStr = miscellaneousFeeTotal.ToString("#0.00");
  3908. dic.Add("SubGZF", miscellaneousFeeTotalStr);
  3909. //dic.Add("SubPX", tainFeeTotal.ToString("#0.00"));
  3910. decimal subJJC = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal + _EnterExitCosts.OutsideJJPay;
  3911. decimal subGWC = insidePayTotal + stayFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + tainFeeTotal + _EnterExitCosts.OutsaideGWPay;
  3912. dic.Add("SubJJC", subJJC.ToString("#0.00"));
  3913. dic.Add("SubGWC", subGWC.ToString("#0.00"));
  3914. #region 填充word模板书签内容
  3915. foreach (var key in dic.Keys)
  3916. {
  3917. builder.MoveToBookmark(key);
  3918. builder.Write(dic[key]);
  3919. }
  3920. #endregion
  3921. #region 填充word表格内容
  3922. ////获读取指定表格方法二
  3923. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  3924. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  3925. for (int i = 0; i < dac1.Count; i++)
  3926. {
  3927. Grp_DayAndCost dac = dac1[i];
  3928. if (dac == null) continue;
  3929. builder.MoveToCell(0, i, 0, 0);
  3930. builder.Write("第" + dac.Days.ToString() + "晚:");
  3931. builder.MoveToCell(0, i, 1, 0);
  3932. //builder.Write(placeData.Find(it => it.Id == dac.NationalTravelFeeId)?.Country ?? "Unknown");
  3933. //builder.Write(dac.Place == null ? "" : dac.Place);
  3934. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3935. builder.MoveToCell(0, i, 2, 0);
  3936. builder.Write("费用标准:");
  3937. string curr = "";
  3938. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  3939. if (currData != null)
  3940. {
  3941. curr = currData.Name;
  3942. }
  3943. builder.MoveToCell(0, i, 3, 0);
  3944. builder.Write(dac.Cost.ToString("#0.00") + curr);
  3945. builder.MoveToCell(0, i, 4, 0);
  3946. builder.Write("费用小计:");
  3947. builder.MoveToCell(0, i, 5, 0);
  3948. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  3949. }
  3950. //删除多余行
  3951. while (table1.Rows.Count > dac1.Count)
  3952. {
  3953. table1.Rows.RemoveAt(dac1.Count);
  3954. }
  3955. Aspose.Words.Tables.Table table2 = allTables[1] as Aspose.Words.Tables.Table;
  3956. for (int i = 0; i < dac2.Count; i++)
  3957. {
  3958. Grp_DayAndCost dac = dac2[i];
  3959. if (dac == null) continue;
  3960. builder.MoveToCell(1, i, 0, 0);
  3961. builder.Write("第" + dac.Days.ToString() + "天:");
  3962. builder.MoveToCell(1, i, 1, 0);
  3963. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3964. builder.MoveToCell(1, i, 2, 0);
  3965. builder.Write("费用标准:");
  3966. string curr = "";
  3967. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  3968. if (currData != null)
  3969. {
  3970. curr = currData.Name;
  3971. }
  3972. builder.MoveToCell(1, i, 3, 0);
  3973. builder.Write(dac.Cost.ToString("#0.00") + curr);
  3974. builder.MoveToCell(1, i, 4, 0);
  3975. builder.Write("费用小计:");
  3976. builder.MoveToCell(1, i, 5, 0);
  3977. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  3978. }
  3979. //删除多余行
  3980. while (table2.Rows.Count > dac2.Count)
  3981. {
  3982. table2.Rows.RemoveAt(dac2.Count);
  3983. }
  3984. Aspose.Words.Tables.Table table3 = allTables[2] as Aspose.Words.Tables.Table;
  3985. for (int i = 0; i < dac3.Count; i++)
  3986. {
  3987. Grp_DayAndCost dac = dac3[i];
  3988. if (dac == null) continue;
  3989. builder.MoveToCell(2, i, 0, 0);
  3990. builder.Write("第" + dac.Days.ToString() + "天:");
  3991. builder.MoveToCell(2, i, 1, 0);
  3992. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  3993. builder.MoveToCell(2, i, 2, 0);
  3994. builder.Write("费用标准:");
  3995. string curr = "";
  3996. var currData = _CurrDatas.Where(it => it.Id == dac.Currency).FirstOrDefault();
  3997. if (currData != null)
  3998. {
  3999. curr = currData.Name;
  4000. }
  4001. builder.MoveToCell(2, i, 3, 0);
  4002. builder.Write(dac.Cost.ToString("#0.00") + curr);
  4003. builder.MoveToCell(2, i, 4, 0);
  4004. builder.Write("费用小计:");
  4005. builder.MoveToCell(2, i, 5, 0);
  4006. builder.Write(dac.SubTotal.ToString("#0.00") + "CNY");
  4007. }
  4008. //删除多余行
  4009. while (table3.Rows.Count > dac3.Count)
  4010. {
  4011. table3.Rows.RemoveAt(dac3.Count);
  4012. }
  4013. #endregion
  4014. //文件名
  4015. string strFileName = $"{_DelegationInfo.TeamName}出入境费用{Guid.NewGuid().ToString()}.docx";
  4016. AsposeHelper.removewatermark_v2180();
  4017. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4018. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4019. return Ok(JsonView(true, "成功", new { Url = url }));
  4020. }
  4021. else if (dto.SubTypeId == 1006)//1006(因公出国(境)经费测算明细表)
  4022. {
  4023. //获取模板
  4024. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/因公出国(境)经费测算明细表.docx");
  4025. //载入模板
  4026. Document doc = new Document(tempPath);
  4027. DocumentBuilder builder = new DocumentBuilder(doc);
  4028. Dictionary<string, string> dic = new Dictionary<string, string>();
  4029. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4030. {
  4031. List<string> list = new List<string>();
  4032. try
  4033. {
  4034. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4035. foreach (var item in spilitArr)
  4036. {
  4037. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4038. var depCode = spDotandEmpty[2].Substring(0, 3);
  4039. var arrCode = spDotandEmpty[2].Substring(3, 3);
  4040. string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  4041. arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  4042. list.Add(depName);
  4043. list.Add(arrName);
  4044. }
  4045. list = list.Distinct().ToList();
  4046. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4047. }
  4048. catch (Exception)
  4049. {
  4050. dic.Add("ReturnCode", "行程录入不正确!");
  4051. }
  4052. }
  4053. else
  4054. {
  4055. dic.Add("ReturnCode", "未录入行程!");
  4056. }
  4057. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4058. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4059. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4060. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4061. {
  4062. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4063. dic.Add("Day", sp.Days.ToString());
  4064. }
  4065. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4066. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4067. //var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  4068. //dic.Add("Names", Names);
  4069. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4070. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4071. decimal dac1totalPrice = 0.00M;
  4072. int accommodationStartIndex = 6, foodandotherStartIndex = 22;
  4073. foreach (var dac in dac1)
  4074. {
  4075. if (dac.SubTotal == 0.00M)
  4076. {
  4077. continue;
  4078. }
  4079. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  4080. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  4081. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4082. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4083. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  4084. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  4085. builder.Write(currency);//币种
  4086. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  4087. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4088. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  4089. builder.Write("");//人数
  4090. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  4091. builder.Write("");//天数
  4092. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  4093. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4094. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  4095. decimal rate = 0.00M;
  4096. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  4097. builder.Write(rate.ToString("#0.0000"));//汇率
  4098. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4099. decimal rbmPrice = dac.SubTotal;
  4100. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4101. accommodationStartIndex++;
  4102. dac1totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  4103. }
  4104. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4105. for (int i = 21; i > (dac1.Count == 0 ? 1 : dac1.Count) + 6; i--)
  4106. {
  4107. table1.Rows.RemoveAt(i - 1);
  4108. foodandotherStartIndex--;
  4109. }
  4110. if (dac2.Count == dac3.Count)//国家 币种 金额
  4111. {
  4112. for (int i = 0; i < dac2.Count; i++)
  4113. {
  4114. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4115. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4116. }
  4117. }
  4118. decimal dac2totalPrice = 0.00M;
  4119. foreach (var dac in dac2)
  4120. {
  4121. if (dac.SubTotal == 0)
  4122. {
  4123. continue;
  4124. }
  4125. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  4126. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));
  4127. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  4128. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknown";
  4129. builder.Write(currency);//币种
  4130. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  4131. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4132. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  4133. builder.Write("");//人数
  4134. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  4135. builder.Write("");//天数
  4136. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  4137. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4138. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  4139. decimal rate = 0.00M;
  4140. rate = rateDatas.Find(it => it.CurrencyName.Equals(currency))?.Rate ?? 0.00M;
  4141. builder.Write(rate.ToString("#0.0000"));//汇率
  4142. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  4143. decimal rbmPrice = dac.SubTotal;
  4144. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4145. foodandotherStartIndex++;
  4146. dac2totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
  4147. }
  4148. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  4149. for (int i = foodandotherStartIndex + (15 - dac2.Count); i > (dac2.Count == 0 ? 1 : 0) + foodandotherStartIndex; i--)
  4150. {
  4151. table1.Rows.RemoveAt(i - 1);
  4152. }
  4153. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4154. string otherFeeStr = "";
  4155. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  4156. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  4157. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  4158. if (otherFeeStr.Length > 0)
  4159. {
  4160. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  4161. otherFeeStr = $"({otherFeeStr})";
  4162. dic.Add("OtherFeeStr", otherFeeStr);
  4163. }
  4164. //总计
  4165. decimal allPrice = dac1totalPrice + dac2totalPrice + _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket;
  4166. //国际旅费
  4167. string outsideJJ = "";
  4168. string allPriceJJ = "";
  4169. if (_EnterExitCosts.SumJJC == 1)
  4170. {
  4171. outsideJJ = string.Format(@"经济舱:{0} 元/人", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4172. allPriceJJ = string.Format(@"经济舱:{0} 元/人", (allPrice + _EnterExitCosts.OutsideJJPay).ToString("#0.00"));
  4173. }
  4174. string outsideGW = "";
  4175. string allPriceGW = "";
  4176. if (_EnterExitCosts.SumGWC == 1)
  4177. {
  4178. outsideGW = string.Format(@"公务舱:{0} 元/人", _EnterExitCosts.AirGW.ToString("#0.00"));
  4179. allPriceGW = string.Format(@"公务舱:{0} 元/人", (allPrice + _EnterExitCosts.OutsaideGWPay).ToString("#0.00"));
  4180. }
  4181. if (_EnterExitCosts.SumJJC == 1 || _EnterExitCosts.SumGWC == 1)
  4182. {
  4183. string InTravelPriceStr = string.Format(@" ({0} {1})", outsideJJ, outsideGW);
  4184. dic.Add("InTravelPrice", InTravelPriceStr);
  4185. string FinalSumPriceStr = string.Format(@" ({0} {1})", allPriceJJ, allPriceGW);
  4186. dic.Add("FinalSumPrice", FinalSumPriceStr);
  4187. }
  4188. //dic.Add("VisaPay", _EnterExitCosts.Visa.ToString("#0.00"));
  4189. //dic.Add("SafePay", _EnterExitCosts.Safe.ToString("#0.00"));
  4190. //dic.Add("YiMiao", _EnterExitCosts.YiMiao.ToString("#0.00"));
  4191. foreach (var key in dic.Keys)
  4192. {
  4193. builder.MoveToBookmark(key);
  4194. builder.Write(dic[key]);
  4195. }
  4196. //模板文件名
  4197. string strFileName = $"{_DelegationInfo.TeamName}因公出国(境)经费测算明细表.docx";
  4198. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4199. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4200. return Ok(JsonView(true, "成功", new { Url = url }));
  4201. }
  4202. else if (dto.SubTypeId == 1007) //1007(四川省商务厅出国经费财政先行审核表)
  4203. {
  4204. //获取模板
  4205. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/四川省商务厅出国经费财政先行审核表.xls");
  4206. //载入模板
  4207. WorkbookDesigner designer = new WorkbookDesigner();
  4208. designer.Workbook = new Workbook(tempPath);
  4209. Dictionary<string, string> dic = new Dictionary<string, string>();
  4210. if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4211. {
  4212. List<string> list = new List<string>();
  4213. try
  4214. {
  4215. var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4216. foreach (var item in spilitArr)
  4217. {
  4218. var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4219. var depCode = spDotandEmpty[2].Substring(0, 3);
  4220. var arrCode = spDotandEmpty[2].Substring(3, 3);
  4221. string depName = threeCodes.Find(it => it.Three.Equals(depCode))?.City ?? "Unknwon",
  4222. arrName = threeCodes.Find(it => it.Three.Equals(arrCode))?.City ?? "Unknown";
  4223. list.Add(depName);
  4224. list.Add(arrName);
  4225. }
  4226. list = list.Distinct().ToList();
  4227. dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4228. }
  4229. catch (Exception)
  4230. {
  4231. dic.Add("ReturnCode", "行程录入不正确!");
  4232. }
  4233. }
  4234. else
  4235. {
  4236. dic.Add("ReturnCode", "未录入行程!");
  4237. }
  4238. dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4239. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4240. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4241. if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4242. {
  4243. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4244. dic.Add("Day", sp.Days.ToString());
  4245. }
  4246. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4247. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4248. var Names = string.Join("、", DeleClientList.Select(it => it.Name).ToList()).TrimEnd('、');
  4249. designer.SetDataSource("ClientUnit", _DelegationInfo.ClientUnit);
  4250. designer.SetDataSource("VisitCountry", _DelegationInfo.VisitCountry);
  4251. designer.SetDataSource("Group", _DelegationInfo.TeamName);
  4252. designer.SetDataSource("ClientUnitTitle", _DelegationInfo.TeamName);
  4253. designer.SetDataSource("Name", Names);
  4254. designer.SetDataSource("VisitStartDate", dic["VisitStartDate"] + "-" + dic["VisitEndDate"]);
  4255. designer.SetDataSource("Day", dic["Day"] + "天");
  4256. designer.SetDataSource("ReturnCode", dic["ReturnCode"]);
  4257. designer.SetDataSource("ReturnCodeAir", dic["ReturnCodeAir"]);
  4258. int startIndex = 10;
  4259. const int startIndexcopy = 10;
  4260. if (dac2.Count == dac3.Count)//国家 币种 金额
  4261. {
  4262. for (int i = 0; i < dac2.Count; i++)
  4263. {
  4264. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4265. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4266. }
  4267. }
  4268. DataTable dtdac1 = new DataTable();
  4269. List<string> place = new List<string>();
  4270. dtdac1.Columns.AddRange(new DataColumn[] {
  4271. new DataColumn(){ ColumnName = "city"},
  4272. new DataColumn(){ ColumnName = "curr"},
  4273. new DataColumn(){ ColumnName = "criterion"},
  4274. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  4275. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  4276. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  4277. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  4278. new DataColumn(){ ColumnName = "costRMB", DataType = typeof(decimal) },
  4279. });
  4280. DataTable dtdac2 = new DataTable();
  4281. dtdac2.Columns.AddRange(new DataColumn[] {
  4282. new DataColumn(){ ColumnName = "city"},
  4283. new DataColumn(){ ColumnName = "curr"},
  4284. new DataColumn(){ ColumnName = "criterion"},
  4285. new DataColumn(){ ColumnName = "number",DataType = typeof(int)},
  4286. new DataColumn(){ ColumnName = "day",DataType = typeof(int)},
  4287. new DataColumn(){ ColumnName = "cost", DataType = typeof(decimal)},
  4288. new DataColumn(){ ColumnName = "rate", DataType = typeof(decimal) },
  4289. new DataColumn(){ ColumnName = "costRMB",DataType = typeof(decimal)},
  4290. });
  4291. dtdac1.TableName = "tb1";
  4292. dtdac2.TableName = "tb2";
  4293. decimal dac1totalPrice = 0.00M, dac2totalPrice = 0.00M;
  4294. foreach (var item in dac1)
  4295. {
  4296. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  4297. if (place.Contains(item.Place))
  4298. {
  4299. continue;
  4300. }
  4301. DataRow row = dtdac1.NewRow();
  4302. row["city"] = item.Place;
  4303. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  4304. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4305. row["curr"] = currency;
  4306. row["rate"] = rate.ToString("#0.0000");
  4307. row["criterion"] = item.Cost.ToString("#0.00");
  4308. row["number"] = 1;
  4309. row["day"] = dac1.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  4310. //row["costRMB"] = rbmPrice;
  4311. dtdac1.Rows.Add(row);
  4312. place.Add(item.Place);
  4313. }
  4314. place = new List<string>();
  4315. foreach (var item in dac2)
  4316. {
  4317. item.Place = GetEnterExitCostExportCity(placeData, item.NationalTravelFeeId);
  4318. if (place.Contains(item.Place))
  4319. {
  4320. continue;
  4321. }
  4322. DataRow row = dtdac2.NewRow();
  4323. row["city"] = item.Place;
  4324. string currency = _CurrDatas.Find(it => it.Id == item.Currency)?.Remark ?? "Unknwon";
  4325. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4326. row["curr"] = currency;
  4327. row["rate"] = rate.ToString("#0.0000");
  4328. row["criterion"] = item.Cost.ToString("#0.00");
  4329. row["number"] = 1;
  4330. row["day"] = dac2.FindAll(x => x.NationalTravelFeeId == item.NationalTravelFeeId).Count;
  4331. //row["cost"] = item.SubTotal;
  4332. //row["costRMB"] = rbmPrice;
  4333. dtdac2.Rows.Add(row);
  4334. place.Add(item.Place);
  4335. //dac2totalPrice += rbmPrice;
  4336. }
  4337. dac1totalPrice = dac1.Sum(it => it.SubTotal);
  4338. dac2totalPrice = dac2.Sum(it => it.SubTotal);
  4339. designer.SetDataSource("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4340. designer.SetDataSource("dac2totalPrice", dac2totalPrice);
  4341. designer.SetDataSource("cityTranffic", @$"其中:国外城市间机票费: {_EnterExitCosts.CityTranffic.ToString("#0.00")} 元");
  4342. designer.SetDataSource("sumCityTranffic", @$"{_EnterExitCosts.CityTranffic.ToString("#0.00")} ");
  4343. string cell4Str = $" 4.国际旅费:经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 元/人,公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")} 元/人";
  4344. string cellStr = $" 5.其他费用(";
  4345. if (_EnterExitCosts.Visa > 0) cellStr += $"签证费:{_EnterExitCosts.Visa.ToString("#0.00")}元,";
  4346. if (_EnterExitCosts.YiMiao > 0) cellStr += $"疫苗费:{_EnterExitCosts.YiMiao.ToString("#0.00")}元,";
  4347. if (_EnterExitCosts.HeSuan > 0) cellStr += $"核酸费:{_EnterExitCosts.HeSuan.ToString("#0.00")}元,";
  4348. if (_EnterExitCosts.Safe > 0) cellStr += $"保险费:{_EnterExitCosts.Safe.ToString("#0.00")}元,";
  4349. if (_EnterExitCosts.Ticket > 0) cellStr += $"参展门票费:{_EnterExitCosts.Ticket.ToString("#0.00")}元,";
  4350. if (_EnterExitCosts.Service > 0) cellStr += $"服务费:{_EnterExitCosts.Service.ToString("#0.00")}元,";
  4351. if (cellStr.Length > 8)
  4352. {
  4353. cellStr = cellStr.Substring(0, cellStr.Length - 1);
  4354. }
  4355. cellStr += ")";
  4356. decimal otherFee = _EnterExitCosts.Visa + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.Service;
  4357. decimal s = dac1totalPrice + dac2totalPrice + _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay + otherFee;
  4358. decimal pxFee = dac4.Sum(it => it.Cost);
  4359. decimal glvFee = _EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay;
  4360. string celllastStr1 = "";
  4361. if (dac1totalPrice > 0) celllastStr1 += $"住宿费 {dac1totalPrice.ToString("#0.00")} 元";
  4362. if (dac2totalPrice > 0) celllastStr1 += $",伙食费和公杂费 {dac2totalPrice.ToString("#0.00")} 元";
  4363. if (pxFee > 0) celllastStr1 += $",培训费 {pxFee.ToString("#0.00")} 元";
  4364. celllastStr1 += $",国际旅费 元";
  4365. if (otherFee > 0) celllastStr1 += $",其他费用 {otherFee.ToString("#0.00")} 元";
  4366. string celllastStr = $" 经审核,{celllastStr1},本次出国经费预算合计为 元。其中:市本级安排 。";
  4367. designer.SetDataSource("cell4Str", cell4Str);
  4368. designer.SetDataSource("cellStr", cellStr);
  4369. designer.SetDataSource("cellSum", (_EnterExitCosts.Visa + _EnterExitCosts.Safe).ToString("#0.00"));
  4370. designer.SetDataSource("cellSum4", (_EnterExitCosts.OutsideJJPay + _EnterExitCosts.OutsaideGWPay).ToString("#0.00"));
  4371. designer.SetDataSource("celllastStr", celllastStr);
  4372. Workbook wb = designer.Workbook;
  4373. var sheet = wb.Worksheets[0];
  4374. //绑定datatable数据集
  4375. designer.SetDataSource(dtdac1);
  4376. designer.SetDataSource(dtdac2);
  4377. designer.Process();
  4378. var rowStart = dtdac1.Rows.Count;
  4379. while (rowStart > 0)
  4380. {
  4381. sheet.Cells[startIndex, 8].Formula = $"=G{startIndex + 1} * H{startIndex + 1}";
  4382. sheet.Cells[startIndex, 6].Formula = $"=E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4383. startIndex++;
  4384. rowStart--;
  4385. }
  4386. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + 1}: I{startIndex})";
  4387. startIndex += 1; //总计行
  4388. rowStart = dtdac2.Rows.Count;
  4389. while (rowStart > 0)
  4390. {
  4391. sheet.Cells[startIndex, 8].Formula = $"= G{startIndex + 1} * H{startIndex + 1}";
  4392. sheet.Cells[startIndex, 6].Formula = $"= E{startIndex + 1} * F{startIndex + 1} * D{startIndex + 1}";
  4393. startIndex++;
  4394. rowStart--;
  4395. }
  4396. sheet.Cells[startIndex, 8].Formula = $"=SUM(I{startIndexcopy + dtdac1.Rows.Count + 2}: I{startIndex})";
  4397. wb.CalculateFormula(true);
  4398. //模板文件名
  4399. string strFileName = $"{_DelegationInfo.TeamName}-四川省商务厅出国经费财政先行审核表{DateTime.Now.ToString("yyyyMMddHHmmss")}.xls"; ;//$".xls";
  4400. designer.Workbook.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4401. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4402. return Ok(JsonView(true, "成功", new { Url = url }));
  4403. }
  4404. else if (dto.SubTypeId == 1066) //成都市因公临时出国任务和预算审批意见表(外专培训团专用)
  4405. {
  4406. //获取模板
  4407. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/成都市因公临时出国任务和预算审批意见表.docx");
  4408. //载入模板
  4409. Document doc = new Document(tempPath);
  4410. DocumentBuilder builder = new DocumentBuilder(doc);
  4411. Dictionary<string, string> dic = new Dictionary<string, string>();
  4412. dic.Add("GroupName", _DelegationInfo.TeamName);
  4413. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4414. string missionLeader = ""; //团负责人默认接团客户名单第一个人
  4415. string missionLeaderJob = "";//负责人job
  4416. int groupNumber = 0; //团人数
  4417. if (DeleClientList.Count > 0)
  4418. {
  4419. missionLeader = DeleClientList[0]?.Name ?? "";
  4420. missionLeaderJob = DeleClientList[0]?.Job ?? "";
  4421. }
  4422. dic.Add("MissionLeader", missionLeader); //团负责人
  4423. dic.Add("MissionLeaderJob", missionLeaderJob); //团负责人job
  4424. dic.Add("GroupNumber", _DelegationInfo.VisitPNumber.ToString()); //团人数
  4425. #region MyRegion
  4426. //if (blackCode != null && !string.IsNullOrWhiteSpace(blackCode.BlackCode))
  4427. //{
  4428. // List<string> list = new List<string>();
  4429. // try
  4430. // {
  4431. // var spilitArr = Regex.Split(blackCode.BlackCode, "\r\n");
  4432. // foreach (var item in spilitArr)
  4433. // {
  4434. // var spDotandEmpty = item.Split('.')[1].Split(' ').Where(x => !string.IsNullOrEmpty(x)).ToList();
  4435. // var depCode = spDotandEmpty[2].Substring(0, 3);
  4436. // var arrCode = spDotandEmpty[2].Substring(3, 3);
  4437. // string depName = threeCodes.Find(it => it.Three.Equals(depCode)).City,
  4438. // arrName = threeCodes.Find(it => it.Three.Equals(arrCode)).City;
  4439. // list.Add(depName);
  4440. // list.Add(arrName);
  4441. // }
  4442. // list = list.Distinct().ToList();
  4443. // dic.Add("ReturnCode", string.Join("-", list).TrimEnd('-'));
  4444. // }
  4445. // catch (Exception)
  4446. // {
  4447. // dic.Add("ReturnCode", "行程录入不正确!");
  4448. // }
  4449. //}
  4450. //else
  4451. //{
  4452. // dic.Add("ReturnCode", "未录入行程!");
  4453. //}
  4454. List<string> countrys = _groupRepository.GroupSplitCountry(_DelegationInfo.VisitCountry);
  4455. dic.Add("ReturnCode", string.Join("、", countrys));
  4456. #endregion
  4457. //dic.Add("ReturnCodeAir", dic["ReturnCode"]);
  4458. //dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4459. //dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4460. //if (dic.ContainsKey("VisitStartDate") && dic.ContainsKey("VisitEndDate"))
  4461. //{
  4462. // TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4463. // dic.Add("Day", sp.Days.ToString());
  4464. //}
  4465. dic.Add("Day", _DelegationInfo.VisitDays.ToString());
  4466. dic.Add("CultivateDay", dac4.Count.ToString()); //培训天数
  4467. // dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4468. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4469. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4470. //培训人员名单
  4471. int cultivateRowIndex = 7;
  4472. foreach (var item in DeleClientList)
  4473. {
  4474. builder.MoveToCell(0, cultivateRowIndex, 0, 0);
  4475. builder.Write(item.Name);
  4476. builder.MoveToCell(0, cultivateRowIndex, 1, 0);
  4477. builder.Write(item.Sex == 0 ? "男" : item.Sex == 1 ? "女" : "");
  4478. builder.MoveToCell(0, cultivateRowIndex, 2, 0);
  4479. string birthDay = "";
  4480. if (item.Birthday != null)
  4481. {
  4482. DateTime dt = Convert.ToDateTime(item.Birthday);
  4483. birthDay = $"{dt.Year}.{dt.Month}";
  4484. }
  4485. builder.Write(birthDay);
  4486. builder.MoveToCell(0, cultivateRowIndex, 3, 0);
  4487. builder.Write(item.Company);
  4488. builder.MoveToCell(0, cultivateRowIndex, 4, 0);
  4489. builder.Write(item.Job);
  4490. cultivateRowIndex++;
  4491. }
  4492. //删除多余行
  4493. //cultivateRowIndex -= 2;
  4494. int delRows = 10 + 7 - cultivateRowIndex;
  4495. if (delRows > 0)
  4496. {
  4497. for (int i = 0; i < delRows; i++)
  4498. {
  4499. table1.Rows.RemoveAt(cultivateRowIndex);
  4500. //cultivateRowIndex++;
  4501. }
  4502. }
  4503. decimal hotelFeeTotal = dac1.Sum(it => it.SubTotal);//住宿费
  4504. dic.Add("HotelFeeTotal", hotelFeeTotal.ToString("#0.00"));
  4505. decimal mealsFeeTotal = dac2.Sum(it => it.SubTotal);//伙食费
  4506. dic.Add("MealsFeeTotal", mealsFeeTotal.ToString("#0.00"));
  4507. decimal miscellaneousFeeTotal = dac3.Sum(it => it.SubTotal);//公杂费
  4508. dic.Add("MiscellaneousFeeTotal", miscellaneousFeeTotal.ToString("#0.00"));
  4509. decimal trainingFeeTotal = dac4.Sum(it => it.SubTotal);//培训费
  4510. dic.Add("TrainingFeeTotal", trainingFeeTotal.ToString("#0.00"));
  4511. decimal cityTranfficFeeToatal = _EnterExitCosts.CityTranffic; //城市区间交通费
  4512. dic.Add("CityTranfficFeeToatal", cityTranfficFeeToatal.ToString("#0.00"));//
  4513. //其他费用
  4514. decimal otherFeeTotal = _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket + _EnterExitCosts.YiMiao + _EnterExitCosts.HeSuan + _EnterExitCosts.Service;
  4515. dic.Add("OtherFeeTotal", otherFeeTotal.ToString("#0.00"));
  4516. //其他费用合计
  4517. decimal _otherFeeTotal = hotelFeeTotal + mealsFeeTotal + miscellaneousFeeTotal + trainingFeeTotal + cityTranfficFeeToatal + otherFeeTotal;
  4518. decimal _jjcFeeToatal = _EnterExitCosts.AirJJ + _otherFeeTotal; //经济舱
  4519. decimal _gwcFeeToatal = _EnterExitCosts.AirGW + _otherFeeTotal; //公务舱
  4520. //公务舱合计
  4521. //国际旅费
  4522. string outsideJJ = "";
  4523. string allPriceJJ = "";
  4524. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 0)
  4525. {
  4526. dic.Add("AirFeeTotal", _EnterExitCosts.AirJJ.ToString("#0.00"));
  4527. dic.Add("FeeTotal", _jjcFeeToatal.ToString("#0.00"));
  4528. }
  4529. if (_EnterExitCosts.SumGWC == 1 && _EnterExitCosts.SumJJC == 0)
  4530. {
  4531. dic.Add("AirFeeTotal", _EnterExitCosts.AirGW.ToString("#0.00"));
  4532. dic.Add("FeeTotal", _gwcFeeToatal.ToString("#0.00"));
  4533. }
  4534. if (_EnterExitCosts.SumJJC == 1 && _EnterExitCosts.SumGWC == 1)
  4535. {
  4536. string airFeeTotalStr = string.Format(@$"经济舱:{_EnterExitCosts.AirJJ.ToString("#0.00")} 公务舱:{_EnterExitCosts.AirGW.ToString("#0.00")}");
  4537. dic.Add("AirFeeTotal", airFeeTotalStr);
  4538. string feeTotalStr = string.Format(@$"经济舱:{_jjcFeeToatal.ToString("#0.00")} 公务舱:{_gwcFeeToatal.ToString("#0.00")}");
  4539. dic.Add("FeeTotal", feeTotalStr);
  4540. }
  4541. foreach (var key in dic.Keys)
  4542. {
  4543. builder.MoveToBookmark(key);
  4544. builder.Write(dic[key]);
  4545. }
  4546. //模板文件名
  4547. string strFileName = $"{_DelegationInfo.TeamName}-成都市因公临时出国任务和预算审批意见表(外专培训团专用).docx";
  4548. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4549. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4550. return Ok(JsonView(true, "成功", new { Url = url }));
  4551. }
  4552. }
  4553. else if (dto.ExportType == 2) //表格
  4554. {
  4555. //利用键值对存放数据
  4556. Dictionary<string, string> dic = new Dictionary<string, string>();
  4557. dic.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));
  4558. dic.Add("VisitEndDate", _DelegationInfo.VisitEndDate.ToString("yyyy年MM月dd日"));
  4559. TimeSpan sp = _DelegationInfo.VisitEndDate.Subtract(_DelegationInfo.VisitStartDate);
  4560. dic.Add("Day", sp.Days.ToString());
  4561. dic.Add("VisitCountry", _DelegationInfo.VisitCountry);
  4562. if (dto.SubTypeId == 1008) //1008(派员单位出(境)任务和预算审批意见表)
  4563. {
  4564. //获取模板
  4565. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/派员单位出(境)任务和预算审批意见表.docx");
  4566. //载入模板
  4567. Document doc = new Document(tempPath);
  4568. DocumentBuilder builder = new DocumentBuilder(doc);
  4569. dic.Add("TeamName", _DelegationInfo.TeamName);
  4570. dic.Add("ClientUnit", _DelegationInfo.ClientUnit);
  4571. //dic.Add("TellPhone", _DelegationInfo.TellPhone);
  4572. string missionLeaderName = "",
  4573. missionLeaderJob = "";
  4574. if (DeleClientList.Count > 0)
  4575. {
  4576. missionLeaderName = DeleClientList[0].Name;
  4577. missionLeaderJob = DeleClientList[0].Job;
  4578. }
  4579. dic.Add("MissionLeaderName", missionLeaderName);
  4580. dic.Add("MissionLeaderJob", missionLeaderJob);
  4581. dic.Add("VisitPNumber", _DelegationInfo.VisitPNumber.ToString());
  4582. dic.Add("VisitPurpose", _DelegationInfo.VisitPurpose);
  4583. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4584. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4585. int rowCount = 10;//总人数行
  4586. int startRowIndex = 7; //起始行
  4587. for (int i = 0; i < DeleClientList.Count; i++)
  4588. {
  4589. builder.MoveToCell(0, startRowIndex, 0, 0);
  4590. builder.Write(DeleClientList[i].Name); //出国人员姓名
  4591. builder.MoveToCell(0, startRowIndex, 1, 0);
  4592. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  4593. builder.Write(sex);//性别
  4594. builder.MoveToCell(0, startRowIndex, 2, 0);
  4595. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));//出生年月
  4596. builder.MoveToCell(0, startRowIndex, 3, 0);
  4597. builder.Write(DeleClientList[i].Company);//工作单位
  4598. builder.MoveToCell(0, startRowIndex, 4, 0);
  4599. builder.Write(DeleClientList[i].Job);//职务及级别
  4600. builder.MoveToCell(0, startRowIndex, 5, 0);
  4601. builder.Write("");//人员属性
  4602. builder.MoveToCell(0, startRowIndex, 6, 0);
  4603. builder.Write("");//上次出国时间
  4604. startRowIndex++;
  4605. }
  4606. int nullRow = rowCount - DeleClientList.Count;//空行
  4607. for (int i = 0; i < nullRow; i++)
  4608. {
  4609. table1.Rows.Remove(table1.Rows[startRowIndex]);
  4610. }
  4611. foreach (var key in dic.Keys)
  4612. {
  4613. builder.MoveToBookmark(key);
  4614. builder.Write(dic[key]);
  4615. }
  4616. //模板文件名
  4617. string strFileName = $"派员单位出(境)任务和预算审批意见表.docx";
  4618. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4619. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4620. return Ok(JsonView(true, "成功", new { Url = url }));
  4621. }
  4622. else if (dto.SubTypeId == 1009)//1009(省级单位出(境)经费报销单)
  4623. {
  4624. //获取模板
  4625. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/省级单位出(境)经费报销单.docx");
  4626. //载入模板
  4627. Document doc = new Document(tempPath);
  4628. DocumentBuilder builder = new DocumentBuilder(doc);
  4629. dic.Add("GroupClient", _DelegationInfo.ClientUnit);
  4630. var Names = string.Join("、", DeleClientList.Select(x => x.Name)).TrimEnd('、');
  4631. dic.Add("Names", Names);
  4632. int accommodationRows = 12, foodandotherRows = 12;
  4633. var Dac1currCn = dac1.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4634. var Dac2currCn = dac2.GroupBy(x => x.Currency).Select(x => x.Key).ToList();
  4635. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4636. Aspose.Words.Tables.Table table1 = allTables[0] as Aspose.Words.Tables.Table;
  4637. int accommodationStartIndex = 6;
  4638. decimal dac1totalPrice = 0.00M;
  4639. foreach (var dac in dac1)
  4640. {
  4641. if (dac.SubTotal == 0)
  4642. {
  4643. continue;
  4644. }
  4645. //builder.MoveToCell(0, accommodationStartIndex, 0, 0);
  4646. //builder.Write(DeleClientList[i].LastName + DeleClientList[i].Name);
  4647. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4648. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  4649. builder.MoveToCell(0, accommodationStartIndex, 2, 0);
  4650. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  4651. builder.Write(currency);//币种
  4652. builder.MoveToCell(0, accommodationStartIndex, 3, 0);
  4653. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4654. builder.MoveToCell(0, accommodationStartIndex, 4, 0);
  4655. builder.Write("");//人数
  4656. builder.MoveToCell(0, accommodationStartIndex, 5, 0);
  4657. builder.Write("");//天数
  4658. builder.MoveToCell(0, accommodationStartIndex, 6, 0);
  4659. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4660. builder.MoveToCell(0, accommodationStartIndex, 7, 0);
  4661. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4662. builder.Write(rate.ToString("#0.0000"));//汇率
  4663. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4664. decimal rbmPrice = rate * dac.SubTotal;
  4665. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4666. accommodationStartIndex++;
  4667. dac1totalPrice += rbmPrice;
  4668. }
  4669. dic.Add("dac1totalPrice", dac1totalPrice.ToString("#0.00"));
  4670. builder.MoveToCell(0, accommodationStartIndex, 1, 0);
  4671. builder.Write("小计");
  4672. builder.MoveToCell(0, accommodationStartIndex, 8, 0);
  4673. builder.Write(dac1totalPrice.ToString("#0.00"));
  4674. accommodationStartIndex++;
  4675. int nullRow = accommodationRows - dac1.Count;
  4676. //删除空行
  4677. //if (nullRow > 0)
  4678. //{
  4679. // int rowIndex = accommodationStartIndex;
  4680. // for (int i = 0; i < nullRow; i++)
  4681. // {
  4682. // Row row = table1.Rows[rowIndex];
  4683. // row.Remove();
  4684. // rowIndex++;
  4685. // }
  4686. //}
  4687. if (dac2.Count == dac3.Count)//国家 币种 金额
  4688. {
  4689. for (int i = 0; i < dac2.Count; i++)
  4690. {
  4691. dac2[i].SubTotal = dac2[i].SubTotal + dac3[i].SubTotal; //小计
  4692. dac2[i].Cost = dac3[i].Cost + dac2[i].Cost; //标准
  4693. }
  4694. }
  4695. int foodandotherStartIndex = 19;//
  4696. decimal dac2totalPrice = 0.00M;
  4697. foreach (var dac in dac2)
  4698. {
  4699. if (dac.SubTotal == 0)
  4700. {
  4701. continue;
  4702. }
  4703. //foodandotherStartIndex = 12;
  4704. builder.MoveToCell(0, foodandotherStartIndex, 1, 0);
  4705. builder.Write(GetEnterExitCostExportCity(placeData, dac.NationalTravelFeeId));//城市
  4706. builder.MoveToCell(0, foodandotherStartIndex, 2, 0);
  4707. string currency = _CurrDatas.Find(it => it.Id == dac.Currency)?.Remark ?? "Unknwon";
  4708. builder.Write(currency);//币种
  4709. builder.MoveToCell(0, foodandotherStartIndex, 3, 0);
  4710. builder.Write(dac.Cost.ToString("#0.00"));//标准
  4711. builder.MoveToCell(0, foodandotherStartIndex, 4, 0);
  4712. builder.Write("");//人数
  4713. builder.MoveToCell(0, foodandotherStartIndex, 5, 0);
  4714. builder.Write("");//天数
  4715. builder.MoveToCell(0, foodandotherStartIndex, 6, 0);
  4716. builder.Write(dac.SubTotal.ToString("#0.00"));//小计
  4717. builder.MoveToCell(0, foodandotherStartIndex, 7, 0);
  4718. decimal rate = rateDatas.Find(it => it.CurrencyName == currency)?.Rate ?? 0.00M;
  4719. builder.Write(rate.ToString("#0.0000"));//汇率
  4720. builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
  4721. decimal rbmPrice = rate * dac.SubTotal;
  4722. builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
  4723. foodandotherStartIndex++;
  4724. dac2totalPrice += rbmPrice;
  4725. }
  4726. dic.Add("dac2totalPrice", dac2totalPrice.ToString("#0.00"));
  4727. //删除空行
  4728. if (dac2.Count < foodandotherRows)
  4729. {
  4730. //int nullRow = accommodationRows - dac2.Count;
  4731. //while (table2.Rows.Count > dac2.Count)
  4732. //{
  4733. // table2.Rows.RemoveAt(dac2.Count);
  4734. //}
  4735. }
  4736. dic.Add("CityTranffic", _EnterExitCosts.CityTranffic.ToString("#0.00"));
  4737. string otherFeeStr = "";
  4738. if (_EnterExitCosts.Visa > 0) otherFeeStr += $"签证费: {_EnterExitCosts.Visa.ToString("#0.00")} 元,";
  4739. if (_EnterExitCosts.Safe > 0) otherFeeStr += $"保险费: {_EnterExitCosts.Safe.ToString("#0.00")} 元,";
  4740. if (_EnterExitCosts.Ticket > 0) otherFeeStr += $"参展门票费: {_EnterExitCosts.Ticket.ToString("#0.00")} 元,";
  4741. if (otherFeeStr.Length > 0)
  4742. {
  4743. otherFeeStr = otherFeeStr.Substring(0, otherFeeStr.Length - 1);
  4744. otherFeeStr = $"({otherFeeStr})";
  4745. dic.Add("OtherFeeStr", otherFeeStr);
  4746. }
  4747. foreach (var key in dic.Keys)
  4748. {
  4749. builder.MoveToBookmark(key);
  4750. builder.Write(dic[key]);
  4751. }
  4752. //模板文件名
  4753. string strFileName = $"省级单位出(境)经费报销单.docx";
  4754. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4755. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4756. return Ok(JsonView(true, "成功", new { Url = url }));
  4757. }
  4758. }
  4759. else if (dto.ExportType == 3)
  4760. {
  4761. if (dto.SubTypeId == 1) //团组成员名单
  4762. {
  4763. if (DeleClientList.Count < 1)
  4764. {
  4765. return Ok(JsonView(false, "团组成员暂未录入!!!"));
  4766. }
  4767. //获取模板
  4768. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/Temp/dwon_团组人员列表模板.doc");
  4769. //载入模板
  4770. Document doc = new Document(tempPath);
  4771. DocumentBuilder builder = new DocumentBuilder(doc);
  4772. //获取word里所有表格
  4773. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  4774. //获取所填表格的序数
  4775. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  4776. var rowStart = tableOne.Rows[0]; //获取第1行
  4777. //循环赋值
  4778. for (int i = 0; i < DeleClientList.Count; i++)
  4779. {
  4780. builder.MoveToCell(0, i + 1, 0, 0);
  4781. builder.Write(DeleClientList[i].Name);
  4782. builder.MoveToCell(0, i + 1, 1, 0);
  4783. string sex = DeleClientList[i].Sex == 0 ? "男" : DeleClientList[i].Sex == 1 ? "女" : "";
  4784. builder.Write(sex);
  4785. builder.MoveToCell(0, i + 1, 2, 0);
  4786. builder.Write(Convert.ToDateTime(DeleClientList[i].Birthday).ToString("yyyy年MM月dd日"));
  4787. builder.MoveToCell(0, i + 1, 3, 0);
  4788. builder.Write(DeleClientList[i].Company);
  4789. builder.MoveToCell(0, i + 1, 4, 0);
  4790. builder.Write(DeleClientList[i].Job);
  4791. }
  4792. //删除多余行
  4793. while (tableOne.Rows.Count > DeleClientList.Count + 1)
  4794. {
  4795. tableOne.Rows.RemoveAt(DeleClientList.Count + 1);
  4796. }
  4797. string strFileName = $"{_DelegationInfo.TeamName}组团人员名单({DateTime.Now.ToString("yyyyMMddHHmmss")}).doc";
  4798. //C:/Server/File/OA2023/Office/Word/EnterExitCost/File/
  4799. //C:\Server\File\OA2023\Office\Word\EnterExitCost\File\
  4800. doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
  4801. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
  4802. return Ok(JsonView(true, "成功", new { Url = url }));
  4803. }
  4804. }
  4805. return Ok(JsonView(false, "操作失败!"));
  4806. }
  4807. catch (Exception ex)
  4808. {
  4809. return Ok(JsonView(false, ex.Message));
  4810. }
  4811. }
  4812. /// <summary>
  4813. /// 获取三公费用标准city
  4814. /// </summary>
  4815. /// <param name="placeData"></param>
  4816. /// <param name="nationalTravelFeeId"></param>
  4817. /// <returns></returns>
  4818. private string GetEnterExitCostExportCity(List<Grp_NationalTravelFee> placeData, int nationalTravelFeeId)
  4819. {
  4820. string _city = string.Empty;
  4821. if (placeData.Count < 1) return _city;
  4822. var data = placeData.Find(it => it.Id == nationalTravelFeeId);
  4823. if (data == null) return _city;
  4824. string country = data.Country;
  4825. string city = data.City;
  4826. if (city.Contains("其他城市") || city.Contains("所有城市")) _city = $"{country}-{city}";
  4827. else _city = city;
  4828. return _city;
  4829. }
  4830. /// <summary>
  4831. /// 团组模块 - 出入境费用 - 明细表导出
  4832. /// </summary>
  4833. /// <returns></returns>
  4834. [HttpPost]
  4835. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4836. public async Task<IActionResult> PostEnterExitCostExportDetailsList(EnterExitCostOperateDto dto)
  4837. {
  4838. var data = await _enterExitCostRep.PostEnterExitCostOperate(dto);
  4839. if (data.Code != 0)
  4840. {
  4841. return Ok(JsonView(false, data.Msg));
  4842. }
  4843. return Ok(JsonView(true, data.Msg, data.Data));
  4844. }
  4845. /// <summary>
  4846. /// 团组模块 - 出入境费用 - 一键清空
  4847. /// </summary>
  4848. /// <returns></returns>
  4849. [HttpPost]
  4850. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4851. public async Task<IActionResult> PostEnterExitCostOneClickClear(EnterExitCostOneClickClearDto dto)
  4852. {
  4853. if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数;"));
  4854. if (dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数;"));
  4855. if (dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数;"));
  4856. var _view = await _enterExitCostRep._OneClickClear(dto.Id, dto.DiId, dto.UserId);
  4857. if (_view.Code == 0)
  4858. {
  4859. return Ok(JsonView(true, "操作成功"));
  4860. }
  4861. return Ok(JsonView(false, "操作失败"));
  4862. }
  4863. /// <summary>
  4864. /// 团组模块 - 出入境费用 - 子项删除
  4865. /// </summary>
  4866. /// <returns></returns>
  4867. [HttpPost]
  4868. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4869. public async Task<IActionResult> PostEnterExitCostSubItemDel(EnterExitCostSubItemDelDto dto)
  4870. {
  4871. try
  4872. {
  4873. var data = await _enterExitCostRep.PostEnterExitCostSubItemDel(dto);
  4874. if (data.Code != 0)
  4875. {
  4876. return Ok(JsonView(false, data.Msg));
  4877. }
  4878. return Ok(JsonView(true, "操作成功!", data.Data));
  4879. }
  4880. catch (Exception ex)
  4881. {
  4882. return Ok(JsonView(false, ex.Message));
  4883. }
  4884. }
  4885. /// <summary>
  4886. /// 团组模块 - 出入境国家费用标准 List
  4887. /// </summary>
  4888. /// <returns></returns>
  4889. [HttpPost]
  4890. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4891. public async Task<IActionResult> GetNationalTravelFeeData(PortDtoBase dto)
  4892. {
  4893. try
  4894. {
  4895. Stopwatch sw = new Stopwatch();
  4896. sw.Start();
  4897. string nationalTravelFeeSql = string.Format(@"Select ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.* From Grp_NationalTravelFee gntf
  4898. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  4899. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  4900. Where gntf.Isdel = 0");
  4901. var nationalTravelFeeData = _sqlSugar.SqlQueryable<NationalTravelFeeInfoView>(nationalTravelFeeSql).ToList();
  4902. //var nationalTravel = nationalTravelFeeData.GroupBy(it => it.Country).Select(it1 => it1.FirstOrDefault());
  4903. //List<dynamic> nationalTravelFeeData1 = new List<dynamic>();
  4904. //foreach (var item in nationalTravel)
  4905. //{
  4906. // var cityData = nationalTravelFeeData.Where(it => it.Country == item.Country).ToList();
  4907. // var otherData = cityData.Where(it => it.City.Contains("其他城市")).FirstOrDefault();
  4908. // if (otherData != null)
  4909. // {
  4910. // cityData.Remove(otherData);
  4911. // cityData.Add(otherData);
  4912. // }
  4913. // nationalTravelFeeData1.Add(new
  4914. // {
  4915. // Country = item.Country,
  4916. // CityData = cityData
  4917. // });
  4918. //}
  4919. sw.Stop();
  4920. return Ok(JsonView(true, "查询成功!耗时:" + sw.ElapsedMilliseconds + "ms", nationalTravelFeeData));
  4921. }
  4922. catch (Exception ex)
  4923. {
  4924. return Ok(JsonView(false, ex.Message));
  4925. throw;
  4926. }
  4927. }
  4928. /// <summary>
  4929. /// 团组模块 - 出入境国家费用标准 Page List Data Source
  4930. /// </summary>
  4931. /// <returns></returns>
  4932. [HttpPost]
  4933. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4934. public async Task<IActionResult> GetNationalTravelFeePageDataSource()
  4935. {
  4936. string sql = string.Format(@"Select * From Grp_NationalTravelFee Where Isdel = 0 ");
  4937. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<Grp_NationalTravelFee>(sql).ToListAsync();
  4938. List<string> countryData = new List<string>();
  4939. countryData.AddRange(nationalTravelFeeData.Select(it => it.Country).ToList());
  4940. countryData = countryData.Distinct().ToList();
  4941. List<dynamic> dataSource = new List<dynamic>();
  4942. foreach (var item in countryData)
  4943. {
  4944. List<string> cityData1 = new List<string>();
  4945. cityData1 = nationalTravelFeeData.Where(it => it.Country == item).Select(it => it.City).ToList();
  4946. var countryData2 = new
  4947. {
  4948. CountryName = item,
  4949. CityData = cityData1
  4950. };
  4951. dataSource.Add(countryData2);
  4952. }
  4953. return Ok(JsonView(true, "查询成功!", dataSource));
  4954. }
  4955. /// <summary>
  4956. /// 团组模块 - 出入境国家费用标准 Page List
  4957. /// </summary>
  4958. /// <returns></returns>
  4959. [HttpPost]
  4960. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4961. public async Task<IActionResult> PostNationalTravelFeePage(NationalTravelFeePageDto dto)
  4962. {
  4963. int portId = dto.PortType;
  4964. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  4965. if (dto.PageIndex == 0) return Ok(JsonView(false, "当前页码数不能为0!"));
  4966. if (dto.PageSize == 0) return Ok(JsonView(false, "每页条数不能0!"));
  4967. string whereSql = string.Empty;
  4968. if (!string.IsNullOrEmpty(dto.Country))
  4969. {
  4970. whereSql += string.Format(@" And gntf.Country ='{0}'", dto.Country);
  4971. }
  4972. if (!string.IsNullOrEmpty(dto.City))
  4973. {
  4974. whereSql += string.Format(@" And gntf.City='{0}'", dto.City);
  4975. }
  4976. string pageSql = string.Format(@"Select * From (
  4977. Select row_number() over(order by gntf.LastUpdateTime Desc) as RowNumber,
  4978. ssd.Name as CurrencyCode, ssd.Remark as CurrencyName,su.CnName as LastUpdateUserName,gntf.*
  4979. From Grp_NationalTravelFee gntf
  4980. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  4981. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  4982. Where gntf.Isdel = 0 {0} ) temp ", whereSql);
  4983. RefAsync<int> total = 0;
  4984. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeePageInfoView>(pageSql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  4985. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData, (int)total));
  4986. }
  4987. /// <summary>
  4988. /// 团组模块 - 出入境国家费用标准 根据城市查询
  4989. /// </summary>
  4990. /// <returns></returns>
  4991. [HttpPost]
  4992. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  4993. public async Task<IActionResult> PostNationalTravelFeeInfoByCountryAndCity(NationalTravelFeeByCountryAndCityDto dto)
  4994. {
  4995. if (dto == null) return Ok(JsonView(false, "请传入参数!"));
  4996. int portId = dto.PortType;
  4997. if (portId != 1 && portId != 2 && portId != 3) return Ok(JsonView(false, "请输入正确的端口号!\r\n请求端口分类1 Web 2 Android 3 IOS"));
  4998. string whereSql = string.Empty;
  4999. if (!string.IsNullOrEmpty(dto.Country))
  5000. {
  5001. whereSql = string.Format(@"And Country = '{0}' ", dto.Country);
  5002. }
  5003. if (!string.IsNullOrEmpty(dto.City))
  5004. {
  5005. whereSql = string.Format(@"And City = '{0}' ", dto.City);
  5006. }
  5007. string sql = string.Format(@"Select gntf.Country,gntf.City,gntf.Currency,ssd.Name as CurrencyCode,
  5008. ssd.Remark as CurrencyName,gntf.RoomCost,gntf.FoodCost,gntf.PublicCost,
  5009. gntf.LastUpdateUserId,su.CnName as LastUpdateUserName,gntf.LastUpdateTime
  5010. From Grp_NationalTravelFee gntf
  5011. Left Join Sys_SetData ssd On ssd.STid = 66 And gntf.Currency = ssd.Id
  5012. Left Join Sys_Users su On gntf.LastUpdateUserId = su.Id
  5013. Where gntf.Isdel = 0 {0} ", whereSql);
  5014. var nationalTravelFeeData = await _groupRepository._sqlSugar.SqlQueryable<NationalTravelFeeInfoByCountryAndCityView>(sql).FirstAsync();
  5015. return Ok(JsonView(true, "查询成功!", nationalTravelFeeData));
  5016. }
  5017. /// <summary>
  5018. /// 团组模块 - 出入境国家费用标准 - Add Or Update
  5019. /// </summary>
  5020. /// <returns></returns>
  5021. [HttpPost]
  5022. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5023. public async Task<IActionResult> PostNationalTravelFeeOperate(NationalTravelFeeOperateDto dto)
  5024. {
  5025. try
  5026. {
  5027. var data = await _enterExitCostRep.PostNationalTravelFeeOperate(dto);
  5028. if (data.Code != 0)
  5029. {
  5030. return Ok(JsonView(false, data.Msg));
  5031. }
  5032. return Ok(JsonView(true, "操作成功!", data.Data));
  5033. }
  5034. catch (Exception ex)
  5035. {
  5036. return Ok(JsonView(false, ex.Message));
  5037. }
  5038. }
  5039. /// <summary>
  5040. /// 团组模块 - 出入境国家费用标准 - Del
  5041. /// </summary>
  5042. /// <returns></returns>
  5043. [HttpPost]
  5044. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5045. public async Task<IActionResult> PostNationalTravelFeeDel(NationalTravelFeeDelDto dto)
  5046. {
  5047. try
  5048. {
  5049. Grp_NationalTravelFee _nationalTravelFee = new Grp_NationalTravelFee()
  5050. {
  5051. Id = dto.Id,
  5052. DeleteUserId = dto.DeleteUserId,
  5053. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  5054. IsDel = 1
  5055. };
  5056. var delStatus = await _enterExitCostRep._sqlSugar.Updateable<Grp_NationalTravelFee>(_nationalTravelFee)
  5057. .UpdateColumns(it => new { it.DeleteTime, it.DeleteUserId, it.IsDel })
  5058. .WhereColumns(it => new { it.Id })
  5059. .ExecuteCommandAsync();
  5060. if (delStatus <= 0)
  5061. {
  5062. return Ok(JsonView(false, "删除失败!"));
  5063. }
  5064. return Ok(JsonView(true, "操作成功!"));
  5065. }
  5066. catch (Exception ex)
  5067. {
  5068. return Ok(JsonView(false, ex.Message));
  5069. }
  5070. }
  5071. #endregion
  5072. #region 签证费用录入
  5073. /// <summary>
  5074. /// 根据diid查询签证费用列表
  5075. /// </summary>
  5076. /// <param name="dto"></param>
  5077. /// <returns></returns>
  5078. [HttpPost]
  5079. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5080. public async Task<IActionResult> QueryVisaByDiId(VisaPriceDto dto)
  5081. {
  5082. try
  5083. {
  5084. Result groupData = await _visaPriceRep.PostVisaByDiId(dto);
  5085. if (groupData.Code != 0)
  5086. {
  5087. return Ok(JsonView(false, groupData.Msg));
  5088. }
  5089. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5090. }
  5091. catch (Exception ex)
  5092. {
  5093. return Ok(JsonView(false, ex.Message));
  5094. }
  5095. }
  5096. /// <summary>
  5097. /// 根据签证费用Id查询单条数据及c表数据
  5098. /// </summary>
  5099. /// <param name="dto"></param>
  5100. /// <returns></returns>
  5101. [HttpPost]
  5102. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5103. public async Task<IActionResult> QueryVisaById(PostVisaByIdDto dto)
  5104. {
  5105. try
  5106. {
  5107. Result groupData = await _visaPriceRep.PostVisaById(dto);
  5108. if (groupData.Code != 0)
  5109. {
  5110. return Ok(JsonView(false, groupData.Msg));
  5111. }
  5112. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5113. }
  5114. catch (Exception ex)
  5115. {
  5116. return Ok(JsonView(false, ex.Message));
  5117. }
  5118. }
  5119. /// <summary>
  5120. /// 签证费用删除
  5121. /// </summary>
  5122. /// <param name="dto"></param>
  5123. /// <returns></returns>
  5124. [HttpPost]
  5125. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5126. public async Task<IActionResult> DelVisaPrice(DelBaseDto dto)
  5127. {
  5128. _sqlSugar.BeginTran();
  5129. var res = await _visaPriceRep.SoftDeleteByIdAsync<Grp_VisaInfo>(dto.Id.ToString(), dto.DeleteUserId);
  5130. if (!res)
  5131. {
  5132. _sqlSugar.RollbackTran();
  5133. return Ok(JsonView(false, "删除失败"));
  5134. }
  5135. var resSub = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  5136. .Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 80)
  5137. .SetColumns(a => new Grp_CreditCardPayment()
  5138. {
  5139. IsDel = 1,
  5140. DeleteUserId = dto.DeleteUserId,
  5141. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5142. }).ExecuteCommand();
  5143. if (resSub < 1)
  5144. {
  5145. _sqlSugar.RollbackTran();
  5146. return Ok(JsonView(false, "删除失败"));
  5147. }
  5148. _sqlSugar.CommitTran();
  5149. return Ok(JsonView(true, "删除成功!"));
  5150. }
  5151. /// <summary>
  5152. /// 签证费用录入下拉框初始化
  5153. /// </summary>
  5154. /// <returns></returns>
  5155. [HttpPost]
  5156. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5157. public async Task<IActionResult> VisaPriceAddSelect()
  5158. {
  5159. try
  5160. {
  5161. //支付方式
  5162. List<Sys_SetData> Payment = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 14 && a.IsDel == 0).ToList();
  5163. List<SetDataInfoView> _Payment = _mapper.Map<List<SetDataInfoView>>(Payment);
  5164. //币种
  5165. List<Sys_SetData> CurrencyList = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 66 && a.IsDel == 0).ToList();
  5166. List<SetDataInfoView> _CurrencyList = _mapper.Map<List<SetDataInfoView>>(CurrencyList);
  5167. //乘客类型
  5168. List<Sys_SetData> PassengerType = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 69 && a.IsDel == 0).ToList();
  5169. List<SetDataInfoView> _PassengerType = _mapper.Map<List<SetDataInfoView>>(PassengerType);
  5170. //卡类型
  5171. List<Sys_SetData> BankCard = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 15 && a.IsDel == 0).ToList();
  5172. List<SetDataInfoView> _BankCard = _mapper.Map<List<SetDataInfoView>>(BankCard);
  5173. var data = new
  5174. {
  5175. Payment = _Payment,
  5176. CurrencyList = _CurrencyList,
  5177. PassengerType = _PassengerType,
  5178. BankCard = _BankCard
  5179. };
  5180. return Ok(JsonView(true, "查询成功!", data));
  5181. }
  5182. catch (Exception ex)
  5183. {
  5184. return Ok(JsonView(false, "程序错误!"));
  5185. throw;
  5186. }
  5187. }
  5188. /// <summary>
  5189. /// 签证费用录入操作(Status:1.新增,2.修改)
  5190. /// </summary>
  5191. /// <param name="dto"></param>
  5192. /// <returns></returns>
  5193. [HttpPost]
  5194. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5195. public async Task<IActionResult> OpVisaPrice(OpVisaPriceDto dto)
  5196. {
  5197. try
  5198. {
  5199. Result groupData = await _visaPriceRep.OpVisaPrice(dto);
  5200. if (groupData.Code != 0)
  5201. {
  5202. return Ok(JsonView(false, groupData.Msg));
  5203. }
  5204. #region 应用推送
  5205. try
  5206. {
  5207. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  5208. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  5209. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  5210. }
  5211. catch (Exception ex)
  5212. {
  5213. }
  5214. #endregion
  5215. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5216. }
  5217. catch (Exception ex)
  5218. {
  5219. return Ok(JsonView(false, ex.Message));
  5220. }
  5221. }
  5222. #endregion
  5223. #region op费用录入
  5224. /// <summary>
  5225. /// 根据diid查询op费用列表
  5226. /// </summary>
  5227. /// <param name="dto"></param>
  5228. /// <returns></returns>
  5229. [HttpPost]
  5230. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5231. public async Task<IActionResult> QueryCarTouristGuideGroundByDiId(CarTouristGuideGroundDto dto)
  5232. {
  5233. try
  5234. {
  5235. Result groupData = await _carTouristGuideGroundRep.QueryCarTouristGuideGroundByDiId(dto);
  5236. if (groupData.Code != 0)
  5237. {
  5238. return Ok(JsonView(false, groupData.Msg));
  5239. }
  5240. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5241. }
  5242. catch (Exception ex)
  5243. {
  5244. return Ok(JsonView(false, ex.Message));
  5245. }
  5246. }
  5247. /// <summary>
  5248. /// 根据op费用Id查询单条数据及c表数据
  5249. /// </summary>
  5250. /// <param name="dto"></param>
  5251. /// <returns></returns>
  5252. [HttpPost]
  5253. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5254. public async Task<IActionResult> QueryCarTouristGuideGroundById(CarTouristGuideGroundIdDto dto)
  5255. {
  5256. try
  5257. {
  5258. Grp_CarTouristGuideGroundReservations _groupData = await _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().FirstAsync(a => a.Id == dto.Id && a.IsDel == 0);
  5259. Grp_CreditCardPayment _creditCardPayment = await _sqlSugar.Queryable<Grp_CreditCardPayment>().FirstAsync(a => a.CId == dto.Id && a.CTable == 79 && a.IsDel == 0);
  5260. var data = new
  5261. {
  5262. CarTouristGuideGround = _groupData,
  5263. CreditCardPayment = _creditCardPayment
  5264. };
  5265. return Ok(JsonView(true, "查询成功!", data));
  5266. }
  5267. catch (Exception ex)
  5268. {
  5269. return Ok(JsonView(false, "程序错误!"));
  5270. }
  5271. }
  5272. /// <summary>
  5273. /// op费用删除
  5274. /// </summary>
  5275. /// <param name="dto"></param>
  5276. /// <returns></returns>
  5277. [HttpPost]
  5278. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5279. public async Task<IActionResult> DelCarTouristGuideGround(DelBaseDto dto)
  5280. {
  5281. try
  5282. {
  5283. var res = await _carTouristGuideGroundRep.SoftDeleteByIdAsync<Grp_CarTouristGuideGroundReservations>(dto.Id.ToString(), dto.DeleteUserId);
  5284. if (!res)
  5285. {
  5286. return Ok(JsonView(false, "删除失败"));
  5287. }
  5288. var result = await _sqlSugar.Updateable<Grp_CarTouristGuideGroundReservationsContent>().Where(a => a.CTGGRId == dto.Id && a.IsDel == 0).SetColumns(a => new Grp_CarTouristGuideGroundReservationsContent()
  5289. {
  5290. IsDel = 1,
  5291. DeleteUserId = dto.DeleteUserId,
  5292. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5293. }).ExecuteCommandAsync();
  5294. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 79).SetColumns(a => new Grp_CreditCardPayment()
  5295. {
  5296. IsDel = 1,
  5297. DeleteUserId = dto.DeleteUserId,
  5298. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  5299. }).ExecuteCommandAsync();
  5300. return Ok(JsonView(true, "删除成功!"));
  5301. }
  5302. catch (Exception ex)
  5303. {
  5304. return Ok(JsonView(false, "程序错误!"));
  5305. throw;
  5306. }
  5307. }
  5308. /// <summary>
  5309. /// op费用录入操作(Status:1.新增,2.修改)
  5310. /// </summary>
  5311. /// <param name="dto"></param>
  5312. /// <returns></returns>
  5313. [HttpPost]
  5314. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5315. public async Task<IActionResult> OpCarTouristGuideGround(OpCarTouristGuideGroundDto dto)
  5316. {
  5317. try
  5318. {
  5319. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGround(dto);
  5320. if (groupData.Code != 0)
  5321. {
  5322. return Ok(JsonView(false, groupData.Msg));
  5323. }
  5324. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5325. }
  5326. catch (Exception ex)
  5327. {
  5328. return Ok(JsonView(false, ex.Message));
  5329. }
  5330. }
  5331. /// <summary>
  5332. /// 填写费用详细页面初始化绑定
  5333. /// </summary>
  5334. /// <param name="dto"></param>
  5335. /// <returns></returns>
  5336. [HttpPost]
  5337. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5338. public IActionResult CarTouristGuideGroundContentInitialize(CarTouristGuideGroundContentDto dto)
  5339. {
  5340. try
  5341. {
  5342. Result groupData = _carTouristGuideGroundRep.CarTouristGuideGroundContent(dto);
  5343. if (groupData.Code != 0)
  5344. {
  5345. return Ok(JsonView(false, groupData.Msg));
  5346. }
  5347. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5348. }
  5349. catch (Exception ex)
  5350. {
  5351. return Ok(JsonView(false, ex.Message));
  5352. }
  5353. }
  5354. /// <summary>
  5355. /// 根据op费用Id查询详细数据
  5356. /// </summary>
  5357. /// <param name="dto"></param>
  5358. /// <returns></returns>
  5359. [HttpPost]
  5360. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5361. public IActionResult OpCarTouristGuideGroundContentById(CarTouristGuideGroundIdDto dto)
  5362. {
  5363. try
  5364. {
  5365. Result groupData = _carTouristGuideGroundRep.OpCarTouristGuideGroundContentById(dto);
  5366. if (groupData.Code != 0)
  5367. {
  5368. return Ok(JsonView(false, groupData.Msg));
  5369. }
  5370. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5371. }
  5372. catch (Exception ex)
  5373. {
  5374. return Ok(JsonView(false, ex.Message));
  5375. }
  5376. }
  5377. /// <summary>
  5378. /// OP费用录入填写详情
  5379. /// </summary>
  5380. /// <param name="dto"></param>
  5381. /// <returns></returns>
  5382. [HttpPost]
  5383. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  5384. public async Task<IActionResult> OpCarTouristGuideGroundContent(OpCarTouristGuideGroundContentDto dto)
  5385. {
  5386. try
  5387. {
  5388. #region 参数校验
  5389. if (dto.Currency <= 0) return Ok(JsonView(false, "币种错误!"));
  5390. var di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.DiId && x.IsDel == 0);
  5391. if (di == null) return Ok(JsonView(false, "团组错误!"));
  5392. #endregion
  5393. Result groupData = await _carTouristGuideGroundRep.OpCarTouristGuideGroundContent(dto);
  5394. if (groupData.Code != 0)
  5395. {
  5396. return Ok(JsonView(false, groupData.Msg));
  5397. }
  5398. //自动审核
  5399. await _feeAuditRep.FeeAutomaticAudit(2, dto.DiId, dto.CTGGRId);
  5400. #region 应用推送
  5401. try
  5402. {
  5403. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  5404. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  5405. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  5406. }
  5407. catch (Exception ex)
  5408. {
  5409. }
  5410. #endregion
  5411. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  5412. }
  5413. catch (Exception ex)
  5414. {
  5415. return Ok(JsonView(false, ex.Message));
  5416. }
  5417. }
  5418. /// <summary>
  5419. /// 获取三公详细所有城市
  5420. /// </summary>
  5421. /// <returns></returns>
  5422. [HttpGet]
  5423. public IActionResult OpCarCityResult()
  5424. {
  5425. var jw = JsonView(false);
  5426. var data = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(x => x.IsDel == 0).Select(x => new
  5427. {
  5428. x.Id,
  5429. x.Country,
  5430. x.City,
  5431. }).ToList();
  5432. if (data.Count > 0)
  5433. {
  5434. jw = JsonView(true, "获取成功!", data);
  5435. }
  5436. else
  5437. {
  5438. jw.Msg = "城市数据为空!";
  5439. jw.Data = new string[0];
  5440. }
  5441. return Ok(jw);
  5442. }
  5443. /// <summary>
  5444. /// 导出地接费用明细
  5445. /// </summary>
  5446. /// <param name="dto"></param>
  5447. /// <returns></returns>
  5448. [HttpPost]
  5449. public IActionResult ExportLocalGuidePriceDetail(ExportLocalGuidePriceDetailDto dto)
  5450. {
  5451. var jw = JsonView(false);
  5452. if (dto.Diid < 1)
  5453. {
  5454. jw.Msg = "请输入正确的diid!";
  5455. return Ok(jw);
  5456. }
  5457. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  5458. if (group == null)
  5459. {
  5460. jw.Msg = "未找到团组信息!";
  5461. return Ok(jw);
  5462. }
  5463. var localGuideArr = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).ToList();
  5464. if (localGuideArr.Count == 0)
  5465. {
  5466. jw.Msg = "该团组暂无地接信息!";
  5467. return Ok(jw);
  5468. }
  5469. var localGroup = localGuideArr.GroupBy(x => x.Area).ToList();
  5470. var overspendSoure = new Dictionary<int, int>
  5471. {
  5472. { 91, 982 }, //车
  5473. { 92 , 1059} ,//导游
  5474. { 994 , 1073}, //翻译
  5475. { 988 , 1074 }, //早餐
  5476. { 93 , 1075 }, //午餐
  5477. { 989 , 1076 }, //晚餐
  5478. };
  5479. Dictionary<string, Stream> Zips = new Dictionary<string, Stream>();
  5480. foreach (var groupArr in localGroup)
  5481. {
  5482. var keyValue = groupArr.Key;
  5483. if (int.TryParse(keyValue, out int cityid))
  5484. {
  5485. var city = _sqlSugar.Queryable<Grp_NationalTravelFee>().First(x => x.Id == cityid && x.IsDel == 0);
  5486. keyValue = city == null ? keyValue : city.Country + "-" + city.City;
  5487. }
  5488. List<List<Grp_CarTouristGuideGroundReservationsContentExtend>> contentArr = new List<List<Grp_CarTouristGuideGroundReservationsContentExtend>>();
  5489. foreach (var item in groupArr)
  5490. {
  5491. var content = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservationsContent, Sys_SetData>((a, b) => a.SId == b.Id
  5492. ).Where((a, b) => a.CTGGRId == item.Id && a.Price != 0M && a.IsDel == 0 && b.IsDel == 0).Select((a, b) =>
  5493. new Grp_CarTouristGuideGroundReservationsContentExtend
  5494. {
  5495. Count = a.Count,
  5496. CreateTime = a.CreateTime,
  5497. CreateUserId = a.CreateUserId,
  5498. CTGGRId = a.CTGGRId,
  5499. Currency = a.Currency,
  5500. DatePrice = a.DatePrice,
  5501. DeleteTime = a.DeleteTime,
  5502. DeleteUserId = a.DeleteUserId,
  5503. DiId = a.DiId,
  5504. Id = a.Id,
  5505. IsDel = a.IsDel,
  5506. Price = a.Price,
  5507. PriceContent = a.PriceContent,
  5508. Remark = a.Remark,
  5509. SId = a.SId,
  5510. SidName = b.Name,
  5511. Units = a.Units,
  5512. }
  5513. ).ToList();
  5514. if (content.Count > 0)
  5515. {
  5516. contentArr.Add(content);
  5517. }
  5518. }
  5519. //open excel
  5520. //set excel
  5521. //save excel
  5522. try
  5523. {
  5524. string filePath = AppSettingsHelper.Get("ExcelBasePath") + "\\Template\\地接费用明细.xlsx";
  5525. IWorkbook workbook;
  5526. if (Path.GetExtension(filePath).ToLower() == ".xls")
  5527. {
  5528. workbook = new HSSFWorkbook(new FileStream(filePath, FileMode.Open, FileAccess.Read));
  5529. }
  5530. else
  5531. {
  5532. workbook = new XSSFWorkbook(new FileStream(filePath, FileMode.Open, FileAccess.Read));
  5533. }
  5534. ISheet sheet = workbook.GetSheetAt(0);
  5535. var rowStartIndex = 2;
  5536. var clounmCount = 10;
  5537. var initStyleRow = sheet.GetRow(2);
  5538. var arr = contentArr.SelectMany(x => x).OrderBy(x => x.SId).ToList();
  5539. //var overspendArrDetail =
  5540. var existsId = new List<CarCompare>();
  5541. var lastElem = arr.Last();
  5542. var thisSid = -1;
  5543. var curr = arr.Count > 0 ? arr[0].Currency : -1;
  5544. var currObj = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == curr && x.IsDel == 0) ?? new Sys_SetData
  5545. {
  5546. Name = "未知币种!",
  5547. Remark = "未知币种!",
  5548. };
  5549. sheet.GetRow(0).GetCell(1).SetCellValue($"{keyValue}费用明细(货币:{currObj.Remark})");
  5550. Action cloneRowFn = () =>
  5551. {
  5552. rowStartIndex++;
  5553. var cloneRow = sheet.CreateRow(rowStartIndex);
  5554. // 复制样式
  5555. for (int i = initStyleRow.FirstCellNum; i < initStyleRow.LastCellNum; i++)
  5556. {
  5557. ICell sourceCell = initStyleRow.GetCell(i);
  5558. ICell targetCell = cloneRow.GetCell(i) ?? cloneRow.CreateCell(i);
  5559. // 确保单元格存在样式
  5560. if (sourceCell.CellStyle != null)
  5561. {
  5562. targetCell.CellStyle = sourceCell.CellStyle;
  5563. }
  5564. }
  5565. };
  5566. var mergeRow = () =>
  5567. {
  5568. for (int i = 2; i < sheet.LastRowNum; i++)
  5569. {
  5570. var row = sheet.GetRow(i);
  5571. var cellFirst = row.GetCell(0);
  5572. var thisIndex = i + 1;
  5573. while (thisIndex < sheet.LastRowNum)
  5574. {
  5575. var nextRow = sheet.GetRow(thisIndex);
  5576. var nextCellFirst = nextRow.GetCell(0);
  5577. if (cellFirst != null && nextCellFirst != null && cellFirst.ToString().Trim() == nextCellFirst.ToString().Trim())
  5578. {
  5579. thisIndex++;
  5580. }
  5581. else
  5582. {
  5583. break;
  5584. }
  5585. }
  5586. thisIndex--;
  5587. if (thisIndex != i)
  5588. {
  5589. //合并row
  5590. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5591. i, // 起始行索引(0-based)
  5592. thisIndex, // 结束行索引(0-based)
  5593. 0, // 起始列索引(0-based)
  5594. 0 // 结束列索引(0-based)
  5595. );
  5596. sheet.AddMergedRegion(cellRangeAddress);
  5597. i = thisIndex;
  5598. }
  5599. }
  5600. };
  5601. var chaoshiNumber = 0;
  5602. var totalNumber = 0.00M;
  5603. string lastStr = "";
  5604. var queryCarArrByCityAndDiid = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations, Grp_CreditCardPayment>((x, b) => x.Id == b.CId && b.IsDel == 0 && b.CTable == 79)
  5605. .Where(x => x.DiId == dto.Diid && x.Area == groupArr.Key).Select((x, b) => new
  5606. {
  5607. b.IsAuditGM,
  5608. x.Id,
  5609. x.Area,
  5610. b.PayPercentage,
  5611. b.PayMoney,
  5612. }).ToList();
  5613. string yesPayment = "", noPayment = "";
  5614. foreach (var item in queryCarArrByCityAndDiid)
  5615. {
  5616. if (item.IsAuditGM == 1)
  5617. {
  5618. yesPayment += $"已支付团款({(int)item.PayPercentage}%):{item.PayMoney} {currObj.Remark}(如有需要,请在此处填写明细)\r\n";
  5619. }
  5620. else
  5621. {
  5622. noPayment += $"剩余团款:{item.PayMoney}{currObj.Remark}(如有需要,请在此处填写明细)\r\n";
  5623. }
  5624. }
  5625. lastStr = yesPayment + noPayment;
  5626. foreach (var item in arr)
  5627. {
  5628. if (existsId.FirstOrDefault(x => x.Sid == item.SId && DateTime.Compare(x.DataPrice, item.DatePrice.ObjToDate()) == 0) == null && !overspendSoure.Values.Contains(item.SId))
  5629. {
  5630. if (thisSid != item.SId)
  5631. {
  5632. if (thisSid == -1)
  5633. {
  5634. thisSid = item.SId;
  5635. }
  5636. else
  5637. {
  5638. //合并小计行
  5639. //创建合并区域的实例
  5640. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5641. rowStartIndex, // 起始行索引(0-based)
  5642. rowStartIndex, // 结束行索引(0-based)
  5643. 0, // 起始列索引(0-based)
  5644. 3 // 结束列索引(0-based)
  5645. );
  5646. sheet.AddMergedRegion(cellRangeAddress);
  5647. var CellStyle = workbook.CreateCellStyle();
  5648. CellStyle.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5649. CellStyle.FillForegroundColor = IndexedColors.Yellow.Index; // 选择填充颜色
  5650. CellStyle.FillPattern = FillPattern.SolidForeground; // 填充方式
  5651. for (int i = 0; i <= clounmCount; i++)
  5652. {
  5653. if (i > 6)
  5654. {
  5655. var CellStyle1 = workbook.CreateCellStyle();
  5656. CellStyle1.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5657. IFont Font = workbook.CreateFont(); // 创建字体
  5658. Font.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(i).CellStyle.GetFont(workbook));
  5659. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  5660. CellStyle1.SetFont(Font);
  5661. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle1;
  5662. }
  5663. else
  5664. {
  5665. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle;
  5666. }
  5667. }
  5668. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue("合计:");
  5669. sheet.GetRow(rowStartIndex).GetCell(4).SetCellValue(arr.Where(x => x.SId == thisSid).Sum(x => x.Count * x.Price).ToString("F2"));
  5670. //超时合计
  5671. sheet.GetRow(rowStartIndex).GetCell(7).SetCellValue("超时合计:");
  5672. //超时数
  5673. sheet.GetRow(rowStartIndex).GetCell(8).SetCellValue(chaoshiNumber == 0 ? "" : chaoshiNumber.ToString());
  5674. //超时合计费用
  5675. sheet.GetRow(rowStartIndex).GetCell(9).SetCellValue(totalNumber == 0 ? "" : totalNumber.ToString());
  5676. thisSid = item.SId;
  5677. cloneRowFn();
  5678. chaoshiNumber = 0;
  5679. totalNumber = 0;
  5680. }
  5681. }
  5682. IRow row = sheet.GetRow(rowStartIndex);
  5683. var whereForResult = arr.Where(x => x.SId == item.SId && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5684. var isOpenOverspendSoure = overspendSoure.Keys.Contains(item.SId);
  5685. List<Grp_CarTouristGuideGroundReservationsContentExtend> overspendWhereForResult = null;
  5686. if (isOpenOverspendSoure)
  5687. {
  5688. overspendWhereForResult = arr.Where(x => x.SId == overspendSoure[item.SId] && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5689. chaoshiNumber += overspendWhereForResult.Sum(x => x.Count);
  5690. totalNumber += overspendWhereForResult.Sum(x => x.Count * x.Price);
  5691. }
  5692. for (int i = 0; i <= clounmCount; i++)
  5693. {
  5694. var cell = row.GetCell(i);
  5695. var setCellValue = InIndexOutFunction(i, whereForResult, overspendWhereForResult);
  5696. if (cell == null)
  5697. {
  5698. cell = row.CreateCell(i);
  5699. }
  5700. var fontRed = workbook.CreateCellStyle(); // 创建单元格样式
  5701. fontRed.CloneStyleFrom(cell.CellStyle);
  5702. IFont Font = workbook.CreateFont(); // 创建字体
  5703. Font.CloneStyleFrom(cell.CellStyle.GetFont(workbook));
  5704. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  5705. fontRed.SetFont(Font);
  5706. byte[] rgb = new byte[3] { 255, 242, 204 };
  5707. var BackgroundColor255_242_204 = workbook.CreateCellStyle();
  5708. BackgroundColor255_242_204.CloneStyleFrom(cell.CellStyle);
  5709. byte[] rgb1 = new byte[3] { 189, 215, 238 };
  5710. if (workbook is XSSFWorkbook)
  5711. {
  5712. BackgroundColor255_242_204.FillForegroundColor = 0;
  5713. ((XSSFColor)BackgroundColor255_242_204.FillForegroundColorColor).SetRgb(rgb);
  5714. BackgroundColor255_242_204.FillPattern = FillPattern.SolidForeground;
  5715. }
  5716. else
  5717. {
  5718. BackgroundColor255_242_204.FillForegroundColor = (((HSSFWorkbook)workbook).GetCustomPalette().FindSimilarColor(rgb[0], rgb[1], rgb[2])).Indexed;
  5719. }
  5720. if (i == 1 || i > 6)
  5721. {
  5722. if (i > 6)
  5723. {
  5724. fontRed.FillForegroundColor = 0;
  5725. ((XSSFColor)fontRed.FillForegroundColorColor).SetRgb(rgb1);
  5726. fontRed.FillPattern = FillPattern.SolidForeground;
  5727. }
  5728. cell.CellStyle = fontRed;
  5729. }
  5730. if (i > 2 && i < 7)
  5731. {
  5732. cell.CellStyle = BackgroundColor255_242_204;
  5733. }
  5734. cell.SetCellValue(setCellValue); //写入单元格
  5735. }
  5736. if (overspendSoure.ContainsKey(thisSid))
  5737. {
  5738. var overspendId = overspendSoure[thisSid];
  5739. whereForResult = arr.Where(x => x.SId == item.SId && DateTime.Compare(x.DatePrice.ObjToDate(), item.DatePrice.ObjToDate()) == 0).ToList();
  5740. }
  5741. cloneRowFn();
  5742. existsId.Add(new CarCompare
  5743. {
  5744. DataPrice = item.DatePrice.ObjToDate(),
  5745. Sid = item.SId
  5746. });
  5747. }
  5748. if (item.Equals(lastElem))
  5749. {
  5750. //合并小计行
  5751. //创建合并区域的实例
  5752. CellRangeAddress cellRangeAddress = new CellRangeAddress(
  5753. rowStartIndex, // 起始行索引(0-based)
  5754. rowStartIndex, // 结束行索引(0-based)
  5755. 0, // 起始列索引(0-based)
  5756. 3 // 结束列索引(0-based)
  5757. );
  5758. sheet.AddMergedRegion(cellRangeAddress);
  5759. var CellStyle = workbook.CreateCellStyle();
  5760. CellStyle.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5761. CellStyle.FillForegroundColor = IndexedColors.Yellow.Index; // 选择填充颜色
  5762. CellStyle.FillPattern = FillPattern.SolidForeground; // 填充方式
  5763. for (int i = 0; i <= clounmCount; i++)
  5764. {
  5765. if (i > 6)
  5766. {
  5767. var CellStyle1 = workbook.CreateCellStyle();
  5768. CellStyle1.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(0).CellStyle);
  5769. IFont Font = workbook.CreateFont(); // 创建字体
  5770. Font.CloneStyleFrom(sheet.GetRow(rowStartIndex).GetCell(i).CellStyle.GetFont(workbook));
  5771. Font.Color = IndexedColors.Red.Index; // 选择字体颜色
  5772. CellStyle1.SetFont(Font);
  5773. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle1;
  5774. }
  5775. else
  5776. {
  5777. sheet.GetRow(rowStartIndex).GetCell(i).CellStyle = CellStyle;
  5778. }
  5779. }
  5780. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue("合计:");
  5781. sheet.GetRow(rowStartIndex).GetCell(4).SetCellValue(arr.Where(x => x.SId == thisSid).Sum(x => x.Count * x.Price).ToString("F2"));
  5782. //超时合计
  5783. sheet.GetRow(rowStartIndex).GetCell(7).SetCellValue("超时合计:");
  5784. //超时数
  5785. sheet.GetRow(rowStartIndex).GetCell(8).SetCellValue(chaoshiNumber == 0 ? "" : chaoshiNumber.ToString());
  5786. //超时合计费用
  5787. sheet.GetRow(rowStartIndex).GetCell(9).SetCellValue(totalNumber == 0 ? "" : totalNumber.ToString());
  5788. cloneRowFn();
  5789. // 创建合并区域的实例
  5790. cellRangeAddress = new CellRangeAddress(
  5791. rowStartIndex, // 起始行索引(0-based)
  5792. rowStartIndex, // 结束行索引(0-based)
  5793. 0, // 起始列索引(0-based)
  5794. initStyleRow.LastCellNum - 1 // 结束列索引(0-based)
  5795. );
  5796. // 添加合并区域
  5797. sheet.AddMergedRegion(cellRangeAddress);
  5798. sheet.GetRow(rowStartIndex).Height = 30 * 30;
  5799. sheet.GetRow(rowStartIndex).GetCell(0).SetCellValue(lastStr);
  5800. }
  5801. }
  5802. mergeRow();
  5803. // 保存修改后的Excel文件到新文件
  5804. //string newFilePath = Path.Combine(Path.GetDirectoryName(filePath), keyValue +"_" + Path.GetFileName(filePath));
  5805. // new FileStream(newFilePath, FileMode.CreateNew)
  5806. using (var stream = new MemoryStream())
  5807. {
  5808. workbook.Write(stream, true);
  5809. stream.Flush();
  5810. stream.Seek(0, SeekOrigin.Begin);
  5811. MemoryStream memoryStream = new MemoryStream();
  5812. stream.CopyTo(memoryStream);
  5813. memoryStream.Seek(0, SeekOrigin.Begin);
  5814. Zips.Add(keyValue + "_" + "费用明细表.xlsx", memoryStream);
  5815. }
  5816. workbook.Close();
  5817. workbook.Dispose();
  5818. }
  5819. catch (Exception ex)
  5820. {
  5821. jw.Msg = "出现异常!" + ex.Message;
  5822. return Ok(jw);
  5823. }
  5824. }
  5825. if (Zips.Count > 0)
  5826. {
  5827. IOOperatorHelper io = new IOOperatorHelper();
  5828. var byts = io.ConvertZipStream(Zips);
  5829. io.ByteToFile(byts, AppSettingsHelper.Get("ExcelBasePath") + $"\\ExportLocalGuidePriceDetail\\{group.TeamName}_地接费用明细.zip");
  5830. //http://132.232.92.186:24/Office/Word/EnterExitCost/File/
  5831. jw = JsonView(true, "success", new { url = AppSettingsHelper.Get("OfficeBaseUrl") + $"\\Office\\Excel\\ExportLocalGuidePriceDetail\\{group.TeamName}_地接费用明细.zip" });
  5832. }
  5833. else
  5834. {
  5835. jw.Msg = "暂无生成文件!";
  5836. }
  5837. return Ok(jw);
  5838. }
  5839. private string InIndexOutFunction(int i, List<Grp_CarTouristGuideGroundReservationsContentExtend> arr, List<Grp_CarTouristGuideGroundReservationsContentExtend> arrOverspendSoure)
  5840. {
  5841. string outStr = string.Empty;
  5842. switch (i)
  5843. {
  5844. case 0:
  5845. outStr = arr[0].SidName;
  5846. break;
  5847. case 1:
  5848. outStr = arr[0].DataPriceStr;
  5849. break;
  5850. case 2:
  5851. outStr = string.Join("-", arr.Select(x => x.PriceContent));
  5852. break;
  5853. case 4:
  5854. outStr = arr.Sum(x => x.Subtotal).ToString("F2");
  5855. break;
  5856. case 7:
  5857. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  5858. {
  5859. var curr = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == arrOverspendSoure[0].Currency && x.IsDel == 0);
  5860. var unit = _sqlSugar.Queryable<Sys_SetData>().First(x => x.Id == arrOverspendSoure[0].Units && x.IsDel == 0);
  5861. outStr = arrOverspendSoure.Sum(x => x.Price).ToString("F2") + curr?.Remark + "/" + unit?.Name;
  5862. }
  5863. break;
  5864. case 8:
  5865. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  5866. {
  5867. outStr = arrOverspendSoure.Sum(x => x.Count).ToString();
  5868. }
  5869. break;
  5870. case 9:
  5871. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  5872. {
  5873. outStr = arrOverspendSoure.Sum(x => x.Count * x.Price).ToString();
  5874. }
  5875. break;
  5876. case 10:
  5877. if (arrOverspendSoure != null && arrOverspendSoure.Count > 0)
  5878. {
  5879. outStr = string.Join("-", arrOverspendSoure.Select(x => x.PriceContent));
  5880. }
  5881. break;
  5882. }
  5883. return outStr;
  5884. }
  5885. #region OP行程单
  5886. /// <summary>
  5887. /// OP行程单初始化
  5888. /// </summary>
  5889. /// <param name="dto"></param>
  5890. /// <returns></returns>
  5891. [HttpPost]
  5892. public IActionResult InitOpTravel(InitOpTravelDto dto)
  5893. {
  5894. var jw = JsonView(false);
  5895. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  5896. var group = groupList.First();
  5897. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  5898. if (group == null)
  5899. {
  5900. jw.Msg = "暂无团组!";
  5901. return Ok(jw);
  5902. }
  5903. group = groupList.Find(x => x.Id == diid);
  5904. if (group == null)
  5905. {
  5906. jw.Msg = "请输入正确的团组ID!";
  5907. return Ok(jw);
  5908. }
  5909. string city = string.Empty;
  5910. var blackCode = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(x => x.IsDel == 0 && x.DiId == diid).ToList();
  5911. if (blackCode.Count > 0)
  5912. {
  5913. var black = blackCode.First();
  5914. black.BlackCode = black.BlackCode == null ? "" : black.BlackCode;
  5915. var blackSp = Regex.Split(black.BlackCode, "\\d+\\.", RegexOptions.IgnoreCase).Where(x => !string.IsNullOrWhiteSpace(x)).ToArray();
  5916. if (blackSp.Length > 0)
  5917. {
  5918. try
  5919. {
  5920. var cityArrCode = new List<string>(20);
  5921. foreach (var item in blackSp)
  5922. {
  5923. var itemSp = item.Split(' ').Where(x => !string.IsNullOrWhiteSpace(x)).ToList();
  5924. var IndexSelect = itemSp[2];
  5925. var cityArrCodeLength = cityArrCode.Count - 1;
  5926. var startCity = IndexSelect.Substring(0, 3);
  5927. if (cityArrCodeLength > 0)
  5928. {
  5929. var arrEndCity = cityArrCode[cityArrCodeLength];
  5930. if (arrEndCity != startCity)
  5931. {
  5932. cityArrCode.Add(startCity.ToUpper());
  5933. }
  5934. }
  5935. else
  5936. {
  5937. cityArrCode.Add(startCity.ToUpper());
  5938. }
  5939. var endCity = IndexSelect.Substring(3, 3);
  5940. cityArrCode.Add(endCity.ToUpper());
  5941. }
  5942. var cityThree = string.Empty;
  5943. cityArrCode.ForEach(x => cityThree += "'" + x + "',");
  5944. cityThree = cityThree.TrimEnd(',');
  5945. if (string.IsNullOrWhiteSpace(cityThree))
  5946. {
  5947. throw new
  5948. Exception("error");
  5949. }
  5950. string sql = $"SELECT * FROM Res_ThreeCode rtc WHERE UPPER(rtc.Three) in ({cityThree}) ";
  5951. var cityArr = _sqlSugar.SqlQueryable<Res_ThreeCode>(sql).ToList();
  5952. foreach (var item in cityArrCode)
  5953. {
  5954. var find = cityArr.Find(x => x.Three.ToUpper() == item.ToUpper());
  5955. if (find != null)
  5956. {
  5957. city += find.City + "/";
  5958. }
  5959. else
  5960. {
  5961. city += item + "三字码未收入/";
  5962. }
  5963. }
  5964. city = city.TrimEnd('/');
  5965. }
  5966. catch (Exception e)
  5967. {
  5968. city = "黑屏代码格式不正确!";
  5969. }
  5970. }
  5971. }
  5972. else
  5973. {
  5974. city = "未录入黑屏代码";
  5975. }
  5976. var OpTravelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0).OrderBy(x => x.Days).Select(x => new TravelArrView
  5977. {
  5978. Date = x.Date,
  5979. Days = x.Days,
  5980. Diffgroup = x.Diffgroup,
  5981. Diid = x.Diid,
  5982. Traffic_First = x.Traffic_First,
  5983. Traffic_Second = x.Traffic_Second,
  5984. Trip = x.Trip,
  5985. WeekDay = x.WeekDay,
  5986. Id = x.Id
  5987. }).ToList();
  5988. jw.Data = new
  5989. {
  5990. groupList = groupList.Select(x => new
  5991. {
  5992. x.Id,
  5993. x.TeamName,
  5994. x.TourCode
  5995. }).ToList(),
  5996. groupInfo = new
  5997. {
  5998. group.VisitDays,
  5999. group.TourCode,
  6000. group.VisitPNumber,
  6001. group.TeamName,
  6002. city
  6003. },
  6004. OpTravelList
  6005. };
  6006. jw.Code = 200;
  6007. jw.Msg = "操作成功!";
  6008. return Ok(jw);
  6009. }
  6010. /// <summary>
  6011. /// 删除团组行程单
  6012. /// </summary>
  6013. /// <returns></returns>
  6014. [HttpPost]
  6015. public IActionResult DelTravel(DelOpTravelDto dto)
  6016. {
  6017. var jw = JsonView(false);
  6018. if (dto.UserId <= 0 || dto.Diid <= 0)
  6019. {
  6020. jw.Msg = "请输入正确的参数!";
  6021. return Ok(jw);
  6022. }
  6023. var isTrue = _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Diid == dto.Diid && x.IsDel == 0)
  6024. .SetColumns(x => new Grp_TravelList
  6025. {
  6026. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd"),
  6027. DeleteUserId = dto.UserId,
  6028. IsDel = 1,
  6029. }).ExecuteCommand();
  6030. jw = JsonView(true);
  6031. return Ok(jw);
  6032. }
  6033. /// <summary>
  6034. /// 行程单保存
  6035. /// </summary>
  6036. /// <returns></returns>
  6037. [HttpPost]
  6038. public IActionResult TravelSave(TravelSaveDto dto)
  6039. {
  6040. var jw = JsonView(false);
  6041. if (dto.Arr.Count > 0)
  6042. {
  6043. try
  6044. {
  6045. _sqlSugar.BeginTran();
  6046. foreach (var item in dto.Arr)
  6047. {
  6048. if (item.Id == 0)
  6049. {
  6050. throw new Exception("请传入正确的Id");
  6051. }
  6052. _sqlSugar.Updateable<Grp_TravelList>().Where(x => x.Id == item.Id)
  6053. .SetColumns(x => new Grp_TravelList
  6054. {
  6055. Trip = item.Trip
  6056. }).ExecuteCommand();
  6057. }
  6058. _sqlSugar.CommitTran();
  6059. jw = JsonView(true);
  6060. }
  6061. catch (Exception ex)
  6062. {
  6063. _sqlSugar.RollbackTran();
  6064. jw.Msg = "程序异常!" + ex.Message;
  6065. }
  6066. }
  6067. else
  6068. {
  6069. jw.Msg = "请传入正确的参数!";
  6070. }
  6071. return Ok(jw);
  6072. }
  6073. /// <summary>
  6074. /// 导出行程单
  6075. /// </summary>
  6076. /// <param name="dto"></param>
  6077. /// <returns></returns>
  6078. [HttpPost]
  6079. public IActionResult ExportTravel(ExportTravelDto dto)
  6080. {
  6081. var jw = JsonView(false);
  6082. jw.Data = "";
  6083. int diid = 0;
  6084. var Find = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid);
  6085. if (Find == null)
  6086. {
  6087. jw.Msg = "请选择正确的团组!";
  6088. return Ok(jw);
  6089. }
  6090. else
  6091. {
  6092. diid = Find.Id;
  6093. }
  6094. //数据源
  6095. List<Grp_TravelList> _travelList = new List<Grp_TravelList>();
  6096. DataTable dtBlack = null;
  6097. try
  6098. {
  6099. dtBlack = GeneralMethod.GetTableByBlackCode(diid);
  6100. }
  6101. catch (Exception)
  6102. {
  6103. jw.Msg = "机票黑屏代码有误!";
  6104. return Ok(jw);
  6105. }
  6106. string CityStr = string.Empty;
  6107. if (dtBlack.Rows.Count == 0)
  6108. {
  6109. jw.Msg = "机票黑屏代码有误!";
  6110. return Ok(jw);
  6111. }
  6112. else
  6113. {
  6114. foreach (DataRow row in dtBlack.Rows)
  6115. {
  6116. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  6117. {
  6118. jw.Msg = "机票黑屏代码有误!" + row["Error"].ToString();
  6119. return Ok(jw);
  6120. }
  6121. }
  6122. CityStr = GeneralMethod.GetGroupCityLine(diid, "/");
  6123. _travelList = _sqlSugar.Queryable<Grp_TravelList>().Where(x => x.Diid == diid && x.IsDel == 0 && x.Issel == 1).ToList();
  6124. }
  6125. //创建数据源Table
  6126. DataTable dtSource = new DataTable();
  6127. dtSource.Columns.Add("Days", typeof(string));
  6128. dtSource.Columns.Add("Date", typeof(string));
  6129. dtSource.Columns.Add("Week", typeof(string));
  6130. dtSource.Columns.Add("Traffic", typeof(string));
  6131. dtSource.Columns.Add("Trip", typeof(string));
  6132. //获取数据,放到datatable
  6133. foreach (var item in _travelList)
  6134. {
  6135. DataRow dr = dtSource.NewRow();
  6136. dr["Days"] = item.Days;
  6137. dr["Date"] = item.Date;
  6138. dr["Week"] = item.WeekDay;
  6139. dr["Traffic"] = item.Traffic_First
  6140. + "\r\n"
  6141. + item.Traffic_Second;
  6142. dr["Trip"] = item.Trip;
  6143. dtSource.Rows.Add(dr);
  6144. }
  6145. Dictionary<string, string> dic = new Dictionary<string, string>();
  6146. dic.Add("Dele", Find.TeamName.ToString() + GetNum(Find.VisitDays.ToString()));
  6147. dic.Add("City", CityStr);
  6148. dic.Add("Days", Find.VisitDays.ToString());
  6149. dic.Add("DeleCode", Find.TourCode);
  6150. dic.Add("Pnum", Find.VisitPNumber.ToString());
  6151. //模板路径
  6152. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Travel/日行程3.docx";
  6153. //载入模板
  6154. Document doc = null;
  6155. DocumentBuilder builder = null;
  6156. try
  6157. {
  6158. //载入模板
  6159. doc = new Document(tempPath);
  6160. builder = new DocumentBuilder(doc);
  6161. }
  6162. catch (Exception)
  6163. {
  6164. jw.Msg = "模板位置不存在!";
  6165. return Ok(jw);
  6166. }
  6167. foreach (var key in dic.Keys)
  6168. {
  6169. Bookmark bookmark = doc.Range.Bookmarks[key];
  6170. if (bookmark != null)
  6171. {
  6172. builder.MoveToBookmark(key);
  6173. builder.Write(dic[key]);
  6174. }
  6175. }
  6176. //获取word里所有表格
  6177. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  6178. //获取所填表格的序数
  6179. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  6180. try
  6181. {
  6182. //循环赋值
  6183. for (int i = 0; i < dtSource.Rows.Count; i++)
  6184. {
  6185. builder.MoveToCell(0, i + 1, 0, 0);
  6186. builder.Write(dtSource.Rows[i]["Days"].ToString());
  6187. builder.MoveToCell(0, i + 1, 1, 0);
  6188. builder.Write(dtSource.Rows[i]["Date"].ToString() + "\r\n" + dtSource.Rows[i]["Week"].ToString());
  6189. builder.MoveToCell(0, i + 1, 2, 0);
  6190. builder.Write(dtSource.Rows[i]["Traffic"].ToString());
  6191. var trip = dtSource.Rows[i]["Trip"].ToString();
  6192. builder.MoveToCell(0, i + 1, 3, 0);
  6193. builder.Write(trip);
  6194. var cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 1, true);
  6195. var paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  6196. // 获取特定索引的段落
  6197. Paragraph paragraph = (Paragraph)paragraphs[0];
  6198. Run run = paragraph.Runs[0];
  6199. Aspose.Words.Font font = run.Font;
  6200. font.Name = "黑体";
  6201. //设置双休红色
  6202. cell = (Aspose.Words.Tables.Cell)doc.GetChild(NodeType.Cell, ((i + 2) * 4) - 3, true);
  6203. paragraphs = cell.GetChildNodes(NodeType.Paragraph, true);
  6204. paragraph = (Paragraph)paragraphs[1];
  6205. if (paragraph.GetText().Contains("星期六") || paragraph.GetText().Contains("星期日"))
  6206. {
  6207. run = paragraph.Runs[0];
  6208. font = run.Font;
  6209. font.Color = Color.Red;
  6210. }
  6211. }
  6212. }
  6213. catch (Exception ex)
  6214. {
  6215. }
  6216. //删除多余行
  6217. while (tableOne.Rows.Count > 1 + dtSource.Rows.Count)
  6218. {
  6219. tableOne.Rows.RemoveAt(1 + dtSource.Rows.Count);//(1+dtSource.Rows.Count + 1)-1
  6220. }
  6221. string savePath = AppSettingsHelper.Get("WordBasePath") + "Travel/export/";
  6222. if (!Directory.Exists(savePath))
  6223. {
  6224. try
  6225. {
  6226. Directory.CreateDirectory(savePath);
  6227. }
  6228. catch
  6229. {
  6230. }
  6231. }
  6232. string path = savePath + Find.TeamName + "出访日程";
  6233. string ftpPath = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + "Travel/export/" + Find.TeamName + "出访日程";
  6234. try
  6235. {
  6236. Aspose.Words.SaveFormat saveFormat = Aspose.Words.SaveFormat.Doc;
  6237. string postfix = ".docx";
  6238. if (dto.IsPDF == 1)
  6239. {
  6240. saveFormat = Aspose.Words.SaveFormat.Pdf;
  6241. postfix = ".pdf";
  6242. }
  6243. doc.Save(path + postfix, saveFormat);
  6244. jw = JsonView(true, "导出成功", ftpPath + postfix);
  6245. }
  6246. catch (Exception)
  6247. {
  6248. jw = JsonView(false);
  6249. }
  6250. return Ok(jw);
  6251. }
  6252. /// <summary>
  6253. /// 根据大写数字返回小写数字或根据小写数字返回大写数字
  6254. /// </summary>
  6255. /// <param name="num"></param>
  6256. /// <returns></returns>
  6257. string GetNum(string num)
  6258. {
  6259. string str = "";
  6260. switch (num)
  6261. {
  6262. case "1":
  6263. str = "一";
  6264. break;
  6265. case "2":
  6266. str = "二";
  6267. break;
  6268. case "3":
  6269. str = "三";
  6270. break;
  6271. case "4":
  6272. str = "四";
  6273. break;
  6274. case "5":
  6275. str = "五";
  6276. break;
  6277. case "6":
  6278. str = "六";
  6279. break;
  6280. case "7":
  6281. str = "七";
  6282. break;
  6283. case "8":
  6284. str = "八";
  6285. break;
  6286. case "9":
  6287. str = "九";
  6288. break;
  6289. case "10":
  6290. str = "十";
  6291. break;
  6292. case "11":
  6293. str = "十一";
  6294. break;
  6295. case "12":
  6296. str = "十二";
  6297. break;
  6298. case "一":
  6299. str = "1";
  6300. break;
  6301. case "二":
  6302. str = "2";
  6303. break;
  6304. case "三":
  6305. str = "3";
  6306. break;
  6307. case "四":
  6308. str = "4";
  6309. break;
  6310. case "五":
  6311. str = "5";
  6312. break;
  6313. case "六":
  6314. str = "6";
  6315. break;
  6316. case "七":
  6317. str = "7";
  6318. break;
  6319. case "八":
  6320. str = "8";
  6321. break;
  6322. case "九":
  6323. str = "9";
  6324. break;
  6325. case "十":
  6326. str = "10";
  6327. break;
  6328. case "十一":
  6329. str = "11";
  6330. break;
  6331. case "十二":
  6332. str = "12";
  6333. break;
  6334. }
  6335. return str;
  6336. }
  6337. #endregion
  6338. #endregion
  6339. #region 团组成本
  6340. /// <summary>
  6341. /// 团组成本数据初始化
  6342. /// </summary>
  6343. /// <param name="dto"></param>
  6344. /// <returns></returns>
  6345. [HttpPost]
  6346. public async Task<IActionResult> GroupCostInit(GroupCostInItDto dto)
  6347. {
  6348. var groupList = _sqlSugar.SqlQueryable<DelegationInfoAndIsTrueView>($@"
  6349. Select a.Id,TeamName GroupName,b.isTrue From Grp_DelegationInfo a left join (select top 100 percent Diid, CASE
  6350. WHEN COUNT(*) >= 0 THEN 'True'
  6351. ELSE 'False' END as isTrue from Grp_GroupCost where Isdel = 0 and date != '' group by Diid) b on a.Id = b.Diid
  6352. Where TeamName != '' And IsDel = 0 Order By a.Id Desc
  6353. ").ToList(); //团组列表
  6354. int diid = dto.Diid == -1 ? groupList.First().Id : dto.Diid;
  6355. var groupInfo = await _groupRepository.PostShareGroupInfo(new ShareGroupInfoDto { PortType = 1, Id = diid }); //团组信息
  6356. List<Res_CountryFeeCost> visaCountryInfoArr = new List<Res_CountryFeeCost>();
  6357. var groupinfoValue = (groupInfo.Data as Web_ShareGroupInfoView);
  6358. if (groupinfoValue != null)
  6359. {
  6360. var countryArr = groupinfoValue.VisitCountry ??= string.Empty;
  6361. var spArr = new string[1] { countryArr };
  6362. if (countryArr.Contains("|"))
  6363. {
  6364. spArr = countryArr.Split("|");
  6365. }
  6366. else if (countryArr.Contains("、"))
  6367. {
  6368. spArr = countryArr.Split("、");
  6369. }
  6370. foreach (var item in spArr.Where(x => !string.IsNullOrWhiteSpace(x)).ToList())
  6371. {
  6372. var dbQueryCountry = _sqlSugar.Queryable<Res_CountryFeeCost>().First(x => x.VisaCountry.Contains(item));
  6373. if (dbQueryCountry != null)
  6374. {
  6375. visaCountryInfoArr.Add(dbQueryCountry);
  6376. }
  6377. }
  6378. }
  6379. var groupChecks = _checkBoxs.GetCheckBoxsByDiid(diid); //团组选中信息 可枚举
  6380. var groupCost = _GroupCostRepository.GetAllByDiid(diid); //团组列表信息
  6381. var create = _GroupCostRepository.
  6382. CreateGroupCostByBlackCode(dto.Diid);
  6383. if (groupCost.Count == 0 && create.Code == 0)
  6384. {
  6385. groupCost = (create.Data as List<Grp_GroupCost>) ?? new List<Grp_GroupCost>();
  6386. }
  6387. var groupCostMap = _mapper.Map<List<Grp_GroupCostDto>>(groupCost);
  6388. var hotelNumber = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(diid); //酒店数量 可枚举
  6389. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(diid); //成本系数 可枚举
  6390. groupCostMap = groupCostMap.Select(x =>
  6391. {
  6392. if (DateTime.TryParse(x.Date, out DateTime dataForamt))
  6393. {
  6394. x.Date = dataForamt.ToString("yyyy-MM-dd");
  6395. }
  6396. return x;
  6397. }).ToList();
  6398. //GroupCostParameter.Add(new
  6399. // Grp_GroupCostParameter());
  6400. var GroupCostParameterMap = _mapper.Map<List<Grp_GroupCostParameterDto>>(GroupCostParameter);
  6401. bool hotelIsTrue = _sqlSugar.Queryable<Grp_HotelInquiry>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).Count() > 0;
  6402. return Ok(JsonView(new
  6403. {
  6404. groupList,
  6405. groupInfo,
  6406. groupChecks,
  6407. groupCost = groupCostMap,
  6408. hotelNumber,
  6409. GroupCostParameter = GroupCostParameterMap,
  6410. visaCountryInfoArr = visaCountryInfoArr.Select(x => new
  6411. {
  6412. x.VisaCountry,
  6413. x.VisaPrice,
  6414. x.Id,
  6415. }).ToList(),
  6416. baoPi = _GroupCostParameterRepository.GetBaoPi(diid),
  6417. blackCodeIsTrue = create.Code == 0 ? true : false,
  6418. hotelIsTrue = hotelIsTrue,
  6419. }));
  6420. }
  6421. /// <summary>
  6422. /// 团组成本信息保存
  6423. /// </summary>
  6424. /// <param name="dto"></param>
  6425. /// <returns></returns>
  6426. [HttpPost]
  6427. public async Task<IActionResult> SaveGroupCost(GroupCostSavaDto dto)
  6428. {
  6429. if (dto.Diid <= 0 || dto.Userid <= 0)
  6430. {
  6431. return Ok(JsonView(false));
  6432. }
  6433. JsonView jw = null;
  6434. bool isTrue = false;
  6435. #region 复制团组成本
  6436. //if (dto.Diid == 2581)
  6437. //{
  6438. // dto.Diid = 2599;
  6439. // dto.CheckBoxs.ForEach(x =>
  6440. // {
  6441. // x.Diid = 2599;
  6442. // });
  6443. // dto.GroupCosts.ForEach(x =>
  6444. // {
  6445. // x.Diid = 2599;
  6446. // });
  6447. // dto.CostTypeHotelNumbers.ForEach(x =>
  6448. // {
  6449. // x.Diid = 2599;
  6450. // });
  6451. // dto.GroupCostParameters.ForEach(x =>
  6452. // {
  6453. // x.DiId = 2599;
  6454. // });
  6455. //}
  6456. #endregion
  6457. var Grp_groups = _mapper.Map<List<Grp_GroupCost>>(dto.GroupCosts);
  6458. Grp_groups.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; }); //.ToString("yyyy-MM-dd HH:mm:ss")
  6459. var Grp_CheckBoxs = _mapper.Map<List<Grp_CheckBoxs>>(dto.CheckBoxs);
  6460. Grp_CheckBoxs.ForEach(x => { x.CreateUserId = dto.Userid; x.CreateTime = DateTime.Now; });
  6461. var Grp_HotelNumber = _mapper.Map<List<Grp_CostTypeHotelNumber>>(dto.CostTypeHotelNumbers);
  6462. var Grp_CostParameters = _mapper.Map<List<Grp_GroupCostParameter>>(dto.GroupCostParameters);
  6463. try
  6464. {
  6465. _sqlSugar.BeginTran();
  6466. isTrue = await _GroupCostRepository.
  6467. SaveGroupCostList(Grp_groups, dto.Diid, dto.Userid); //列表
  6468. isTrue = await _checkBoxs.SaveCheckBoxs(Grp_CheckBoxs, dto.Diid); //选中项
  6469. isTrue = await _CostTypeHotelNumberRepository.SaveHotelNumber(Grp_HotelNumber, dto.Userid, dto.Diid); //酒店房间数量
  6470. isTrue = await _GroupCostParameterRepository.SaveAsync(Grp_CostParameters, dto.Userid, dto.Diid); //系数
  6471. _sqlSugar.CommitTran();
  6472. jw = JsonView(true, "保存成功!", isTrue);
  6473. }
  6474. catch (Exception)
  6475. {
  6476. _sqlSugar.RollbackTran();
  6477. jw = JsonView(false);
  6478. }
  6479. return Ok(jw);
  6480. }
  6481. /// <summary>
  6482. /// 司兼导数据
  6483. /// </summary>
  6484. /// <param name="dto"></param>
  6485. /// <returns></returns>
  6486. [HttpPost]
  6487. public IActionResult GetCarGuides(CarGuidesDto dto)
  6488. {
  6489. JsonView jw = null;
  6490. var Data = _sqlSugar.SqlQueryable<Grp_CarGuides>($@" select * from Grp_CarGuides where isdel = 0 ").ToList();
  6491. jw = JsonView(true, "获取成功!", Data);
  6492. return Ok(jw);
  6493. }
  6494. /// <summary>
  6495. /// 导游数据
  6496. /// </summary>
  6497. /// <param name="dto"></param>
  6498. /// <returns></returns>
  6499. [HttpPost]
  6500. public IActionResult GetGuidesInfo(CarGuidesDto dto)
  6501. {
  6502. JsonView jw = null;
  6503. //var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" SELECT* FROM (
  6504. // 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
  6505. // where RowNumber BETWEEN {(dto.Page - 1) * dto.Size + 1} and {(dto.Page) * dto.Size}").ToList();
  6506. var Data = _sqlSugar.SqlQueryable<Grp_GuidesInfo>($@" select * from Grp_GuidesInfo where isdel = 0 ").ToList();
  6507. jw = JsonView(true, "获取成功!", Data);
  6508. return Ok(jw);
  6509. }
  6510. /// <summary>
  6511. /// 成本车数据
  6512. /// </summary>
  6513. /// <param name="dto"></param>
  6514. /// <returns></returns>
  6515. [HttpPost]
  6516. public IActionResult GetCarInfo(CarGuidesDto dto)
  6517. {
  6518. JsonView jw = null;
  6519. var Data = _sqlSugar.SqlQueryable<Grp_CarInfo>($@" select * from Grp_CarInfo where isdel = 0 ").ToList();
  6520. jw = JsonView(true, "获取成功!", Data);
  6521. return Ok(jw);
  6522. }
  6523. /// <summary>
  6524. /// 景点数据
  6525. /// </summary>
  6526. /// <param name="dto"></param>
  6527. /// <returns></returns>
  6528. [HttpPost]
  6529. public IActionResult GetScenicSpotInfo(CarGuidesDto dto)
  6530. {
  6531. var Data = _sqlSugar.SqlQueryable<Grp_ScenicSpotInfo>($@" select * from Grp_ScenicSpotInfo where isdel = 0 ").ToList();
  6532. return Ok(JsonView(true, "获取成功!", Data));
  6533. }
  6534. /// <summary>
  6535. /// 成本通知
  6536. /// </summary>
  6537. /// <param name="dto"></param>
  6538. /// <returns></returns>
  6539. [HttpPost]
  6540. public async Task<IActionResult> GroupIsShare(GroupIsShareDto dto)
  6541. {
  6542. if (dto.Diid < 0)
  6543. {
  6544. return Ok(JsonView(false));
  6545. }
  6546. JsonView jw = null;
  6547. var GroupCostParameter = _GroupCostParameterRepository.GetGroupCostParameterMainByDiid(dto.Diid);
  6548. if (GroupCostParameter != null)
  6549. {
  6550. int IsShare = 0;
  6551. if (GroupCostParameter.IsShare == 0) IsShare = 1;
  6552. else if (GroupCostParameter.IsShare == 1) IsShare = 0;
  6553. bool isTrue = await _GroupCostParameterRepository.UpdateIsShareById(GroupCostParameter.Id, IsShare);
  6554. string msg = string.Empty;
  6555. if (isTrue)
  6556. {
  6557. if (IsShare == 0)
  6558. {
  6559. msg = "禁止通知,其他模块操作人员不可见此成本信息!";
  6560. }
  6561. else
  6562. {
  6563. #region 企微通知对应岗位用户
  6564. try
  6565. {
  6566. AppNoticeLibrary.SendUserMsg_GroupShare_ToJob(dto.Diid);
  6567. }
  6568. catch (Exception ex)
  6569. {
  6570. }
  6571. #endregion
  6572. msg = "通知成功,其他模块操作人员可见此成本信息!";
  6573. }
  6574. jw = JsonView(isTrue, msg, new { IsShare });
  6575. }
  6576. else
  6577. {
  6578. msg = "修改失败!";
  6579. jw = JsonView(isTrue, msg);
  6580. }
  6581. }
  6582. else
  6583. {
  6584. jw = JsonView(false, "该团没有数据,请添加数据,保存后再操作!");
  6585. }
  6586. return Ok(jw);
  6587. }
  6588. /// <summary>
  6589. /// 导出报价单
  6590. /// </summary>
  6591. /// <param name="dto"></param>
  6592. /// <returns></returns>
  6593. [HttpPost]
  6594. public async Task<IActionResult> ExportPriceCheckWordFile(GroupCostExportWordFile dto)
  6595. {
  6596. if (dto.Diid == 0)
  6597. {
  6598. return Ok(JsonView(false, "请传递团组id"));
  6599. }
  6600. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  6601. if (deleInfo.Code != 0)
  6602. {
  6603. return Ok(JsonView(false, "团组信息查询失败!"));
  6604. }
  6605. var di = deleInfo.Data as DelegationInfoWebView;
  6606. if (di != null)
  6607. {
  6608. //文件名
  6609. string strFileName = di.TeamName + "-收款账单.doc";
  6610. //获取模板
  6611. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/收款账单(四川)模板.doc");
  6612. //载入模板
  6613. Document doc = new Document(tmppath);
  6614. decimal TotalPrice = 0.00M;
  6615. string itemStr = string.Empty;
  6616. Dictionary<string, string> airSouer = new Dictionary<string, string>();
  6617. //airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  6618. airSouer.Add("JJCTBR", "经济舱及酒店双人间");
  6619. airSouer.Add("JJCSGR", "经济舱及酒店单人间");
  6620. airSouer.Add("GWCSGR", "公务舱及酒店单人间");
  6621. airSouer.Add("GWCJSES", "公务舱及酒店小套房");
  6622. airSouer.Add("GWCSUITE", "公务舱及酒店套房");
  6623. airSouer.Add("JJCSUITE", "经济舱及酒店套房");
  6624. var groupCostType = dto.airs.GroupBy(x => x.costType).OrderBy(x => x.Key);
  6625. foreach (var cost in groupCostType)
  6626. {
  6627. var List = cost.ToList();
  6628. if (cost.Key == "A")
  6629. {
  6630. foreach (var ListItem in List)
  6631. {
  6632. if (ListItem.number > 0)
  6633. {
  6634. if (ListItem.code.Contains("TBR"))
  6635. {
  6636. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6637. }
  6638. else
  6639. {
  6640. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6641. }
  6642. TotalPrice += (ListItem.number * ListItem.price);
  6643. }
  6644. }
  6645. }
  6646. else
  6647. {
  6648. itemStr = itemStr.Insert(0, "A段\r\n");
  6649. itemStr += "B段\r\n";
  6650. foreach (var ListItem in List)
  6651. {
  6652. if (ListItem.number > 0)
  6653. {
  6654. if (ListItem.code.Contains("TBR"))
  6655. {
  6656. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + (ListItem.number / 2) + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6657. }
  6658. else
  6659. {
  6660. itemStr += "团费(" + airSouer[ListItem.code] + ") RMB " + ListItem.price.ToString("F2") + "/人*" + ListItem.number + "(" + ListItem.number + "间) ............合计 RMB " + (ListItem.number * ListItem.price).ToString("#0.00") + "\n";
  6661. }
  6662. TotalPrice += (ListItem.number * ListItem.price);
  6663. }
  6664. }
  6665. }
  6666. }
  6667. #region 替换Word模板书签内容
  6668. Dictionary<string, string> marks = new Dictionary<string, string>();
  6669. marks.Add("To", di.ClientUnit);//付款方
  6670. marks.Add("ToTel", di.TellPhone);//付款方电话
  6671. marks.Add("Date", DateTime.Now.ToString("yyyy-MM-dd"));//导出时间
  6672. marks.Add("Team", di.VisitCountry.Replace(" ", "、"));//团队名称
  6673. marks.Add("TontractTime", (di.VisitDate).ToString("yyyy年MM月dd日"));//付款日期
  6674. marks.Add("PayDay", (di.PayDay).ToString());//付款预期
  6675. marks.Add("PaymentMoney", (di.PaymentMoney).ToString("#0.00"));//付款金额
  6676. marks.Add("WeChat", di.WeChatNo ?? "");//微信号
  6677. marks.Add("PayItemContent", itemStr);//详细信息
  6678. marks.Add("Total", TotalPrice.ToString("F2"));//合计
  6679. #endregion
  6680. ////注
  6681. //if (doc.Range.Bookmarks["Attention"] != null)
  6682. //{
  6683. // Bookmark mark = doc.Range.Bookmarks["Attention"];
  6684. // mark.Text = frList[0].Attention;
  6685. //}
  6686. foreach (var item in marks.Keys)
  6687. {
  6688. if (doc.Range.Bookmarks[item] != null)
  6689. {
  6690. Bookmark mark = doc.Range.Bookmarks[item];
  6691. mark.Text = marks[item];
  6692. }
  6693. }
  6694. byte[] bytes = null;
  6695. using (MemoryStream stream = new MemoryStream())
  6696. {
  6697. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  6698. bytes = stream.ToArray();
  6699. }
  6700. //doc.Save((AppSettingsHelper.Get("WordBasePath") + "Template/") + strFileName);
  6701. return Ok(JsonView(true, "", new
  6702. {
  6703. Data = bytes,
  6704. strFileName,
  6705. }));
  6706. }
  6707. else
  6708. {
  6709. return Ok(JsonView(false, "团组信息不存在!"));
  6710. }
  6711. }
  6712. /// <summary>
  6713. /// 导出团组成本
  6714. /// </summary>
  6715. /// <param name="dto"></param>
  6716. /// <returns></returns>
  6717. [HttpPost]
  6718. public async Task<IActionResult> ExportGroupCostExcelFile(GroupCostExportExcelFile dto)
  6719. {
  6720. var jw = JsonView(false);
  6721. if (dto.Diid == 0)
  6722. {
  6723. return Ok(JsonView(false, "请传递团组id"));
  6724. }
  6725. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  6726. if (deleInfo.Code != 0)
  6727. {
  6728. return Ok(JsonView(false, "团组信息查询失败!"));
  6729. }
  6730. var di = deleInfo.Data as DelegationInfoWebView;
  6731. if (di == null)
  6732. {
  6733. return Ok(JsonView(false, "团组信息查询失败!"));
  6734. }
  6735. List<GroupCost_Excel> List_GC1 = new List<GroupCost_Excel>();
  6736. WorkbookDesigner designer = new WorkbookDesigner();
  6737. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + ("Template/团组-成本.xls"));
  6738. var List_GC = _GroupCostRepository.GetAllByDiid(dto.Diid);
  6739. for (int i = 0; i < List_GC.Count; i++)
  6740. {
  6741. GroupCost_Excel gc = new GroupCost_Excel();
  6742. gc.Id = List_GC[i].Id;
  6743. gc.Diid = List_GC[i].Diid.ToString();
  6744. gc.DAY = List_GC[i].DAY;
  6745. string week = "";
  6746. if (!string.IsNullOrEmpty(List_GC[i].Date.Trim()))
  6747. week = CultureInfo.CurrentCulture.DateTimeFormat.GetDayName(Convert.ToDateTime(List_GC[i].Date).DayOfWeek);
  6748. gc.Date = (List_GC[i].Date + "\n" + week).ToString();
  6749. gc.ITIN = List_GC[i].ITIN;
  6750. gc.CarType = List_GC[i].CarType;
  6751. gc.CarTiming = List_GC[i].CarTiming.ToString() == "0" ? "/" : List_GC[i].CarTiming.ToString();
  6752. gc.CarCost = List_GC[i].CarCost.ToString() == "0" ? "/" : List_GC[i].CarCost.ToString();
  6753. gc.CarNumber = List_GC[i].CarNumber.ToString() == "0" ? "/" : List_GC[i].CarNumber.ToString();
  6754. gc.TGS = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGS.ToString();
  6755. gc.TGWH = List_GC[i].TGWH.ToString() == "0" ? "/" : List_GC[i].TGWH.ToString();
  6756. gc.TGN = List_GC[i].TGS.ToString() == "0" ? "/" : List_GC[i].TGN.ToString();
  6757. gc.TGOF = List_GC[i].TGOF.ToString() == "0" ? "/" : List_GC[i].TGOF.ToString();
  6758. gc.TGM = List_GC[i].TGM.ToString() == "0" ? "/" : List_GC[i].TGM.ToString();
  6759. gc.TGA = List_GC[i].TGA.ToString() == "0" ? "/" : List_GC[i].TGA.ToString();
  6760. gc.TGTF = List_GC[i].TGTF.ToString() == "0" ? "/" : List_GC[i].TGTF.ToString();
  6761. gc.TGEF = List_GC[i].TGEF.ToString() == "0" ? "/" : List_GC[i].TGEF.ToString();
  6762. gc.CFS = List_GC[i].CFS.ToString() == "0" ? "/" : List_GC[i].CFS.ToString();
  6763. gc.CFM = List_GC[i].CFM.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  6764. gc.CFOF = List_GC[i].CFOF.ToString() == "0" ? "/" : List_GC[i].CFOF.ToString();
  6765. gc.B = List_GC[i].B.ToString() == "0" ? "/" : List_GC[i].B.ToString();
  6766. gc.L = List_GC[i].L.ToString() == "0" ? "/" : List_GC[i].L.ToString();
  6767. gc.D = List_GC[i].D.ToString() == "0" ? "/" : List_GC[i].D.ToString();
  6768. gc.TBR = List_GC[i].TBR.ToString() == "0" ? "/" : List_GC[i].TBR.ToString();
  6769. gc.SGR = List_GC[i].SGR.ToString() == "0" ? "/" : List_GC[i].SGR.ToString();
  6770. gc.JS_ES = List_GC[i].JS_ES.ToString() == "0" ? "/" : List_GC[i].JS_ES.ToString();
  6771. gc.Suite = List_GC[i].Suite.ToString() == "0" ? "/" : List_GC[i].Suite.ToString();
  6772. gc.ACCON = List_GC[i].ACCON.ToString() == "0" ? "/" : List_GC[i].ACCON.ToString();
  6773. gc.TV = List_GC[i].TV.ToString() == "0" ? "/" : List_GC[i].TV.ToString();
  6774. gc.iL = List_GC[i].iL.ToString() == "0" ? "/" : List_GC[i].iL.ToString();
  6775. gc.IF = List_GC[i].IF.ToString() == "0" ? "/" : List_GC[i].IF.ToString();
  6776. gc.EF = List_GC[i].EF.ToString() == "0" ? "/" : List_GC[i].EF.ToString();
  6777. gc.B_R_F = List_GC[i].B_R_F.ToString() == "0" ? "/" : List_GC[i].B_R_F.ToString();
  6778. gc.TE = List_GC[i].TE.ToString() == "0" ? "/" : List_GC[i].TE.ToString();
  6779. gc.TGTips = List_GC[i].TGTips.ToString() == "0" ? "/" : List_GC[i].TGTips.ToString();
  6780. gc.DRVTips = List_GC[i].DRVTips.ToString() == "0" ? "/" : List_GC[i].DRVTips.ToString();
  6781. gc.PC = List_GC[i].PC.ToString() == "0" ? "/" : List_GC[i].PC.ToString();
  6782. gc.TLF = List_GC[i].TLF.ToString() == "0" ? "/" : List_GC[i].TLF.ToString();
  6783. gc.ECT = List_GC[i].ECT.ToString() == "0" ? "/" : List_GC[i].ECT.ToString();
  6784. List_GC1.Add(gc);
  6785. }
  6786. var dt = CommonFun.GetDataTableFromIList(List_GC1);
  6787. dt.TableName = "TB";
  6788. //报表标题等不用dt的值
  6789. designer.SetDataSource("TeamName", dto.title.TeamName);
  6790. designer.SetDataSource("Pnumber", dto.title.GroupNumber);
  6791. designer.SetDataSource("Tax", dto.title.Tax);
  6792. //designer.SetDataSource("FFYS", lblHotelCB.Text);
  6793. designer.SetDataSource("Currency", dto.title.Currency);
  6794. //designer.SetDataSource("HotelXS", txtHotelXS.Text);
  6795. designer.SetDataSource("Rate", dto.title.Rate);
  6796. var hotels = _CostTypeHotelNumberRepository.GetCostTypeHotelNumberByDiid(dto.Diid);
  6797. var Aparams = hotels.Find(x => x.Type == "Default");
  6798. if (Aparams == null)
  6799. {
  6800. return Ok(jw);
  6801. }
  6802. //酒店数量
  6803. var txtSGRNumber = Aparams.SGR.ToString();
  6804. var txtTBRNumber = Aparams.TBR.ToString();
  6805. var txtJSESNumber = Aparams.JSES.ToString();
  6806. var txtSUITENumbe = Aparams.SUITE.ToString();
  6807. if (dto.costType == "B")
  6808. {
  6809. Aparams = hotels.Find(x => x.Type == "A");
  6810. var Bparams = hotels.Find(x => x.Type == "B");
  6811. if (Aparams == null || Bparams == null)
  6812. {
  6813. return Ok(jw);
  6814. }
  6815. txtSGRNumber = "A段人数:" + Aparams.SGR.ToString() + " B段人数:" + Bparams.SGR.ToString();
  6816. txtTBRNumber = "A段人数:" + Aparams.TBR.ToString() + " B段人数:" + Bparams.TBR.ToString();
  6817. txtJSESNumber = "A段人数:" + Aparams.JSES.ToString() + " B段人数:" + Bparams.JSES.ToString();
  6818. txtSUITENumbe = "A段人数:" + Aparams.SUITE.ToString() + " B段人数:" + Bparams.SUITE.ToString();
  6819. }
  6820. designer.SetDataSource("SGRNumber", txtSGRNumber);
  6821. designer.SetDataSource("TBRNumber", txtTBRNumber);
  6822. designer.SetDataSource("JSESNumber", txtJSESNumber);
  6823. designer.SetDataSource("SUITENumber", txtSUITENumbe);
  6824. var ws = designer.Workbook.Worksheets[0];
  6825. int Row = List_GC.Count;
  6826. int startIndex = 11;
  6827. int HideRows = 0;
  6828. List<int> hideRowsList = new List<int>();
  6829. decimal TzZCB2 = 0.00M, TzZLR2 = 0.00M, TzZBJ2 = 0.00M;
  6830. #region A段left数据
  6831. var left = dto.leftInfo.Find(x => x.Type == "A");
  6832. if (left == null)
  6833. {
  6834. return Ok(jw);
  6835. }
  6836. var leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("签证"));
  6837. if (leftBindData != null)
  6838. {
  6839. designer.SetDataSource("VisaDRCB", leftBindData.cb);
  6840. designer.SetDataSource("VisaRS", leftBindData.rs);
  6841. designer.SetDataSource("VisaXS", leftBindData.xs);
  6842. designer.SetDataSource("VisaZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6843. designer.SetDataSource("VisaDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6844. designer.SetDataSource("VisaZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6845. designer.SetDataSource("VisaDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6846. designer.SetDataSource("VisaZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6847. }
  6848. else
  6849. {
  6850. hideRowsList.Add(Row + startIndex + HideRows);
  6851. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6852. }
  6853. HideRows += 2;
  6854. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("保险"));
  6855. if (leftBindData != null)
  6856. {
  6857. designer.SetDataSource("BXDRCB", leftBindData.cb);
  6858. designer.SetDataSource("BXRS", leftBindData.rs);
  6859. designer.SetDataSource("BXXS", leftBindData.xs);
  6860. designer.SetDataSource("BXZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6861. designer.SetDataSource("BXDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6862. designer.SetDataSource("BXZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6863. designer.SetDataSource("BXDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6864. designer.SetDataSource("BXZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6865. }
  6866. else
  6867. {
  6868. hideRowsList.Add(Row + startIndex + HideRows);
  6869. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6870. }
  6871. HideRows += 2;
  6872. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  6873. if (leftBindData != null)
  6874. {
  6875. designer.SetDataSource("HSDRCB", leftBindData.cb);
  6876. designer.SetDataSource("HSRS", leftBindData.rs);
  6877. designer.SetDataSource("HSXS", leftBindData.xs);
  6878. designer.SetDataSource("HSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6879. designer.SetDataSource("HSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6880. designer.SetDataSource("HSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6881. designer.SetDataSource("HSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6882. designer.SetDataSource("HSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6883. }
  6884. else
  6885. {
  6886. hideRowsList.Add(Row + startIndex + HideRows);
  6887. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6888. }
  6889. HideRows += 2;
  6890. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  6891. if (leftBindData != null)
  6892. {
  6893. designer.SetDataSource("JPJJCCB", leftBindData.cb);
  6894. designer.SetDataSource("JPJJCPnum", leftBindData.rs);
  6895. designer.SetDataSource("JPJJCXS", leftBindData.xs);
  6896. designer.SetDataSource("JPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6897. designer.SetDataSource("JPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6898. designer.SetDataSource("JPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6899. designer.SetDataSource("JPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6900. designer.SetDataSource("JPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6901. }
  6902. else
  6903. {
  6904. hideRowsList.Add(Row + startIndex + HideRows);
  6905. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6906. }
  6907. HideRows += 2;
  6908. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  6909. if (leftBindData != null)
  6910. {
  6911. designer.SetDataSource("JPGWCCB", leftBindData.cb);
  6912. designer.SetDataSource("JPGWCPNum", leftBindData.rs);
  6913. designer.SetDataSource("JPGWCXS", leftBindData.xs);
  6914. designer.SetDataSource("JPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6915. designer.SetDataSource("JPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6916. designer.SetDataSource("JPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6917. designer.SetDataSource("JPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6918. designer.SetDataSource("JPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6919. }
  6920. else
  6921. {
  6922. hideRowsList.Add(Row + startIndex + HideRows);
  6923. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6924. }
  6925. HideRows += 2;
  6926. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  6927. if (leftBindData != null)
  6928. {
  6929. ////TBR
  6930. designer.SetDataSource("HotelTBRDRCB", leftBindData.cb);
  6931. designer.SetDataSource("HotelTBRRS", leftBindData.rs);
  6932. designer.SetDataSource("HotelTBRXS", leftBindData.xs);
  6933. designer.SetDataSource("HotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6934. designer.SetDataSource("HotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6935. designer.SetDataSource("HotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6936. designer.SetDataSource("HotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6937. designer.SetDataSource("HotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6938. }
  6939. else
  6940. {
  6941. hideRowsList.Add(Row + startIndex + HideRows);
  6942. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6943. }
  6944. HideRows += 2;
  6945. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  6946. if (leftBindData != null)
  6947. {
  6948. ////SGR
  6949. designer.SetDataSource("HotelSGRDRCB", leftBindData.cb);
  6950. designer.SetDataSource("HotelSGRRS", leftBindData.rs);
  6951. designer.SetDataSource("HotelSGRXS", leftBindData.xs);
  6952. designer.SetDataSource("HotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6953. designer.SetDataSource("HotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6954. designer.SetDataSource("HotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6955. designer.SetDataSource("HotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6956. designer.SetDataSource("HotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6957. }
  6958. else
  6959. {
  6960. hideRowsList.Add(Row + startIndex + HideRows);
  6961. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6962. }
  6963. HideRows += 2;
  6964. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  6965. if (leftBindData != null)
  6966. {
  6967. ////JS/ES
  6968. designer.SetDataSource("HotelJSESDRCB", leftBindData.cb);
  6969. designer.SetDataSource("HotelJSESRS", leftBindData.rs);
  6970. designer.SetDataSource("HotelJSESXS", leftBindData.xs);
  6971. designer.SetDataSource("HotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6972. designer.SetDataSource("HotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6973. designer.SetDataSource("HotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6974. designer.SetDataSource("HotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6975. designer.SetDataSource("HotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6976. }
  6977. else
  6978. {
  6979. hideRowsList.Add(Row + startIndex + HideRows);
  6980. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  6981. }
  6982. HideRows += 2;
  6983. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  6984. if (leftBindData != null)
  6985. {
  6986. ////SUITE
  6987. designer.SetDataSource("HotelSUITEDRCB", leftBindData.cb);
  6988. designer.SetDataSource("HotelSUITERS", leftBindData.rs);
  6989. designer.SetDataSource("HotelSUITEXS", leftBindData.xs);
  6990. designer.SetDataSource("HotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  6991. designer.SetDataSource("HotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  6992. designer.SetDataSource("HotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  6993. designer.SetDataSource("HotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  6994. designer.SetDataSource("HotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  6995. }
  6996. else
  6997. {
  6998. hideRowsList.Add(Row + startIndex + HideRows);
  6999. // ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7000. }
  7001. HideRows += 2;
  7002. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  7003. if (leftBindData != null)
  7004. {
  7005. designer.SetDataSource("DJDRCB", leftBindData.cb);
  7006. designer.SetDataSource("DJRS", leftBindData.rs);
  7007. designer.SetDataSource("DJXS", leftBindData.xs);
  7008. designer.SetDataSource("DJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7009. designer.SetDataSource("DJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7010. designer.SetDataSource("DJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7011. designer.SetDataSource("DJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7012. designer.SetDataSource("DJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7013. }
  7014. else
  7015. {
  7016. hideRowsList.Add(Row + startIndex + HideRows);
  7017. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7018. }
  7019. HideRows += 2;
  7020. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  7021. if (leftBindData != null)
  7022. {
  7023. designer.SetDataSource("HCPCB", leftBindData.cb);
  7024. designer.SetDataSource("HCPRS", leftBindData.rs);
  7025. designer.SetDataSource("HCPXS", leftBindData.xs);
  7026. designer.SetDataSource("HCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7027. designer.SetDataSource("HCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7028. designer.SetDataSource("HCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7029. designer.SetDataSource("HCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7030. designer.SetDataSource("HCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7031. }
  7032. else
  7033. {
  7034. hideRowsList.Add(Row + startIndex + HideRows);
  7035. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7036. }
  7037. HideRows += 2;
  7038. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  7039. if (leftBindData != null)
  7040. {
  7041. designer.SetDataSource("CPCB", leftBindData.cb);
  7042. designer.SetDataSource("CPRS", leftBindData.rs);
  7043. designer.SetDataSource("CPXS", leftBindData.xs);
  7044. designer.SetDataSource("CPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7045. designer.SetDataSource("CPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7046. designer.SetDataSource("CPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7047. designer.SetDataSource("CPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7048. designer.SetDataSource("CPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7049. }
  7050. else
  7051. {
  7052. hideRowsList.Add(Row + startIndex + HideRows);
  7053. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7054. }
  7055. HideRows += 2;
  7056. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  7057. if (leftBindData != null)
  7058. {
  7059. designer.SetDataSource("GWDRCD", leftBindData.cb);
  7060. designer.SetDataSource("GWRS", leftBindData.rs);
  7061. designer.SetDataSource("GWXS", leftBindData.xs);
  7062. designer.SetDataSource("GWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7063. designer.SetDataSource("GWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7064. designer.SetDataSource("GWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7065. designer.SetDataSource("GWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7066. designer.SetDataSource("GWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7067. }
  7068. else
  7069. {
  7070. hideRowsList.Add(Row + startIndex + HideRows);
  7071. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7072. }
  7073. HideRows += 2;
  7074. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  7075. if (leftBindData != null)
  7076. {
  7077. designer.SetDataSource("LYJDRCB", leftBindData.cb);
  7078. designer.SetDataSource("LYJRS", leftBindData.rs);
  7079. designer.SetDataSource("LYJXS", leftBindData.xs);
  7080. designer.SetDataSource("LYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7081. designer.SetDataSource("LYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7082. designer.SetDataSource("LYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7083. designer.SetDataSource("LYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7084. designer.SetDataSource("LYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7085. }
  7086. else
  7087. {
  7088. hideRowsList.Add(Row + startIndex + HideRows);
  7089. //ws.Cells.HideRows((Row + startIndex + HideRows), 2);
  7090. }
  7091. #endregion
  7092. #region A段Right信息
  7093. var right = dto.rightInfo.Find(x => x.Type == "A");
  7094. if (right == null)
  7095. {
  7096. return Ok(jw);
  7097. }
  7098. HideRows += 4;
  7099. var rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  7100. if (rightBindData != null)
  7101. {
  7102. //经济舱 + 双人间 TBR
  7103. designer.SetDataSource("lblJJCTBRDRCB", rightBindData.cb);
  7104. designer.SetDataSource("txtJJCTBRRS", rightBindData.rs);
  7105. designer.SetDataSource("lblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7106. designer.SetDataSource("lblJJCTBRDRBJ", rightBindData.bj);
  7107. designer.SetDataSource("lblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7108. designer.SetDataSource("lblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7109. designer.SetDataSource("lblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7110. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7111. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7112. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7113. }
  7114. else
  7115. {
  7116. hideRowsList.Add(Row + startIndex + HideRows);
  7117. }
  7118. HideRows += 2;
  7119. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  7120. if (rightBindData != null)
  7121. {
  7122. //经济舱 + 单人间 SGR
  7123. designer.SetDataSource("lblJJCSGRDRCB", rightBindData.cb);
  7124. designer.SetDataSource("txtJJCSGRRS", rightBindData.rs);
  7125. designer.SetDataSource("lblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7126. designer.SetDataSource("lblJJCSGRDRBJ", rightBindData.bj);
  7127. designer.SetDataSource("lblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7128. designer.SetDataSource("lblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7129. designer.SetDataSource("lblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7130. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7131. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7132. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7133. }
  7134. else
  7135. {
  7136. hideRowsList.Add(Row + startIndex + HideRows);
  7137. }
  7138. HideRows += 2;
  7139. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  7140. if (rightBindData != null)
  7141. {
  7142. //公务舱 + 单人间 SGR
  7143. designer.SetDataSource("lblGWCSGRCB", rightBindData.cb);
  7144. designer.SetDataSource("lblGWCSGRRS", rightBindData.rs);
  7145. designer.SetDataSource("lblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7146. designer.SetDataSource("lblGWCSGRDRBJ", rightBindData.bj);
  7147. designer.SetDataSource("lblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7148. designer.SetDataSource("lblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7149. designer.SetDataSource("lblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7150. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7151. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7152. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7153. }
  7154. else
  7155. {
  7156. hideRowsList.Add(Row + startIndex + HideRows);
  7157. }
  7158. HideRows += 2;
  7159. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7160. if (rightBindData != null)
  7161. {
  7162. //公务舱 + 小套房 JSES
  7163. designer.SetDataSource("lblGWCJSESDRCB", rightBindData.cb);
  7164. designer.SetDataSource("txtGWCJSESRS", rightBindData.rs);
  7165. designer.SetDataSource("lblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7166. designer.SetDataSource("lblGWCJSESDRBJ", rightBindData.bj);
  7167. designer.SetDataSource("lblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7168. designer.SetDataSource("lblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7169. designer.SetDataSource("lblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7170. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7171. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7172. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7173. }
  7174. else
  7175. {
  7176. hideRowsList.Add(Row + startIndex + HideRows);
  7177. }
  7178. HideRows += 2;
  7179. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  7180. if (rightBindData != null)
  7181. {
  7182. //公务舱 + 小套房 JSES
  7183. designer.SetDataSource("lblGWCSUITEDRCB", rightBindData.cb);
  7184. designer.SetDataSource("txtGWCSUITERS", rightBindData.rs);
  7185. designer.SetDataSource("lblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7186. designer.SetDataSource("lblGWCSUITEDRBJ", rightBindData.bj);
  7187. designer.SetDataSource("lblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7188. designer.SetDataSource("lblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7189. designer.SetDataSource("lblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7190. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7191. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7192. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7193. }
  7194. else
  7195. {
  7196. hideRowsList.Add(Row + startIndex + HideRows);
  7197. }
  7198. HideRows += 2;
  7199. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7200. if (rightBindData != null)
  7201. {
  7202. //经济舱 + 大套房
  7203. designer.SetDataSource("lblJJCSUITEDRCB", rightBindData.cb);
  7204. designer.SetDataSource("txtJJCSUITERS", rightBindData.rs);
  7205. designer.SetDataSource("lblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7206. designer.SetDataSource("lblJJCSUITEDRBJ", rightBindData.bj);
  7207. designer.SetDataSource("lblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7208. designer.SetDataSource("lblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7209. designer.SetDataSource("lblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7210. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7211. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7212. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7213. }
  7214. else
  7215. {
  7216. hideRowsList.Add(Row + startIndex + HideRows);
  7217. }
  7218. #endregion
  7219. #region B段标题清空
  7220. designer.SetDataSource("CostBDRCB", "");
  7221. designer.SetDataSource("CostBRS", "");
  7222. designer.SetDataSource("CostBXS", "");
  7223. designer.SetDataSource("CostBZCB", "");
  7224. designer.SetDataSource("CostBDRBJ", "");
  7225. designer.SetDataSource("CostBZBJ", "");
  7226. designer.SetDataSource("CostBDRLR", "");
  7227. designer.SetDataSource("CostBZLR", "");
  7228. designer.SetDataSource("CostBDRCBOM", "");
  7229. designer.SetDataSource("CostBRSOM", "");
  7230. designer.SetDataSource("CostBZCBOM", "");
  7231. designer.SetDataSource("CostBDRBJOM", "");
  7232. designer.SetDataSource("CostBZBJOM", "");
  7233. designer.SetDataSource("CostBDRLROM", "");
  7234. designer.SetDataSource("CostBZLROM", "");
  7235. #endregion
  7236. designer.SetDataSource("HotelTBRName", "酒店TBR单间成本(CNY)");
  7237. designer.SetDataSource("HotelSGRName", "酒店SGR单间成本(CNY)");
  7238. designer.SetDataSource("HotelJSESName", "酒店JSES单间成本(CNY)");
  7239. designer.SetDataSource("HotelSUITEName", "酒店SUITE单间成本(CNY)");
  7240. designer.SetDataSource("DJName", "地接(CNY)");
  7241. designer.SetDataSource("HCPName", "地接-火车票(CNY)");
  7242. designer.SetDataSource("CPName", "地接-船票(CNY)");
  7243. designer.SetDataSource("GWName", "公务(CNY)");
  7244. designer.SetDataSource("YQHName", "邀请函(CNY)");
  7245. designer.SetDataSource("LYJName", "零用金(CNY)");
  7246. designer.SetDataSource("HSName", "核酸检测(CNY)");
  7247. designer.SetDataSource("AirGWCName", "机票-公务舱(CNY)");
  7248. designer.SetDataSource("AirJJCName", "机票-经济舱(CNY)");
  7249. designer.SetDataSource("BXName", "保险(CNY)");
  7250. designer.SetDataSource("VisaName", "签证(CNY)");
  7251. #region B段基本数据
  7252. if (dto.costType == "B")
  7253. {
  7254. left = dto.leftInfo.Find(x => x.Type == "B");
  7255. if (left == null)
  7256. {
  7257. return Ok(jw);
  7258. }
  7259. #region B段left数据
  7260. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("核酸"));
  7261. if (leftBindData != null)
  7262. {
  7263. designer.SetDataSource("BHSDRCB", leftBindData.cb);
  7264. designer.SetDataSource("BHSRS", leftBindData.rs);
  7265. designer.SetDataSource("BHSXS", leftBindData.xs);
  7266. designer.SetDataSource("BHSZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7267. designer.SetDataSource("BHSDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7268. designer.SetDataSource("BHSZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7269. designer.SetDataSource("BHSDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7270. designer.SetDataSource("BHSZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7271. }
  7272. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("经济舱"));
  7273. if (leftBindData != null)
  7274. {
  7275. designer.SetDataSource("BJPJJCCB", leftBindData.cb);
  7276. designer.SetDataSource("BJPJJCPnum", leftBindData.rs);
  7277. designer.SetDataSource("BJPJJCXS", leftBindData.xs);
  7278. designer.SetDataSource("BJPJJCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7279. designer.SetDataSource("BJPJJCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7280. designer.SetDataSource("BJPJJCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7281. designer.SetDataSource("BJPJJCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7282. designer.SetDataSource("BJPJJCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7283. }
  7284. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务舱"));
  7285. if (leftBindData != null)
  7286. {
  7287. designer.SetDataSource("BJPGWCCB", leftBindData.cb);
  7288. designer.SetDataSource("BJPGWCPNum", leftBindData.rs);
  7289. designer.SetDataSource("BJPGWCXS", leftBindData.xs);
  7290. designer.SetDataSource("BJPGWCZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7291. designer.SetDataSource("BJPGWCDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7292. designer.SetDataSource("BJPGWCZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7293. designer.SetDataSource("BJPGWCDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7294. designer.SetDataSource("BJPGWCZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7295. }
  7296. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("火车票"));
  7297. if (leftBindData != null)
  7298. {
  7299. designer.SetDataSource("BHCPCB", leftBindData.cb);
  7300. designer.SetDataSource("BHCPRS", leftBindData.rs);
  7301. designer.SetDataSource("BHCPXS", leftBindData.xs);
  7302. designer.SetDataSource("BHCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7303. designer.SetDataSource("BHCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7304. designer.SetDataSource("BHCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7305. designer.SetDataSource("BHCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7306. designer.SetDataSource("BHCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7307. }
  7308. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("船票"));
  7309. if (leftBindData != null)
  7310. {
  7311. designer.SetDataSource("BCPCB", leftBindData.cb);
  7312. designer.SetDataSource("BCPRS", leftBindData.rs);
  7313. designer.SetDataSource("BCPXS", leftBindData.xs);
  7314. designer.SetDataSource("BCPZCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7315. designer.SetDataSource("BCPDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7316. designer.SetDataSource("BCPZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7317. designer.SetDataSource("BCPDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7318. designer.SetDataSource("BCPZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7319. }
  7320. //TBR
  7321. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("TBR"));
  7322. if (leftBindData != null)
  7323. {
  7324. designer.SetDataSource("BHotelTBRDRCB", leftBindData.cb);
  7325. designer.SetDataSource("BHotelTBRRS", leftBindData.rs);
  7326. designer.SetDataSource("BHotelTBRXS", leftBindData.xs);
  7327. designer.SetDataSource("BHotelTBRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7328. designer.SetDataSource("BHotelTBRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7329. designer.SetDataSource("BHotelTBRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7330. designer.SetDataSource("BHotelTBRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7331. designer.SetDataSource("BHotelTBRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7332. }
  7333. //SGR
  7334. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SGR"));
  7335. if (leftBindData != null)
  7336. {
  7337. designer.SetDataSource("BHotelSGRDRCB", leftBindData.cb);
  7338. designer.SetDataSource("BHotelSGRRS", leftBindData.rs);
  7339. designer.SetDataSource("BHotelSGRXS", leftBindData.xs);
  7340. designer.SetDataSource("BHotelSGRCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7341. designer.SetDataSource("BHotelSGRDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7342. designer.SetDataSource("BHotelSGRZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7343. designer.SetDataSource("BHotelSGRDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7344. designer.SetDataSource("BHotelSGRZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7345. }
  7346. //JS/ES
  7347. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("JSES"));
  7348. if (leftBindData != null)
  7349. {
  7350. designer.SetDataSource("BHotelJSESDRCB", leftBindData.cb);
  7351. designer.SetDataSource("BHotelJSESRS", leftBindData.rs);
  7352. designer.SetDataSource("BHotelJSESXS", leftBindData.xs);
  7353. designer.SetDataSource("BHotelJSESCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7354. designer.SetDataSource("BHotelJSESDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7355. designer.SetDataSource("BHotelJSESZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7356. designer.SetDataSource("BHotelJSESDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7357. designer.SetDataSource("BHotelJSESZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7358. }
  7359. //SUITE
  7360. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("SUITE"));
  7361. if (leftBindData != null)
  7362. {
  7363. designer.SetDataSource("BHotelSUITEDRCB", leftBindData.cb);
  7364. designer.SetDataSource("BHotelSUITERS", leftBindData.rs);
  7365. designer.SetDataSource("BHotelSUITEXS", leftBindData.xs);
  7366. designer.SetDataSource("BHotelSUITECB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7367. designer.SetDataSource("BHotelSUITEDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7368. designer.SetDataSource("BHotelSUITEZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7369. designer.SetDataSource("BHotelSUITEDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7370. designer.SetDataSource("BHotelSUITEZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7371. }
  7372. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("地接"));
  7373. if (leftBindData != null)
  7374. {
  7375. designer.SetDataSource("BDJDRCB", leftBindData.cb);
  7376. designer.SetDataSource("BDJRS", leftBindData.rs);
  7377. designer.SetDataSource("BDJXS", leftBindData.xs);
  7378. designer.SetDataSource("BDJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7379. designer.SetDataSource("BDJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7380. designer.SetDataSource("BDJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7381. designer.SetDataSource("BDJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7382. designer.SetDataSource("BDJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7383. }
  7384. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("公务单人"));
  7385. if (leftBindData != null)
  7386. {
  7387. designer.SetDataSource("BGWDRCD", leftBindData.cb);
  7388. designer.SetDataSource("BGWRS", leftBindData.rs);
  7389. designer.SetDataSource("BGWXS", leftBindData.xs);
  7390. designer.SetDataSource("BGWCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7391. designer.SetDataSource("BGWDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7392. designer.SetDataSource("BGWZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7393. designer.SetDataSource("BGWDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7394. designer.SetDataSource("BGWZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7395. }
  7396. #region 优化方案
  7397. //Dictionary<string, object> excelBind = new Dictionary<string, object>();
  7398. //excelBind.Add("零用金", new {
  7399. //cb="",
  7400. //rs="",
  7401. //xs ="",
  7402. //zcb = "",
  7403. //});
  7404. #endregion
  7405. leftBindData = left.leftinfoNumber.Find(x => x.title.Contains("零用金"));
  7406. if (leftBindData != null)
  7407. {
  7408. designer.SetDataSource("BLYJDRCB", leftBindData.cb);
  7409. designer.SetDataSource("BLYJRS", leftBindData.rs);
  7410. designer.SetDataSource("BLYJXS", leftBindData.xs);
  7411. designer.SetDataSource("BLYJCB", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.rs));
  7412. designer.SetDataSource("BLYJDRBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs));
  7413. designer.SetDataSource("BLYJZBJ", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) * decimal.Parse(leftBindData.rs));
  7414. designer.SetDataSource("BLYJDRLR", decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs) - decimal.Parse(leftBindData.cb));
  7415. designer.SetDataSource("BLYJZLR", ((decimal.Parse(leftBindData.cb) * decimal.Parse(leftBindData.xs)) - decimal.Parse(leftBindData.cb)) * decimal.Parse(leftBindData.rs));
  7416. }
  7417. #endregion
  7418. #region B段Right信息
  7419. right = dto.rightInfo.Find(x => x.Type == "B");
  7420. if (right == null)
  7421. {
  7422. return Ok(jw);
  7423. }
  7424. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 TBR"));
  7425. if (rightBindData != null)
  7426. {
  7427. //经济舱 + 双人间 TBR
  7428. designer.SetDataSource("BlblJJCTBRDRCB", rightBindData.cb);
  7429. designer.SetDataSource("BtxtJJCTBRRS", rightBindData.rs);
  7430. designer.SetDataSource("BlblJJCTBRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7431. designer.SetDataSource("BlblJJCTBRDRBJ", rightBindData.bj);
  7432. designer.SetDataSource("BlblJJCTBRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7433. designer.SetDataSource("BlblJJCTBRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7434. designer.SetDataSource("BlblJJCTBRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7435. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7436. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7437. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7438. }
  7439. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SGR"));
  7440. if (rightBindData != null)
  7441. {
  7442. //经济舱 + 单人间 SGR
  7443. designer.SetDataSource("BlblJJCSGRDRCB", rightBindData.cb);
  7444. designer.SetDataSource("BtxtJJCSGRRS", rightBindData.rs);
  7445. designer.SetDataSource("BlblJJCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7446. designer.SetDataSource("BlblJJCSGRDRBJ", rightBindData.bj);
  7447. designer.SetDataSource("BlblJJCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7448. designer.SetDataSource("BlblJJCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7449. designer.SetDataSource("BlblJJCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7450. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7451. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7452. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7453. }
  7454. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SGR"));
  7455. if (rightBindData != null)
  7456. {
  7457. //公务舱 + 单人间 SGR
  7458. designer.SetDataSource("BlblGWCSGRCB", rightBindData.cb);
  7459. designer.SetDataSource("BlblGWCSGRRS", rightBindData.rs);
  7460. designer.SetDataSource("BlblGWCSGRZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7461. designer.SetDataSource("BlblGWCSGRDRBJ", rightBindData.bj);
  7462. designer.SetDataSource("BlblGWCSGRZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7463. designer.SetDataSource("BlblGWCSGRDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7464. designer.SetDataSource("BlblGWCSGRZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7465. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7466. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7467. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7468. }
  7469. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 JS/ES"));
  7470. if (rightBindData != null)
  7471. {
  7472. //公务舱 + 小套房 JSES
  7473. designer.SetDataSource("BlblGWCJSESDRCB", rightBindData.cb);
  7474. designer.SetDataSource("BtxtGWCJSESRS", rightBindData.rs);
  7475. designer.SetDataSource("BlblGWCJSESZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7476. designer.SetDataSource("BlblGWCJSESDRBJ", rightBindData.bj);
  7477. designer.SetDataSource("BlblGWCJSESZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7478. designer.SetDataSource("BlblGWCJSESDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7479. designer.SetDataSource("BlblGWCJSESZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7480. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7481. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7482. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7483. }
  7484. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("公务舱 SUITE"));
  7485. if (rightBindData != null)
  7486. {
  7487. //公务舱 + 小套房 JSES
  7488. designer.SetDataSource("BlblGWCSUITEDRCB", rightBindData.cb);
  7489. designer.SetDataSource("BtxtGWCSUITERS", rightBindData.rs);
  7490. designer.SetDataSource("BlblGWCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7491. designer.SetDataSource("BlblGWCSUITEDRBJ", rightBindData.bj);
  7492. designer.SetDataSource("BlblGWCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7493. designer.SetDataSource("BlblGWCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7494. designer.SetDataSource("BlblGWCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7495. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7496. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7497. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7498. }
  7499. rightBindData = right.rightInfoNumber.Find(x => x.title.Contains("经济舱 SUITE"));
  7500. if (rightBindData != null)
  7501. {
  7502. //经济舱 + 大套房
  7503. designer.SetDataSource("BlblJJCSUITEDRCB", rightBindData.cb);
  7504. designer.SetDataSource("BtxtJJCSUITERS", rightBindData.rs);
  7505. designer.SetDataSource("BlblJJCSUITEZCB", decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs));
  7506. designer.SetDataSource("BlblJJCSUITEDRBJ", rightBindData.bj);
  7507. designer.SetDataSource("BlblJJCSUITEZBJ", decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs));
  7508. designer.SetDataSource("BlblJJCSUITEDRLR", decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb));
  7509. designer.SetDataSource("BlblJJCSUITEZLR", (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs));
  7510. TzZCB2 += decimal.Parse(rightBindData.cb) * decimal.Parse(rightBindData.rs);
  7511. TzZLR2 += (decimal.Parse(rightBindData.bj) - decimal.Parse(rightBindData.cb)) * decimal.Parse(rightBindData.rs);
  7512. TzZBJ2 += decimal.Parse(rightBindData.bj) * decimal.Parse(rightBindData.rs);
  7513. }
  7514. #endregion
  7515. #region 标题
  7516. designer.SetDataSource("CostBDRCB", "单人成本");
  7517. designer.SetDataSource("CostBRS", "人数");
  7518. designer.SetDataSource("CostBXS", "系数");
  7519. designer.SetDataSource("CostBZCB", "总成本");
  7520. designer.SetDataSource("CostBDRBJ", "单人报价");
  7521. designer.SetDataSource("CostBZBJ", "总报价");
  7522. designer.SetDataSource("CostBDRLR", "单人利润");
  7523. designer.SetDataSource("CostBZLR", "总利润");
  7524. designer.SetDataSource("CostBDRCBOM", "单人成本");
  7525. designer.SetDataSource("CostBRSOM", "人数");
  7526. designer.SetDataSource("CostBZCBOM", "总成本");
  7527. designer.SetDataSource("CostBDRBJOM", "单人报价");
  7528. designer.SetDataSource("CostBZBJOM", "总报价");
  7529. designer.SetDataSource("CostBDRLROM", "单人利润");
  7530. designer.SetDataSource("CostBZLROM", "总利润");
  7531. #endregion
  7532. }
  7533. #endregion
  7534. designer.SetDataSource("TzZCB2", TzZCB2);
  7535. designer.SetDataSource("TzZBJ2", TzZBJ2);
  7536. designer.SetDataSource("TzZLR2", TzZLR2);
  7537. string[] dataSourceKeys = new string[]
  7538. {
  7539. "VF",
  7540. "TGS",
  7541. "TGOF",
  7542. "TGM",
  7543. "TGA",
  7544. "TGTF",
  7545. "TGEF",
  7546. "CFM",
  7547. "CFOF",
  7548. "B",
  7549. "L",
  7550. "D",
  7551. "TBR",
  7552. "SGR",
  7553. "JSES",
  7554. "Suite",
  7555. "TV",
  7556. "1L",
  7557. "IF",
  7558. "EF",
  7559. "BRF",
  7560. "TE",
  7561. "TGT",
  7562. "DRVT",
  7563. "PC",
  7564. "TLF",
  7565. "ECT"
  7566. };
  7567. foreach (var item in dataSourceKeys)
  7568. {
  7569. var find = dto.titleModel.FirstOrDefault(x => x.label.Replace(" ", "").Replace("/", "") == item);
  7570. if (find != null)
  7571. {
  7572. designer.SetDataSource(item, find.text);
  7573. }
  7574. else
  7575. {
  7576. designer.SetDataSource(item, 0);
  7577. }
  7578. }
  7579. designer.SetDataSource(dt);
  7580. //根据数据源处理生成报表内容
  7581. designer.Process();
  7582. designer.Workbook.Worksheets[0].Name = "清单";
  7583. Worksheet sheet = designer.Workbook.Worksheets[0];
  7584. foreach (var Rowindex in hideRowsList)
  7585. {
  7586. ws.Cells.HideRows(Rowindex, 2);
  7587. }
  7588. byte[] bytes = null;
  7589. string strFileName = di.TeamName + "-团组-成本.xls";
  7590. using (MemoryStream stream = new MemoryStream())
  7591. {
  7592. designer.Workbook.Save(stream, Aspose.Cells.SaveFormat.Xlsx);
  7593. bytes = stream.ToArray();
  7594. }
  7595. return Ok(JsonView(true, "", new
  7596. {
  7597. Data = bytes,
  7598. strFileName,
  7599. }));
  7600. }
  7601. /// <summary>
  7602. /// 导出客户报表
  7603. /// </summary>
  7604. /// <returns></returns>
  7605. [HttpPost]
  7606. public async Task<IActionResult> ExportClientWordFile(ExportClientWordFileDto dto)
  7607. {
  7608. var jw = JsonView(false);
  7609. if (dto.Diid == 0)
  7610. {
  7611. return Ok(JsonView(false, "请传递团组id"));
  7612. }
  7613. var deleInfo = await _groupRepository.PostGroupInfo(new GroupInfoDto { Id = dto.Diid, PortType = 1 });
  7614. if (deleInfo.Code != 0)
  7615. {
  7616. return Ok(JsonView(false, "团组信息查询失败!"));
  7617. }
  7618. var di = deleInfo.Data as DelegationInfoWebView;
  7619. if (di == null)
  7620. {
  7621. return Ok(JsonView(false, "团组信息查询失败!"));
  7622. }
  7623. //文件名
  7624. //string strFileName = di.TeamName + "-团组-客户报价.doc";
  7625. //获取模板
  7626. string tmppath = (AppSettingsHelper.Get("WordBasePath") + "Template/团组-客户报价.doc");
  7627. //载入模板
  7628. Document doc = new Document(tmppath);
  7629. Aspose.Words.DocumentBuilder builder = new Aspose.Words.DocumentBuilder(doc);
  7630. Dictionary<string, string> DickeyValue = new Dictionary<string, string>();
  7631. DickeyValue.Add("DickeyValue", di.TeamName); //团组名
  7632. var ParameterList = _GroupCostParameterRepository.GetGroupCostParameterListByDiid(dto.Diid);
  7633. var AParameter = ParameterList.Find(x => x.CostType == "A");
  7634. var BParameter = ParameterList.Find(x => x.CostType == "B");
  7635. if (AParameter == null)
  7636. {
  7637. return Ok(JsonView(false, "系数不存在!"));
  7638. }
  7639. string CarGuides, TzNumber, CarGuides1, Meal, SubsidizedMeals, NightRepair, AttractionsTickets, MiscellaneousFees, ATip, TzHotelDesc, Offcial, PettyCash, Visa, TrainTicket, TicketPrice
  7640. , TzAirDesc, TzZCost;
  7641. CarGuides = TzNumber = CarGuides1 = Meal = SubsidizedMeals = NightRepair = AttractionsTickets = MiscellaneousFees = ATip = TzHotelDesc = Offcial = PettyCash = Visa = TrainTicket = TicketPrice
  7642. = TzAirDesc = TzZCost = string.Empty;
  7643. TzNumber = AParameter.CostTypenumber.ToString();
  7644. CarGuides = "RMB " + (AParameter.DJCB * AParameter.DJXS).ToString("#0.00");
  7645. CarGuides1 = dto.CarGuides1;
  7646. Meal = dto.Meal;
  7647. SubsidizedMeals = dto.SubsidizedMeals;
  7648. NightRepair = dto.NightRepair;
  7649. AttractionsTickets = dto.AttractionsTickets;
  7650. MiscellaneousFees = dto.MiscellaneousFees;
  7651. ATip = dto.ATip;
  7652. TzHotelDesc = "";
  7653. Offcial = "RMB " + (AParameter.GWCB * AParameter.GWXS).ToString("#0.00");
  7654. PettyCash = "RMB " + (AParameter.LYJCB * AParameter.LYJXS).ToString("#0.00");
  7655. Visa = "RMB " + (AParameter.VisaCB * AParameter.VisaXS + AParameter.HSCB * AParameter.HSXS + AParameter.BXCB * AParameter.BXXS).ToString("#0.00");
  7656. TrainTicket = "RMB " + (AParameter.HCPCB * AParameter.HCPXS).ToString("#0.00");
  7657. TicketPrice = "RMB " + (AParameter.CPCB * AParameter.CPXS).ToString("#0.00");
  7658. TzAirDesc = "";
  7659. TzZCost = dto.TzZCost;
  7660. var TzHotelDescArr = new string[] { "SGR", "JSES", "SUITE", "TBR" };
  7661. var TzAirDescArr = new string[] { "经济舱", "公务舱" };
  7662. var index = 1;
  7663. var AinfoArr = dto.leftInfo.Find(x => x.Type == "A");
  7664. foreach (var item in TzHotelDescArr)
  7665. {
  7666. if (AinfoArr != null)
  7667. {
  7668. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7669. if (Ainfo != null)
  7670. {
  7671. if (int.Parse(Ainfo.rs) <= 0)
  7672. {
  7673. continue;
  7674. }
  7675. var hotelText = string.Empty;
  7676. switch (item)
  7677. {
  7678. case "SGR":
  7679. hotelText = "单人间";
  7680. break;
  7681. case "JSES":
  7682. hotelText = "小套房";
  7683. break;
  7684. case "SUITE":
  7685. hotelText = "套房";
  7686. break;
  7687. case "TBR":
  7688. hotelText = "双人间";
  7689. break;
  7690. }
  7691. if (item != "TBR")
  7692. {
  7693. 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";
  7694. }
  7695. else
  7696. {
  7697. 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";
  7698. }
  7699. index++;
  7700. }
  7701. }
  7702. }
  7703. index = 1;
  7704. foreach (var item in TzAirDescArr)
  7705. {
  7706. if (AinfoArr != null)
  7707. {
  7708. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7709. if (Ainfo != null)
  7710. {
  7711. if (int.Parse(Ainfo.rs) <= 0)
  7712. {
  7713. continue;
  7714. }
  7715. 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";
  7716. index++;
  7717. }
  7718. }
  7719. }
  7720. if (dto.costType == "B")
  7721. {
  7722. if (BParameter == null)
  7723. {
  7724. return Ok(JsonView(false, "B段系数不存在!"));
  7725. }
  7726. CarGuides = CarGuides.Insert(0, "A段 ") + " B段 RMB" + (BParameter.DJCB * BParameter.DJXS).ToString("#0.00");
  7727. Offcial = Offcial.Insert(0, "A段 ") + " B段 RMB " + (BParameter.GWCB * BParameter.GWXS).ToString("#0.00");
  7728. PettyCash = PettyCash.Insert(0, "A段 ") + " B段 RMB " + (BParameter.LYJCB * BParameter.LYJXS).ToString("#0.00");
  7729. Visa = Visa.Insert(0, "A段 ") + " B段 RMB " + (BParameter.VisaCB * BParameter.VisaXS + BParameter.HSCB * BParameter.HSXS + BParameter.BXCB * BParameter.BXXS).ToString("#0.00");
  7730. TrainTicket = TrainTicket.Insert(0, "A段 ") + " B段 RMB " + (BParameter.HCPCB * BParameter.HCPXS).ToString("#0.00");
  7731. TicketPrice = TicketPrice.Insert(0, "A段 ") + " B段 RMB " + (BParameter.CPCB * BParameter.CPXS).ToString("#0.00");
  7732. AinfoArr = dto.leftInfo.Find(x => x.Type == "B");
  7733. foreach (var item in TzHotelDescArr)
  7734. {
  7735. if (AinfoArr != null)
  7736. {
  7737. TzHotelDesc += "B段信息 \r\n";
  7738. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7739. if (Ainfo != null)
  7740. {
  7741. if (int.Parse(Ainfo.rs) <= 0)
  7742. {
  7743. continue;
  7744. }
  7745. var hotelText = string.Empty;
  7746. switch (item)
  7747. {
  7748. case "SGR":
  7749. hotelText = "单人间";
  7750. break;
  7751. case "JSES":
  7752. hotelText = "小套房";
  7753. break;
  7754. case "SUITE":
  7755. hotelText = "套房";
  7756. break;
  7757. case "TBR":
  7758. hotelText = "双人间";
  7759. break;
  7760. }
  7761. if (item != "TBR")
  7762. {
  7763. 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";
  7764. }
  7765. else
  7766. {
  7767. 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";
  7768. }
  7769. index++;
  7770. }
  7771. TzHotelDesc = TzHotelDesc.Insert(0, "A段信息 \r\n");
  7772. }
  7773. }
  7774. index = 1;
  7775. foreach (var item in TzAirDescArr)
  7776. {
  7777. if (AinfoArr != null)
  7778. {
  7779. var Ainfo = AinfoArr.leftinfoNumber.Find(x => x.title.Contains(item));
  7780. if (Ainfo != null)
  7781. {
  7782. if (int.Parse(Ainfo.rs) <= 0)
  7783. {
  7784. continue;
  7785. }
  7786. 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";
  7787. index++;
  7788. }
  7789. }
  7790. }
  7791. }
  7792. Visa = Visa.Insert(0, "签证及保险(含核酸检测): ");
  7793. DickeyValue.Add("TzNumber", TzNumber); //团组人数
  7794. DickeyValue.Add("CarGuides", CarGuides); //地接单人报价
  7795. DickeyValue.Add("CarGuides1", CarGuides1); // 地接 - 车导费
  7796. DickeyValue.Add("Meal", Meal); // 地接 - 餐费
  7797. DickeyValue.Add("SubsidizedMeals", SubsidizedMeals);// 地接 - 餐补
  7798. DickeyValue.Add("NightRepair", NightRepair); // 地接 - 宿补
  7799. DickeyValue.Add("AttractionsTickets", AttractionsTickets); // 地接 - 景点
  7800. DickeyValue.Add("MiscellaneousFees", MiscellaneousFees); // 地接 - 杂费
  7801. DickeyValue.Add("ATip", ATip); // 地接 - 小费
  7802. DickeyValue.Add("TzHotelDesc", TzHotelDesc); //酒店
  7803. DickeyValue.Add("Offcial", Offcial); // 公务单人报价
  7804. DickeyValue.Add("PettyCash", PettyCash); // 零用金单人报价
  7805. DickeyValue.Add("Visa", Visa); // 签证单人报价
  7806. DickeyValue.Add("TrainTicket", TrainTicket); //火车票
  7807. DickeyValue.Add("TicketPrice", TicketPrice); //船票
  7808. DickeyValue.Add("TzAirDesc", TzAirDesc); //机票
  7809. DickeyValue.Add("TzZCost", TzZCost);
  7810. foreach (var key in DickeyValue.Keys)
  7811. {
  7812. if (doc.Range.Bookmarks[key] != null)
  7813. {
  7814. Bookmark mark = doc.Range.Bookmarks[key];
  7815. mark.Text = DickeyValue[key];
  7816. }
  7817. }
  7818. byte[] bytes = null;
  7819. string strFileName = di.TeamName + "-客户报价.doc";
  7820. using (MemoryStream stream = new MemoryStream())
  7821. {
  7822. doc.Save(stream, Aspose.Words.SaveFormat.Doc);
  7823. bytes = stream.ToArray();
  7824. }
  7825. return Ok(JsonView(true, "", new
  7826. {
  7827. Data = bytes,
  7828. strFileName,
  7829. }));
  7830. }
  7831. /// <summary>
  7832. /// 团组成本 各模块(酒店,地接,机票)成本提示
  7833. /// </summary>
  7834. /// <param name="dto"></param>
  7835. /// <returns></returns>
  7836. [HttpPost]
  7837. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  7838. public async Task<IActionResult> PostGroupCostModulePrompt(GroupCostModulePromptDto dto)
  7839. {
  7840. try
  7841. {
  7842. #region 参数验证
  7843. if (dto.DiId < 0)
  7844. {
  7845. return Ok(JsonView(false, "请传入有效的DiId参数!"));
  7846. }
  7847. List<int> cTableIds = new List<int>() {
  7848. 76 ,//酒店预订
  7849. 77 ,//行程
  7850. 79 ,//车/导游地接
  7851. 80 ,//签证
  7852. 81 ,//邀请/公务活
  7853. 82 ,//团组客户保险
  7854. 85 ,//机票预订
  7855. 98 ,//其他款项
  7856. 285 ,//收款退还
  7857. 751 ,//酒店早餐
  7858. 1015 // 超支费用
  7859. };
  7860. if (dto.CTable < 0 && !cTableIds.Contains(dto.CTable))
  7861. {
  7862. return Ok(JsonView(false, "请传入有效的CTable参数!"));
  7863. }
  7864. #endregion
  7865. //Grp_GroupCostParameter 预算表 Grp_GroupCost 详细费用列表
  7866. var _GroupCostParameters = _usersRep._sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  7867. if (_GroupCostParameters.Count <= 0)
  7868. {
  7869. return Ok(JsonView(false, "暂无该团组成本信息!", new List<dynamic>()));
  7870. }
  7871. if (_GroupCostParameters[0].IsShare == 0)
  7872. {
  7873. return Ok(JsonView(false, "该团组成本未完成!", new List<dynamic>()));
  7874. }
  7875. var _GroupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  7876. //处理date为空问题
  7877. if (_GroupCosts.Count > 0)
  7878. {
  7879. for (int i = 0; i < _GroupCosts.Count; i++)
  7880. {
  7881. if (string.IsNullOrEmpty(_GroupCosts[i].Date))
  7882. {
  7883. if (i > 0)
  7884. {
  7885. _GroupCosts[i].Date = _GroupCosts[i - 1].Date;
  7886. }
  7887. }
  7888. }
  7889. }
  7890. GroupCostModulePromptView _view = new GroupCostModulePromptView();
  7891. List<GroupCostModulePromptInfo> _ModulePromptInfos = new List<GroupCostModulePromptInfo>(); //机票存储多段
  7892. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.IsDel == 0 && it.STid == 66).ToList();
  7893. string currCode = "";
  7894. #region currCode 验证
  7895. bool isInt = int.TryParse(_GroupCostParameters[0].Currency, out int intCurrency);
  7896. if (isInt)
  7897. {
  7898. var currData = currDatas.Find(it => it.Id == intCurrency);
  7899. if (currData != null)
  7900. {
  7901. currCode = currData.Name;
  7902. }
  7903. }
  7904. else
  7905. {
  7906. currCode = _GroupCostParameters[0].Currency.Trim();
  7907. }
  7908. #endregion
  7909. //op,酒店单段模式存储
  7910. GroupCostModulePromptInfo _ModulePromptInfo = new GroupCostModulePromptInfo()
  7911. {
  7912. CurrencyCode = currCode,
  7913. Rate = _GroupCostParameters[0].Rate,
  7914. CostType = _GroupCostParameters[0].CostType,
  7915. CostTypeStartTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeStartTime).ToString("yyyy-MM-dd"),
  7916. CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[0].CostTypeendTime).ToString("yyyy-MM-dd"),
  7917. CostTypeNumber = _GroupCostParameters[0].CostTypenumber
  7918. };
  7919. List<dynamic> _ModuleSubPromptInfo = new List<dynamic>(); // 存储CTbale != 85 的动态数据
  7920. if (_GroupCostParameters.Count == 2)
  7921. {
  7922. _ModulePromptInfo.CostTypeEndTime = Convert.ToDateTime(_GroupCostParameters[1].CostTypeendTime).ToString("yyyy-MM-dd");
  7923. }
  7924. foreach (var item in _GroupCostParameters)
  7925. {
  7926. decimal _rate = 1;
  7927. decimal _rate1 = item.Rate;
  7928. decimal _scale = 1;
  7929. //decimal _scale = 0.95M; 雷怡 2024-06-11 10:06:08 屏蔽
  7930. #region 处理地接价格比例 总经理 国交部经理 主管 不下调 其他人 下调 5%
  7931. //var userInfo = _usersRep._sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0 && it.Id == dto.UserId).First();
  7932. //if (userInfo != null)
  7933. //{
  7934. // if (userInfo.DepId == 1 || userInfo.DepId == 7)
  7935. // {
  7936. // if (userInfo.JobPostId == 1 || userInfo.JobPostId == 22 || userInfo.JobPostId == 32)
  7937. // {
  7938. // _scale = 1.00M;
  7939. // }
  7940. // }
  7941. //}
  7942. #endregion
  7943. GroupCostModulePromptInfo modulePromptInfo = new GroupCostModulePromptInfo()
  7944. {
  7945. CurrencyCode = currCode,
  7946. Rate = _rate1,
  7947. CostType = item.CostType,
  7948. CostTypeStartTime = Convert.ToDateTime(item.CostTypeStartTime).ToString("yyyy-MM-dd"),
  7949. CostTypeEndTime = Convert.ToDateTime(item.CostTypeendTime).ToString("yyyy-MM-dd"),
  7950. CostTypeNumber = item.CostTypenumber
  7951. };
  7952. if (_GroupCostParameters.Count > 1)
  7953. {
  7954. modulePromptInfo.CostTypeNumber = item.CostTypenumber;
  7955. }
  7956. else
  7957. {
  7958. modulePromptInfo.CostTypeNumber = item.LYJRS;
  7959. }
  7960. if (dto.CTable == 79)//
  7961. {
  7962. modulePromptInfo.IndividualCost = item.DJCB / modulePromptInfo.CostTypeNumber;
  7963. modulePromptInfo.TotalCost = item.DJCB;
  7964. }
  7965. List<string> costTypes = new List<string>() { "A", "B" };
  7966. List<Grp_GroupCost> _GroupCostsTypeData = new List<Grp_GroupCost>();
  7967. var _GroupCostsDuplicates = _GroupCostParameters.GroupBy(x => x.CostType).Select(y => y.FirstOrDefault());
  7968. if (_GroupCostsDuplicates.Count() == 1)
  7969. {
  7970. _GroupCostsTypeData = _GroupCosts;
  7971. }
  7972. else
  7973. {
  7974. _GroupCostsTypeData = _GroupCosts.Where(it => Convert.ToDateTime(it.Date) >= Convert.ToDateTime(item.CostTypeStartTime) &&
  7975. Convert.ToDateTime(it.Date) <= Convert.ToDateTime(item.CostTypeendTime)).ToList();
  7976. }
  7977. /*
  7978. * 76 酒店预订
  7979. * 77 行程
  7980. * 79 车/导游地接
  7981. * 80 签证
  7982. * 81 邀请/公务活动
  7983. * 82 团组客户保险
  7984. * 85 机票预订
  7985. * 98 其他款项
  7986. * 285 收款退还
  7987. * 751 酒店早餐
  7988. * 1015 超支费用
  7989. */
  7990. switch (dto.CTable)
  7991. {
  7992. case 76: // 酒店预订
  7993. _ModuleSubPromptInfo.AddRange(
  7994. _GroupCostsTypeData.Select(it => new
  7995. {
  7996. it.DAY,
  7997. it.Date,
  7998. it.ACCON,
  7999. it.ITIN,
  8000. it.SGR,
  8001. it.TBR,
  8002. it.JS_ES,
  8003. it.Suite
  8004. })
  8005. );
  8006. break;
  8007. case 79: // 车/导游地接
  8008. _ModuleSubPromptInfo.AddRange(
  8009. _GroupCostsTypeData.Select(it => new
  8010. {
  8011. Date = it.Date, //日期
  8012. CarFee = it.CarCost * _rate * _scale, //车费用
  8013. CarType = it.CarType, //车型
  8014. DriverFee = it.CFS * _rate * _scale, //司机工资
  8015. DriverTipsFee = it.DRVTips * _rate * _scale, //司机小费
  8016. DriverMealSubsidy = it.CFM * _rate * _scale, //司机餐补
  8017. DriverOvertimeFee = it.CFOF * _rate * _scale, //司机超时费用
  8018. GuideFee = it.TGS * _rate * _scale, //导游费用
  8019. GuideOvertimeFee = it.TGOF * _rate * _scale, //导游超时费用
  8020. GuideMealSubsidy = it.TGM * _rate * _scale, //导游餐补
  8021. GuideRoomSubsidy = it.TGA * _rate * _scale, //导游房补
  8022. GuideCarFare = it.TGTF * _rate * _scale, //导游交通费
  8023. GuideSpotFee = it.TGEF * _rate * _scale, //导游景点费
  8024. GuideTipsFee = it.TGTips * _rate * _scale, //导游小费
  8025. Breakfast = it.B * _rate * _scale, //早餐费
  8026. Lunch = it.L * _rate * _scale, //午餐费
  8027. Dinner = it.D * _rate * _scale, //晚餐费
  8028. TicketFee = it.EF * _rate * _scale, //门票费
  8029. SpentCash = it.PC * _rate * _scale, //零用金
  8030. LeadersFee = it.TLF * _rate * _scale, //领队费
  8031. DrinksSnacksFruitFee = it.B_R_F * _rate * _scale, //饮料零食水果
  8032. TravelSupplies = it.TE * _rate * _scale, //出行物资
  8033. })
  8034. );
  8035. break;
  8036. case 85: // 机票
  8037. List<dynamic> datas = new List<dynamic>();
  8038. datas.Add(
  8039. new
  8040. {
  8041. AirType = "经济舱",
  8042. AirNum = item.JJCRS,
  8043. AirDRCB = item.JJCCB,
  8044. AirZCB = (item.JJCRS * item.JJCCB)
  8045. }
  8046. );
  8047. datas.Add(
  8048. new
  8049. {
  8050. AirType = "公务舱",
  8051. AirNum = item.GWCRS,
  8052. AirDRCB = item.GWCCB,
  8053. AirZCB = (item.GWCRS * item.GWCCB)
  8054. }
  8055. );
  8056. var groupCosts = _usersRep._sqlSugar.Queryable<Grp_GroupCost>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  8057. var initDatas = groupCosts.Select(it => new { date = it.Date, week = it.Date.GetWeek() == "" ? "-" : it.Date.GetWeek(), itinerary = it.ITIN }).ToList();
  8058. modulePromptInfo.Data = new
  8059. {
  8060. airFeeData = datas,
  8061. airInitData = initDatas
  8062. };
  8063. _ModulePromptInfos.Add(modulePromptInfo);
  8064. break;
  8065. default:
  8066. break;
  8067. }
  8068. }
  8069. if (dto.CTable != 85)
  8070. {
  8071. _ModulePromptInfo.Data = _ModuleSubPromptInfo;
  8072. _ModulePromptInfos.Add(_ModulePromptInfo);
  8073. }
  8074. _view.ModulePromptInfos = _ModulePromptInfos;
  8075. return Ok(JsonView(true, "操作成功!", _view));
  8076. }
  8077. catch (Exception ex)
  8078. {
  8079. return Ok(JsonView(false, ex.Message));
  8080. }
  8081. }
  8082. /// <summary>
  8083. /// 根据黑屏代码重新生成行程
  8084. /// </summary>
  8085. /// <param name="dto"></param>
  8086. /// <returns></returns>
  8087. [HttpPost]
  8088. public IActionResult CraeteGroupCostTravel(GroupCostInItDto dto)
  8089. {
  8090. var jw = JsonView(false);
  8091. var Create = _GroupCostRepository.
  8092. CreateGroupCostByBlackCode(dto.Diid);
  8093. jw.Msg = Create.Msg;
  8094. if (Create.Code == 0)
  8095. {
  8096. jw.Code = 200;
  8097. jw.Data = new
  8098. {
  8099. groupCost = Create.Data,
  8100. blackCodeIsTrue = true
  8101. };
  8102. }
  8103. else
  8104. {
  8105. jw.Code = 400;
  8106. jw.Data = new
  8107. {
  8108. groupCost = Create.Data,
  8109. blackCodeIsTrue = false,
  8110. };
  8111. }
  8112. return Ok(jw);
  8113. }
  8114. /// <summary>
  8115. /// 成本获取OP历史车费用
  8116. /// </summary>
  8117. /// <param name="dto"></param>
  8118. /// <returns></returns>
  8119. [HttpPost]
  8120. public async Task<IActionResult> GetHistoryCarData(HistoryCarDataDto dto)
  8121. {
  8122. var jw = JsonView(false);
  8123. try
  8124. {
  8125. List<HistoryCarDataView> dbResult = new List<HistoryCarDataView>();
  8126. //获取现有所有车的数据
  8127. if (!dto.Param.IsNullOrWhiteSpace())
  8128. {
  8129. string sql = $@"
  8130. SELECT gdi.TeamName , gctggr.Area, gctggr.PriceName , gctggrc.Id ,gctggrc.Price , gctggrc.DatePrice , gctggrc.PriceContent , gctggrc.Currency , gctggr.ServiceStartTime , gctggr.ServiceEndTime
  8131. FROM Grp_CarTouristGuideGroundReservationsContent gctggrc inner join Grp_CarTouristGuideGroundReservations gctggr on
  8132. gctggrc.CTGGRId = gctggr.Id inner JOIN Grp_DelegationInfo gdi on gctggr.DiId = gdi.Id LEFT JOIN Sys_SetData ssd on ssd.Id = gctggr.PriceType
  8133. 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
  8134. AND gctggr.ServiceEndTime is not NULL
  8135. ORDER by gctggrc.id DESC
  8136. ";
  8137. dbResult = await _sqlSugar.SqlQueryable<HistoryCarDataView>(sql).ToListAsync();
  8138. var numeberResult = await Task.Run(() =>
  8139. {
  8140. var numberArr = dbResult.Where(x => int.TryParse(x.Area, out int number)).ToList();
  8141. _ = dbResult.RemoveAll(x => int.TryParse(x.Area, out int number));
  8142. return numberArr;
  8143. });
  8144. var cityArr = await _sqlSugar.Queryable<Grp_NationalTravelFee>().ToListAsync();
  8145. foreach (var item in numeberResult)
  8146. {
  8147. var find = cityArr.Find(x => x.Id == int.Parse(item.Area)) ?? new Grp_NationalTravelFee
  8148. {
  8149. Country = "数据异常!",
  8150. City = string.Empty,
  8151. };
  8152. item.Area = find.Country + " " + find.City;
  8153. }
  8154. dbResult.AddRange(numeberResult);
  8155. if (dto.Param.Contains("、"))
  8156. {
  8157. var sp = dto.Param.Split("、");
  8158. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  8159. .Where(x =>
  8160. {
  8161. return System.Array.Exists(sp, e =>
  8162. {
  8163. bool where = false;
  8164. if (x.Area != null)
  8165. {
  8166. where = x.Area.Contains(e);
  8167. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  8168. {
  8169. return false;
  8170. }
  8171. }
  8172. if (x.PriceName != null && !where)
  8173. {
  8174. where = x.PriceName.Contains(e);
  8175. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  8176. {
  8177. return false;
  8178. }
  8179. }
  8180. return where;
  8181. });
  8182. }).ToList();
  8183. }
  8184. else
  8185. {
  8186. dbResult = dbResult.AsParallel().WithDegreeOfParallelism(Environment.ProcessorCount)
  8187. .Where(x =>
  8188. {
  8189. bool where = false;
  8190. if (x.Area != null)
  8191. {
  8192. where = x.Area.Contains(dto.Param);
  8193. if (x.Area.Contains("尾款") || x.PriceName.Contains("尾款"))
  8194. {
  8195. return false;
  8196. }
  8197. }
  8198. if (x.PriceName != null && !where)
  8199. {
  8200. where = x.PriceName.Contains(dto.Param);
  8201. if (x.PriceName.Contains("尾款") || x.PriceName.Contains("尾款"))
  8202. {
  8203. return false;
  8204. }
  8205. }
  8206. return where;
  8207. }
  8208. )
  8209. .ToList();
  8210. }
  8211. }
  8212. var view = dbResult.Select(x =>
  8213. {
  8214. decimal dp = 0.00M;
  8215. var startB = DateTime.TryParse(x.Start.ToString(), out DateTime startD);
  8216. var endB = DateTime.TryParse(x.End.ToString(), out DateTime endD);
  8217. if (string.IsNullOrWhiteSpace(x.DatePrice))
  8218. {
  8219. if (startB && endB)
  8220. {
  8221. var timesp = endD.Subtract(startD);
  8222. if ((timesp.Days + 1) != 0)
  8223. {
  8224. dp = x.Price / (timesp.Days + 1);
  8225. }
  8226. }
  8227. }
  8228. else
  8229. {
  8230. dp = x.Price;
  8231. }
  8232. return new
  8233. {
  8234. start = startB ? startD.ToString("yyyy-MM-dd") : "",
  8235. end = endB ? endD.ToString("yyyy-MM-dd") : "",
  8236. x.Area,
  8237. x.id,
  8238. price = x.Price.ToString("F2"),
  8239. x.PriceName,
  8240. x.PriceContent,
  8241. x.TeamName,
  8242. x.DatePrice,
  8243. dayPrice = dp.ToString("F2"),
  8244. };
  8245. }).OrderByDescending(x => x.id).ToList();
  8246. jw = JsonView(true, "获取成功!", view);
  8247. }
  8248. catch (Exception e)
  8249. {
  8250. jw = JsonView(false, e.Message);
  8251. }
  8252. return Ok(jw);
  8253. }
  8254. #endregion
  8255. #region 酒店预订 新 雷怡 2023-12-28 17:45
  8256. /// <summary>
  8257. /// 酒店预订
  8258. /// 酒店费用列表 根据团组Id查询
  8259. /// </summary>
  8260. /// <param name="_dto"></param>
  8261. /// <returns></returns>
  8262. [HttpPost]
  8263. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8264. public async Task<IActionResult> PostHotelReservationsItemsByDiId(HotelReservationItemDto _dto)
  8265. {
  8266. #region 参数验证
  8267. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8268. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8269. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8270. #region 团组操作权限验证 76 酒店预定模块
  8271. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8272. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8273. #endregion
  8274. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8275. #region 页面操作权限验证
  8276. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8277. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8278. #endregion
  8279. #endregion
  8280. return Ok(await _hotelPriceRep._ItemsByDiId(_dto.PortType, _dto.DiId));
  8281. }
  8282. /// <summary>
  8283. /// 酒店预订
  8284. /// 基础数据
  8285. /// </summary>
  8286. /// <param name="_dto"></param>
  8287. /// <returns></returns>
  8288. [HttpPost]
  8289. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8290. public async Task<IActionResult> PostHotelReservationsBasicsDataInit(HotelReservationBasicsDataInitDto _dto)
  8291. {
  8292. #region 参数验证
  8293. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8294. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8295. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8296. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8297. #region 页面操作权限验证
  8298. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8299. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8300. #endregion
  8301. #region 团组操作权限验证 76 酒店预定模块
  8302. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8303. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8304. #endregion
  8305. #endregion
  8306. return Ok(await _hotelPriceRep._BasicsDataInit(_dto.PortType, _dto.DiId));
  8307. }
  8308. /// <summary>
  8309. /// 酒店预订
  8310. /// 创建 入住卷号码
  8311. /// </summary>
  8312. /// <param name="_dto"></param>
  8313. /// <returns></returns>
  8314. [HttpPost]
  8315. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8316. public async Task<IActionResult> PostHotelReservationsCreateCheckVolumeNo(HotelReservationBasicsDataInitDto _dto)
  8317. {
  8318. try
  8319. {
  8320. #region 参数验证
  8321. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8322. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8323. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8324. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8325. #region 页面操作权限验证
  8326. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8327. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8328. #endregion
  8329. #region 团组操作权限验证 76 酒店预定模块
  8330. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8331. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8332. #endregion
  8333. #endregion
  8334. Result data = await _hotelPriceRep._CreateCheckVolumeNo(_dto.DiId);
  8335. if (data.Code != 0)
  8336. {
  8337. return Ok(JsonView(false, data.Msg));
  8338. }
  8339. return Ok(JsonView(true, data.Msg, data.Data));
  8340. }
  8341. catch (Exception ex)
  8342. {
  8343. return Ok(JsonView(false, ex.Message));
  8344. }
  8345. }
  8346. /// <summary>
  8347. /// 酒店预订
  8348. /// 详情
  8349. /// </summary>
  8350. /// <param name="_dto"></param>
  8351. /// <returns></returns>
  8352. [HttpPost]
  8353. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8354. public async Task<IActionResult> PostHotelReservationsDetails(HotelReservationsDetailsDto _dto)
  8355. {
  8356. #region 参数验证
  8357. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入正确的UserId参数"));
  8358. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8359. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入正确的DiId参数"));
  8360. #region 团组操作权限验证 76 酒店预定模块
  8361. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8362. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8363. #endregion
  8364. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8365. #region 页面操作权限验证
  8366. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8367. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  8368. #endregion
  8369. #endregion
  8370. return Ok(await _hotelPriceRep._Details(_dto.PortType, _dto.Id));
  8371. }
  8372. /// <summary>
  8373. /// 酒店预订
  8374. /// Add Or Edit
  8375. /// </summary>
  8376. /// <param name="_dto"></param>
  8377. /// <returns></returns>
  8378. [HttpPost]
  8379. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8380. public async Task<IActionResult> PostHotelReservationsAddOrEdit(HotelReservationsAddOrEditDto _dto)
  8381. {
  8382. #region 参数验证
  8383. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8384. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8385. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8386. #region 团组操作权限验证 76 酒店预定模块
  8387. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8388. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8389. #endregion
  8390. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8391. #region 页面操作权限验证
  8392. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8393. if (_dto.Id == 0) // Add
  8394. {
  8395. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  8396. }
  8397. else if (_dto.Id > 1) // Edit
  8398. {
  8399. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  8400. }
  8401. else return Ok(JsonView(false, "请输入正确的数据Id!"));
  8402. #endregion
  8403. #endregion
  8404. JsonView _view = await _hotelPriceRep._AddOrEdit(_dto);
  8405. if (_view.Code != 200)
  8406. {
  8407. return Ok(_view);
  8408. }
  8409. #region 应用推送
  8410. try
  8411. {
  8412. int ccpId = (int)_view.Data.GetType().GetProperty("ccpId").GetValue(_view.Data, null);
  8413. int sign = (int)_view.Data.GetType().GetProperty("sign").GetValue(_view.Data, null);
  8414. int hotelId = (int)_view.Data.GetType().GetProperty("hotelId").GetValue(_view.Data, null);
  8415. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  8416. //自动审核
  8417. await _feeAuditRep.FeeAutomaticAudit(1, _dto.DiId, hotelId);
  8418. }
  8419. catch (Exception ex)
  8420. {
  8421. }
  8422. #endregion
  8423. return Ok(_view);
  8424. }
  8425. /// <summary>
  8426. /// 酒店预订
  8427. /// Del
  8428. /// </summary>
  8429. /// <param name="_dto"></param>
  8430. /// <returns></returns>
  8431. [HttpPost]
  8432. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8433. public async Task<IActionResult> PostHotelReservationsDel(HotelReservationsDelDto _dto)
  8434. {
  8435. #region 参数验证
  8436. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8437. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8438. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8439. #region 团组操作权限验证 76 酒店预定模块
  8440. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8441. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8442. #endregion
  8443. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8444. #region 页面操作权限验证
  8445. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8446. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  8447. #endregion
  8448. #endregion
  8449. return Ok(await _hotelPriceRep._Del(_dto.Id, _dto.UserId));
  8450. }
  8451. /// <summary>
  8452. /// 酒店预订
  8453. /// 生成VOUCHER
  8454. /// 2024.05.06 之前版本
  8455. /// </summary>
  8456. /// <param name="_dto"></param>
  8457. /// <returns></returns>
  8458. [HttpPost]
  8459. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8460. public async Task<IActionResult> PostHotelReservationsCreateVoucher1(HotelReservationsCreateVoucherDto _dto)
  8461. {
  8462. try
  8463. {
  8464. #region 参数验证
  8465. if (_dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  8466. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8467. if (_dto.DiId < 1) return Ok(JsonView(false, "团组Id为空"));
  8468. #region 团组操作权限验证 76 酒店预定模块
  8469. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8470. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8471. #endregion
  8472. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8473. #region 页面操作权限验证
  8474. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8475. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8476. #endregion
  8477. #endregion
  8478. Grp_HotelReservations hr = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.Id == _dto.Id).FirstAsync();
  8479. //判断数据是否完整
  8480. if (hr != null)
  8481. {
  8482. if (!string.IsNullOrEmpty(hr.DetermineNo))
  8483. {
  8484. string strFileName = "HotelStatement/";
  8485. Grp_DelegationInfo dele = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == _dto.DiId).FirstAsync();
  8486. if (dele != null)
  8487. strFileName += dele.TourCode;
  8488. //载入模板
  8489. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/酒店预订模板.doc";
  8490. Document doc = new Document(sss);
  8491. DocumentBuilder builder = new DocumentBuilder(doc);
  8492. #region 替换Word模板书签内容
  8493. //这里可以创建个DataTable循环添加书签的值,这里提示一下就不多做修改了
  8494. //入住卷预定号码
  8495. if (doc.Range.Bookmarks["VNO"] != null)
  8496. {
  8497. Bookmark mark = doc.Range.Bookmarks["VNO"];
  8498. mark.Text = hr.CheckNumber;
  8499. }
  8500. //酒店时间
  8501. if (doc.Range.Bookmarks["Date"] != null)
  8502. {
  8503. Bookmark mark = doc.Range.Bookmarks["Date"];
  8504. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  8505. }
  8506. //团号
  8507. if (doc.Range.Bookmarks["TNo"] != null)
  8508. {
  8509. Bookmark mark = doc.Range.Bookmarks["TNo"];
  8510. mark.Text = dele.TourCode;
  8511. }
  8512. //预定号码
  8513. if (doc.Range.Bookmarks["BookingId"] != null)
  8514. {
  8515. Bookmark mark = doc.Range.Bookmarks["BookingId"];
  8516. mark.Text = hr.ReservationsNo;
  8517. }
  8518. if (doc.Range.Bookmarks["HotelConfirmNo"] != null)
  8519. {
  8520. Bookmark mark = doc.Range.Bookmarks["HotelConfirmNo"];
  8521. mark.Text = hr.DetermineNo;
  8522. }
  8523. //酒店城市
  8524. if (doc.Range.Bookmarks["City"] != null)
  8525. {
  8526. Bookmark mark = doc.Range.Bookmarks["City"];
  8527. mark.Text = hr.City;
  8528. }
  8529. //酒店名称
  8530. if (doc.Range.Bookmarks["HName"] != null)
  8531. {
  8532. Bookmark mark = doc.Range.Bookmarks["HName"];
  8533. mark.Text = hr.HotelName;
  8534. }
  8535. //酒店地址
  8536. if (doc.Range.Bookmarks["Address"] != null)
  8537. {
  8538. Bookmark mark = doc.Range.Bookmarks["Address"];
  8539. mark.Text = hr.HotelAddress;
  8540. }
  8541. //酒店电话
  8542. if (doc.Range.Bookmarks["Tel"] != null)
  8543. {
  8544. Bookmark mark = doc.Range.Bookmarks["Tel"];
  8545. mark.Text = hr.HotelTel;
  8546. }
  8547. //酒店传真
  8548. if (doc.Range.Bookmarks["Fax"] != null)
  8549. {
  8550. Bookmark mark = doc.Range.Bookmarks["Fax"];
  8551. if (!string.IsNullOrWhiteSpace(hr.HotelFax))
  8552. {
  8553. mark.Text = hr.HotelFax;
  8554. }
  8555. }
  8556. //入住时间
  8557. if (doc.Range.Bookmarks["CIn"] != null)
  8558. {
  8559. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  8560. Bookmark mark = doc.Range.Bookmarks["CIn"];
  8561. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year;
  8562. }
  8563. //退房时间
  8564. if (doc.Range.Bookmarks["COut"] != null)
  8565. {
  8566. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  8567. Bookmark mark = doc.Range.Bookmarks["COut"];
  8568. mark.Text = dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8569. }
  8570. //客户名称
  8571. if (doc.Range.Bookmarks["GName"] != null)
  8572. {
  8573. string guestName = "";
  8574. string[] clients = new string[] { };
  8575. if (hr.GuestName.Contains(","))
  8576. {
  8577. clients = hr.GuestName.Split(",");
  8578. }
  8579. else
  8580. {
  8581. clients = new string[] { hr.GuestName };
  8582. }
  8583. List<int> clientIds_int = new List<int>();
  8584. if (clients.Length > 0)
  8585. {
  8586. foreach (var item in clients)
  8587. {
  8588. if (item.IsNumeric())
  8589. {
  8590. clientIds_int.Add(int.Parse(item));
  8591. }
  8592. }
  8593. }
  8594. if (clientIds_int.Count > 0)
  8595. {
  8596. var _clientDatas = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && clientIds_int.Contains(it.Id)).ToList();
  8597. foreach (var client in _clientDatas)
  8598. {
  8599. //男
  8600. if (client.Sex == 0) guestName += $"Mr.";
  8601. //女
  8602. else if (client.Sex == 1) guestName += $"Ms.";
  8603. if (!String.IsNullOrEmpty(client.FirstName + client.LastName))
  8604. {
  8605. guestName += $"{string.Join("", client.FirstName.GetTotalPingYin()).ToUpper()} {string.Join("", client.LastName.GetTotalPingYin()).ToUpper()},";
  8606. }
  8607. //guestName += $"{client.Pinyin},";
  8608. }
  8609. if (guestName.Length > 0)
  8610. {
  8611. guestName = guestName.Substring(0, guestName.Length - 1);
  8612. }
  8613. }
  8614. else
  8615. {
  8616. guestName = hr.GuestName;
  8617. }
  8618. Bookmark mark = doc.Range.Bookmarks["GName"];
  8619. mark.Text = guestName;
  8620. }
  8621. //房间介绍
  8622. if (doc.Range.Bookmarks["ROOM"] != null)
  8623. {
  8624. Bookmark mark = doc.Range.Bookmarks["ROOM"];
  8625. mark.Text = hr.RoomExplanation;
  8626. }
  8627. //报价描述
  8628. if (doc.Range.Bookmarks["NOTE"] != null)
  8629. {
  8630. Bookmark mark = doc.Range.Bookmarks["NOTE"];
  8631. Sys_SetData ss = _sqlSugar.Queryable<Sys_SetData>().First(a => a.Id == hr.ReservationsWebsite);
  8632. if (ss != null)
  8633. mark.Text = ss.Name;
  8634. }
  8635. //入住时间
  8636. if (doc.Range.Bookmarks["CheckIn"] != null)
  8637. {
  8638. DateTime dtCheckIn = Convert.ToDateTime(hr.CheckInDate);
  8639. Bookmark mark = doc.Range.Bookmarks["CheckIn"];
  8640. mark.Text = dtCheckIn.Day + " " + dtCheckIn.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckIn.Year + " ";
  8641. }
  8642. //退房时间
  8643. if (doc.Range.Bookmarks["CheckOut"] != null)
  8644. {
  8645. DateTime dtCheckOut = Convert.ToDateTime(hr.CheckOutDate);
  8646. Bookmark mark = doc.Range.Bookmarks["CheckOut"];
  8647. mark.Text = " " + dtCheckOut.Day + " " + dtCheckOut.ToString("MMMM", CultureInfo.GetCultureInfo("en-US")) + " " + dtCheckOut.Year;
  8648. }
  8649. //日期
  8650. if (doc.Range.Bookmarks["DT"] != null)
  8651. {
  8652. Bookmark mark = doc.Range.Bookmarks["DT"];
  8653. mark.Text = Convert.ToDateTime(hr.CreateTime).ToString("yyyy-MM-dd");
  8654. }
  8655. //名称
  8656. if (doc.Range.Bookmarks["VName"] != null)
  8657. {
  8658. Bookmark mark = doc.Range.Bookmarks["VName"];
  8659. mark.Text = hr.HotelName;
  8660. }
  8661. //号码
  8662. if (doc.Range.Bookmarks["VOUCHERNO"] != null)
  8663. {
  8664. Bookmark mark = doc.Range.Bookmarks["VOUCHERNO"];
  8665. mark.Text = hr.CheckNumber;
  8666. }
  8667. #endregion
  8668. strFileName += "VOUCHER.doc";
  8669. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  8670. doc.Save(fileDir);
  8671. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  8672. return Ok(JsonView(true, "操作成功!", Url));
  8673. }
  8674. else
  8675. {
  8676. return Ok(JsonView(false, "酒店确定号码未填写,无法生成Voucher!"));
  8677. }
  8678. }
  8679. else
  8680. {
  8681. return Ok(JsonView(false, "该条数据已删除或不存在!"));
  8682. }
  8683. }
  8684. catch (Exception ex)
  8685. {
  8686. return Ok(JsonView(false, ex.Message));
  8687. }
  8688. }
  8689. /// <summary>
  8690. /// 酒店预订
  8691. /// 生成VOUCHER
  8692. /// 2024.05.06 之后版本
  8693. /// </summary>
  8694. /// <param name="_dto"></param>
  8695. /// <returns></returns>
  8696. [HttpPost]
  8697. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8698. public async Task<IActionResult> PostHotelReservationsCreateVoucher(HotelReservationsCreateVoucherDto _dto)
  8699. {
  8700. #region 参数验证
  8701. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  8702. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  8703. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  8704. #region 团组操作权限验证 76 酒店预定模块
  8705. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8706. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  8707. #endregion
  8708. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8709. #region 页面操作权限验证
  8710. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8711. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8712. #endregion
  8713. #endregion
  8714. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  8715. //判断数据是否完整
  8716. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "请先录入酒店预订信息!", ""));
  8717. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  8718. string strFileName = "HotelStatement/";
  8719. string guestNames = ""; //格式Mr.xxx Ms.xxx
  8720. List<HotelVoucherInfoView> vouchers = new List<HotelVoucherInfoView>();
  8721. #region 数据处理
  8722. List<int> guestIds = new List<int>();
  8723. int index = 0;
  8724. foreach (var item in hrDtas)
  8725. {
  8726. if (item.GuestName.Contains(","))
  8727. {
  8728. string[] guestIdArr = item.GuestName.Split(',');
  8729. foreach (var guestIdStr in guestIdArr)
  8730. {
  8731. bool guestBool = int.TryParse(guestIdStr, out int guestId);
  8732. if (guestBool)
  8733. {
  8734. guestIds.Add(guestId);
  8735. }
  8736. }
  8737. }
  8738. else guestNames += item.GuestName;
  8739. var voucherInfo = new HotelVoucherInfoView()
  8740. {
  8741. HotelName = item.HotelName,
  8742. CheckInDate = item.CheckInDate,
  8743. CheckOutDate = item.CheckOutDate,
  8744. ConfirmationNumber = item.DetermineNo.Trim(),
  8745. RoomType = item.RoomExplanation
  8746. };
  8747. vouchers.Add(voucherInfo);
  8748. }
  8749. if (guestIds.Count > 0)
  8750. {
  8751. guestIds = guestIds.Distinct().ToList();
  8752. var guestDatas = await _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0 && guestIds.Contains(it.Id)).ToListAsync();
  8753. if (guestDatas.Count > 0)
  8754. {
  8755. guestNames = "";
  8756. foreach (var guest in guestDatas)
  8757. {
  8758. string guestName = "";
  8759. if (guest.Sex == 0) guestName += @"MR.";
  8760. else if (guest.Sex == 1) guestName += @"MS.";
  8761. if (guest.Pinyin == null) guestName += $"{string.Join("", guest.LastName.GetTotalPingYin()).ToUpper()}/{string.Join("", guest.FirstName.GetTotalPingYin()).ToUpper()}";
  8762. else guestName += @$"{guest.Pinyin.Replace(" ", "")}";
  8763. guestNames += @$"{guestName.Trim()}、";
  8764. }
  8765. if (guestNames.Length > 0)
  8766. {
  8767. guestNames = guestNames.Substring(0, guestNames.Length - 1);
  8768. }
  8769. }
  8770. }
  8771. #endregion
  8772. //载入模板
  8773. string sss = AppSettingsHelper.Get("WordBasePath") + "Template/Voucher-2024Versions.docx";
  8774. Document doc = new Document(sss);
  8775. DocumentBuilder builder = new DocumentBuilder(doc);
  8776. if (doc.Range.Bookmarks["GuestName"] != null)
  8777. {
  8778. Bookmark mark = doc.Range.Bookmarks["GuestName"];
  8779. mark.Text = guestNames;
  8780. }
  8781. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  8782. Aspose.Words.Tables.Table table = allTables[0] as Aspose.Words.Tables.Table;
  8783. vouchers = vouchers.OrderBy(it => it.CheckInDate).ToList();
  8784. for (int i = 1; i <= vouchers.Count; i++)
  8785. {
  8786. HotelVoucherInfoView hviv = vouchers[i - 1];
  8787. builder.MoveToCell(0, i, 0, 0);
  8788. builder.Write(hviv.HotelName);
  8789. builder.MoveToCell(0, i, 1, 0);
  8790. builder.Write(hviv.CheckInDate);
  8791. builder.MoveToCell(0, i, 2, 0);
  8792. builder.Write(hviv.CheckOutDate);
  8793. builder.MoveToCell(0, i, 3, 0);
  8794. builder.Write(hviv.RoomType);
  8795. builder.MoveToCell(0, i, 4, 0);
  8796. builder.Write(hviv.ConfirmationNumber);
  8797. }
  8798. //删除多余行
  8799. int currRowIndex = vouchers.Count + 1;
  8800. int delRows = 21 - currRowIndex;
  8801. if (delRows > 0)
  8802. {
  8803. for (int i = 0; i < delRows; i++)
  8804. {
  8805. table.Rows.RemoveAt(currRowIndex);
  8806. //cultivateRowIndex++;
  8807. }
  8808. }
  8809. strFileName += "VOUCHER.docx";
  8810. var fileDir = AppSettingsHelper.Get("WordBasePath") + strFileName;
  8811. doc.Save(fileDir);
  8812. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/" + strFileName;
  8813. return Ok(JsonView(true, "操作成功!", Url));
  8814. }
  8815. /// <summary>
  8816. /// 酒店预订
  8817. /// 生成 预定成本 Excel
  8818. /// </summary>
  8819. /// <param name="_dto"></param>
  8820. /// <returns></returns>
  8821. [HttpPost]
  8822. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  8823. public async Task<IActionResult> PostHotelReservationsPredictedCostFileDownload(HotelReservations_PCFD_DTO _dto)
  8824. {
  8825. #region 参数验证
  8826. var vadalitor = new HotelReservations_PCFD_DTOFoalidator();
  8827. var vadalitorRes = await vadalitor.ValidateAsync(_dto);
  8828. if (!vadalitorRes.IsValid)
  8829. {
  8830. var errors = new StringBuilder();
  8831. foreach (var valid in vadalitorRes.Errors) errors.AppendLine(valid.ErrorMessage);
  8832. return Ok(JsonView(StatusCodes.Status400BadRequest, errors.ToString(), ""));
  8833. }
  8834. #region 团组操作权限验证 76 酒店预定模块
  8835. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  8836. if (groupAuthView.Code != 0) return Ok(JsonView(false, groupAuthView.Msg));
  8837. #endregion
  8838. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  8839. #region 页面操作权限验证
  8840. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  8841. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  8842. #endregion
  8843. #endregion
  8844. decimal _rate = 1.00M;
  8845. string _currency = "";
  8846. var currDatas = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.STid == 66).ToList();
  8847. List<Grp_HotelReservations> hrDtas = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToListAsync();
  8848. if (hrDtas.Count < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "酒店预订费用未录入,不支持预定成本Excel导出", ""));
  8849. Grp_GroupCostParameter _GroupCostParameter = await _sqlSugar.Queryable<Grp_GroupCostParameter>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).FirstAsync();
  8850. if (_GroupCostParameter == null) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用未录入,不支持预定成本Excel导出", ""));
  8851. if (string.IsNullOrEmpty(_GroupCostParameter.Currency))
  8852. {
  8853. return Ok(JsonView(StatusCodes.Status400BadRequest, "团组成本费用“币种为录入”未录入,不支持预定成本Excel导出", ""));
  8854. }
  8855. _currency = _GroupCostParameter.Currency;
  8856. bool isIntType = int.TryParse(_currency, out int currId);
  8857. if (isIntType)
  8858. {
  8859. _currency = currDatas.Find(it => it.Id == currId)?.Name ?? "";
  8860. }
  8861. var teamRate = await _teamRateRep.PostGroupTeamRateItemByDiIdAndCTableId(1, _dto.DiId, 76);
  8862. var currInfo = teamRate.Find(it => it.CurrencyCode.Equals(_currency));
  8863. if (currInfo == null)
  8864. {
  8865. return Ok(JsonView(StatusCodes.Status400BadRequest, $"团组汇率-->酒店模块 {_currency} 币种未设置汇率,不支持预定成本Excel导出", ""));
  8866. }
  8867. if (!_currency.ToUpper().Equals("CNY"))
  8868. {
  8869. _rate = _GroupCostParameter.Rate;
  8870. }
  8871. _rate = currInfo.Rate;
  8872. hrDtas = hrDtas.OrderBy(it => it.CheckInDate).ToList();
  8873. string strFileName = "HotelStatement/";
  8874. string guestNames = ""; //格式Mr.xxx Ms.xxx
  8875. List<HotelReservations_PCFD_View> pcfds = new List<HotelReservations_PCFD_View>();
  8876. var hotelSubData = _sqlSugar.Queryable<Grp_HotelReservationsContent>().Where(it => it.IsDel == 0 && it.DiId == _dto.DiId).ToList();
  8877. var ccpData = _sqlSugar.Queryable<Grp_CreditCardPayment>().Where(it => it.IsDel == 0 && it.DIId == _dto.DiId && it.CTable == 76).ToList();
  8878. #region 数据处理
  8879. foreach (var item in hrDtas)
  8880. {
  8881. var ccpInfo = ccpData.Where(it => it.DIId == _dto.DiId && it.CId == item.Id).First();
  8882. var roomInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 1).FirstOrDefault(); //房费
  8883. var breakfastInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 2).FirstOrDefault(); //早餐
  8884. var governmentRentInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 3).FirstOrDefault(); //地税
  8885. var cityTaxInfo = hotelSubData.Where(it => it.HrId == item.Id && it.PriceType == 4).FirstOrDefault(); //城市税
  8886. string roomCurr = currDatas.Find(it => it.Id == roomInfo.Currency)?.Name ?? "";
  8887. string singleRoomFeeStr = string.Empty,
  8888. doubleRoomFeeStr = string.Empty,
  8889. suiteRoomFeeStr = string.Empty,
  8890. otherRoomFeeStr = string.Empty,
  8891. payMoneyStr = string.Empty,
  8892. cardPriceStr = string.Empty;
  8893. if (roomCurr.Equals(_currency))
  8894. {
  8895. singleRoomFeeStr = $"{item.SingleRoomPrice.ToString("#0.00")} {_currency}";
  8896. doubleRoomFeeStr = $"{item.DoubleRoomPrice.ToString("#0.00")} {_currency}";
  8897. suiteRoomFeeStr = $"{item.SuiteRoomPrice.ToString("#0.00")} {_currency}";
  8898. otherRoomFeeStr = $"{item.OtherRoomPrice.ToString("#0.00")} {_currency}";
  8899. payMoneyStr = $"{ccpInfo.PayMoney.ToString("#0.00")} {_currency}";
  8900. cardPriceStr = $"{item.CardPrice.ToString("#0.00")} {_currency}";
  8901. }
  8902. else
  8903. {
  8904. singleRoomFeeStr = $"{(item.SingleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SingleRoomPrice.ToString("#0.00")} {roomCurr}";
  8905. doubleRoomFeeStr = $"{(item.DoubleRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.DoubleRoomPrice.ToString("#0.00")} {roomCurr}";
  8906. suiteRoomFeeStr = $"{(item.SuiteRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.SuiteRoomPrice.ToString("#0.00")} {roomCurr}";
  8907. otherRoomFeeStr = $"{(item.OtherRoomPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.OtherRoomPrice.ToString("#0.00")} {roomCurr}";
  8908. payMoneyStr = $"{(ccpInfo.PayMoney / _rate).ToString("#0.00")} {_currency}\r\n{ccpInfo.PayMoney.ToString("#0.00")} {roomCurr}";
  8909. cardPriceStr = $"{(item.CardPrice / _rate).ToString("#0.00")} {_currency}\r\n{item.CardPrice.ToString("#0.00")} {roomCurr}";
  8910. }
  8911. string breakfastPriceStr = string.Empty,
  8912. breakfastCurrency = currDatas.Find(it => it.Id == item.BreakfastCurrency)?.Name ?? "",
  8913. governmentRentStr = string.Empty,
  8914. governmentRentCurrency = currDatas.Find(it => it.Id == item.GovernmentRentCurrency)?.Name ?? "",
  8915. cityTaxStrStr = string.Empty,
  8916. cityTaxStrCurrency = currDatas.Find(it => it.Id == item.CityTaxCurrency)?.Name ?? "";
  8917. breakfastPriceStr = $"{breakfastInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == breakfastInfo?.Currency)?.Name}";
  8918. governmentRentStr = $"{governmentRentInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == governmentRentInfo?.Currency)?.Name}";
  8919. cityTaxStrStr = $"{cityTaxInfo?.Price.ToString("#0.00")} {currDatas.Find(it => it.Id == cityTaxInfo?.Currency)?.Name}";
  8920. pcfds.Add(new HotelReservations_PCFD_View()
  8921. {
  8922. City = item.City,
  8923. HotelName = item.HotelName,
  8924. Date = $"{item.CheckInDate} - {item.CheckOutDate}",
  8925. // SingleRoomCount = item.SingleRoomCount,
  8926. SingleRoomPrice = singleRoomFeeStr,
  8927. // DoubleRoomCount = item.DoubleRoomCount,
  8928. DoubleRoomPrice = doubleRoomFeeStr,
  8929. //SuiteRoomCount = item.SuiteRoomCount,
  8930. SuiteRoomPrice = suiteRoomFeeStr,
  8931. OtherRoomPrice = otherRoomFeeStr,
  8932. //OtherRoomCount = item.OtherRoomCount,
  8933. BreakfastPrice = breakfastPriceStr,
  8934. GovernmentRent = governmentRentStr,
  8935. CityTax = cityTaxStrStr,
  8936. RoomExplanation = item.RoomExplanation,
  8937. PayTypeName = _sqlSugar.Queryable<Sys_SetData>().Where(it => it.Id == roomInfo.PayDId).First()?.Name ?? "",
  8938. PayTime = roomInfo.ConsumptionDate,
  8939. BankNo = roomInfo.BankNo,
  8940. PayMoney = payMoneyStr,
  8941. //PayMoneys = ccpInfo.PayMoney.ToString("#0.00"),
  8942. ConsumptionPatterns = roomInfo.ConsumptionPatterns,
  8943. CardPrice = cardPriceStr,
  8944. Remark = ccpInfo.Remark
  8945. });
  8946. }
  8947. #endregion
  8948. //载入模板
  8949. WorkbookDesigner designer = new WorkbookDesigner();
  8950. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/酒店预订成本.xls");
  8951. var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == _dto.DiId).First();
  8952. var userInfo = _sqlSugar.Queryable<Sys_Users>().Where(it => it.Id == hrDtas[0].CreateUserId).First();
  8953. designer.SetDataSource("TourNo", groupInfo.TourCode);
  8954. designer.SetDataSource("TeamName", $"{groupInfo.TeamName} 团组成本币种:{_currency} 团组汇率-->酒店模块汇率:{_rate.ToString("#0.0000")}");
  8955. designer.SetDataSource("Opertor", userInfo.CnName);
  8956. DataTable dt = CommonFun.GetDataTableFromIList<HotelReservations_PCFD_View>(pcfds);
  8957. dt.TableName = "ViewMyHotelReservations";
  8958. designer.SetDataSource(dt);
  8959. designer.Process();
  8960. string fileName = ($"HotelReservation/{groupInfo.TeamName}_酒店预订成本_" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xls").Replace(":", "");
  8961. string serverPath = AppSettingsHelper.Get("ExcelBasePath") + fileName;
  8962. designer.Workbook.Save(serverPath);
  8963. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  8964. #region 删除指定行
  8965. bool singleDel = true, doubleDel = true, suiteDel = true, otherDel = true, zcDel = true, dsDel = true, cssDel = true, cpDel = true, remarkDel = true;
  8966. int singleIndex = dt.Columns["SingleRoomPrice"].Ordinal,
  8967. doubleIndex = dt.Columns["DoubleRoomPrice"].Ordinal,
  8968. suiteIndex = dt.Columns["SuiteRoomPrice"].Ordinal,
  8969. otherIndex = dt.Columns["OtherRoomPrice"].Ordinal,
  8970. zcIndex = dt.Columns["BreakfastPrice"].Ordinal,
  8971. dsIndex = dt.Columns["GovernmentRent"].Ordinal,
  8972. cssIndex = dt.Columns["CityTax"].Ordinal,
  8973. cpIndex = dt.Columns["ConsumptionPatterns"].Ordinal,
  8974. remarkIndex = dt.Columns["Remark"].Ordinal;
  8975. //删除指定列
  8976. foreach (DataRow item in dt.Rows)
  8977. {
  8978. string singleStr = item["SingleRoomPrice"].ToString();
  8979. bool containsDigitButNotZero1 = !singleStr.StartsWith("0") && Regex.IsMatch(singleStr, @"[1-9]");
  8980. if (containsDigitButNotZero1) singleDel = false;
  8981. singleIndex = dt.Columns["SingleRoomPrice"].Ordinal;
  8982. string doubleStr = item["DoubleRoomPrice"].ToString();
  8983. bool containsDigitButNotZero2 = !doubleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  8984. if (containsDigitButNotZero2) doubleDel = false;
  8985. string suiteStr = item["SuiteRoomPrice"].ToString();
  8986. bool containsDigitButNotZero3 = !singleStr.StartsWith("0") && Regex.IsMatch(doubleStr, @"[1-9]");
  8987. if (containsDigitButNotZero3) suiteDel = false;
  8988. string otherStr = item["OtherRoomPrice"].ToString();
  8989. bool containsDigitButNotZero4 = !otherStr.StartsWith("0") && Regex.IsMatch(otherStr, @"[1-9]");
  8990. if (containsDigitButNotZero4) otherDel = false;
  8991. string zcStr = item["BreakfastPrice"].ToString();
  8992. bool containsDigitButNotZero5 = !zcStr.StartsWith("0") && Regex.IsMatch(zcStr, @"[1-9]");
  8993. if (containsDigitButNotZero5) zcDel = false;
  8994. string dsStr = item["GovernmentRent"].ToString();
  8995. bool containsDigitButNotZero6 = !dsStr.StartsWith("0") && Regex.IsMatch(dsStr, @"[1-9]");
  8996. if (containsDigitButNotZero6) dsDel = false;
  8997. string cssStr = item["CityTax"].ToString();
  8998. bool containsDigitButNotZero7 = !cssStr.StartsWith("0") && Regex.IsMatch(cssStr, @"[1-9]");
  8999. if (containsDigitButNotZero7) cssDel = false;
  9000. string cpStr = item["ConsumptionPatterns"].ToString();
  9001. if (!string.IsNullOrEmpty(cpStr)) cpDel = false;
  9002. string remarkStr = item["Remark"].ToString();
  9003. if (!string.IsNullOrEmpty(remarkStr)) remarkDel = false;
  9004. }
  9005. DeleteColumn(serverPath, remarkIndex, remarkDel);
  9006. DeleteColumn(serverPath, cpIndex, cpDel);
  9007. DeleteColumn(serverPath, dsIndex, dsDel);
  9008. DeleteColumn(serverPath, cssIndex, cssDel);
  9009. DeleteColumn(serverPath, zcIndex, zcDel);
  9010. DeleteColumn(serverPath, otherIndex, otherDel);
  9011. DeleteColumn(serverPath, suiteIndex, suiteDel);
  9012. DeleteColumn(serverPath, doubleIndex, doubleDel);
  9013. DeleteColumn(serverPath, singleIndex, singleDel);
  9014. #endregion
  9015. //只保留第一个表格
  9016. DeleteSheet(serverPath);
  9017. return Ok(JsonView(true, "操作成功", url = rst));
  9018. }
  9019. /// <summary>
  9020. /// 删除指定列
  9021. /// </summary>
  9022. /// <param name="file"></param>
  9023. /// <param name="columnIndex"></param>
  9024. /// <param name="isDel"></param>
  9025. private void DeleteColumn(string file, int columnIndex, bool isDel)
  9026. {
  9027. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  9028. //wb.Save(file);
  9029. Aspose.Cells.Worksheet sheet1 = wb.Worksheets[0];
  9030. if (sheet1 != null)
  9031. {
  9032. if (isDel)
  9033. {
  9034. Cells cells = sheet1.Cells;
  9035. cells.DeleteColumn(columnIndex);
  9036. }
  9037. }
  9038. wb.Save(file);
  9039. }
  9040. /// <summary>
  9041. /// 删除sheet
  9042. /// </summary>
  9043. /// <param name="file"></param>
  9044. /// <param name="sheetName"></param>
  9045. private void DeleteSheet(string file, string sheetName = "")
  9046. {
  9047. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(file);
  9048. //wb.Save(file);
  9049. List<string> sheets = new List<string>();
  9050. foreach (var item in wb.Worksheets)
  9051. {
  9052. sheets.Add(item.Name);
  9053. }
  9054. if (sheets.Count > 0)
  9055. {
  9056. sheets.RemoveAt(0);//不删除第一个sheet
  9057. foreach (var item in sheets)
  9058. {
  9059. wb.Worksheets.RemoveAt(item);
  9060. }
  9061. }
  9062. wb.Save(file);
  9063. }
  9064. /// <summary>
  9065. /// 酒店预订
  9066. /// 确认单
  9067. /// </summary>
  9068. /// <param name="_dto"></param>
  9069. /// <returns></returns>
  9070. [HttpPost]
  9071. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9072. public async Task<IActionResult> PostHotelReservationsConfirmationSlip(HotelReservationsConfirmationSlipDto _dto)
  9073. {
  9074. try
  9075. {
  9076. #region 参数验证
  9077. if (_dto.UserId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "员工Id为空", ""));
  9078. if (_dto.PageId < 1) _dto.PageId = 28; //酒店预定Id
  9079. if (_dto.DiId < 1) return Ok(JsonView(StatusCodes.Status400BadRequest, "团组Id为空", ""));
  9080. #region 团组操作权限验证 76 酒店预定模块
  9081. var groupAuthView = await GeneralMethod.PostGroupOperationAuth(_dto.DiId, _dto.UserId, 76);
  9082. if (groupAuthView.Code != 0) return Ok(JsonView(StatusCodes.Status400BadRequest, groupAuthView.Msg, ""));
  9083. #endregion
  9084. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9085. #region 页面操作权限验证
  9086. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9087. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9088. #endregion
  9089. #endregion
  9090. //团组信息
  9091. Grp_DelegationInfo di = _sqlSugar.Queryable<Grp_DelegationInfo>().First(a => a.Id == _dto.DiId);
  9092. //酒店数据
  9093. List<Grp_HotelReservations> listhoteldata = await _sqlSugar.Queryable<Grp_HotelReservations>().Where(a => a.DiId == _dto.DiId && a.IsDel == 0).ToListAsync();
  9094. if (listhoteldata.Count < 0)
  9095. {
  9096. return Ok(JsonView(StatusCodes.Status400BadRequest, "当前团组暂无酒店预订信息!", ""));
  9097. }
  9098. //利datatable存储
  9099. DataTable dt = new DataTable();
  9100. dt.Columns.Add("CheckInDate", typeof(string));
  9101. dt.Columns.Add("City", typeof(string));
  9102. dt.Columns.Add("Hotel", typeof(string));
  9103. dt.Columns.Add("Room", typeof(string));
  9104. for (int i = 0; i < listhoteldata.Count; i++)
  9105. {
  9106. DateTime dayStart = Convert.ToDateTime(listhoteldata[i].CheckInDate);
  9107. DateTime dayEnd = Convert.ToDateTime(listhoteldata[i].CheckOutDate);
  9108. while (dayStart < dayEnd)
  9109. {
  9110. string temp = "";
  9111. DataRow row = dt.NewRow();
  9112. row["CheckInDate"] = dayStart.ToString("yyyy-MM-dd");
  9113. row["City"] = listhoteldata[i].City;
  9114. row["Hotel"] = listhoteldata[i].HotelName;
  9115. if (listhoteldata[i].SingleRoomCount > 0)
  9116. {
  9117. temp = listhoteldata[i].SingleRoomCount + "个单间" + "\r\n";
  9118. }
  9119. if (listhoteldata[i].DoubleRoomCount > 0)
  9120. {
  9121. temp = temp + listhoteldata[i].DoubleRoomCount + "个标间" + "\r\n";
  9122. }
  9123. if (listhoteldata[i].SuiteRoomCount > 0)
  9124. {
  9125. temp = temp + listhoteldata[i].SuiteRoomCount + "个套房" + "\r\n";
  9126. }
  9127. if (listhoteldata[i].OtherRoomCount > 0)
  9128. {
  9129. temp = temp + listhoteldata[i].OtherRoomCount + "个其他房型" + "\r\n";
  9130. }
  9131. row["Room"] = temp;
  9132. dt.Rows.Add(row);
  9133. dayStart = dayStart.AddDays(1);
  9134. }
  9135. }
  9136. Dictionary<string, string> dic = new Dictionary<string, string>();
  9137. dic.Add("Dele", di.TeamName);
  9138. dic.Add("City", di.VisitCountry);
  9139. //模板路径
  9140. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/酒店用房确认单-模板.doc";
  9141. //载入模板
  9142. Aspose.Words.Document doc = new Aspose.Words.Document(tempPath);
  9143. DocumentBuilder builder = new DocumentBuilder(doc);
  9144. foreach (var key in dic.Keys)
  9145. {
  9146. builder.MoveToBookmark(key);
  9147. builder.Write(dic[key]);
  9148. }
  9149. //获取word里所有表格
  9150. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  9151. //获取所填表格的序数
  9152. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  9153. var rowStart = tableOne.Rows[0]; //获取第1行
  9154. //循环赋值
  9155. for (int i = 0; i < dt.Rows.Count; i++)
  9156. {
  9157. builder.MoveToCell(0, i + 1, 0, 0);
  9158. builder.Write(dt.Rows[i]["CheckInDate"].ToString());
  9159. builder.MoveToCell(0, i + 1, 1, 0);
  9160. builder.Write(dt.Rows[i]["City"].ToString());
  9161. builder.MoveToCell(0, i + 1, 2, 0);
  9162. builder.Write(dt.Rows[i]["Hotel"].ToString());
  9163. builder.MoveToCell(0, i + 1, 3, 0);
  9164. builder.Write(dt.Rows[i]["Room"].ToString());
  9165. }
  9166. //删除多余行
  9167. while (tableOne.Rows.Count > dt.Rows.Count + 1)
  9168. {
  9169. tableOne.Rows.RemoveAt(dt.Rows.Count + 1);
  9170. }
  9171. string strFileName = di.TeamName + "酒店确认单.doc";
  9172. doc.Save(AppSettingsHelper.Get("WordBasePath") + "HotelStatement/" + strFileName);
  9173. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/HotelStatement/" + strFileName;
  9174. return Ok(JsonView(true, "成功", url));
  9175. }
  9176. catch (Exception ex)
  9177. {
  9178. return Ok(JsonView(StatusCodes.Status400BadRequest, ex.Message, ""));
  9179. }
  9180. }
  9181. #endregion
  9182. #region 团组状态
  9183. /// <summary>
  9184. /// 团组状态列表 Page
  9185. /// </summary>
  9186. /// <param name="dto">团组列表请求dto</param>
  9187. /// <returns></returns>
  9188. [HttpPost]
  9189. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9190. public async Task<IActionResult> PostGroupStatusPageList(GroupStatusListDto dto)
  9191. {
  9192. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  9193. if (dto.PortType == 1 || dto.PortType == 2) // web/Android
  9194. {
  9195. string sqlWhere = string.Empty;
  9196. if (dto.IsSure == 0) //未完成
  9197. {
  9198. sqlWhere += string.Format(@" And IsSure = 0");
  9199. }
  9200. else if (dto.IsSure == 1) //已完成
  9201. {
  9202. sqlWhere += string.Format(@" And IsSure = 1");
  9203. }
  9204. if (!string.IsNullOrEmpty(dto.SearchCriteria))
  9205. {
  9206. string tj = dto.SearchCriteria;
  9207. 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}%')",
  9208. tj, tj, tj, tj, tj);
  9209. }
  9210. string sql = string.Format(@"Select Row_Number,Id,SalesQuoteNo,TourCode,TeamTypeId, TeamType,
  9211. TeamLevId,TeamLev,TeamName,ClientName,ClientUnit,
  9212. VisitDate,VisitDays,VisitPNumber,JietuanOperator,IsSure,CreateTime
  9213. From (
  9214. Select row_number() over(order by gdi.CreateTime Desc) as Row_Number,
  9215. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,
  9216. ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,
  9217. VisitDate,VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure,gdi.CreateTime
  9218. From Grp_DelegationInfo gdi
  9219. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  9220. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  9221. Left Join Sys_Users su On gdi.JietuanOperator = su.Id
  9222. Where gdi.IsDel = 0 {0}
  9223. ) temp ", sqlWhere);
  9224. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  9225. var _DelegationList = await _sqlSugar.SqlQueryable<GroupStatusView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);//ToPageAsync
  9226. return Ok(JsonView(true, "查询成功!", _DelegationList, total));
  9227. }
  9228. else
  9229. {
  9230. return Ok(JsonView(false, "查询失败"));
  9231. }
  9232. }
  9233. /// <summary>
  9234. /// 团组状态
  9235. /// 设置操作完成
  9236. /// </summary>
  9237. /// <param name="dto">团组列表请求dto</param>
  9238. /// <returns></returns>
  9239. [HttpPost]
  9240. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9241. public async Task<IActionResult> PostGroupStatusSetOperationComplete(GroupStatusSetOperationCompleteDto dto)
  9242. {
  9243. if (dto == null) return Ok(JsonView(false, "请输入搜索条件!"));
  9244. Grp_DelegationInfo _DelegationInfo = new Grp_DelegationInfo()
  9245. {
  9246. Id = dto.Id,
  9247. IsSure = 1
  9248. };
  9249. var result = await _sqlSugar.Updateable(_DelegationInfo)
  9250. .UpdateColumns(it => new { it.IsSure })
  9251. .WhereColumns(it => new { it.Id })
  9252. .ExecuteCommandAsync();
  9253. if (result > 0)
  9254. {
  9255. return Ok(JsonView(true, "操作完成!"));
  9256. }
  9257. return Ok(JsonView(false, "操作失败!"));
  9258. }
  9259. #endregion
  9260. #region 保险费用录入
  9261. /// <summary>
  9262. /// 根据团组Id查询保险费用列表
  9263. /// </summary>
  9264. /// <param name="dto"></param>
  9265. /// <returns></returns>
  9266. [HttpPost]
  9267. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9268. public async Task<IActionResult> CustomersByDiId(CustomersByDiIdDto dto)
  9269. {
  9270. try
  9271. {
  9272. Result groupData = await _customersRep.CustomersByDiId(dto);
  9273. if (groupData.Code != 0)
  9274. {
  9275. return Ok(JsonView(false, groupData.Msg));
  9276. }
  9277. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9278. }
  9279. catch (Exception ex)
  9280. {
  9281. return Ok(JsonView(false, ex.Message));
  9282. }
  9283. }
  9284. /// <summary>
  9285. /// 根据保险费用Id查询保险费用详细
  9286. /// </summary>
  9287. /// <param name="dto"></param>
  9288. /// <returns></returns>
  9289. [HttpPost]
  9290. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9291. public async Task<IActionResult> CustomersById(CustomersByIdDto dto)
  9292. {
  9293. try
  9294. {
  9295. Result groupData = await _customersRep.CustomersById(dto);
  9296. if (groupData.Code != 0)
  9297. {
  9298. return Ok(JsonView(false, groupData.Msg));
  9299. }
  9300. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9301. }
  9302. catch (Exception ex)
  9303. {
  9304. return Ok(JsonView(false, ex.Message));
  9305. }
  9306. }
  9307. /// <summary>
  9308. /// 保险费用录入页面初始化绑定
  9309. /// </summary>
  9310. /// <param name="dto"></param>
  9311. /// <returns></returns>
  9312. [HttpPost]
  9313. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9314. public async Task<IActionResult> CustomersInitialize(CustomersInitializeDto dto)
  9315. {
  9316. try
  9317. {
  9318. Result groupData = await _customersRep.CustomersInitialize(dto);
  9319. if (groupData.Code != 0)
  9320. {
  9321. return Ok(JsonView(false, groupData.Msg));
  9322. }
  9323. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9324. }
  9325. catch (Exception ex)
  9326. {
  9327. return Ok(JsonView(false, ex.Message));
  9328. }
  9329. }
  9330. /// <summary>
  9331. /// 保险费用操作(Status:1.新增,2.修改)
  9332. /// </summary>
  9333. /// <param name="dto"></param>
  9334. /// <returns></returns>
  9335. [HttpPost]
  9336. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9337. public async Task<IActionResult> OpCustomers(OpCustomersDto dto)
  9338. {
  9339. try
  9340. {
  9341. Result groupData = await _customersRep.OpCustomers(dto);
  9342. if (groupData.Code != 0)
  9343. {
  9344. return Ok(JsonView(false, groupData.Msg));
  9345. }
  9346. #region 应用推送
  9347. try
  9348. {
  9349. int ccpId = groupData.Data.GetType().GetProperty("ccpId").GetValue(groupData.Data, null);
  9350. int sign = groupData.Data.GetType().GetProperty("sign").GetValue(groupData.Data, null);
  9351. await AppNoticeLibrary.SendChatMsg_GroupStatus_ApplyFee(ccpId, sign, QiyeWeChatEnum.GuoJiaoLeaderChat);
  9352. }
  9353. catch (Exception ex)
  9354. {
  9355. }
  9356. #endregion
  9357. return Ok(JsonView(true, groupData.Msg, groupData.Data));
  9358. }
  9359. catch (Exception ex)
  9360. {
  9361. return Ok(JsonView(false, ex.Message));
  9362. }
  9363. }
  9364. /// <summary>
  9365. /// 保险文件上传
  9366. /// </summary>
  9367. /// <param name="file"></param>
  9368. /// <returns></returns>
  9369. [HttpPost]
  9370. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9371. public async Task<IActionResult> UploadCus(IFormFile file)
  9372. {
  9373. try
  9374. {
  9375. if (file != null)
  9376. {
  9377. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  9378. //文件名称
  9379. string projectFileName = file.FileName;
  9380. //上传的文件的路径
  9381. string filePath = "";
  9382. if (!Directory.Exists(fileDir))
  9383. {
  9384. Directory.CreateDirectory(fileDir);
  9385. }
  9386. //上传的文件的路径
  9387. filePath = fileDir + $@"\保险费用文件上传\{projectFileName}";
  9388. using (FileStream fs = System.IO.File.Create(filePath))
  9389. {
  9390. file.CopyTo(fs);
  9391. fs.Flush();
  9392. }
  9393. return Ok(JsonView(true, "上传成功!", projectFileName));
  9394. }
  9395. else
  9396. {
  9397. return Ok(JsonView(false, "上传失败!"));
  9398. }
  9399. }
  9400. catch (Exception ex)
  9401. {
  9402. return Ok(JsonView(false, "程序错误!"));
  9403. throw;
  9404. }
  9405. }
  9406. /// <summary>
  9407. /// 保险删除指定文件
  9408. /// </summary>
  9409. /// <param name="dto"></param>
  9410. /// <returns></returns>
  9411. [HttpPost]
  9412. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9413. public async Task<IActionResult> DelFileCus(DelFileDto dto)
  9414. {
  9415. try
  9416. {
  9417. string filePath = "";
  9418. var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
  9419. // 返回与指定虚拟路径相对应的物理路径即绝对路径
  9420. //int id = 0;
  9421. filePath = fileDir + "/保险费用文件上传/" + dto.fileName;
  9422. // 删除该文件
  9423. try
  9424. {
  9425. System.IO.File.Delete(filePath);
  9426. 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()
  9427. {
  9428. Attachment = "",
  9429. }).ExecuteCommandAsync();
  9430. if (result != 0)
  9431. {
  9432. return Ok(JsonView(true, "成功!"));
  9433. }
  9434. else
  9435. {
  9436. return Ok(JsonView(false, "失败!"));
  9437. }
  9438. }
  9439. catch (Exception)
  9440. {
  9441. 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()
  9442. {
  9443. Attachment = "",
  9444. }).ExecuteCommandAsync();
  9445. if (result != 0)
  9446. {
  9447. return Ok(JsonView(true, "成功!"));
  9448. }
  9449. else
  9450. {
  9451. return Ok(JsonView(false, "失败!"));
  9452. }
  9453. }
  9454. }
  9455. catch (Exception ex)
  9456. {
  9457. return Ok(JsonView(false, "程序错误!"));
  9458. throw;
  9459. }
  9460. }
  9461. /// <summary>
  9462. /// 保险费用操作(删除)
  9463. /// </summary>
  9464. /// <param name="dto"></param>
  9465. /// <returns></returns>
  9466. [HttpPost]
  9467. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9468. public async Task<IActionResult> DelCustomers(DelBaseDto dto)
  9469. {
  9470. try
  9471. {
  9472. var res = await _customersRep.SoftDeleteByIdAsync<Grp_Customers>(dto.Id.ToString(), dto.DeleteUserId);
  9473. if (!res)
  9474. {
  9475. return Ok(JsonView(false, "删除失败"));
  9476. }
  9477. var resultC = await _sqlSugar.Updateable<Grp_CreditCardPayment>().Where(a => a.CId == dto.Id && a.IsDel == 0 && a.CTable == 82).SetColumns(a => new Grp_CreditCardPayment()
  9478. {
  9479. IsDel = 1,
  9480. DeleteUserId = dto.DeleteUserId,
  9481. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  9482. }).ExecuteCommandAsync();
  9483. return Ok(JsonView(true, "删除成功!"));
  9484. }
  9485. catch (Exception ex)
  9486. {
  9487. return Ok(JsonView(false, "程序错误!"));
  9488. throw;
  9489. }
  9490. }
  9491. #endregion
  9492. #region 接团客户名单 PageId 104
  9493. /// <summary>
  9494. /// 接团客户名单
  9495. /// 迁移数据(慎用!)
  9496. /// </summary>
  9497. /// <param name="dto"></param>
  9498. /// <returns></returns>
  9499. [HttpPost]
  9500. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9501. public async Task<IActionResult> PostTourClientListChange()
  9502. {
  9503. try
  9504. {
  9505. _sqlSugar.ChangeDatabase(DBEnum.OA2014DB);
  9506. //var groupClinetData1
  9507. string sql = string.Format($"Select * From DeleClient Where Isdel = 0");
  9508. var oldOAClientList = await _sqlSugar.SqlQueryable<OA2021_DeleClient>(sql).Where(it => it.Isdel == 0).ToListAsync();
  9509. int updateCount = 0;
  9510. if (oldOAClientList.Count > 0)
  9511. {
  9512. _sqlSugar.ChangeDatabase(DBEnum.OA2023DB);
  9513. _sqlSugar.BeginTran();
  9514. var clientComInfos = _sqlSugar.Queryable<Crm_CustomerCompany>().Where(it => it.IsDel == 0).ToList();
  9515. var clientInfos = _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0).ToList();
  9516. foreach (var item in oldOAClientList)
  9517. {
  9518. int comId = 0;
  9519. string format = "yyyy-MM-dd HH:mm:ss";
  9520. string data11 = "1990-01-01 00:00";
  9521. var data1 = IsValidDate(item.OPdate, format);
  9522. if (data1) data11 = item.OPdate;
  9523. //客户公司验证
  9524. if (!string.IsNullOrEmpty(item.Company))
  9525. {
  9526. var clientComInfo = clientComInfos.Where(it => it.CompanyFullName.Equals(item.Company)).FirstOrDefault();
  9527. if (clientComInfo == null) // add
  9528. {
  9529. var addInfo = new Crm_CustomerCompany()
  9530. {
  9531. CompanyAbbreviation = "",
  9532. CompanyFullName = item.Company,
  9533. Address = "",
  9534. PostCodes = "",
  9535. LastedOpUserId = item.OPer,
  9536. LastedOpDt = Convert.ToDateTime(data11),
  9537. CreateUserId = item.OPer,
  9538. CreateTime = Convert.ToDateTime(data11),
  9539. IsDel = 0
  9540. };
  9541. var comId1 = _sqlSugar.Insertable<Crm_CustomerCompany>(addInfo).ExecuteReturnIdentity();
  9542. if (comId1 > 0) comId = comId1;
  9543. }
  9544. else comId = clientComInfo.Id;
  9545. }
  9546. //客户人员验证
  9547. int clientId = 0;
  9548. string name = item.LastName + item.Name;
  9549. if (!string.IsNullOrEmpty(name))
  9550. {
  9551. var clientInfo = clientInfos.Where(it => (it.LastName + it.FirstName).Equals(name)).FirstOrDefault();
  9552. if (clientInfo == null)
  9553. {
  9554. DateTime? dateTime = null;
  9555. var isDt = DateTime.TryParse(item.Birthday, out DateTime birthDayDt);
  9556. if (isDt) dateTime = birthDayDt;
  9557. var addInfo1 = new Crm_DeleClient()
  9558. {
  9559. CrmCompanyId = comId,
  9560. DiId = -1,
  9561. LastName = item.LastName,
  9562. FirstName = item.Name,
  9563. OldName = "",
  9564. Pinyin = item.Pinyin,
  9565. Sex = item.Sex == "男" ? 0 : item.Sex == "女" ? 1 : -1,
  9566. Marriage = 0,
  9567. Phone = item.Phone,
  9568. Job = item.Job,
  9569. BirthDay = dateTime
  9570. };
  9571. var clientId1 = _sqlSugar.Insertable<Crm_DeleClient>(addInfo1).ExecuteReturnIdentity();
  9572. if (clientId1 > 0) clientId = clientId1;
  9573. }
  9574. else clientId = clientInfo.Id;
  9575. }
  9576. if (clientId < 1)
  9577. {
  9578. continue;
  9579. }
  9580. int airType = 0;
  9581. if (item.AirType == "超经舱") airType = 459;
  9582. else if (item.AirType == "公务舱") airType = 458;
  9583. else if (item.AirType == "经济舱") airType = 460;
  9584. else if (item.AirType == "其他") airType = 565;
  9585. else if (item.AirType == "头等舱") airType = 457;
  9586. var _TourClientListEntity = new Grp_TourClientList()
  9587. {
  9588. DiId = item.Diid,
  9589. ClientId = clientId,
  9590. CreateUserId = item.OPer,
  9591. CreateTime = Convert.ToDateTime(data11),
  9592. Remark = item.Remark,
  9593. IsDel = item.Isdel,
  9594. ShippingSpaceTypeId = airType,
  9595. ShippingSpaceSpecialNeeds = item.AirRemark,
  9596. HotelSpecialNeeds = item.RoomType
  9597. };
  9598. var _TourClientList = _sqlSugar.Insertable<Grp_TourClientList>(_TourClientListEntity).ExecuteCommand();
  9599. if (_TourClientList > 0)
  9600. {
  9601. updateCount++;
  9602. }
  9603. }
  9604. _sqlSugar.CommitTran();
  9605. }
  9606. return Ok(JsonView(true, $"更新条数:{updateCount}条"));
  9607. }
  9608. catch (Exception ex)
  9609. {
  9610. _sqlSugar.RollbackTran();
  9611. return Ok(JsonView(false, ex.Message));
  9612. }
  9613. return Ok(JsonView(true));
  9614. }
  9615. private bool IsValidDate(string dateString, string format)
  9616. {
  9617. DateTime dateValue;
  9618. bool valid = DateTime.TryParseExact(dateString, format, CultureInfo.InvariantCulture, DateTimeStyles.None, out dateValue);
  9619. return valid;
  9620. }
  9621. /// <summary>
  9622. /// 接团客户名单
  9623. /// 根据团组Id查询List
  9624. /// </summary>
  9625. /// <param name="dto"></param>
  9626. /// <returns></returns>
  9627. [HttpPost]
  9628. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9629. public async Task<IActionResult> PostTourClientListByDiId(TourClientListByDiIdDto _dto)
  9630. {
  9631. #region 参数验证
  9632. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId"));
  9633. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9634. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId!"));
  9635. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9636. #region 页面操作权限验证
  9637. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9638. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9639. #endregion
  9640. #endregion
  9641. var viewData = await _tourClientListRep._ItemByDiId(_dto.PortType, _dto.DiId);
  9642. if (viewData.Code != 0)
  9643. {
  9644. return Ok(JsonView(false, viewData.Msg));
  9645. }
  9646. return Ok(JsonView(viewData.Data));
  9647. }
  9648. /// <summary>
  9649. /// 接团客户名单
  9650. /// 基础数据 Init
  9651. /// </summary>
  9652. /// <param name="_dto"></param>
  9653. /// <returns></returns>
  9654. [HttpPost]
  9655. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9656. public async Task<IActionResult> PostTourClientListBasicDataInit(TourClientListBasicDataInitDto _dto)
  9657. {
  9658. #region 参数验证
  9659. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9660. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9661. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9662. #region 页面操作权限验证
  9663. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9664. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9665. #endregion
  9666. #endregion
  9667. var viewData = await _tourClientListRep._BasicDataInit(_dto.PortType);
  9668. if (viewData.Code != 0)
  9669. {
  9670. return Ok(JsonView(false, viewData.Msg));
  9671. }
  9672. return Ok(JsonView(viewData.Data));
  9673. }
  9674. /// <summary>
  9675. /// 接团客户名单
  9676. /// 根据 Id查询 Details
  9677. /// </summary>
  9678. /// <param name="_dto"></param>
  9679. /// <returns></returns>
  9680. [HttpPost]
  9681. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9682. public async Task<IActionResult> PostTourClientListDetails(TourClientListDetailsDto _dto)
  9683. {
  9684. #region 参数验证
  9685. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9686. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9687. if (_dto.Id < 1) return Ok(JsonView(false, "请传入有效的Id参数!"));
  9688. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9689. #region 页面操作权限验证
  9690. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9691. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  9692. #endregion
  9693. #endregion
  9694. var viewData = await _tourClientListRep._Details(_dto.PortType, _dto.Id);
  9695. if (viewData.Code != 0)
  9696. {
  9697. return Ok(JsonView(false, viewData.Msg));
  9698. }
  9699. return Ok(JsonView(viewData.Data));
  9700. }
  9701. /// <summary>
  9702. /// 接团客户名单
  9703. /// Add Or Edit
  9704. /// </summary>
  9705. /// <param name="_dto"></param>
  9706. /// <returns></returns>
  9707. [HttpPost]
  9708. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9709. public async Task<IActionResult> PostTourClientListAddOrEdit(TourClientListAddOrEditDto _dto)
  9710. {
  9711. #region 参数验证
  9712. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9713. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9714. if (_dto.Id < 0) return Ok(JsonView(false, "请传入有效的Id参数!"));
  9715. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9716. #region 页面操作权限验证
  9717. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9718. if (_dto.Id == 0) //添加
  9719. {
  9720. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  9721. }
  9722. else if (_dto.Id >= 0) //修改
  9723. {
  9724. if (pageFunAuthView.EditAuth == 0) return Ok(JsonView(false, "您没有编辑权限!"));
  9725. }
  9726. #endregion
  9727. #endregion
  9728. var viewData = await _tourClientListRep._AddOrEdit(_dto);
  9729. if (viewData.Code != 0)
  9730. {
  9731. return Ok(JsonView(false, viewData.Msg));
  9732. }
  9733. return Ok(JsonView(true));
  9734. }
  9735. /// <summary>
  9736. /// 接团客户名单
  9737. /// AddMultiple(添加多个)
  9738. /// </summary>
  9739. /// <param name="_dto"></param>
  9740. /// <returns></returns>
  9741. [HttpPost]
  9742. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9743. public async Task<IActionResult> PostTourClientListAddMultiple(TourClientListAddMultipleDto _dto)
  9744. {
  9745. #region 参数验证
  9746. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9747. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9748. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9749. #region 页面操作权限验证
  9750. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9751. if (pageFunAuthView.AddAuth == 0) return Ok(JsonView(false, "您没有添加权限!"));
  9752. #endregion
  9753. #endregion
  9754. var viewData = await _tourClientListRep._AddMultiple(_dto);
  9755. if (viewData.Code != 0)
  9756. {
  9757. return Ok(JsonView(false, viewData.Msg));
  9758. }
  9759. return Ok(JsonView(true));
  9760. }
  9761. /// <summary>
  9762. /// 接团客户名单
  9763. /// Del
  9764. /// </summary>
  9765. /// <param name="_dto"></param>
  9766. /// <returns></returns>
  9767. [HttpPost]
  9768. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9769. public async Task<IActionResult> PostTourClientListDel(TourClientListDelDto _dto)
  9770. {
  9771. #region 参数验证
  9772. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9773. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9774. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9775. #region 页面操作权限验证
  9776. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9777. if (pageFunAuthView.DeleteAuth == 0) return Ok(JsonView(false, "您没有删除权限!"));
  9778. #endregion
  9779. #endregion
  9780. var viewData = await _tourClientListRep._Del(_dto.Id, _dto.UserId);
  9781. if (viewData.Code != 0)
  9782. {
  9783. return Ok(JsonView(false, viewData.Msg));
  9784. }
  9785. return Ok(JsonView(true));
  9786. }
  9787. /// <summary>
  9788. /// 接团客户名单
  9789. /// 文件下载 客户名单
  9790. /// </summary>
  9791. /// <param name="_dto"></param>
  9792. /// <returns></returns>
  9793. [HttpPost]
  9794. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9795. public async Task<IActionResult> PostTourClientListDownloadFile(PostTourClientListDownloadFile _dto)
  9796. {
  9797. #region 参数验证
  9798. if (_dto.UserId < 1) return Ok(JsonView(false, "请传入有效的UserId参数"));
  9799. if (_dto.PageId < 1) _dto.PageId = 104; //接团客户名单PageId
  9800. if (_dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数"));
  9801. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  9802. #region 页面操作权限验证
  9803. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(_dto.UserId, _dto.PageId);
  9804. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  9805. #endregion
  9806. #endregion
  9807. string clientSql = string.Format(@"Select tcl.Id,tcl.DiId,temp.*,tcl.ShippingSpaceTypeId,tcl.ShippingSpaceSpecialNeeds,
  9808. tcl.HotelSpecialNeeds,tcl.MealSpecialNeeds,tcl.Remark
  9809. From Grp_TourClientList tcl
  9810. Left Join
  9811. (Select dc.Id As DcId,dc.LastName,dc.FirstName,dc.Pinyin,dc.Sex,ccom.CompanyFullName,dc.Job,
  9812. cc1.CertNo As IDCardNo,dc.Phone,dc.BirthDay,cc2.PassportType,cc2.CertNo As PassportNo,cc2.Country,
  9813. cc2.Area,cc2.IssueDt,cc2.ExpiryDt
  9814. From Crm_DeleClient dc
  9815. Left Join Crm_CustomerCompany ccom On dc.CrmCompanyId = ccom.Id And ccom.IsDel = 0
  9816. Left Join Crm_CustomerCert cc1 On dc.Id = cc1.DcId And cc1.SdId = 773 And cc1.IsDel = 0
  9817. Left Join Crm_CustomerCert cc2 On dc.Id = cc2.DcId And cc2.SdId = 774 And cc2.IsDel = 0
  9818. Where dc.IsDel = 0) temp
  9819. On temp.DcId =tcl.ClientId
  9820. Where tcl.IsDel = 0 And tcl.DiId = {0}", _dto.DiId);
  9821. List<TourClientListDetailsView> DcList = await _sqlSugar.SqlQueryable<TourClientListDetailsView>(clientSql).ToListAsync();
  9822. if (DcList.Count < 0) return Ok(JsonView(false, "该团未录入客户名单!"));
  9823. //载入模板
  9824. string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/dwon_团组人员列表模板.doc";
  9825. if (_dto.Language == 1)
  9826. {
  9827. tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/EN_Down_团组人员列表模板.doc";
  9828. }
  9829. //载入模板
  9830. var doc = new Document(tempPath);
  9831. DocumentBuilder builder = new DocumentBuilder(doc);
  9832. //获取word里所有表格
  9833. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  9834. //获取所填表格的序数
  9835. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  9836. var rowStart = tableOne.Rows[0]; //获取第1行
  9837. if (_dto.Language == 0)
  9838. {
  9839. //循环赋值
  9840. for (int i = 0; i < DcList.Count; i++)
  9841. {
  9842. builder.MoveToCell(0, i + 1, 0, 0);
  9843. builder.Write(DcList[i].LastName + DcList[i].FirstName);
  9844. builder.MoveToCell(0, i + 1, 1, 0);
  9845. int sex = DcList[i].Sex;
  9846. string sexStr = string.Empty;
  9847. if (sex == 0) sexStr = "男";
  9848. else if (sex == 1) sexStr = "女";
  9849. else sexStr = "未设置";
  9850. builder.Write(sexStr);
  9851. builder.MoveToCell(0, i + 1, 2, 0);
  9852. string birthDay = DcList[i].BirthDay;
  9853. string birthDayStr = string.Empty;
  9854. if (!string.IsNullOrEmpty(birthDay))
  9855. {
  9856. birthDayStr = Convert.ToDateTime(birthDay).ToString("yyyy-MM-dd");
  9857. }
  9858. builder.Write(birthDayStr);
  9859. builder.MoveToCell(0, i + 1, 3, 0);
  9860. string company = "";
  9861. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  9862. {
  9863. company = DcList[i].CompanyFullName.ToString();
  9864. }
  9865. builder.Write(company);
  9866. builder.MoveToCell(0, i + 1, 4, 0);
  9867. builder.Write(DcList[i].Job);
  9868. }
  9869. }
  9870. else if (_dto.Language == 1)
  9871. {
  9872. List<Res_PositionEnglishComparison> listPEC = _setDataRep.Query<Res_PositionEnglishComparison>(s => s.IsDel == 0).ToList();
  9873. List<Res_CompanyEnglishComparison> listCEC = _setDataRep.Query<Res_CompanyEnglishComparison>(s => s.IsDel == 0).ToList();
  9874. //循环赋值
  9875. for (int i = 0; i < DcList.Count; i++)
  9876. {
  9877. string PYName = "";
  9878. if (DcList[i].Pinyin.Length > 0 && DcList[i].Pinyin.IndexOf('/') > -1)
  9879. {
  9880. string PY_Last = DcList[i].Pinyin.Split('/')[0];
  9881. string PY_First = DcList[i].Pinyin.Split('/')[1];
  9882. PYName = PY_First + " " + PY_Last;
  9883. }
  9884. else
  9885. {
  9886. string PY_Last = DcList[i].LastName.GetTotalPingYin().Count > 0 ? DcList[i].LastName.GetTotalPingYin()[0].ToUpper() : "";
  9887. string PY_First = DcList[i].FirstName.GetTotalPingYin().Count > 0 ? DcList[i].FirstName.GetTotalPingYin()[0].ToUpper() : "";
  9888. PYName = PY_First + " " + PY_Last;
  9889. }
  9890. builder.MoveToCell(0, i + 1, 0, 0);
  9891. builder.Write(PYName);
  9892. string sex = DcList[i].Sex == 0 ? "Male" : DcList[i].Sex == 1 ? "Female" : "";
  9893. builder.MoveToCell(0, i + 1, 1, 0);
  9894. builder.Write(sex);
  9895. DateTime birthDt;
  9896. bool b_birth = DateTime.TryParse(DcList[i].BirthDay, out birthDt);
  9897. string birthday = b_birth ? birthDt.ToString("yyyy-MM-dd") : "";
  9898. builder.MoveToCell(0, i + 1, 2, 0);
  9899. builder.Write(birthday);
  9900. string company = "";
  9901. try
  9902. {
  9903. if (!string.IsNullOrEmpty(DcList[i].CompanyFullName))
  9904. {
  9905. //查询对照表
  9906. Res_CompanyEnglishComparison tempCec = listCEC.FirstOrDefault(s => s.zhName.Contains(DcList[i].CompanyFullName.ToString().Trim()));
  9907. if (tempCec != null)
  9908. {
  9909. company = tempCec.enName;
  9910. }
  9911. //翻译
  9912. else
  9913. {
  9914. company = await YouDaoApiTools.GetOCR_ReTrans(DcList[i].CompanyFullName.ToString().Trim());
  9915. }
  9916. }
  9917. }
  9918. catch (Exception)
  9919. {
  9920. }
  9921. builder.MoveToCell(0, i + 1, 3, 0);
  9922. builder.Write(company);
  9923. string job = "";
  9924. try
  9925. {
  9926. if (!string.IsNullOrEmpty(DcList[i].Job.ToString()))
  9927. {
  9928. //查询对照表
  9929. Res_PositionEnglishComparison tempPec = listPEC.FirstOrDefault(s => s.zhName == DcList[i].Job.ToString().Trim());
  9930. if (tempPec != null)
  9931. {
  9932. job = tempPec.enName;
  9933. }
  9934. //翻译
  9935. else
  9936. {
  9937. job = await YouDaoApiTools.GetOCR_ReTrans(DcList[i].Job.ToString().Trim());
  9938. }
  9939. }
  9940. }
  9941. catch (Exception ex)
  9942. {
  9943. }
  9944. builder.MoveToCell(0, i + 1, 4, 0);
  9945. builder.Write(job);
  9946. }
  9947. }
  9948. //删除多余行
  9949. while (tableOne.Rows.Count > DcList.Count + 1)
  9950. {
  9951. tableOne.Rows.RemoveAt(DcList.Count + 1);
  9952. }
  9953. string fileName = "组团人员名单(" + DateTime.Now.ToString("yyyyhhddHHmmss") + ").doc";
  9954. var fileDir = AppSettingsHelper.Get("WordBasePath") + "TourClientList/" + fileName;
  9955. doc.Save(fileDir);
  9956. string Url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/TourClientList/" + fileName;
  9957. return Ok(JsonView(true, "操作成功!", Url));
  9958. }
  9959. #endregion
  9960. #region 团组倒推表
  9961. /// <summary>
  9962. /// 倒推表基础数据
  9963. /// Init
  9964. /// </summary>
  9965. /// <param name="dto"></param>
  9966. /// <returns></returns>
  9967. [HttpPost]
  9968. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9969. public async Task<IActionResult> PostInvertedListInit()
  9970. {
  9971. var viewData = await _invertedListRep._Init();
  9972. if (viewData.Code != 0)
  9973. {
  9974. return Ok(JsonView(false, viewData.Msg));
  9975. }
  9976. return Ok(JsonView(viewData.Data));
  9977. }
  9978. /// <summary>
  9979. /// 倒推表
  9980. /// Info
  9981. /// </summary>
  9982. /// <param name="dto"></param>
  9983. /// <returns></returns>
  9984. [HttpPost]
  9985. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  9986. public async Task<IActionResult> PostInvertedListInfo(InvertedListCreateDto dto)
  9987. {
  9988. var viewData = await _invertedListRep._Info(dto.PortType, dto.DiId);
  9989. if (viewData.Code != 0)
  9990. {
  9991. return Ok(JsonView(false, viewData.Msg));
  9992. }
  9993. return Ok(JsonView(viewData.Data));
  9994. }
  9995. /// <summary>
  9996. /// 倒推表
  9997. /// Create
  9998. /// </summary>
  9999. /// <param name="dto"></param>
  10000. /// <returns></returns>
  10001. [HttpPost]
  10002. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10003. public async Task<IActionResult> PostInvertedListCreate(InvertedListCreateDto dto)
  10004. {
  10005. var viewData = await _invertedListRep._Create(dto.PortType, dto.DiId);
  10006. if (viewData.Code != 0)
  10007. {
  10008. return Ok(JsonView(false, viewData.Msg));
  10009. }
  10010. return Ok(JsonView(viewData.Data));
  10011. }
  10012. /// <summary>
  10013. /// 倒推表
  10014. /// Update
  10015. /// </summary>
  10016. /// <param name="dto"></param>
  10017. /// <returns></returns>
  10018. [HttpPost]
  10019. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10020. public async Task<IActionResult> PostInvertedListUpdate(InvertedListUpdateDto dto)
  10021. {
  10022. var viewData = await _invertedListRep._Update(dto);
  10023. if (viewData.Code != 0)
  10024. {
  10025. return Ok(JsonView(false, viewData.Msg));
  10026. }
  10027. return Ok(JsonView(viewData.Data));
  10028. }
  10029. /// <summary>
  10030. /// 倒推表
  10031. /// File Download
  10032. /// </summary>
  10033. /// <param name="dto"></param>
  10034. /// <returns></returns>
  10035. [HttpPost]
  10036. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10037. public async Task<IActionResult> PostInvertedListFileDownload(InvertedListFileDownloadDto dto)
  10038. {
  10039. var info2 = await _invertedListRep._Info(1, dto.DiId);
  10040. if (info2.Code != 0)
  10041. {
  10042. return Ok(JsonView(false, "倒推表数据未生成,请先生成倒退表数据!"));
  10043. }
  10044. var info1 = info2.Data as InvertedListInfoView;
  10045. var info = await _invertedListRep._sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.Id == dto.DiId).FirstAsync();
  10046. string teamName = "";
  10047. if (info != null) teamName = info.TeamName;
  10048. //载入模板
  10049. Document doc = new Document(AppSettingsHelper.Get("WordBasePath") + "Template/倒退表模板20200617.doc");
  10050. DocumentBuilder builder = new DocumentBuilder(doc);
  10051. //利用键值对存放数据
  10052. Dictionary<string, string> dic = new Dictionary<string, string>();
  10053. dic.Add("TeamName", teamName);
  10054. dic.Add("StartTime", info1.AirportdDropOffDt.ConvertToDatetime()); //开始时间
  10055. dic.Add("BPtime", info1.ApprovalDataDt.ConvertToDatetime());
  10056. dic.Add("BPRemark", info1.ApprovalDataRemark);
  10057. dic.Add("SQtime", info1.ApprovalDt.ConvertToDatetime());
  10058. dic.Add("SQRemark", info1.ApprovalRemark);
  10059. dic.Add("CPJtime", info1.IssueApprovalDt.ConvertToDatetime());
  10060. dic.Add("CPJRemark", info1.IssueApprovalRemark);
  10061. //dic.Add("HZtime", info1.ApplyPassportDt.ConvertToDatetime());
  10062. //dic.Add("HZRemark", info1.ApplyPassportRemark);
  10063. dic.Add("QZtime", info1.VisaInformationDt.ConvertToDatetime());
  10064. dic.Add("QZRemark", info1.VisaInformationRemark);
  10065. dic.Add("SQQZtime", info1.SendVisaDt.ConvertToDatetime());
  10066. dic.Add("SQQZRemark", info1.SendVisaRemark);
  10067. dic.Add("CQtime", info1.IssueVisaDt.ConvertToDatetime());
  10068. dic.Add("CQRemark", info1.IssueVisaRemark);
  10069. dic.Add("XQHtime", info1.PreTripMeetingDt.ConvertToDatetime());
  10070. dic.Add("XQHRemark", info1.PreTripMeetingRemark);
  10071. dic.Add("SJtime", info1.AirportdDropOffDt.ConvertToDatetime());
  10072. dic.Add("SJRemark", info1.AirportdDropOffRemark);
  10073. #region 填充word模板书签内容
  10074. foreach (var key in dic.Keys)
  10075. {
  10076. builder.MoveToBookmark(key);
  10077. builder.Write(dic[key]);
  10078. }
  10079. #endregion
  10080. var fileDir = AppSettingsHelper.Get("WordBasePath");
  10081. string fileName = $"{teamName}团出行准备流程表.doc";
  10082. string filePath = fileDir + $@"InvertedList/{fileName}";
  10083. doc.Save(filePath);
  10084. string Url = $@"{AppSettingsHelper.Get("WordBaseUrl")}Office/Word/InvertedList/{fileName}";
  10085. return Ok(JsonView(true, "操作成功!", Url));
  10086. }
  10087. #endregion
  10088. #region 三公签证费用(签证费、代办费)
  10089. /// <summary>
  10090. /// 三公签证费用(签证费、代办费)
  10091. /// List
  10092. /// </summary>
  10093. /// <returns></returns>
  10094. [HttpPost]
  10095. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10096. public async Task<IActionResult> PostVisaFeeList(VisaFeeListDto _dto)
  10097. {
  10098. var _view = await _visaFeeInfoRep._List(_dto.PortType, _dto.DiId);
  10099. if (_view.Code != 0)
  10100. {
  10101. return Ok(JsonView(false, _view.Msg));
  10102. }
  10103. return Ok(JsonView(true, "操作成功!", _view.Data));
  10104. }
  10105. /// <summary>
  10106. /// 三公签证费用(签证费、代办费)
  10107. /// Add Or Update
  10108. /// </summary>
  10109. /// <returns></returns>
  10110. [HttpPost]
  10111. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10112. public async Task<IActionResult> PostVisaFeeAddAndUpdate(VisaFeeAddAndUpdateDto _dto)
  10113. {
  10114. var _view = await _visaFeeInfoRep._Update(_dto);
  10115. if (_view.Code != 0)
  10116. {
  10117. return Ok(JsonView(false, _view.Msg));
  10118. }
  10119. return Ok(JsonView(true, _view.Msg));
  10120. }
  10121. #endregion
  10122. #region 酒店询价
  10123. /// <summary>
  10124. /// 酒店询价
  10125. /// Init
  10126. /// </summary>
  10127. /// <param name="dto"></param>
  10128. /// <returns></returns>
  10129. [HttpPost]
  10130. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10131. public async Task<IActionResult> PostHotelInquiryInit()
  10132. {
  10133. var res = await _hotelInquiryRep._Init();
  10134. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10135. return Ok(JsonView(true, res.Msg, res.Data));
  10136. }
  10137. /// <summary>
  10138. /// 酒店询价
  10139. /// page Item
  10140. /// </summary>
  10141. /// <param name="_dto"></param>
  10142. /// <returns></returns>
  10143. [HttpPost]
  10144. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10145. public async Task<IActionResult> PostHotelInquiryPageItem(HotelInquiryPageItemDto _dto)
  10146. {
  10147. var res = await _hotelInquiryRep._PageItem(_dto.PageIndex, _dto.PageSize, _dto.PortType, _dto.DiId);
  10148. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10149. var view = res.Data as PageDataViewBase;
  10150. return Ok(JsonView(true, res.Msg, view.Data, view.Total));
  10151. }
  10152. /// <summary>
  10153. /// 酒店询价
  10154. /// info
  10155. /// </summary>
  10156. /// <param name="_dto"></param>
  10157. /// <returns></returns>
  10158. [HttpPost]
  10159. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10160. public async Task<IActionResult> PostHotelInquiryInfo(HotelInquiryInfoDto _dto)
  10161. {
  10162. var res = await _hotelInquiryRep._Info(_dto.PortType, _dto.Id);
  10163. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10164. return Ok(JsonView(true, res.Msg, res.Data));
  10165. }
  10166. /// <summary>
  10167. /// 酒店询价
  10168. /// Add Or Edit
  10169. /// </summary>
  10170. /// <param name="_dto"></param>
  10171. /// <returns></returns>
  10172. [HttpPost]
  10173. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10174. public async Task<IActionResult> PostHotelInquiryAddOrEdit(HotelInquiryAddOrEditDto _dto)
  10175. {
  10176. var res = await _hotelInquiryRep._AddOrEdit(_dto);
  10177. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10178. return Ok(JsonView(true, res.Msg, res.Data));
  10179. }
  10180. /// <summary>
  10181. /// 酒店询价
  10182. /// Del
  10183. /// </summary>
  10184. /// <param name="_dto"></param>
  10185. /// <returns></returns>
  10186. [HttpPost]
  10187. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10188. public async Task<IActionResult> PostHotelInquiryDel(HotelInquiryDelDto _dto)
  10189. {
  10190. var res = await _hotelInquiryRep._Del(_dto.Id, _dto.DeleteUserId);
  10191. if (res.Code != 0) return Ok(JsonView(false, res.Msg));
  10192. return Ok(JsonView(true, res.Msg, res.Data));
  10193. }
  10194. #endregion
  10195. #region 下载匹配op行程单
  10196. /// <summary>
  10197. /// 匹配op行程单
  10198. /// Init
  10199. /// </summary>
  10200. /// <param name="dto">团组列表请求dto</param>
  10201. /// <returns></returns>
  10202. [HttpPost]
  10203. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10204. public async Task<IActionResult> PostMateOpGroupInit(MateOpGroupInitDto dto)
  10205. {
  10206. Stopwatch stopwatch = Stopwatch.StartNew(); // 创建并启动Stopwatch
  10207. if (dto.CurrUserId < 1) return Ok(JsonView(false, MsgTips.UserId));
  10208. bool isDepStatus = await GeneralMethod.IsMarketingStaff(dto.CurrUserId);
  10209. List<Grp_DelegationInfo> groupInfos = new List<Grp_DelegationInfo>();
  10210. groupInfos = _sqlSugar.Queryable<Grp_DelegationInfo>()
  10211. .Where(it => it.IsDel == 0)
  10212. .WhereIF(isDepStatus, it => it.JietuanOperator == dto.CurrUserId)
  10213. .OrderByDescending(it => it.CreateUserId)
  10214. .ToList();
  10215. if (groupInfos.Count < 1) return Ok(JsonView(false, "暂无和你相关的团组信息!"));
  10216. var country = groupInfos.Select(it => it.VisitCountry).ToList();
  10217. var diids = groupInfos.Select(it => it.Id).ToList();
  10218. List<string> countrys = new List<string>();
  10219. foreach (var item in country)
  10220. {
  10221. var data = _groupRepository.FormartTeamName(item);
  10222. var dataArray = _groupRepository.GroupSplitCountry(data);
  10223. if (dataArray.Count > 0) countrys.AddRange(dataArray);
  10224. }
  10225. countrys = countrys.Where(it => !string.IsNullOrEmpty(it)).Distinct().ToList();
  10226. List<string> areaArray = new List<string>(); //GetGroupCityLine
  10227. var areaItem = GeneralMethod.GetGroupCityLineItem(diids, "-");
  10228. foreach (var item in areaItem)
  10229. {
  10230. string areaStr = item.Value;
  10231. if (!string.IsNullOrEmpty(areaStr))
  10232. {
  10233. string[] str1 = areaStr.Split("-");
  10234. if (str1.Length > 0)
  10235. {
  10236. areaArray.AddRange(str1);
  10237. }
  10238. }
  10239. }
  10240. if (areaArray.Count > 0) areaArray = areaArray.Distinct().ToList();
  10241. var cityDatas = _sqlSugar.Queryable<Sys_Cities>()
  10242. .Where(it => it.IsDel == 0 && areaArray.Contains(it.Name_CN))
  10243. .Select(it => new { id = it.Id, parentId = it.CountriesId, name = it.Name_CN })
  10244. .ToList();
  10245. List<int> countriesIds = cityDatas.Select(it => it.parentId).ToList();
  10246. var countriesDatas = _sqlSugar.Queryable<Sys_Countries>()
  10247. .Where(it => countriesIds.Contains(it.Id))
  10248. .Select(it => new { it.Id, Name = it.Name_CN })
  10249. .ToList();
  10250. var teamNames = groupInfos.Where(it => !string.IsNullOrEmpty(it.TeamName))
  10251. .Select(it => it.TeamName).ToList();
  10252. stopwatch.Stop();
  10253. return Ok(JsonView(true, $"操作成功,耗时{stopwatch.ElapsedMilliseconds} ms", new { teamNames, countriesDatas, citiesDatas = cityDatas }));
  10254. }
  10255. ///// <summary>
  10256. ///// 匹配op行程单
  10257. ///// Init 查询区域数据
  10258. ///// </summary>
  10259. ///// <param name="dto">团组列表请求dto</param>
  10260. ///// <returns></returns>
  10261. //[HttpPost]
  10262. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10263. //public async Task<IActionResult> PostMateOpGroupCountryChangeData(MateOpGroupCountryChangeDataDto dto)
  10264. //{
  10265. // Stopwatch stopwatch = Stopwatch.StartNew(); // 创建并启动Stopwatch
  10266. // List<Sys_Cities> cityDatas = new List<Sys_Cities>();
  10267. // string countriesDataStr = await RedisRepository.RedisFactory.CreateRedisRepository().StringGetAsync<string>("CityDatas");//string 取
  10268. // if (string.IsNullOrEmpty(countriesDataStr))
  10269. // {
  10270. // cityDatas = await _sqlSugar.Queryable<Sys_Cities>().Where(it => it.IsDel == 0).ToListAsync();
  10271. // TimeSpan ts = DateTime.Now.AddHours(2).TimeOfDay; //设置redis 过期时间 2
  10272. // await RedisRepository.RedisFactory.CreateRedisRepository().StringSetAsync<string>("CountriesDatas", JsonConvert.SerializeObject(cityDatas), ts);//string 存
  10273. // }
  10274. // else
  10275. // {
  10276. // cityDatas = JsonConvert.DeserializeObject<List<Sys_Cities>>(countriesDataStr);
  10277. // }
  10278. // var provinceData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 1).ToList();
  10279. // var citiesData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 2).ToList();
  10280. // var countiesData = cityDatas.Where(it => it.CountriesId == dto.CountriesId && it.Level == 3).ToList();
  10281. // List<dynamic> childList = new List<dynamic>();
  10282. // int parentId = dto.CountriesId;
  10283. // if (provinceData.Count > 1)
  10284. // {
  10285. // foreach (var item1 in provinceData)
  10286. // {
  10287. // List<dynamic> childList1 = new List<dynamic>();
  10288. // var citiesData1 = citiesData.Where(it => it.ParentId == item1.Id).ToList();
  10289. // foreach (var item2 in citiesData1)
  10290. // {
  10291. // List<dynamic> childList2 = new List<dynamic>();
  10292. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10293. // foreach (var item3 in countiesData1)
  10294. // {
  10295. // childList2.Add(new
  10296. // {
  10297. // id = item3.Id,
  10298. // parentId = item2.Id,
  10299. // level = "district",
  10300. // name = item3.Name_CN,
  10301. // });
  10302. // }
  10303. // childList1.Add(new
  10304. // {
  10305. // id = item2.Id,
  10306. // parentId = item1.Id,
  10307. // level = "city",
  10308. // name = item2.Name_CN,
  10309. // childList = childList2
  10310. // });
  10311. // }
  10312. // childList.Add(new
  10313. // {
  10314. // id = item1.Id,
  10315. // parentId = parentId,
  10316. // level = "province",
  10317. // name = item1.Name_CN,
  10318. // childList = childList1
  10319. // });
  10320. // }
  10321. // //城市
  10322. // var citiesData2 = citiesData.Where(it => it.ParentId == 0).ToList();
  10323. // foreach (var item2 in citiesData2)
  10324. // {
  10325. // List<dynamic> childList22 = new List<dynamic>();
  10326. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10327. // foreach (var item3 in countiesData1)
  10328. // {
  10329. // childList22.Add(new
  10330. // {
  10331. // id = item3.Id,
  10332. // parentId = item2.Id,
  10333. // level = "district",
  10334. // name = item3.Name_CN,
  10335. // });
  10336. // }
  10337. // childList.Add(new
  10338. // {
  10339. // id = item2.Id,
  10340. // parentId = parentId,
  10341. // level = "city",
  10342. // name = item2.Name_CN,
  10343. // childList = childList22
  10344. // });
  10345. // }
  10346. // }
  10347. // else
  10348. // {
  10349. // foreach (var item2 in citiesData)
  10350. // {
  10351. // string cname = item2.Name_CN;
  10352. // List<dynamic> childList1 = new List<dynamic>();
  10353. // var countiesData1 = countiesData.Where(it => it.ParentId == item2.Id).ToList();
  10354. // foreach (var item3 in countiesData1)
  10355. // {
  10356. // childList1.Add(new
  10357. // {
  10358. // Id = item3.Id,
  10359. // parentId = item2.Id,
  10360. // level = "district",
  10361. // name = item3.Name_CN
  10362. // });
  10363. // }
  10364. // childList.Add(new
  10365. // {
  10366. // id = item2.Id,
  10367. // parentId = parentId,
  10368. // level = "city",
  10369. // name = item2.Name_CN,
  10370. // childList = childList1
  10371. // });
  10372. // }
  10373. // }
  10374. // stopwatch.Stop();
  10375. // return Ok(JsonView(true, $"操作成功,耗时{stopwatch.ElapsedMilliseconds} ms", childList));
  10376. //}
  10377. /// <summary>
  10378. /// 匹配op行程单
  10379. /// 接团信息列表 Page
  10380. /// </summary>
  10381. /// <param name="dto">团组列表请求dto</param>
  10382. /// <returns></returns>
  10383. [HttpPost]
  10384. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10385. public async Task<IActionResult> PostMateOpGroupPageList(MateOpGroupPageListDto dto)
  10386. {
  10387. var swatch = new Stopwatch();
  10388. swatch.Start();
  10389. #region 参数验证
  10390. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  10391. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  10392. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10393. #region 页面操作权限验证
  10394. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  10395. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限"));
  10396. #endregion
  10397. #endregion
  10398. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) // web/Android
  10399. {
  10400. var _view = await GeneralMethod.MateOpGroupPageListRedis();
  10401. string sqlWhere = "";
  10402. if (!string.IsNullOrEmpty(dto.Country))
  10403. {
  10404. _view = _view.Where(x => !string.IsNullOrEmpty(x.VisitCountry) && x.VisitCountry.Contains(dto.Country)).ToList();
  10405. }
  10406. if (!string.IsNullOrEmpty(dto.Area))
  10407. {
  10408. _view = _view.Where(x => !string.IsNullOrEmpty(x.RouteCity) && x.RouteCity.Contains(dto.Area)).ToList();
  10409. }
  10410. if (!string.IsNullOrEmpty(dto.TeamName))
  10411. {
  10412. _view = _view.Where(x => !string.IsNullOrEmpty(x.TeamName) && x.TeamName.Contains(dto.TeamName)).ToList();
  10413. }
  10414. int startIndex = (dto.PageIndex - 1) * dto.PageSize; // 计算开始的索引
  10415. int endIndex = startIndex + dto.PageSize - 1; // 计算结束的索引
  10416. var _view1 = _view.Skip(startIndex).Take(endIndex).ToList();
  10417. swatch.Stop();
  10418. return Ok(JsonView(true, $"查询成功!耗时 {swatch.ElapsedMilliseconds} ms", _view1, _view.Count));
  10419. }
  10420. else
  10421. {
  10422. return Ok(JsonView(false, "查询失败"));
  10423. }
  10424. }
  10425. /// <summary>
  10426. /// 匹配op行程单
  10427. /// 行程单下载
  10428. /// </summary>
  10429. /// <param name="dto">团组列表请求dto</param>
  10430. /// <returns></returns>
  10431. [HttpPost]
  10432. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10433. public async Task<IActionResult> PostMateOpGroupDownload(MateOpGroupDownloadDto dto)
  10434. {
  10435. #region 参数验证
  10436. if (dto.UserId < 1) return Ok(JsonView(false, "员工Id为空"));
  10437. if (dto.PageId < 1) return Ok(JsonView(false, "页面Id为空"));
  10438. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  10439. #region 页面操作权限验证
  10440. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  10441. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限"));
  10442. #endregion
  10443. #endregion
  10444. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) // web/Android
  10445. {
  10446. var res = ExportTravel(new ExportTravelDto() { Diid = dto.diId });
  10447. return Ok(res.GetType().GetProperty("Value").GetValue(res, null));
  10448. }
  10449. else
  10450. {
  10451. return Ok(JsonView(false, "下载失败!"));
  10452. }
  10453. }
  10454. #endregion
  10455. #region 国家信息 数据 注释
  10456. //[HttpPost]
  10457. //public async Task<IActionResult> LoadCitiesInitData(List<int> dto)
  10458. //{
  10459. // List<Grp_GroupsTaskAssignment> infos = new List<Grp_GroupsTaskAssignment>();
  10460. // foreach (var item in dto)
  10461. // {
  10462. // infos.Add(new Grp_GroupsTaskAssignment()
  10463. // {
  10464. // DIId = item,
  10465. // CTId = 82,
  10466. // UId = 248,
  10467. // IsEnable = 1,
  10468. // CreateUserId = 233,
  10469. // CreateTime = DateTime.Now,
  10470. // IsDel = 0
  10471. // });
  10472. // infos.Add(new Grp_GroupsTaskAssignment()
  10473. // {
  10474. // DIId = item,
  10475. // CTId = 82,
  10476. // UId = 286,
  10477. // IsEnable = 1,
  10478. // CreateUserId = 233,
  10479. // CreateTime = DateTime.Now,
  10480. // IsDel = 0
  10481. // });
  10482. // }
  10483. // int add = _sqlSugar.Insertable<Grp_GroupsTaskAssignment>(infos).ExecuteCommand();
  10484. // return Ok("操作成功");
  10485. //}
  10486. //public class paramJsonDto
  10487. //{
  10488. // public List<CountriesInfo> str { get; set; }
  10489. //}
  10490. //[HttpPost]
  10491. //public async Task<IActionResult> LoadCitiesInitData(paramJsonDto dto)
  10492. //{
  10493. // //List<CountriesInfo> infos = new List<CountriesInfo>();
  10494. // //infos = JsonConvert.DeserializeObject<List<CountriesInfo>>(dto.str);
  10495. // List<Sys_Cities> cities = new List<Sys_Cities>();
  10496. // List<Sys_Cities> districts = new List<Sys_Cities>();
  10497. // var counties = _sqlSugar.Queryable<Sys_Countries>().Where(it => it.IsDel == 0).ToList();
  10498. // _sqlSugar.BeginTran();
  10499. // int countitiesIndex = 0;
  10500. // foreach (var item in dto.str)
  10501. // {
  10502. // dynamic data = item.c;
  10503. // int countriesId = counties.Find(it => it.Name_CN.Equals(item.cn))?.Id ?? 0;
  10504. // if (data != null)
  10505. // {
  10506. // countitiesIndex++;
  10507. // foreach (var item1 in data)
  10508. // {
  10509. // string cnname = item1.cn;
  10510. // string enname = item1.en;
  10511. // Sys_Cities provinceInfo = new Sys_Cities()
  10512. // {
  10513. // CountriesId = countriesId,
  10514. // Name_CN = cnname,
  10515. // Name_EN = enname,
  10516. // ParentId = 0,
  10517. // IsCapital = 1,
  10518. // CreateUserId = 208,
  10519. // CreateTime = DateTime.Now,
  10520. // IsDel = 0
  10521. // };
  10522. // if (item1.lv == "province") //省份
  10523. // {
  10524. // provinceInfo.Level = 1;
  10525. // int provinceId = 0;
  10526. // var provinceInfo1 = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 1 && it.Name_CN.Equals(cnname)).First();
  10527. // if (provinceInfo1 != null) provinceId = provinceInfo1.Id;
  10528. // else provinceId = _sqlSugar.Insertable<Sys_Cities>(provinceInfo).ExecuteReturnIdentity();
  10529. // var data1 = item1.c;
  10530. // foreach (var item2 in data1)
  10531. // {
  10532. // if (item2.lv == "city")
  10533. // {
  10534. // string citycnname = item2.cn;
  10535. // string cityenname = item2.en;
  10536. // Sys_Cities cityInfo = new Sys_Cities()
  10537. // {
  10538. // CountriesId = countriesId,
  10539. // ParentId = provinceId,
  10540. // Level = 2,
  10541. // Name_CN = citycnname,
  10542. // Name_EN = cityenname,
  10543. // IsCapital = 1,
  10544. // CreateUserId = 208,
  10545. // CreateTime = DateTime.Now,
  10546. // IsDel = 0
  10547. // };
  10548. // if (item2.c != null)
  10549. // {
  10550. // int cityId = 0;
  10551. // var citiesInfo = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 2 && it.Name_CN.Equals(citycnname)).First();
  10552. // if (citiesInfo != null) cityId = citiesInfo.Id;
  10553. // else cityId = _sqlSugar.Insertable<Sys_Cities>(cityInfo).ExecuteReturnIdentity();
  10554. // foreach (var item3 in item2.c)
  10555. // {
  10556. // if (item3.lv == "district")
  10557. // {
  10558. // var districtInfo = new Sys_Cities()
  10559. // {
  10560. // CountriesId = countriesId,
  10561. // Name_CN = item3.cn,
  10562. // Name_EN = item3.en,
  10563. // Level = 3,
  10564. // ParentId = cityId,
  10565. // IsCapital = 1,
  10566. // CreateUserId = 208,
  10567. // CreateTime = DateTime.Now,
  10568. // IsDel = 0
  10569. // };
  10570. // //if (districts.Find(it => it.CountriesId == countriesId && it.ParentId == cityId && it.Name_CN.Equals(districtInfo.Name_CN)) == null)
  10571. // //{
  10572. // districts.Add(districtInfo);
  10573. // //}
  10574. // }
  10575. // }
  10576. // }
  10577. // else
  10578. // {
  10579. // //if (cities.Find(it => it.CountriesId == countriesId && it.ParentId == provinceId && it.Name_CN.Equals(citycnname)) == null)
  10580. // //{
  10581. // cities.Add(cityInfo);
  10582. // //}
  10583. // }
  10584. // }
  10585. // }
  10586. // }
  10587. // else if (item1.lv == "city")//城市
  10588. // {
  10589. // provinceInfo.Level = 2;
  10590. // if (item1.c != null)
  10591. // {
  10592. // int cityId = 0;
  10593. // var citiesInfo = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.CountriesId == countriesId && it.Level == 1 && it.Name_CN.Equals(provinceInfo.Name_CN)).First();
  10594. // if (citiesInfo != null) cityId = citiesInfo.Id;
  10595. // else cityId = _sqlSugar.Insertable<Sys_Cities>(provinceInfo).ExecuteReturnIdentity();
  10596. // foreach (var item3 in item1.c)
  10597. // {
  10598. // if (item3.lv == "district")
  10599. // {
  10600. // var districtInfo = new Sys_Cities()
  10601. // {
  10602. // CountriesId = countriesId,
  10603. // Name_CN = item3.cn,
  10604. // Name_EN = item3.en,
  10605. // Level = 3,
  10606. // ParentId = cityId,
  10607. // IsCapital = 1,
  10608. // CreateUserId = 208,
  10609. // CreateTime = DateTime.Now,
  10610. // IsDel = 0
  10611. // };
  10612. // //if (districts.Find(it => it.CountriesId == countriesId && it.ParentId == cityId && it.Name_CN.Equals(districtInfo.Name_CN)) == null)
  10613. // //{
  10614. // districts.Add(districtInfo);
  10615. // //}
  10616. // }
  10617. // }
  10618. // }
  10619. // else
  10620. // {
  10621. // //if (cities.Find(it => it.CountriesId == countriesId && it.Name_CN.Equals(provinceInfo.Name_CN)) == null)
  10622. // //{
  10623. // cities.Add(provinceInfo);
  10624. // //}
  10625. // }
  10626. // }
  10627. // }
  10628. // }
  10629. // }
  10630. // var procinceDatas = _sqlSugar.Queryable<Sys_Cities>().ToList();
  10631. // cities = cities.Distinct().ToList();
  10632. // districts = districts.Distinct().ToList();
  10633. // var citiesDatas = cities.Where(it => it.Level == 2).ToList();
  10634. // //var districtDatas = cities.Where(it => it.Level == 3).ToList();
  10635. // cities.AddRange(districts);
  10636. // var citiesAdd = _sqlSugar.Insertable<Sys_Cities>(cities).ExecuteReturnIdentity();
  10637. // //_sqlSugar.RollbackTran();
  10638. // _sqlSugar.CommitTran();
  10639. // return Ok(JsonView(false, "操作成功!"));
  10640. //}
  10641. //[HttpPost]
  10642. //public async Task<IActionResult> LoadCitiesInitInfo(CounrtiesDto dto)
  10643. //{
  10644. // List<CountitiesInfo> infos = dto.MyProperty;
  10645. // List<Sys_Cities> cityInfos = new List<Sys_Cities>();
  10646. // _sqlSugar.BeginTran();
  10647. // var countities = _sqlSugar.Queryable<Sys_Countries>().Where(it => it.IsDel == 0).ToList();
  10648. // var citities = _sqlSugar.Queryable<Sys_Cities>().Where(it => it.IsDel == 0 && it.Level == 2).ToList();
  10649. // foreach (var item in infos)
  10650. // {
  10651. // var countryInfo = countities.Where(it => it.ThreeCode.Equals(item.country_code3)).FirstOrDefault();
  10652. // if (countryInfo != null)
  10653. // {
  10654. // var cityInfo = citities.Where(it => it.CountriesId == countryInfo.Id).ToList();
  10655. // var cityInfo1 = cityInfo.Where(it => item.capital_name_chinese.Contains(it.Name_CN)).FirstOrDefault();
  10656. // if (cityInfo1 != null)
  10657. // {
  10658. // cityInfo1.IsCapital = 0;
  10659. // cityInfos.Add(cityInfo1);
  10660. // }
  10661. // }
  10662. // }
  10663. // var update = _sqlSugar.Updateable<Sys_Cities>(cityInfos)
  10664. // .UpdateColumns(it => it.IsCapital)
  10665. // .WhereColumns(it => it.Id)
  10666. // .ExecuteCommand();
  10667. // //_sqlSugar.RollbackTran();
  10668. // _sqlSugar.CommitTran();
  10669. // return Ok(JsonView(false, "操作成功!"));
  10670. //}
  10671. //public class CounrtiesDto
  10672. //{
  10673. // public List<CountitiesInfo> MyProperty { get; set; }
  10674. //}
  10675. //public class CountitiesInfo
  10676. //{
  10677. // /// <summary>
  10678. // /// 圣约翰
  10679. // /// </summary>
  10680. // public string capital_name_chinese { get; set; }
  10681. // /// <summary>
  10682. // ///
  10683. // /// </summary>
  10684. // public string capital_name { get; set; }
  10685. // /// <summary>
  10686. // ///
  10687. // /// </summary>
  10688. // public string country_type { get; set; }
  10689. // /// <summary>
  10690. // /// 安提瓜和巴布达
  10691. // /// </summary>
  10692. // public string country_name_chinese { get; set; }
  10693. // /// <summary>
  10694. // /// 安提瓜和巴布达
  10695. // /// </summary>
  10696. // public string country_name_chinese_short { get; set; }
  10697. // /// <summary>
  10698. // /// 安提瓜和巴布达
  10699. // /// </summary>
  10700. // public string country_name_chinese_UN { get; set; }
  10701. // /// <summary>
  10702. // ///
  10703. // /// </summary>
  10704. // public string country_name_english_abbreviation { get; set; }
  10705. // /// <summary>
  10706. // ///
  10707. // /// </summary>
  10708. // public string country_name_english_formal { get; set; }
  10709. // /// <summary>
  10710. // ///
  10711. // /// </summary>
  10712. // public string country_name_english_UN { get; set; }
  10713. // /// <summary>
  10714. // ///
  10715. // /// </summary>
  10716. // public string continent_name { get; set; }
  10717. // /// <summary>
  10718. // ///
  10719. // /// </summary>
  10720. // public string subregion_name { get; set; }
  10721. // /// <summary>
  10722. // ///
  10723. // /// </summary>
  10724. // public string country_code2 { get; set; }
  10725. // /// <summary>
  10726. // ///
  10727. // /// </summary>
  10728. // public string country_code3 { get; set; }
  10729. // /// <summary>
  10730. // ///
  10731. // /// </summary>
  10732. // public string phone_code { get; set; }
  10733. //}
  10734. //public class CountriesInfo : BasicInfo
  10735. //{
  10736. // public List<CitiesInfo> c { get; set; }
  10737. //}
  10738. //public class CitiesInfo : BasicInfo
  10739. //{
  10740. // public List<AreaInfo> c { get; set; }
  10741. //}
  10742. //public class AreaInfo : BasicInfo
  10743. //{
  10744. // public List<AreaInfo> c { get; set; }
  10745. //}
  10746. //public class BasicInfo
  10747. //{
  10748. // public string code { get; set; }
  10749. // public string cn { get; set; }
  10750. // public string lv { get; set; }
  10751. // public string en { get; set; }
  10752. //}
  10753. #endregion
  10754. #region 查看邀请方
  10755. /// <summary>
  10756. /// 查看邀请方
  10757. /// 邀请方信息 Init
  10758. /// </summary>
  10759. /// <param name="dto"></param>
  10760. /// <returns></returns>
  10761. [HttpPost]
  10762. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10763. public async Task<IActionResult> PostGroupLinkInvitingUnitNameInit(GroupLinkInvitingUnitNameInitDto dto)
  10764. {
  10765. string sqlWhere = string.Empty;
  10766. if (!string.IsNullOrEmpty(dto.Search))
  10767. {
  10768. sqlWhere = string.Format($@" And UnitName Like '%{dto.Search}%'");
  10769. }
  10770. string sql = string.Format($@"Select
  10771. ROW_NUMBER() Over(Order By Id desc) As Row_Number,
  10772. Id,
  10773. UnitName
  10774. From Res_InvitationOfficialActivityData
  10775. Where IsDel = 0
  10776. And (UnitName != '' Or UnitName != null) {sqlWhere}");
  10777. RefAsync<int> total = 0;
  10778. var _views = await _sqlSugar.SqlQueryable<GroupLinkInvitingUnitNameInitView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  10779. return Ok(JsonView(true, MsgTips.Succeed, _views, total));
  10780. }
  10781. /// <summary>
  10782. /// 查看邀请方
  10783. /// 国家信息 Init
  10784. /// </summary>
  10785. /// <param name="dto"></param>
  10786. /// <returns></returns>
  10787. [HttpPost]
  10788. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10789. public async Task<IActionResult> PostGroupLinkInvitingCountryInit(GroupLinkInvitingUnitNameInitDto dto)
  10790. {
  10791. var groupInfos = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).OrderByDescending(it => it.CreateUserId).ToListAsync();
  10792. var country = groupInfos.Select(it => it.VisitCountry).ToList();
  10793. var diids = groupInfos.Select(it => it.Id).ToList();
  10794. List<string> countrys = new List<string>();
  10795. foreach (var item in country)
  10796. {
  10797. var data = _groupRepository.FormartTeamName(item);
  10798. var dataArray = _groupRepository.GroupSplitCountry(data);
  10799. if (dataArray.Count > 0) countrys.AddRange(dataArray);
  10800. }
  10801. countrys = countrys.Distinct().ToList();
  10802. for (int i = 0; i < countrys.Count; i++)
  10803. {
  10804. string item = countrys[i];
  10805. if (string.IsNullOrEmpty(item) || item.Contains("-"))
  10806. {
  10807. countrys.Remove(item);
  10808. i--;
  10809. }
  10810. }
  10811. RefAsync<int> total = 0;
  10812. var countyDatas = await _sqlSugar.Queryable<Sys_Countries>()
  10813. .Where(it => countrys.Contains(it.Name_CN))
  10814. .WhereIF(!string.IsNullOrEmpty(dto.Search), it => it.Name_CN.Contains(dto.Search))
  10815. .Select(it => new { id = it.Id, name = it.Name_CN })
  10816. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  10817. return Ok(JsonView(true, MsgTips.Succeed, countyDatas, total));
  10818. }
  10819. /// <summary>
  10820. /// 查看邀请方
  10821. /// 城市信息 Init
  10822. /// </summary>
  10823. /// <param name="dto"></param>
  10824. /// <returns></returns>
  10825. [HttpPost]
  10826. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10827. public async Task<IActionResult> PostGroupLinkInvitingCityInit(GroupLinkInvitingCityInitDto dto)
  10828. {
  10829. if (dto.CountiesId < 1) return Ok(JsonView(false, "请传入有效的国家Id"));
  10830. RefAsync<int> total = 0;
  10831. var countyDatas = await _sqlSugar.Queryable<Sys_Cities>()
  10832. .Where(it => it.CountriesId == dto.CountiesId)
  10833. .WhereIF(!string.IsNullOrEmpty(dto.Search), it => it.Name_CN.Contains(dto.Search))
  10834. .OrderBy(it => new { IsCapital = SqlFunc.Asc(it.IsCapital), Id = SqlFunc.Asc(it.Id) })
  10835. .Select(it => new { id = it.Id, name = it.Name_CN })
  10836. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  10837. return Ok(JsonView(true, MsgTips.Succeed, countyDatas, total));
  10838. }
  10839. /// <summary>
  10840. /// 查看邀请方
  10841. /// 团组名称 Init
  10842. /// </summary>
  10843. /// <param name="dto"></param>
  10844. /// <returns></returns>
  10845. [HttpPost]
  10846. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10847. public async Task<IActionResult> PostGroupLinkInvitingGroupInit(GroupLinkInvitingDto dto)
  10848. {
  10849. var watch = new Stopwatch();
  10850. watch.Start();
  10851. RefAsync<int> total = 0;
  10852. var countyDatas = await _sqlSugar.Queryable<Res_OfficialActivities>()
  10853. .InnerJoin<Grp_DelegationInfo>((oa, di) => oa.DiId == di.Id)
  10854. .Where((oa, di) => oa.IsDel == 0)
  10855. .WhereIF(!string.IsNullOrEmpty(dto.Search), (oa, di) => di.TeamName.Contains(dto.Search))
  10856. .OrderBy((oa, di) => new { id = SqlFunc.Desc(di.Id) })
  10857. .Select((oa, di) => new { id = di.Id, name = di.TeamName })
  10858. .Distinct()
  10859. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  10860. watch.Stop();
  10861. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", countyDatas, total));
  10862. }
  10863. /// <summary>
  10864. /// 查看邀请方
  10865. /// 团组 & 邀请方信息
  10866. /// </summary>
  10867. /// <param name="dto"></param>
  10868. /// <returns></returns>
  10869. [HttpPost]
  10870. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  10871. public async Task<IActionResult> PostGroupLinkInvitingPageList(GroupLinkInvitingPageListDto dto)
  10872. {
  10873. var watch = new Stopwatch();
  10874. watch.Start();
  10875. RefAsync<int> total = 0;
  10876. var infos = await _sqlSugar.Queryable<GroupLinkInvitingPageListView>()
  10877. .AS("Grp_DelegationInfo")
  10878. .Includes(x => x.InvitingInfos)
  10879. .Where(x => x.IsDel == 0 && x.InvitingInfos.Any(z => z.IsDel == 0))
  10880. .WhereIF(!string.IsNullOrEmpty(dto.Counrty), x => x.VisitCountry.Contains(dto.Counrty))
  10881. .WhereIF(!string.IsNullOrEmpty(dto.Area), x => x.InvitingInfos.Any(z => z.Area.Contains(dto.Area))) //
  10882. .WhereIF(!string.IsNullOrEmpty(dto.TeamName), x => x.TeamName.Contains(dto.TeamName)) //
  10883. .WhereIF(!string.IsNullOrEmpty(dto.UnitName), x => x.InvitingInfos.Any(z => z.Client.Contains(dto.UnitName)))
  10884. .OrderBy(x => new { JietuanTime = SqlFunc.Desc(x.VisitStartDate) })
  10885. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  10886. var userDatas = _sqlSugar.Queryable<Sys_Users>().Where(x => x.IsDel == 0).ToList();
  10887. var setDatas = _sqlSugar.Queryable<Sys_SetData>().Where(x => x.IsDel == 0).ToList();
  10888. infos.ForEach(x =>
  10889. {
  10890. x.TeamDid = setDatas.Find(y => int.Parse(x.TeamDid) == y.Id)?.Name ?? "-";
  10891. x.JietuanOperator = userDatas.Find(y => int.Parse(x.JietuanOperator) == y.Id)?.CnName ?? "-";
  10892. x.TeamLevSId = setDatas.Find(y => int.Parse(x.TeamLevSId) == y.Id)?.Name ?? "-";
  10893. x.InvitingInfos = x.InvitingInfos.Where(it => it.IsDel == 0).ToList();
  10894. });
  10895. watch.Stop();
  10896. return Ok(JsonView(true, $"{MsgTips.Succeed},耗时 {watch.ElapsedMilliseconds} ms", infos, total));
  10897. }
  10898. #endregion
  10899. #region 报批行程
  10900. /// <summary>
  10901. /// 报批行程初始化
  10902. /// </summary>
  10903. /// <param name="dto"></param>
  10904. /// <returns></returns>
  10905. [HttpPost]
  10906. public IActionResult ApprovalJourneyInit(ApprovalJourneyDto dto)
  10907. {
  10908. const int chiNumber = 5;
  10909. var jw = JsonView(false);
  10910. var groupList = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0).OrderByDescending(x => x.Id).ToList();
  10911. var group = groupList.First();
  10912. var diid = dto.Diid == -1 ? group?.Id : dto.Diid;
  10913. group = groupList.First(x => x.Id == diid);
  10914. if (group == null)
  10915. {
  10916. jw.Msg = "暂无团组!";
  10917. return Ok(jw);
  10918. }
  10919. var data = new
  10920. {
  10921. groupList = groupList.Select(x => new
  10922. {
  10923. x.TeamName,
  10924. x.Id
  10925. }),
  10926. content = new ArrayList(),
  10927. groupInfo = new
  10928. {
  10929. group.VisitDays,
  10930. group.TourCode,
  10931. group.VisitPNumber,
  10932. group.TeamName,
  10933. group.Id,
  10934. visitStartDate = group.VisitStartDate.ToString("yyyy-MM-dd"),
  10935. visitEndDate = group.VisitEndDate.ToString("yyyy-MM-dd")
  10936. },
  10937. };
  10938. var resultArr = new ArrayList();
  10939. var content = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.Diid == diid && x.IsDel == 0).ToList();
  10940. if (content.Count == 0)
  10941. {
  10942. var stay = "-";
  10943. var cityPath = "-";
  10944. //添加城市路径以及住宿地
  10945. //黑屏代码数据
  10946. DataTable dtBlack = GeneralMethod.GetTableByBlackCode(group.Id);
  10947. if (dtBlack.Rows.Count == 0 || string.IsNullOrWhiteSpace(dtBlack.Rows[0][1].ToString()))
  10948. {
  10949. jw = JsonView(true, "黑屏代码有误!", data);
  10950. return Ok(jw);
  10951. }
  10952. foreach (DataRow row in dtBlack.Rows)
  10953. {
  10954. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  10955. {
  10956. jw = JsonView(true, "黑屏代码有误!" + row["Error"].ToString(), data);
  10957. return Ok(jw);
  10958. }
  10959. }
  10960. //黑屏代码获取时间区间
  10961. var timeArr = GeneralMethod.GetTimeListByDataTable(dtBlack);
  10962. string[] Day = new string[] { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" };
  10963. _sqlSugar.BeginTran();
  10964. for (int i = 0; i < timeArr.Count; i++)
  10965. {
  10966. stay = "-";
  10967. cityPath = "-";
  10968. DateTime NewData = DateTime.Parse(timeArr[i]);
  10969. string week = Day[Convert.ToInt32(NewData.DayOfWeek.ToString("d"))].ToString();
  10970. Grp_ApprovalTravel appro = new Grp_ApprovalTravel();
  10971. var tbSelect = dtBlack.Select(string.Format("Day = '{0}'", NewData.ToString("yyyy-MM-dd")));
  10972. if (tbSelect.Length > 0)
  10973. {
  10974. List<string> threeCodeStr = new List<string>();
  10975. foreach (var item in tbSelect)
  10976. {
  10977. var threeCode = item["Three"].ToString() ?? "";
  10978. if (threeCode.Length == 6)
  10979. {
  10980. var start = threeCode.Substring(0, 3);
  10981. var end = threeCode.Substring(3, 3);
  10982. if (threeCodeStr.Count == 0)
  10983. {
  10984. threeCodeStr.Add(start);
  10985. threeCodeStr.Add(end);
  10986. }
  10987. else
  10988. {
  10989. if (threeCodeStr[threeCodeStr.Count - 1] == start)
  10990. {
  10991. threeCodeStr.Add(end);
  10992. }
  10993. else
  10994. {
  10995. threeCodeStr.Add(start);
  10996. threeCodeStr.Add(end);
  10997. }
  10998. }
  10999. }
  11000. }
  11001. var threeCodeList = _threeCodeRepository.QueryThreeCodeArray(threeCodeStr);
  11002. var last = threeCodeStr.Last();
  11003. foreach (var item in threeCodeStr)
  11004. {
  11005. cityPath += (threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】") + "-";
  11006. if (item.Equals(last))
  11007. {
  11008. stay = threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】";
  11009. }
  11010. }
  11011. cityPath = cityPath.Trim('-');
  11012. }
  11013. appro.Date = "第" + intToString(i + 1) + "天 " + NewData.Month + "月" + NewData.Day + "日(" + week + ") " + cityPath + " 宿:" + stay;
  11014. appro.Diid = diid ?? -1;
  11015. var thisId = _sqlSugar.Insertable<Grp_ApprovalTravel>(appro).ExecuteReturnIdentity();
  11016. appro.Id = thisId;
  11017. appro.CreateUserId = dto.UserId;
  11018. appro.CreateTime = DateTime.Now;
  11019. content.Add(appro);
  11020. }
  11021. _sqlSugar.CommitTran();
  11022. }
  11023. foreach (var x in content)
  11024. {
  11025. var chiList = _sqlSugar.Queryable<Grp_ApprovalTravelDetails>().Where(x1 => x1.ParentId == x.Id && x1.IsDel == 0).ToList();
  11026. if (chiList.Count < chiNumber)
  11027. {
  11028. for (int i = chiList.Count; i < chiNumber; i++)
  11029. {
  11030. chiList.Add(new Grp_ApprovalTravelDetails());
  11031. }
  11032. }
  11033. resultArr.Add(new
  11034. {
  11035. x.Id,
  11036. x.Date,
  11037. x.Diid,
  11038. chiList = chiList.Select(x1 => new
  11039. {
  11040. timeInterval = x1.Time == null ? new string[1] : x1.Time.Split('-'),
  11041. x1.Details,
  11042. x1.ParentId,
  11043. x1.Id
  11044. })
  11045. });
  11046. }
  11047. data = data with
  11048. {
  11049. content = resultArr,
  11050. };
  11051. jw = JsonView(true, "获取成功!", data);
  11052. return Ok(jw);
  11053. }
  11054. /// <summary>
  11055. /// 报批行程删除
  11056. /// </summary>
  11057. /// <param name="dto"></param>
  11058. /// <returns></returns>
  11059. [HttpPost]
  11060. public IActionResult DeleteApprovalJourney(DeleteApprovalJourney dto)
  11061. {
  11062. var jw = JsonView(false);
  11063. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  11064. if (group == null)
  11065. {
  11066. jw.Msg = "团组参数有误!";
  11067. return Ok(jw);
  11068. }
  11069. try
  11070. {
  11071. _sqlSugar.BeginTran();
  11072. var arr = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.Diid == dto.Diid && x.IsDel == 0).Select(x => x.Id).ToList();
  11073. _ = _sqlSugar.Updateable<Grp_ApprovalTravelDetails>().SetColumns(x => new Grp_ApprovalTravelDetails
  11074. {
  11075. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  11076. DeleteUserId = dto.uesrId,
  11077. IsDel = 1
  11078. }).Where(x => arr.Contains(x.ParentId) && x.IsDel == 0).ExecuteCommand();
  11079. _ = _sqlSugar.Updateable<Grp_ApprovalTravel>().SetColumns(x => new Grp_ApprovalTravel
  11080. {
  11081. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  11082. DeleteUserId = dto.uesrId,
  11083. IsDel = 1
  11084. }).Where(x => arr.Contains(x.Id)).ExecuteCommand();
  11085. _sqlSugar.CommitTran();
  11086. jw = JsonView(true, "删除成功");
  11087. }
  11088. catch (Exception ex)
  11089. {
  11090. jw = JsonView(false, ex.Message);
  11091. }
  11092. return Ok(jw);
  11093. }
  11094. /// <summary>
  11095. /// 报批行程保存
  11096. /// </summary>
  11097. /// <param name="dto"></param>
  11098. /// <returns></returns>
  11099. [HttpPost]
  11100. public IActionResult SaveApprovalJourney(SaveApprovalJourney dto)
  11101. {
  11102. var jw = JsonView(false);
  11103. var Find = dto.Arr.Find(x => x.id == 0);
  11104. if (Find != null)
  11105. {
  11106. jw.Msg = "生成的ID为0!";
  11107. return Ok(jw);
  11108. }
  11109. foreach (var item in dto.Arr)
  11110. {
  11111. foreach (var chi in item.chiList)
  11112. {
  11113. if (chi.parentId == 0)
  11114. {
  11115. chi.parentId = item.id;
  11116. }
  11117. }
  11118. }
  11119. var chiArr = dto.Arr.SelectMany(x => x.chiList).ToList();
  11120. _sqlSugar.BeginTran();
  11121. if (chiArr.Where(x => x.id == 0).Count() == chiArr.Count)
  11122. {
  11123. var parentIds = dto.Arr.Select(x => x.id).ToList();
  11124. _sqlSugar.Updateable<Grp_ApprovalTravelDetails>().Where(x => parentIds.Contains(x.ParentId) && x.IsDel == 0).SetColumns(x => new Grp_ApprovalTravelDetails
  11125. {
  11126. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  11127. DeleteUserId = dto.UserId,
  11128. IsDel = 1
  11129. }).ExecuteCommand();
  11130. }
  11131. try
  11132. {
  11133. _ = _sqlSugar.Insertable<Grp_ApprovalTravelDetails>(chiArr.Where(x => x.id == 0).Select(x => new Grp_ApprovalTravelDetails
  11134. {
  11135. CreateTime = DateTime.Now,
  11136. CreateUserId = dto.UserId,
  11137. Details = x.details,
  11138. ParentId = x.parentId,
  11139. Time = x.timeInterval.Where(x => !string.IsNullOrWhiteSpace(x)).Count() > 1 ? x.timeInterval[0] + "-" + x.timeInterval[1] : "",
  11140. Remark = "",
  11141. IsDel = 0
  11142. }).ToList()).ExecuteCommand();
  11143. _ = _sqlSugar.Updateable<Grp_ApprovalTravelDetails>(chiArr.Where(x => x.id != 0).Select(x => new Grp_ApprovalTravelDetails
  11144. {
  11145. Id = x.id,
  11146. Details = x.details,
  11147. ParentId = x.parentId,
  11148. Time = x.timeInterval.Where(x => !string.IsNullOrWhiteSpace(x)).Count() > 1 ? x.timeInterval[0] + "-" + x.timeInterval[1] : "",
  11149. }).ToList()).UpdateColumns(x => new Grp_ApprovalTravelDetails
  11150. {
  11151. Details = x.Details,
  11152. ParentId = x.ParentId,
  11153. Time = x.Time
  11154. }).ExecuteCommand();
  11155. _ = _sqlSugar.Updateable<Grp_ApprovalTravel>(dto.Arr.Where(x => x.id != 0).Select(x => new Grp_ApprovalTravel
  11156. {
  11157. Id = x.id,
  11158. Date = x.date,
  11159. }).ToList()).UpdateColumns(x => new Grp_ApprovalTravel
  11160. {
  11161. Date = x.Date
  11162. }).ExecuteCommand();
  11163. _sqlSugar.CommitTran();
  11164. jw = JsonView(true, "保存成功!");
  11165. }
  11166. catch (Exception ex)
  11167. {
  11168. _sqlSugar.RollbackTran();
  11169. jw = JsonView(false, "保存失败!" + ex.Message);
  11170. }
  11171. return Ok(jw);
  11172. }
  11173. /// <summary>
  11174. /// 报批行程生成
  11175. /// </summary>
  11176. /// <param name="dto"></param>
  11177. /// <returns></returns>
  11178. [HttpPost]
  11179. public IActionResult CreateApprovalJourney(CreateApprovalJourneyDto dto)
  11180. {
  11181. var jw = JsonView(false);
  11182. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  11183. if (group == null)
  11184. {
  11185. jw.Msg = "暂无该团组!";
  11186. return Ok(jw);
  11187. }
  11188. //黑屏代码数据
  11189. DataTable dtBlack = GeneralMethod.GetTableByBlackCode(group.Id);
  11190. if (dtBlack.Rows.Count == 0 || string.IsNullOrWhiteSpace(dtBlack.Rows[0][1].ToString()))
  11191. {
  11192. jw.Msg = "黑屏代码有误!";
  11193. return Ok(jw);
  11194. }
  11195. foreach (DataRow row in dtBlack.Rows)
  11196. {
  11197. if (!string.IsNullOrWhiteSpace(row["Error"].ToString()))
  11198. {
  11199. jw.Msg = "黑屏代码有误!" + row["Error"].ToString();
  11200. return Ok(jw);
  11201. }
  11202. }
  11203. var officialActivitiesArr = _sqlSugar.Queryable<Res_OfficialActivities>().Where(x => x.DiId == dto.Diid && x.IsDel == 0).ToList();
  11204. var resultArr = new ArrayList();
  11205. if (officialActivitiesArr.Count == 0)
  11206. {
  11207. jw.Msg = "暂无公务出访信息!";
  11208. return Ok(jw);
  11209. }
  11210. try
  11211. {
  11212. _sqlSugar.BeginTran();
  11213. DeleteApprovalJourney(new
  11214. Domain.Dtos.Groups.DeleteApprovalJourney
  11215. {
  11216. Diid = dto.Diid,
  11217. uesrId = dto.Userid
  11218. });
  11219. var stay = "-";
  11220. var cityPath = "-";
  11221. //添加城市路径以及住宿地
  11222. //黑屏代码获取时间区间
  11223. var timeArr = GeneralMethod.GetTimeListByDataTable(dtBlack);
  11224. var empty = "【未收入该三字码!请机票同事录入】";
  11225. string[] Day = new string[] { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" };
  11226. for (int i = 0; i < timeArr.Count; i++)
  11227. {
  11228. stay = "-";
  11229. cityPath = "-";
  11230. var chiarr = new List<Grp_ApprovalTravelDetails>();
  11231. DateTime NewData = DateTime.Parse(timeArr[i]);
  11232. 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();
  11233. var tbSelect = dtBlack.Select(string.Format("Day = '{0}'", NewData.ToString("yyyy-MM-dd")));
  11234. if (tbSelect.Length > 0)
  11235. {
  11236. List<string> threeCodeStr = new List<string>();
  11237. bool isTrade = false;
  11238. string trip = string.Empty;
  11239. var rowLast = tbSelect.Last();
  11240. var rowFirst = tbSelect.First();
  11241. var airStartTime = rowFirst["StartTime"].ToString() ?? "0000";
  11242. var airEndTime = rowLast["EndTime"].ToString() ?? "0000";
  11243. var takeOffTime = DateTime.Parse(timeArr[i]);
  11244. var fallToTime = DateTime.Parse(timeArr[i]);
  11245. takeOffTime = takeOffTime.AddHours(int.Parse(airStartTime.Substring(0, 2)));
  11246. takeOffTime = takeOffTime.AddMinutes(int.Parse(airStartTime.Substring(2, 2)));
  11247. fallToTime = fallToTime.AddHours(int.Parse(airEndTime.Substring(0, 2)));
  11248. fallToTime = fallToTime.AddMinutes(int.Parse(airEndTime.Substring(2, 2)));
  11249. foreach (var item in tbSelect)
  11250. {
  11251. var start = string.Empty;
  11252. var end = string.Empty;
  11253. var threeCode = item["Three"].ToString() ?? "";
  11254. if (threeCode.Length == 6)
  11255. {
  11256. start = threeCode.Substring(0, 3);
  11257. end = threeCode.Substring(3, 3);
  11258. if (threeCodeStr.Count == 0)
  11259. {
  11260. threeCodeStr.Add(start);
  11261. threeCodeStr.Add(end);
  11262. }
  11263. else
  11264. {
  11265. if (threeCodeStr[threeCodeStr.Count - 1] == start)
  11266. {
  11267. threeCodeStr.Add(end);
  11268. }
  11269. else
  11270. {
  11271. threeCodeStr.Add(start);
  11272. threeCodeStr.Add(end);
  11273. }
  11274. }
  11275. }
  11276. //处理机票信息
  11277. var start_Object = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three.ToUpper() == start.ToUpper());
  11278. var end_Object = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Three.ToUpper() == end.ToUpper());
  11279. if (start_Object == null)
  11280. {
  11281. start_Object = new Res_ThreeCode()
  11282. {
  11283. AirPort = empty,
  11284. AirPort_En = empty,
  11285. City = empty,
  11286. Country = empty,
  11287. Four = empty,
  11288. Three = empty,
  11289. };
  11290. }
  11291. if (end_Object == null)
  11292. {
  11293. end_Object = new Res_ThreeCode()
  11294. {
  11295. AirPort = empty,
  11296. AirPort_En = empty,
  11297. City = empty,
  11298. Country = empty,
  11299. Four = empty,
  11300. Three = empty,
  11301. };
  11302. }
  11303. //机型判断
  11304. string airModel = item["AirModel"].ToString();
  11305. airModel = GeneralMethod.GetLonger(airModel!.Substring(0, 1)) + airModel;
  11306. string flightTime = item["FlightTime"].ToString();
  11307. if (flightTime!.Contains(":"))
  11308. {
  11309. flightTime = flightTime.Replace(":", "小时");
  11310. flightTime += "分钟";
  11311. }
  11312. if (flightTime.Contains("H"))
  11313. {
  11314. flightTime = flightTime.Replace("H", "小时");
  11315. }
  11316. if (flightTime.Contains("M"))
  11317. {
  11318. flightTime = flightTime.Replace("M", "分钟");
  11319. }
  11320. IFormatProvider ifp = new CultureInfo("zh-CN", true);
  11321. if (DateTime.TryParseExact(flightTime, "HH小时mm分钟", ifp, DateTimeStyles.None, out DateTime flightDataTime))
  11322. {
  11323. flightTime = flightDataTime.Hour > 0
  11324. ? flightDataTime.Hour.ToString() + "小时" + (flightDataTime.Minute > 0
  11325. ? flightDataTime.Minute.ToString() + "分钟" : "") : flightDataTime.Minute > 0
  11326. ? flightDataTime.Minute.ToString() + "分钟" : "";
  11327. }
  11328. //航班号
  11329. string flightcode = item["Fliagtcode"].ToString();
  11330. var aircompany = _sqlSugar.Queryable<Res_AirCompany>().First(x => x.ShortCode.ToUpper() == flightcode!.Substring(0, 2).ToUpper() && x.IsDel == 0);
  11331. var hsEmpty = "【此航司" + flightcode!.Substring(0, 2).ToUpper() + "未收录,请机票同事录入】";
  11332. if (aircompany == null)
  11333. {
  11334. aircompany = new Res_AirCompany
  11335. {
  11336. CnName = hsEmpty,
  11337. EnName = hsEmpty,
  11338. ShortCode = hsEmpty,
  11339. };
  11340. }
  11341. //从成都天府国际机场搭乘四川航空公司3U3961飞往东京
  11342. trip += $"从{start_Object.AirPort}搭乘{aircompany.CnName} {flightcode} 飞往 {end_Object.City};\r\n({start_Object.AirPort}/{end_Object.AirPort} 机型:{airModel} 飞行时间{flightTime});\r\n";
  11343. isTrade = Convert.ToBoolean(item["isTransitShipment"]);
  11344. if (isTrade)
  11345. {
  11346. trip += $"抵达{end_Object.AirPort}{item["EndBuilding"].ToString().Trim()}航站楼(中转 行李直达)\r\n";
  11347. }
  11348. else
  11349. {
  11350. trip += "\r\n"; //$"抵达{end_Object.AirPort}{item["EndBuilding"].ToString().Trim()}航站楼,办理入境手续,之后前往提取行李\r\n";
  11351. }
  11352. }
  11353. chiarr.Add(new Grp_ApprovalTravelDetails
  11354. {
  11355. Time = takeOffTime.ToString("HH:mm") + "-" + fallToTime.ToString("HH:mm"),
  11356. CreateTime = DateTime.Now,
  11357. CreateUserId = dto.Userid,
  11358. ParentId = 0,
  11359. Details = trip
  11360. });
  11361. var threeCodeList = _threeCodeRepository.QueryThreeCodeArray(threeCodeStr);
  11362. var last = threeCodeStr.Last();
  11363. foreach (var item in threeCodeStr)
  11364. {
  11365. cityPath += (threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】") + "-";
  11366. if (item.Equals(last))
  11367. {
  11368. stay = threeCodeList.Keys.Contains(item) ? threeCodeList[item].City : "【未知三字码】";
  11369. }
  11370. }
  11371. cityPath = cityPath.Trim('-');
  11372. }
  11373. string week = Day[Convert.ToInt32(NewData.DayOfWeek.ToString("d"))].ToString();
  11374. Grp_ApprovalTravel appro = new Grp_ApprovalTravel();
  11375. appro.Date = "第" + intToString(i + 1) + "天 " + NewData.Month + "月" + NewData.Day + "日(" + week + ") " + cityPath + " 宿:" + stay;
  11376. appro.Diid = dto.Diid;
  11377. var thisId = _sqlSugar.Insertable<Grp_ApprovalTravel>(appro).ExecuteReturnIdentity();
  11378. appro.Id = thisId;
  11379. appro.CreateUserId = dto.Userid;
  11380. appro.CreateTime = DateTime.Now;
  11381. foreach (var item in gwinfo)
  11382. {
  11383. Grp_ApprovalTravelDetails chi = new Grp_ApprovalTravelDetails();
  11384. chi.Details = "拜访" + item.Client;
  11385. if (!string.IsNullOrWhiteSpace(item.ReqSample))
  11386. {
  11387. chi.Details += "," + item.ReqSample;
  11388. }
  11389. chi.ParentId = thisId;
  11390. chi.Time = item.Time;
  11391. chiarr.Add(chi);
  11392. }
  11393. if (chiarr.Count < 5)
  11394. {
  11395. for (int j = chiarr.Count; j < 5; j++)
  11396. {
  11397. chiarr.Add(new
  11398. Grp_ApprovalTravelDetails());
  11399. }
  11400. }
  11401. resultArr.Add(new
  11402. {
  11403. appro.Id,
  11404. appro.Date,
  11405. appro.Diid,
  11406. chiList = chiarr.Select(x1 => new
  11407. {
  11408. timeInterval = x1.Time == null ? new string[1] : x1.Time.Split('-'),
  11409. x1.Details,
  11410. x1.ParentId,
  11411. x1.Id
  11412. })
  11413. });
  11414. }
  11415. _sqlSugar.CommitTran();
  11416. jw = JsonView(true, "生成成功!", resultArr);
  11417. }
  11418. catch (Exception ex)
  11419. {
  11420. jw.Code = 400;
  11421. jw.Msg = "生成失败!" + ex.Message;
  11422. }
  11423. return Ok(jw);
  11424. }
  11425. /// <summary>
  11426. /// 报批行程word导出
  11427. /// </summary>
  11428. /// <param name="dto"></param>
  11429. /// <returns></returns>
  11430. [HttpPost]
  11431. public IActionResult ExportApprovalJourneyWord(ExportApprovalJourneyWord dto)
  11432. {
  11433. var jw = JsonView(false);
  11434. var group = _sqlSugar.Queryable<Grp_DelegationInfo>().First(x => x.Id == dto.Diid && x.IsDel == 0);
  11435. if (group == null)
  11436. {
  11437. jw.Msg = "暂无该团组!";
  11438. return Ok(jw);
  11439. }
  11440. //模板路径
  11441. string tempPath = (AppSettingsHelper.Get("WordBasePath") + "Template/公务行程导出模板.docx"); //"C:\\Server\\File\\OA2023\\Office\\Word\\Template/公务行程导出模板.docx"
  11442. //载入模板
  11443. Document doc = new Document(tempPath);
  11444. NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
  11445. //获取所填表格的序数
  11446. Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
  11447. Aspose.Words.Tables.Row titleRowClone = null;
  11448. Aspose.Words.Tables.Row CenterRowClone = null;
  11449. int index = 0;
  11450. int indexChi = 0;
  11451. int SetIndex = 0;
  11452. var ApprovalTravelArr = _sqlSugar.Queryable<Grp_ApprovalTravel>().Where(x => x.IsDel == 0 && x.Diid == dto.Diid).ToList();
  11453. //获取数据,放到datatable
  11454. foreach (var item in ApprovalTravelArr)
  11455. {
  11456. if (index > 0)
  11457. {
  11458. titleRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[0].Clone(true);
  11459. tableOne.AppendChild(titleRowClone);
  11460. }
  11461. var textTime = item.Date;
  11462. var ChiRep = _sqlSugar.Queryable<Grp_ApprovalTravelDetails>().Where(x => x.IsDel == 0 && x.ParentId == item.Id).ToList();
  11463. SetCells(tableOne, doc, SetIndex, 0, textTime);
  11464. SetIndex++;
  11465. if (ChiRep.Count > 0)
  11466. {
  11467. foreach (var itemChi in ChiRep)
  11468. {
  11469. var txtTime = itemChi.Time;
  11470. var txtDetail = itemChi.Details;
  11471. if (indexChi > 0)
  11472. {
  11473. CenterRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[1].Clone(true);
  11474. tableOne.AppendChild(CenterRowClone);
  11475. }
  11476. if (string.IsNullOrEmpty(txtTime) && string.IsNullOrEmpty(txtDetail))
  11477. {
  11478. SetCells(tableOne, doc, SetIndex, 0, "");
  11479. SetCells(tableOne, doc, SetIndex, 1, "");
  11480. indexChi++;
  11481. SetIndex++;
  11482. break;
  11483. }
  11484. SetCells(tableOne, doc, SetIndex, 0, txtTime);
  11485. SetCells(tableOne, doc, SetIndex, 1, txtDetail);
  11486. indexChi++;
  11487. SetIndex++;
  11488. }
  11489. }
  11490. else
  11491. {
  11492. if (indexChi > 0)
  11493. {
  11494. CenterRowClone = (Aspose.Words.Tables.Row)tableOne.Rows[1].Clone(true);
  11495. tableOne.AppendChild(CenterRowClone);
  11496. }
  11497. SetCells(tableOne, doc, SetIndex, 0, "");
  11498. SetCells(tableOne, doc, SetIndex, 1, "");
  11499. indexChi++;
  11500. SetIndex++;
  11501. }
  11502. index++;
  11503. }
  11504. string strFileName = "/Travel/ExportApprovalJourneyWord/" + group.TeamName + "商邀出访日程.doc";
  11505. doc.Save(AppSettingsHelper.Get("WordBasePath") + strFileName); //"C:\\Server\\File\\OA2023\\Office\\Word" + strFileName
  11506. jw.Data = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + strFileName; //"C:\\Server\\File\\OA2023\\Office\\Word" + strFileName
  11507. jw.Code = 200;
  11508. jw.Msg = "";
  11509. return Ok(jw);
  11510. }
  11511. private string intToString(int numberVal)
  11512. {
  11513. string numberval = numberVal.ToString();
  11514. Dictionary<char, string> Number = new Dictionary<char, string>();
  11515. Number.Add('1', "一");
  11516. Number.Add('2', "二");
  11517. Number.Add('3', "三");
  11518. Number.Add('4', "四");
  11519. Number.Add('5', "五");
  11520. Number.Add('6', "六");
  11521. Number.Add('7', "七");
  11522. Number.Add('8', "八");
  11523. Number.Add('9', "九");
  11524. string stringNumberVal = string.Empty;
  11525. for (int i = 0; i < numberval.Length; i++)
  11526. {
  11527. if (i == 0)
  11528. {
  11529. stringNumberVal += Number[numberval[i]];
  11530. }
  11531. else if (i >= 1)
  11532. {
  11533. if (numberval[i] == '0')
  11534. {
  11535. stringNumberVal = "十";
  11536. }
  11537. else
  11538. {
  11539. stringNumberVal += "十" + Number[numberval[i]];
  11540. }
  11541. }
  11542. }
  11543. return stringNumberVal;
  11544. }
  11545. private void SetCells(Aspose.Words.Tables.Table table, Document doc, int rows, int cells, string val)
  11546. {
  11547. //获取table中的某个单元格,从0开始
  11548. Cell lshCell = table.Rows[rows].Cells[cells];
  11549. //将单元格中段落移除
  11550. foreach (Node item in lshCell.Paragraphs)
  11551. {
  11552. lshCell.Paragraphs.Remove(item);
  11553. }
  11554. if (val.Contains("\r\n"))
  11555. {
  11556. var spArr = val.Split("\r\n").Where(x => !string.IsNullOrWhiteSpace(x));
  11557. foreach (var item in spArr)
  11558. {
  11559. //新建一个段落
  11560. Paragraph p = new Paragraph(doc);
  11561. var r = new Run(doc, item);
  11562. //把设置的值赋给之前新建的段落
  11563. p.AppendChild(r);
  11564. //将此段落加到单元格内
  11565. lshCell.AppendChild(p);
  11566. }
  11567. }
  11568. else
  11569. {
  11570. //新建一个段落
  11571. Paragraph p = new Paragraph(doc);
  11572. var r = new Run(doc, val);
  11573. //把设置的值赋给之前新建的段落
  11574. p.AppendChild(r);
  11575. //将此段落加到单元格内
  11576. lshCell.AppendChild(p);
  11577. }
  11578. }
  11579. [HttpPost]
  11580. public async Task<IActionResult> ServerHttp(string paramStr)
  11581. {
  11582. paramStr = paramStr.TrimEnd('\'');
  11583. paramStr = paramStr.TrimStart('\'');
  11584. JsonView jw = JsonView(false);
  11585. JObject param = JObject.Parse(paramStr);
  11586. if (!param.ContainsKey("url"))
  11587. {
  11588. jw.Msg = "url null";
  11589. return Ok(jw);
  11590. }
  11591. string url = param["url"]!.ToString();
  11592. var methon = "get";
  11593. Dictionary<string, string> bodyValues = null;
  11594. Dictionary<string, string> headValues = null;
  11595. if (param.ContainsKey("methon"))
  11596. {
  11597. methon = param["methon"]!.ToString();
  11598. }
  11599. if (param.ContainsKey("header"))
  11600. {
  11601. var header = param["header"]!.ToString();
  11602. JObject headerJobject = JObject.Parse(header);
  11603. headValues = new Dictionary<string, string>();
  11604. foreach (JProperty item in headerJobject.Properties())
  11605. {
  11606. var value = item.Value.ToString();
  11607. var head = item.Path;
  11608. headValues.Add(head, value);
  11609. }
  11610. }
  11611. if (param.ContainsKey("body"))
  11612. {
  11613. var body = param["body"]!.ToString();
  11614. bodyValues = new Dictionary<string, string>();
  11615. JObject bodyJobject = JObject.Parse(body);
  11616. foreach (JProperty item in bodyJobject.Properties())
  11617. {
  11618. var value = item.Value.ToString();
  11619. var head = item.Path;
  11620. bodyValues.Add(head, value);
  11621. }
  11622. }
  11623. HttpClient client = new HttpClient();
  11624. string responseString = string.Empty;
  11625. if (param.ContainsKey("isJson"))
  11626. {
  11627. }
  11628. if (headValues != null)
  11629. {
  11630. foreach (var item in headValues.Keys)
  11631. {
  11632. client.DefaultRequestHeaders.Add(item, headValues[item]);
  11633. }
  11634. }
  11635. try
  11636. {
  11637. if (methon == "get")
  11638. {
  11639. responseString = await client.GetStringAsync(url);
  11640. }
  11641. else if (methon == "post")
  11642. {
  11643. if (bodyValues == null)
  11644. {
  11645. jw.Msg = "methon post body null";
  11646. return Ok(jw);
  11647. }
  11648. // 数据转化为 key=val 格式
  11649. var content = new FormUrlEncodedContent(bodyValues);
  11650. var response = await client.PostAsync(url, content);
  11651. // 获取数据
  11652. responseString = await response.Content.ReadAsStringAsync();
  11653. }
  11654. else
  11655. {
  11656. jw.Msg = "methon error";
  11657. }
  11658. jw = JsonView(true, "success", responseString);
  11659. }
  11660. catch (Exception ex)
  11661. {
  11662. jw.Msg = "error " + ex.Message;
  11663. jw.Data = ex.StackTrace;
  11664. }
  11665. finally
  11666. {
  11667. client.Dispose();
  11668. }
  11669. return Ok(jw);
  11670. }
  11671. #endregion
  11672. // /// <summary>
  11673. // ///
  11674. // /// </summary>
  11675. // /// <param name="_dto"></param>
  11676. // /// <returns></returns>
  11677. // [HttpPost]
  11678. // [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11679. // public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  11680. // {
  11681. // _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  11682. // string sql = string.Format(@" Select * From Visa With(Nolock) ");
  11683. // List<OA2014_Visa> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_Visa>(sql).ToList();
  11684. // _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  11685. // Dictionary<string, int> dic_psg = new Dictionary<string, int>();
  11686. // dic_psg.Add("客人", 974);
  11687. // dic_psg.Add("司机", 975);
  11688. // dic_psg.Add("导游", 976);
  11689. // dic_psg.Add("公司内部人员", 977);
  11690. // dic_psg.Add("司机/导游/公司内部人员", 978);
  11691. // foreach (var item in list_visa)
  11692. // {
  11693. // Grp_VisaInfo temp = new Grp_VisaInfo();
  11694. // temp.Id = item.Id;
  11695. // temp.DIId = item.DIId;
  11696. // temp.VisaClient = item.VisaClient;
  11697. // temp.VisaPrice = Convert.ToDecimal(item.VisaPrice);
  11698. // temp.VisaCurrency = item.VisaCurrency;
  11699. // temp.IsThird = item.IsThird;
  11700. // if (dic_psg.ContainsKey(item.PassengerType))
  11701. // {
  11702. // temp.PassengerType = dic_psg[item.PassengerType];
  11703. // }
  11704. // else {
  11705. // temp.PassengerType = -1;
  11706. // }
  11707. // temp.VisaNumber = item.VisaNumber;
  11708. // temp.VisaFreeNumber = item.VisaFreeNumber;
  11709. // temp.CreateUserId = item.Operators;
  11710. // DateTime dt_ct;
  11711. // bool b_ct = DateTime.TryParse(item.OperatorsDate, out dt_ct);
  11712. // if (b_ct)
  11713. // {
  11714. // temp.CreateTime = dt_ct;
  11715. // }
  11716. // else
  11717. // {
  11718. // temp.CreateTime = DateTime.Now;
  11719. // }
  11720. // temp.DeleteTime = "";
  11721. // temp.DeleteUserId = 0;
  11722. // temp.Remark = item.Remark;
  11723. // if (string.IsNullOrEmpty(temp.Remark)) {
  11724. // temp.Remark = "";
  11725. // }
  11726. // temp.IsDel = item.IsDel;
  11727. // temp.VisaDescription = item.VisaAttachment;
  11728. // string sqlInsert = string.Format(@" INSERT INTO [dbo].[Grp_VisaInfo]
  11729. //([Id]
  11730. // ,[DIId]
  11731. // ,[VisaClient]
  11732. // ,[VisaPrice]
  11733. // ,[VisaCurrency]
  11734. // ,[IsThird]
  11735. // ,[PassengerType]
  11736. // ,[VisaNumber]
  11737. // ,[VisaFreeNumber]
  11738. // ,[CreateUserId]
  11739. // ,[CreateTime]
  11740. // ,[DeleteTime]
  11741. // ,[DeleteUserId]
  11742. // ,[Remark]
  11743. // ,[IsDel]
  11744. // ,[visaDescription])
  11745. // VALUES
  11746. // ({0},{1},'{2}',{3},{4}
  11747. //,{5},{6},{7},{8},{9}
  11748. //,'{10}','{11}',{12},'{13}',{14},'{15}') ",temp.Id,temp.DIId,temp.VisaClient,temp.VisaPrice,temp.VisaCurrency,
  11749. //temp.IsThird,temp.PassengerType,temp.VisaNumber,temp.VisaNumber,temp.CreateUserId,
  11750. //temp.CreateTime, temp.DeleteTime, temp.DeleteUserId, temp.Remark,temp.IsDel,temp.VisaDescription
  11751. //);
  11752. // await _airTicketResRep.ExecuteCommandAsync(sqlInsert);
  11753. // }
  11754. // return Ok(JsonView(true, "操作成功!"));
  11755. // }
  11756. /// <summary>
  11757. /// 123132123
  11758. /// </summary>
  11759. /// <param name="_dto"></param>
  11760. /// <returns></returns>
  11761. [HttpPost]
  11762. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  11763. public async Task<IActionResult> Test_DataChange(PostTourClientListDownloadFile _dto)
  11764. {
  11765. _airTicketResRep.ChangeDataBase(DBEnum.OA2014DB);
  11766. string sql = string.Format(@" Select * From grouopExceed where id > 20 And id not in (26,27) ");
  11767. List<OA2014_grouopExceed> list_visa = _airTicketResRep._sqlSugar.SqlQueryable<OA2014_grouopExceed>(sql).ToList();
  11768. _airTicketResRep.ChangeDataBase(DBEnum.OA2023DB);
  11769. Dictionary<int, int> dicDetail = new Dictionary<int, int>();
  11770. dicDetail.Add(789, 1034);
  11771. dicDetail.Add(790, 1035);
  11772. dicDetail.Add(791, 1036);
  11773. dicDetail.Add(792, 1037);
  11774. dicDetail.Add(793, 1038);
  11775. dicDetail.Add(794, 1039);
  11776. dicDetail.Add(795, 1040);
  11777. dicDetail.Add(796, 1041);
  11778. dicDetail.Add(797, 1042);
  11779. dicDetail.Add(798, 1043);
  11780. dicDetail.Add(801, 1044);
  11781. dicDetail.Add(802, 1045);
  11782. dicDetail.Add(803, 1046);
  11783. Dictionary<int, int> dic = new Dictionary<int, int>();
  11784. dic.Add(806, 1027);
  11785. dic.Add(807, 1028);
  11786. dic.Add(808, 1029);
  11787. dic.Add(809, 1030);
  11788. dic.Add(810, 1031);
  11789. dic.Add(811, 1032);
  11790. dic.Add(812, 1033);
  11791. foreach (var item in list_visa)
  11792. {
  11793. Fin_GroupExtraCost temp = new Fin_GroupExtraCost();
  11794. temp.Coefficient = item.coefficient;
  11795. DateTime dtCrt;
  11796. bool b1 = DateTime.TryParse(item.OperatorsDate, out dtCrt);
  11797. if (b1)
  11798. {
  11799. temp.CreateTime = dtCrt;
  11800. }
  11801. else
  11802. {
  11803. temp.CreateTime = DateTime.Now;
  11804. }
  11805. temp.CreateUserId = item.Operators;
  11806. temp.DeleteTime = "";
  11807. temp.DeleteUserId = 0;
  11808. temp.DiId = int.Parse(item.DIID);
  11809. temp.FilePath = item.FilePath;
  11810. temp.IsDel = item.IsDel;
  11811. temp.Price = item.Price;
  11812. temp.PriceCount = 1;
  11813. temp.PriceCurrency = item.Currency;
  11814. int detailId = 0;
  11815. if (dicDetail.ContainsKey(item.PriceTypeDetail))
  11816. {
  11817. detailId = dicDetail[item.PriceTypeDetail];
  11818. }
  11819. temp.PriceDetailType = detailId;
  11820. temp.PriceDt = DateTime.Now;
  11821. temp.PriceName = item.PriceName;
  11822. temp.PriceSum = item.Price;
  11823. int tid = 0;
  11824. if (dic.ContainsKey(item.PriceType))
  11825. {
  11826. tid = dic[item.PriceType];
  11827. }
  11828. temp.PriceType = tid;
  11829. temp.Remark = item.Remark;
  11830. await _airTicketResRep.AddAsync<Fin_GroupExtraCost>(temp);
  11831. }
  11832. return Ok(JsonView(true, "操作成功!"));
  11833. }
  11834. }
  11835. }